blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 3 264 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 5 140 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 905
values | visit_date timestamp[us]date 2015-08-09 11:21:18 2023-09-06 10:45:07 | revision_date timestamp[us]date 1997-09-14 05:04:47 2023-09-17 19:19:19 | committer_date timestamp[us]date 1997-09-14 05:04:47 2023-09-06 06:22:19 | github_id int64 3.89k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 22
values | gha_event_created_at timestamp[us]date 2012-06-07 00:51:45 2023-09-14 21:58:39 ⌀ | gha_created_at timestamp[us]date 2008-03-27 23:40:48 2023-08-21 23:17:38 ⌀ | gha_language stringclasses 141
values | src_encoding stringclasses 34
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 3 10.4M | extension stringclasses 115
values | content stringlengths 3 10.4M | authors listlengths 1 1 | author_id stringlengths 0 158 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
400dac01be2fbdbf0bc0751a08696150b8aac9ba | 3b7510e0b11f33d3d311c73cfe7786828c406095 | /03/ex02/FragTrap.hpp | a19955f48a5b96ef1054b3c398ce9d1e78f97892 | [] | no_license | Nimon77/Piscine_CPP | 3ae7f747a92018a39d79b91e9f15947e453037e9 | 2a3f745764d4bed60522f0af04aa30cbd24ec7cd | refs/heads/main | 2023-04-14T00:27:58.686490 | 2021-04-17T18:02:22 | 2021-04-17T18:02:22 | 336,347,602 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,214 | hpp | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* FragTrap.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: nsimon <nsimon@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/03/09 01:36:01 by nsimon #+# #+# */
/* Updated: 2021/03/12 01:42:42 by nsimon ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FRAGTRAP_HPP
# define FRAGTRAP_HPP
# include "ClapTrap.hpp"
class FragTrap : public ClapTrap {
public:
FragTrap();
FragTrap(std::string name);
FragTrap(FragTrap const ©);
~FragTrap();
FragTrap & operator=(FragTrap const &rhs);
void vaulthunter_dot_exe(std::string const & target);
};
#endif
| [
"nsimon@student.42.fr"
] | nsimon@student.42.fr |
76c4de4933c662398c6948ba3201a21778f9bf7e | 135d46da9ba5c74e9e16612d378935f87d4035c2 | /databases/mnauthor.cpp | 2e828a52537fb10ebb50130723c94e1cb805ff28 | [] | no_license | alkotobi/DBConverterWin | 0f23e59bfebc92ebb1ae5425025fbf46b9b25032 | 465590446a9e2237e9a93df9b1b867b34b275602 | refs/heads/master | 2022-11-22T09:50:29.610206 | 2020-07-15T01:49:03 | 2020-07-15T01:49:03 | 267,470,403 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,219 | cpp | #include "mnauthor.h"
MNAuthor::MNAuthor()
{
}
QSqlRecord MNAuthor::createRecord()
{
QSqlRecord rcd;
QSqlField fld;
MNRecord::initRecord(rcd);
rcd.append(QSqlField("shortName",QVariant::String));
rcd.append(QSqlField("longName",QVariant::String));
rcd.append(QSqlField("info",QVariant::String));
rcd.append(QSqlField("hijri",QVariant::Int));
rcd.append(QSqlField("authId",QVariant::Int));
fld = QSqlField("selected",QVariant::Int);
fld.setValue(0);
rcd.append(fld);
fld=QSqlField("version",QVariant::Int);
fld.setValue(0);
rcd.append(fld);
return rcd;
}
QMap<QString, QString> MNAuthor::createFieldsMap()
{
QMap<QString,QString> map;
map["shortName"]="auth";
map["longName"]="Lng";
map["info"]="inf";
map["hijri"]="AD";
map["authId"]="authid";
return map;
}
int MNAuthor::importAuthor(QString bkListDbSourcePath, QString bkListDbDestPath, int bkId)
{
QSqlQuery qrbkListDbSource(QSqlDatabase::database(bkListDbSourcePath));
QString authDbPath=MNPathes::getAuthDbSourcePath(bkListDbSourcePath);
qrbkListDbSource.exec("select authno from [0bok] where bkid="+QString::number(bkId));
if(qrbkListDbSource.first()){
int authId=qrbkListDbSource.record().field(0).value().toInt();
MN_SUCCESS(qrbkListDbSource.record().field(0).value().toString());
QSqlQuery qrAuthDbSource(QSqlDatabase::database(authDbPath));
//check if the author exists
int id=MNQuery::getFirstId(bkListDbDestPath,TABLE_NAME,"authId ="+QString::number(authId));
if(id!=0) return id;
qrAuthDbSource.exec("select * from [Auth] where authid="+QString::number(authId));
if(qrAuthDbSource.first()){
QMap<QString,QString> map = createFieldsMap();
QSqlRecord rcd =qrAuthDbSource.record();
QSqlQuery qrBkListDest =QSqlQuery(QSqlDatabase::database(bkListDbDestPath));
return MNQuery::insertRecord(rcd,qrBkListDest,TABLE_NAME,
bkListDbDestPath+".txt",map);
}
}
return 0;
}
bool MNAuthor::createTable()
{
return MNQuery::createTable(MNPathes::getdbBooksListPath(),createRecord(),TABLE_NAME);
}
| [
"merhab@gmail.com"
] | merhab@gmail.com |
dd7871f4dc12af4aaba9d345570f927b0fd72723 | 58790459d953a3e4b6722ed3ee939f82d9de8c3e | /my/PDF插件/sdkDC_v1_win/Adobe/Acrobat DC SDK/Version 1/PluginSupport/Samples/BasicPlugin/sources/BasicPluginInit.cpp | 1e10e00c934531d06f489b06748df7fea4cb0869 | [] | no_license | tisn05/VS | bb84deb993eb18d43d8edaf81afb753afa3d3188 | da56d392a518ba21edcb1a367b4b4378d65506f0 | refs/heads/master | 2020-09-25T05:49:31.713773 | 2016-08-22T01:22:16 | 2016-08-22T01:22:16 | 66,229,337 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 7,222 | cpp | /*********************************************************************
ADOBE SYSTEMS INCORPORATED
Copyright (C) 1998-2006 Adobe Systems Incorporated
All rights reserved.
NOTICE: Adobe permits you to use, modify, and distribute this file
in accordance with the terms of the Adobe license agreement
accompanying it. If you have received this file from a source other
than Adobe, then your use, modification, or distribution of it
requires the prior written permission of Adobe.
-------------------------------------------------------------------*/
/**
\file BasicPluginInit.cpp
- Skeleton .cpp file for a plug-in. It implements the basic
handshaking methods required for all plug-ins.
- A convenient function is provided to add a menu item easily.
*********************************************************************/
// Acrobat Headers.
#ifndef MAC_PLATFORM
#include "PIHeaders.h"
#endif
/*-------------------------------------------------------
Constants/Declarations
-------------------------------------------------------*/
// stuff for Menu set up
static AVMenuItem menuItem = NULL;
ACCB1 ASBool ACCB2 PluginMenuItem(char* MyMenuItemTitle, char* MyMenuItemName);
// callback functions implemented in file "BasicPlugin.cpp"
extern ACCB1 void ACCB2 MyPluginCommand(void *clientData);
extern ACCB1 ASBool ACCB2 MyPluginIsEnabled(void *clientData);
extern ACCB1 ASBool ACCB2 MyPluginSetmenu();
extern const char* MyPluginExtensionName;
/*-------------------------------------------------------
Core Handshake Callbacks
-------------------------------------------------------*/
/**
Callback invoked by the application to give the plug-in an opportunity to register
an HFTServer with the application.
@return true to indicate the plug-in should continue loading.
*/
ACCB1 ASBool ACCB2 PluginExportHFTs(void)
{
return true;
}
/**
The application calls this function to allow it to
<ul>
<li> Import plug-in supplied HFTs.
<li> Replace functions in the HFTs you're using (where allowed).
<li> Register to receive notification events.
</ul>
*/
ACCB1 ASBool ACCB2 PluginImportReplaceAndRegister(void)
{
return true;
}
/**
The main initialization routine.
We register our action handler with the application.
@return true to continue loading the plug-in
@return false to cause plug-in loading to stop.
*/
/* PluginInit
** ------------------------------------------------------
**
** The main initialization routine.
**
** Return true to continue loading plug-in.
** Return false to cause plug-in loading to stop.
*/
ACCB1 ASBool ACCB2 PluginInit(void)
{
return MyPluginSetmenu();
}
/**
The unload routine.
Called when your plug-in is being unloaded when the application quits.
Use this routine to release any system resources you may have
allocated.
Returning false will cause an alert to display that unloading failed.
@return true to indicate the plug-in unloaded.
*/
ACCB1 ASBool ACCB2 PluginUnload(void)
{
if (menuItem)
AVMenuItemRemove(menuItem);
return true;
}
/**
Return the unique ASAtom associated with your plug-in.
@return the plug-ins name as an ASAtom.
*/
ASAtom GetExtensionName()
{
return ASAtomFromString(MyPluginExtensionName);
}
/**
Function that provides the initial interface between your plug-in and the application.
This function provides the callback functions to the application that allow it to
register the plug-in with the application environment.
Required Plug-in handshaking routine: <b>Do not change it's name!</b>
@param handshakeVersion the version this plug-in works with. There are two versions possible, the plug-in version
and the application version. The application calls the main entry point for this plug-in with its version.
The main entry point will call this function with the version that is earliest.
@param handshakeData OUT the data structure used to provide the primary entry points for the plug-in. These
entry points are used in registering the plug-in with the application and allowing the plug-in to register for
other plug-in services and offer its own.
@return true to indicate success, false otherwise (the plug-in will not load).
*/
ACCB1 ASBool ACCB2 PIHandshake(Uns32 handshakeVersion, void *handshakeData)
{
if (handshakeVersion == HANDSHAKE_V0200) {
/* Cast handshakeData to the appropriate type */
PIHandshakeData_V0200 *hsData = (PIHandshakeData_V0200 *)handshakeData;
/* Set the name we want to go by */
hsData->extensionName = GetExtensionName();
/* If you export your own HFT, do so in here */
hsData->exportHFTsCallback = (void*)ASCallbackCreateProto(PIExportHFTsProcType, &PluginExportHFTs);
/*
** If you import plug-in HFTs, replace functionality, and/or want to register for notifications before
** the user has a chance to do anything, do so in here.
*/
hsData->importReplaceAndRegisterCallback = (void*)ASCallbackCreateProto(PIImportReplaceAndRegisterProcType,
&PluginImportReplaceAndRegister);
/* Perform your plug-in's initialization in here */
hsData->initCallback = (void*)ASCallbackCreateProto(PIInitProcType, &PluginInit);
/* Perform any memory freeing or state saving on "quit" in here */
hsData->unloadCallback = (void*)ASCallbackCreateProto(PIUnloadProcType, &PluginUnload);
/* All done */
return true;
} /* Each time the handshake version changes, add a new "else if" branch */
/*
** If we reach here, then we were passed a handshake version number we don't know about.
** This shouldn't ever happen since our main() routine chose the version number.
*/
return false;
}
/*-------------------------------------------------------
Menu Utility
-------------------------------------------------------*/
/**
A convenient function to add a menu item under Acrobat SDK menu.
@param MyMenuItemTitle IN String for the menu item's title.
@param MyMenuItemName IN String for the menu item's internal name.
@return true if successful, false if failed.
@see AVAppGetMenubar
@see AVMenuItemNew
@see AVMenuItemSetExecuteProc
@see AVMenuItemSetComputeEnabledProc
@see AVMenubarAcquireMenuItemByName
@see AVMenubarAcquireMenuByName
*/
ACCB1 ASBool ACCB2 PluginMenuItem(char* MyMenuItemTitle, char* MyMenuItemName)
{
AVMenubar menubar = AVAppGetMenubar();
AVMenu volatile commonMenu = NULL;
if (!menubar)
return false;
DURING
// Create our menuitem
menuItem = AVMenuItemNew (MyMenuItemTitle, MyMenuItemName, NULL, true, NO_SHORTCUT, 0, NULL, gExtensionID);
AVMenuItemSetExecuteProc (menuItem, ASCallbackCreateProto(AVExecuteProc, MyPluginCommand), NULL);
AVMenuItemSetComputeEnabledProc (menuItem,
ASCallbackCreateProto(AVComputeEnabledProc, MyPluginIsEnabled), (void *)pdPermEdit);
commonMenu = AVMenubarAcquireMenuByName (menubar, "ADBE:Acrobat_SDK");
// if "Acrobat SDK" menu is not existing, create one.
if (!commonMenu) {
commonMenu = AVMenuNew ("Acrobat SDK", "ADBE:Acrobat_SDK", gExtensionID);
AVMenubarAddMenu(menubar, commonMenu, APPEND_MENU);
}
AVMenuAddMenuItem(commonMenu, menuItem, APPEND_MENUITEM);
AVMenuRelease(commonMenu);
HANDLER
if (commonMenu)
AVMenuRelease (commonMenu);
return false;
END_HANDLER
return true;
}
| [
"tisn05@gmail.com"
] | tisn05@gmail.com |
8bb512705d7198d050c53a50af2b15f69988bcb7 | 89376968953265afbb1b39f3ce4c096a746eb8f8 | /TP1/exo3.cpp | fb95f6fa7924d6d003f3fcd1101fc16e3f9861fd | [] | no_license | leogenot/AlgoProg | 27d57262deb214f915b741eef080a40b4e8f1885 | 11acded5c19d131fd0435c3906f0f591c3844956 | refs/heads/master | 2023-04-15T00:18:46.332168 | 2021-04-16T10:24:32 | 2021-04-16T10:24:32 | 344,190,223 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 908 | cpp | #include "tp1.h"
#include <QApplication>
#include <time.h>
#define return_and_display(result) return _.store(result);
int search(int value, Array& toSort, int size)
{
Context _("search", value, size); // do not care about this, it allow the display of call stack
if(size==1){
if(toSort[size-1]==value){
return(size-1);
}
}else{
if(toSort[size-1]==value){
return(size-1);
}else{
return search(value,toSort,size-1);
}
}
return_and_display(-1);
}
int main(int argc, char *argv[])
{
QApplication a(argc, argv); // create a window manager
MainWindow::instruction_duration = 400; // make a pause between instruction display
MainWindow* w = new SearchWindow(search); // create a window for this exercice
w->show(); // show exercice
return a.exec(); // main loop while window is opened
}
| [
"45610291+leogenot@users.noreply.github.com"
] | 45610291+leogenot@users.noreply.github.com |
5d5cfe22c38484a2b55c5fd80f51083db0745604 | 3bbc1f7e7fe9997bd76901b66deb23a4ac2ecb34 | /src/Main.cpp | 37dae8a010486278d7cff141f9f336df0a868bad | [] | no_license | DanielZajkowski/2dgameengine | 46f612d0ea28cade98320bff546f84f1817ca99a | 56373dc14fe6e1f44cd609072ec861af6c686f37 | refs/heads/master | 2023-04-22T23:16:53.314784 | 2021-05-13T06:36:57 | 2021-05-13T06:36:57 | 277,488,840 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 591 | cpp | #include <iostream>
#include "Game.h"
#include "Constants.h"
int main(int argc, char *args[])
{
// Game *game = new Game();
// game->Initialize(WINDOW_WIDTH, WINDOW_HEIGHT);
// while (game->IsRunning())
// {
// game->ProcessInput();
// game->Update();
// game->Render();
// }
// game->Destroy();
// return 0;
Game game;
game.Initialize(WINDOW_WIDTH, WINDOW_HEIGHT);
while (game.IsRunning())
{
game.ProcessInput();
game.Update();
game.Render();
}
game.Destroy();
return 0;
} | [
"zajkowskidaniel@gmail.com"
] | zajkowskidaniel@gmail.com |
f45e3b3f2b401cc553a945cdbf1c3544afdd34cb | 031f86321c1b87d347762de4aae9f7276ccd43b0 | /client/inc/UI/ADrawable.hpp | 945aa29979a2a82c964d55d6d76219b7ae5ac0ff | [
"MIT"
] | permissive | LeNiglo/TinyTank-v3 | 74fb685d0d375dba9cf38d29f7c9c80e08dbb8b5 | a4b19f572fe1b81045195f86d6ac9fe2a70e25ed | refs/heads/master | 2020-04-15T12:45:00.060992 | 2016-11-08T22:23:50 | 2016-11-08T22:23:50 | 64,608,898 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 912 | hpp | #ifndef ADRAWABLE_HPP_
# define ADRAWABLE_HPP_
# include <SFML/Graphics.hpp>
# include "Input.hpp"
class ADrawable
{
public:
ADrawable(bool hide, const sf::Vector2f &pos, const sf::Vector2f &size) : _hide(hide), _pos(pos), _size(size) { };
virtual ~ADrawable() { };
virtual void update(const Input &, float) = 0;
virtual void draw(sf::RenderWindow &win) = 0;
void setHide(bool hide)
{
this->_hide = hide;
};
bool isHidden() const
{
return this->_hide;
}
void setSize(const sf::Vector2f &size)
{
this->_size = size;
}
const sf::Vector2f &getSize() const
{
return this->_size;
}
void setPosition(const sf::Vector2f &pos)
{
this->_pos = pos;
}
const sf::Vector2f &getPosition() const
{
return this->_pos;
}
protected:
bool _hide;
sf::Vector2f _pos;
sf::Vector2f _size;
};
#endif /* end of include guard: ADRAWABLE_HPP_ */
| [
"lefrantguillaume@gmail.com"
] | lefrantguillaume@gmail.com |
ae21fa829565e23a8e0642a09cac02c410581e3b | eb2751f5c220563ac7c54f407e8720785edfd76b | /src/chain.h | 72ad4e595dd0105d51b826740ad9172f9d20e7de | [
"MIT"
] | permissive | psolstice/zcoin | c96ec59722e7b059952ca4e0a5cdd428f362d066 | 0544bcc76ce7d4ebe5cc7454c51a2959faf0ba51 | refs/heads/master | 2021-01-23T09:45:43.578658 | 2017-10-01T16:34:18 | 2017-10-01T16:34:18 | 102,598,004 | 2 | 0 | null | 2017-09-06T10:59:13 | 2017-09-06T10:59:13 | null | UTF-8 | C++ | false | false | 14,620 | h | // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2015 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_CHAIN_H
#define BITCOIN_CHAIN_H
#include "arith_uint256.h"
#include "primitives/block.h"
#include "pow.h"
#include "tinyformat.h"
#include "uint256.h"
#include <vector>
class CBlockFileInfo
{
public:
unsigned int nBlocks; //!< number of blocks stored in file
unsigned int nSize; //!< number of used bytes of block file
unsigned int nUndoSize; //!< number of used bytes in the undo file
unsigned int nHeightFirst; //!< lowest height of block in file
unsigned int nHeightLast; //!< highest height of block in file
uint64_t nTimeFirst; //!< earliest time of block in file
uint64_t nTimeLast; //!< latest time of block in file
ADD_SERIALIZE_METHODS;
template <typename Stream, typename Operation>
inline void SerializationOp(Stream& s, Operation ser_action, int nType, int nVersion) {
READWRITE(VARINT(nBlocks));
READWRITE(VARINT(nSize));
READWRITE(VARINT(nUndoSize));
READWRITE(VARINT(nHeightFirst));
READWRITE(VARINT(nHeightLast));
READWRITE(VARINT(nTimeFirst));
READWRITE(VARINT(nTimeLast));
}
void SetNull() {
nBlocks = 0;
nSize = 0;
nUndoSize = 0;
nHeightFirst = 0;
nHeightLast = 0;
nTimeFirst = 0;
nTimeLast = 0;
}
CBlockFileInfo() {
SetNull();
}
std::string ToString() const;
/** update statistics (does not update nSize) */
void AddBlock(unsigned int nHeightIn, uint64_t nTimeIn) {
if (nBlocks==0 || nHeightFirst > nHeightIn)
nHeightFirst = nHeightIn;
if (nBlocks==0 || nTimeFirst > nTimeIn)
nTimeFirst = nTimeIn;
nBlocks++;
if (nHeightIn > nHeightLast)
nHeightLast = nHeightIn;
if (nTimeIn > nTimeLast)
nTimeLast = nTimeIn;
}
};
struct CDiskBlockPos
{
int nFile;
unsigned int nPos;
ADD_SERIALIZE_METHODS;
template <typename Stream, typename Operation>
inline void SerializationOp(Stream& s, Operation ser_action, int nType, int nVersion) {
READWRITE(VARINT(nFile));
READWRITE(VARINT(nPos));
}
CDiskBlockPos() {
SetNull();
}
CDiskBlockPos(int nFileIn, unsigned int nPosIn) {
nFile = nFileIn;
nPos = nPosIn;
}
friend bool operator==(const CDiskBlockPos &a, const CDiskBlockPos &b) {
return (a.nFile == b.nFile && a.nPos == b.nPos);
}
friend bool operator!=(const CDiskBlockPos &a, const CDiskBlockPos &b) {
return !(a == b);
}
void SetNull() { nFile = -1; nPos = 0; }
bool IsNull() const { return (nFile == -1); }
std::string ToString() const
{
return strprintf("CBlockDiskPos(nFile=%i, nPos=%i)", nFile, nPos);
}
};
enum BlockStatus: uint32_t {
//! Unused.
BLOCK_VALID_UNKNOWN = 0,
//! Parsed, version ok, hash satisfies claimed PoW, 1 <= vtx count <= max, timestamp not in future
BLOCK_VALID_HEADER = 1,
//! All parent headers found, difficulty matches, timestamp >= median previous, checkpoint. Implies all parents
//! are also at least TREE.
BLOCK_VALID_TREE = 2,
/**
* Only first tx is coinbase, 2 <= coinbase input script length <= 100, transactions valid, no duplicate txids,
* sigops, size, merkle root. Implies all parents are at least TREE but not necessarily TRANSACTIONS. When all
* parent blocks also have TRANSACTIONS, CBlockIndex::nChainTx will be set.
*/
BLOCK_VALID_TRANSACTIONS = 3,
//! Outputs do not overspend inputs, no double spends, coinbase output ok, no immature coinbase spends, BIP30.
//! Implies all parents are also at least CHAIN.
BLOCK_VALID_CHAIN = 4,
//! Scripts & signatures ok. Implies all parents are also at least SCRIPTS.
BLOCK_VALID_SCRIPTS = 5,
//! All validity bits.
BLOCK_VALID_MASK = 7,
BLOCK_HAVE_DATA = 8, //!< full block available in blk*.dat
BLOCK_HAVE_UNDO = 16, //!< undo data available in rev*.dat
BLOCK_HAVE_MASK = 24,
BLOCK_FAILED_VALID = 32, //!< stage after last reached validness failed
BLOCK_FAILED_CHILD = 64, //!< descends from failed block
BLOCK_FAILED_MASK = 96,
BLOCK_OPT_WITNESS = 128, //!< block data in blk*.data was received with a witness-enforcing client
};
/** The block chain is a tree shaped structure starting with the
* genesis block at the root, with each block potentially having multiple
* candidates to be the next block. A blockindex may have multiple pprev pointing
* to it, but at most one of them can be part of the currently active branch.
*/
class CBlockIndex
{
public:
//! pointer to the hash of the block, if any. Memory is owned by this CBlockIndex
const uint256* phashBlock;
//! pointer to the index of the predecessor of this block
CBlockIndex* pprev;
//! pointer to the index of some further predecessor of this block
CBlockIndex* pskip;
//! height of the entry in the chain. The genesis block has height 0
int nHeight;
//! Which # file this block is stored in (blk?????.dat)
int nFile;
//! Byte offset within blk?????.dat where this block's data is stored
unsigned int nDataPos;
//! Byte offset within rev?????.dat where this block's undo data is stored
unsigned int nUndoPos;
//! (memory only) Total amount of work (expected number of hashes) in the chain up to and including this block
arith_uint256 nChainWork;
//! Number of transactions in this block.
//! Note: in a potential headers-first mode, this number cannot be relied upon
unsigned int nTx;
//! (memory only) Number of transactions in the chain up to and including this block.
//! This value will be non-zero only if and only if transactions for this block and all its parents are available.
//! Change to 64-bit type when necessary; won't happen before 2030
unsigned int nChainTx;
//! Verification status of this block. See enum BlockStatus
unsigned int nStatus;
//! block header
int nVersion;
uint256 hashMerkleRoot;
unsigned int nTime;
unsigned int nBits;
unsigned int nNonce;
//! (memory only) Sequential id assigned to distinguish order in which blocks are received.
uint32_t nSequenceId;
void SetNull()
{
phashBlock = NULL;
pprev = NULL;
pskip = NULL;
nHeight = 0;
nFile = 0;
nDataPos = 0;
nUndoPos = 0;
nChainWork = arith_uint256();
nTx = 0;
nChainTx = 0;
nStatus = 0;
nSequenceId = 0;
nVersion = 0;
hashMerkleRoot = uint256();
nTime = 0;
nBits = 0;
nNonce = 0;
}
CBlockIndex()
{
SetNull();
}
CBlockIndex(const CBlockHeader& block)
{
SetNull();
nVersion = block.nVersion;
hashMerkleRoot = block.hashMerkleRoot;
nTime = block.nTime;
nBits = block.nBits;
nNonce = block.nNonce;
}
CDiskBlockPos GetBlockPos() const {
CDiskBlockPos ret;
if (nStatus & BLOCK_HAVE_DATA) {
ret.nFile = nFile;
ret.nPos = nDataPos;
}
return ret;
}
CDiskBlockPos GetUndoPos() const {
CDiskBlockPos ret;
if (nStatus & BLOCK_HAVE_UNDO) {
ret.nFile = nFile;
ret.nPos = nUndoPos;
}
return ret;
}
CBlockHeader GetBlockHeader() const
{
CBlockHeader block;
block.nVersion = nVersion;
if (pprev)
block.hashPrevBlock = pprev->GetBlockHash();
block.hashMerkleRoot = hashMerkleRoot;
block.nTime = nTime;
block.nBits = nBits;
block.nNonce = nNonce;
return block;
}
uint256 GetBlockHash() const
{
return *phashBlock;
}
uint256 GetBlockPoWHash() const
{
return GetBlockHeader().GetPoWHash(nHeight);
}
int64_t GetBlockTime() const
{
return (int64_t)nTime;
}
enum { nMedianTimeSpan=11 };
int64_t GetMedianTimePast() const
{
int64_t pmedian[nMedianTimeSpan];
int64_t* pbegin = &pmedian[nMedianTimeSpan];
int64_t* pend = &pmedian[nMedianTimeSpan];
const CBlockIndex* pindex = this;
for (int i = 0; i < nMedianTimeSpan && pindex; i++, pindex = pindex->pprev)
*(--pbegin) = pindex->GetBlockTime();
std::sort(pbegin, pend);
return pbegin[(pend - pbegin)/2];
}
std::string ToString() const
{
return strprintf("CBlockIndex(pprev=%p, nHeight=%d, merkle=%s, hashBlock=%s)",
pprev, nHeight,
hashMerkleRoot.ToString(),
GetBlockHash().ToString());
}
//! Check whether this block index entry is valid up to the passed validity level.
bool IsValid(enum BlockStatus nUpTo = BLOCK_VALID_TRANSACTIONS) const
{
assert(!(nUpTo & ~BLOCK_VALID_MASK)); // Only validity flags allowed.
if (nStatus & BLOCK_FAILED_MASK)
return false;
return ((nStatus & BLOCK_VALID_MASK) >= nUpTo);
}
//! Raise the validity level of this block index entry.
//! Returns true if the validity was changed.
bool RaiseValidity(enum BlockStatus nUpTo)
{
assert(!(nUpTo & ~BLOCK_VALID_MASK)); // Only validity flags allowed.
if (nStatus & BLOCK_FAILED_MASK)
return false;
if ((nStatus & BLOCK_VALID_MASK) < nUpTo) {
nStatus = (nStatus & ~BLOCK_VALID_MASK) | nUpTo;
return true;
}
return false;
}
//! Build the skiplist pointer for this entry.
void BuildSkip();
//! Efficiently find an ancestor of this block.
CBlockIndex* GetAncestor(int height);
const CBlockIndex* GetAncestor(int height) const;
};
arith_uint256 GetBlockProof(const CBlockIndex& block);
/** Return the time it would take to redo the work difference between from and to, assuming the current hashrate corresponds to the difficulty at tip, in seconds. */
int64_t GetBlockProofEquivalentTime(const CBlockIndex& to, const CBlockIndex& from, const CBlockIndex& tip, const Consensus::Params&);
/** Used to marshal pointers into hashes for db storage. */
class CDiskBlockIndex : public CBlockIndex
{
public:
uint256 hashPrev;
CDiskBlockIndex() {
hashPrev = uint256();
}
explicit CDiskBlockIndex(const CBlockIndex* pindex) : CBlockIndex(*pindex) {
hashPrev = (pprev ? pprev->GetBlockHash() : uint256());
}
ADD_SERIALIZE_METHODS;
template <typename Stream, typename Operation>
inline void SerializationOp(Stream& s, Operation ser_action, int nType, int nVersion) {
if (!(nType & SER_GETHASH))
READWRITE(VARINT(nVersion));
READWRITE(VARINT(nHeight));
READWRITE(VARINT(nStatus));
READWRITE(VARINT(nTx));
if (nStatus & (BLOCK_HAVE_DATA | BLOCK_HAVE_UNDO))
READWRITE(VARINT(nFile));
if (nStatus & BLOCK_HAVE_DATA)
READWRITE(VARINT(nDataPos));
if (nStatus & BLOCK_HAVE_UNDO)
READWRITE(VARINT(nUndoPos));
// block header
READWRITE(this->nVersion);
READWRITE(hashPrev);
READWRITE(hashMerkleRoot);
READWRITE(nTime);
READWRITE(nBits);
READWRITE(nNonce);
}
uint256 GetBlockHash() const
{
CBlockHeader block;
block.nVersion = nVersion;
block.hashPrevBlock = hashPrev;
block.hashMerkleRoot = hashMerkleRoot;
block.nTime = nTime;
block.nBits = nBits;
block.nNonce = nNonce;
return block.GetHash();
}
std::string ToString() const
{
std::string str = "CDiskBlockIndex(";
str += CBlockIndex::ToString();
str += strprintf("\n hashBlock=%s, hashPrev=%s)",
GetBlockHash().ToString(),
hashPrev.ToString());
return str;
}
};
/** An in-memory indexed chain of blocks. */
class CChain {
private:
std::vector<CBlockIndex*> vChain;
public:
/** Returns the index entry for the genesis block of this chain, or NULL if none. */
CBlockIndex *Genesis() const {
return vChain.size() > 0 ? vChain[0] : NULL;
}
/** Returns the index entry for the tip of this chain, or NULL if none. */
CBlockIndex *Tip() const {
return vChain.size() > 0 ? vChain[vChain.size() - 1] : NULL;
}
/** Returns the index entry at a particular height in this chain, or NULL if no such height exists. */
CBlockIndex *operator[](int nHeight) const {
if (nHeight < 0 || nHeight >= (int)vChain.size())
return NULL;
return vChain[nHeight];
}
/** Compare two chains efficiently. */
friend bool operator==(const CChain &a, const CChain &b) {
return a.vChain.size() == b.vChain.size() &&
a.vChain[a.vChain.size() - 1] == b.vChain[b.vChain.size() - 1];
}
/** Efficiently check whether a block is present in this chain. */
bool Contains(const CBlockIndex *pindex) const {
return (*this)[pindex->nHeight] == pindex;
}
/** Find the successor of a block in this chain, or NULL if the given index is not found or is the tip. */
CBlockIndex *Next(const CBlockIndex *pindex) const {
if (Contains(pindex))
return (*this)[pindex->nHeight + 1];
else
return NULL;
}
/** Return the maximal height in the chain. Is equal to chain.Tip() ? chain.Tip()->nHeight : -1. */
int Height() const {
return vChain.size() - 1;
}
/** Set/initialize a chain with a given tip. */
void SetTip(CBlockIndex *pindex);
/** Return a CBlockLocator that refers to a block in this chain (by default the tip). */
CBlockLocator GetLocator(const CBlockIndex *pindex = NULL) const;
/** Find the last common block between this chain and a block index entry. */
const CBlockIndex *FindFork(const CBlockIndex *pindex) const;
};
#endif // BITCOIN_CHAIN_H
| [
"aizensou@protonmail.com"
] | aizensou@protonmail.com |
c570dfb21cb9a7741db1fb6e077d1b6be112d635 | d432a8c18999a4f4a9949aca5441fcef292d92d8 | /10678/10678.cc | a4af00aba4d24dff7a642362f01e2064e35b0806 | [] | no_license | lernerc/UVA | 05bad2a4ed054f6ba216f19221e05cf9f810b228 | 68cc70896866f73064791b46ea4f7c89dda73339 | refs/heads/master | 2021-01-23T06:39:14.000825 | 2014-08-23T15:55:07 | 2014-08-23T15:55:07 | 10,039,496 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 440 | cc | #include <iostream>
#include <cmath>
#include <iomanip>
using namespace std;
const double PI = 2 * acos(0.0);
int main() {
int cases;
cin >> cases;
for(int q = 0; q < cases; q++) {
double pil, rope;
cin >> pil >> rope;
double a, b;
b = rope/2.0;
a = sqrt(rope * rope / 4.0 - pil * pil / 4.0);
cout << fixed << setprecision(3);
cout << PI * a * b << endl;
}
return 0;
}
| [
"camara.lerner@gmail.com"
] | camara.lerner@gmail.com |
19333222fe89a33f01c5d2c3468694078692e51b | 70441dcb7a8917a5574dd74c5afdeeaed3672a7a | /第一回 アルゴリズム実技検定 過去問/D - 重複検査/main.cpp | 202b6ddbc073f008d7638677d677745656eec3de | [] | no_license | tmyksj/atcoder | f12ecf6255b668792d83621369194195f06c10f6 | 419165e85d8a9a0614e5544232da371d8a2f2f85 | refs/heads/master | 2023-03-05T12:14:14.945257 | 2023-02-26T10:10:20 | 2023-02-26T10:10:20 | 195,034,198 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 510 | cpp | #include <algorithm>
#include <iostream>
#include <vector>
using namespace std;
int main() {
int n;
cin >> n;
vector<int> c(n, 0);
for (int i = 0; i < n; i++) {
int a;
cin >> a;
c[a - 1]++;
}
vector<int>::iterator x = find(c.begin(), c.end(), 0);
vector<int>::iterator y = find(c.begin(), c.end(), 2);
if (x == c.end()) {
cout << "Correct" << endl;
} else {
cout << y - c.begin() + 1 << " " << x - c.begin() + 1 << endl;
}
}
| [
"33417830+tmyksj@users.noreply.github.com"
] | 33417830+tmyksj@users.noreply.github.com |
95ba8ac90ea1804d11687a6785dc908dcb5baa64 | 47927f5b2b9a79d35a0ff77699a2d0ca09a8a2f7 | /sdl-collision-events-src/CCamera.cpp | e414dd7bfd020f4ccbd3332aab8d24032a1e2929 | [] | no_license | Samurai336/sdl2-collision-events | e602e4abcab2bf211ac62309bab565a3d6a5ef80 | 54c8f5b57f8e9b71409d73698288b92f25748d91 | refs/heads/master | 2021-01-01T05:32:47.647781 | 2013-08-17T21:13:13 | 2013-08-17T21:13:13 | 11,079,993 | 2 | 1 | null | 2013-08-17T21:13:13 | 2013-06-30T23:42:11 | C++ | UTF-8 | C++ | false | false | 1,489 | cpp | //==============================================================================
#include "CCamera.h"
//==============================================================================
CCamera CCamera::CameraControl;
//==============================================================================
CCamera::CCamera() {
X = Y = 0;
TargetX = TargetY = NULL;
TargetMode = TARGET_MODE_NORMAL;
}
//==============================================================================
void CCamera::OnMove(int MoveX, int MoveY) {
X += MoveX;
Y += MoveY;
}
//==============================================================================
int CCamera::GetX() {
if(TargetX != NULL) {
if(TargetMode == TARGET_MODE_CENTER) {
return *TargetX - (WWIDTH / 2);
}
return *TargetX;
}
return X;
}
//------------------------------------------------------------------------------
int CCamera::GetY() {
if(TargetY != NULL) {
if(TargetMode == TARGET_MODE_CENTER) {
return *TargetY - (WHEIGHT / 2);
}
return *TargetY;
}
return Y;
}
//==============================================================================
void CCamera::SetPos(int X, int Y) {
this->X = X;
this->Y = Y;
}
//------------------------------------------------------------------------------
void CCamera::SetTarget(float* X, float* Y) {
TargetX = X;
TargetY = Y;
}
//==============================================================================
| [
"samurai336@gmail.com"
] | samurai336@gmail.com |
8c373c65f3992b70aec7c1bc3cb0b7fa9edfd270 | eb4cb3f77f8d1cf5909071dba1fd6e3a9af97502 | /TrafficCapture/source/Split.cpp | 5b7f67e7bc3db53ddd35739ad51204b132baa2cc | [] | no_license | NewGillig/LbsQoS | 65efe59cf4a43b7604e6aae7ad909e7d97bed49a | bca93790198714c3c1a732e81501c189d4d7eab8 | refs/heads/master | 2023-01-14T17:31:42.463743 | 2020-11-17T01:25:50 | 2020-11-17T01:25:50 | 313,472,303 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,903 | cpp | /***********************************************************
* Author: Wen Li
* Date : 11/10/2020
* Describe: traffic flow split
* History:
<1> 11/10/2020 , create
************************************************************/
#include "Split.h"
#include "FlowCsv.h"
FlowManage Split::m_Flm;
static VOID ReadPacket(BYTE *user, const struct pcap_pkthdr *Hdr, BYTE *PktData)
{
if (Hdr->caplen < ETH_HEADER_LEN + 28)
{
return;
}
BYTE* IpData = PktData+ETH_HEADER_LEN;
if (*IpData != 0x45)
{
return;
}
IpPacket *Packet = new IpPacket(IpData, Hdr->caplen-ETH_HEADER_LEN);
assert (Packet != NULL);
Flow* F = Split::m_Flm.GetFlow (Packet->m_SrcIp, Packet->m_DstIp,
Packet->m_SrcPort, Packet->m_DstPort, Packet->m_ProtoType);
if (F->m_SduNum >= CAPTURE_NUM)
{
return;
}
F->m_PacketNum++;
if (Packet->m_PayloadLen == 0)
{
delete Packet;
return;
}
F->m_SduNum++;
F->m_PakcetData.push_back (Packet);
return;
}
VOID Split::LoadPcap (const char *PcapFile)
{
pcap_t *pCapHandle;
char errbuf[PCAP_ERRBUF_SIZE];
if (PcapFile == NULL)
{
return;
}
pCapHandle = pcap_open_offline(PcapFile, errbuf);
if (pCapHandle == NULL)
{
printf("pcap_open_offline fail, pbPcapFile=%s\r\n", PcapFile);
return;
}
pcap_loop(pCapHandle, 0, (pcap_handler)ReadPacket, NULL);
pcap_close(pCapHandle);
}
static VOID DumpFlow(BYTE *user, const struct pcap_pkthdr *Hdr, BYTE *PktData)
{
pcap_dump(user, Hdr, PktData);
return;
}
VOID Split::Dump (Flow *F)
{
pcap_t *pCapHandle;
char errbuf[PCAP_ERRBUF_SIZE];
struct bpf_program Fp;
char FilterExp[1024] = {0};
char FlowPcap [256];
snprintf(FlowPcap, sizeof(FlowPcap), "SplitPCAPs/%.2X_%.2X_%.2X_%.2X_%.2X.pcap",
F->m_SrcIp, F->m_SrcPort, F->m_DstIp, F->m_DstPort, F->m_ProtoType);
pCapHandle = pcap_open_offline(m_PcapFile.c_str (), errbuf);
if (pCapHandle == NULL)
{
printf("pcap_open_offline fail, pbPcapFile=%s\r\n", m_PcapFile.c_str ());
return;
}
string Protocol = "tcp";
if (F->m_ProtoType != 6)
{
Protocol = "udp";
}
snprintf (FilterExp, sizeof (FilterExp),
"(src %u and src port %d and dst %u and dst port %d and %s) || (src %u and src port %d and dst %u and dst port %d and %s)",
F->m_SrcIp, F->m_SrcPort, F->m_DstIp, F->m_DstPort, Protocol.c_str(),
F->m_DstIp, F->m_DstPort, F->m_SrcIp, F->m_SrcPort, Protocol.c_str());
//printf ("FilterExp = %s \r\n", FilterExp);
if (pcap_compile(pCapHandle, &Fp, FilterExp, 0, 0xffffff) == -1)
{
fprintf(stderr, "Couldn't parse filter %s: %s\n", FilterExp, pcap_geterr(pCapHandle));
return;
}
if (pcap_setfilter(pCapHandle, &Fp) == -1)
{
fprintf(stderr, "Couldn't install filter %s: %s\n", FilterExp, pcap_geterr(pCapHandle));
return;
}
pcap_dumper_t* Dumper = pcap_dump_open(pCapHandle, FlowPcap);
assert (Dumper != NULL);;
pcap_loop(pCapHandle, 0, (pcap_handler)DumpFlow, (u_char*)Dumper);
pcap_close(pCapHandle);
}
VOID Split::SplitFlows()
{
DWORD Index = 0;
DWORD FlowNum = m_Flm.GetFlowNum ();
for (auto It = m_Flm.begin (); It != m_Flm.end (); It++)
{
Flow *F = *It;
if (F->m_SduNum < CAPTURE_NUM)
{
continue;
}
printf ("dump [%-4d/%4d] flow\r", Index++, FlowNum);
Dump (F);
}
printf ("dump [%-4d/%-4d] flow\r\n", Index, FlowNum);
if (m_IsCsv)
{
FlowCsv FC (&m_Flm);
printf ("dump CSVs of flows...\r\n");
FC.Dump ();
}
}
| [
"yu.nong@wsu.edu"
] | yu.nong@wsu.edu |
e3883d3e3063324f6c0e93c7f03ef6cbf582ed60 | f24e7daff602a5e3f2b4909721548a9f84598a56 | /russiancodecup/2014/EL/C/problem.cpp | cff9d67b0f366500b73a05ee98f0697ace0c4be0 | [] | no_license | permin/Olymp | 05b594e8c09adb04c1aa065ba6dd7f2dae8f4d6e | 51ac43fcbcc14136ed718481f64e09036f10ddf8 | refs/heads/master | 2021-01-18T23:04:00.491119 | 2017-03-08T22:22:25 | 2017-03-08T22:22:25 | 23,457,833 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,947 | cpp | #include <iostream>
#include <cstring>
#include <cstdlib>
#include <cstdio>
#include <string>
#include <vector>
#include <set>
#include <map>
#include <list>
#include <stack>
#include <deque>
#include <queue>
#include <algorithm>
#include <cassert>
#include <cmath>
#include <ctime>
#include <sstream>
#include <unordered_set>
#include <unordered_map>
#include <functional>
#include <bitset>
#include <valarray>
#include <memory>
using namespace std;
#ifdef LOCAL_RUN
#define debug(x) cerr << #x << ": " << (x) << "\n";
#else
#define debug(x) ;
#endif
#define all(v) (v).begin(), (v).end()
#define MP make_pair
template <class F, class S> ostream& operator << (ostream& o, const pair<F,S>& p) {
return o << "(" << p.first << ", " << p.second << ")";}
template<class C>void O__(ostream& o, const C& c) {
bool f = 1; for(const auto& x: c) {if (!f) o << ", "; f = 0; o << x;}}
template <class T>
ostream& operator << (ostream& o, const vector<T>& v) {o << "[";O__(o, v);o << "]";return o;}
template <class T, class V>
ostream& operator << (ostream& o, const map<T, V>& v) {o << "{";O__(o, v);o << "}"; return o;}
template <class T>
ostream& operator << (ostream& o, const set<T>& v) {o << "{";O__(o, v);o << "}";return o;}
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<double, double> pdd;
typedef vector<int> vi;
typedef vector<vi> vii;
typedef vector<vii> viii;
const double PI = 3.1415926535897932384626433832795;
const double EPS = 1e-9;
const int INF = std::numeric_limits<int>::max();
const long long LLINF = std::numeric_limits<ll>::max();
ll gcd(ll A, ll B) {
if (A < 0)
A = -A;
if (B < 0)
B = -B;
while (A) {
B %= A;
swap(A, B);
}
return B;
}
class CC {
public:
explicit CC(std::unique_ptr<vi>&& p):
p_(std::move(p)){}
std::unique_ptr<vi> get() {
return std::move(p_);
}
std::unique_ptr<vi> p_;
};
int main() {
{
CC A(std::unique_ptr<vi>(new vi(4, 123)));
std::unique_ptr<vi> pp = A.get();
debug(*pp);
std::unique_ptr<vi> ppp = A.get();
debug(*ppp);
debug(*A.get());
}
/*int n,m,C,H,k;
cin >> n >> m >> C >> H >> k;
vector<int> c(n);
vector<int> h(m);
for (int i = 0; i < n; ++i) {
cin >> c[i];
}
for (int i = 0; i < m; ++i) {
cin >> h[i];
}
if (H == C) {
for (int i = 0; i < k; ++i) {
cout << "YES\n";
}
return 0;
}
vector<pii> q(k);
vector<bool> res(k);
for (int i = 0; i < k; ++i) {
int p, q;
cin >> p >> q;
if (1LL * q * C == p) {
res[k] = 1;
continue;
}
ll A = p - 1LL * q * H;
ll B = q * C - p;
ll d = gcd(A, B);
A /= d;
B /= d;
if (A > 100*1000 || B > 100*1000) {
continue;
}
res[i] = pii(A, B);
}
*/
return 0;
}
| [
"rodion.permin@gmail.com"
] | rodion.permin@gmail.com |
25d9a85f80d2e60037084bf13ad5a21dacbde968 | 8dc84558f0058d90dfc4955e905dab1b22d12c08 | /device/geolocation/location_arbitrator_unittest.cc | ff9bcd470ff7c16bbf9ccb1f4b48fd6597bca03b | [
"LicenseRef-scancode-unknown-license-reference",
"BSD-3-Clause"
] | permissive | meniossin/src | 42a95cc6c4a9c71d43d62bc4311224ca1fd61e03 | 44f73f7e76119e5ab415d4593ac66485e65d700a | refs/heads/master | 2022-12-16T20:17:03.747113 | 2020-09-03T10:43:12 | 2020-09-03T10:43:12 | 263,710,168 | 1 | 0 | BSD-3-Clause | 2020-05-13T18:20:09 | 2020-05-13T18:20:08 | null | UTF-8 | C++ | false | false | 17,012 | cc | // Copyright (c) 2012 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.
#include "device/geolocation/location_arbitrator.h"
#include <memory>
#include <utility>
#include "base/bind.h"
#include "base/memory/ptr_util.h"
#include "base/test/scoped_task_environment.h"
#include "device/geolocation/fake_location_provider.h"
#include "device/geolocation/public/cpp/geoposition.h"
#include "device/geolocation/public/cpp/location_provider.h"
#include "net/url_request/url_request_test_util.h"
#include "services/device/public/mojom/geoposition.mojom.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
using ::testing::NiceMock;
namespace device {
namespace {
std::unique_ptr<LocationProvider> GetCustomLocationProviderForTest(
std::unique_ptr<LocationProvider> provider) {
return provider;
}
class MockLocationObserver {
public:
virtual ~MockLocationObserver() = default;
void InvalidateLastPosition() {
last_position_.latitude = 100;
last_position_.error_code = mojom::Geoposition::ErrorCode::NONE;
ASSERT_FALSE(ValidateGeoposition(last_position_));
}
void OnLocationUpdate(const LocationProvider* provider,
const mojom::Geoposition& position) {
last_position_ = position;
}
mojom::Geoposition last_position() { return last_position_; }
private:
mojom::Geoposition last_position_;
};
double g_fake_time_now_secs = 1;
base::Time GetTimeNowForTest() {
return base::Time::FromDoubleT(g_fake_time_now_secs);
}
void AdvanceTimeNow(const base::TimeDelta& delta) {
g_fake_time_now_secs += delta.InSecondsF();
}
void SetPositionFix(FakeLocationProvider* provider,
double latitude,
double longitude,
double accuracy) {
mojom::Geoposition position;
position.error_code = mojom::Geoposition::ErrorCode::NONE;
position.latitude = latitude;
position.longitude = longitude;
position.accuracy = accuracy;
position.timestamp = GetTimeNowForTest();
ASSERT_TRUE(ValidateGeoposition(position));
provider->HandlePositionChanged(position);
}
// TODO(lethalantidote): Populate a Geoposition in the class from kConstants
// and then just copy that with "=" versus using a helper function.
void SetReferencePosition(FakeLocationProvider* provider) {
SetPositionFix(provider, 51.0, -0.1, 400);
}
} // namespace
// Simple request context producer that immediately produces a nullptr
// URLRequestContextGetter, indicating that network geolocation should not be
// used.
void NullRequestContextProducer(
base::OnceCallback<void(scoped_refptr<net::URLRequestContextGetter>)>
response_callback) {
std::move(response_callback)
.Run(scoped_refptr<net::URLRequestContextGetter>(nullptr));
}
// Simple request context producer that immediately produces a
// TestURLRequestContextGetter.
void TestRequestContextProducer(
const scoped_refptr<base::SingleThreadTaskRunner>& network_task_runner,
base::OnceCallback<void(scoped_refptr<net::URLRequestContextGetter>)>
response_callback) {
std::move(response_callback)
.Run(base::MakeRefCounted<net::TestURLRequestContextGetter>(
network_task_runner));
}
class TestingLocationArbitrator : public LocationArbitrator {
public:
TestingLocationArbitrator(
const LocationProviderUpdateCallback& callback,
const CustomLocationProviderCallback& provider_getter,
GeolocationProvider::RequestContextProducer request_context_producer)
: LocationArbitrator(provider_getter,
request_context_producer,
std::string() /* api_key */),
cell_(nullptr),
gps_(nullptr) {
SetUpdateCallback(callback);
}
base::Time GetTimeNow() const override { return GetTimeNowForTest(); }
std::unique_ptr<LocationProvider> NewNetworkLocationProvider(
scoped_refptr<net::URLRequestContextGetter> context,
const std::string& api_key) override {
cell_ = new FakeLocationProvider;
return base::WrapUnique(cell_);
}
std::unique_ptr<LocationProvider> NewSystemLocationProvider() override {
gps_ = new FakeLocationProvider;
return base::WrapUnique(gps_);
}
// Two location providers, with nice short names to make the tests more
// readable. Note |gps_| will only be set when there is a high accuracy
// observer registered (and |cell_| when there's at least one observer of any
// type).
// TODO(mvanouwerkerk): rename |cell_| to |network_location_provider_| and
// |gps_| to |gps_location_provider_|
FakeLocationProvider* cell_;
FakeLocationProvider* gps_;
};
class GeolocationLocationArbitratorTest : public testing::Test {
protected:
GeolocationLocationArbitratorTest() : observer_(new MockLocationObserver) {}
// Initializes |arbitrator_| with the specified |provider|, which may be null.
void InitializeArbitrator(
const CustomLocationProviderCallback& provider_getter,
GeolocationProvider::RequestContextProducer request_context_producer) {
const LocationProvider::LocationProviderUpdateCallback callback =
base::Bind(&MockLocationObserver::OnLocationUpdate,
base::Unretained(observer_.get()));
arbitrator_.reset(new TestingLocationArbitrator(callback, provider_getter,
request_context_producer));
}
// testing::Test
void TearDown() override {}
void CheckLastPositionInfo(double latitude,
double longitude,
double accuracy) {
mojom::Geoposition geoposition = observer_->last_position();
EXPECT_TRUE(ValidateGeoposition(geoposition));
EXPECT_DOUBLE_EQ(latitude, geoposition.latitude);
EXPECT_DOUBLE_EQ(longitude, geoposition.longitude);
EXPECT_DOUBLE_EQ(accuracy, geoposition.accuracy);
}
base::TimeDelta SwitchOnFreshnessCliff() {
// Add 1, to ensure it meets any greater-than test.
return LocationArbitrator::kFixStaleTimeoutTimeDelta +
base::TimeDelta::FromMilliseconds(1);
}
FakeLocationProvider* cell() { return arbitrator_->cell_; }
FakeLocationProvider* gps() { return arbitrator_->gps_; }
const std::unique_ptr<MockLocationObserver> observer_;
std::unique_ptr<TestingLocationArbitrator> arbitrator_;
base::test::ScopedTaskEnvironment scoped_task_environment_;
};
// Basic test of the text fixture.
TEST_F(GeolocationLocationArbitratorTest, CreateDestroy) {
InitializeArbitrator(base::Bind(&GetCustomLocationProviderForTest, nullptr),
base::Bind(&NullRequestContextProducer));
EXPECT_TRUE(arbitrator_);
arbitrator_.reset();
SUCCEED();
}
// Tests OnPermissionGranted().
TEST_F(GeolocationLocationArbitratorTest, OnPermissionGranted) {
InitializeArbitrator(base::Bind(&GetCustomLocationProviderForTest, nullptr),
base::Bind(&NullRequestContextProducer));
EXPECT_FALSE(arbitrator_->HasPermissionBeenGrantedForTest());
arbitrator_->OnPermissionGranted();
EXPECT_TRUE(arbitrator_->HasPermissionBeenGrantedForTest());
// Can't check the provider has been notified without going through the
// motions to create the provider (see next test).
EXPECT_FALSE(cell());
EXPECT_FALSE(gps());
}
// Tests basic operation (single position fix) with both network location
// providers and system location provider.
TEST_F(GeolocationLocationArbitratorTest, NormalUsage) {
InitializeArbitrator(
base::Bind(&GetCustomLocationProviderForTest, nullptr),
base::Bind(&TestRequestContextProducer,
scoped_task_environment_.GetMainThreadTaskRunner()));
ASSERT_TRUE(arbitrator_);
EXPECT_FALSE(cell());
EXPECT_FALSE(gps());
arbitrator_->StartProvider(false);
ASSERT_TRUE(cell());
EXPECT_TRUE(gps());
EXPECT_EQ(FakeLocationProvider::LOW_ACCURACY, cell()->state_);
EXPECT_EQ(FakeLocationProvider::LOW_ACCURACY, gps()->state_);
EXPECT_FALSE(ValidateGeoposition(observer_->last_position()));
EXPECT_EQ(mojom::Geoposition::ErrorCode::NONE,
observer_->last_position().error_code);
SetReferencePosition(cell());
EXPECT_TRUE(ValidateGeoposition(observer_->last_position()) ||
observer_->last_position().error_code !=
mojom::Geoposition::ErrorCode::NONE);
EXPECT_EQ(cell()->GetPosition().latitude,
observer_->last_position().latitude);
EXPECT_FALSE(cell()->is_permission_granted());
EXPECT_FALSE(arbitrator_->HasPermissionBeenGrantedForTest());
arbitrator_->OnPermissionGranted();
EXPECT_TRUE(arbitrator_->HasPermissionBeenGrantedForTest());
EXPECT_TRUE(cell()->is_permission_granted());
}
// Tests basic operation (single position fix) with no network location
// providers and a custom system location provider.
TEST_F(GeolocationLocationArbitratorTest, CustomSystemProviderOnly) {
auto provider = std::make_unique<FakeLocationProvider>();
FakeLocationProvider* fake_location_provider = provider.get();
InitializeArbitrator(
base::Bind(&GetCustomLocationProviderForTest, base::Passed(&provider)),
base::Bind(&NullRequestContextProducer));
ASSERT_TRUE(arbitrator_);
EXPECT_FALSE(cell());
EXPECT_FALSE(gps());
arbitrator_->StartProvider(false);
ASSERT_FALSE(cell());
EXPECT_FALSE(gps());
EXPECT_EQ(FakeLocationProvider::LOW_ACCURACY, fake_location_provider->state_);
EXPECT_FALSE(ValidateGeoposition(observer_->last_position()));
EXPECT_EQ(mojom::Geoposition::ErrorCode::NONE,
observer_->last_position().error_code);
SetReferencePosition(fake_location_provider);
EXPECT_TRUE(ValidateGeoposition(observer_->last_position()) ||
observer_->last_position().error_code !=
mojom::Geoposition::ErrorCode::NONE);
EXPECT_EQ(fake_location_provider->GetPosition().latitude,
observer_->last_position().latitude);
EXPECT_FALSE(fake_location_provider->is_permission_granted());
EXPECT_FALSE(arbitrator_->HasPermissionBeenGrantedForTest());
arbitrator_->OnPermissionGranted();
EXPECT_TRUE(arbitrator_->HasPermissionBeenGrantedForTest());
EXPECT_TRUE(fake_location_provider->is_permission_granted());
}
// Tests basic operation (single position fix) with both network location
// providers and a custom system location provider.
TEST_F(GeolocationLocationArbitratorTest,
CustomSystemAndDefaultNetworkProviders) {
auto provider = std::make_unique<FakeLocationProvider>();
FakeLocationProvider* fake_location_provider = provider.get();
InitializeArbitrator(
base::Bind(&GetCustomLocationProviderForTest, base::Passed(&provider)),
base::Bind(&TestRequestContextProducer,
scoped_task_environment_.GetMainThreadTaskRunner()));
ASSERT_TRUE(arbitrator_);
EXPECT_FALSE(cell());
EXPECT_FALSE(gps());
arbitrator_->StartProvider(false);
ASSERT_TRUE(cell());
EXPECT_FALSE(gps());
EXPECT_EQ(FakeLocationProvider::LOW_ACCURACY, fake_location_provider->state_);
EXPECT_EQ(FakeLocationProvider::LOW_ACCURACY, cell()->state_);
EXPECT_FALSE(ValidateGeoposition(observer_->last_position()));
EXPECT_EQ(mojom::Geoposition::ErrorCode::NONE,
observer_->last_position().error_code);
SetReferencePosition(cell());
EXPECT_TRUE(ValidateGeoposition(observer_->last_position()) ||
observer_->last_position().error_code !=
mojom::Geoposition::ErrorCode::NONE);
EXPECT_EQ(cell()->GetPosition().latitude,
observer_->last_position().latitude);
EXPECT_FALSE(cell()->is_permission_granted());
EXPECT_FALSE(arbitrator_->HasPermissionBeenGrantedForTest());
arbitrator_->OnPermissionGranted();
EXPECT_TRUE(arbitrator_->HasPermissionBeenGrantedForTest());
EXPECT_TRUE(cell()->is_permission_granted());
}
// Tests flipping from Low to High accuracy mode as requested by a location
// observer.
TEST_F(GeolocationLocationArbitratorTest, SetObserverOptions) {
InitializeArbitrator(
base::Bind(&GetCustomLocationProviderForTest, nullptr),
base::Bind(&TestRequestContextProducer,
scoped_task_environment_.GetMainThreadTaskRunner()));
arbitrator_->StartProvider(false);
ASSERT_TRUE(cell());
ASSERT_TRUE(gps());
EXPECT_EQ(FakeLocationProvider::LOW_ACCURACY, cell()->state_);
EXPECT_EQ(FakeLocationProvider::LOW_ACCURACY, gps()->state_);
SetReferencePosition(cell());
EXPECT_EQ(FakeLocationProvider::LOW_ACCURACY, cell()->state_);
EXPECT_EQ(FakeLocationProvider::LOW_ACCURACY, gps()->state_);
arbitrator_->StartProvider(true);
EXPECT_EQ(FakeLocationProvider::HIGH_ACCURACY, cell()->state_);
EXPECT_EQ(FakeLocationProvider::HIGH_ACCURACY, gps()->state_);
}
// Tests arbitration algorithm through a sequence of position fixes from
// multiple sources, with varying accuracy, across a period of time.
TEST_F(GeolocationLocationArbitratorTest, Arbitration) {
InitializeArbitrator(
base::Bind(&GetCustomLocationProviderForTest, nullptr),
base::Bind(&TestRequestContextProducer,
scoped_task_environment_.GetMainThreadTaskRunner()));
arbitrator_->StartProvider(false);
ASSERT_TRUE(cell());
ASSERT_TRUE(gps());
SetPositionFix(cell(), 1, 2, 150);
// First position available
EXPECT_TRUE(ValidateGeoposition(observer_->last_position()));
CheckLastPositionInfo(1, 2, 150);
SetPositionFix(gps(), 3, 4, 50);
// More accurate fix available
CheckLastPositionInfo(3, 4, 50);
SetPositionFix(cell(), 5, 6, 150);
// New fix is available but it's less accurate, older fix should be kept.
CheckLastPositionInfo(3, 4, 50);
// Advance time, and notify once again
AdvanceTimeNow(SwitchOnFreshnessCliff());
cell()->HandlePositionChanged(cell()->GetPosition());
// New fix is available, less accurate but fresher
CheckLastPositionInfo(5, 6, 150);
// Advance time, and set a low accuracy position
AdvanceTimeNow(SwitchOnFreshnessCliff());
SetPositionFix(cell(), 5.676731, 139.629385, 1000);
CheckLastPositionInfo(5.676731, 139.629385, 1000);
// 15 secs later, step outside. Switches to gps signal.
AdvanceTimeNow(base::TimeDelta::FromSeconds(15));
SetPositionFix(gps(), 3.5676457, 139.629198, 50);
CheckLastPositionInfo(3.5676457, 139.629198, 50);
// 5 mins later switch cells while walking. Stay on gps.
AdvanceTimeNow(base::TimeDelta::FromMinutes(5));
SetPositionFix(cell(), 3.567832, 139.634648, 300);
SetPositionFix(gps(), 3.5677675, 139.632314, 50);
CheckLastPositionInfo(3.5677675, 139.632314, 50);
// Ride train and gps signal degrades slightly. Stay on fresher gps
AdvanceTimeNow(base::TimeDelta::FromMinutes(5));
SetPositionFix(gps(), 3.5679026, 139.634777, 300);
CheckLastPositionInfo(3.5679026, 139.634777, 300);
// 14 minutes later
AdvanceTimeNow(base::TimeDelta::FromMinutes(14));
// GPS reading misses a beat, but don't switch to cell yet to avoid
// oscillating.
SetPositionFix(gps(), 3.5659005, 139.682579, 300);
AdvanceTimeNow(base::TimeDelta::FromSeconds(7));
SetPositionFix(cell(), 3.5689579, 139.691420, 1000);
CheckLastPositionInfo(3.5659005, 139.682579, 300);
// 1 minute later
AdvanceTimeNow(base::TimeDelta::FromMinutes(1));
// Enter tunnel. Stay on fresher gps for a moment.
SetPositionFix(cell(), 3.5657078, 139.68922, 300);
SetPositionFix(gps(), 3.5657104, 139.690341, 300);
CheckLastPositionInfo(3.5657104, 139.690341, 300);
// 2 minutes later
AdvanceTimeNow(base::TimeDelta::FromMinutes(2));
// Arrive in station. Cell moves but GPS is stale. Switch to fresher cell.
SetPositionFix(cell(), 3.5658700, 139.069979, 1000);
CheckLastPositionInfo(3.5658700, 139.069979, 1000);
}
// Verifies that the arbitrator doesn't retain pointers to old providers after
// it has stopped and then restarted (crbug.com/240956).
TEST_F(GeolocationLocationArbitratorTest, TwoOneShotsIsNewPositionBetter) {
InitializeArbitrator(
base::Bind(&GetCustomLocationProviderForTest, nullptr),
base::Bind(&TestRequestContextProducer,
scoped_task_environment_.GetMainThreadTaskRunner()));
arbitrator_->StartProvider(false);
ASSERT_TRUE(cell());
ASSERT_TRUE(gps());
// Set the initial position.
SetPositionFix(cell(), 3, 139, 100);
CheckLastPositionInfo(3, 139, 100);
// Restart providers to simulate a one-shot request.
arbitrator_->StopProvider();
// To test 240956, perform a throwaway alloc.
// This convinces the allocator to put the providers in a new memory location.
std::unique_ptr<FakeLocationProvider> dummy_provider(
new FakeLocationProvider);
arbitrator_->StartProvider(false);
// Advance the time a short while to simulate successive calls.
AdvanceTimeNow(base::TimeDelta::FromMilliseconds(5));
// Update with a less accurate position to verify 240956.
SetPositionFix(cell(), 3, 139, 150);
CheckLastPositionInfo(3, 139, 150);
}
} // namespace device
| [
"arnaud@geometry.ee"
] | arnaud@geometry.ee |
6441d057af58173a4a8404794e00f2f13edaf083 | d86d5bd65585a385207aaaf65a79ede3ae2dfde9 | /src/websocket_server/CommandLineInterface.hh | 7cc82f7c1f0eae4416d46bac883046ec1cae5fbb | [
"MIT"
] | permissive | 3n16m4/websocket-server | b8bfb57f80d76e3e3de20c22608bee8477260ccc | 5b6575bbd459feeef459b20a093ada3fd9d035e5 | refs/heads/main | 2023-07-15T00:48:26.701874 | 2021-08-30T14:14:44 | 2021-08-30T14:14:44 | 307,843,365 | 3 | 1 | MIT | 2021-01-29T15:00:58 | 2020-10-27T22:28:27 | C++ | UTF-8 | C++ | false | false | 1,433 | hh | #ifndef WEBSOCKET_SERVER_COMMAND_LINE_INTERFACE_HH
#define WEBSOCKET_SERVER_COMMAND_LINE_INTERFACE_HH
#include "websocket_server/asiofwd.hh"
#include <boost/asio/ip/address.hpp>
#include <nlohmann/json.hpp>
#include <cstdint>
#include <string>
using JSON = nlohmann::json;
namespace amadeus {
/// \brief A simple CLI for parsing the necessary options for the TCP Listener.
struct CommandLineInterface
{
/// The IP Address the server will listen to.
asio::ip::address ip;
/// The HTTP port the server will listen to.
std::uint16_t httpPort;
/// The HTTPS port the server will listen to.
std::uint16_t httpsPort;
/// The TCP port the server will listen to.
std::uint16_t tcpPort;
/// The secure TCP port the server will listen to.
std::uint16_t tcpSecurePort;
/// The document root of all the resources the server will serve.
std::string docRoot;
/// The config file as a JSON object.
JSON config;
/// The amount of threads the server will utilize.
std::uint32_t threads;
/// The server certificate chain.
std::string certChain;
/// The server private key.
std::string privKey;
/// \brief Performs the actual command line parsing.
/// \param _argc The number of arguments.
/// \param _argv An array of arguments.
void parse(int _argc, char* _argv[]);
};
} // namespace amadeus
#endif // !WEBSOCKET_SERVER_COMMAND_LINE_INTERFACE_HH
| [
"r.mzannar@ostfalia.de"
] | r.mzannar@ostfalia.de |
fedafa62cd80c9483af01346d07632856d9e76a7 | dc78d725fa7af4a132a22fa7581fb08e01c56713 | /DLL/CvGameCoreDLL_Expansion2/CvTeam.h | 7d27734e7caac3e6d95f95a6a1249f34beaee029 | [] | no_license | Sergeus/CivMods | d5546252cbd50034aa9db0108a04d5d3bb8f04ea | ca31d95bca6fee78a5b5b305d2656e2ef60eae17 | refs/heads/master | 2016-09-06T00:48:35.265345 | 2015-05-10T22:40:22 | 2015-05-10T22:40:22 | 23,286,431 | 0 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 18,434 | h | /* -------------------------------------------------------------------------------------------------------
© 1991-2012 Take-Two Interactive Software and its subsidiaries. Developed by Firaxis Games.
Sid Meier's Civilization V, Civ, Civilization, 2K Games, Firaxis Games, Take-Two Interactive Software
and their respective logos are all trademarks of Take-Two interactive Software, Inc.
All other marks and trademarks are the property of their respective owners.
All rights reserved.
------------------------------------------------------------------------------------------------------- */
#pragma once
#include "FBatchAllocate.h"
// team.h
#ifndef CIV5_TEAM_H
#define CIV5_TEAM_H
class CvArea;
class CvTeamTechs;
class CvTeam
{
public:
CvTeam();
~CvTeam();
// inlined for performance reasons, only in the dll
static CvTeam& getTeam(TeamTypes eTeam)
{
CvAssertMsg(eTeam != NO_TEAM, "eTeam is not assigned a valid value");
CvAssertMsg(eTeam < MAX_TEAMS, "eTeam is not assigned a valid value");
return m_aTeams[eTeam];
}
static void initStatics();
static void freeStatics();
void init(TeamTypes eID);
void reset(TeamTypes eID = (TeamTypes)0, bool bConstructorCall = false);
void uninit();
void addTeam(TeamTypes eTeam);
void shareItems(TeamTypes eTeam);
void shareCounters(TeamTypes eTeam);
void processBuilding(BuildingTypes eBuilding, int iChange, bool bFirst);
void doTurn();
void DoBarbarianTech();
void DoMinorCivTech();
void updateYield();
bool canChangeWarPeace(TeamTypes eTeam) const;
bool canDeclareWar(TeamTypes eTeam) const;
void declareWar(TeamTypes eTeam, bool bDefensivePact = false);
void makePeace(TeamTypes eTeam, bool bBumpUnits = true, bool bSuppressNotification = false);
int GetTurnMadePeaceTreatyWithTeam(TeamTypes eTeam) const;
void SetTurnMadePeaceTreatyWithTeam(TeamTypes eTeam, int iNewValue);
bool IsHasBrokenPeaceTreaty() const;
void SetHasBrokenPeaceTreaty(bool bValue);
void meet(TeamTypes eTeam, bool bSuppressMessages);
int getPower() const;
int getDefensivePower() const;
int getEnemyPower() const;
int getNumNukeUnits() const;
// DEPRECATED
TeamTypes GetTeamVotingForInDiplo() const;
int GetProjectedVotesFromMinorAllies() const;
int GetProjectedVotesFromLiberatedMinors() const;
int GetProjectedVotesFromCivs() const;
int GetTotalProjectedVotes() const;
int GetTotalSecuredVotes() const;
// End DEPRECATED
int getAtWarCount(bool bIgnoreMinors) const;
int getHasMetCivCount(bool bIgnoreMinors) const;
bool hasMetHuman() const;
int getDefensivePactCount(TeamTypes eTeam = NO_TEAM) const;
int getUnitClassMaking(UnitClassTypes eUnitClass) const;
int getUnitClassCountPlusMaking(UnitClassTypes eIndex) const;
int getBuildingClassMaking(BuildingClassTypes eBuildingClass) const;
int getBuildingClassCountPlusMaking(BuildingClassTypes eIndex) const;
int countNumUnitsByArea(CvArea* pArea) const;
int countNumCitiesByArea(CvArea* pArea) const;
int countTotalPopulationByArea(CvArea* pArea) const;
int countEnemyDangerByArea(CvArea* pArea) const;
bool isHuman() const;
bool isObserver() const;
bool isBarbarian() const;
bool isMinorCiv() const;
#if WOTMOD
bool IsShadowSpawn() const;
#endif // WOTMOD
int GetNumMinorCivsAttacked() const;
void SetNumMinorCivsAttacked(int iValue);
void ChangeNumMinorCivsAttacked(int iChange);
bool IsMinorCivAggressor() const;
bool IsMinorCivWarmonger() const;
// Some diplo stuff
bool IsBrokenMilitaryPromise() const;
void SetBrokenMilitaryPromise(bool bValue);
bool IsBrokenExpansionPromise() const;
void SetBrokenExpansionPromise(bool bValue);
bool IsBrokenBorderPromise() const;
void SetBrokenBorderPromise(bool bValue);
bool IsBrokenCityStatePromise() const;
void SetBrokenCityStatePromise(bool bValue);
PlayerTypes getLeaderID() const;
PlayerTypes getSecretaryID() const;
HandicapTypes getHandicapType() const;
CvString getName() const;
CvString getNameKey() const;
int getNumMembers() const;
void changeNumMembers(int iChange);
int getAliveCount() const;
void changeAliveCount(int iChange);
bool isAlive() const
{
return m_iAliveCount > 0;
}
int getEverAliveCount() const;
int isEverAlive() const;
void changeEverAliveCount(int iChange);
int getNumCities() const;
void changeNumCities(int iChange);
int getTotalPopulation() const;
void changeTotalPopulation(int iChange);
int getTotalLand() const;
void changeTotalLand(int iChange);
int getNukeInterception() const;
void changeNukeInterception(int iChange);
int getForceTeamVoteEligibilityCount(VoteSourceTypes eVoteSource) const;
bool isForceTeamVoteEligible(VoteSourceTypes eVoteSource) const;
void changeForceTeamVoteEligibilityCount(VoteSourceTypes eVoteSource, int iChange);
int getExtraWaterSeeFromCount() const;
bool isExtraWaterSeeFrom() const;
void changeExtraWaterSeeFromCount(int iChange);
int getMapTradingCount() const;
bool isMapTrading() const;
void changeMapTradingCount(int iChange);
int getTechTradingCount() const;
bool isTechTrading() const;
void changeTechTradingCount(int iChange);
int getGoldTradingCount() const;
bool isGoldTrading() const;
void changeGoldTradingCount(int iChange);
bool HavePolicyInTeam(PolicyTypes ePolicy);
int getAllowEmbassyTradingAllowedCount() const;
bool isAllowEmbassyTradingAllowed() const;
void changeAllowEmbassyTradingAllowedCount(int iChange);
int getOpenBordersTradingAllowedCount() const;
bool isOpenBordersTradingAllowed() const;
bool isOpenBordersTradingAllowedWithTeam(TeamTypes eTeam) const;
void changeOpenBordersTradingAllowedCount(int iChange);
int getDefensivePactTradingAllowedCount() const;
bool isDefensivePactTradingAllowed() const;
bool isDefensivePactTradingAllowedWithTeam(TeamTypes eTeam) const;
void changeDefensivePactTradingAllowedCount(int iChange);
int GetResearchAgreementTradingAllowedCount() const;
bool IsResearchAgreementTradingAllowed() const;
bool IsResearchAgreementTradingAllowedWithTeam(TeamTypes eTeam) const;
void ChangeResearchAgreementTradingAllowedCount(int iChange);
int GetTradeAgreementTradingAllowedCount() const;
bool IsTradeAgreementTradingAllowed() const;
void ChangeTradeAgreementTradingAllowedCount(int iChange);
int getPermanentAllianceTradingCount() const;
bool isPermanentAllianceTrading() const;
void changePermanentAllianceTradingCount(int iChange);
int getBridgeBuildingCount() const;
bool isBridgeBuilding() const;
void changeBridgeBuildingCount(int iChange);
int getWaterWorkCount() const;
bool isWaterWork() const;
void changeWaterWorkCount(int iChange);
int getBorderObstacleCount() const;
bool isBorderObstacle() const;
void changeBorderObstacleCount(int iChange);
bool isMapCentering() const;
void setMapCentering(bool bNewValue);
TeamTypes GetID() const;
int getTechShareCount(int iIndex) const;
bool isTechShare(int iIndex) const;
void changeTechShareCount(int iIndex, int iChange);
int getExtraMoves(DomainTypes eIndex) const;
void changeExtraMoves(DomainTypes eIndex, int iChange);
bool canEmbark() const;
int getCanEmbarkCount() const;
void changeCanEmbarkCount(int iChange);
bool canDefensiveEmbark() const;
int getDefensiveEmbarkCount() const;
void changeDefensiveEmbarkCount(int iChange);
void UpdateEmbarkGraphics();
bool canEmbarkAllWaterPassage() const;
int getEmbarkedAllWaterPassage() const;
void changeEmbarkedAllWaterPassage(int iChange);
int getEmbarkedExtraMoves() const;
void changeEmbarkedExtraMoves(int iChange);
int GetNumNaturalWondersDiscovered() const;
void ChangeNumNaturalWondersDiscovered(int iChange);
bool isHasMet(TeamTypes eIndex) const;
void makeHasMet(TeamTypes eIndex, bool bSuppressMessages);
int GetTurnsSinceMeetingTeam(TeamTypes eTeam) const;
int GetTurnTeamMet(TeamTypes eTeam) const;
void SetTurnTeamMet(TeamTypes eTeam, int iTurn);
bool IsHasFoundPlayersTerritory(PlayerTypes ePlayer) const;
bool SetHasFoundPlayersTerritory(PlayerTypes ePlayer, bool bValue);
bool isAtWar(TeamTypes eIndex) const;
void setAtWar(TeamTypes eIndex, bool bNewValue);
bool HasCommonEnemy(TeamTypes eOtherTeam) const;
int GetNumTurnsAtWar(TeamTypes eTeam) const;
void SetNumTurnsAtWar(TeamTypes eTeam, int iValue);
void ChangeNumTurnsAtWar(TeamTypes eTeam, int iChange);
int GetNumTurnsLockedIntoWar(TeamTypes eTeam) const;
void SetNumTurnsLockedIntoWar(TeamTypes eTeam, int iValue);
void ChangeNumTurnsLockedIntoWar(TeamTypes eTeam, int iChange);
bool isPermanentWarPeace(TeamTypes eIndex) const;
void setPermanentWarPeace(TeamTypes eIndex, bool bNewValue);
TeamTypes GetLiberatedByTeam() const;
void SetLiberatedByTeam(TeamTypes eIndex);
TeamTypes GetKilledByTeam() const;
void SetKilledByTeam(TeamTypes eIndex);
void CloseEmbassyAtTeam(TeamTypes eIndex);
bool HasEmbassyAtTeam(TeamTypes eIndex) const;
void SetHasEmbassyAtTeam(TeamTypes eIndex, bool bNewValue);
void EvacuateDiplomatsAtTeam(TeamTypes eIndex);
bool IsAllowsOpenBordersToTeam(TeamTypes eIndex) const;
void SetAllowsOpenBordersToTeam(TeamTypes eIndex, bool bNewValue);
bool IsHasDefensivePact(TeamTypes eIndex) const;
void SetHasDefensivePact(TeamTypes eIndex, bool bNewValue);
int GetTotalNumResearchAgreements() const;
bool IsHasResearchAgreement(TeamTypes eIndex) const;
void SetHasResearchAgreement(TeamTypes eIndex, bool bNewValue);
void CancelResearchAgreement(TeamTypes eIndex);
bool IsHasTradeAgreement(TeamTypes eIndex) const;
void SetHasTradeAgreement(TeamTypes eIndex, bool bNewValue);
bool isForcePeace(TeamTypes eIndex) const;
void setForcePeace(TeamTypes eIndex, bool bNewValue);
int getRouteChange(RouteTypes eIndex) const;
void changeRouteChange(RouteTypes eIndex, int iChange);
int getBuildTimeChange(BuildTypes eIndex) const;
void changeBuildTimeChange(BuildTypes eIndex, int iChange);
RouteTypes GetBestPossibleRoute();
void SetBestPossibleRoute(RouteTypes eRoute);
void DoUpdateBestRoute();
int getProjectCount(ProjectTypes eIndex) const;
int getProjectDefaultArtType(ProjectTypes eIndex) const;
void setProjectDefaultArtType(ProjectTypes eIndex, int value);
int getProjectArtType(ProjectTypes eIndex, int number) const;
void setProjectArtType(ProjectTypes eIndex, int number, int value);
bool isProjectMaxedOut(ProjectTypes eIndex, int iExtra = 0) const;
bool isProjectAndArtMaxedOut(ProjectTypes eIndex) const;
void changeProjectCount(ProjectTypes eIndex, int iChange);
void finalizeProjectArtTypes();
int getProjectMaking(ProjectTypes eIndex) const;
void changeProjectMaking(ProjectTypes eIndex, int iChange);
int getUnitClassCount(UnitClassTypes eIndex) const;
bool isUnitClassMaxedOut(UnitClassTypes eIndex, int iExtra = 0) const;
void changeUnitClassCount(UnitClassTypes eIndex, int iChange);
int getBuildingClassCount(BuildingClassTypes eIndex) const;
bool isBuildingClassMaxedOut(BuildingClassTypes eIndex, int iExtra = 0) const;
void changeBuildingClassCount(BuildingClassTypes eIndex, int iChange);
int getObsoleteBuildingCount(BuildingTypes eIndex) const;
bool isObsoleteBuilding(BuildingTypes eIndex) const;
void changeObsoleteBuildingCount(BuildingTypes eIndex, int iChange);
void enhanceBuilding(BuildingTypes eIndex, int iChange);
int getTerrainTradeCount(TerrainTypes eIndex) const;
bool isTerrainTrade(TerrainTypes eIndex) const;
void changeTerrainTradeCount(TerrainTypes eIndex, int iChange);
void setHasTech(TechTypes eIndex, bool bNewValue, PlayerTypes ePlayer, bool bFirst, bool bAnnounce);
CvTeamTechs* GetTeamTechs() const;
int getImprovementYieldChange(ImprovementTypes eIndex1, YieldTypes eIndex2) const;
void changeImprovementYieldChange(ImprovementTypes eIndex1, YieldTypes eIndex2, int iChange);
int getImprovementNoFreshWaterYieldChange(ImprovementTypes eIndex1, YieldTypes eIndex2) const;
void changeImprovementNoFreshWaterYieldChange(ImprovementTypes eIndex1, YieldTypes eIndex2, int iChange);
int getImprovementFreshWaterYieldChange(ImprovementTypes eIndex1, YieldTypes eIndex2) const;
void changeImprovementFreshWaterYieldChange(ImprovementTypes eIndex1, YieldTypes eIndex2, int iChange);
bool isFriendlyTerritory(TeamTypes eTeam) const;
bool isAtWarWithHumans() const;
bool isSimultaneousTurns() const;
// DEPRECATED
bool IsHomeOfUnitedNations() const;
void SetHomeOfUnitedNations(bool bValue);
// End DEPRECATED
int getVictoryCountdown(VictoryTypes eIndex) const;
void setVictoryCountdown(VictoryTypes eIndex, int iTurnsLeft);
void changeVictoryCountdown(VictoryTypes eIndex, int iChange);
int getVictoryDelay(VictoryTypes eVictory) const;
bool canLaunch(VictoryTypes eVictory) const;
void setCanLaunch(VictoryTypes eVictory, bool bCan);
void resetVictoryProgress();
bool isVictoryAchieved(VictoryTypes eVictory) const;
void setVictoryAchieved(VictoryTypes eVictory, bool bValue);
int GetScore() const;
int getVictoryPoints() const;
void changeVictoryPoints(int iChange);
void DoTestSmallAwards();
bool IsSmallAwardAchieved(SmallAwardTypes eAward) const;
void SetSmallAwardAchieved(SmallAwardTypes eAward, bool bValue);
void verifySpyUnitsValidPlot();
void setForceRevealedResource(ResourceTypes eResource, bool bRevealed);
bool isForceRevealedResource(ResourceTypes eResource) const;
bool IsResourceObsolete(ResourceTypes eResource);
bool HasTechForWorldCongress() const;
void SetHasTechForWorldCongress(bool bValue);
EraTypes GetCurrentEra() const;
void SetCurrentEra(EraTypes eNewValue);
int countNumHumanGameTurnActive() const;
void setTurnActive(bool bNewValue, bool bTurn = true);
bool isTurnActive() const;
void PushIgnoreWarning (TeamTypes eTeam);
void PopIgnoreWarning (TeamTypes eTeam);
int GetIgnoreWarningCount (TeamTypes eTeam);
void setDynamicTurnsSimultMode(bool simultaneousTurns);
// Wrapper for giving Players on this Team a notification message
void AddNotification(NotificationTypes eNotificationType, const char* strMessage, const char* strSummary, int iX = -1, int iY = -1, int iGameDataIndex = -1, int iExtraGameData = -1);
virtual void Read(FDataStream& kStream);
virtual void Write(FDataStream& kStream) const;
protected:
TeamTypes m_eID;
static CvTeam* m_aTeams;
int m_iNumMembers;
int m_iAliveCount;
int m_iEverAliveCount;
int m_iNumCities;
int m_iTotalPopulation;
int m_iTotalLand;
int m_iNukeInterception;
int m_iExtraWaterSeeFromCount;
int m_iMapTradingCount;
int m_iTechTradingCount;
int m_iGoldTradingCount;
int m_iAllowEmbassyTradingAllowedCount;
int m_iOpenBordersTradingAllowedCount;
int m_iDefensivePactTradingAllowedCount;
int m_iResearchAgreementTradingAllowedCount;
int m_iTradeAgreementTradingAllowedCount;
int m_iPermanentAllianceTradingCount;
int m_iBridgeBuildingCount;
int m_iWaterWorkCount;
int m_iRiverTradeCount;
int m_iBorderObstacleCount;
int m_iVictoryPoints;
int m_iEmbarkedExtraMoves;
int m_iCanEmbarkCount;
int m_iDefensiveEmbarkCount;
int m_iEmbarkedAllWaterPassageCount;
int m_iNumNaturalWondersDiscovered;
int m_iBestPossibleRoute;
int m_iNumMinorCivsAttacked;
bool m_bMapCentering;
bool m_bHasBrokenPeaceTreaty;
bool m_bHomeOfUnitedNations;
bool m_bHasTechForWorldCongress;
bool m_bBrokenMilitaryPromise;
bool m_bBrokenExpansionPromise;
bool m_bBrokenBorderPromise;
bool m_bBrokenCityStatePromise;
EraTypes m_eCurrentEra;
TeamTypes m_eLiberatedByTeam;
TeamTypes m_eKilledByTeam;
Firaxis::Array< int, REALLY_MAX_TEAMS > m_aiTechShareCount;
Firaxis::Array< int, REALLY_MAX_TEAMS > m_aiNumTurnsAtWar;
Firaxis::Array< int, REALLY_MAX_TEAMS > m_aiNumTurnsLockedIntoWar;
Firaxis::Array< int, NUM_DOMAIN_TYPES > m_aiExtraMoves;
Firaxis::Array< int, REALLY_MAX_TEAMS > m_paiTurnMadePeaceTreatyWithTeam;
Firaxis::Array< int, REALLY_MAX_TEAMS > m_aiIgnoreWarningCount;
Firaxis::Array< bool, REALLY_MAX_PLAYERS > m_abHasFoundPlayersTerritory;
Firaxis::Array< bool, REALLY_MAX_TEAMS > m_abHasMet;
Firaxis::Array< bool, REALLY_MAX_TEAMS > m_abAtWar;
Firaxis::Array< bool, REALLY_MAX_TEAMS > m_abPermanentWarPeace;
Firaxis::Array< bool, REALLY_MAX_TEAMS > m_abEmbassy;
Firaxis::Array< bool, REALLY_MAX_TEAMS > m_abOpenBorders;
Firaxis::Array< bool, REALLY_MAX_TEAMS > m_abDefensivePact;
Firaxis::Array< bool, REALLY_MAX_TEAMS > m_abResearchAgreement;
Firaxis::Array< bool, REALLY_MAX_TEAMS > m_abTradeAgreement;
Firaxis::Array< bool, REALLY_MAX_TEAMS > m_abForcePeace;
Firaxis::Array< int, REALLY_MAX_PLAYERS > m_aiTurnTeamMet;
typedef
FAllocArrayType< int,
FAllocArrayType< bool,
FAllocArrayType< bool,
FAllocArrayType< bool,
FAllocArrayType< int,
FAllocArrayType< int,
FAllocArrayType< int,
FAllocArrayType< int,
FAllocArrayType< int,
FAllocArrayType< int,
FAllocArrayType< int,
FAllocArrayType< int,
FAllocArrayType< int,
FAllocArrayType< int,
FAllocArray2DType< int,
FAllocArray2DType< int,
FAllocArray2DType< int,
FAllocBase< 0, 0 > > > > > > > > > > > > > > > > > > CvTeamData;
CvTeamData m_BatchData;
int* m_aiForceTeamVoteEligibilityCount;
bool* m_abCanLaunch;
bool* m_abVictoryAchieved;
bool* m_abSmallAwardAchieved;
int* m_paiRouteChange;
int* m_paiBuildTimeChange;
int* m_paiProjectCount;
int* m_paiProjectDefaultArtTypes;
int* m_paiProjectMaking;
int* m_paiUnitClassCount;
int* m_paiBuildingClassCount;
int* m_paiObsoleteBuildingCount;
int* m_paiTerrainTradeCount;
int* m_aiVictoryCountdown;
int** m_ppaaiImprovementYieldChange;
int** m_ppaaiImprovementNoFreshWaterYieldChange;
int** m_ppaaiImprovementFreshWaterYieldChange;
std::vector<int>* m_pavProjectArtTypes;
std::vector<ResourceTypes> m_aeRevealedResources;
CvTeamTechs* m_pTeamTechs;
void updateTechShare(TechTypes eTech);
void updateTechShare();
void testCircumnavigated();
void processTech(TechTypes eTech, int iChange);
void cancelDefensivePacts();
void announceTechToPlayers(TechTypes eIndex, bool bPartial = false);
void DoNowAtWarOrPeace(TeamTypes eTeam, bool bWar);
void DoDeclareWar(TeamTypes eTeam, bool bDefensivePact, bool bMinorAllyPact = false);
void DoMakePeace(TeamTypes eTeam, bool bBumpUnits, bool bSuppressNotification = false);
};
// helper for accessing static functions
#define GET_TEAM CvTeam::getTeam
#endif
| [
"soulc3@gmail.com"
] | soulc3@gmail.com |
03b15c52b701952cfc8eb63f96c16daeabfc791a | d4e88d14e99158755c5f7e6b8902909655f04697 | /oddEvenList.cpp | 8ce58a1560da0af41e16bb44dcbd5392e873283a | [] | no_license | akash2504/leetcode | 5453d076cbf2205bb6fd4507399436c2ec5e4c37 | 92cfbefe63df8797c4179f0b1e3730be9515d815 | refs/heads/master | 2021-01-17T20:32:03.039450 | 2016-08-02T19:05:35 | 2016-08-02T19:05:35 | 64,784,710 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 935 | cpp | /**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
ListNode* oddEvenList(ListNode* head) {
ListNode *odd=NULL;
ListNode *even=NULL;
ListNode *oddStart=NULL;
ListNode *evenStart=NULL;
if(!head)
return NULL;
oddStart = head;
odd = oddStart;
ListNode * temp;
if(head->next==NULL)
return oddStart;
even = head->next;
evenStart = even;
while(head->next!=NULL && head->next->next!=NULL){
temp = oddStart->next->next;
evenStart->next = evenStart->next->next;
oddStart->next=temp;
head = temp;
evenStart = evenStart->next;
oddStart= oddStart->next;
}
oddStart->next = even;
return odd;
}
}; | [
"akash.bansal2504@gmail.com"
] | akash.bansal2504@gmail.com |
2738a15f05ee00d6a0ebfaf4814c4343678873e2 | 1e5d5ccbffaccf616c97d0c493890a6a1c7f91a0 | /lab_1/lib/square.h | 0cb198fe5006ca19554eab8567af9cde4d973284 | [] | no_license | haritonasty/technology-of-programming | 3dbcd5537464029bb62239fedbc12ee71234e2e0 | 1f0901448fd607d6012bac7d4fb5c75c9c9a75b9 | refs/heads/master | 2021-09-18T01:26:45.549624 | 2018-07-08T14:59:19 | 2018-07-08T14:59:19 | 111,952,007 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 278 | h | #ifndef SQUARE_H
#define SQUARE_H
#include "shape.h"
class FIGURESHARED_EXPORT Square : public Shape {
float side;
public:
Square(float Side);
Square(float Side, float X, float Y);
string type();
void print();
vector<int> getAll();
};
#endif // SQUARE_H
| [
"a.kharitonovaspb@gmail.com"
] | a.kharitonovaspb@gmail.com |
c13949417d65f9e374206e818d3c4b7f2c6437ab | 63a54bc72b5860fa51117334b80c4e8e027258dd | /CppPool/cpp_d07m/ex00/Federation.hh | 7c87f13d1d6d21ed1206ac8a9e4ceafba533dbbf | [
"MIT"
] | permissive | Epitech-Strasbourg-CT/Epitech-Computer-Science-School-Projects | b90e12137b56902e2862f956844a64b85164e724 | 43065b7230534a8ba08793dadbf99ce07ac9af3a | refs/heads/master | 2022-02-11T21:59:20.801001 | 2019-08-07T01:16:48 | 2019-08-07T01:16:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,116 | hh | //
// Federation.hh for in /home/gwendoline/Epitech/Tek2/rendu/Piscine_cpp/piscine_cpp_d07m/ex01
//
// Made by Gwendoline Rodriguez
// Login <gwendoline@epitech.net>
//
// Started on Tue Jan 12 09:32:22 2016 Gwendoline Rodriguez
// Last update Tue Jan 12 13:47:08 2016 Gwendoline Rodriguez
//
#ifndef _FEDERATION_HH_
#define _FEDERATION_HH_
#include "Warpsystem.hh"
#include <iostream>
#include <string>
namespace Federation {
namespace Starfleet {
class Ship {
int _length;
int _width;
std::string _name;
short _maxWarp;
WarpSystem::Core *_core;
public:
Ship(int length, int width, std::string name, short maxWarp);
~Ship();
void setupCore(WarpSystem::Core *core);
void checkCore();
};
}
class Ship {
int _length;
int _width;
std::string _name;
static const short _maxWarp = 1;
WarpSystem::Core *_core;
public:
Ship(int length, int width, std::string name);
~Ship();
void setupCore(WarpSystem::Core *core);
void checkCore();
};
}
#endif
| [
"*"
] | * |
7834ab1c5b725be663aaeda493acba0d2d53c352 | 149489e12a2f209e33a82684518785540b3508b8 | /src/arch/mips/linux/process.hh | cbf0d78ead3741fb06c095501db200d9341e37b0 | [
"BSD-3-Clause",
"LicenseRef-scancode-proprietary-license",
"LGPL-2.0-or-later",
"MIT"
] | permissive | FPSG-UIUC/SPT | 8dac03b54e42df285d774bfc2c08be3123ea0dbb | 34ec7b2911078e36284fa0d35ae1b5551b48ba1b | refs/heads/master | 2023-04-15T07:11:36.092504 | 2022-05-28T21:34:30 | 2022-05-28T21:34:30 | 405,761,413 | 4 | 1 | BSD-3-Clause | 2023-04-11T11:44:49 | 2021-09-12T21:54:08 | C++ | UTF-8 | C++ | false | false | 2,358 | hh | /*
* Copyright (c) 2004 The Regents of The University of Michigan
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met: redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer;
* 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;
* neither the name of the copyright holders 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
* OWNER 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.
*
* Authors: Gabe Black
* Korey Sewell
*/
#ifndef __MIPS_LINUX_PROCESS_HH__
#define __MIPS_LINUX_PROCESS_HH__
#include "arch/mips/linux/linux.hh"
#include "arch/mips/process.hh"
#include "sim/eventq.hh"
/// A process with emulated Mips/Linux syscalls.
class MipsLinuxProcess : public MipsProcess
{
public:
/// Constructor.
MipsLinuxProcess(ProcessParams * params, ObjectFile *objFile);
virtual SyscallDesc* getDesc(int callnum);
/// The target system's hostname.
static const char *hostname;
/// ID of the thread group leader for the process
uint64_t __tgid;
/// Array of syscall descriptors, indexed by call number.
static SyscallDesc syscallDescs[];
const int Num_Syscall_Descs;
};
#endif // __MIPS_LINUX_PROCESS_HH__
| [
"rutvikc2@midgar.cs.illinois.edu"
] | rutvikc2@midgar.cs.illinois.edu |
a19d077bf81ba9ab3e6fbd85db5d4a209f76b725 | e620d7b5f7050500b874decef414cb2416951d30 | /ManagedCpp/MeshFullState.h | 83a96bd6e5eddcf35b5aa66332f0375a5c6b597a | [
"MIT"
] | permissive | svn2github/3d-editor-toolkit | 9bf3829404b639f35311b540f9a2a7c8b592a153 | baf132a47e1d03272efdf65a8a87c6976156d51b | refs/heads/master | 2021-01-25T08:48:48.815860 | 2010-02-13T19:40:18 | 2010-02-13T19:40:18 | 30,482,260 | 2 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 592 | h | //
// MeshFullState.h
// OpenGLEditor
//
// Created by Filip Kunc on 12/12/09.
// For license see LICENSE.TXT
//
#pragma once
#include "../PureCpp/MathCore/MathDeclaration.h"
#include "Mesh.h"
namespace ManagedCpp
{
public ref class MeshFullState
{
private:
uint itemIndex;
vector<Vector3D> *vertices;
vector<Triangle> *triangles;
vector<CocoaBool> *selected;
MeshSelectionMode selectionMode;
public:
property uint ItemIndex { uint get(); void set(uint value); }
MeshFullState(Mesh ^mesh, uint index);
~MeshFullState();
void ApplyFullToMesh(Mesh ^mesh);
};
} | [
"kunc.filip@77665838-ecdd-11de-a5fe-b7516cc0fd57"
] | kunc.filip@77665838-ecdd-11de-a5fe-b7516cc0fd57 |
c25a57eea688430f8f8482b4879dd1f90bbab012 | d08e0b267b77c9552528ccf815f05c836a53b36a | /gamecode/gamecode/Map.cpp | 7066458797d6a4dcce585e33e2de9a6604a6501a | [] | no_license | kochol/unbound_sim | f19fcebfdbdbc1d6e7194ce2b6d74240d6cfe445 | 08d1ca6236cc2168f6a509bdf490c31c2e534a09 | refs/heads/master | 2021-05-03T15:46:44.019900 | 2018-02-07T23:21:08 | 2018-02-07T23:21:08 | 120,484,805 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,225 | cpp | #include "Map.h"
#include <ResourceLoader.hpp>
#ifndef CLAMP
#define CLAMP(m_a,m_min,m_max) (((m_a)<(m_min))?(m_min):(((m_a)>(m_max))?m_max:m_a))
#endif
namespace my
{
Map::Map(): GodotScript(), m_iWidth(0), m_iHeight(0), m_pMap(nullptr)
{
Godot::print("Constructor");
m_rTree1 = ResourceLoader::load("res://sn/objects/tree1.tscn", "PackedScene");
Godot::print(m_rTree1->get_class());
}
Map::~Map()
{
MY_DELETE(m_pMap, Array2D);
}
void Map::Init(int w, int h)
{
m_iWidth = w;
m_iHeight = h;
m_pMap = MY_NEW(Array2D<int>(w, h));
}
void Map::Generate()
{
for (int x = 0; x < m_iWidth; x++)
for (int y = 0; y < m_iHeight; y++)
owner->set_cell(x, y, 0);
for (int i = 0; i < 300; i++)
{
Node2D* tree = (Node2D*)(m_rTree1->instance());
Vector2 pos(rand() % (m_iWidth * 64), rand() % (m_iHeight * 64));
pos.x = CLAMP(pos.x, 32, m_iWidth * 64 - 32);
pos.y = CLAMP(pos.y, 32, m_iHeight * 64 - 32);
tree->set_position(pos);
owner->add_child(tree);
}
}
void Map::_register_methods()
{
register_method("Init", &Map::Init);
register_method("Generate", &Map::Generate);
Godot::print("Methods registerd");
}
}
| [
"cyrusgp@gmail.com"
] | cyrusgp@gmail.com |
79de0bfc423925fabb6d355026b178cad3ff285f | 0bd3f7baab0e823a479a7d9a3b9b87097a59044c | /GraphTheory/BipartiteGraphMatching/BGMaxMatching_hungarian_dfs2.cpp | 811c962174511acc562222c6c524db048c5b3654 | [] | no_license | OTTFFYZY/StandardCodeLibrary | ae43b212a28cd36d1151461fa863603815806792 | 84a20ea7e701f4fa59e23d66861c89cb277d184c | refs/heads/master | 2022-01-22T21:54:13.823563 | 2022-01-09T05:11:24 | 2022-01-09T05:11:24 | 126,425,822 | 5 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 515 | cpp | #include <iostream>
#include <vector>
#include <string.h>
#include <algorithm>
using namespace std;
const int M=505;
int g[M][M];
int vis[M],match[M];
bool dfs(int u)
{
for(int v=0;v<n;v++)
if(g[u][v]&&!vis[v])
{
vis[v]=1;
if(match[v]==-1||dfs(match[v]))
{
match[v]=u;
return true;
}
}
return false;
}
int max_match()
{
memset(match,-1,sizeof(match));
int ans=0;
for(int i=0;i<n;i++)
{
memset(vis,0,sizeof(vis));
if(dfs(i)) ans++;
}
return ans;
}
int main()
{
return 0;
} | [
"992241461@qq.com"
] | 992241461@qq.com |
61ac044a2055cd381c26b9cb98c876aa57c1bb4a | f23bf2d9dfa65281dafa74cd22de796c03d575f2 | /aribon/Bellman-Ford.cpp | 5fbf2140745b03de954ac28fa1277c85d6fc336f | [] | no_license | trmr/code | 81181c1a5fde757f081ecc377765c81e48d547bd | 201a761063cd79a5887733964c015f60cd971601 | refs/heads/master | 2023-03-23T11:27:48.105310 | 2021-03-09T01:33:08 | 2021-03-09T01:33:08 | 237,609,489 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 801 | cpp | #include <iostream>
#include <vector>
using namespace std;
const int INF = 1000000000;
struct edge {
int from, to;
int cost;
}
int main() {
int V, E; cin >> V >> E;
int s; cin >> s;
vector<edge> es(E);
int from_, to_, cost_;
for (int i = 0; i < E; i++) {
cin >> from_ >> to_ >> cost_;
edge _e = {from_, to_, cost_};
es.push_back(_e);
}
int d[E];
for (int i = 0; i < V; i++) d[i] = INF;
d[s] = 0;
while (true) {
bool update = false;
for (int i = 0; i < E; i++) {
edge e = es[i];
if (d[e.from] != INF && d[e.to] > d[e.from] + e.cost) {
d[e.to] = d[e.from] + e.cost;
update = true;
}
}
if (!update) break;
}
return 0;
} | [
"trmr@TRMR-MB.local"
] | trmr@TRMR-MB.local |
b75d19d73d50a1c5f845fd6ab10a02d07187d902 | 4bf5f1f391cbaa1be238f19b96f927c5914966ce | /day08/day08_2.cpp | f4f504c3ee33b3a733e65855de2184902d20b076 | [] | no_license | BrOverShield/AoC2019 | cd7309c14915f20a42c404428267f9d72cdd0831 | a3212f2886c7fcbf382ca0e4f5f20697aa8a8243 | refs/heads/master | 2020-09-22T08:28:17.318260 | 2019-12-17T21:50:02 | 2019-12-17T21:50:02 | 225,120,430 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,567 | cpp | #include <iostream>
#include <fstream>
#include <vector>
#include <numeric> // iota
class Layer
{
public:
int Zeros = 0;
int Ones = 0;
int Twos = 0;
std::vector<std::vector<int>> Lines;
};
int ctoi (char c)
{
return (int)c - '0';
};
int main()
{
const char WHITE_CHARACTER = '#';
const char BLACK_CHARACTER = ' ';
const int BLACK_NUMBER = 0;
const int WHITE_NUMBER = 1;
const int TRANSPARENT_NUMBER = 2;
std::vector<int> Input;
std::vector<Layer> Image;
char c;
int i;
int w;
int h;
int Width = 25;
int Height = 6;
// int Width = 2;
// int Height = 2;
// std::ifstream file("C:\\Users\\tmdud\\Documents\\GitHub\\AoC2019\\day08\\input.txt");
std::ifstream file("input.txt");
if (file.is_open())
{
while(file.good())
{
file >> c;
i = ctoi(c);
Input.push_back(i);
}
file.close();
}
int PixelsPerLayer = Width * Height;
int NumberOfLayers = Input.size() / PixelsPerLayer;
std::vector<int> WidthIterator(Width);
std::vector<int> HeightIterator(Height);
std::vector<int> LayerIterator(NumberOfLayers);
std::iota(WidthIterator.begin(), WidthIterator.end(), 0);
std::iota(HeightIterator.begin(), HeightIterator.end(), 0);
std::iota(LayerIterator.begin(), LayerIterator.end(), 0);
i = 0;
for (auto LayerNumber : LayerIterator)
{
Layer layer;
for (auto LineNumber : HeightIterator)
{
std::vector<int> Line;
for (auto ColumnNumber : WidthIterator)
{
Line.push_back(Input[i]);
switch(Input[i])
{
case 0:
layer.Zeros++;
break;
case 1:
layer.Ones++;
break;
case 2:
layer.Twos++;
break;
default:
std::cout << "UNEXPECTED VALUE : " << Input[i] << std::endl;
break;
}
i++;
}
layer.Lines.push_back(Line);
}
Image.push_back(layer);
}
std::ofstream WriteFile;
WriteFile.open("image.txt", std::ofstream::out | std::ofstream::trunc);
bool NextCharacter = false;
for (auto LineNumber : HeightIterator)
{
for (auto ColumnNumber : WidthIterator)
{
NextCharacter = false;
for (auto layer : Image)
{
if (layer.Lines[LineNumber][ColumnNumber] != TRANSPARENT_NUMBER)
{
switch(layer.Lines[LineNumber][ColumnNumber])
{
case BLACK_NUMBER:
WriteFile << BLACK_CHARACTER;
break;
case WHITE_NUMBER:
WriteFile << WHITE_CHARACTER;
break;
default:
std::cout << "UNEXPECTED NUMBER : " << layer.Lines[LineNumber][ColumnNumber] << std::endl;
break;
}
NextCharacter = true;
}
if (NextCharacter)
{
break;
}
}
}
WriteFile << '\n';
}
WriteFile.close();
} | [
"alexandre.lessard@cyberquebec.org"
] | alexandre.lessard@cyberquebec.org |
fc5103f708c2ddc04bf7ad00617a50823d5a68fd | 9f6d0c9e9f0877e0cc954f61e2245c88839918f9 | /exlib/include/utils.h | c847d3ab8d98a924cc6aebe7a50fb58b4c67c29f | [] | no_license | fibjs/fibjs_vender | c2f4fd35b7ed9e9ea06680d75453b3ee81a25d0d | 6aa2431f65e17f9a51b60f12c14a36a8464fad5d | refs/heads/dev | 2023-08-03T18:39:02.369823 | 2023-07-27T14:12:00 | 2023-07-27T14:12:00 | 37,327,960 | 7 | 24 | null | 2022-05-18T15:08:24 | 2015-06-12T14:56:51 | C++ | UTF-8 | C++ | false | false | 2,412 | h | /*
* utils.h
* Created on: Mar 19, 2012
*
* Copyright (c) 2012 by Leo Hoo
* lion@9465.net
*/
#pragma once
#include <stdint.h>
#include "osconfig.h"
#include <atomic>
#include <thread>
namespace exlib {
class atomic {
public:
atomic(intptr_t new_value = 0)
: m_v(new_value)
{
}
atomic(const atomic& new_value)
: m_v((intptr_t)new_value.m_v)
{
}
public:
intptr_t operator=(intptr_t new_value)
{
return m_v = new_value;
}
intptr_t operator=(const atomic& new_value)
{
return m_v = (intptr_t)new_value.m_v;
}
operator intptr_t() const
{
return m_v;
}
intptr_t value() const
{
return m_v;
}
intptr_t CompareAndSwap(intptr_t old_value, intptr_t new_value)
{
m_v.compare_exchange_strong(old_value, new_value);
return old_value;
}
inline intptr_t xchg(intptr_t new_value)
{
return m_v.exchange(new_value);
}
inline intptr_t inc()
{
return ++m_v;
}
inline intptr_t dec()
{
return --m_v;
}
private:
std::atomic_intptr_t m_v;
};
template <class T>
class atomic_ptr {
public:
atomic_ptr(T* new_value = 0)
: m_v(new_value)
{
}
atomic_ptr(const atomic_ptr& new_value)
: m_v((T*)new_value.m_v)
{
}
public:
T* operator=(T* new_value)
{
return m_v = new_value;
}
T* operator=(const atomic_ptr& new_value)
{
return m_v = (T*)new_value.m_v;
}
operator T*() const
{
return m_v;
}
T* value() const
{
return m_v;
}
T* operator->()
{
return m_v;
}
T* CompareAndSwap(T* old_value, T* new_value)
{
m_v.compare_exchange_strong(old_value, new_value);
return old_value;
}
inline T* xchg(T* new_value)
{
return m_v.exchange(new_value);
}
private:
std::atomic<T*> m_v;
};
class spinlock {
public:
void lock()
{
while (locked.test_and_set(std::memory_order_acquire))
std::this_thread::yield();
}
void unlock()
{
locked.clear(std::memory_order_release);
}
private:
std::atomic_flag locked = ATOMIC_FLAG_INIT;
};
}
#ifndef ARRAYSIZE
#define ARRAYSIZE(a) \
((sizeof(a) / sizeof(*(a))) / static_cast<size_t>(!(sizeof(a) % sizeof(*(a)))))
#endif
| [
"lion@9465.net"
] | lion@9465.net |
487d8308c8f6f3fbae61856524ba54adc0f870c5 | 4759efd0dde75bfbc33d393e7595fd7b4fb64204 | /raven/io/InputEvent.cpp | 496a1fd39b43954361c5819b2f4572573dd36ccd | [
"MIT"
] | permissive | nielsuiterwijk/vulkan | 6a154e6289b47160f4286ed72d6420efca1fb17f | b2d5c7d23f7a16d9fdb9ba2796051da4d9e66e05 | refs/heads/master | 2021-01-18T21:41:37.755847 | 2020-05-26T21:35:33 | 2020-05-26T21:35:33 | 69,747,584 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,750 | cpp | #include "InputEvent.h"
std::vector<std::function<void( int, int, int )>> InputEvent::OnMouseButton = {};
std::vector<std::function<void( double, double )>> InputEvent::OnMouseScroll = {};
std::vector<std::function<void( int, int, int, int )>> InputEvent::OnKey = {};
std::vector<std::function<void( unsigned int )>> InputEvent::OnChar = {};
static glm::dvec2 CurrentMousePosition = {};
static std::array<bool, 3> MouseButtonState = {};
static std::array<int, 256> KeyState = {};
glm::ivec2 InputEvent::MousePosition()
{
return CurrentMousePosition;
}
bool InputEvent::IsMouseButtonDown( MouseButton Button )
{
return MouseButtonState[ (int32_t)Button ];
}
bool InputEvent::IsKeyDown( int32_t Key )
{
return KeyState[ (unsigned char)Key ];
}
void InputEvent::Update( GLFWwindow* pWindow, float DeltaTime )
{
glfwGetCursorPos( pWindow, &CurrentMousePosition.x, &CurrentMousePosition.y );
}
void InputEvent::MouseButtonCallback( GLFWwindow* window, int button, int action, int mods )
{
for ( size_t i = 0; i < OnMouseButton.size(); i++ )
{
OnMouseButton[ i ]( button, action, mods );
}
MouseButtonState[ button ] = action == GLFW_PRESS;
}
void InputEvent::ScrollCallback( GLFWwindow* window, double xoffset, double yoffset )
{
for ( size_t i = 0; i < OnMouseScroll.size(); i++ )
{
OnMouseScroll[ i ]( xoffset, yoffset );
}
}
void InputEvent::KeyCallback( GLFWwindow* window, int key, int scancode, int action, int mods )
{
for ( size_t i = 0; i < OnKey.size(); i++ )
{
OnKey[ i ]( key, scancode, action, mods );
}
KeyState[ (unsigned char)key ] = action != GLFW_RELEASE;
}
void InputEvent::CharCallback( GLFWwindow* window, unsigned int c )
{
for ( size_t i = 0; i < OnChar.size(); i++ )
{
OnChar[ i ]( c );
}
} | [
"nielsuiterwijk@gmail.com"
] | nielsuiterwijk@gmail.com |
0b91dcc6e54891a4831eb6657405b20c67a504f4 | 5d83739af703fb400857cecc69aadaf02e07f8d1 | /Archive2/fa/dd1a456bfd5b82/main.cpp | 259aeb703cde170a58f098198db3a5b56c3e19cf | [] | no_license | WhiZTiM/coliru | 3a6c4c0bdac566d1aa1c21818118ba70479b0f40 | 2c72c048846c082f943e6c7f9fa8d94aee76979f | refs/heads/master | 2021-01-01T05:10:33.812560 | 2015-08-24T19:09:22 | 2015-08-24T19:09:22 | 56,789,706 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 85 | cpp | struct A {
const int j;
};
int main() {
//A a;
A * aa = new A();
return 0;
} | [
"francis.rammeloo@36614edc-3e3a-acb8-9062-c8ae0e4185df"
] | francis.rammeloo@36614edc-3e3a-acb8-9062-c8ae0e4185df |
644844a788d1c3a151461755ca9ed7895ae2fcb9 | 3a356ea7e4364d419c3c1a8cf71d9f1842fda54a | /1305B.cpp | 4905d0585555687120006eed00173fd529ea3dac | [] | no_license | mayank992/Codeforces-Solutions | cd8e4cde3bd690e923aa1e12105bfb50a690f2e7 | 27771f4b23800dad4e7276f2aacf5e65143a3220 | refs/heads/master | 2021-04-09T00:44:59.662072 | 2020-06-04T07:44:29 | 2020-06-04T07:44:29 | 248,823,713 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 730 | cpp | #include<bits/stdc++.h>
using namespace std;
int main() {
string str;
cin >> str;
vector<int> vec;
int n = str.length();
int i = 0, j = n - 1;
while (i < j) {
if (str[i] == '(' && str[j] == ')') {
vec.push_back(i + 1);
vec.push_back(j + 1);
// str[i] = str[j] = '.';
i++, j--;
}
else if(str[i] == '(')
j--;
else
i++;
}
sort(vec.begin(), vec.end());
if (vec.size()) {
cout << 1 << "\n";
cout << vec.size() << "\n";
for (int i: vec)
cout << i << " ";
}
else
cout << 0;
// cout << "\n";
// cout << str << "\n";
return 0;
} | [
"mayankjindal992@gmail.com"
] | mayankjindal992@gmail.com |
5a097bf2ee684fe0ecc7cc065be52b81def3b1c6 | 463c3b62132d215e245a097a921859ecb498f723 | /lib/dlib/pixel.cpp | d1063d4b014e5f5ba9a6039d8b17cfdf87d8f7e2 | [
"LicenseRef-scancode-unknown-license-reference",
"BSL-1.0"
] | permissive | athulan/cppagent | 58f078cee55b68c08297acdf04a5424c2308cfdc | 9027ec4e32647e10c38276e12bcfed526a7e27dd | refs/heads/master | 2021-01-18T23:34:34.691846 | 2009-05-05T00:19:54 | 2009-05-05T00:19:54 | 197,038 | 4 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 6,397 | cpp | // Copyright (C) 2006 Davis E. King (davisking@users.sourceforge.net)
// License: Boost Software License See LICENSE.txt for the full license.
#ifndef DLIB_PIXEL_CPp_
#define DLIB_PIXEL_CPp_
#include "pixel.h"
namespace dlib
{
// ----------------------------------------------------------------------------------------
void serialize (
const rgb_alpha_pixel& item,
std::ostream& out
)
{
try
{
serialize(item.red,out);
serialize(item.green,out);
serialize(item.blue,out);
serialize(item.alpha,out);
}
catch (serialization_error& e)
{
throw serialization_error(e.info + "\n while serializing object of type rgb_alpha_pixel");
}
}
// ----------------------------------------------------------------------------------------
void deserialize (
rgb_alpha_pixel& item,
std::istream& in
)
{
try
{
deserialize(item.red,in);
deserialize(item.green,in);
deserialize(item.blue,in);
deserialize(item.alpha,in);
}
catch (serialization_error& e)
{
throw serialization_error(e.info + "\n while deserializing object of type rgb_alpha_pixel");
}
}
// ----------------------------------------------------------------------------------------
void serialize (
const rgb_pixel& item,
std::ostream& out
)
{
try
{
serialize(item.red,out);
serialize(item.green,out);
serialize(item.blue,out);
}
catch (serialization_error& e)
{
throw serialization_error(e.info + "\n while serializing object of type rgb_pixel");
}
}
// ----------------------------------------------------------------------------------------
void deserialize (
rgb_pixel& item,
std::istream& in
)
{
try
{
deserialize(item.red,in);
deserialize(item.green,in);
deserialize(item.blue,in);
}
catch (serialization_error& e)
{
throw serialization_error(e.info + "\n while deserializing object of type rgb_pixel");
}
}
// ----------------------------------------------------------------------------------------
void serialize (
const hsi_pixel& item,
std::ostream& out
)
{
try
{
serialize(item.h,out);
serialize(item.s,out);
serialize(item.i,out);
}
catch (serialization_error& e)
{
throw serialization_error(e.info + "\n while serializing object of type hsi_pixel");
}
}
// ----------------------------------------------------------------------------------------
void deserialize (
hsi_pixel& item,
std::istream& in
)
{
try
{
deserialize(item.h,in);
deserialize(item.s,in);
deserialize(item.i,in);
}
catch (serialization_error& e)
{
throw serialization_error(e.info + "\n while deserializing object of type hsi_pixel");
}
}
// ----------------------------------------------------------------------------------------
namespace assign_pixel_helpers
{
/*
I found this excellent bit of code at
http://local.wasp.uwa.edu.au/~pbourke/colour/hsl/
*/
/*
Calculate HSL from RGB
Hue is in degrees
Lightness is between 0 and 1
Saturation is between 0 and 1
*/
HSL RGB2HSL(COLOUR c1)
{
double themin,themax,delta;
HSL c2;
using namespace std;
themin = min(c1.r,min(c1.g,c1.b));
themax = max(c1.r,max(c1.g,c1.b));
delta = themax - themin;
c2.l = (themin + themax) / 2;
c2.s = 0;
if (c2.l > 0 && c2.l < 1)
c2.s = delta / (c2.l < 0.5 ? (2*c2.l) : (2-2*c2.l));
c2.h = 0;
if (delta > 0) {
if (themax == c1.r && themax != c1.g)
c2.h += (c1.g - c1.b) / delta;
if (themax == c1.g && themax != c1.b)
c2.h += (2 + (c1.b - c1.r) / delta);
if (themax == c1.b && themax != c1.r)
c2.h += (4 + (c1.r - c1.g) / delta);
c2.h *= 60;
}
return(c2);
}
/*
Calculate RGB from HSL, reverse of RGB2HSL()
Hue is in degrees
Lightness is between 0 and 1
Saturation is between 0 and 1
*/
COLOUR HSL2RGB(HSL c1)
{
COLOUR c2,sat,ctmp;
using namespace std;
if (c1.h < 120) {
sat.r = (120 - c1.h) / 60.0;
sat.g = c1.h / 60.0;
sat.b = 0;
} else if (c1.h < 240) {
sat.r = 0;
sat.g = (240 - c1.h) / 60.0;
sat.b = (c1.h - 120) / 60.0;
} else {
sat.r = (c1.h - 240) / 60.0;
sat.g = 0;
sat.b = (360 - c1.h) / 60.0;
}
sat.r = min(sat.r,1.0);
sat.g = min(sat.g,1.0);
sat.b = min(sat.b,1.0);
ctmp.r = 2 * c1.s * sat.r + (1 - c1.s);
ctmp.g = 2 * c1.s * sat.g + (1 - c1.s);
ctmp.b = 2 * c1.s * sat.b + (1 - c1.s);
if (c1.l < 0.5) {
c2.r = c1.l * ctmp.r;
c2.g = c1.l * ctmp.g;
c2.b = c1.l * ctmp.b;
} else {
c2.r = (1 - c1.l) * ctmp.r + 2 * c1.l - 1;
c2.g = (1 - c1.l) * ctmp.g + 2 * c1.l - 1;
c2.b = (1 - c1.l) * ctmp.b + 2 * c1.l - 1;
}
return(c2);
}
}
// ----------------------------------------------------------------------------------------
}
#endif // DLIB_PIXEL_CPp_
| [
"jimmy@DGJ3X3B1.(none)"
] | jimmy@DGJ3X3B1.(none) |
e4563529f1a785a2e61b5842db11c95b6c307ddc | 81069d54c9cb3a1b2654cf5eed91ca71fc5ce874 | /Leetcode-2021-Year/Day3_08222020/Linked_list_cycle.cpp | 010ad59ceadb9f48f687e252e8bfbcaa2719fc86 | [] | no_license | RajeevSawant/leetCode | d7c9ca0fb9d3294c89eb7662134ac7376cd32608 | e0ac30965d4a7cc2ee44d539d3113c59c2be85d2 | refs/heads/master | 2023-08-18T17:02:44.358479 | 2023-08-18T05:30:25 | 2023-08-18T05:30:25 | 123,543,492 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,096 | cpp | #include <iostream>
#include <vector>
#include <map>
using namespace std;
class ListNode
{
public:
int val;
ListNode* next;
};
void Cnode(ListNode** head, int data)
{
ListNode* container = new ListNode();
container-> val = data;
container-> next = (*head);
(*head) = container;
}
ListNode* detectNode (ListNode* head)
{
// only 2 nodes are not suffcient for detecting nodes
if (head == NULL || head -> next == NULL || head -> next -> next == NULL) return NULL;
map <ListNode* , int> L;
ListNode* cur = head;
while (cur)
{
if (L.find(cur) != L.end()) return cur;
L[cur] = 1;
cur = cur -> next;
}
return NULL;
}
void printList(ListNode *arr)
{
while (arr)
{
cout << " " << arr -> val;
arr = arr -> next;
}
cout << endl;
}
int main()
{
ListNode *a = NULL;
Cnode(&a , 10);
Cnode(&a, 4);
Cnode(&a, -1);
Cnode(&a, -3);
a -> next -> next -> next -> next = a -> next;
ListNode *result = new ListNode();
result = detectNode(a);
cout << "The tail of the linklist is connected to node with value " << result -> val << endl;
return 0;
}
| [
"sawantrajeevv@gmail.com"
] | sawantrajeevv@gmail.com |
e7ceccbb00ce898712287cdd90d87b68901adcb2 | 04e5b6df2ee3bcfb7005d8ec91aab8e380333ac4 | /clang_codecompletion/clang/Basic/DiagnosticDriver.h | cecd8fd6b4d51b40f26d5068e385c72a8c6dc69e | [
"MIT"
] | permissive | ColdGrub1384/Pyto | 64e2a593957fd640907f0e4698d430ea7754a73e | 7557485a733dd7e17ba0366b92794931bdb39975 | refs/heads/main | 2023-08-01T03:48:35.694832 | 2022-07-20T14:38:45 | 2022-07-20T14:38:45 | 148,944,721 | 884 | 157 | MIT | 2023-02-26T21:34:04 | 2018-09-15T22:29:07 | C | UTF-8 | C++ | false | false | 921 | h | //===--- DiagnosticDriver.h - Diagnostics for libdriver ---------*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_CLANG_BASIC_DIAGNOSTICDRIVER_H
#define LLVM_CLANG_BASIC_DIAGNOSTICDRIVER_H
#include "clang/Basic/Diagnostic.h"
namespace clang {
namespace diag {
enum {
#define DIAG(ENUM, FLAGS, DEFAULT_MAPPING, DESC, GROUP, SFINAE, NOWERROR, \
SHOWINSYSHEADER, DEFERRABLE, CATEGORY) \
ENUM,
#define DRIVERSTART
#include "clang/Basic/DiagnosticDriverKinds.inc"
#undef DIAG
NUM_BUILTIN_DRIVER_DIAGNOSTICS
};
} // end namespace diag
} // end namespace clang
#endif // LLVM_CLANG_BASIC_DIAGNOSTICDRIVER_H
| [
"emma@labbe.me"
] | emma@labbe.me |
36438b87a21574dcef536bc3320fe1b26320bb6a | f3cd4b7cd3cd0cca05c9e9af66bc1740b068c4c3 | /mainwindow.h | 33c61114aff959a27f5cc2e4c011dec381156afc | [] | no_license | kostyastrong/Turing-Machine-School | 867a3fb5c7f5d34ddb764a50629dcf47f1176b36 | aa9c29755af0ae6b847a7b760c3bd6bd22c77b50 | refs/heads/main | 2023-05-04T08:53:54.670228 | 2021-05-30T05:26:47 | 2021-05-30T05:26:47 | 360,440,923 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 642 | h | #ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <set>
QT_BEGIN_NAMESPACE
namespace Ui { class MainWindow; }
QT_END_NAMESPACE
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
MainWindow(QWidget *parent = nullptr);
~MainWindow();
private slots:
void on_newMachine_clicked();
void EraseAll();
void on_nextAction_clicked();
void on_pushButton_clicked();
bool nextOper();
void insertChar(QChar a, int indOfChar);
void on_autoComplete_clicked();
void on_pushButton_2_clicked();
private:
Ui::MainWindow *ui;
QTimer *timer;
};
#endif // MAINWINDOW_H
| [
"kostyakostya872@gmail.com"
] | kostyakostya872@gmail.com |
ad219a3b4d67496a339e8527cfde240aa0026889 | fec81bfe0453c5646e00c5d69874a71c579a103d | /blazetest/src/mathtest/operations/dmatsmatmult/DDaMIb.cpp | 488bea42c43b0c7d309ea19e4cecad124dfc14e7 | [
"BSD-3-Clause"
] | permissive | parsa/blaze | 801b0f619a53f8c07454b80d0a665ac0a3cf561d | 6ce2d5d8951e9b367aad87cc55ac835b054b5964 | refs/heads/master | 2022-09-19T15:46:44.108364 | 2022-07-30T04:47:03 | 2022-07-30T04:47:03 | 105,918,096 | 52 | 7 | null | null | null | null | UTF-8 | C++ | false | false | 4,401 | cpp | //=================================================================================================
/*!
// \file src/mathtest/operations/dmatsmatmult/DDaMIb.cpp
// \brief Source file for the DDaMIb dense matrix/sparse matrix multiplication math test
//
// Copyright (C) 2012-2020 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/DiagonalMatrix.h>
#include <blaze/math/DynamicMatrix.h>
#include <blaze/math/IdentityMatrix.h>
#include <blazetest/mathtest/Creator.h>
#include <blazetest/mathtest/operations/dmatsmatmult/OperationTest.h>
#include <blazetest/system/MathTest.h>
#ifdef BLAZE_USE_HPX_THREADS
# include <hpx/hpx_main.hpp>
#endif
//=================================================================================================
//
// MAIN FUNCTION
//
//=================================================================================================
//*************************************************************************************************
int main()
{
std::cout << " Running 'DDaMIb'..." << std::endl;
using blazetest::mathtest::TypeA;
using blazetest::mathtest::TypeB;
try
{
// Matrix type definitions
using DDa = blaze::DiagonalMatrix< blaze::DynamicMatrix<TypeA> >;
using MIb = blaze::IdentityMatrix<TypeB>;
// Creator type definitions
using CDDa = blazetest::Creator<DDa>;
using CMIb = blazetest::Creator<MIb>;
// Running tests with small matrices
for( size_t i=0UL; i<=6UL; ++i ) {
RUN_DMATSMATMULT_OPERATION_TEST( CDDa( i ), CMIb( i ) );
}
// Running tests with large matrices
RUN_DMATSMATMULT_OPERATION_TEST( CDDa( 31UL ), CMIb( 31UL ) );
RUN_DMATSMATMULT_OPERATION_TEST( CDDa( 67UL ), CMIb( 67UL ) );
RUN_DMATSMATMULT_OPERATION_TEST( CDDa( 127UL ), CMIb( 127UL ) );
RUN_DMATSMATMULT_OPERATION_TEST( CDDa( 32UL ), CMIb( 32UL ) );
RUN_DMATSMATMULT_OPERATION_TEST( CDDa( 64UL ), CMIb( 64UL ) );
RUN_DMATSMATMULT_OPERATION_TEST( CDDa( 128UL ), CMIb( 128UL ) );
}
catch( std::exception& ex ) {
std::cerr << "\n\n ERROR DETECTED during dense matrix/sparse matrix multiplication:\n"
<< ex.what() << "\n";
return EXIT_FAILURE;
}
return EXIT_SUCCESS;
}
//*************************************************************************************************
| [
"klaus.iglberger@gmail.com"
] | klaus.iglberger@gmail.com |
f454fa67cb307ae68ffacab39ffced42be3989bf | 925f50bef2089477801fe170b1811bbbd2e5493c | /Ch3/Ex3.25.cpp | fa5d0ac1aa743f022e4e6d5906b35ae503641114 | [] | no_license | DxnteSC/CppPrimer | e22b39b5df105c7e410038080cb1cae87e32801f | d1026974459bed7e622ffc6602f562070ed97fff | refs/heads/master | 2021-07-10T07:06:22.326501 | 2020-07-10T07:33:46 | 2020-07-10T07:33:46 | 163,541,475 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 292 | cpp | #include <iostream>
#include <string>
#include <vector>
using namespace std;
int main()
{
vector<unsigned> v(11,0);
unsigned grade;
while (cin >> grade)
{
++*(v.begin() + grade/10);
}
for (auto c: v)
{
cout << c << " ";
}
cout << endl;
}
| [
"dantes_c@outlook.com"
] | dantes_c@outlook.com |
2fe9eff84ca0bd6419c38f32a3e973b140ef6cf4 | eb49ecb83e61a425adc48b100f41aab3858473de | /Recitations/rec6/rec06.cpp | 43c83d4b1821cb797b1ef83ba6b7c3a7ba2d84b1 | [] | no_license | Jabidex3/CS1124 | 98b725235bdbb751fea564610ae8bd10cf296698 | 01ff615f6a4b1ca2b8a8dcb039ba25246d35cb1b | refs/heads/master | 2021-01-09T20:12:40.089239 | 2016-06-09T03:15:21 | 2016-06-09T03:15:21 | 60,732,047 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,108 | cpp | /*
Jabid Methun
CS-UY 1124
Section: B
jhm414
N14285139
Rec06
*/
#include <iostream>
#include <vector>
using namespace std;
class PrintedMaterial {
public:
PrintedMaterial(unsigned numPages)
: numOfPages(numPages)
{}
virtual void displayNumPages() const = 0;
private:
unsigned numOfPages;
};
/*void displayNumberOfPages(const PrintedMaterial& printedThing)
{
printedThing.displayNumPages();
}*/
void PrintedMaterial::displayNumPages() const {
cout << numOfPages << endl;
}
class Magazine : public PrintedMaterial {
public:
Magazine(unsigned numPages)
: PrintedMaterial(numPages)
{}
void displayNumPages() const
{
cout << " I'm a Magazine object stored\n"
<< "(but I can't know that I am being\n"
<< "stored (by pointer) in a vector of\n"
<< "PrintedMaterial pointers!\n";
PrintedMaterial::displayNumPages();
cout << "(and I'm very glossy!\n";
}
private:
};
class Book : public PrintedMaterial {
public:
Book(unsigned numPages)
: PrintedMaterial(numPages)
{}
private:
};
class TextBook : public Book {
public:
TextBook(unsigned numPages, unsigned numIndxPgs)
: Book(numPages),
numOfIndexPages(numIndxPgs)
{}
void displayNumPages() const
{
//cout << "Pages:";
//PrintedMaterial::displayNumPages();
//cout << numOfPages;
//cout << "Index: " << numOfIndexPages << endl;
cout << "\nThis is a textbook.\n";
cout << "It is a very boring textbook.\n";
cout << "Pages: ";
PrintedMaterial::displayNumPages();
cout << "Index pages: ";
cout << numOfIndexPages << endl;
}
private:
unsigned numOfIndexPages;
};
class Novel : public Book {
public:
Novel(unsigned numPages)
: Book(numPages)
{}
void displayNumPages() const
{
cout << "\nThis is the story of a very\n"
<< " interesting programmer's quest\n"
<< " understand inheritance.\n"
<< " The journey is just beginning\n"
<< " and already the journeyman\n"
<< " hacker, no - not a hacker! -\n"
<< " a programmer who reads, and\n"
<< " studies and understands code\n"
<< " Hackers steal and don't even\n"
<< " try to understand what they stole\n"
<< " before using it.\n"
<< "\n ...But I digress.\n"
<< "\nThis novel is quite long, there\n"
<< "being this number of pages:\n"
<< "=====================================\n"
<< " ";
PrintedMaterial::displayNumPages();
cout << "=====================================\n"
<< "Whew!\n"
<< " but there is an exciting\n"
<< " programming adventure on every\n"
<< " single one of them!\n"
<< " And now, let's let the quest continue..."
<< endl << endl << endl;
}
private:
};
// tester/modeler code
int main()
{
TextBook t(5430, 234);
Novel n(213);
Magazine m(6);
t.displayNumPages();
n.displayNumPages();
m.displayNumPages();
vector< PrintedMaterial* > stuff;
stuff.push_back(&t);
stuff.push_back(&n);
stuff.push_back(&m);
for (size_t x = 0; x < stuff.size(); x++)
{
stuff[x]->displayNumPages();
cout << endl;
}
system("pause");
} | [
"jmethun@yahoo.com"
] | jmethun@yahoo.com |
4f71b1a30651bf9b45f29b783fd175cb4985e337 | 2a5262f38bfcabf6745951043ccefc59f5cbc842 | /第5阶段-C++提高编程资料/提高编程能力资料/代码/第三阶段-录制代码/01 类模板语法/01 类模板语法/05 类模板与继承.cpp | 77baa73bd37ededd8d9517727782503953b716e1 | [] | no_license | Aomandeyi/Cpp-0-1-Resource | 7ff79db0b6e0b40e2ba497fb7b2a2dca734a52f2 | 4e8498205a85102d09b4bfe0606f9efa2cb13e55 | refs/heads/master | 2020-09-22T02:51:31.537667 | 2020-08-17T09:00:34 | 2020-08-17T09:00:34 | 225,021,963 | 3 | 0 | null | 2019-11-30T14:10:35 | 2019-11-30T14:10:34 | null | GB18030 | C++ | false | false | 801 | cpp | //#include<iostream>
//using namespace std;
//
////类模板与继承
//template<class T>
//class Base
//{
// T m;
//};
//
////class Son :public Base //错误,必须要知道父类中的T类型,才能继承给子类
//class Son:public Base<int>
//{
//
//};
//
//void test01()
//{
// Son s1;
//}
//
////如果想灵活指定父类中T类型,子类也需要变类模板
//template<class T1,class T2>
//class Son2 :public Base<T2>
//{
//public:
// Son2()
// {
// cout << "T1的类型为: " << typeid(T1).name() << endl;
// cout << "T2的类型为: " << typeid(T2).name() << endl;
// }
// T1 obj;
//};
//
//void test02()
//{
// Son2<int, char>S2;
//}
//
//int main() {
//
// //test01();
//
// test02();
//
// system("pause");
//
// return 0;
//} | [
"553628212@qq.com"
] | 553628212@qq.com |
51d376aeeafef377611ef3df8c379544c4caa31c | 0dacc834a0f731f555edbd9d4e05733a5de30986 | /rosetta/3d-rendering/src/sdsoc/rendering.cpp | 76cbcffe41a28b49cf2ef8dbc32db50a5c7e19be | [
"BSD-3-Clause",
"MIT"
] | permissive | HansGiesen/hudson | 8a0c8e07f024f65b1046084b822e75b8605995bd | 7642e50279290bf1e4cc930c88eece5ce025b4ed | refs/heads/master | 2023-09-05T13:28:52.711315 | 2021-08-26T16:40:48 | 2021-10-05T16:04:36 | 400,233,493 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,162 | cpp | /*===============================================================*/
/* */
/* rendering.cpp */
/* */
/* C++ kernel for 3D Rendering */
/* */
/*===============================================================*/
#include "../host/typedefs.h"
#include <stdio.h>
//#define DEBUG
/*======================UTILITY FUNCTIONS========================*/
// Determine whether three vertices of a trianlgLe
// (x0,y0) (x1,y1) (x2,y2) are in clockwise order by Pineda algorithm
// if so, return a number > 0
// else if three points are in line, return a number == 0
// else in counterclockwise order, return a number < 0
int check_clockwise( Triangle_2D triangle_2d )
{
int cw;
cw = (triangle_2d.x2 - triangle_2d.x0) * (triangle_2d.y1 - triangle_2d.y0)
- (triangle_2d.y2 - triangle_2d.y0) * (triangle_2d.x1 - triangle_2d.x0);
return cw;
}
// swap (x0, y0) (x1, y1) of a Triangle_2D
void clockwise_vertices( Triangle_2D *triangle_2d )
{
bit8 tmp_x, tmp_y;
tmp_x = triangle_2d->x0;
tmp_y = triangle_2d->y0;
triangle_2d->x0 = triangle_2d->x1;
triangle_2d->y0 = triangle_2d->y1;
triangle_2d->x1 = tmp_x;
triangle_2d->y1 = tmp_y;
}
// Given a pixel, determine whether it is inside the triangle
// by Pineda algorithm
// if so, return true
// else, return false
bit1 pixel_in_triangle( bit8 x, bit8 y, Triangle_2D triangle_2d )
{
int pi0, pi1, pi2;
pi0 = (x - triangle_2d.x0) * (triangle_2d.y1 - triangle_2d.y0) - (y - triangle_2d.y0) * (triangle_2d.x1 - triangle_2d.x0);
pi1 = (x - triangle_2d.x1) * (triangle_2d.y2 - triangle_2d.y1) - (y - triangle_2d.y1) * (triangle_2d.x2 - triangle_2d.x1);
pi2 = (x - triangle_2d.x2) * (triangle_2d.y0 - triangle_2d.y2) - (y - triangle_2d.y2) * (triangle_2d.x0 - triangle_2d.x2);
return (pi0 >= 0 && pi1 >= 0 && pi2 >= 0);
}
// find the min from 3 integers
bit8 find_min( bit8 in0, bit8 in1, bit8 in2 )
{
if (in0 < in1)
{
if (in0 < in2)
return in0;
else
return in2;
}
else
{
if (in1 < in2)
return in1;
else
return in2;
}
}
// find the max from 3 integers
bit8 find_max( bit8 in0, bit8 in1, bit8 in2 )
{
if (in0 > in1)
{
if (in0 > in2)
return in0;
else
return in2;
}
else
{
if (in1 > in2)
return in1;
else
return in2;
}
}
/*======================PROCESSING STAGES========================*/
// stream input in
void load_input ( axi_bus input[INPUT_WORDS], Triangle_3D triangle_3ds[NUM_3D_TRI / TASK_PAR][TASK_PAR] )
{
INPUT_TRI_OUTER: for (int i = 0; i < NUM_3D_TRI / TASK_PAR; i++)
{
INPUT_TRI_INNER: for (int j = 0; j < TASK_PAR; j++)
{
ap_uint<AXI_BUS_WIDTH * WORDS_PER_TRI> data;
INPUT_WORDS: for (int k = 0; k < WORDS_PER_TRI; k++)
{
#pragma HLS PIPELINE II=1
unsigned addr = WORDS_PER_TRI * (TASK_PAR * i + j);
data >>= AXI_BUS_WIDTH;
data(data.width - 1, data.width - AXI_BUS_WIDTH) = input[addr + k];
if (k == WORDS_PER_TRI - 1)
{
triangle_3ds[i][j].x0 = data( 7, 0);
triangle_3ds[i][j].y0 = data(15, 8);
triangle_3ds[i][j].z0 = data(23, 16);
triangle_3ds[i][j].x1 = data(31, 24);
triangle_3ds[i][j].y1 = data(39, 32);
triangle_3ds[i][j].z1 = data(47, 40);
triangle_3ds[i][j].x2 = data(55, 48);
triangle_3ds[i][j].y2 = data(63, 56);
triangle_3ds[i][j].z2 = data(71, 64);
}
}
}
}
}
// project a 3D triangle to a 2D triangle
void projection ( Triangle_3D triangle_3d, Triangle_2D *triangle_2d, bit2 angle )
{
#pragma HLS INLINE off
#ifdef DEBUG
printf("Projection input: %u %u %u %u %u %u %u %u %u\n",
triangle_3d.x0.to_uint(), triangle_3d.y0.to_uint(),
triangle_3d.z0.to_uint(), triangle_3d.x1.to_uint(),
triangle_3d.y1.to_uint(), triangle_3d.z1.to_uint(),
triangle_3d.x2.to_uint(), triangle_3d.y2.to_uint(),
triangle_3d.z2.to_uint());
#endif
// Setting camera to (0,0,-1), the canvas at z=0 plane
// The 3D model lies in z>0 space
// The coordinate on canvas is proportional to the corresponding coordinate
// on space
if(angle == 0)
{
triangle_2d->x0 = triangle_3d.x0;
triangle_2d->y0 = triangle_3d.y0;
triangle_2d->x1 = triangle_3d.x1;
triangle_2d->y1 = triangle_3d.y1;
triangle_2d->x2 = triangle_3d.x2;
triangle_2d->y2 = triangle_3d.y2;
triangle_2d->z = triangle_3d.z0 / 3 + triangle_3d.z1 / 3 + triangle_3d.z2 / 3;
}
else if(angle == 1)
{
triangle_2d->x0 = triangle_3d.x0;
triangle_2d->y0 = triangle_3d.z0;
triangle_2d->x1 = triangle_3d.x1;
triangle_2d->y1 = triangle_3d.z1;
triangle_2d->x2 = triangle_3d.x2;
triangle_2d->y2 = triangle_3d.z2;
triangle_2d->z = triangle_3d.y0 / 3 + triangle_3d.y1 / 3 + triangle_3d.y2 / 3;
}
else if(angle == 2)
{
triangle_2d->x0 = triangle_3d.z0;
triangle_2d->y0 = triangle_3d.y0;
triangle_2d->x1 = triangle_3d.z1;
triangle_2d->y1 = triangle_3d.y1;
triangle_2d->x2 = triangle_3d.z2;
triangle_2d->y2 = triangle_3d.y2;
triangle_2d->z = triangle_3d.x0 / 3 + triangle_3d.x1 / 3 + triangle_3d.x2 / 3;
}
#ifdef DEBUG
printf("Projection output: %u %u %u %u %u %u %u\n",
triangle_2d->x0.to_uint(), triangle_2d->y0.to_uint(),
triangle_2d->x1.to_uint(), triangle_2d->y1.to_uint(),
triangle_2d->x2.to_uint(), triangle_2d->y2.to_uint(),
triangle_2d->z.to_uint());
#endif
}
// calculate bounding box for a 2D triangle
bit2 rasterization1 ( Triangle_2D triangle_2d, bit8 max_min[], Triangle_2D *triangle_2d_same)
{
#pragma HLS INLINE off
// clockwise the vertices of input 2d triangle
if ( check_clockwise( triangle_2d ) == 0 )
return 1;
if ( check_clockwise( triangle_2d ) < 0 )
clockwise_vertices( &triangle_2d );
// copy the same 2D triangle
triangle_2d_same->x0 = triangle_2d.x0;
triangle_2d_same->y0 = triangle_2d.y0;
triangle_2d_same->x1 = triangle_2d.x1;
triangle_2d_same->y1 = triangle_2d.y1;
triangle_2d_same->x2 = triangle_2d.x2;
triangle_2d_same->y2 = triangle_2d.y2;
triangle_2d_same->z = triangle_2d.z ;
// find the rectangle bounds of 2D triangles
max_min[0] = find_min( triangle_2d.x0, triangle_2d.x1, triangle_2d.x2 );
max_min[1] = find_max( triangle_2d.x0, triangle_2d.x1, triangle_2d.x2 );
max_min[2] = find_min( triangle_2d.y0, triangle_2d.y1, triangle_2d.y2 );
max_min[3] = find_max( triangle_2d.y0, triangle_2d.y1, triangle_2d.y2 );
#ifdef DEBUG
unsigned width = max_min[1] - max_min[0] + 1;
unsigned size = (max_min[1] - max_min[0] + 1) * (max_min[3] - max_min[2] + 1);
printf("Rasterization 1 output: %u %u %u %u %u %u %u, %u %u %u %u %u, %u\n",
triangle_2d_same->x0.to_uint(), triangle_2d_same->y0.to_uint(),
triangle_2d_same->x1.to_uint(), triangle_2d_same->y1.to_uint(),
triangle_2d_same->x2.to_uint(), triangle_2d_same->y2.to_uint(),
triangle_2d_same->z.to_uint(),
max_min[0].to_uint(), max_min[1].to_uint(), max_min[2].to_uint(),
max_min[3].to_uint(), width, size);
#endif
return 0;
}
// find pixels in the triangles from the bounding box
void rasterization2 ( bool skip, bool clear, bit8 max_min[],
Triangle_2D triangle_2d,
bit8 z_buffer[MAX_X / DATA_PAR][DATA_PAR][MAX_Y],
bit8 frame_buffer[MAX_X / DATA_PAR][DATA_PAR][MAX_Y] )
{
#pragma HLS INLINE off
if ( clear )
{
CLEAR_Y: for ( bit16 i = 0; i < MAX_Y; i++ )
{
CLEAR_X: for ( bit16 j = 0; j < MAX_X / DATA_PAR; j++ )
{
#pragma HLS PIPELINE II=1
CLEAR_BANK: for ( bit16 k = 0; k < DATA_PAR; k++)
{
z_buffer[j][k][i] = 255;
frame_buffer[j][k][i] = 0;
}
}
}
}
if ( skip )
{
return;
}
unsigned i = 0;
unsigned start = max_min[0] / DATA_PAR;
unsigned end = max_min[1] / DATA_PAR;
RAST2_Y: for ( unsigned y = max_min[2]; y <= max_min[3]; y++ )
{
#pragma HLS loop_tripcount max=8
RAST2_X_OUTER: for ( unsigned xo = start; xo <= end; xo++ )
{
#pragma HLS loop_tripcount max=10
#pragma HLS PIPELINE II=1
RAST2_X_INNER: for ( unsigned xi = 0; xi < DATA_PAR; xi++ )
{
#pragma HLS DEPENDENCE variable=z_buffer inter false
#pragma HLS DEPENDENCE variable=frame_buffer inter false
unsigned x = DATA_PAR * xo + xi;
if ( pixel_in_triangle( x, y, triangle_2d ) &&
triangle_2d.z < z_buffer[xo][xi][y] )
{
z_buffer[xo][xi][y] = triangle_2d.z;
frame_buffer[xo][xi][y] = 100;
#ifdef DEBUG
printf("Rasterization 2 output %u: %u %u %u %u\n", i, x, y,
triangle_2d.z.to_uint(), 100);
i++;
#endif
}
}
}
}
}
// stream out the frame buffer
void output_FB(bit8 z_buffer[TASK_PAR][MAX_X / DATA_PAR][DATA_PAR][MAX_Y],
bit8 frame_buffer[TASK_PAR][MAX_X / DATA_PAR][DATA_PAR][MAX_Y],
axi_bus output[OUTPUT_WORDS])
{
#pragma HLS INLINE
OUTPUT_FB_ROW: for ( bit16 i = 0; i < MAX_Y; i++)
{
OUTPUT_FB_COL: for ( bit16 j = 0; j < MAX_X; j += AXI_BUS_WIDTH / 8)
{
#pragma HLS PIPELINE II=1
axi_bus out_word;
OUTPUT_FB_BYTE: for ( bit8 k = 0; k < AXI_BUS_WIDTH / 8; k++)
{
unsigned min_z;
bit8 out_byte;
OUTPUT_FB_BANK: for ( bit8 l = 0; l < TASK_PAR; l++)
{
unsigned byte_addr = (j + k) / DATA_PAR;
unsigned bank_addr = (j + k) % DATA_PAR;
bit8 z = z_buffer[l][byte_addr][bank_addr][i];
if ( l == 0 || z < min_z )
{
out_byte = frame_buffer[l][byte_addr][bank_addr][i];
min_z = z;
}
}
out_word( 8 * k + 7, 8 * k ) = out_byte;
#ifdef DEBUG
printf("Output %u %u: %i\n", i.to_uint(), (j + k).to_uint(), out_byte.to_uint());
#endif
}
output[(i * MAX_X + j) / (AXI_BUS_WIDTH / 8)] = out_word;
}
}
}
// three stages for processing each 3D triangle
void pipeline( bool clear,
Triangle_3D triangle_3d,
bit8 z_buffer[MAX_X / DATA_PAR][DATA_PAR][MAX_Y],
bit8 frame_buffer[MAX_X / DATA_PAR][DATA_PAR][MAX_Y] )
{
bit2 angle = 0;
Triangle_2D triangle_2d;
Triangle_2D triangle_2d_copy;
bit8 max_min[4];
#if USE_DATAFLOW == 1
#pragma HLS dataflow
#endif
// five stages for processing each 3D triangle
projection( triangle_3d, &triangle_2d, angle );
bit2 flag = rasterization1( triangle_2d, max_min, &triangle_2d_copy );
rasterization2( flag, clear, max_min, triangle_2d_copy, z_buffer, frame_buffer );
}
/*========================TOP FUNCTION===========================*/
void rendering( axi_bus input[INPUT_WORDS], axi_bus output[OUTPUT_WORDS])
{
// local variables
Triangle_3D triangle_3ds[NUM_3D_TRI / TASK_PAR][TASK_PAR];
#pragma HLS array_partition variable=triangle_3ds complete dim=2
bit8 z_buffer[TASK_PAR][MAX_X / DATA_PAR][DATA_PAR][MAX_Y];
#pragma HLS array_partition variable=z_buffer complete dim=1
#pragma HLS array_partition variable=z_buffer complete dim=3
bit8 frame_buffer[TASK_PAR][MAX_X / DATA_PAR][DATA_PAR][MAX_Y];
#pragma HLS array_partition variable=frame_buffer complete dim=1
#pragma HLS array_partition variable=frame_buffer complete dim=3
load_input( input, triangle_3ds );
// processing NUM_3D_TRI 3D triangles
TRIANGLES: for (bit16 i = 0; i < NUM_3D_TRI / TASK_PAR; i++)
{
PIPELINES: for (bit8 j = 0; j < TASK_PAR; j++)
{
#pragma HLS UNROLL
pipeline( i == 0, triangle_3ds[i][j], z_buffer[j], frame_buffer[j] );
}
}
// output values: frame buffer
output_FB(z_buffer, frame_buffer, output);
}
| [
"giesen@seas.upenn.edu"
] | giesen@seas.upenn.edu |
3d337b9b01c353cea5c12391ba93540397798e78 | ae1979c66ccd6daf2a16cd00a2c7f4aa5f3478dd | /Assignments/1. Asobi Asobase/BGCreator.hpp | 7ff34312cc47ba1c67b71dc108c9f2fd878d0cb4 | [] | no_license | yfyx/BITCS_Winter2019 | cb2a53591de3bb775f4001d127f361b00cd5a391 | 5ce0503327f8c7f4160643e10d56b0a5cf63f80d | refs/heads/master | 2020-08-16T01:02:25.716434 | 2019-01-19T13:23:13 | 2019-01-19T13:23:13 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 806 | hpp | #pragma once
#include "Shape.hpp"
// Player2 请根据 TODO 提示补全此类
// 完成结果不得与示例相同
// 示例:
// 输入:s 调用 Print 结果为:
//
// *
// ***
// *****
// *******
// *****
// ***
// *
//
//
// 输出:m_shape 调用 Print 结果为:
// ##############################
// ############*#################
// ###########***################
// ##########*****###############
// #########*******##############
// ##########*****###############
// ###########***################
// ############*#################
// ##############################
// ##############################
namespace AsobiAsobase
{
class BGCreator
{
public:
Shape Get(Shape s, char base = '#');
};
}
| [
"wiryls@gmx.com"
] | wiryls@gmx.com |
33c819ea3fa5d29fc133ce9c91e62e34a8bb948d | e76ea38dbe5774fccaf14e1a0090d9275cdaee08 | /src/chromeos/dbus/shill_manager_client.h | c9307cade0df11ac17b2417e6f3429063fb5f6d2 | [
"BSD-3-Clause"
] | permissive | eurogiciel-oss/Tizen_Crosswalk | efc424807a5434df1d5c9e8ed51364974643707d | a68aed6e29bd157c95564e7af2e3a26191813e51 | refs/heads/master | 2021-01-18T19:19:04.527505 | 2014-02-06T13:43:21 | 2014-02-06T13:43:21 | 16,070,101 | 1 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 9,179 | h | // Copyright (c) 2012 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 CHROMEOS_DBUS_SHILL_MANAGER_CLIENT_H_
#define CHROMEOS_DBUS_SHILL_MANAGER_CLIENT_H_
#include <string>
#include "base/basictypes.h"
#include "chromeos/chromeos_export.h"
#include "chromeos/dbus/dbus_client.h"
#include "chromeos/dbus/dbus_client_implementation_type.h"
#include "chromeos/dbus/dbus_method_call_status.h"
#include "chromeos/dbus/shill_client_helper.h"
namespace dbus {
class ObjectPath;
} // namespace dbus
namespace chromeos {
class ShillPropertyChangedObserver;
// ShillManagerClient is used to communicate with the Shill Manager
// service. All methods should be called from the origin thread which
// initializes the DBusThreadManager instance.
class CHROMEOS_EXPORT ShillManagerClient : public DBusClient {
public:
typedef ShillClientHelper::PropertyChangedHandler PropertyChangedHandler;
typedef ShillClientHelper::DictionaryValueCallback DictionaryValueCallback;
typedef ShillClientHelper::ErrorCallback ErrorCallback;
typedef ShillClientHelper::StringCallback StringCallback;
typedef ShillClientHelper::BooleanCallback BooleanCallback;
// Interface for setting up devices, services, and technologies for testing.
// Accessed through GetTestInterface(), only implemented in the Stub Impl.
class TestInterface {
public:
virtual void AddDevice(const std::string& device_path) = 0;
virtual void RemoveDevice(const std::string& device_path) = 0;
virtual void ClearDevices() = 0;
virtual void AddTechnology(const std::string& type, bool enabled) = 0;
virtual void RemoveTechnology(const std::string& type) = 0;
virtual void SetTechnologyInitializing(const std::string& type,
bool initializing) = 0;
virtual void AddGeoNetwork(const std::string& technology,
const base::DictionaryValue& network) = 0;
// Does not create an actual profile in the ProfileClient but update the
// profiles list and sends a notification to observers. This should only be
// called by the ProfileStub. In all other cases, use
// ShillProfileClient::TestInterface::AddProfile.
virtual void AddProfile(const std::string& profile_path) = 0;
// Used to reset all properties; does not notify observers.
virtual void ClearProperties() = 0;
// Add/Remove/ClearService should only be called from ShillServiceClient.
virtual void AddManagerService(const std::string& service_path,
bool add_to_visible_list,
bool add_to_watch_list) = 0;
virtual void RemoveManagerService(const std::string& service_path) = 0;
virtual void ClearManagerServices() = 0;
// Called by ShillServiceClient when a service's State property changes.
// Services are sorted first by Active vs. Inactive State, then by Type.
virtual void SortManagerServices() = 0;
protected:
virtual ~TestInterface() {}
};
// Properties used to verify the origin device.
struct VerificationProperties {
VerificationProperties();
~VerificationProperties();
// A string containing a PEM-encoded X.509 certificate for use in verifying
// the signed data.
std::string certificate;
// A string containing a PEM-encoded RSA public key to be used to compare
// with the one in signedData
std::string public_key;
// A string containing a base64-encoded random binary data for use in
// verifying the signed data.
std::string nonce;
// A string containing the identifying data string signed by the device.
std::string signed_data;
// A string containing the serial number of the device.
std::string device_serial;
// A string containing the SSID of the device. Only set if the device has
// already been setup once.
std::string device_ssid;
// A string containing the BSSID of the device. Only set if the device has
// already been setup.
std::string device_bssid;
};
virtual ~ShillManagerClient();
// Factory function, creates a new instance which is owned by the caller.
// For normal usage, access the singleton via DBusThreadManager::Get().
static ShillManagerClient* Create(DBusClientImplementationType type);
// Adds a property changed |observer|.
virtual void AddPropertyChangedObserver(
ShillPropertyChangedObserver* observer) = 0;
// Removes a property changed |observer|.
virtual void RemovePropertyChangedObserver(
ShillPropertyChangedObserver* observer) = 0;
// Calls GetProperties method.
// |callback| is called after the method call succeeds.
virtual void GetProperties(const DictionaryValueCallback& callback) = 0;
// Calls GetNetworksForGeolocation method.
// |callback| is called after the method call succeeds.
virtual void GetNetworksForGeolocation(
const DictionaryValueCallback& callback) = 0;
// Calls SetProperty method.
// |callback| is called after the method call succeeds.
virtual void SetProperty(const std::string& name,
const base::Value& value,
const base::Closure& callback,
const ErrorCallback& error_callback) = 0;
// Calls RequestScan method.
// |callback| is called after the method call succeeds.
virtual void RequestScan(const std::string& type,
const base::Closure& callback,
const ErrorCallback& error_callback) = 0;
// Calls EnableTechnology method.
// |callback| is called after the method call succeeds.
virtual void EnableTechnology(const std::string& type,
const base::Closure& callback,
const ErrorCallback& error_callback) = 0;
// Calls DisableTechnology method.
// |callback| is called after the method call succeeds.
virtual void DisableTechnology(const std::string& type,
const base::Closure& callback,
const ErrorCallback& error_callback) = 0;
// Calls ConfigureService method.
// |callback| is called after the method call succeeds.
virtual void ConfigureService(const base::DictionaryValue& properties,
const ObjectPathCallback& callback,
const ErrorCallback& error_callback) = 0;
// Calls ConfigureServiceForProfile method.
// |callback| is called with the created service if the method call succeeds.
virtual void ConfigureServiceForProfile(
const dbus::ObjectPath& profile_path,
const base::DictionaryValue& properties,
const ObjectPathCallback& callback,
const ErrorCallback& error_callback) = 0;
// Calls GetService method.
// |callback| is called after the method call succeeds.
virtual void GetService(const base::DictionaryValue& properties,
const ObjectPathCallback& callback,
const ErrorCallback& error_callback) = 0;
// Verify that the given data corresponds to a trusted device, and return true
// to the callback if it is.
virtual void VerifyDestination(const VerificationProperties& properties,
const BooleanCallback& callback,
const ErrorCallback& error_callback) = 0;
// Verify that the given data corresponds to a trusted device, and if it is,
// return the encrypted credentials for connecting to the network represented
// by the given |service_path|, encrypted using the |public_key| for the
// trusted device. If the device is not trusted, return the empty string.
virtual void VerifyAndEncryptCredentials(
const VerificationProperties& properties,
const std::string& service_path,
const StringCallback& callback,
const ErrorCallback& error_callback) = 0;
// Verify that the given data corresponds to a trusted device, and return the
// |data| encrypted using the |public_key| for the trusted device. If the
// device is not trusted, return the empty string.
virtual void VerifyAndEncryptData(const VerificationProperties& properties,
const std::string& data,
const StringCallback& callback,
const ErrorCallback& error_callback) = 0;
// For each technology present, connect to the "best" service available.
// Called once the user is logged in and certificates are loaded.
virtual void ConnectToBestServices(const base::Closure& callback,
const ErrorCallback& error_callback) = 0;
// Returns an interface for testing (stub only), or returns NULL.
virtual TestInterface* GetTestInterface() = 0;
protected:
friend class ShillManagerClientTest;
// Create() should be used instead.
ShillManagerClient();
private:
DISALLOW_COPY_AND_ASSIGN(ShillManagerClient);
};
} // namespace chromeos
#endif // CHROMEOS_DBUS_SHILL_MANAGER_CLIENT_H_
| [
"ronan@fridu.net"
] | ronan@fridu.net |
be9910f2778062d3f1dba4177e27e6e7b3935efb | 8134ef576045cc8fcebf1aa0c5e3b14c8e25bb35 | /Practice/Char Arrays/Char Arrays/Char Arrays.cpp | 50283c13b9f2226a0227c58dad90c74d3546d859 | [] | no_license | gusapostMSFT/cpp | 65118871140ae8159ccf6c74b9b8937a23a4a587 | ec793b4665ca1a02ce02d90755c0122b0a67dacf | refs/heads/master | 2022-04-20T09:02:25.159857 | 2020-04-14T02:58:31 | 2020-04-14T02:58:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,062 | cpp | #include <iostream>
using namespace std;
int main() {
// Declaring a char array is the same as any other array.
// However, you are able to write all the characters in "" and the compiler will convert that into an array for you.
// This is much easier than the standard way of { 'h', 'e', 'l', 'l', 'o' }.
// Be ware of the null terminator.
char word[] = "hello";
char noNullTerminator[] = { 'h', 'e', 'l', 'l', 'o' };
for (int i = 0; i < sizeof(word); i++) {
// This returns a 6th index, because the sizeof(word) is really 6.
// This is becuase of the NULL TERMINATOR.
// This lets the program know where the string actually ends.
// word has it because when declaring word, I used "".
cout << i << ": " << word[i] << endl;
}
for (int i = 0; i < sizeof(noNullTerminator); i++) {
// See, no null terminator!
cout << i << ": " << noNullTerminator[i] << endl;
}
int k = 0;
// We can say k cannot be 0 because the null terminator value is 0.
while (word[k] != 0) {
cout << k << ": " << word[k] << endl;;
k++;
}
return 0;
} | [
"nic_camm@icloud.com"
] | nic_camm@icloud.com |
ff166c788b7edda497e5c1f821ee54f614f6bebc | 9c0aa412a09bdeaf621ea1b0aebd0e7be34a22d0 | /test/src/derived_unit_tests/velocity_tests.cc | 543f6f8b73203ec2ae9b65474a90a767f37d31dc | [
"MIT"
] | permissive | erik502/SI | b455221226a2a54a29108cb42bd92c55aa86471c | 87b6c8376e934ee51b2473bf4aa04df51e927aa0 | refs/heads/main | 2023-06-26T11:09:55.893061 | 2021-04-28T08:31:05 | 2021-04-28T08:31:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,936 | cc | #include <catch2/catch.hpp>
#include <SI/velocity.h>
using namespace SI;
TEST_CASE("GIVEN a value WHEN constructed with literal _c THEN result is a "
"velocity type AND ratio is 299792458 to 1 (light speed)") {
constexpr auto one = 1_c;
STATIC_REQUIRE(
std::is_same<
decltype(one),
const SI::velocity_t<int64_t, std::ratio<299792458, 1>>>::value);
constexpr auto one_f = 1.0_c;
STATIC_REQUIRE(
std::is_same<
decltype(one_f),
const SI::velocity_t<long double, std::ratio<299792458, 1>>>::value);
}
TEST_CASE("GIVEN a length value in meters WHEN divided by time value in "
"seconds THEN result is a velocity value AND ratio of result is 1") {
constexpr auto one = 1_m / 1_s;
STATIC_REQUIRE(
std::is_same<decltype(one),
const SI::velocity_t<int64_t, std::ratio<1>>>::value);
STATIC_REQUIRE(std::ratio_equal<std::ratio<1>, decltype(one)::ratio>::value);
constexpr auto one_mf = 1.0_m;
constexpr auto one_sf = 1.0_s;
constexpr auto one_f = one_mf / one_sf;
STATIC_REQUIRE(
std::ratio_equal<std::ratio<1>, decltype(one_f)::ratio>::value);
}
TEST_CASE("GIVEN a length value in km WHEN divided by a time value in h THEN "
"result is a velocity value AND ratio of result is 1000 to 3600") {
constexpr auto one = 1_km / 1_h;
STATIC_REQUIRE(
std::ratio_equal<std::ratio<1000, 3600>, decltype(one)::ratio>::value);
STATIC_REQUIRE(one.value() == 1);
}
TEST_CASE("GIVEN a length value in km WHEN divided by a time value in seconds "
"THEN result is a velocity value AND ratio of result is kilo") {
constexpr auto one = 1_km / 1_s;
STATIC_REQUIRE(
std::is_same<decltype(one),
const SI::velocity_t<int64_t, std::ratio<1000, 1>>>::value);
}
TEST_CASE(
"GIVEN a length value of 10 km WHEN divided by time value of 2 s THEN "
"result is 5000m/s") {
constexpr auto kms = 10_km / 2_s;
constexpr auto ms = 10000_m / 2_s;
STATIC_REQUIRE(kms.value() == 5);
STATIC_REQUIRE(kms == ms);
}
TEMPLATE_TEST_CASE(
"GIVEN velocity value WHEN multiplied with time THEN result is a "
"length value",
"[length][operator_tests]", int64_t, long double) {
constexpr SI::velocity_t<TestType, std::ratio<1>> v{1};
constexpr SI::time_t<TestType, std::ratio<1>> T{1};
constexpr auto result = v * T;
constexpr auto result_commutative = T * v;
STATIC_REQUIRE(
std::is_same<decltype(result),
const SI::length_t<TestType, std::ratio<1>>>::value);
STATIC_REQUIRE(
std::is_same<decltype(result), decltype(result_commutative)>::value);
}
TEST_CASE("GIVEN a value of 10km/h WHEN compared to a value of 80kmh THEN "
"10km/h is smaller") {
constexpr auto ten_kmh = 10.0_km / 1.0_h;
constexpr auto eighty_kmh = 80.0_km / 1.0_h;
STATIC_REQUIRE(std::is_same<decltype(ten_kmh), decltype(eighty_kmh)>::value);
STATIC_REQUIRE(ten_kmh < eighty_kmh);
}
TEST_CASE(
"GIVEN a value WHEN constructed with literal _km_p_h THEN result is a "
"velocity type AND ratio 1000 to 3600") {
constexpr auto one_kmh_literal = 1_km_p_h;
constexpr auto one_kmh_literal_double = 1.0_km_p_h;
constexpr auto expected_type = 1_km / 1_h;
STATIC_REQUIRE(
std::is_same<decltype(expected_type), decltype(one_kmh_literal)>::value);
STATIC_REQUIRE(one_kmh_literal == expected_type);
STATIC_REQUIRE(std::ratio_equal<decltype(one_kmh_literal)::ratio,
std::ratio<1000, 3600>>::value);
STATIC_REQUIRE(std::ratio_equal<decltype(one_kmh_literal_double)::ratio,
std::ratio<1000, 3600>>::value);
STATIC_REQUIRE(std::is_same<decltype(one_kmh_literal),
const SI::kilometre_per_hour_t<int64_t>>::value);
STATIC_REQUIRE(
std::is_same<decltype(one_kmh_literal_double),
const SI::kilometre_per_hour_t<long double>>::value);
}
TEST_CASE("GIVEN a value WHEN constructed with literal _m_p_h THEN result is a "
"velocity type AND ratio 1") {
constexpr auto one_m_ps_literal = 1_m_p_s;
constexpr auto one_m_ps_literal_double = 1.0_m_p_s;
constexpr auto expected_type = 1_m / 1_s;
STATIC_REQUIRE(
std::is_same<decltype(expected_type), decltype(one_m_ps_literal)>::value);
STATIC_REQUIRE(one_m_ps_literal == expected_type);
STATIC_REQUIRE(std::ratio_equal<decltype(one_m_ps_literal)::ratio,
std::ratio<1>>::value);
STATIC_REQUIRE(std::ratio_equal<decltype(one_m_ps_literal_double)::ratio,
std::ratio<1>>::value);
STATIC_REQUIRE(std::is_same<decltype(one_m_ps_literal),
const SI::metre_per_second_t<int64_t>>::value);
STATIC_REQUIRE(
std::is_same<decltype(one_m_ps_literal_double),
const SI::metre_per_second_t<long double>>::value);
}
| [
"dominik.berner@gmail.com"
] | dominik.berner@gmail.com |
fb22502b375745601933c117ce7011c75c837979 | 0e8bd6ecee37b391299e8a41c842ce2786864e55 | /src/Magnum/Primitives/Cube.h | 4f8e28e9a0524f0a8c44e62e04fcda2be4fe96d4 | [
"MIT"
] | permissive | 91yuan/magnum | c3fc8a0287bcd2a8d62ac5db5aec905b9e185468 | 929329b1f8363ac5e6f8688423c6c6854014865e | refs/heads/master | 2021-01-19T16:41:37.924578 | 2017-08-21T17:23:50 | 2017-08-21T20:17:31 | 101,019,156 | 1 | 0 | null | 2017-08-22T03:54:43 | 2017-08-22T03:54:43 | null | UTF-8 | C++ | false | false | 2,201 | h | #ifndef Magnum_Primitives_Cube_h
#define Magnum_Primitives_Cube_h
/*
This file is part of Magnum.
Copyright © 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017
Vladimír Vondruš <mosra@centrum.cz>
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.
*/
/** @file
* @brief Class @ref Magnum::Primitives::Cube
*/
#include "Magnum/Primitives/visibility.h"
#include "Magnum/Trade/Trade.h"
namespace Magnum { namespace Primitives {
/**
@brief 3D cube primitive
2x2x2 cube.
*/
class MAGNUM_PRIMITIVES_EXPORT Cube {
public:
/**
* @brief Solid cube
*
* Indexed @ref MeshPrimitive::Triangles with flat normals.
*/
static Trade::MeshData3D solid();
/**
* @brief Solid cube as a single strip
*
* Non-indexed @ref MeshPrimitive::TriangleStrip. Just positions, no
* normals or anything else.
*/
static Trade::MeshData3D solidStrip();
/**
* @brief Wireframe cube
*
* Indexed @ref MeshPrimitive::Lines.
*/
static Trade::MeshData3D wireframe();
Cube() = delete;
};
}}
#endif
| [
"mosra@centrum.cz"
] | mosra@centrum.cz |
4f0266822bf62bdf968fe2ff6e2c4b79d5bd93d4 | b648a0ff402d23a6432643879b0b81ebe0bc9685 | /vendor/bond/cpp/inc/bond/core/detail/parser_extern.h | b5999f7764fc73c0a6632dd80a05d28f950a0d26 | [
"MIT",
"Apache-2.0"
] | permissive | jviotti/binary-json-size-benchmark | 4712faca2724d47d23efef241983ce875dc71cee | 165b577884ef366348bf48042fddf54aacfe647a | refs/heads/main | 2023-04-18T01:40:26.141995 | 2022-12-19T13:25:35 | 2022-12-19T13:25:35 | 337,583,132 | 21 | 1 | Apache-2.0 | 2022-12-17T21:53:56 | 2021-02-10T01:18:05 | C++ | UTF-8 | C++ | false | false | 1,456 | h | // Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
#pragma once
#include <bond/core/config.h>
#include "extern_macro.h"
namespace bond
{
#define BOND_DETAIL_StaticParser_ReadFields(Reader, Writer) \
bool StaticParser<Reader&>::ReadFields(const RuntimeSchema&, const Serializer<Writer>&);
BOND_DETAIL_EXTERN(
BOND_DETAIL_StaticParser_ReadFields,
(BOND_DETAIL_BUILTIN_READER_SIMPLE_BINARY)
BOND_DETAIL_BUILTIN_WRITERS)
#define BOND_DETAIL_StaticParser_ReadFields_Null(Reader) \
bool StaticParser<Reader&>::ReadFields(const RuntimeSchema&, const Null&);
BOND_DETAIL_EXTERN(
BOND_DETAIL_StaticParser_ReadFields_Null,
(BOND_DETAIL_BUILTIN_READER_SIMPLE_BINARY))
#define BOND_DETAIL_DynamicParser_ReadFields(Reader, Writer) \
bool DynamicParser<Reader&>::ReadFields(const RuntimeSchema&, const Serializer<Writer>&);
BOND_DETAIL_EXTERN(
BOND_DETAIL_DynamicParser_ReadFields,
(BOND_DETAIL_BUILTIN_READER_COMPACT_BINARY BOND_DETAIL_BUILTIN_READER_FAST_BINARY)
BOND_DETAIL_BUILTIN_WRITERS)
#define BOND_DETAIL_DynamicParser_ReadFields_Null(Reader) \
bool DynamicParser<Reader&>::ReadFields(const RuntimeSchema&, const Null&);
BOND_DETAIL_EXTERN(
BOND_DETAIL_DynamicParser_ReadFields_Null,
(BOND_DETAIL_BUILTIN_READER_COMPACT_BINARY BOND_DETAIL_BUILTIN_READER_FAST_BINARY))
} // namespace bond
| [
"jv@jviotti.com"
] | jv@jviotti.com |
0b76f55266b1bb89687e07d89ff3ab7f9ec19a62 | ceb9d30bf671b0a9f10d171e78e6eb0dfd72c8f0 | /C--/Main.h | 0b2155e857ee0b81cfe820fbfe484834f8f776e8 | [] | no_license | hoget157/C2 | 356d6ca46fc7f77e6f2fc4d9f9c4c7a9887f26ee | 7f2f88076b312c16f8bd280dafde73a195ad0f17 | refs/heads/master | 2021-01-16T20:25:02.811025 | 2015-08-28T02:58:15 | 2015-08-28T02:58:15 | 41,408,542 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 76 | h | #pragma once
#include <string>
using namespace std;
string program(string); | [
"hogethirit157@gmail.com"
] | hogethirit157@gmail.com |
608ccbef8b49c8b7d76de9daec139903ca29d3ab | dd542fecaf99f512c9e07aea180d29a16a823e43 | /Tema_4_variables_tipos/holaMundoConst.cpp | 415e44187c72973039a4d5949107d41017eef6b6 | [] | no_license | jgpATs2w/uned-lenguajes-programacion | 00886c96fda11f2160124e862bcf623cad74a748 | 4bd6d4c6cec9f166474468cf3907c246e9a84f2e | refs/heads/master | 2021-01-26T07:55:55.778890 | 2020-07-21T11:13:04 | 2020-07-21T11:13:04 | 243,374,239 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 173 | cpp | // Fichero: holaMundoConst.cpp
#include <iostream>
#include <string>
int main()
{
const std::string frase = "Hola mundo!";
std::cout << frase << std::endl;
return 0;
}
| [
"javier.garcia@dematic.com"
] | javier.garcia@dematic.com |
312dfbfb28ef25e39cd3dd1f725bc5dc9318053c | 9bb16f8fbf9f562f1171a3bbff8318a47113823b | /abc094/arc095_a/main.cpp | 21f2ebf11413bb5ec544ed05685ddbcdaa9a73eb | [] | no_license | kyamashiro/atcoder | 83ab0a880e014c167b6e9fe9457e6972901353fc | 999a7852b70b0a022a4d64ba40d4048ee4cc0c9c | refs/heads/master | 2022-06-01T03:01:39.143632 | 2022-05-22T05:38:42 | 2022-05-22T05:38:42 | 464,391,209 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 819 | cpp | #include <bits/stdc++.h>
#define REP(i, n) for (int i = 0; (i) < (int)(n); ++ (i))
#define REP3(i, m, n) for (int i = (m); (i) < (int)(n); ++ (i))
#define REP_R(i, n) for (int i = (int)(n) - 1; (i) >= 0; -- (i))
#define REP3R(i, m, n) for (int i = (int)(n) - 1; (i) >= (int)(m); -- (i))
#define ALL(x) ::std::begin(x), ::std::end(x)
using namespace std;
auto solve(int N, const std::vector<int64_t> &X) {
// TODO: edit here
}
// generated by oj-template v4.8.1 (https://github.com/online-judge-tools/template-generator)
int main() {
std::ios::sync_with_stdio(false);
std::cin.tie(nullptr);
int N;
std::cin >> N;
std::vector<int64_t> X(N);
REP (i, N) {
std::cin >> X[i];
}
auto ans = solve(N, X);
REP (i, N) {
std::cout << ans[i] << '\n';
}
return 0;
}
| [
"kyamashiro73@gmail.com"
] | kyamashiro73@gmail.com |
36326f4bda2bd7e573eb99bb62576e06746e4863 | e2e562c4e58b713d5cae036910e4e5012f56c8bb | /Engine/Codes/Layer.cpp | 6b9a65fb19aad7bd9578d8e408ee5ccd59ff526b | [] | no_license | lostwaltz/JUSIN-SR-TEAM2 | 86ef279a91bf37d6909bbb628445ba4b0f13d7c8 | 3763ef5d406fbea71ebd251cc6ceb61ff425d79b | refs/heads/master | 2022-11-15T15:43:37.366422 | 2020-06-26T23:52:12 | 2020-06-26T23:52:12 | 275,267,187 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,560 | cpp | #include "..\Headers\Layer.h"
CLayer::CLayer()
{
}
CGameObject * CLayer::Get_ObjectPointer(_uint iIndex)
{
if (m_ObjectList.size() <= iIndex)
return nullptr;
auto iter = m_ObjectList.begin();
for (size_t i = 0; i < iIndex; ++i)
++iter;
return *iter;
}
CComponent * CLayer::Get_ComponentPointer(const _tchar * pComponentTag, _uint iIndex)
{
/*if (m_ObjectList.size() <= iIndex)
return nullptr;
auto iter = m_ObjectList.begin();
for (size_t i = 0; i < iIndex; ++i)
++iter;
return (*iter)->Find_Component(pComponentTag);*/
return nullptr;
}
HRESULT CLayer::Ready_Layer()
{
return S_OK;
}
HRESULT CLayer::Add_Object(CGameObject * pGameObject)
{
if (nullptr == pGameObject)
return E_FAIL;
m_ObjectList.push_back(pGameObject);
return S_OK;
}
_int CLayer::Update_Layer(_double TimeDelta)
{
for (auto& pGameObject : m_ObjectList)
{
if (nullptr != pGameObject)
{
if (0x80000000 & pGameObject->Update_GameObject(TimeDelta))
return -1;
}
}
return _int(0);
}
_int CLayer::Late_Update_Layer(_double TimeDelta)
{
for (auto& pGameObject : m_ObjectList)
{
if (nullptr != pGameObject)
{
if (0x80000000 & pGameObject->Late_Update_GameObject(TimeDelta))
return -1;
}
}
return 0;
}
CLayer * CLayer::Create()
{
CLayer* pInstance = new CLayer();
if (FAILED(pInstance->Ready_Layer()))
{
MSG_BOX("Failed To Creating CLayer");
Safe_Release(pInstance);
}
return pInstance;
}
void CLayer::Free()
{
for (auto& pGameObject : m_ObjectList)
Safe_Release(pGameObject);
m_ObjectList.clear();
}
| [
"johndoe@example.com"
] | johndoe@example.com |
dea2a90bd6f5e56933ee61ec5f9da0f201dd4208 | d5b1f8713a56f5cec864edd324d0be64b5b25d2f | /lib/seqan-2.4.0/include/seqan/ucsc_io/ucsc_file.h | 930a894e395684553396eb21be1a7803e33b692b | [
"MIT"
] | permissive | guillaume-gricourt/HmnTrimmer | 5664cf42fb0f0eb4b454b59e456db6b5afec3d2c | 1c09e11eda12bb1ca1fd1d7ea8f08077be1bfe14 | refs/heads/main | 2023-04-17T20:25:46.737004 | 2023-04-17T07:44:02 | 2023-04-17T07:44:02 | 270,999,070 | 1 | 1 | MIT | 2023-09-11T01:38:48 | 2020-06-09T12:40:24 | HTML | UTF-8 | C++ | false | false | 6,839 | h | // ==========================================================================
// SeqAn - The Library for Sequence Analysis
// ==========================================================================
// Copyright (c) 2006-2018, Knut Reinert, FU Berlin
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * 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.
// * Neither the name of Knut Reinert or the FU Berlin 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 KNUT REINERT OR THE FU BERLIN 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.
//
// ==========================================================================
// Author: Manuel Holtgrewe <manuel.holtgrewe@fu-berlin.de>
// ==========================================================================
// Class for reading/writing files in UCSC format.
// ==========================================================================
#ifndef SEQAN_INCLUDE_SEQAN_UCSC_IO_UCSC_FILE_H_
#define SEQAN_INCLUDE_SEQAN_UCSC_IO_UCSC_FILE_H_
namespace seqan {
// ============================================================================
// Typedefs
// ============================================================================
typedef Tag<Ucsc_<> > Ucsc;
// ----------------------------------------------------------------------------
// Typedef UcscFileIn
// ----------------------------------------------------------------------------
/*!
* @class UcscFileIn
* @signature typedef FormattedFile<Ucsc, Input> UcscFileIn;
* @extends FormattedFileIn
* @headerfile <seqan/ucsc_io.h>
* @brief Class for reading UCSC <tt>knownGenes.txt</tt> and <tt>knownIsoforms.txt</tt> files.
*
* @see UcscRecord
*/
typedef FormattedFile<Ucsc, Input> UcscFileIn;
// ----------------------------------------------------------------------------
// Typedef UcscFileOut
// ----------------------------------------------------------------------------
/*!
* @class UcscFileOut
* @signature typedef FormattedFile<Ucsc, Output> UcscFileOut;
* @extends FormattedFileOut
* @headerfile <seqan/ucsc_io.h>
* @brief Class for writing UCSC <tt>knownGenes.txt</tt> and <tt>knownIsoforms.txt</tt> files.
*
* @see UcscRecord
*/
typedef FormattedFile<Ucsc, Output> UcscFileOut;
// ============================================================================
// Metafunctions
// ============================================================================
// ----------------------------------------------------------------------------
// Metafunction FormattedFileContext
// ----------------------------------------------------------------------------
template <typename TDirection, typename TSpec, typename TStorageSpec>
struct FormattedFileContext<FormattedFile<Ucsc, TDirection, TSpec>, TStorageSpec>
{
typedef UcscIOContext Type;
};
// ----------------------------------------------------------------------------
// Metafunction FileFormats
// ----------------------------------------------------------------------------
template <typename TDirection, typename TSpec>
struct FileFormat<FormattedFile<Ucsc, TDirection, TSpec> >
{
typedef TagSelector<
TagList<UcscKnownGene,
TagList<UcscKnownIsoforms
> >
> Type;
};
// ----------------------------------------------------------------------------
// Function readRecord(); UcscRecord
// ----------------------------------------------------------------------------
// support for dynamically chosen file formats
template <typename TForwardIter>
inline void
readRecord(UcscRecord & /* record */,
UcscIOContext & /* context */,
TForwardIter & /* iter */,
TagSelector<> const & /* format */)
{
SEQAN_FAIL("UcscFileIn: File format not specified.");
}
template <typename TForwardIter, typename TTagList>
inline void
readRecord(UcscRecord & record,
UcscIOContext & context,
TForwardIter & iter,
TagSelector<TTagList> const & format)
{
typedef typename TTagList::Type TFormat;
if (isEqual(format, TFormat()))
readRecord(record, context, iter, TFormat());
else
readRecord(record, context, iter, static_cast<typename TagSelector<TTagList>::Base const &>(format));
}
template <typename TSpec>
void readRecord(UcscRecord & record, FormattedFile<Ucsc, Input, TSpec> & file)
{
readRecord(record, context(file), file.iter, file.format);
}
// ----------------------------------------------------------------------------
// Function writeRecord(); UcscRecord
// ----------------------------------------------------------------------------
// support for dynamically chosen file formats
template <typename TTarget>
inline void
writeRecord(TTarget & /* target */,
UcscRecord const & /* record */,
TagSelector<> const & /* format */)
{
SEQAN_FAIL("UcscFileOut: File format not specified.");
}
template <typename TTarget, typename TTagList>
inline void
writeRecord(TTarget & target,
UcscRecord const & record,
TagSelector<TTagList> const & format)
{
typedef typename TTagList::Type TFormat;
if (isEqual(format, TFormat()))
writeRecord(target, record, TFormat());
else
writeRecord(target, record, static_cast<typename TagSelector<TTagList>::Base const &>(format));
}
template <typename TSpec>
inline void
writeRecord(FormattedFile<Ucsc, Output, TSpec> & file, UcscRecord const & record)
{
writeRecord(file.iter, record, file.format);
}
} // namespace seqan
#endif // SEQAN_INCLUDE_SEQAN_UCSC_IO_UCSC_FILE_H_
| [
"guipagui@gmail.com"
] | guipagui@gmail.com |
e5163fc0b1c89f91a24effcf7241aa4b49121451 | 9dd7633fd0625e5b5858a3d7a2fd9791d39bd137 | /IntroD3D9/Ch12Camera/TestCamera/TestCamera.h | b10d18313ae410cd90192ff7c42d891f5669b7a3 | [] | no_license | breaker/studies | 9f47846f8e8fbe7330a3fab5dd7d4ab711d44b60 | 015050ee892587ad0b5af4f2ac235134190fbe59 | refs/heads/master | 2022-12-04T16:31:04.104470 | 2022-11-24T10:23:27 | 2022-11-24T10:23:27 | 6,194,386 | 9 | 5 | null | null | null | null | GB18030 | C++ | false | false | 2,483 | h | // TestCamera.h
//
#ifndef __TESTCAMERA_H__
#define __TESTCAMERA_H__
// 资源 ID 符号常量
#include "res/Resource.h"
////////////////////////////////////////////////////////////////////////////////
// 全局量
////////////////////////////////////////////////////////////////////////////////
#undef MODULE_NAME
#define MODULE_NAME "TestCamera" // 程序模块名
#define BUF_SIZE 256 // 常用缓冲区大小
class CTestCameraApp;
extern CTestCameraApp TestCameraApp; // 应用程序实例
////////////////////////////////////////////////////////////////////////////////
// 调试功能
////////////////////////////////////////////////////////////////////////////////
// Debug 版 new
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// 以 "模块名!函数名:" 形式输出调试报告
#define FMT(fmt) _T(MODULE_NAME) _T("!") _T(__FUNCTION__) _T(": ") _T(fmt) _T("\n")
#define FMTA(fmt) MODULE_NAME "!" __FUNCTION__ ": " fmt "\n"
#define MYTRACE(fmt, ...) TRACE(FMT(fmt), __VA_ARGS__)
#define MYTRACEA(fmt, ...) TRACE(FMTA(fmt), __VA_ARGS__)
#define MYTRACE_DX(func, err) MYTRACE("%s failed: %ld: %s", _T(func), err, DXGetErrorDescription(err))
#define MYTRACE_DXA(func, err) MYTRACEA("%s failed: %ld: %s", func, err, DXGetErrorDescriptionA(err))
////////////////////////////////////////////////////////////////////////////////
// 应用程序类 CTestCameraApp
////////////////////////////////////////////////////////////////////////////////
class CTestCameraApp : public CWinApp {
public:
CTestCameraApp() {}
public:
virtual BOOL InitInstance();
virtual int Run();
int Exit(int exitCode);
public:
// 得到主程序模块全路径
const CString& GetModulePath() const {
return m_ModulePath;
}
// 取得主程序所在目录全路径
CString GetModuleDir() const;
enum WIN_SIZE {
WIN_WIDTH = 640,
WIN_HEIGHT = 480
};
private:
void InitLocale();
BOOL InitModulePath(DWORD size); // 计算主程序模块的全路径 m_ModulePath
BOOL InitWorkDir(const _TCHAR* dir); // 设置工作目录
private:
CString m_ModulePath; // 主程序模块的全路径
CString m_OldWorkDir; // 旧的工作目录
std::auto_ptr<SGL::Main> m_GameMain;
};
#endif // __TESTCAMERA_H__
| [
"breakerzhao@qq.com"
] | breakerzhao@qq.com |
8b9f10584cf5e3f6ff13b142a4d561d3492898e9 | 9e92041d5b8e8323f1f30f9bc6e8721137dc3b3d | /Graphics/GraphicsEngineOpenGL/include/DeviceObjectArchiveGLImpl.hpp | f50d84c937ff05ce2c112a8d6c29801d71aea878 | [
"Apache-2.0",
"BSD-3-Clause",
"MIT",
"LicenseRef-scancode-nvidia-2002",
"LicenseRef-scancode-public-domain",
"BSD-2-Clause"
] | permissive | infosia/DiligentCore | 08e995a14565c7bcfeb69f4feabb1f972e4e7bcc | 3b9b5b3faa2b1cbcf4e2659d14734030df8a8dfc | refs/heads/master | 2023-09-02T20:25:12.382307 | 2021-11-23T03:47:47 | 2021-11-23T04:59:55 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,449 | hpp | /*
* Copyright 2019-2021 Diligent Graphics LLC
*
* 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.
*
* In no event and under no legal theory, whether in tort (including negligence),
* contract, or otherwise, unless required by applicable law (such as deliberate
* and grossly negligent acts) or agreed to in writing, shall any Contributor be
* liable for any damages, including any direct, indirect, special, incidental,
* or consequential damages of any character arising as a result of this License or
* out of the use or inability to use the software (including but not limited to damages
* for loss of goodwill, work stoppage, computer failure or malfunction, or any and
* all other commercial damages or losses), even if such Contributor has been advised
* of the possibility of such damages.
*/
#pragma once
/// \file
/// Declaration of Diligent::DeviceObjectArchiveGLImpl class
#include "Dearchiver.h"
#include "EngineGLImplTraits.hpp"
#include "DeviceObjectArchiveBase.hpp"
namespace Diligent
{
/// Device object archive object implementation in OpenGL backend.
class DeviceObjectArchiveGLImpl final : public DeviceObjectArchiveBase
{
public:
DeviceObjectArchiveGLImpl(IReferenceCounters* pRefCounters, IArchive* pSource);
~DeviceObjectArchiveGLImpl();
void UnpackResourceSignature(const ResourceSignatureUnpackInfo& DeArchiveInfo, IPipelineResourceSignature*& pSignature) override;
};
template <SerializerMode Mode>
struct PSOSerializerGL
{
template <typename T>
using TQual = typename Serializer<Mode>::template TQual<T>;
static void SerializePRS(Serializer<Mode>& Ser,
TQual<PipelineResourceSignatureSerializedDataGL>& Serialized,
DynamicLinearAllocator* Allocator);
};
DECL_TRIVIALLY_SERIALIZABLE(PipelineResourceAttribsGL);
} // namespace Diligent
| [
"61806567+TheMostDiligent@users.noreply.github.com"
] | 61806567+TheMostDiligent@users.noreply.github.com |
07f41b5b29cd72b73c4d92ddd62a2775ef3fb80c | 536656cd89e4fa3a92b5dcab28657d60d1d244bd | /third_party/blink/renderer/core/frame/reporting_observer.h | 23bb86d8b9f8be09a6d75274fef44344591945b4 | [
"LGPL-2.0-or-later",
"GPL-1.0-or-later",
"MIT",
"Apache-2.0",
"LicenseRef-scancode-warranty-disclaimer",
"LGPL-2.1-only",
"GPL-2.0-only",
"LGPL-2.0-only",
"BSD-2-Clause",
"LicenseRef-scancode-other-copyleft",
"BSD-3-Clause"
] | permissive | ECS-251-W2020/chromium | 79caebf50443f297557d9510620bf8d44a68399a | ac814e85cb870a6b569e184c7a60a70ff3cb19f9 | refs/heads/master | 2022-08-19T17:42:46.887573 | 2020-03-18T06:08:44 | 2020-03-18T06:08:44 | 248,141,336 | 7 | 8 | BSD-3-Clause | 2022-07-06T20:32:48 | 2020-03-18T04:52:18 | null | UTF-8 | C++ | false | false | 2,601 | h | // Copyright 2017 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 THIRD_PARTY_BLINK_RENDERER_CORE_FRAME_REPORTING_OBSERVER_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_FRAME_REPORTING_OBSERVER_H_
#include "third_party/blink/renderer/bindings/core/v8/active_script_wrappable.h"
#include "third_party/blink/renderer/bindings/core/v8/v8_reporting_observer_callback.h"
#include "third_party/blink/renderer/bindings/core/v8/v8_reporting_observer_options.h"
#include "third_party/blink/renderer/core/core_export.h"
#include "third_party/blink/renderer/core/execution_context/execution_context_lifecycle_observer.h"
#include "third_party/blink/renderer/core/frame/report.h"
#include "third_party/blink/renderer/platform/wtf/vector.h"
namespace blink {
class ExecutionContext;
class Report;
class CORE_EXPORT ReportingObserver final
: public ScriptWrappable,
public ActiveScriptWrappable<ReportingObserver>,
public ExecutionContextClient {
USING_GARBAGE_COLLECTED_MIXIN(ReportingObserver);
DEFINE_WRAPPERTYPEINFO();
public:
static ReportingObserver* Create(ExecutionContext*,
V8ReportingObserverCallback*,
ReportingObserverOptions*);
explicit ReportingObserver(ExecutionContext*,
V8ReportingObserverCallback*,
ReportingObserverOptions*);
// ActiveScriptWrappable
bool HasPendingActivity() const final;
// Call the callback with all reports in |report_queue_|.
void ReportToCallback();
// Queues a report to be reported via callback soon (possibly in a batch).
void QueueReport(Report* report);
// Returns whether this ReportingObserver observes reports of the type |type|,
// based on the |types| option.
bool ObservedType(const String& type);
// Returns the state of the |buffered| option.
bool Buffered();
// Sets the |buffered| option to false. This should be called after queueing
// all buffered reports, so that they are not reported multiple times.
void ClearBuffered();
void observe();
void disconnect();
HeapVector<Member<Report>> takeRecords();
void Trace(Visitor*) override;
private:
Member<ExecutionContext> execution_context_;
Member<V8ReportingObserverCallback> callback_;
Member<ReportingObserverOptions> options_;
HeapVector<Member<Report>> report_queue_;
bool registered_;
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_CORE_FRAME_REPORTING_OBSERVER_H_
| [
"pcding@ucdavis.edu"
] | pcding@ucdavis.edu |
534376df5e26ccc2a281b2eaf5034412cb723a1d | 29c804bd89c0865e8f8b1f1a54be35131655171a | /src/FBXAnimationProject.cpp | 61e0fb9a58ba6dcf088f78f09be0944de4ec1b31 | [
"MIT"
] | permissive | IcedLeon/Introduction-to-3D-with-OpenGL | 2aa2d6e41a9b3ca3ee95de65cda88db6ffd7c787 | 7e0edcb768d2e2b4b19cb5015a73335c60cd8f60 | refs/heads/master | 2020-04-06T04:30:14.772510 | 2017-05-25T13:56:24 | 2017-05-25T13:56:24 | 30,327,236 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,621 | cpp | #include "FBXAnimationProject.h"
#include <GLFW\glfw3.h>
#include "Camera.h"
#include "Gizmos.h"
FBXAnimationP::FBXAnimationP() : m_oFile(nullptr),
m_fTimer(NULL),
m_fAugmenter(NULL)
{
}
FBXAnimationP::~FBXAnimationP()
{
}
void FBXAnimationP::InitWindow(vec3 a_vCamPos, vec3 a_vScreenSize, const char* a_pccWinName, bool a_bFullScreen)
{
Application::InitWindow(a_vCamPos, a_vScreenSize, a_pccWinName, a_bFullScreen);
m_oProjection = m_oCamera.GetProjectionTransform(vec2(a_vScreenSize.x, a_vScreenSize.y));
Gizmos::create();
//m_oTweek.CreateBar("Time");
m_fAugmenter = 1.0f;
//TwAddVarRW(m_oTweek.GetMappedBar("Time"), "Time agumenter", TW_TYPE_FLOAT, &m_fAugmenter, "min=0.1 max=100 step=0.5");
m_oShader.CreateShaderProgram(SKINNED_VERTEX_GLSL, SKINNED_FRAGMENT_GLSL);
m_oFile = new FBXFile();
m_oFile->load("./models/rigged/Pyro/pyro.fbx");
m_oFile->initialiseOpenGLTextures();
CreateGLMeshes(m_oFile);
}
void FBXAnimationP::CleanUpWin()
{
m_oFile->unload();
m_oShader.CleanUpProgram();
Application::CleanUpWin();
}
void FBXAnimationP::Update(GLdouble a_fDeltaTime)
{
m_oView = m_oCamera.GetViewTransform();
//m_oWorld = m_oCamera.GetWorldTransform();
Gizmos::clear();
Gizmos::addTransform(mat4(1));
vec4 _white(1);
vec4 _black(0, 0, 0, 1);
vec4 _red(1, 0, 0, 1);
vec4 _green(0, 1, 0, 1);
vec4 _blue(0, 0, 1, 1);
for (int i = 0; i <= 20; ++i)
{
Gizmos::addLine(vec3(-10 + i, 0, -10), vec3(-10 + i, 0, 10),
i == 10 ? _blue : _black);
Gizmos::addLine(vec3(-10, 0, -10 + i), vec3(10, 0, -10 + i),
i == 10 ? _red : _black);
}
m_fTimer += (float)a_fDeltaTime * m_fAugmenter;
float _sinFreq = sinf(m_fTimer) * 0.5f + 0.5f;
FBXSkeleton* _skely = m_oFile->getSkeletonByIndex(0);
FBXAnimation* _animatron = m_oFile->getAnimationByIndex(0);
//_skely->evaluate(_animatron, m_fTimer);
EvalueteSkeleton(_animatron, _skely, m_fTimer);
for (unsigned int bones = 0; bones < _skely->m_boneCount; ++bones)
{
_skely->m_nodes[bones]->updateGlobalTransform();
mat4 _nodeGlobal = _skely->m_nodes[bones]->m_globalTransform;
vec3 _nodePos = _nodeGlobal[3].xyz;
Gizmos::addAABBFilled(_nodePos, vec3(2.0f), vec4(1, 0, 0, 1), &_nodeGlobal);
if (_skely->m_nodes[bones]->m_parent != nullptr)
{
vec3 _parentPos = _skely->m_nodes[bones]->m_parent->m_globalTransform[3].xyz;
Gizmos::addLine(_nodePos, _parentPos, vec4(0, 1, 0, 1));
}
}
MoveCamera((float)a_fDeltaTime);
}
void FBXAnimationP::Draw()
{
Use();
m_oTweek.DrawTweek();
mat4 _projView = m_oProjection * m_oView;
Gizmos::draw(_projView);
for (unsigned int i = 0; i < m_oMeshes.size(); ++i)
{
FBXMeshNode* _currMesh = m_oFile->getMeshByIndex(i);
mat4 _worldTrans = _currMesh->m_globalTransform;
GLuint _worldUni = glGetUniformLocation(m_oShader.GetShaderProgram(), "World");
glUniformMatrix4fv(_worldUni, 1, GL_FALSE, glm::value_ptr(_worldTrans));
FBXMaterial* _meshMaterial = _currMesh->m_material;
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, _meshMaterial->textures[FBXMaterial::DiffuseTexture]->handle);
glBindVertexArray(m_oMeshes[i].m_uiVAO);
glDrawElements(GL_TRIANGLES, m_oMeshes[i].m_uiIndexCount, GL_UNSIGNED_INT, NULL);
}
}
void FBXAnimationP::MoveCamera(float a_fDeltaTime)
{
// Camera controls
if (m_bKeys[GLFW_KEY_W])
m_oCamera.KeyboardInput(FORWARD, a_fDeltaTime);
if (m_bKeys[GLFW_KEY_S])
m_oCamera.KeyboardInput(BACKWARD, a_fDeltaTime);
if (m_bKeys[GLFW_KEY_A])
m_oCamera.KeyboardInput(LEFT, a_fDeltaTime);
if (m_bKeys[GLFW_KEY_D])
m_oCamera.KeyboardInput(RIGHT, a_fDeltaTime);
if (m_bKeys[GLFW_KEY_TAB])
glPolygonMode(GL_FRONT_AND_BACK, GL_FILL);
if (m_bKeys[GLFW_KEY_LEFT_SHIFT])
glPolygonMode(GL_FRONT_AND_BACK, GL_LINE);
}
void FBXAnimationP::Use()
{
m_oShader.Use();
GLuint _projUni = glGetUniformLocation(m_oShader.GetShaderProgram(), "Projection");
glUniformMatrix4fv(_projUni, 1, GL_FALSE, glm::value_ptr(m_oProjection));
GLuint _viewUni = glGetUniformLocation(m_oShader.GetShaderProgram(), "View");
glUniformMatrix4fv(_viewUni, 1, GL_FALSE, glm::value_ptr(m_oView));
GLuint _textDiffUni = glGetUniformLocation(m_oShader.GetShaderProgram(), "diffuse_tex");
glUniform1i(_textDiffUni, 0);
FBXSkeleton* _skely = m_oFile->getSkeletonByIndex(0);
//_skely->updateBones();
UpdateBones(_skely);
GLuint _bonesUni = glGetUniformLocation(m_oShader.GetShaderProgram(), "Bones");
glUniformMatrix4fv(_bonesUni, _skely->m_boneCount, GL_FALSE, (float*)_skely->m_bones);
}
void FBXAnimationP::CreateGLMeshes(FBXFile* a_oFile)
{
unsigned int _meshCount = a_oFile->getMeshCount();
m_oMeshes.resize(_meshCount);
for (unsigned int meshIndx = 0; meshIndx < _meshCount; ++meshIndx)
{
FBXMeshNode* _currMesh = a_oFile->getMeshByIndex(meshIndx);
m_oMeshes[meshIndx].m_uiIndexCount = _currMesh->m_indices.size();
glGenBuffers(1, &m_oMeshes[meshIndx].m_uiVBO);
glGenBuffers(1, &m_oMeshes[meshIndx].m_uiIBO);
glGenVertexArrays(1, &m_oMeshes[meshIndx].m_uiVAO);
glBindVertexArray(m_oMeshes[meshIndx].m_uiVAO);
glBindBuffer(GL_ARRAY_BUFFER, m_oMeshes[meshIndx].m_uiVBO);
glBufferData(GL_ARRAY_BUFFER, sizeof(FBXVertex) * _currMesh->m_vertices.size(),
_currMesh->m_vertices.data(), GL_STATIC_DRAW);
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, m_oMeshes[meshIndx].m_uiIBO);
glBufferData(GL_ELEMENT_ARRAY_BUFFER, sizeof(GLuint) * _currMesh->m_indices.size(),
_currMesh->m_indices.data(), GL_STATIC_DRAW);
glEnableVertexAttribArray(0); //pos
glEnableVertexAttribArray(1); //UV
glEnableVertexAttribArray(2); //bone index
glEnableVertexAttribArray(3); //bone weight
glVertexAttribPointer(0, 4, GL_FLOAT, GL_FALSE, sizeof(FBXVertex), (void*)FBXVertex::PositionOffset);
glVertexAttribPointer(1, 2, GL_FLOAT, GL_FALSE, sizeof(FBXVertex), (void*)FBXVertex::TexCoord1Offset);
glVertexAttribPointer(2, 4, GL_FLOAT, GL_FALSE, sizeof(FBXVertex), (void*)FBXVertex::IndicesOffset);
glVertexAttribPointer(3, 4, GL_FLOAT, GL_FALSE, sizeof(FBXVertex), (void*)FBXVertex::WeightsOffset);
glBindVertexArray(NULL);
glBindBuffer(GL_ARRAY_BUFFER, NULL);
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, NULL);
}
}
void FBXAnimationP::EvalueteSkeleton(FBXAnimation* a_oAnimation, FBXSkeleton* a_oSkeleton, float a_fDeltaTime)
{
float _FPS = 24.0f;
int _currentFrame = (int)(a_fDeltaTime * _FPS);
//iterate all the bones
for (unsigned int trackidex = 0; trackidex < a_oAnimation->m_trackCount; ++trackidex)
{
//We avoid to indexing out of the array by wrapping from the start.
int track_frame_count = a_oAnimation->m_tracks[trackidex].m_keyframeCount;
int track_frame = _currentFrame % track_frame_count;
//find the key frames that influce the bones
FBXKeyFrame _currentKeyFrame = a_oAnimation->m_tracks[trackidex].m_keyframes[track_frame];
FBXKeyFrame _nextKeyFrame = a_oAnimation->m_tracks[trackidex].m_keyframes[
(track_frame + 1) % track_frame_count];
float _time_since_frame_flip = a_fDeltaTime - (_currentFrame / _FPS);
float _t = _time_since_frame_flip * _FPS;
//interpolate between those keyframes to generate the matrix for current pose
vec3 _newPos = glm::mix(_currentKeyFrame.m_translation, _nextKeyFrame.m_translation, _t);
vec3 _newScale = glm::mix(_currentKeyFrame.m_scale, _nextKeyFrame.m_scale, _t);
glm::quat _newRot = glm::slerp(_currentKeyFrame.m_rotation, _nextKeyFrame.m_rotation, _t);
mat4 local_transform = glm::translate(_newPos) * glm::toMat4(_newRot) * glm::scale(_newScale);
//Getting the right bone for the given track
unsigned int _boneIndex = a_oAnimation->m_tracks[trackidex].m_boneIndex;
if (_boneIndex < a_oSkeleton->m_boneCount)
{
//set the fbx node local transform to match
a_oSkeleton->m_nodes[_boneIndex]->m_localTransform = local_transform;
}
}
}
void FBXAnimationP::UpdateBones(FBXSkeleton* a_oSkeleton)
{
//loop through the nodes int hte ckeleton
for (unsigned int bone_index = 0; bone_index < a_oSkeleton->m_boneCount; ++bone_index)
{
//generate their global transforms
int parent_index = a_oSkeleton->m_parentIndex[bone_index];
if (parent_index == -1)
{
a_oSkeleton->m_bones[bone_index] = a_oSkeleton->m_nodes[bone_index]->m_localTransform;
}
else
{
a_oSkeleton->m_bones[bone_index] = a_oSkeleton->m_bones[parent_index] * a_oSkeleton->m_nodes[bone_index]->m_localTransform;
}
}
for (unsigned int bone_index = 0; bone_index < a_oSkeleton->m_boneCount; ++bone_index)
{
a_oSkeleton->m_bones[bone_index] = a_oSkeleton->m_bones[bone_index] * a_oSkeleton->m_bindPoses[bone_index];
}
//multyply the global transform by the inverse bind pose
} | [
"tommaso.galatolo@gmail.com"
] | tommaso.galatolo@gmail.com |
d967422999b1ea93bb4f7204527a667870a7c63b | 146698dcc3a2cbc9bdbf855add3fd7d6a1934c50 | /SampleCodes/Function/Lab8.cc | c103ad855877fb3c0b49280b179dadcb9d83c9ca | [] | no_license | geunkim/CPPLectures | 1e0d80a6f7348d5abae6ea4fe7b0b0be3de3afee | a402e912777c2d280a2103fa968e6c91dab63435 | refs/heads/master | 2023-07-20T14:57:25.165971 | 2023-07-17T01:28:40 | 2023-07-17T01:28:40 | 210,631,519 | 32 | 104 | null | 2023-03-21T23:52:22 | 2019-09-24T15:05:32 | C++ | UTF-8 | C++ | false | false | 242 | cc | /*
File: Lab8.cc
Author: Geun-Hyung Kim
*/
#include <iostream>
using namespace std;
void increase(int x){
x++;
}
int main(int argc, char const *argv[])
{
int x = 10;
increase(x);
cout << "출력: " << x << endl;
return 0;
}
| [
"geunkim@deu.ac.kr"
] | geunkim@deu.ac.kr |
059cccc5ad2e7f53bf0a7eb176350a4e3e8cefa9 | f051d9a41613334e4ba6a5747028fef3a11ac70d | /src/hsp3dish/win32gp/gpcam.h | 9980a712e706878163a03ff498788a4badd1b0c0 | [
"BSD-3-Clause"
] | permissive | onitama/OpenHSP | d93b50b230234c4792a5199539403ab91f91740a | ba6b92a40c4bc6716208ad4961f11bbd1c7fbd04 | refs/heads/master | 2023-09-04T09:55:03.935733 | 2023-08-21T06:52:49 | 2023-08-21T06:52:49 | 107,995,606 | 159 | 26 | BSD-3-Clause | 2022-06-18T02:42:50 | 2017-10-23T14:42:26 | C | UTF-8 | C++ | false | false | 95 | h | #ifndef gpcam_H_
#define gpcam_H_
#include "gameplay.h"
using namespace gameplay;
#endif
| [
"onitama@onionsoft.net"
] | onitama@onionsoft.net |
264367e4e374a5145b81cc58f43bd37a04f6fd7f | d76cbc4b063bff16708b627f5c829dda167cad44 | /MyODBII/CSensorDataVectorMap.cpp | d2283b57430c0e9a666ad05a546e333c684d41ed | [] | no_license | hongdeyongying/limit | a642853547d73c08e27d50a50a15afcb325a5728 | 209a345a9876e4df92a8078777bca71aab2dda4d | refs/heads/master | 2021-01-23T01:40:24.729661 | 2017-03-23T08:53:41 | 2017-03-23T08:53:41 | 85,923,218 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 298 | cpp |
#include "CSensorDataVectorMap.h"
CSensorDataVectorMap g_objCSensorDataVectorMap;
// 即时传感器数据
CECUSensorDataVectorMap g_objCECUSensorDataVectorMap;
// 车辆信息
CECUCarInfoMap g_objCECUCarInfoMap;
// 冻结帧数据
CECUSensorDataVectorMap g_objCECUSensorDataVectorMap_freeze;
| [
"gaoyong@wucar.com.cn"
] | gaoyong@wucar.com.cn |
e6f470ff452c5805b43fb71e59538e8e3f4a20b6 | 44aafe01ac5cec557ca7cb3295b11eea51db3265 | /AISonification/JuceLibraryCode/modules/juce_gui_basics/windows/juce_DialogWindow.h | e0284fa852e4b186c7c4b83105f3f275692277ce | [
"MIT"
] | permissive | jayb2/AISonification | c99581123b7f96336366430dace4dca8dee48215 | 07e010ca3946341b3922329db1269a86098769a4 | refs/heads/master | 2021-03-18T04:56:17.789547 | 2020-05-26T20:06:15 | 2020-05-26T20:06:15 | 247,047,490 | 1 | 1 | MIT | 2020-05-19T20:35:43 | 2020-03-13T10:40:36 | C++ | UTF-8 | C++ | false | false | 13,026 | h | /*
==============================================================================
This file is part of the JUCE library.
Copyright (c) 2017 - ROLI Ltd.
JUCE is an open source library subject to commercial or open-source
licensing.
By using JUCE, you agree to the terms of both the JUCE 5 End-User License
Agreement and JUCE 5 Privacy Policy (both updated and effective as of the
27th April 2017).
End User License Agreement: www.juce.com/juce-5-licence
Privacy Policy: www.juce.com/juce-5-privacy-policy
Or: You may also use this code under the terms of the GPL v3 (see
www.gnu.org/licenses).
JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
DISCLAIMED.
==============================================================================
*/
namespace juce
{
//==============================================================================
/**
A dialog-box style window.
This class is a convenient way of creating a DocumentWindow with a close button
that can be triggered by pressing the escape key.
Any of the methods available to a DocumentWindow or ResizableWindow are also
available to this, so it can be made resizable, have a menu bar, etc.
You can either override or use an instance of the DialogWindow class directly,
or you can use a DialogWindow::LaunchOptions structure to quickly set up and
launch a box containing a content component.
If you use the class directly, you'll need to override the
DocumentWindow::closeButtonPressed() method to handle the user clicking the close
button - for more info, see the DocumentWindow help.
@see DocumentWindow, ResizableWindow
@tags{GUI}
*/
class JUCE_API DialogWindow : public DocumentWindow
{
public:
//==============================================================================
/** Creates a DialogWindow.
@param name the name to give the component - this is also
the title shown at the top of the window. To change
this later, use setName()
@param backgroundColour the colour to use for filling the window's background.
@param escapeKeyTriggersCloseButton if true, then pressing the escape key will cause the
close button to be triggered
@param addToDesktop if true, the window will be automatically added to the
desktop; if false, you can use it as a child component
*/
DialogWindow (const String& name,
Colour backgroundColour,
bool escapeKeyTriggersCloseButton,
bool addToDesktop = true);
/** Destructor.
If a content component has been set with setContentOwned(), it will be deleted.
*/
~DialogWindow() override;
//==============================================================================
/** This class defines a collection of settings to be used to open a DialogWindow.
The easiest way to open a DialogWindow is to create yourself a LaunchOptions structure,
initialise its fields with the appropriate details, and then call its launchAsync()
method to launch the dialog.
*/
struct JUCE_API LaunchOptions
{
LaunchOptions() noexcept;
/** The title to give the window. */
String dialogTitle;
/** The background colour for the window. */
Colour dialogBackgroundColour = Colours::lightgrey;
/** The content component to show in the window. This must not be null!
Using an OptionalScopedPointer to hold this pointer lets you indicate whether
you'd like the dialog to automatically delete the component when the dialog
has terminated.
*/
OptionalScopedPointer<Component> content;
/** If this is not a nullptr, it indicates a component that you'd like to position this
dialog box in front of. See the DocumentWindow::centreAroundComponent() method for
more info about this parameter.
*/
Component* componentToCentreAround = nullptr;
/** If true, then the escape key will trigger the dialog's close button. */
bool escapeKeyTriggersCloseButton = true;
/** If true, the dialog will use a native title bar. See TopLevelWindow::setUsingNativeTitleBar() */
bool useNativeTitleBar = true;
/** If true, the window will be resizable. See ResizableWindow::setResizable() */
bool resizable = true;
/** Indicates whether to use a border or corner resizer component. See ResizableWindow::setResizable() */
bool useBottomRightCornerResizer = false;
/** Launches a new modal dialog window.
This will create a dialog based on the settings in this structure,
launch it modally, and return immediately. The window that is returned
will be automatically deleted when the modal state is terminated.
When the dialog's close button is clicked, it'll automatically terminate its
modal state, but you can also do this programmatically by calling
exitModalState (returnValue) on the DialogWindow.
If your content component needs to find the dialog window that it is
contained in, a quick trick is to do this:
@code
if (DialogWindow* dw = contentComponent->findParentComponentOfClass<DialogWindow>())
dw->exitModalState (1234);
@endcode
*/
DialogWindow* launchAsync();
/** Creates a new DialogWindow instance with these settings.
This method simply creates the window, it doesn't run it modally. In most cases
you'll want to use launchAsync() or runModal() instead.
*/
DialogWindow* create();
#if JUCE_MODAL_LOOPS_PERMITTED || DOXYGEN
/** Launches and runs the dialog modally, returning the status code that was
used to terminate the modal loop.
Note that running modal loops inline is a BAD technique. If possible, always
use launchAsync() instead of this method.
*/
int runModal();
#endif
JUCE_DECLARE_NON_COPYABLE (LaunchOptions)
};
//==============================================================================
/** Easy way of quickly showing a dialog box containing a given component.
Note: This method has been superseded by the DialogWindow::LaunchOptions structure,
which does the same job with some extra flexibility. The showDialog method is here
for backwards compatibility, but please use DialogWindow::LaunchOptions in new code.
This will open and display a DialogWindow containing a given component, making it
modal, but returning immediately to allow the dialog to finish in its own time. If
you want to block and run a modal loop until the dialog is dismissed, use showModalDialog()
instead.
To close the dialog programmatically, you should call exitModalState (returnValue) on
the DialogWindow that is created. To find a pointer to this window from your
contentComponent, you can do something like this:
@code
if (DialogWindow* dw = contentComponent->findParentComponentOfClass<DialogWindow>())
dw->exitModalState (1234);
@endcode
@param dialogTitle the dialog box's title
@param contentComponent the content component for the dialog box. Make sure
that this has been set to the size you want it to
be before calling this method. The component won't
be deleted by this call, so you can re-use it or delete
it afterwards
@param componentToCentreAround if this is not a nullptr, it indicates a component that
you'd like to show this dialog box in front of. See the
DocumentWindow::centreAroundComponent() method for more
info on this parameter
@param backgroundColour a colour to use for the dialog box's background colour
@param escapeKeyTriggersCloseButton if true, then pressing the escape key will cause the
close button to be triggered
@param shouldBeResizable if true, the dialog window has either a resizable border, or
a corner resizer
@param useBottomRightCornerResizer if shouldBeResizable is true, this indicates whether
to use a border or corner resizer component. See ResizableWindow::setResizable()
*/
static void showDialog (const String& dialogTitle,
Component* contentComponent,
Component* componentToCentreAround,
Colour backgroundColour,
bool escapeKeyTriggersCloseButton,
bool shouldBeResizable = false,
bool useBottomRightCornerResizer = false);
#if JUCE_MODAL_LOOPS_PERMITTED || DOXYGEN
/** Easy way of quickly showing a dialog box containing a given component.
Note: This method has been superseded by the DialogWindow::LaunchOptions structure,
which does the same job with some extra flexibility. The showDialog method is here
for backwards compatibility, but please use DialogWindow::LaunchOptions in new code.
This will open and display a DialogWindow containing a given component, returning
when the user clicks its close button.
It returns the value that was returned by the dialog box's runModalLoop() call.
To close the dialog programmatically, you should call exitModalState (returnValue) on
the DialogWindow that is created. To find a pointer to this window from your
contentComponent, you can do something like this:
@code
if (DialogWindow* dw = contentComponent->findParentComponentOfClass<DialogWindow>())
dw->exitModalState (1234);
@endcode
@param dialogTitle the dialog box's title
@param contentComponent the content component for the dialog box. Make sure
that this has been set to the size you want it to
be before calling this method. The component won't
be deleted by this call, so you can re-use it or delete
it afterwards
@param componentToCentreAround if this is not a nullptr, it indicates a component that
you'd like to show this dialog box in front of. See the
DocumentWindow::centreAroundComponent() method for more
info on this parameter
@param backgroundColour a colour to use for the dialog box's background colour
@param escapeKeyTriggersCloseButton if true, then pressing the escape key will cause the
close button to be triggered
@param shouldBeResizable if true, the dialog window has either a resizable border, or
a corner resizer
@param useBottomRightCornerResizer if shouldBeResizable is true, this indicates whether
to use a border or corner resizer component. See ResizableWindow::setResizable()
*/
static int showModalDialog (const String& dialogTitle,
Component* contentComponent,
Component* componentToCentreAround,
Colour backgroundColour,
bool escapeKeyTriggersCloseButton,
bool shouldBeResizable = false,
bool useBottomRightCornerResizer = false);
#endif
/** Called when the escape key is pressed.
This can be overridden to do things other than the default behaviour, which is to hide
the window. Return true if the key has been used, or false if it was ignored.
*/
virtual bool escapeKeyPressed();
protected:
//==============================================================================
/** @internal */
void resized() override;
/** @internal */
bool keyPressed (const KeyPress&) override;
private:
bool escapeKeyTriggersCloseButton;
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (DialogWindow)
};
} // namespace juce
| [
"up811534@myport.ac.uk"
] | up811534@myport.ac.uk |
4098e838a59faef0cd56776b2683432a29c320d9 | a50a758ca44ee43d4f70cb060fe0db6d1177d9f9 | /src/debug/debug-evaluate.cc | 899f196189c79a76025484c120ebafd49f050bef | [
"BSD-3-Clause",
"bzip2-1.0.6",
"SunPro"
] | permissive | yujunrong/v8 | 023234fdcd81269e5b3ce9528f6aa3f863dd5d06 | 7e11781bddb07712dc4d8ba03eb7dd41c031cef9 | refs/heads/master | 2021-01-20T09:49:59.592038 | 2017-08-28T03:20:22 | 2017-08-28T03:51:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 28,536 | cc | // Copyright 2015 the V8 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.
#include "src/debug/debug-evaluate.h"
#include "src/accessors.h"
#include "src/compiler.h"
#include "src/contexts.h"
#include "src/debug/debug-frames.h"
#include "src/debug/debug-scopes.h"
#include "src/debug/debug.h"
#include "src/frames-inl.h"
#include "src/globals.h"
#include "src/interpreter/bytecode-array-iterator.h"
#include "src/interpreter/bytecodes.h"
#include "src/isolate-inl.h"
namespace v8 {
namespace internal {
static inline bool IsDebugContext(Isolate* isolate, Context* context) {
return context->native_context() == *isolate->debug()->debug_context();
}
MaybeHandle<Object> DebugEvaluate::Global(Isolate* isolate,
Handle<String> source) {
// Handle the processing of break.
DisableBreak disable_break_scope(isolate->debug());
// Enter the top context from before the debugger was invoked.
SaveContext save(isolate);
SaveContext* top = &save;
while (top != NULL && IsDebugContext(isolate, *top->context())) {
top = top->prev();
}
if (top != NULL) isolate->set_context(*top->context());
// Get the native context now set to the top context from before the
// debugger was invoked.
Handle<Context> context = isolate->native_context();
Handle<JSObject> receiver(context->global_proxy());
Handle<SharedFunctionInfo> outer_info(context->closure()->shared(), isolate);
return Evaluate(isolate, outer_info, context, receiver, source, false);
}
MaybeHandle<Object> DebugEvaluate::Local(Isolate* isolate,
StackFrame::Id frame_id,
int inlined_jsframe_index,
Handle<String> source,
bool throw_on_side_effect) {
// Handle the processing of break.
DisableBreak disable_break_scope(isolate->debug());
// Get the frame where the debugging is performed.
StackTraceFrameIterator it(isolate, frame_id);
if (!it.is_javascript()) return isolate->factory()->undefined_value();
JavaScriptFrame* frame = it.javascript_frame();
// Traverse the saved contexts chain to find the active context for the
// selected frame.
SaveContext* save =
DebugFrameHelper::FindSavedContextForFrame(isolate, frame);
SaveContext savex(isolate);
isolate->set_context(*(save->context()));
// This is not a lot different than DebugEvaluate::Global, except that
// variables accessible by the function we are evaluating from are
// materialized and included on top of the native context. Changes to
// the materialized object are written back afterwards.
// Note that the native context is taken from the original context chain,
// which may not be the current native context of the isolate.
ContextBuilder context_builder(isolate, frame, inlined_jsframe_index);
if (isolate->has_pending_exception()) return MaybeHandle<Object>();
Handle<Context> context = context_builder.evaluation_context();
Handle<JSObject> receiver(context->global_proxy());
MaybeHandle<Object> maybe_result =
Evaluate(isolate, context_builder.outer_info(), context, receiver, source,
throw_on_side_effect);
if (!maybe_result.is_null()) context_builder.UpdateValues();
return maybe_result;
}
// Compile and evaluate source for the given context.
MaybeHandle<Object> DebugEvaluate::Evaluate(
Isolate* isolate, Handle<SharedFunctionInfo> outer_info,
Handle<Context> context, Handle<Object> receiver, Handle<String> source,
bool throw_on_side_effect) {
Handle<JSFunction> eval_fun;
ASSIGN_RETURN_ON_EXCEPTION(
isolate, eval_fun,
Compiler::GetFunctionFromEval(source, outer_info, context, SLOPPY,
NO_PARSE_RESTRICTION, kNoSourcePosition,
kNoSourcePosition, kNoSourcePosition),
Object);
Handle<Object> result;
{
NoSideEffectScope no_side_effect(isolate, throw_on_side_effect);
ASSIGN_RETURN_ON_EXCEPTION(
isolate, result, Execution::Call(isolate, eval_fun, receiver, 0, NULL),
Object);
}
// Skip the global proxy as it has no properties and always delegates to the
// real global object.
if (result->IsJSGlobalProxy()) {
PrototypeIterator iter(isolate, Handle<JSGlobalProxy>::cast(result));
// TODO(verwaest): This will crash when the global proxy is detached.
result = PrototypeIterator::GetCurrent<JSObject>(iter);
}
return result;
}
DebugEvaluate::ContextBuilder::ContextBuilder(Isolate* isolate,
JavaScriptFrame* frame,
int inlined_jsframe_index)
: isolate_(isolate),
frame_(frame),
inlined_jsframe_index_(inlined_jsframe_index) {
FrameInspector frame_inspector(frame, inlined_jsframe_index, isolate);
Handle<JSFunction> local_function = frame_inspector.GetFunction();
Handle<Context> outer_context(local_function->context());
evaluation_context_ = outer_context;
outer_info_ = handle(local_function->shared());
Factory* factory = isolate->factory();
// To evaluate as if we were running eval at the point of the debug break,
// we reconstruct the context chain as follows:
// - To make stack-allocated variables visible, we materialize them and
// use a debug-evaluate context to wrap both the materialized object and
// the original context.
// - We use the original context chain from the function context to the
// native context.
// - Between the function scope and the native context, we only resolve
// variable names that the current function already uses. Only for these
// names we can be sure that they will be correctly resolved. For the
// rest, we only resolve to with, script, and native contexts. We use a
// whitelist to implement that.
// Context::Lookup has special handling for debug-evaluate contexts:
// - Look up in the materialized stack variables.
// - Look up in the original context.
// - Check the whitelist to find out whether to skip contexts during lookup.
const ScopeIterator::Option option = ScopeIterator::COLLECT_NON_LOCALS;
for (ScopeIterator it(isolate, &frame_inspector, option); !it.Done();
it.Next()) {
ScopeIterator::ScopeType scope_type = it.Type();
if (scope_type == ScopeIterator::ScopeTypeLocal) {
DCHECK_EQ(FUNCTION_SCOPE, it.CurrentScopeInfo()->scope_type());
Handle<JSObject> materialized = factory->NewJSObjectWithNullProto();
Handle<Context> local_context =
it.HasContext() ? it.CurrentContext() : outer_context;
Handle<StringSet> non_locals = it.GetNonLocals();
MaterializeReceiver(materialized, local_context, local_function,
non_locals);
frame_inspector.MaterializeStackLocals(materialized, local_function);
MaterializeArgumentsObject(materialized, local_function);
ContextChainElement context_chain_element;
context_chain_element.scope_info = it.CurrentScopeInfo();
context_chain_element.materialized_object = materialized;
// Non-locals that are already being referenced by the current function
// are guaranteed to be correctly resolved.
context_chain_element.whitelist = non_locals;
if (it.HasContext()) {
context_chain_element.wrapped_context = it.CurrentContext();
}
context_chain_.Add(context_chain_element);
evaluation_context_ = outer_context;
break;
} else if (scope_type == ScopeIterator::ScopeTypeCatch ||
scope_type == ScopeIterator::ScopeTypeWith ||
scope_type == ScopeIterator::ScopeTypeModule) {
ContextChainElement context_chain_element;
Handle<Context> current_context = it.CurrentContext();
if (!current_context->IsDebugEvaluateContext()) {
context_chain_element.wrapped_context = current_context;
}
context_chain_.Add(context_chain_element);
} else if (scope_type == ScopeIterator::ScopeTypeBlock ||
scope_type == ScopeIterator::ScopeTypeEval) {
Handle<JSObject> materialized = factory->NewJSObjectWithNullProto();
frame_inspector.MaterializeStackLocals(materialized,
it.CurrentScopeInfo());
ContextChainElement context_chain_element;
context_chain_element.scope_info = it.CurrentScopeInfo();
context_chain_element.materialized_object = materialized;
if (it.HasContext()) {
context_chain_element.wrapped_context = it.CurrentContext();
}
context_chain_.Add(context_chain_element);
} else {
break;
}
}
for (int i = context_chain_.length() - 1; i >= 0; i--) {
Handle<ScopeInfo> scope_info(ScopeInfo::CreateForWithScope(
isolate, evaluation_context_->IsNativeContext()
? Handle<ScopeInfo>::null()
: Handle<ScopeInfo>(evaluation_context_->scope_info())));
scope_info->SetIsDebugEvaluateScope();
evaluation_context_ = factory->NewDebugEvaluateContext(
evaluation_context_, scope_info, context_chain_[i].materialized_object,
context_chain_[i].wrapped_context, context_chain_[i].whitelist);
}
}
void DebugEvaluate::ContextBuilder::UpdateValues() {
for (int i = 0; i < context_chain_.length(); i++) {
ContextChainElement element = context_chain_[i];
if (!element.materialized_object.is_null()) {
// Write back potential changes to materialized stack locals to the stack.
FrameInspector(frame_, inlined_jsframe_index_, isolate_)
.UpdateStackLocalsFromMaterializedObject(element.materialized_object,
element.scope_info);
}
}
}
void DebugEvaluate::ContextBuilder::MaterializeArgumentsObject(
Handle<JSObject> target, Handle<JSFunction> function) {
// Do not materialize the arguments object for eval or top-level code.
// Skip if "arguments" is already taken.
if (function->shared()->is_toplevel()) return;
Maybe<bool> maybe = JSReceiver::HasOwnProperty(
target, isolate_->factory()->arguments_string());
DCHECK(maybe.IsJust());
if (maybe.FromJust()) return;
// FunctionGetArguments can't throw an exception.
Handle<JSObject> arguments = Accessors::FunctionGetArguments(function);
Handle<String> arguments_str = isolate_->factory()->arguments_string();
JSObject::SetOwnPropertyIgnoreAttributes(target, arguments_str, arguments,
NONE)
.Check();
}
void DebugEvaluate::ContextBuilder::MaterializeReceiver(
Handle<JSObject> target, Handle<Context> local_context,
Handle<JSFunction> local_function, Handle<StringSet> non_locals) {
Handle<Object> recv = isolate_->factory()->undefined_value();
Handle<String> name = isolate_->factory()->this_string();
if (non_locals->Has(name)) {
// 'this' is allocated in an outer context and is is already being
// referenced by the current function, so it can be correctly resolved.
return;
} else if (local_function->shared()->scope_info()->HasReceiver() &&
!frame_->receiver()->IsTheHole(isolate_)) {
recv = handle(frame_->receiver(), isolate_);
}
JSObject::SetOwnPropertyIgnoreAttributes(target, name, recv, NONE).Check();
}
namespace {
bool IntrinsicHasNoSideEffect(Runtime::FunctionId id) {
// Use macro to include both inlined and non-inlined version of an intrinsic.
#define INTRINSIC_WHITELIST(V) \
/* Conversions */ \
V(ToInteger) \
V(ToObject) \
V(ToString) \
V(ToLength) \
V(ToNumber) \
/* Type checks */ \
V(IsJSReceiver) \
V(IsSmi) \
V(IsArray) \
V(IsFunction) \
V(IsDate) \
V(IsJSProxy) \
V(IsJSMap) \
V(IsJSSet) \
V(IsJSWeakMap) \
V(IsJSWeakSet) \
V(IsRegExp) \
V(IsTypedArray) \
V(ClassOf) \
/* Loads */ \
V(LoadLookupSlotForCall) \
/* Arrays */ \
V(ArraySpeciesConstructor) \
V(NormalizeElements) \
V(GetArrayKeys) \
V(HasComplexElements) \
V(EstimateNumberOfElements) \
/* Errors */ \
V(ReThrow) \
V(ThrowReferenceError) \
V(ThrowSymbolIteratorInvalid) \
V(ThrowIteratorResultNotAnObject) \
V(NewTypeError) \
V(ThrowInvalidStringLength) \
/* Strings */ \
V(StringCharCodeAt) \
V(StringIndexOf) \
V(StringIncludes) \
V(StringReplaceOneCharWithString) \
V(SubString) \
V(RegExpInternalReplace) \
/* Literals */ \
V(CreateArrayLiteral) \
V(CreateObjectLiteral) \
V(CreateRegExpLiteral) \
/* Collections */ \
V(GenericHash) \
/* Called from builtins */ \
V(StringParseFloat) \
V(StringParseInt) \
V(StringCharCodeAtRT) \
V(StringIndexOfUnchecked) \
V(StringEqual) \
V(SymbolDescriptiveString) \
V(GenerateRandomNumbers) \
V(GlobalPrint) \
V(AllocateInNewSpace) \
V(AllocateInTargetSpace) \
V(ObjectCreate) \
V(ObjectHasOwnProperty) \
V(ArrayIndexOf) \
V(ArrayIncludes_Slow) \
V(ArrayIsArray) \
V(ThrowTypeError) \
V(ThrowCalledOnNullOrUndefined) \
V(ThrowIncompatibleMethodReceiver) \
V(ThrowInvalidHint) \
V(ThrowNotDateError) \
/* Misc. */ \
V(ForInPrepare) \
V(Call) \
V(MaxSmi) \
V(NewObject) \
V(FinalizeInstanceSize) \
V(HasInPrototypeChain) \
V(StringMaxLength)
#define CASE(Name) \
case Runtime::k##Name: \
case Runtime::kInline##Name:
switch (id) {
INTRINSIC_WHITELIST(CASE)
return true;
default:
if (FLAG_trace_side_effect_free_debug_evaluate) {
PrintF("[debug-evaluate] intrinsic %s may cause side effect.\n",
Runtime::FunctionForId(id)->name);
}
return false;
}
#undef CASE
#undef INTRINSIC_WHITELIST
}
bool BytecodeHasNoSideEffect(interpreter::Bytecode bytecode) {
typedef interpreter::Bytecode Bytecode;
typedef interpreter::Bytecodes Bytecodes;
if (Bytecodes::IsWithoutExternalSideEffects(bytecode)) return true;
if (Bytecodes::IsCallOrConstruct(bytecode)) return true;
if (Bytecodes::IsJumpIfToBoolean(bytecode)) return true;
if (Bytecodes::IsPrefixScalingBytecode(bytecode)) return true;
switch (bytecode) {
// Whitelist for bytecodes.
// Loads.
case Bytecode::kLdaLookupSlot:
case Bytecode::kLdaGlobal:
case Bytecode::kLdaNamedProperty:
case Bytecode::kLdaKeyedProperty:
// Arithmetics.
case Bytecode::kAdd:
case Bytecode::kAddSmi:
case Bytecode::kSub:
case Bytecode::kSubSmi:
case Bytecode::kMul:
case Bytecode::kMulSmi:
case Bytecode::kDiv:
case Bytecode::kDivSmi:
case Bytecode::kMod:
case Bytecode::kModSmi:
case Bytecode::kBitwiseAnd:
case Bytecode::kBitwiseAndSmi:
case Bytecode::kBitwiseOr:
case Bytecode::kBitwiseOrSmi:
case Bytecode::kBitwiseXor:
case Bytecode::kBitwiseXorSmi:
case Bytecode::kShiftLeft:
case Bytecode::kShiftLeftSmi:
case Bytecode::kShiftRight:
case Bytecode::kShiftRightSmi:
case Bytecode::kShiftRightLogical:
case Bytecode::kShiftRightLogicalSmi:
case Bytecode::kInc:
case Bytecode::kDec:
case Bytecode::kLogicalNot:
case Bytecode::kToBooleanLogicalNot:
case Bytecode::kTypeOf:
// Contexts.
case Bytecode::kCreateBlockContext:
case Bytecode::kCreateCatchContext:
case Bytecode::kCreateFunctionContext:
case Bytecode::kCreateEvalContext:
case Bytecode::kCreateWithContext:
// Literals.
case Bytecode::kCreateArrayLiteral:
case Bytecode::kCreateEmptyArrayLiteral:
case Bytecode::kCreateObjectLiteral:
case Bytecode::kCreateEmptyObjectLiteral:
case Bytecode::kCreateRegExpLiteral:
// Allocations.
case Bytecode::kCreateClosure:
case Bytecode::kCreateUnmappedArguments:
case Bytecode::kCreateRestParameter:
// Comparisons.
case Bytecode::kTestEqual:
case Bytecode::kTestEqualStrict:
case Bytecode::kTestLessThan:
case Bytecode::kTestLessThanOrEqual:
case Bytecode::kTestGreaterThan:
case Bytecode::kTestGreaterThanOrEqual:
case Bytecode::kTestInstanceOf:
case Bytecode::kTestIn:
case Bytecode::kTestEqualStrictNoFeedback:
case Bytecode::kTestUndetectable:
case Bytecode::kTestTypeOf:
case Bytecode::kTestUndefined:
case Bytecode::kTestNull:
// Conversions.
case Bytecode::kToObject:
case Bytecode::kToNumber:
case Bytecode::kToName:
// Misc.
case Bytecode::kForInPrepare:
case Bytecode::kForInContinue:
case Bytecode::kForInNext:
case Bytecode::kForInStep:
case Bytecode::kThrow:
case Bytecode::kReThrow:
case Bytecode::kThrowReferenceErrorIfHole:
case Bytecode::kThrowSuperNotCalledIfHole:
case Bytecode::kThrowSuperAlreadyCalledIfNotHole:
case Bytecode::kIllegal:
case Bytecode::kCallJSRuntime:
case Bytecode::kStackCheck:
case Bytecode::kReturn:
case Bytecode::kSetPendingMessage:
return true;
default:
if (FLAG_trace_side_effect_free_debug_evaluate) {
PrintF("[debug-evaluate] bytecode %s may cause side effect.\n",
Bytecodes::ToString(bytecode));
}
return false;
}
}
bool BuiltinHasNoSideEffect(Builtins::Name id) {
switch (id) {
// Whitelist for builtins.
// Object builtins.
case Builtins::kObjectCreate:
case Builtins::kObjectEntries:
case Builtins::kObjectGetOwnPropertyDescriptor:
case Builtins::kObjectGetOwnPropertyDescriptors:
case Builtins::kObjectGetOwnPropertyNames:
case Builtins::kObjectGetOwnPropertySymbols:
case Builtins::kObjectGetPrototypeOf:
case Builtins::kObjectIs:
case Builtins::kObjectIsExtensible:
case Builtins::kObjectIsFrozen:
case Builtins::kObjectIsSealed:
case Builtins::kObjectPrototypeValueOf:
case Builtins::kObjectValues:
case Builtins::kObjectHasOwnProperty:
case Builtins::kObjectPrototypeIsPrototypeOf:
case Builtins::kObjectPrototypePropertyIsEnumerable:
case Builtins::kObjectPrototypeToString:
// Array builtins.
case Builtins::kArrayConstructor:
case Builtins::kArrayIndexOf:
case Builtins::kArrayPrototypeValues:
case Builtins::kArrayIncludes:
case Builtins::kArrayPrototypeEntries:
case Builtins::kArrayPrototypeKeys:
case Builtins::kArrayForEach:
case Builtins::kArrayEvery:
case Builtins::kArraySome:
case Builtins::kArrayReduce:
case Builtins::kArrayReduceRight:
// Boolean bulitins.
case Builtins::kBooleanConstructor:
case Builtins::kBooleanPrototypeToString:
case Builtins::kBooleanPrototypeValueOf:
// Date builtins.
case Builtins::kDateConstructor:
case Builtins::kDateNow:
case Builtins::kDateParse:
case Builtins::kDatePrototypeGetDate:
case Builtins::kDatePrototypeGetDay:
case Builtins::kDatePrototypeGetFullYear:
case Builtins::kDatePrototypeGetHours:
case Builtins::kDatePrototypeGetMilliseconds:
case Builtins::kDatePrototypeGetMinutes:
case Builtins::kDatePrototypeGetMonth:
case Builtins::kDatePrototypeGetSeconds:
case Builtins::kDatePrototypeGetTime:
case Builtins::kDatePrototypeGetTimezoneOffset:
case Builtins::kDatePrototypeGetUTCDate:
case Builtins::kDatePrototypeGetUTCDay:
case Builtins::kDatePrototypeGetUTCFullYear:
case Builtins::kDatePrototypeGetUTCHours:
case Builtins::kDatePrototypeGetUTCMilliseconds:
case Builtins::kDatePrototypeGetUTCMinutes:
case Builtins::kDatePrototypeGetUTCMonth:
case Builtins::kDatePrototypeGetUTCSeconds:
case Builtins::kDatePrototypeGetYear:
case Builtins::kDatePrototypeToDateString:
case Builtins::kDatePrototypeToISOString:
case Builtins::kDatePrototypeToUTCString:
case Builtins::kDatePrototypeToString:
case Builtins::kDatePrototypeToTimeString:
case Builtins::kDatePrototypeToJson:
case Builtins::kDatePrototypeToPrimitive:
case Builtins::kDatePrototypeValueOf:
// Map builtins.
case Builtins::kMapConstructor:
case Builtins::kMapGet:
case Builtins::kMapPrototypeEntries:
case Builtins::kMapPrototypeGetSize:
case Builtins::kMapPrototypeKeys:
case Builtins::kMapPrototypeValues:
// Math builtins.
case Builtins::kMathAbs:
case Builtins::kMathAcos:
case Builtins::kMathAcosh:
case Builtins::kMathAsin:
case Builtins::kMathAsinh:
case Builtins::kMathAtan:
case Builtins::kMathAtanh:
case Builtins::kMathAtan2:
case Builtins::kMathCeil:
case Builtins::kMathCbrt:
case Builtins::kMathExpm1:
case Builtins::kMathClz32:
case Builtins::kMathCos:
case Builtins::kMathCosh:
case Builtins::kMathExp:
case Builtins::kMathFloor:
case Builtins::kMathFround:
case Builtins::kMathHypot:
case Builtins::kMathImul:
case Builtins::kMathLog:
case Builtins::kMathLog1p:
case Builtins::kMathLog2:
case Builtins::kMathLog10:
case Builtins::kMathMax:
case Builtins::kMathMin:
case Builtins::kMathPow:
case Builtins::kMathRandom:
case Builtins::kMathRound:
case Builtins::kMathSign:
case Builtins::kMathSin:
case Builtins::kMathSinh:
case Builtins::kMathSqrt:
case Builtins::kMathTan:
case Builtins::kMathTanh:
case Builtins::kMathTrunc:
// Number builtins.
case Builtins::kNumberConstructor:
case Builtins::kNumberIsFinite:
case Builtins::kNumberIsInteger:
case Builtins::kNumberIsNaN:
case Builtins::kNumberIsSafeInteger:
case Builtins::kNumberParseFloat:
case Builtins::kNumberParseInt:
case Builtins::kNumberPrototypeToExponential:
case Builtins::kNumberPrototypeToFixed:
case Builtins::kNumberPrototypeToPrecision:
case Builtins::kNumberPrototypeToString:
case Builtins::kNumberPrototypeValueOf:
// Set builtins.
case Builtins::kSetConstructor:
case Builtins::kSetPrototypeEntries:
case Builtins::kSetPrototypeGetSize:
case Builtins::kSetPrototypeValues:
// String builtins. Strings are immutable.
case Builtins::kStringFromCharCode:
case Builtins::kStringFromCodePoint:
case Builtins::kStringConstructor:
case Builtins::kStringPrototypeCharAt:
case Builtins::kStringPrototypeCharCodeAt:
case Builtins::kStringPrototypeCodePointAt:
case Builtins::kStringPrototypeConcat:
case Builtins::kStringPrototypeEndsWith:
case Builtins::kStringPrototypeIncludes:
case Builtins::kStringPrototypeIndexOf:
case Builtins::kStringPrototypeLastIndexOf:
case Builtins::kStringPrototypeSlice:
case Builtins::kStringPrototypeStartsWith:
case Builtins::kStringPrototypeSubstr:
case Builtins::kStringPrototypeSubstring:
case Builtins::kStringPrototypeToString:
#ifndef V8_INTL_SUPPORT
case Builtins::kStringPrototypeToLowerCase:
case Builtins::kStringPrototypeToUpperCase:
#endif
case Builtins::kStringPrototypeTrim:
case Builtins::kStringPrototypeTrimLeft:
case Builtins::kStringPrototypeTrimRight:
case Builtins::kStringPrototypeValueOf:
// Symbol builtins.
case Builtins::kSymbolConstructor:
case Builtins::kSymbolKeyFor:
case Builtins::kSymbolPrototypeToString:
case Builtins::kSymbolPrototypeValueOf:
case Builtins::kSymbolPrototypeToPrimitive:
// JSON builtins.
case Builtins::kJsonParse:
case Builtins::kJsonStringify:
// Global function builtins.
case Builtins::kGlobalDecodeURI:
case Builtins::kGlobalDecodeURIComponent:
case Builtins::kGlobalEncodeURI:
case Builtins::kGlobalEncodeURIComponent:
case Builtins::kGlobalEscape:
case Builtins::kGlobalUnescape:
case Builtins::kGlobalIsFinite:
case Builtins::kGlobalIsNaN:
// Error builtins.
case Builtins::kMakeError:
case Builtins::kMakeTypeError:
case Builtins::kMakeSyntaxError:
case Builtins::kMakeRangeError:
case Builtins::kMakeURIError:
return true;
default:
if (FLAG_trace_side_effect_free_debug_evaluate) {
PrintF("[debug-evaluate] built-in %s may cause side effect.\n",
Builtins::name(id));
}
return false;
}
}
static const Address accessors_with_no_side_effect[] = {
// Whitelist for accessors.
FUNCTION_ADDR(Accessors::StringLengthGetter),
FUNCTION_ADDR(Accessors::ArrayLengthGetter),
FUNCTION_ADDR(Accessors::FunctionLengthGetter),
FUNCTION_ADDR(Accessors::FunctionNameGetter),
FUNCTION_ADDR(Accessors::BoundFunctionLengthGetter),
FUNCTION_ADDR(Accessors::BoundFunctionNameGetter),
};
} // anonymous namespace
// static
bool DebugEvaluate::FunctionHasNoSideEffect(Handle<SharedFunctionInfo> info) {
if (FLAG_trace_side_effect_free_debug_evaluate) {
PrintF("[debug-evaluate] Checking function %s for side effect.\n",
info->DebugName()->ToCString().get());
}
DCHECK(info->is_compiled());
if (info->HasBytecodeArray()) {
// Check bytecodes against whitelist.
Handle<BytecodeArray> bytecode_array(info->bytecode_array());
if (FLAG_trace_side_effect_free_debug_evaluate) bytecode_array->Print();
for (interpreter::BytecodeArrayIterator it(bytecode_array); !it.done();
it.Advance()) {
interpreter::Bytecode bytecode = it.current_bytecode();
if (interpreter::Bytecodes::IsCallRuntime(bytecode)) {
Runtime::FunctionId id =
(bytecode == interpreter::Bytecode::kInvokeIntrinsic)
? it.GetIntrinsicIdOperand(0)
: it.GetRuntimeIdOperand(0);
if (IntrinsicHasNoSideEffect(id)) continue;
return false;
}
if (BytecodeHasNoSideEffect(bytecode)) continue;
// Did not match whitelist.
return false;
}
return true;
} else {
// Check built-ins against whitelist.
int builtin_index = info->code()->builtin_index();
if (builtin_index >= 0 && builtin_index < Builtins::builtin_count &&
BuiltinHasNoSideEffect(static_cast<Builtins::Name>(builtin_index))) {
#ifdef DEBUG
// TODO(yangguo): Check builtin-to-builtin calls too.
int mode = RelocInfo::ModeMask(RelocInfo::EXTERNAL_REFERENCE);
bool failed = false;
for (RelocIterator it(info->code(), mode); !it.done(); it.next()) {
RelocInfo* rinfo = it.rinfo();
Address address = rinfo->target_external_reference();
const Runtime::Function* function = Runtime::FunctionForEntry(address);
if (function == nullptr) continue;
if (!IntrinsicHasNoSideEffect(function->function_id)) {
PrintF("Whitelisted builtin %s calls non-whitelisted intrinsic %s\n",
Builtins::name(builtin_index), function->name);
failed = true;
}
CHECK(!failed);
}
#endif // DEBUG
return true;
}
}
return false;
}
// static
bool DebugEvaluate::CallbackHasNoSideEffect(Address function_addr) {
for (size_t i = 0; i < arraysize(accessors_with_no_side_effect); i++) {
if (function_addr == accessors_with_no_side_effect[i]) return true;
}
if (FLAG_trace_side_effect_free_debug_evaluate) {
PrintF("[debug-evaluate] API Callback at %p may cause side effect.\n",
reinterpret_cast<void*>(function_addr));
}
return false;
}
} // namespace internal
} // namespace v8
| [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
c1a725c3dbf4fc8a5a98860de914831ae62a4990 | d0f33698d69e04349debd131cbd958eecb8ca028 | /ListeNom.h | a77d0f8919338b33168ba15582c803057abc8c09 | [] | no_license | RedDTG/Monopoly-Auberge | f8e8b87ce371800f8ab24b85205440f1458eafb0 | 50b892ee47b353689ba95d1b03d906f783a91841 | refs/heads/master | 2022-04-26T07:09:30.420095 | 2020-04-09T09:12:32 | 2020-04-09T09:12:32 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 238 | h | #pragma once
#include <vector>
#include <iostream>
#include <string>
using namespace std;
class ListeNom
{
private:
vector<string> liste;
public:
ListeNom();
vector<string> getListe();
void delNom(int i);
string getNom(int i);
};
| [
"a.deyris85@gmail.com"
] | a.deyris85@gmail.com |
e2193980aefbfcc86a4a561bea1617b585928de0 | a7c731d580461b55bdfdb7bbb5f2e5a06ac4a777 | /penguinPals/Classes/Native/Bulk_System_0.cpp | 5fc0ae70f7eecd75af29a880e33080a0b9d47177 | [] | no_license | hamedrabah/Penguin-Pals | 246cb67754f3cd70631afbda4a13f7e0bc06502c | a6b578583fd1dca8f078153c2f7a319eb6c0ccf7 | refs/heads/master | 2020-04-16T06:00:20.832663 | 2019-02-11T20:35:20 | 2019-02-11T20:35:20 | 165,329,816 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,798,275 | 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 "il2cpp-class-internals.h"
#include "codegen/il2cpp-codegen.h"
#include "il2cpp-object-internals.h"
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);
}
};
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, typename T1, typename T2, typename T3>
struct VirtFuncInvoker3
{
typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
struct 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, 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);
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4>
struct VirtFuncInvoker4
{
typedef R (*Func)(void*, T1, T2, T3, T4, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, 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 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, typename T2, typename T3, typename T4, typename T5>
struct VirtFuncInvoker5
{
typedef R (*Func)(void*, T1, T2, T3, T4, T5, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, invokeData.method);
}
};
template <typename T1, typename T2, typename T3, typename T4>
struct VirtActionInvoker4
{
typedef void (*Action)(void*, T1, T2, T3, T4, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5, typename T6>
struct VirtFuncInvoker6
{
typedef R (*Func)(void*, T1, T2, T3, T4, T5, T6, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, p6, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7>
struct VirtFuncInvoker7
{
typedef R (*Func)(void*, T1, T2, T3, T4, T5, T6, T7, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6, T7 p7)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, p6, p7, invokeData.method);
}
};
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9>
struct VirtActionInvoker9
{
typedef void (*Action)(void*, T1, T2, T3, T4, T5, T6, T7, T8, T9, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6, T7 p7, T8 p8, T9 p9)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, p6, p7, p8, p9, invokeData.method);
}
};
template <typename R>
struct GenericVirtFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, 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>
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 R, typename T1, typename T2>
struct GenericVirtFuncInvoker2
{
typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5>
struct GenericVirtFuncInvoker5
{
typedef R (*Func)(void*, T1, T2, T3, T4, T5, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, 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);
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4>
struct GenericVirtFuncInvoker4
{
typedef R (*Func)(void*, T1, T2, T3, T4, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method);
}
};
template <typename T1, typename T2, typename T3, typename T4>
struct GenericVirtActionInvoker4
{
typedef void (*Action)(void*, T1, T2, T3, T4, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method);
}
};
template <typename R, typename T1>
struct GenericVirtFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3>
struct GenericVirtFuncInvoker3
{
typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5, typename T6>
struct GenericVirtFuncInvoker6
{
typedef R (*Func)(void*, T1, T2, T3, T4, T5, T6, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, p6, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7>
struct GenericVirtFuncInvoker7
{
typedef R (*Func)(void*, T1, T2, T3, T4, T5, T6, T7, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6, T7 p7)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, p6, p7, invokeData.method);
}
};
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9>
struct GenericVirtActionInvoker9
{
typedef void (*Action)(void*, T1, T2, T3, T4, T5, T6, T7, T8, T9, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6, T7 p7, T8 p8, T9 p9)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, p6, p7, p8, p9, 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);
}
};
struct InterfaceActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename R>
struct InterfaceFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
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);
}
};
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 R, typename T1, typename T2>
struct InterfaceFuncInvoker2
{
typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5>
struct InterfaceFuncInvoker5
{
typedef R (*Func)(void*, T1, T2, T3, T4, T5, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, 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 R, typename T1, typename T2, typename T3, typename T4>
struct InterfaceFuncInvoker4
{
typedef R (*Func)(void*, T1, T2, T3, T4, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method);
}
};
template <typename T1, typename T2, typename T3, typename T4>
struct InterfaceActionInvoker4
{
typedef void (*Action)(void*, T1, T2, T3, T4, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method);
}
};
template <typename R, typename T1>
struct InterfaceFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3>
struct InterfaceFuncInvoker3
{
typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*);
static inline R 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);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5, typename T6>
struct InterfaceFuncInvoker6
{
typedef R (*Func)(void*, T1, T2, T3, T4, T5, T6, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, p6, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7>
struct InterfaceFuncInvoker7
{
typedef R (*Func)(void*, T1, T2, T3, T4, T5, T6, T7, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6, T7 p7)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, p6, p7, invokeData.method);
}
};
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9>
struct InterfaceActionInvoker9
{
typedef void (*Action)(void*, T1, T2, T3, T4, T5, T6, T7, T8, T9, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6, T7 p7, T8 p8, T9 p9)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, p6, p7, p8, p9, invokeData.method);
}
};
template <typename R>
struct GenericInterfaceFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, 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>
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 R, typename T1, typename T2>
struct GenericInterfaceFuncInvoker2
{
typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5>
struct GenericInterfaceFuncInvoker5
{
typedef R (*Func)(void*, T1, T2, T3, T4, T5, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, 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);
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4>
struct GenericInterfaceFuncInvoker4
{
typedef R (*Func)(void*, T1, T2, T3, T4, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method);
}
};
template <typename T1, typename T2, typename T3, typename T4>
struct GenericInterfaceActionInvoker4
{
typedef void (*Action)(void*, T1, T2, T3, T4, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method);
}
};
template <typename R, typename T1>
struct GenericInterfaceFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3>
struct GenericInterfaceFuncInvoker3
{
typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5, typename T6>
struct GenericInterfaceFuncInvoker6
{
typedef R (*Func)(void*, T1, T2, T3, T4, T5, T6, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, p6, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7>
struct GenericInterfaceFuncInvoker7
{
typedef R (*Func)(void*, T1, T2, T3, T4, T5, T6, T7, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6, T7 p7)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, p6, p7, invokeData.method);
}
};
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9>
struct GenericInterfaceActionInvoker9
{
typedef void (*Action)(void*, T1, T2, T3, T4, T5, T6, T7, T8, T9, const RuntimeMethod*);
static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6, T7 p7, T8 p8, T9 p9)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
((Action)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, p6, p7, p8, p9, 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);
}
};
// Microsoft.Win32.SafeHandles.SafeWaitHandle
struct SafeWaitHandle_t51DB35FF382E636FF3B868D87816733894D46CF2;
// Mono.Net.Security.AsyncProtocolRequest
struct AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027;
// Mono.Net.Security.AsyncProtocolResult
struct AsyncProtocolResult_t957DDFF1A4D0CC662F930F5C9E09E4FA1FBBFBC0;
// Mono.Net.Security.AsyncReadOrWriteRequest
struct AsyncReadOrWriteRequest_t991B91E93F3980A5879ABAC6738F9BAC770E3B8F;
// Mono.Net.Security.AsyncReadRequest
struct AsyncReadRequest_t10B0459470C14DC065B5AD60AF378AB78CD138C1;
// Mono.Net.Security.AsyncWriteRequest
struct AsyncWriteRequest_tFE4740D02401F295910B4006A8390590D5E2C27B;
// Mono.Net.Security.BufferOffsetSize
struct BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9;
// Mono.Net.Security.BufferOffsetSize2
struct BufferOffsetSize2_t2E9889F6FB134EF92FC0B930BF630243553F4E00;
// Mono.Net.Security.MobileAuthenticatedStream
struct MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045;
// Mono.Net.Security.MobileAuthenticatedStream/<>c__DisplayClass66_0
struct U3CU3Ec__DisplayClass66_0_t57BA0EF5D295E67BF00C608A8D3AC8A83A7606CC;
// Mono.Net.Security.MobileTlsContext
struct MobileTlsContext_tFC684CF3275DF6B898319625C4F3A4D537B8A127;
// Mono.Security.Interface.ICertificateValidator2
struct ICertificateValidator2_t59AEA784559648561EFC807C805B3F3AD216AB18;
// Mono.Security.Interface.IMonoSslStream
struct IMonoSslStream_t3476E6615542EBD74C52117F2B3BE178525AA38F;
// Mono.Security.Interface.MonoTlsProvider
struct MonoTlsProvider_tDCD056C5BBBE59ED6BAF63F25952B406C1143C27;
// Mono.Security.Interface.MonoTlsSettings
struct MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF;
// Mono.Unity.UnityTls/unitytls_interface_struct
struct unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_errorstate_create_t
struct unitytls_errorstate_create_t_t104BADBBE1265BD1A3F84C153EB7A67CDDBF35A9;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_errorstate_raise_error_t
struct unitytls_errorstate_raise_error_t_tC441A37D4A6F1BAC1AFCA0108D4F7570EFF9E0D1;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_key_free_t
struct unitytls_key_free_t_tCC7AD95D3B758BB99785645E65EDCD65A1D243AB;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_key_get_ref_t
struct unitytls_key_get_ref_t_t2F4EF4CD2F6AFC4F2D166953E834C6F0A13382A7;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_key_parse_der_t
struct unitytls_key_parse_der_t_t2ABD1C146C8B9405F6E5A78CD59A779EA607741B;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_key_parse_pem_t
struct unitytls_key_parse_pem_t_tB4BCEBA4194442C8C85FA19E80B808D0EDA462AB;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_random_generate_bytes_t
struct unitytls_random_generate_bytes_t_t494B8599A6D4247BB0C8AB7341DDC73BE42623F7;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_create_client_t
struct unitytls_tlsctx_create_client_t_tD9DFBDB5559983F0E11A67FA92E0F7182114C8F2;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_create_server_t
struct unitytls_tlsctx_create_server_t_t6E7812D40DDD91958E3CFBB92B5F5748D477E19D;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_free_t
struct unitytls_tlsctx_free_t_tB27A3B6F9D1B784ABE082849EAB6B81F51FAC8E2;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_get_ciphersuite_t
struct unitytls_tlsctx_get_ciphersuite_t_t94A91CB42A2EBB2CC598EF3E278770AFD80696A0;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_get_protocol_t
struct unitytls_tlsctx_get_protocol_t_tB29092875D3CBD25E4461BFD165B5373FA54DB14;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_notify_close_t
struct unitytls_tlsctx_notify_close_t_t2FC4C08BACF1AEA509ABCAF3B22475E196E74A0D;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_process_handshake_t
struct unitytls_tlsctx_process_handshake_t_tC8AAF317CBE4CA216F22BF031ECF89315B963C9D;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_read_t
struct unitytls_tlsctx_read_t_tA8D1209D5F488E02F826EE2362F5AA61C8FF2EE2;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_server_require_client_authentication_t
struct unitytls_tlsctx_server_require_client_authentication_t_t77B3CAFF25690A45405E3C957E40CC4FF83B49C6;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_set_certificate_callback_t
struct unitytls_tlsctx_set_certificate_callback_t_tC4864FE0F6A3398A572F2511AA64C72126640937;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_set_supported_ciphersuites_t
struct unitytls_tlsctx_set_supported_ciphersuites_t_t6914054EA0F7A59C8A4ED4B9CDD5AF143F7D8BFE;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_set_trace_callback_t
struct unitytls_tlsctx_set_trace_callback_t_tA11F424F68D297B6FD2B2EA26C6764F80146662A;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_set_x509verify_callback_t
struct unitytls_tlsctx_set_x509verify_callback_t_t34EEB7BA38CA2C86F847416785ADB22BC4A04F4B;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_write_t
struct unitytls_tlsctx_write_t_t0B4A49BBA592FE4EC0630B490463AE116AF07C9C;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509_export_der_t
struct unitytls_x509_export_der_t_tB0D0A02DE7E75757AFCA780298BF95467BF82856;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_append_der_t
struct unitytls_x509list_append_der_t_tDA1C93A382058FB563F8772B119D5B598DC37A5C;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_append_t
struct unitytls_x509list_append_t_tAB1C185C77DFD6BD96DF7909370AA1FAD6BB90AF;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_create_t
struct unitytls_x509list_create_t_tC040C2CF47D5426B7F6B1D6A2751507DC681CFF3;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_free_t
struct unitytls_x509list_free_t_tE3FC523507F07BD9901D84E9F6968CD8A583FF09;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_get_ref_t
struct unitytls_x509list_get_ref_t_t1FAB0CD82E536E0C9EB5255B145FC5AF434B3986;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_get_x509_t
struct unitytls_x509list_get_x509_t_t028BB06EEB95E8F62511F2301B90D8181F4FFDB5;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509verify_default_ca_t
struct unitytls_x509verify_default_ca_t_t4BACB6B49AA85C025AF9B18B3F30F63C9881DE2D;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509verify_explicit_ca_t
struct unitytls_x509verify_explicit_ca_t_t6C8BE964C5EE9B24D3734F028EFCD83F5893D2E6;
// Mono.Unity.UnityTls/unitytls_tlsctx_callbacks
struct unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2;
// Mono.Unity.UnityTls/unitytls_tlsctx_certificate_callback
struct unitytls_tlsctx_certificate_callback_t55149A988CA1CE32772ACAC0031DAF4DC0F6D740;
// Mono.Unity.UnityTls/unitytls_tlsctx_read_callback
struct unitytls_tlsctx_read_callback_tD85E7923018681355C1D851137CEC527F04093F5;
// Mono.Unity.UnityTls/unitytls_tlsctx_trace_callback
struct unitytls_tlsctx_trace_callback_t2C8F0895EF17ECAC042835D68A6BFDB9CBC7F2AA;
// Mono.Unity.UnityTls/unitytls_tlsctx_write_callback
struct unitytls_tlsctx_write_callback_tBDF40F27E011F577C3E834B14788491861F870D6;
// Mono.Unity.UnityTls/unitytls_tlsctx_x509verify_callback
struct unitytls_tlsctx_x509verify_callback_t5FCF0307C4AB263BC611FE396EC4D2B9CF93528A;
// Mono.Unity.UnityTls/unitytls_x509verify_callback
struct unitytls_x509verify_callback_t90C02C529DB2B9F434C18797BACC456BCB5400A9;
// Mono.Unity.UnityTlsProvider
struct UnityTlsProvider_t38A61346F4CF37E18E390610CF6092AEFCA65965;
// Mono.Unity.UnityTlsStream
struct UnityTlsStream_tE8613CD306315DCC3E00A7B1036E20E280F83166;
// System.Action
struct Action_t591D2A86165F896B4B800BB5C25CE18672A55579;
// System.Action`1<System.Object>
struct Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0;
// System.ArgumentException
struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1;
// System.ArgumentNullException
struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD;
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA;
// System.AsyncCallback
struct AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4;
// System.Attribute
struct Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74;
// System.Byte[]
struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821;
// System.Char[]
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2;
// System.Collections.ArrayList
struct ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4;
// System.Collections.CollectionBase
struct CollectionBase_tF5D4583FF325726066A9803839A04E9C0084ED01;
// System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.String>[]
struct EntryU5BU5D_t69CCD9E4E7050700879917C9CB7E5E88F89235B1;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.Int32,System.String>
struct KeyCollection_t2F25BAF319A40DA5241F076B74BB90B72F16822F;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.String>
struct ValueCollection_tEDEE983AB5C1AD1832785DBAED94462C85312A6F;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo>
struct Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Object>
struct Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884;
// System.Collections.Generic.Dictionary`2<System.Int32,System.String>
struct Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Threading.Tasks.Task>
struct Dictionary_2_t70161CFEB8DA3C79E19E31D0ED948D3C2925095F;
// System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo>
struct Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25;
// System.Collections.Generic.Dictionary`2<System.String,System.Int32>
struct Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB;
// System.Collections.Generic.IEqualityComparer`1<System.Int32>
struct IEqualityComparer_1_t7B82AA0F8B96BAAA21E36DDF7A1FE4348BDDBE95;
// System.Collections.Generic.List`1<System.Security.Cryptography.X509Certificates.X509CertificateImpl>
struct List_1_t37E424CC2C8529EE0DCF9C6ACACB7F4CA9534033;
// System.Collections.Hashtable
struct Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9;
// System.Collections.ICollection
struct ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54;
// System.Collections.IDictionary
struct IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7;
// System.Collections.IEnumerator
struct IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A;
// System.ComponentModel.ArrayConverter
struct ArrayConverter_tAAD8F39711C6ECD39D31226FA1D140DD38752B57;
// System.ComponentModel.BaseNumberConverter
struct BaseNumberConverter_t6AF36A2503E7BABF7FB9A8EC05DF8B828491AC63;
// System.ComponentModel.BooleanConverter
struct BooleanConverter_tD0D177A9F577915FAA9F6749229672CE8EBAA94C;
// System.ComponentModel.CollectionConverter
struct CollectionConverter_t039E15C433996B0F0F0EB78BEE81F6DE0705F184;
// System.ComponentModel.DecimalConverter
struct DecimalConverter_t10232B897580B6DE599BB375BE8C0F4E1C30B0C1;
// System.ComponentModel.DefaultValueAttribute
struct DefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC;
// System.ComponentModel.DoubleConverter
struct DoubleConverter_t65A5D8B0C2736FC5469CE5DFA468D371DD5F9F75;
// System.ComponentModel.EditorBrowsableAttribute
struct EditorBrowsableAttribute_tF3507DF0AB82A8D54C70D6F7FB4D363DF729D516;
// System.ComponentModel.EnumConverter
struct EnumConverter_t5DA4CB27C27A8C37C31B2A4DE0C4C37820638E12;
// System.ComponentModel.Int16Converter
struct Int16Converter_tA2223DDF2BE99AD79AD836FCEC90F2C12705433B;
// System.ComponentModel.Int32Converter
struct Int32Converter_t73A6E403EBE01B56528CB227509954397A46BA22;
// System.ComponentModel.Int64Converter
struct Int64Converter_tED09C98C409F894484943F8D4F9C6468A97F1447;
// System.ComponentModel.SingleConverter
struct SingleConverter_t86A24FBD46D753B99344470E9566584F15538902;
// System.ComponentModel.StringConverter
struct StringConverter_t054FA0796F4C8E951208AFA052D99BCB8E68BED7;
// System.ComponentModel.TimeSpanConverter
struct TimeSpanConverter_t4025A0861C52420BC73D837729E5EFA6ECDE07C7;
// System.ComponentModel.TypeConverter
struct TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB;
// System.ComponentModel.TypeConverter/StandardValuesCollection
struct StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3;
// System.ComponentModel.TypeConverterAttribute
struct TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8;
// System.ComponentModel.Win32Exception
struct Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668;
// System.Delegate
struct Delegate_t;
// System.DelegateData
struct DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE;
// System.Delegate[]
struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86;
// System.Diagnostics.DiagnosticsConfigurationHandler
struct DiagnosticsConfigurationHandler_t885EAAD2DCF9678F16E3BB296E307868ECE68239;
// System.Diagnostics.StackTrace[]
struct StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196;
// System.Enum
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521;
// System.Exception
struct Exception_t;
// System.Func`1<System.Int32>
struct Func_1_t30631A63BE46FE93700939B764202D360449FE30;
// System.Func`1<System.Threading.Tasks.Task/ContingentProperties>
struct Func_1_t48C2978A48CE3F2F6EB5B6DE269D00746483BB1F;
// System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<Mono.Net.Security.AsyncProtocolResult>>
struct Func_2_t13B32D77E04EC21101230BDAC9B8F7E516325CFB;
// System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.Int32>>
struct Func_2_tBCA034BF330CE1C3008C166BF27F309CD4C41C24;
// System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>>
struct Func_2_t701CADF8EBD45CB33B018417B83025C3FF39ABA3;
// System.Globalization.Calendar
struct Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5;
// System.Globalization.CodePageDataItem
struct CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB;
// System.Globalization.CompareInfo
struct CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1;
// System.Globalization.CultureData
struct CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD;
// System.Globalization.CultureInfo
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F;
// System.Globalization.DateTimeFormatInfo
struct DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F;
// System.Globalization.IdnMapping
struct IdnMapping_tAF779B2798D263F30F4F4DAF1F21363201256EDC;
// System.Globalization.NumberFormatInfo
struct NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8;
// System.Globalization.Punycode
struct Punycode_t603C1A89205A5CB0C0A24B1EB2C95F0A5655D0CA;
// System.Globalization.TextInfo
struct TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8;
// System.IAsyncResult
struct IAsyncResult_t8E194308510B375B42432981AE5E7488C458D598;
// System.IFormatProvider
struct IFormatProvider_t4247E13AE2D97A079B88D594B7ABABF313259901;
// System.IO.IOException
struct IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA;
// System.IO.Stream
struct Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7;
// System.IO.Stream/ReadWriteTask
struct ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80;
// System.IOAsyncCallback
struct IOAsyncCallback_tEAEB626A6DAC959F4C365B12136A80EE9AA17547;
// System.IOAsyncResult
struct IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD;
// System.IOSelectorJob
struct IOSelectorJob_t2B03604D19B81660C4C1C06590C76BC8630DDE99;
// System.Int32[]
struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83;
// System.IntPtr[]
struct IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD;
// System.InvalidOperationException
struct InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1;
// System.Net.Configuration.BypassElementCollection
struct BypassElementCollection_t5CCE032F76311FCEFC3128DA5A88D25568A234A7;
// System.Net.Configuration.ConnectionManagementElementCollection
struct ConnectionManagementElementCollection_t83F843AEC2D2354836CC863E346FE2ECFEED2572;
// System.Net.Configuration.ConnectionManagementSection
struct ConnectionManagementSection_tA88F9BAD144E401AB524A9579B50050140592447;
// System.Net.Configuration.DefaultProxySection
struct DefaultProxySection_tB752851846FC0CEBA83C36C2BF6553211029AA3B;
// System.Net.Configuration.HttpWebRequestElement
struct HttpWebRequestElement_t3E2FC0EB83C362CC92300949AF90A0B0BE01EA3D;
// System.Net.Configuration.Ipv6Element
struct Ipv6Element_tCA869DC79FE3740DBDECC47877F1676294DB4A23;
// System.Net.Configuration.NetSectionGroup
struct NetSectionGroup_tA4ACD82AFE8B5C11E509FA8623D554BB5B4DB591;
// System.Net.Configuration.PerformanceCountersElement
struct PerformanceCountersElement_tCE4CFF0A3503E44D7B8EC6E85FD3C50EB1A1B570;
// System.Net.Configuration.ProxyElement
struct ProxyElement_tBD5D75620576BA5BB5521C11D09E0A6E996F9449;
// System.Net.Configuration.ServicePointManagerElement
struct ServicePointManagerElement_tD8D1491569C963460C14DF4D42ED05DF34428CFC;
// System.Net.Configuration.SettingsSection
struct SettingsSection_t8BECD0EB76F1865B33D072DD368676A8D51840B3;
// System.Net.Configuration.SocketElement
struct SocketElement_t32F016077CBED287B80063811E80BCCC7E8B1BF9;
// System.Net.Configuration.WebProxyScriptElement
struct WebProxyScriptElement_t4302A26A6D4E02146662B30E3452A5167966E6B3;
// System.Net.Configuration.WebRequestModuleElementCollection
struct WebRequestModuleElementCollection_t2A993B681E96AAF6A96CCB0458F0F0B99BFF51BE;
// System.Net.Configuration.WebRequestModulesSection
struct WebRequestModulesSection_t5E031F632797D2C7F0D394BCEE4BD0DF0ECA81BC;
// System.Net.EndPoint
struct EndPoint_tD87FCEF2780A951E8CE8D808C345FBF2C088D980;
// System.Net.IPAddress
struct IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE;
// System.Net.Security.AuthenticatedStream
struct AuthenticatedStream_t3DD09B1EB437BE77A9B0536EC26005B6914BF501;
// System.Net.Security.SslStream
struct SslStream_t9CEE8F6E125C734DD807D9289C86860FFEE81087;
// System.Net.Sockets.SocketException
struct SocketException_t75481CF49BCAF5685A5A9E6933909E0B65E7E0A5;
// System.NotSupportedException
struct NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010;
// System.ObjectDisposedException
struct ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A;
// System.Object[]
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A;
// System.OperatingSystem
struct OperatingSystem_tBB05846D5AA6960FFEB42C59E5FE359255C2BE83;
// System.Predicate`1<System.Object>
struct Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979;
// System.Predicate`1<System.Threading.Tasks.Task>
struct Predicate_1_tF4286C34BB184CE5690FDCEBA7F09FC68D229335;
// System.Reflection.Binder
struct Binder_t4D5CB06963501D32847C057B57157D6DC49CA759;
// System.Reflection.MemberFilter
struct MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// System.Runtime.CompilerServices.IAsyncStateMachine
struct IAsyncStateMachine_tEFDFBE18E061A6065AB2FF735F1425FB59F919BC;
// System.Runtime.ExceptionServices.ExceptionDispatchInfo
struct ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A;
// System.Runtime.InteropServices.ExternalException
struct ExternalException_t68841FD169C0CB00CC950EDA7E2A59540D65B1CE;
// System.Runtime.Serialization.IFormatterConverter
struct IFormatterConverter_tC3280D64D358F47EA4DAF1A65609BA0FC081888A;
// System.Runtime.Serialization.SafeSerializationManager
struct SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770;
// System.Runtime.Serialization.SerializationInfo
struct SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26;
// System.Security.Authentication.AuthenticationException
struct AuthenticationException_tE24BF2E2AD351F0C9586A59191F01918659A7516;
// System.Security.Cryptography.OidCollection
struct OidCollection_tEB423F1150E53DCF513BF5A699F911586A31B94E;
// System.Security.Cryptography.RandomNumberGenerator
struct RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2;
// System.Security.Cryptography.X509Certificates.X509Certificate
struct X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2;
// System.Security.Cryptography.X509Certificates.X509Certificate2Collection
struct X509Certificate2Collection_t14D64A5A2CFE4EA1782A417F975C2AB85BDA190D;
// System.Security.Cryptography.X509Certificates.X509CertificateCollection
struct X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833;
// System.Security.Cryptography.X509Certificates.X509CertificateCollection/X509CertificateEnumerator
struct X509CertificateEnumerator_t99AEDECD77BFC6083D8C98F9760BF7876D5B886B;
// System.Security.Cryptography.X509Certificates.X509CertificateImpl
struct X509CertificateImpl_t89610BFDE87B872143A4623CFC7F17275EB48313;
// System.Security.Cryptography.X509Certificates.X509CertificateImplCollection
struct X509CertificateImplCollection_t2F7A6E9F160116CE64224D56187C92ECD7FA7242;
// System.Security.Cryptography.X509Certificates.X509Chain
struct X509Chain_t4A28E9A30CBB331C9B68AE4AFCB30625C6C8B538;
// System.Security.Cryptography.X509Certificates.X509ChainImpl
struct X509ChainImpl_t34FABF07BEA0CFB6D88717BCDDE0607D9DA13A67;
// System.Security.Cryptography.X509Certificates.X509ChainPolicy
struct X509ChainPolicy_tCA1D9E9842A16ACD71D35E9C36659E3E861D74DD;
// System.String
struct String_t;
// System.StringComparer
struct StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE;
// System.String[]
struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E;
// System.Text.DecoderFallback
struct DecoderFallback_t128445EB7676870485230893338EF044F6B72F60;
// System.Text.DecoderReplacementFallback
struct DecoderReplacementFallback_t8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742;
// System.Text.EncoderFallback
struct EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63;
// System.Text.EncoderReplacementFallback
struct EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998;
// System.Text.Encoding
struct Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4;
// System.Text.StringBuilder
struct StringBuilder_t;
// System.Threading.CancellationTokenSource
struct CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE;
// System.Threading.ContextCallback
struct ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676;
// System.Threading.ManualResetEvent
struct ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408;
// System.Threading.SemaphoreSlim
struct SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048;
// System.Threading.Tasks.StackGuard
struct StackGuard_tE431ED3BBD1A18705FEE6F948EBF7FA2E99D64A9;
// System.Threading.Tasks.Task
struct Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2;
// System.Threading.Tasks.Task/ContingentProperties
struct ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08;
// System.Threading.Tasks.TaskFactory
struct TaskFactory_tF3C6D983390ACFB40B4979E225368F78006D6155;
// System.Threading.Tasks.TaskFactory`1<Mono.Net.Security.AsyncProtocolResult>
struct TaskFactory_1_t0BBF93A8240DC9AA4CB30E731C2B8DCE5768503F;
// System.Threading.Tasks.TaskFactory`1<System.Int32>
struct TaskFactory_1_t35BBF03CDA9AA94D2BE8CB805D2C764236F56CC7;
// System.Threading.Tasks.TaskFactory`1<System.Nullable`1<System.Int32>>
struct TaskFactory_1_tBDEE73CC26733B668E00E1788D332FB0D9CC209E;
// System.Threading.Tasks.TaskScheduler
struct TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114;
// System.Threading.Tasks.Task`1<Mono.Net.Security.AsyncProtocolResult>
struct Task_1_t6D67FA6126155FF2C2E227A859409D83DFAFA9BD;
// System.Threading.Tasks.Task`1<System.Int32>
struct Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87;
// System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>
struct Task_1_t8906695C9865566AA79419735634FF27AC74506E;
// System.Threading.Tasks.Task`1<System.Object>
struct Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09;
// System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>
struct Task_1_t1359D75350E9D976BFA28AD96E417450DE277673;
// System.Threading.ThreadAbortException
struct ThreadAbortException_t0B7CFB34B2901B695FBCFF84E0A1EBDFC8177468;
// System.Threading.WaitHandle
struct WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6;
// System.Type
struct Type_t;
// System.Type[]
struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F;
// System.UInt16[]
struct UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E;
// System.UriFormatException
struct UriFormatException_t86B375C9E56DBEE5BD4CC9D71C4C40AE5141808A;
// System.Version
struct Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD;
// System.Void
struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017;
// System.Xml.XmlNode
struct XmlNode_t07D70045D843753E4FE8AFE40FD36244E6B6D7FB;
extern RuntimeClass* Action_t591D2A86165F896B4B800BB5C25CE18672A55579_il2cpp_TypeInfo_var;
extern RuntimeClass* ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var;
extern RuntimeClass* ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var;
extern RuntimeClass* ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var;
extern RuntimeClass* AsyncProtocolResult_t957DDFF1A4D0CC662F930F5C9E09E4FA1FBBFBC0_il2cpp_TypeInfo_var;
extern RuntimeClass* AsyncReadRequest_t10B0459470C14DC065B5AD60AF378AB78CD138C1_il2cpp_TypeInfo_var;
extern RuntimeClass* AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079_il2cpp_TypeInfo_var;
extern RuntimeClass* AsyncTaskMethodBuilder_1_tADDA4A1D7E8E45B9C6AC65AF43C5868605F74865_il2cpp_TypeInfo_var;
extern RuntimeClass* AsyncTaskMethodBuilder_1_tE6ADC5F95443C1197F4C34B1207F02A4E0F7EDB2_il2cpp_TypeInfo_var;
extern RuntimeClass* AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487_il2cpp_TypeInfo_var;
extern RuntimeClass* AsyncWriteRequest_tFE4740D02401F295910B4006A8390590D5E2C27B_il2cpp_TypeInfo_var;
extern RuntimeClass* AuthenticationException_tE24BF2E2AD351F0C9586A59191F01918659A7516_il2cpp_TypeInfo_var;
extern RuntimeClass* BufferOffsetSize2_t2E9889F6FB134EF92FC0B930BF630243553F4E00_il2cpp_TypeInfo_var;
extern RuntimeClass* BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9_il2cpp_TypeInfo_var;
extern RuntimeClass* ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var;
extern RuntimeClass* Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_il2cpp_TypeInfo_var;
extern RuntimeClass* CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_il2cpp_TypeInfo_var;
extern RuntimeClass* CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var;
extern RuntimeClass* Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var;
extern RuntimeClass* CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var;
extern RuntimeClass* DecoderReplacementFallback_t8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742_il2cpp_TypeInfo_var;
extern RuntimeClass* DefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC_il2cpp_TypeInfo_var;
extern RuntimeClass* Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C_il2cpp_TypeInfo_var;
extern RuntimeClass* EditorBrowsableAttribute_tF3507DF0AB82A8D54C70D6F7FB4D363DF729D516_il2cpp_TypeInfo_var;
extern RuntimeClass* EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998_il2cpp_TypeInfo_var;
extern RuntimeClass* Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_il2cpp_TypeInfo_var;
extern RuntimeClass* Exception_t_il2cpp_TypeInfo_var;
extern RuntimeClass* Func_1_t30631A63BE46FE93700939B764202D360449FE30_il2cpp_TypeInfo_var;
extern RuntimeClass* GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_il2cpp_TypeInfo_var;
extern RuntimeClass* ICertificateValidator_t0C1A54E00D408ADCBA27E600BFAA216E7E7D31A3_il2cpp_TypeInfo_var;
extern RuntimeClass* ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var;
extern RuntimeClass* IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var;
extern RuntimeClass* IEnumerable_tD74549CEA1AA48E768382B94FEACBB07E2E3FA2C_il2cpp_TypeInfo_var;
extern RuntimeClass* IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA_il2cpp_TypeInfo_var;
extern RuntimeClass* IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE_il2cpp_TypeInfo_var;
extern RuntimeClass* IdnMapping_tAF779B2798D263F30F4F4DAF1F21363201256EDC_il2cpp_TypeInfo_var;
extern RuntimeClass* Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var;
extern RuntimeClass* Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F_il2cpp_TypeInfo_var;
extern RuntimeClass* IntPtr_t_il2cpp_TypeInfo_var;
extern RuntimeClass* InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var;
extern RuntimeClass* ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408_il2cpp_TypeInfo_var;
extern RuntimeClass* Marshal_tC795CE9CC2FFBA41EDB1AC1C0FEC04607DFA8A40_il2cpp_TypeInfo_var;
extern RuntimeClass* Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var;
extern RuntimeClass* MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045_il2cpp_TypeInfo_var;
extern RuntimeClass* MonoTlsProviderFactory_t01773E7677E88B1202FB7770A3E9F53655BB2525_il2cpp_TypeInfo_var;
extern RuntimeClass* NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var;
extern RuntimeClass* ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A_il2cpp_TypeInfo_var;
extern RuntimeClass* ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var;
extern RuntimeClass* OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90_il2cpp_TypeInfo_var;
extern RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var;
extern RuntimeClass* SocketException_t75481CF49BCAF5685A5A9E6933909E0B65E7E0A5_il2cpp_TypeInfo_var;
extern RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var;
extern RuntimeClass* StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_il2cpp_TypeInfo_var;
extern RuntimeClass* String_t_il2cpp_TypeInfo_var;
extern RuntimeClass* SystemCertificateValidator_tEB00AC944EDDAA53F9A9FA7A316A23574985475F_il2cpp_TypeInfo_var;
extern RuntimeClass* Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var;
extern RuntimeClass* TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8_il2cpp_TypeInfo_var;
extern RuntimeClass* TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB_il2cpp_TypeInfo_var;
extern RuntimeClass* U3CU3Ec__DisplayClass66_0_t57BA0EF5D295E67BF00C608A8D3AC8A83A7606CC_il2cpp_TypeInfo_var;
extern RuntimeClass* UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E_il2cpp_TypeInfo_var;
extern RuntimeClass* UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_il2cpp_TypeInfo_var;
extern RuntimeClass* UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_il2cpp_TypeInfo_var;
extern RuntimeClass* UnityTlsStream_tE8613CD306315DCC3E00A7B1036E20E280F83166_il2cpp_TypeInfo_var;
extern RuntimeClass* UnityTls_tFD87351846C601F716262E015308C6BB66000DEC_il2cpp_TypeInfo_var;
extern RuntimeClass* UriFormatException_t86B375C9E56DBEE5BD4CC9D71C4C40AE5141808A_il2cpp_TypeInfo_var;
extern RuntimeClass* UriHelper_tA44F3057604BAA4E6EF06A8EE4E6825D471592DF_il2cpp_TypeInfo_var;
extern RuntimeClass* UriParser_t07C77D673CCE8D2DA253B8A7ACCB010147F1A4AC_il2cpp_TypeInfo_var;
extern RuntimeClass* Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_il2cpp_TypeInfo_var;
extern RuntimeClass* Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var;
extern RuntimeClass* X509Certificate2Impl_t645108014422F6408EB87390317CD10710F129E7_il2cpp_TypeInfo_var;
extern RuntimeClass* X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833_il2cpp_TypeInfo_var;
extern RuntimeClass* X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2_il2cpp_TypeInfo_var;
extern RuntimeClass* X509ChainPolicy_tCA1D9E9842A16ACD71D35E9C36659E3E861D74DD_il2cpp_TypeInfo_var;
extern RuntimeClass* X509Chain_t4A28E9A30CBB331C9B68AE4AFCB30625C6C8B538_il2cpp_TypeInfo_var;
extern RuntimeClass* unitytls_error_code_tA9272A71D51F7FE555C03185AE244FB01EAF998F_il2cpp_TypeInfo_var;
extern RuntimeClass* unitytls_errorstate_create_t_t104BADBBE1265BD1A3F84C153EB7A67CDDBF35A9_il2cpp_TypeInfo_var;
extern RuntimeClass* unitytls_errorstate_raise_error_t_tC441A37D4A6F1BAC1AFCA0108D4F7570EFF9E0D1_il2cpp_TypeInfo_var;
extern RuntimeClass* unitytls_key_free_t_tCC7AD95D3B758BB99785645E65EDCD65A1D243AB_il2cpp_TypeInfo_var;
extern RuntimeClass* unitytls_key_get_ref_t_t2F4EF4CD2F6AFC4F2D166953E834C6F0A13382A7_il2cpp_TypeInfo_var;
extern RuntimeClass* unitytls_key_parse_der_t_t2ABD1C146C8B9405F6E5A78CD59A779EA607741B_il2cpp_TypeInfo_var;
extern RuntimeClass* unitytls_key_parse_pem_t_tB4BCEBA4194442C8C85FA19E80B808D0EDA462AB_il2cpp_TypeInfo_var;
extern RuntimeClass* unitytls_random_generate_bytes_t_t494B8599A6D4247BB0C8AB7341DDC73BE42623F7_il2cpp_TypeInfo_var;
extern RuntimeClass* unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2_il2cpp_TypeInfo_var;
extern RuntimeClass* unitytls_tlsctx_create_client_t_tD9DFBDB5559983F0E11A67FA92E0F7182114C8F2_il2cpp_TypeInfo_var;
extern RuntimeClass* unitytls_tlsctx_create_server_t_t6E7812D40DDD91958E3CFBB92B5F5748D477E19D_il2cpp_TypeInfo_var;
extern RuntimeClass* unitytls_tlsctx_free_t_tB27A3B6F9D1B784ABE082849EAB6B81F51FAC8E2_il2cpp_TypeInfo_var;
extern RuntimeClass* unitytls_tlsctx_get_ciphersuite_t_t94A91CB42A2EBB2CC598EF3E278770AFD80696A0_il2cpp_TypeInfo_var;
extern RuntimeClass* unitytls_tlsctx_get_protocol_t_tB29092875D3CBD25E4461BFD165B5373FA54DB14_il2cpp_TypeInfo_var;
extern RuntimeClass* unitytls_tlsctx_notify_close_t_t2FC4C08BACF1AEA509ABCAF3B22475E196E74A0D_il2cpp_TypeInfo_var;
extern RuntimeClass* unitytls_tlsctx_process_handshake_t_tC8AAF317CBE4CA216F22BF031ECF89315B963C9D_il2cpp_TypeInfo_var;
extern RuntimeClass* unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47_il2cpp_TypeInfo_var;
extern RuntimeClass* unitytls_tlsctx_read_callback_tD85E7923018681355C1D851137CEC527F04093F5_il2cpp_TypeInfo_var;
extern RuntimeClass* unitytls_tlsctx_read_t_tA8D1209D5F488E02F826EE2362F5AA61C8FF2EE2_il2cpp_TypeInfo_var;
extern RuntimeClass* unitytls_tlsctx_server_require_client_authentication_t_t77B3CAFF25690A45405E3C957E40CC4FF83B49C6_il2cpp_TypeInfo_var;
extern RuntimeClass* unitytls_tlsctx_set_certificate_callback_t_tC4864FE0F6A3398A572F2511AA64C72126640937_il2cpp_TypeInfo_var;
extern RuntimeClass* unitytls_tlsctx_set_supported_ciphersuites_t_t6914054EA0F7A59C8A4ED4B9CDD5AF143F7D8BFE_il2cpp_TypeInfo_var;
extern RuntimeClass* unitytls_tlsctx_set_trace_callback_t_tA11F424F68D297B6FD2B2EA26C6764F80146662A_il2cpp_TypeInfo_var;
extern RuntimeClass* unitytls_tlsctx_set_x509verify_callback_t_t34EEB7BA38CA2C86F847416785ADB22BC4A04F4B_il2cpp_TypeInfo_var;
extern RuntimeClass* unitytls_tlsctx_write_callback_tBDF40F27E011F577C3E834B14788491861F870D6_il2cpp_TypeInfo_var;
extern RuntimeClass* unitytls_tlsctx_write_t_t0B4A49BBA592FE4EC0630B490463AE116AF07C9C_il2cpp_TypeInfo_var;
extern RuntimeClass* unitytls_x509_export_der_t_tB0D0A02DE7E75757AFCA780298BF95467BF82856_il2cpp_TypeInfo_var;
extern RuntimeClass* unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7_il2cpp_TypeInfo_var;
extern RuntimeClass* unitytls_x509list_append_der_t_tDA1C93A382058FB563F8772B119D5B598DC37A5C_il2cpp_TypeInfo_var;
extern RuntimeClass* unitytls_x509list_append_t_tAB1C185C77DFD6BD96DF7909370AA1FAD6BB90AF_il2cpp_TypeInfo_var;
extern RuntimeClass* unitytls_x509list_create_t_tC040C2CF47D5426B7F6B1D6A2751507DC681CFF3_il2cpp_TypeInfo_var;
extern RuntimeClass* unitytls_x509list_free_t_tE3FC523507F07BD9901D84E9F6968CD8A583FF09_il2cpp_TypeInfo_var;
extern RuntimeClass* unitytls_x509list_get_ref_t_t1FAB0CD82E536E0C9EB5255B145FC5AF434B3986_il2cpp_TypeInfo_var;
extern RuntimeClass* unitytls_x509list_get_x509_t_t028BB06EEB95E8F62511F2301B90D8181F4FFDB5_il2cpp_TypeInfo_var;
extern RuntimeClass* unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6_il2cpp_TypeInfo_var;
extern RuntimeClass* unitytls_x509verify_default_ca_t_t4BACB6B49AA85C025AF9B18B3F30F63C9881DE2D_il2cpp_TypeInfo_var;
extern RuntimeClass* unitytls_x509verify_explicit_ca_t_t6C8BE964C5EE9B24D3734F028EFCD83F5893D2E6_il2cpp_TypeInfo_var;
extern RuntimeClass* unitytls_x509verify_result_t835FEA0265EFD70F0762B220C663474E03402278_il2cpp_TypeInfo_var;
extern String_t* _stringLiteral00F0B04BE2DDD54416CDF6724BEAC175AA9DEB01;
extern String_t* _stringLiteral02A1DE7D81235D0F3D7F59638AB990CC581D9A3B;
extern String_t* _stringLiteral05457DB2EFBDC6E2FF96BA5A97208381A8343AB2;
extern String_t* _stringLiteral05A79F06CF3F67F726DAE68D18A2290F6C9A50C9;
extern String_t* _stringLiteral05BA63FF22FFFA946A6C1E3E8B9D184A5A911E55;
extern String_t* _stringLiteral0BE297B561141A6A2D82A7108DDDC36E1CC22DBA;
extern String_t* _stringLiteral0DE700C837994DEAC0F71DB131BE20824AEC05EA;
extern String_t* _stringLiteral0FC51A5C314382C855158EDA38FF5409A7E69535;
extern String_t* _stringLiteral12B2131443E6187C800986B84AA53B32E1ADCB28;
extern String_t* _stringLiteral1382875027AD2421A9833D7063B819DB401FAD94;
extern String_t* _stringLiteral138AE1291D0FDD2939737A605784ED08E78A9737;
extern String_t* _stringLiteral143E44BFE7FFA9CB39899B153BDB83E618D5F841;
extern String_t* _stringLiteral1443CEC241FC8F0E9A22F01A964EE87B171C42C6;
extern String_t* _stringLiteral194B7A0B1DCB2AC4E4CC31D4DB55A5FFB8EB8EA8;
extern String_t* _stringLiteral1A54038B0AA8D7F2DA83479B361076A9F2836D51;
extern String_t* _stringLiteral1AFEFDAD8F394C65ED6D000A865D699A38489C6F;
extern String_t* _stringLiteral1C1B3D6FF94B2A59F3278B9591692B9DE73EE437;
extern String_t* _stringLiteral1E3210AAC5A12A7D539A355ABFDC49D749AF3849;
extern String_t* _stringLiteral1E591794DE2646B62ACB030C04B0F93927302891;
extern String_t* _stringLiteral1E5C2F367F02E47A8C160CDA1CD9D91DECBAC441;
extern String_t* _stringLiteral2051DA5902A321BE45FD27292CD8E8397E1CBC8A;
extern String_t* _stringLiteral206975CE40BF2190E1EBE832CBFB91DBAEB66EB0;
extern String_t* _stringLiteral21B53B1F02559D44A4E57D2971766159EBF6282F;
extern String_t* _stringLiteral25B6294BE206F89D782E1DECFE2B11C7BCF92979;
extern String_t* _stringLiteral2749AD9B5C66B69071CBC7465E913B18000BE671;
extern String_t* _stringLiteral2986A51D253E6221052722AAB2EFBC181246B417;
extern String_t* _stringLiteral2D21C9BFEF23327E8608E29D3F6008951F788E42;
extern String_t* _stringLiteral2E8D21C998F75805B9367B60DD8A3B85620ACACC;
extern String_t* _stringLiteral2E98A4ED23C4C749F9FC8167CD3BDE6181CD3DDB;
extern String_t* _stringLiteral2EFCDFD2D2F77EFCD3A02B86DEA0E3E932226F8A;
extern String_t* _stringLiteral310BB6BA9118A5AE4CDF6A127D791325B95AFC7F;
extern String_t* _stringLiteral334389048B872A533002B34D73F8C29FD09EFC50;
extern String_t* _stringLiteral3441CDCE9FB0A67160E04A07051CB9E18BB0C2B3;
extern String_t* _stringLiteral36CA0BFCBC1963A66664AE75C501AF9D8B728C7C;
extern String_t* _stringLiteral389AADC179870858E615E7F86494CF9F12A7BC2B;
extern String_t* _stringLiteral3A52CE780950D4D969792A2559CD519D7EE8C727;
extern String_t* _stringLiteral3BEAE53F6712B7D394747CBA061465E3234815F3;
extern String_t* _stringLiteral3C7ECD7A063AD7AE0D2B9AB87B11F63CCC96C8F7;
extern String_t* _stringLiteral3D24273BE458535CEFB4BAB63B3547DA87C24AA4;
extern String_t* _stringLiteral3E5093C51691F5F09D01B272E203376795391CF1;
extern String_t* _stringLiteral3E62E9B46156D196C1AAC718944419216D75E346;
extern String_t* _stringLiteral3E66AEB02C4E4C2A2B3A431EBF1731473D567D14;
extern String_t* _stringLiteral3FF5F085A157B60CB28DBA0860F39CD3E12B11E1;
extern String_t* _stringLiteral403658E687068FB4134ECC254ECAF3136CDC3FE6;
extern String_t* _stringLiteral4091FC8C86D49636BCFA1F50F31C77CFA32263AF;
extern String_t* _stringLiteral42A8F651D79FD005EEAC0612DF6442B983A01184;
extern String_t* _stringLiteral42D7307C56A3147C3F9B4B8A6CB6810CBDF8B65D;
extern String_t* _stringLiteral45C1FC38173A5FD1716A403B84531F2FC83623E0;
extern String_t* _stringLiteral46751B390D92C344617E7490A91616F7DAE87A4D;
extern String_t* _stringLiteral46C08613317C97DBB3017F710E4CE7C132854E87;
extern String_t* _stringLiteral497DA240B99C0C1C3CD67AFDEED37F94AD9AE2D8;
extern String_t* _stringLiteral4A37E59F0BD3B687584D2D8B9790C9B454FBE94B;
extern String_t* _stringLiteral4AC5B82C2DA6F96723218DFF7504C664E1F80881;
extern String_t* _stringLiteral4E4A483ED626825D63C2302304176521EFF9ECBD;
extern String_t* _stringLiteral4F4E2E165630EEF5C6A1AE8670F28F4DDB7A7949;
extern String_t* _stringLiteral4FF447B8EF42CA51FA6FB287BED8D40F49BE58F1;
extern String_t* _stringLiteral524A7D520F53E851E22833ECB3358DA7F5B31A2D;
extern String_t* _stringLiteral52C871EA22DADA6554A1363EE61F9567C44EFD80;
extern String_t* _stringLiteral532041BFE7809558509909668AB1E9ACD74F3380;
extern String_t* _stringLiteral53A610E925BBC0A175E365D31241AE75AEEAD651;
extern String_t* _stringLiteral53CCE0631F5BA4546493E150CC5EF970434EEF7F;
extern String_t* _stringLiteral5480F96B6833A4CB8F0AEF4EEA9FB153DB5B842E;
extern String_t* _stringLiteral5567A4280B56B93887A3411B9BA889553B427D9C;
extern String_t* _stringLiteral5768A067F71F301CCE9ED7360D139F45BA6D4727;
extern String_t* _stringLiteral5798F18876C067AB053B1D0EB12BDAED73FA0392;
extern String_t* _stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889;
extern String_t* _stringLiteral5C96F9E08C71D3D17CA63CB49B810BC60238D399;
extern String_t* _stringLiteral5F6C62FD921546F22A503EC993323335977C5BA0;
extern String_t* _stringLiteral6019AA352C36BF78F73A83E660E2DA74F2E4C2CE;
extern String_t* _stringLiteral603C063F0A9F2922CA12D357A484E790CD9035BC;
extern String_t* _stringLiteral60C04606224708CFBFEF6AC5E778E815A3740AE8;
extern String_t* _stringLiteral61CE5A2CEB12686C40BA9776D128F0AF7AFDDAB1;
extern String_t* _stringLiteral62C6526007299CA03F778B5B7CE0D726354CAE0D;
extern String_t* _stringLiteral63D3C5CDB8796B255DDB829AB1BAEE8CD898BC1F;
extern String_t* _stringLiteral64343A83AD8C0B8E2789C32CA5AB1EB6ABB614E0;
extern String_t* _stringLiteral65E574DF4C26A5034E26490200EF9040B9AD3A26;
extern String_t* _stringLiteral66613814024EB80FC065BCD43B8BF07ED9297053;
extern String_t* _stringLiteral677789471BFC26B9BAA2DCB7BDC1E90F13C9BEAC;
extern String_t* _stringLiteral6BF991E7854ED942E57F7A8AE958526D710E4851;
extern String_t* _stringLiteral6D4853D9C2696A98DA8096DCE674A11141FD8E3C;
extern String_t* _stringLiteral701DF7684DBD9D56FD9124002994696024429442;
extern String_t* _stringLiteral7A15E3C35643EC9CE81F0D068C0058ED00FE6913;
extern String_t* _stringLiteral7B453BCD52F806A62F523CDE2D3C877791F00E3D;
extern String_t* _stringLiteral7C1881B48BC394F86F2C5B88C9C0D564876D2822;
extern String_t* _stringLiteral7D8C0F713241893544D6B281037E9209E24B3C3B;
extern String_t* _stringLiteral7D9B4FAC07BFCAAA0E413BDE05E8E61039C6F7A3;
extern String_t* _stringLiteral7DF115C7517A2274DDEA5B68BAC5337B387D957F;
extern String_t* _stringLiteral8004417B5F89CE52D6415C773647383F0A9302FF;
extern String_t* _stringLiteral80C8E6938B5EF83DCE60C536BC9079720D54F951;
extern String_t* _stringLiteral81E6C84235179BEF6A424ADE0379CDB4A2F8F2B6;
extern String_t* _stringLiteral84F802341A80D8821928A6BF042018F28F6BD6BC;
extern String_t* _stringLiteral8697064C54272EC190E9B70FFF08FEAF084EC16D;
extern String_t* _stringLiteral89368E1D68015693AB48EE189D0632CB5D6EDFB3;
extern String_t* _stringLiteral8A87B64CAE5A39A0265ADA62F19E089C25FA123C;
extern String_t* _stringLiteral8D49852F94B6B049DB87721DD00F949FF76F466B;
extern String_t* _stringLiteral8D5280EE3B031DC560AA00396A9D537BC0401F97;
extern String_t* _stringLiteral8D87BE91452AF30ABCE041C075C797BDD216F3FA;
extern String_t* _stringLiteral906E86556DAA261FF5DABB90A37D2280B3901D37;
extern String_t* _stringLiteral9370B2A9A4016E2EAC0B29188FD6198E7257FCBE;
extern String_t* _stringLiteral94195DF0921914B5E59813F0CF42420D7DEA99E7;
extern String_t* _stringLiteral9649AD78D66FC282E7E49B63BEB51E52744030AC;
extern String_t* _stringLiteral96F7E671B1E48DA4A2700769F8225126847B97CF;
extern String_t* _stringLiteral9929BD76BB6A479BD748D213279338B8145D9D00;
extern String_t* _stringLiteralA1F04E6EFD522730470A7511DBE3EBF9FD0108A4;
extern String_t* _stringLiteralA2D949D908FE6D31B32F76B1D98C42040346B4AF;
extern String_t* _stringLiteralA2DAD54D8BCE08503C34ABC283C6FE74BD2E9FFC;
extern String_t* _stringLiteralA5A7E131A5CB8762553101BDA765297974113FA2;
extern String_t* _stringLiteralA5B40FBDEF80156114E062A34FA25675588A0524;
extern String_t* _stringLiteralA9AC5297B2F804CDAFA5D88F5E271E340BA5CF37;
extern String_t* _stringLiteralAF60BB13CAE4FB7DF464BEF84985F785909AE5A5;
extern String_t* _stringLiteralBA195D654D6092A3E9DA8DDD541DD8C15779615B;
extern String_t* _stringLiteralBB1826EE4D8EF405A91381FAED170939609CF604;
extern String_t* _stringLiteralBB94D38BBC3E55D3BB9ED775E3926427237C5BB4;
extern String_t* _stringLiteralBDB82E3AC7750DEFC34C5182BAFD1520C70F6BA0;
extern String_t* _stringLiteralBEBD2907CA9295D99796EA50EE317A1FC881504C;
extern String_t* _stringLiteralBF399D891C479024714F066225B388058E8B6849;
extern String_t* _stringLiteralC662180230CAD14787D4AB7E77AA08681CE783FA;
extern String_t* _stringLiteralC8452B0C049E050B8A8D8E298315154B410BB14F;
extern String_t* _stringLiteralCA827528D6904965FCEBBBCAD976A987F5F845B3;
extern String_t* _stringLiteralCB2ABC02CAD8A6985A95FA2F4B860831B13EA387;
extern String_t* _stringLiteralCFE2562AB6327C20761CA6C5FC56D6DA277279E9;
extern String_t* _stringLiteralD3383CCD17F8375DB7E6AF29AAF0F90B1FCC6BE5;
extern String_t* _stringLiteralD34A1412DD6535CEABE7960D72728113A96B875C;
extern String_t* _stringLiteralD6829BEAA0331951621D5601098DC271C792014A;
extern String_t* _stringLiteralD802D232A85B790C06A7F0815C75D27016580682;
extern String_t* _stringLiteralD82B06ADF1A876D702B6A3905D8D56B51827E40E;
extern String_t* _stringLiteralD897BF481C6D3038F32CD50B3A8B5F6CF56B6348;
extern String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
extern String_t* _stringLiteralDDB2E1F8117F0FEE60A6A70634647D6FEFBF57BB;
extern String_t* _stringLiteralDE36C4365F53A75F4F2CE6CC742B8EDA0EE14E5D;
extern String_t* _stringLiteralDEA1E8F15CADFF2878E4222800A4D95D499E02E2;
extern String_t* _stringLiteralDFD6DF0631E85C741695FD36D45900F792B48FFD;
extern String_t* _stringLiteralDFFBC6C8A7C18041DDE01CA73B539F216F6C6C4F;
extern String_t* _stringLiteralE31A30F4BF98EB850A9819DC3447D918FC18090C;
extern String_t* _stringLiteralE462BF1A8BF1155E522ABAE519222876450BA43D;
extern String_t* _stringLiteralE53C2EA1FE4BD2B78BF4723C7C155A578E020A25;
extern String_t* _stringLiteralE60557A7E9CC6FEAF2F8FC5499C450D6D82D6923;
extern String_t* _stringLiteralE9A049DD51F6F6165F82600419D9408A49973EBC;
extern String_t* _stringLiteralEA702382708DA683ABF93965F8A5B28FEA3E28DE;
extern String_t* _stringLiteralEB3A4B5CCA54F76C5610D00E036890D02D084AA6;
extern String_t* _stringLiteralEBF4DF063AA788A23C3FE2ADCA2B6C0525339B9A;
extern String_t* _stringLiteralF5F3C7170FE5CED284547289C97FCF640CC3F7BB;
extern String_t* _stringLiteralF6F646066BDF4B1EC66764F189EA43F9555404F9;
extern String_t* _stringLiteralF708D88AFD78292E96A07D5E880E7275E2C367D7;
extern String_t* _stringLiteralF8A984849A4EAB9B84E59C9F56576501E362F093;
extern String_t* _stringLiteralF8D3E8E47EDE7D1E1D63B90ADAC4163F137F5FBD;
extern String_t* _stringLiteralFBD638320493F35A0D0672A1D87CDDFCCFB9BADD;
extern String_t* _stringLiteralFE7B8C6038A1A74D80BFF5F23FB9B41209B3A58B;
extern String_t* _stringLiteralFF29395A7A1A8881F7149A9507B91A51D420AC0A;
extern const RuntimeMethod* AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E_TisU3CInnerReadU3Ed__25_tCE25EDB99323C3358577085230EE086DE0CADA5E_m8A995342D50B0ABAA2E3EE6CBA355484259E4CF5_RuntimeMethod_var;
extern const RuntimeMethod* AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E_TisU3CInnerReadU3Ed__66_tA027A607C6D5A6367A04D2DCAF5FCBB66E6B5CAB_m27EC0547CE146B1E82C108C283D1DAD2AEF81083_RuntimeMethod_var;
extern const RuntimeMethod* AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t688A02A53D1A4A883C7DDAFE0F07F17691C51E96_TisU3CStartOperationU3Ed__58_t9CFBEC306AEE875FF526F77EF660D0493F475BB1_m10F3A6CBD71592E7C6A8E694309C48D87D4E95AD_RuntimeMethod_var;
extern const RuntimeMethod* AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874_TisU3CStartOperationU3Ed__23_tF07DD38BEEE955EB5B1359B816079584899DDEC9_m0BF83BB93CE0CD7BFC1D12292259197900CEA4F8_RuntimeMethod_var;
extern const RuntimeMethod* AsyncTaskMethodBuilder_1_Create_m242902BEDFDC7D1CC69AFDD97C9D701DE8FE2B50_RuntimeMethod_var;
extern const RuntimeMethod* AsyncTaskMethodBuilder_1_Create_mB155504875E2454883E034E847877A9DEA85E318_RuntimeMethod_var;
extern const RuntimeMethod* AsyncTaskMethodBuilder_1_Create_mB60DC339AEDD170B1734CFCE9841538E84686820_RuntimeMethod_var;
extern const RuntimeMethod* AsyncTaskMethodBuilder_1_SetException_m24103DD71F8B33836CA0506874DBB021B9385837_RuntimeMethod_var;
extern const RuntimeMethod* AsyncTaskMethodBuilder_1_SetException_m7AC187DC8C778D9C7E06D316EB9BFAE37B4E7D53_RuntimeMethod_var;
extern const RuntimeMethod* AsyncTaskMethodBuilder_1_SetException_mC6242DDCD4119CD73267E4B9888FF3474D795821_RuntimeMethod_var;
extern const RuntimeMethod* AsyncTaskMethodBuilder_1_SetResult_mAFB12C1766B74D412E293BA7AB711615A14C2230_RuntimeMethod_var;
extern const RuntimeMethod* AsyncTaskMethodBuilder_1_SetResult_mD643FBB081E33BE94442E9D8F9694E9008B0C4F0_RuntimeMethod_var;
extern const RuntimeMethod* AsyncTaskMethodBuilder_1_SetResult_mDB67DEC1B95ACC8E46B3323B1F19D65EC17ADA9A_RuntimeMethod_var;
extern const RuntimeMethod* AsyncTaskMethodBuilder_1_SetStateMachine_m26511B6C387FC1405B1EEDF9BA97FC8B04E833DD_RuntimeMethod_var;
extern const RuntimeMethod* AsyncTaskMethodBuilder_1_SetStateMachine_m982DF1DD4A7F18AB2E91BB6203C81F0246BB094A_RuntimeMethod_var;
extern const RuntimeMethod* AsyncTaskMethodBuilder_1_SetStateMachine_mADB2F2ED219BD69EC85F7516C62FB23F840BB877_RuntimeMethod_var;
extern const RuntimeMethod* AsyncTaskMethodBuilder_1_Start_TisU3CInnerReadU3Ed__25_tCE25EDB99323C3358577085230EE086DE0CADA5E_m76073D93DA6947C4B0CF9D9C6BF57526F674D659_RuntimeMethod_var;
extern const RuntimeMethod* AsyncTaskMethodBuilder_1_Start_TisU3CInnerReadU3Ed__66_tA027A607C6D5A6367A04D2DCAF5FCBB66E6B5CAB_mD28BD96B617BE0AE227EDF31AE26EED9D391C2D4_RuntimeMethod_var;
extern const RuntimeMethod* AsyncTaskMethodBuilder_1_Start_TisU3CStartOperationU3Ed__23_tF07DD38BEEE955EB5B1359B816079584899DDEC9_m43D22CCD35DA950DB1C0515C6C6897DCB2575ED4_RuntimeMethod_var;
extern const RuntimeMethod* AsyncTaskMethodBuilder_1_Start_TisU3CStartOperationU3Ed__58_t9CFBEC306AEE875FF526F77EF660D0493F475BB1_m86EE112E3DDD51CBC6A0F57A35AC3919A128BCB8_RuntimeMethod_var;
extern const RuntimeMethod* AsyncTaskMethodBuilder_1_get_Task_m35C5C2BA1998F89CDCED8166BAE477A591FAB101_RuntimeMethod_var;
extern const RuntimeMethod* AsyncTaskMethodBuilder_1_get_Task_m6F38E3B2220CD252E1196C38A8DC4A33EDEAA9F6_RuntimeMethod_var;
extern const RuntimeMethod* AsyncTaskMethodBuilder_1_get_Task_m939AAFF5841821CC09C627DCDEB2DFD5B933DFC2_RuntimeMethod_var;
extern const RuntimeMethod* AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t7DF2E84988582301369783F2ECA65B4F26D5A740_TisU3CProcessOperationU3Ed__24_t969904EA513B205F08A3ED1624FE3890853645AA_mFAAE60A8CEF35B2FFAAC5B0CFC0E04A24F309821_RuntimeMethod_var;
extern const RuntimeMethod* AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874_TisU3CInnerWriteU3Ed__67_tCEBE4678B01EBC181A242F16C978B7A71367AF43_mFD398737DB235705CD93D5EBA8FF31DDF273D6A5_RuntimeMethod_var;
extern const RuntimeMethod* AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874_TisU3CProcessOperationU3Ed__24_t969904EA513B205F08A3ED1624FE3890853645AA_m00FD9615EAA4D3E47C70D097B61431C2A1965520_RuntimeMethod_var;
extern const RuntimeMethod* AsyncTaskMethodBuilder_Start_TisU3CInnerWriteU3Ed__67_tCEBE4678B01EBC181A242F16C978B7A71367AF43_m04E42D96056940C94B4AC023C0851B1EF14F14F9_RuntimeMethod_var;
extern const RuntimeMethod* AsyncTaskMethodBuilder_Start_TisU3CProcessOperationU3Ed__24_t969904EA513B205F08A3ED1624FE3890853645AA_mE4E7D5465A93C56B5F17EB43FD2AF11AF3597A69_RuntimeMethod_var;
extern const RuntimeMethod* BufferOffsetSize__ctor_m3DE692137428B2E6AB46008825FC5C1B63FDAF4F_RuntimeMethod_var;
extern const RuntimeMethod* BypassElementCollection__ctor_m867AF1FE6DBB2768AA199F45039C3E2641A9627A_RuntimeMethod_var;
extern const RuntimeMethod* ConfiguredTaskAwaitable_1_GetAwaiter_m10B0B84F72A27E623BD94882380E582459F8B8DE_RuntimeMethod_var;
extern const RuntimeMethod* ConfiguredTaskAwaitable_1_GetAwaiter_m2334D52A2F0403A09E55D5B4B4AA4DA5B2E318B5_RuntimeMethod_var;
extern const RuntimeMethod* ConfiguredTaskAwaitable_1_GetAwaiter_m84063760B3748345CCC1C5EE19101346F0EBC3D5_RuntimeMethod_var;
extern const RuntimeMethod* ConfiguredTaskAwaiter_GetResult_m05FB789E6901C9496B94A722DF99239A979A2623_RuntimeMethod_var;
extern const RuntimeMethod* ConfiguredTaskAwaiter_GetResult_m519FEE37CB8F736EE39E33E1C36D4A0EE8C2611C_RuntimeMethod_var;
extern const RuntimeMethod* ConfiguredTaskAwaiter_GetResult_mE3D98A933BFBF815C080F9C52674D4927E5C86FE_RuntimeMethod_var;
extern const RuntimeMethod* ConfiguredTaskAwaiter_get_IsCompleted_m1358F59D9346DF4A24793C6A211BC0AF3BC3AB04_RuntimeMethod_var;
extern const RuntimeMethod* ConfiguredTaskAwaiter_get_IsCompleted_m49530C37AAFA1E0E489AF08AB80C56EE30ACAA80_RuntimeMethod_var;
extern const RuntimeMethod* ConfiguredTaskAwaiter_get_IsCompleted_mCBD6C3EF024E1D7C538268F338BD0C4BA712FA92_RuntimeMethod_var;
extern const RuntimeMethod* ConnectionManagementElementCollection__ctor_mA29AB3A62411F032C5EF86B16E7633A386000C7B_RuntimeMethod_var;
extern const RuntimeMethod* ConnectionManagementSection__ctor_m1112C1BE1A9466BBCDD5C2ED20E80CDE03B46CA4_RuntimeMethod_var;
extern const RuntimeMethod* DefaultProxySection__ctor_m41EADE87065B61EDF32F67D2E62F04946886DAF6_RuntimeMethod_var;
extern const RuntimeMethod* DiagnosticsConfigurationHandler_Create_mCC7EF5B43B6913E2429B37EC5923202EBB20AA96_RuntimeMethod_var;
extern const RuntimeMethod* DiagnosticsConfigurationHandler__ctor_m185BC74B0225A3E16EEB4164923931B79AAA0CF0_RuntimeMethod_var;
extern const RuntimeMethod* Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var;
extern const RuntimeMethod* Dictionary_2_TryGetValue_m581BE284F430A27B34743D8438ADB091C70000FD_RuntimeMethod_var;
extern const RuntimeMethod* Dictionary_2__ctor_m6C6B59C12BD62E890CCF5AF0366E3DA0F29ADE6C_RuntimeMethod_var;
extern const RuntimeMethod* DomainNameHelper_IdnEquivalent_m459BFF3040F8E6BFE1CE1C6432A1343A2ECF2F57_RuntimeMethod_var;
extern const RuntimeMethod* DomainNameHelper_UnicodeEquivalent_mD5A7A659B82F1FBF7ABF30009117CFBF8BC4D55F_RuntimeMethod_var;
extern const RuntimeMethod* Func_1__ctor_m27E13FE1436758E3083686F1DC59AABC45F50527_RuntimeMethod_var;
extern const RuntimeMethod* HttpWebRequestElement__ctor_mE3A4CA43FCC72E10B6C7B4920F429C028765E233_RuntimeMethod_var;
extern const RuntimeMethod* IPAddress__ctor_m373D3930BEEA00EC628E98C5A13AE9BE2B2CEC84_RuntimeMethod_var;
extern const RuntimeMethod* IPAddress__ctor_mFD0AF2F6A282D1158DF3C34EF2E63B73814E7748_RuntimeMethod_var;
extern const RuntimeMethod* IPAddress_get_ScopeId_m941461DEBDECCD858F8D3165F3CA366A318064D9_RuntimeMethod_var;
extern const RuntimeMethod* Ipv6Element__ctor_m3F7DF39E6E51517E1429BAE43FA782BF3AF17965_RuntimeMethod_var;
extern const RuntimeMethod* IriHelper_EscapeUnescapeIri_m6DE347247CE35DB4CE3129BEC2179F0095D69239_RuntimeMethod_var;
extern const RuntimeMethod* KeyValuePair_2__ctor_m87D429E0B3923A6CF37A52F6F8C56B8FFFBE06D0_RuntimeMethod_var;
extern const RuntimeMethod* KeyValuePair_2_get_Key_mB735BC2D7232A3B45D667D28C17BA51AAAFFB4A1_RuntimeMethod_var;
extern const RuntimeMethod* KeyValuePair_2_get_Value_mF7293AF44DA0B8EB7B455A6227F7C36EEE9CF508_RuntimeMethod_var;
extern const RuntimeMethod* Marshal_PtrToStructure_Tisunitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF_m7EDA997C9EC997C0EC8D05B1150DD34723490193_RuntimeMethod_var;
extern const RuntimeMethod* MobileAuthenticatedStream_CheckThrow_m2AAEC9435176D4AA10890A896C5909330B23683E_RuntimeMethod_var;
extern const RuntimeMethod* MobileAuthenticatedStream_Seek_m2D799812EC327A4E25AA165B9966514B2B1475A6_RuntimeMethod_var;
extern const RuntimeMethod* MobileAuthenticatedStream_U3CInnerWriteU3Eb__67_0_mA67CDCE05B68516E41F5A6A8BF836B0AAE18D3B9_RuntimeMethod_var;
extern const RuntimeMethod* MobileAuthenticatedStream_set_Position_m5A309FE43C490AA7C1D9AE181D269CCA12B26260_RuntimeMethod_var;
extern const RuntimeMethod* NetSectionGroup__ctor_m566D7C9466957BCE3B8FE2D0EA2582CC2F95F269_RuntimeMethod_var;
extern const RuntimeMethod* Nullable_1_GetValueOrDefault_mE89BB8F302DF31EE202251F4746859285860B6B6_RuntimeMethod_var;
extern const RuntimeMethod* Nullable_1__ctor_m11F9C228CFDF836DDFCD7880C09CB4098AB9D7F2_RuntimeMethod_var;
extern const RuntimeMethod* Nullable_1_get_HasValue_mB664E2C41CADA8413EF8842E6601B8C696A7CE15_RuntimeMethod_var;
extern const RuntimeMethod* PerformanceCountersElement__ctor_m5A090222699B48BEB5FCC743198613FA8D081083_RuntimeMethod_var;
extern const RuntimeMethod* ProxyElement__ctor_mAFD852231DF0231726E41911409CB2725BE990AC_RuntimeMethod_var;
extern const RuntimeMethod* ServicePointManagerElement__ctor_m61B031714F8498D467B5A0958EE62F73E0C58EB7_RuntimeMethod_var;
extern const RuntimeMethod* SettingsSection__ctor_mC5F3D29EDC94D87B0B0542DE3702795441AC3005_RuntimeMethod_var;
extern const RuntimeMethod* SocketElement__ctor_m428B7094399223FFB9A5B62BF9D8CEA18A00A4C3_RuntimeMethod_var;
extern const RuntimeMethod* TaskToApm_End_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m7A78383A6B69F06EC91BDED0E0F6F3DE02960234_RuntimeMethod_var;
extern const RuntimeMethod* Task_1_ConfigureAwait_m4A70F9E8C6A5F7C412A2A2ECEC755007AA4A37A3_RuntimeMethod_var;
extern const RuntimeMethod* Task_1_ConfigureAwait_m75E697C17E49CB06391311471AC0E4FAB9C08CC4_RuntimeMethod_var;
extern const RuntimeMethod* Task_1_ConfigureAwait_m88DF0C431456B72CA5CF2534AE96969FDB86F982_RuntimeMethod_var;
extern const RuntimeMethod* Task_1_get_Result_m80E150EF93681DF361700DB6F78C976BE3EC871B_RuntimeMethod_var;
extern const RuntimeMethod* Task_Run_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m11A2B12F2DF2E9E71644C83D3A1601E8BCC4929A_RuntimeMethod_var;
extern const RuntimeMethod* U3CInnerReadU3Ed__25_MoveNext_m4AD149EC4A2E6FDA803D63FB72A354300DBD3D0D_RuntimeMethod_var;
extern const RuntimeMethod* U3CInnerReadU3Ed__66_MoveNext_mDF4D1A1689C7CC5B3E42580E12BA513E31959F96_RuntimeMethod_var;
extern const RuntimeMethod* U3CProcessOperationU3Ed__24_MoveNext_m8B20266FC4831A26E691F83D54C6903CF264999D_RuntimeMethod_var;
extern const RuntimeMethod* U3CStartOperationU3Ed__23_MoveNext_m8BB4BB3D517CE898003C10FE5B80D375FA4D30A2_RuntimeMethod_var;
extern const RuntimeMethod* U3CStartOperationU3Ed__58_MoveNext_m8484CAD90FCBB0E2C0D16FFA928EF43362834466_RuntimeMethod_var;
extern const RuntimeMethod* U3CU3Ec__DisplayClass66_0_U3CInnerReadU3Eb__0_mF1C5674011A7F38D3AE4A911BE1E8E36E5CE0348_RuntimeMethod_var;
extern const RuntimeMethod* WebProxyScriptElement__ctor_mC8AF875E80D96B18AA387148009AE1C630D83591_RuntimeMethod_var;
extern const RuntimeMethod* WebRequestModuleElementCollection__ctor_m8B880B0EAE7CEF1CB79CD264A9B6D62AB6A22961_RuntimeMethod_var;
extern const RuntimeMethod* WebRequestModulesSection__ctor_m0CAB6F207E3B29D65AEA38A6AC191873E3000F02_RuntimeMethod_var;
extern const RuntimeMethod* Win32Exception_GetObjectData_m7CD0D7A0806E4A9D8E78ADCBC616700379AB79E8_RuntimeMethod_var;
extern const uint32_t AsyncProtocolRequest_InnerRead_m902FA39460933B383900CB60BDF8CCFC96BF3499_MetadataUsageId;
extern const uint32_t AsyncProtocolRequest_ProcessOperation_m6DD0D7800F73C41BE9A5313737357801B22ED71D_MetadataUsageId;
extern const uint32_t AsyncProtocolRequest_StartOperation_mA13EA6B8ED143BC043F506815D05EB3F49F22682_MetadataUsageId;
extern const uint32_t AsyncProtocolRequest_ToString_m2D8062B5811D7B7A071CC451D2FD03E5BF61B529_MetadataUsageId;
extern const uint32_t AsyncProtocolRequest__ctor_mFE18CBE3FAA084FF6DF2AD8BECC2CA6DF4C6E769_MetadataUsageId;
extern const uint32_t AsyncReadOrWriteRequest_ToString_mDF6B2FA7AFA4E8B6571656E60CEF9BCFDCF05EDD_MetadataUsageId;
extern const uint32_t AsyncReadOrWriteRequest__ctor_m880E292B39EF76B9EDF3A5AB0A9A333A38A5575F_MetadataUsageId;
extern const uint32_t BaseNumberConverter__ctor_mD78E1C7E1F8A977BC7AD33DB0C1E5E32C60E8E83_MetadataUsageId;
extern const uint32_t BooleanConverter__ctor_m8293C29BCB7B90516FFE978C6295C0378C1BFEE4_MetadataUsageId;
extern const uint32_t BufferOffsetSize2_Reset_m4426212B4ECDC2D1487AE5B825918B747D947AB7_MetadataUsageId;
extern const uint32_t BufferOffsetSize2__ctor_m68156625CD993C66D5EA9C5194263DD9A4F59F3F_MetadataUsageId;
extern const uint32_t BufferOffsetSize_ToString_mEEB6528B305FE796622A87E8692C7132423D4655_MetadataUsageId;
extern const uint32_t BufferOffsetSize__ctor_m3DE692137428B2E6AB46008825FC5C1B63FDAF4F_MetadataUsageId;
extern const uint32_t BypassElementCollection__ctor_m867AF1FE6DBB2768AA199F45039C3E2641A9627A_MetadataUsageId;
extern const uint32_t CertHelper_AddCertificateToNativeChain_m223E545813937EC29B6EF428DAE3F45551728166_MetadataUsageId;
extern const uint32_t CertHelper_AddCertificatesToNativeChain_m1D22A9A50CA05E1F931B8B309E047092DDE01CFF_MetadataUsageId;
extern const uint32_t CollectionConverter__ctor_m86DBE477F4462418329C5CFB45C86A9420F852E7_MetadataUsageId;
extern const uint32_t ConnectionManagementElementCollection__ctor_mA29AB3A62411F032C5EF86B16E7633A386000C7B_MetadataUsageId;
extern const uint32_t ConnectionManagementSection__ctor_m1112C1BE1A9466BBCDD5C2ED20E80CDE03B46CA4_MetadataUsageId;
extern const uint32_t DefaultProxySection__ctor_m41EADE87065B61EDF32F67D2E62F04946886DAF6_MetadataUsageId;
extern const uint32_t DefaultValueAttribute_Equals_m337FB64F797F188E4815CF051E5DAB44E6E555D3_MetadataUsageId;
extern const uint32_t DiagnosticsConfigurationHandler_Create_mCC7EF5B43B6913E2429B37EC5923202EBB20AA96_MetadataUsageId;
extern const uint32_t DiagnosticsConfigurationHandler__ctor_m185BC74B0225A3E16EEB4164923931B79AAA0CF0_MetadataUsageId;
extern const uint32_t DomainNameHelper_IdnEquivalent_m439593BAF7C6C801F577E7C27B0C4FBB1772E49F_MetadataUsageId;
extern const uint32_t DomainNameHelper_IdnEquivalent_m459BFF3040F8E6BFE1CE1C6432A1343A2ECF2F57_MetadataUsageId;
extern const uint32_t DomainNameHelper_ParseCanonicalName_mFE738FD1237E2D9D9A1B27BA73F58B1689D451E4_MetadataUsageId;
extern const uint32_t DomainNameHelper_UnicodeEquivalent_mA80E5FF3AD6AFBB9FC257ED1C4F0D31C8F0EFEC3_MetadataUsageId;
extern const uint32_t DomainNameHelper_UnicodeEquivalent_mD5A7A659B82F1FBF7ABF30009117CFBF8BC4D55F_MetadataUsageId;
extern const uint32_t EditorBrowsableAttribute_Equals_m6F5EF9CC298CBDC862CBCA5187379A79635726FA_MetadataUsageId;
extern const uint32_t EnumConverter__ctor_mBA8B2E210D061A3CF86950F6D797E911A2E3C774_MetadataUsageId;
extern const uint32_t HttpWebRequestElement__ctor_mE3A4CA43FCC72E10B6C7B4920F429C028765E233_MetadataUsageId;
extern const uint32_t IOAsyncResult_get_AsyncWaitHandle_mBB8E187CEE0D781E6CC1C0E4576A82D02936B9C5_MetadataUsageId;
extern const uint32_t IPAddress_Equals_mADA54686760DE75E2C31B8651224FFEB019316D6_MetadataUsageId;
extern const uint32_t IPAddress_GetHashCode_m36CE850AFAAD382A29B7D72844989A3105565D7C_MetadataUsageId;
extern const uint32_t IPAddress__cctor_m4DF372012DF900E7BB489931296D0BFE4EBD4AEA_MetadataUsageId;
extern const uint32_t IPAddress__ctor_m373D3930BEEA00EC628E98C5A13AE9BE2B2CEC84_MetadataUsageId;
extern const uint32_t IPAddress__ctor_mCC321EEDA0750DA97447EB60529BCBCB4EA0249D_MetadataUsageId;
extern const uint32_t IPAddress__ctor_mFD0AF2F6A282D1158DF3C34EF2E63B73814E7748_MetadataUsageId;
extern const uint32_t IPAddress_get_ScopeId_m941461DEBDECCD858F8D3165F3CA366A318064D9_MetadataUsageId;
extern const uint32_t IPv4AddressHelper_ParseCanonicalName_m2A8C35045CE02D6FC2C4251F239D1C0074E0E813_MetadataUsageId;
extern const uint32_t IPv4AddressHelper_ParseNonCanonical_mDCD1CD7FB85C4FFBF3070B1435A0D632C1A7B97E_MetadataUsageId;
extern const uint32_t IPv6AddressHelper_CreateCanonicalName_m0B1C201DFADBEB58869E0BE8BFA967EEE64B096A_MetadataUsageId;
extern const uint32_t IPv6AddressHelper_FindCompressionRange_mE70B131DDA05D3059325246A5AB7F6029B6EF6BD_MetadataUsageId;
extern const uint32_t IPv6AddressHelper_InternalIsValid_m3BD7E7524455146D4464037DA3B65530E547AB7A_MetadataUsageId;
extern const uint32_t IPv6AddressHelper_ParseCanonicalName_m3944530A7B686031653F97824EF712424E0BEE14_MetadataUsageId;
extern const uint32_t IPv6AddressHelper_Parse_m36CE2F56465C4F9F7791E80E954C7C0ECBD16DFB_MetadataUsageId;
extern const uint32_t Ipv6Element__ctor_m3F7DF39E6E51517E1429BAE43FA782BF3AF17965_MetadataUsageId;
extern const uint32_t IriHelper_CheckIriUnicodeRange_m5ED29083C22062AEAB8B5787C9A27CFEEC397AD9_MetadataUsageId;
extern const uint32_t IriHelper_CheckIsReserved_m5C0A35BF0890852A3FC564618DB0836BBB6C0F1C_MetadataUsageId;
extern const uint32_t IriHelper_EscapeUnescapeIri_m6DE347247CE35DB4CE3129BEC2179F0095D69239_MetadataUsageId;
extern const uint32_t MobileAuthenticatedStream_BeginRead_m678B1BECC958CD3B67D66134E56AD3CAEB07019C_MetadataUsageId;
extern const uint32_t MobileAuthenticatedStream_BeginWrite_m01F98CCE1A968C5654028F266F3C648CF858864B_MetadataUsageId;
extern const uint32_t MobileAuthenticatedStream_CheckThrow_m2AAEC9435176D4AA10890A896C5909330B23683E_MetadataUsageId;
extern const uint32_t MobileAuthenticatedStream_Dispose_mB7DAA195CE82F2FA15AB576C961A7CE5D58C3106_MetadataUsageId;
extern const uint32_t MobileAuthenticatedStream_EndRead_m347ACCE77CCCE6738781A2B182949CBA72CF9143_MetadataUsageId;
extern const uint32_t MobileAuthenticatedStream_GetIOException_mE435E11E49448A2035BCABF04AA5F72F44DC26D4_MetadataUsageId;
extern const uint32_t MobileAuthenticatedStream_GetSSPIException_m574F0E57FDDC71287516A9908D7E57FC61A8ED27_MetadataUsageId;
extern const uint32_t MobileAuthenticatedStream_InnerRead_m0EDB58159985F661C68EBA26247546ED06999D0F_MetadataUsageId;
extern const uint32_t MobileAuthenticatedStream_InnerWrite_m36FEDC8E842C497B62D566D6392287270FD698AC_MetadataUsageId;
extern const uint32_t MobileAuthenticatedStream_ReadAsync_mA54D1973D54A2F0DB84CE3FB41EAE1974988BB32_MetadataUsageId;
extern const uint32_t MobileAuthenticatedStream_Read_mB273DD14EDCED08E88F57CB340B97A206BA7DDE1_MetadataUsageId;
extern const uint32_t MobileAuthenticatedStream_Seek_m2D799812EC327A4E25AA165B9966514B2B1475A6_MetadataUsageId;
extern const uint32_t MobileAuthenticatedStream_StartOperation_mB3763CD0086F3FB7D75AF3E10A9E1532FAD5BDB7_MetadataUsageId;
extern const uint32_t MobileAuthenticatedStream_WriteAsync_m2521D8A56CEC0EA00B99F2DD570FCCEDEBFF1807_MetadataUsageId;
extern const uint32_t MobileAuthenticatedStream_Write_m0264ACE9D90AFB72A1A27B6130DD1B2876334DDF_MetadataUsageId;
extern const uint32_t MobileAuthenticatedStream__cctor_mCC74CDBC64394AA7D5FE8CA0EE03EC0F11D7FEB6_MetadataUsageId;
extern const uint32_t MobileAuthenticatedStream__ctor_mF6BF50D6BFDEF283FF8036F5170281D29FDD7628_MetadataUsageId;
extern const uint32_t MobileAuthenticatedStream_set_Position_m5A309FE43C490AA7C1D9AE181D269CCA12B26260_MetadataUsageId;
extern const uint32_t MobileTlsContext_Dispose_m28EF01B1A0096B9A7820BAA0A77DB59C96A619DD_MetadataUsageId;
extern const uint32_t MonoTlsProviderFactory__cctor_mF95517B2A6920440ACFBE55DEA0EE9C1211BF26A_MetadataUsageId;
extern const uint32_t NetSectionGroup__ctor_m566D7C9466957BCE3B8FE2D0EA2582CC2F95F269_MetadataUsageId;
extern const uint32_t PerformanceCountersElement__ctor_m5A090222699B48BEB5FCC743198613FA8D081083_MetadataUsageId;
extern const uint32_t ProxyElement__ctor_mAFD852231DF0231726E41911409CB2725BE990AC_MetadataUsageId;
extern const uint32_t SR_GetString_m9548BD6DD52DFDB46372F211078AE57FA2401E39_MetadataUsageId;
extern const uint32_t ServicePointManagerElement__ctor_m61B031714F8498D467B5A0958EE62F73E0C58EB7_MetadataUsageId;
extern const uint32_t SettingsSection__ctor_mC5F3D29EDC94D87B0B0542DE3702795441AC3005_MetadataUsageId;
extern const uint32_t SocketElement__ctor_m428B7094399223FFB9A5B62BF9D8CEA18A00A4C3_MetadataUsageId;
extern const uint32_t StandardValuesCollection_CopyTo_mA319F11A11360C258FCEEF3C9EFA53D504BD7C3E_MetadataUsageId;
extern const uint32_t StandardValuesCollection_GetEnumerator_m40E0D69CDEDD7EDE2D9454C4A18AA4C91A96B95F_MetadataUsageId;
extern const uint32_t StandardValuesCollection_get_Count_mD0531EA777492E88EBEA8C6B8E8A12C4AFE5103A_MetadataUsageId;
extern const uint32_t StringConverter__ctor_m2718AC00691AF4A3AF8A8D64896BE3B5D58658B2_MetadataUsageId;
extern const uint32_t SystemCertificateValidator_CreateX509Chain_mB9965896005703ADC050BC1E6415D30FBDC42091_MetadataUsageId;
extern const uint32_t SystemCertificateValidator__cctor_mBF04D8E389B7377FC07044B9CF044A966C572193_MetadataUsageId;
extern const uint32_t TimeSpanConverter__ctor_m28E7294174F979EF86FEF9511474B0AB9431217B_MetadataUsageId;
extern const uint32_t TypeConverterAttribute_Equals_mDA74DFC28CC7ABC315407EDD1AAC14531C5F6AC4_MetadataUsageId;
extern const uint32_t TypeConverterAttribute__cctor_mB1A775F56A5933A17CF349BD466B0CCE66B1078A_MetadataUsageId;
extern const uint32_t TypeConverterAttribute__ctor_mD0795A29B6FD59978CAAC6DAF3AC7EC564C519A5_MetadataUsageId;
extern const uint32_t U3CInnerReadU3Ed__25_MoveNext_m4AD149EC4A2E6FDA803D63FB72A354300DBD3D0D_MetadataUsageId;
extern const uint32_t U3CInnerReadU3Ed__25_SetStateMachine_mEBFC49E17D2A224B493E390CDDD4D211EC701EC3_MetadataUsageId;
extern const uint32_t U3CInnerReadU3Ed__66_MoveNext_mDF4D1A1689C7CC5B3E42580E12BA513E31959F96_MetadataUsageId;
extern const uint32_t U3CInnerReadU3Ed__66_SetStateMachine_m27E2C20E7DC4AC988ADDF81E73A957C100424381_MetadataUsageId;
extern const uint32_t U3CInnerWriteU3Ed__67_MoveNext_mD7A964B6974275AD771AB15475A775E3393EE542_MetadataUsageId;
extern const uint32_t U3CProcessOperationU3Ed__24_MoveNext_m8B20266FC4831A26E691F83D54C6903CF264999D_MetadataUsageId;
extern const uint32_t U3CStartOperationU3Ed__23_MoveNext_m8BB4BB3D517CE898003C10FE5B80D375FA4D30A2_MetadataUsageId;
extern const uint32_t U3CStartOperationU3Ed__23_SetStateMachine_m0D9AFFD785F28428CCC846BD6A8FCFD38F9B0F9A_MetadataUsageId;
extern const uint32_t U3CStartOperationU3Ed__58_MoveNext_m8484CAD90FCBB0E2C0D16FFA928EF43362834466_MetadataUsageId;
extern const uint32_t U3CStartOperationU3Ed__58_SetStateMachine_m2DAE3399BC870A25A88A99F04B5C36A1FECC47BC_MetadataUsageId;
extern const uint32_t UnityTlsConversions_VerifyResultToPolicyErrror_m0F695E9B6732F71E1719D642E28A569B39A56BB7_MetadataUsageId;
extern const uint32_t UnityTlsProvider_CreateSslStreamInternal_mA8AD037F184BD564ACD9945D6EA3961971030F7E_MetadataUsageId;
extern const uint32_t UnityTlsProvider_ValidateCertificate_mB131CB7451246C50BC4F3612C768E09C1DF59AAF_MetadataUsageId;
extern const uint32_t UnityTlsProvider_get_ID_m69F15693799E92CF740F1632C811ABBDD9501CE3_MetadataUsageId;
extern const uint32_t UnityTlsProvider_get_Name_mD97B0783E337EF392796C2B54B2893132AE3CE6E_MetadataUsageId;
extern const uint32_t UnityTlsStream__ctor_mCFCFF6B6CCEB2BEBB904E26AB3BF22E888C75C3F_MetadataUsageId;
extern const uint32_t UnityTls_get_NativeInterface_mB7B44E93A89C271D6C65B44DE2EE9C4A5786E88E_MetadataUsageId;
extern const uint32_t WebProxyScriptElement__ctor_mC8AF875E80D96B18AA387148009AE1C630D83591_MetadataUsageId;
extern const uint32_t WebRequestModuleElementCollection__ctor_m8B880B0EAE7CEF1CB79CD264A9B6D62AB6A22961_MetadataUsageId;
extern const uint32_t WebRequestModulesSection__ctor_m0CAB6F207E3B29D65AEA38A6AC191873E3000F02_MetadataUsageId;
extern const uint32_t Win32Exception_GetErrorMessage_m6085687D868718B45289CB6AF6EDCB7F89D7350D_MetadataUsageId;
extern const uint32_t Win32Exception_GetObjectData_m7CD0D7A0806E4A9D8E78ADCBC616700379AB79E8_MetadataUsageId;
extern const uint32_t Win32Exception_InitializeErrorMessages_m4FE6F56C1C2CCB3F6468F0F9F5AD6E1B08673438_MetadataUsageId;
extern const uint32_t Win32Exception__cctor_m800CD9D0B3E3253B79A19B6646A7D28B29C3FC52_MetadataUsageId;
extern const uint32_t Win32Exception__ctor_m2BEA755F6AA536ADDDF07D83BD8297F02584F714_MetadataUsageId;
extern const uint32_t Win32Exception__ctor_mC03E215A1695ED64DDC50F4BE9F59966974DF759_MetadataUsageId;
extern const uint32_t Win32Exception__ctor_mC7ADDE9D2FEE4E17432F63C24EF1D872380094DB_MetadataUsageId;
extern const uint32_t unitytls_errorstate_raise_error_t_BeginInvoke_m430EC23CE6C0A221B234161D965EF48FDE1FE3D8_MetadataUsageId;
extern const uint32_t unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF_com_FromNativeMethodDefinition_MetadataUsageId;
extern const uint32_t unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF_pinvoke_FromNativeMethodDefinition_MetadataUsageId;
extern const uint32_t unitytls_key_parse_der_t_BeginInvoke_mDD3872296FB3905F2F22D5859F4521DF44C9F19B_MetadataUsageId;
extern const uint32_t unitytls_key_parse_pem_t_BeginInvoke_mE7922F635446EF1A040AEE37DD9CEA8694A7F771_MetadataUsageId;
extern const uint32_t unitytls_random_generate_bytes_t_BeginInvoke_m15487ED3C5CACFB6E0D760F7307847F531F1C3A4_MetadataUsageId;
extern const uint32_t unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2_com_FromNativeMethodDefinition_MetadataUsageId;
extern const uint32_t unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2_pinvoke_FromNativeMethodDefinition_MetadataUsageId;
extern const uint32_t unitytls_tlsctx_certificate_callback_BeginInvoke_m1D0AF1A60BC715B76CD3866BF3D555E5A6BFDD3E_MetadataUsageId;
extern const uint32_t unitytls_tlsctx_create_client_t_BeginInvoke_m7D9286CDD8953A99DC3DAF42531E08EC2921DF9D_MetadataUsageId;
extern const uint32_t unitytls_tlsctx_create_server_t_BeginInvoke_m7E60A8576D5C6BE7D9A61EBB5800D7FD402BF60D_MetadataUsageId;
extern const uint32_t unitytls_tlsctx_read_callback_BeginInvoke_mFDE9382397C181E07D075AA3FDE12B10ABC2C602_MetadataUsageId;
extern const uint32_t unitytls_tlsctx_read_t_BeginInvoke_mC8AA0588732E45F9402F7EC9319099ECFC5AFF8C_MetadataUsageId;
extern const uint32_t unitytls_tlsctx_server_require_client_authentication_t_BeginInvoke_m34DF29BAAD16625619D9BACCAE0916CCB1EE3814_MetadataUsageId;
extern const uint32_t unitytls_tlsctx_set_supported_ciphersuites_t_BeginInvoke_mAD583F841F317705AA1F100D5188AEBC4B997C1D_MetadataUsageId;
extern const uint32_t unitytls_tlsctx_trace_callback_BeginInvoke_mE23C8513E935C278BCC120731072893E86729CAA_MetadataUsageId;
extern const uint32_t unitytls_tlsctx_write_callback_BeginInvoke_m9FA442F88C3483A74C56938DD30BF36505666EDD_MetadataUsageId;
extern const uint32_t unitytls_tlsctx_write_t_BeginInvoke_mC17344DDFE83AF7AA95CE8EC00A0FD27ADBF1A9F_MetadataUsageId;
extern const uint32_t unitytls_tlsctx_x509verify_callback_BeginInvoke_m84DAB124121532AF9AECBA6E706A0914C4EA22F4_MetadataUsageId;
extern const uint32_t unitytls_x509_export_der_t_BeginInvoke_m33E6F88E2448002C8B74EC67E172034CCD11E4D5_MetadataUsageId;
extern const uint32_t unitytls_x509list_append_der_t_BeginInvoke_m68B8C0940627CA1AA436E080A70BE1F622A820E7_MetadataUsageId;
extern const uint32_t unitytls_x509list_append_t_BeginInvoke_mD3FEDD5F023253232CC8C48EF5CF2120ABD7147B_MetadataUsageId;
extern const uint32_t unitytls_x509list_get_x509_t_BeginInvoke_m5F1D80B8C015B87B91AE11A27A01ED586E9BFFEF_MetadataUsageId;
extern const uint32_t unitytls_x509verify_callback_BeginInvoke_m34DFF04B0DD733860B3BAE73885A90C6A936E26F_MetadataUsageId;
extern const uint32_t unitytls_x509verify_default_ca_t_BeginInvoke_m732CB4DFD706DEA2D1AFDD66A25C7A0A4F59641C_MetadataUsageId;
extern const uint32_t unitytls_x509verify_explicit_ca_t_BeginInvoke_m5A0BBE08CCACF01F690B9919087359A9FF7CF468_MetadataUsageId;
struct CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_com;
struct CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_pinvoke;
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_com;
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_pinvoke;
struct Exception_t_marshaled_com;
struct Exception_t_marshaled_pinvoke;
struct IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD;;
struct IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD_marshaled_com;
struct IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD_marshaled_com;;
struct IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD_marshaled_pinvoke;
struct IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD_marshaled_pinvoke;;
struct unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2;;
struct unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2_marshaled_pinvoke;
struct unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2_marshaled_pinvoke;;
struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821;
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2;
struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86;
struct Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F;
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A;
struct UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E;
#ifndef U3CMODULEU3E_TD81C26B45B0FBFD466203EB631D6270174412EE8_H
#define U3CMODULEU3E_TD81C26B45B0FBFD466203EB631D6270174412EE8_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <Module>
struct U3CModuleU3E_tD81C26B45B0FBFD466203EB631D6270174412EE8
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CMODULEU3E_TD81C26B45B0FBFD466203EB631D6270174412EE8_H
#ifndef RUNTIMEOBJECT_H
#define RUNTIMEOBJECT_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Object
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RUNTIMEOBJECT_H
#ifndef ASYNCPROTOCOLREQUEST_TC1F08D36027FBF2F0252CA11DD18AD0F3BE37027_H
#define ASYNCPROTOCOLREQUEST_TC1F08D36027FBF2F0252CA11DD18AD0F3BE37027_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Net.Security.AsyncProtocolRequest
struct AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 : public RuntimeObject
{
public:
// Mono.Net.Security.MobileAuthenticatedStream Mono.Net.Security.AsyncProtocolRequest::<Parent>k__BackingField
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * ___U3CParentU3Ek__BackingField_0;
// System.Boolean Mono.Net.Security.AsyncProtocolRequest::<RunSynchronously>k__BackingField
bool ___U3CRunSynchronouslyU3Ek__BackingField_1;
// System.Int32 Mono.Net.Security.AsyncProtocolRequest::<UserResult>k__BackingField
int32_t ___U3CUserResultU3Ek__BackingField_2;
// System.Int32 Mono.Net.Security.AsyncProtocolRequest::Started
int32_t ___Started_3;
// System.Int32 Mono.Net.Security.AsyncProtocolRequest::RequestedSize
int32_t ___RequestedSize_4;
// System.Int32 Mono.Net.Security.AsyncProtocolRequest::WriteRequested
int32_t ___WriteRequested_5;
// System.Object Mono.Net.Security.AsyncProtocolRequest::locker
RuntimeObject * ___locker_6;
public:
inline static int32_t get_offset_of_U3CParentU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027, ___U3CParentU3Ek__BackingField_0)); }
inline MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * get_U3CParentU3Ek__BackingField_0() const { return ___U3CParentU3Ek__BackingField_0; }
inline MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 ** get_address_of_U3CParentU3Ek__BackingField_0() { return &___U3CParentU3Ek__BackingField_0; }
inline void set_U3CParentU3Ek__BackingField_0(MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * value)
{
___U3CParentU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((&___U3CParentU3Ek__BackingField_0), value);
}
inline static int32_t get_offset_of_U3CRunSynchronouslyU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027, ___U3CRunSynchronouslyU3Ek__BackingField_1)); }
inline bool get_U3CRunSynchronouslyU3Ek__BackingField_1() const { return ___U3CRunSynchronouslyU3Ek__BackingField_1; }
inline bool* get_address_of_U3CRunSynchronouslyU3Ek__BackingField_1() { return &___U3CRunSynchronouslyU3Ek__BackingField_1; }
inline void set_U3CRunSynchronouslyU3Ek__BackingField_1(bool value)
{
___U3CRunSynchronouslyU3Ek__BackingField_1 = value;
}
inline static int32_t get_offset_of_U3CUserResultU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027, ___U3CUserResultU3Ek__BackingField_2)); }
inline int32_t get_U3CUserResultU3Ek__BackingField_2() const { return ___U3CUserResultU3Ek__BackingField_2; }
inline int32_t* get_address_of_U3CUserResultU3Ek__BackingField_2() { return &___U3CUserResultU3Ek__BackingField_2; }
inline void set_U3CUserResultU3Ek__BackingField_2(int32_t value)
{
___U3CUserResultU3Ek__BackingField_2 = value;
}
inline static int32_t get_offset_of_Started_3() { return static_cast<int32_t>(offsetof(AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027, ___Started_3)); }
inline int32_t get_Started_3() const { return ___Started_3; }
inline int32_t* get_address_of_Started_3() { return &___Started_3; }
inline void set_Started_3(int32_t value)
{
___Started_3 = value;
}
inline static int32_t get_offset_of_RequestedSize_4() { return static_cast<int32_t>(offsetof(AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027, ___RequestedSize_4)); }
inline int32_t get_RequestedSize_4() const { return ___RequestedSize_4; }
inline int32_t* get_address_of_RequestedSize_4() { return &___RequestedSize_4; }
inline void set_RequestedSize_4(int32_t value)
{
___RequestedSize_4 = value;
}
inline static int32_t get_offset_of_WriteRequested_5() { return static_cast<int32_t>(offsetof(AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027, ___WriteRequested_5)); }
inline int32_t get_WriteRequested_5() const { return ___WriteRequested_5; }
inline int32_t* get_address_of_WriteRequested_5() { return &___WriteRequested_5; }
inline void set_WriteRequested_5(int32_t value)
{
___WriteRequested_5 = value;
}
inline static int32_t get_offset_of_locker_6() { return static_cast<int32_t>(offsetof(AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027, ___locker_6)); }
inline RuntimeObject * get_locker_6() const { return ___locker_6; }
inline RuntimeObject ** get_address_of_locker_6() { return &___locker_6; }
inline void set_locker_6(RuntimeObject * value)
{
___locker_6 = value;
Il2CppCodeGenWriteBarrier((&___locker_6), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASYNCPROTOCOLREQUEST_TC1F08D36027FBF2F0252CA11DD18AD0F3BE37027_H
#ifndef ASYNCPROTOCOLRESULT_T957DDFF1A4D0CC662F930F5C9E09E4FA1FBBFBC0_H
#define ASYNCPROTOCOLRESULT_T957DDFF1A4D0CC662F930F5C9E09E4FA1FBBFBC0_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Net.Security.AsyncProtocolResult
struct AsyncProtocolResult_t957DDFF1A4D0CC662F930F5C9E09E4FA1FBBFBC0 : public RuntimeObject
{
public:
// System.Int32 Mono.Net.Security.AsyncProtocolResult::<UserResult>k__BackingField
int32_t ___U3CUserResultU3Ek__BackingField_0;
// System.Runtime.ExceptionServices.ExceptionDispatchInfo Mono.Net.Security.AsyncProtocolResult::<Error>k__BackingField
ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * ___U3CErrorU3Ek__BackingField_1;
public:
inline static int32_t get_offset_of_U3CUserResultU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(AsyncProtocolResult_t957DDFF1A4D0CC662F930F5C9E09E4FA1FBBFBC0, ___U3CUserResultU3Ek__BackingField_0)); }
inline int32_t get_U3CUserResultU3Ek__BackingField_0() const { return ___U3CUserResultU3Ek__BackingField_0; }
inline int32_t* get_address_of_U3CUserResultU3Ek__BackingField_0() { return &___U3CUserResultU3Ek__BackingField_0; }
inline void set_U3CUserResultU3Ek__BackingField_0(int32_t value)
{
___U3CUserResultU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3CErrorU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(AsyncProtocolResult_t957DDFF1A4D0CC662F930F5C9E09E4FA1FBBFBC0, ___U3CErrorU3Ek__BackingField_1)); }
inline ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * get_U3CErrorU3Ek__BackingField_1() const { return ___U3CErrorU3Ek__BackingField_1; }
inline ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A ** get_address_of_U3CErrorU3Ek__BackingField_1() { return &___U3CErrorU3Ek__BackingField_1; }
inline void set_U3CErrorU3Ek__BackingField_1(ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * value)
{
___U3CErrorU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((&___U3CErrorU3Ek__BackingField_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASYNCPROTOCOLRESULT_T957DDFF1A4D0CC662F930F5C9E09E4FA1FBBFBC0_H
#ifndef BUFFEROFFSETSIZE_TE5F3806876A6484AE343C760B6E04195202A2CC9_H
#define BUFFEROFFSETSIZE_TE5F3806876A6484AE343C760B6E04195202A2CC9_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Net.Security.BufferOffsetSize
struct BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 : public RuntimeObject
{
public:
// System.Byte[] Mono.Net.Security.BufferOffsetSize::Buffer
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___Buffer_0;
// System.Int32 Mono.Net.Security.BufferOffsetSize::Offset
int32_t ___Offset_1;
// System.Int32 Mono.Net.Security.BufferOffsetSize::Size
int32_t ___Size_2;
// System.Int32 Mono.Net.Security.BufferOffsetSize::TotalBytes
int32_t ___TotalBytes_3;
// System.Boolean Mono.Net.Security.BufferOffsetSize::Complete
bool ___Complete_4;
public:
inline static int32_t get_offset_of_Buffer_0() { return static_cast<int32_t>(offsetof(BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9, ___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((&___Buffer_0), value);
}
inline static int32_t get_offset_of_Offset_1() { return static_cast<int32_t>(offsetof(BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9, ___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_Size_2() { return static_cast<int32_t>(offsetof(BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9, ___Size_2)); }
inline int32_t get_Size_2() const { return ___Size_2; }
inline int32_t* get_address_of_Size_2() { return &___Size_2; }
inline void set_Size_2(int32_t value)
{
___Size_2 = value;
}
inline static int32_t get_offset_of_TotalBytes_3() { return static_cast<int32_t>(offsetof(BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9, ___TotalBytes_3)); }
inline int32_t get_TotalBytes_3() const { return ___TotalBytes_3; }
inline int32_t* get_address_of_TotalBytes_3() { return &___TotalBytes_3; }
inline void set_TotalBytes_3(int32_t value)
{
___TotalBytes_3 = value;
}
inline static int32_t get_offset_of_Complete_4() { return static_cast<int32_t>(offsetof(BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9, ___Complete_4)); }
inline bool get_Complete_4() const { return ___Complete_4; }
inline bool* get_address_of_Complete_4() { return &___Complete_4; }
inline void set_Complete_4(bool value)
{
___Complete_4 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // BUFFEROFFSETSIZE_TE5F3806876A6484AE343C760B6E04195202A2CC9_H
#ifndef U3CU3EC__DISPLAYCLASS66_0_T57BA0EF5D295E67BF00C608A8D3AC8A83A7606CC_H
#define U3CU3EC__DISPLAYCLASS66_0_T57BA0EF5D295E67BF00C608A8D3AC8A83A7606CC_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Net.Security.MobileAuthenticatedStream/<>c__DisplayClass66_0
struct U3CU3Ec__DisplayClass66_0_t57BA0EF5D295E67BF00C608A8D3AC8A83A7606CC : public RuntimeObject
{
public:
// Mono.Net.Security.MobileAuthenticatedStream Mono.Net.Security.MobileAuthenticatedStream/<>c__DisplayClass66_0::<>4__this
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * ___U3CU3E4__this_0;
// System.Int32 Mono.Net.Security.MobileAuthenticatedStream/<>c__DisplayClass66_0::len
int32_t ___len_1;
public:
inline static int32_t get_offset_of_U3CU3E4__this_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass66_0_t57BA0EF5D295E67BF00C608A8D3AC8A83A7606CC, ___U3CU3E4__this_0)); }
inline MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * get_U3CU3E4__this_0() const { return ___U3CU3E4__this_0; }
inline MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 ** get_address_of_U3CU3E4__this_0() { return &___U3CU3E4__this_0; }
inline void set_U3CU3E4__this_0(MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * value)
{
___U3CU3E4__this_0 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E4__this_0), value);
}
inline static int32_t get_offset_of_len_1() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass66_0_t57BA0EF5D295E67BF00C608A8D3AC8A83A7606CC, ___len_1)); }
inline int32_t get_len_1() const { return ___len_1; }
inline int32_t* get_address_of_len_1() { return &___len_1; }
inline void set_len_1(int32_t value)
{
___len_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CU3EC__DISPLAYCLASS66_0_T57BA0EF5D295E67BF00C608A8D3AC8A83A7606CC_H
#ifndef MOBILETLSCONTEXT_TFC684CF3275DF6B898319625C4F3A4D537B8A127_H
#define MOBILETLSCONTEXT_TFC684CF3275DF6B898319625C4F3A4D537B8A127_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Net.Security.MobileTlsContext
struct MobileTlsContext_tFC684CF3275DF6B898319625C4F3A4D537B8A127 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MOBILETLSCONTEXT_TFC684CF3275DF6B898319625C4F3A4D537B8A127_H
#ifndef MONOTLSPROVIDER_TDCD056C5BBBE59ED6BAF63F25952B406C1143C27_H
#define MONOTLSPROVIDER_TDCD056C5BBBE59ED6BAF63F25952B406C1143C27_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Interface.MonoTlsProvider
struct MonoTlsProvider_tDCD056C5BBBE59ED6BAF63F25952B406C1143C27 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MONOTLSPROVIDER_TDCD056C5BBBE59ED6BAF63F25952B406C1143C27_H
#ifndef MONOTLSSETTINGS_T5905C7532C92A87F88C8F3440165DF8AA49A1BBF_H
#define MONOTLSSETTINGS_T5905C7532C92A87F88C8F3440165DF8AA49A1BBF_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Interface.MonoTlsSettings
struct MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF : public RuntimeObject
{
public:
// System.Security.Cryptography.X509Certificates.X509CertificateCollection Mono.Security.Interface.MonoTlsSettings::<TrustAnchors>k__BackingField
X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 * ___U3CTrustAnchorsU3Ek__BackingField_0;
public:
inline static int32_t get_offset_of_U3CTrustAnchorsU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF, ___U3CTrustAnchorsU3Ek__BackingField_0)); }
inline X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 * get_U3CTrustAnchorsU3Ek__BackingField_0() const { return ___U3CTrustAnchorsU3Ek__BackingField_0; }
inline X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 ** get_address_of_U3CTrustAnchorsU3Ek__BackingField_0() { return &___U3CTrustAnchorsU3Ek__BackingField_0; }
inline void set_U3CTrustAnchorsU3Ek__BackingField_0(X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 * value)
{
___U3CTrustAnchorsU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((&___U3CTrustAnchorsU3Ek__BackingField_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MONOTLSSETTINGS_T5905C7532C92A87F88C8F3440165DF8AA49A1BBF_H
#ifndef CERTHELPER_T603EE753116E3B83EC5DB1CAC369F51DF9DC5A60_H
#define CERTHELPER_T603EE753116E3B83EC5DB1CAC369F51DF9DC5A60_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.CertHelper
struct CertHelper_t603EE753116E3B83EC5DB1CAC369F51DF9DC5A60 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CERTHELPER_T603EE753116E3B83EC5DB1CAC369F51DF9DC5A60_H
#ifndef UNITYTLS_TFD87351846C601F716262E015308C6BB66000DEC_H
#define UNITYTLS_TFD87351846C601F716262E015308C6BB66000DEC_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls
struct UnityTls_tFD87351846C601F716262E015308C6BB66000DEC : public RuntimeObject
{
public:
public:
};
struct UnityTls_tFD87351846C601F716262E015308C6BB66000DEC_StaticFields
{
public:
// Mono.Unity.UnityTls/unitytls_interface_struct Mono.Unity.UnityTls::marshalledInterface
unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF * ___marshalledInterface_0;
public:
inline static int32_t get_offset_of_marshalledInterface_0() { return static_cast<int32_t>(offsetof(UnityTls_tFD87351846C601F716262E015308C6BB66000DEC_StaticFields, ___marshalledInterface_0)); }
inline unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF * get_marshalledInterface_0() const { return ___marshalledInterface_0; }
inline unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF ** get_address_of_marshalledInterface_0() { return &___marshalledInterface_0; }
inline void set_marshalledInterface_0(unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF * value)
{
___marshalledInterface_0 = value;
Il2CppCodeGenWriteBarrier((&___marshalledInterface_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLS_TFD87351846C601F716262E015308C6BB66000DEC_H
#ifndef UNITYTLSCONVERSIONS_T46A0D2F58860BE3A6D8ACA6B2B1D3A579B2F8F71_H
#define UNITYTLSCONVERSIONS_T46A0D2F58860BE3A6D8ACA6B2B1D3A579B2F8F71_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTlsConversions
struct UnityTlsConversions_t46A0D2F58860BE3A6D8ACA6B2B1D3A579B2F8F71 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLSCONVERSIONS_T46A0D2F58860BE3A6D8ACA6B2B1D3A579B2F8F71_H
#ifndef SR_TF6C259D0ADF333DE679CC02B526A504888CDD8AC_H
#define SR_TF6C259D0ADF333DE679CC02B526A504888CDD8AC_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// SR
struct SR_tF6C259D0ADF333DE679CC02B526A504888CDD8AC : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SR_TF6C259D0ADF333DE679CC02B526A504888CDD8AC_H
struct Il2CppArrayBounds;
#ifndef RUNTIMEARRAY_H
#define RUNTIMEARRAY_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Array
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RUNTIMEARRAY_H
#ifndef ATTRIBUTE_TF048C13FB3C8CFCC53F82290E4A3F621089F9A74_H
#define ATTRIBUTE_TF048C13FB3C8CFCC53F82290E4A3F621089F9A74_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Attribute
struct Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ATTRIBUTE_TF048C13FB3C8CFCC53F82290E4A3F621089F9A74_H
#ifndef COLLECTIONBASE_TF5D4583FF325726066A9803839A04E9C0084ED01_H
#define COLLECTIONBASE_TF5D4583FF325726066A9803839A04E9C0084ED01_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.CollectionBase
struct CollectionBase_tF5D4583FF325726066A9803839A04E9C0084ED01 : public RuntimeObject
{
public:
// System.Collections.ArrayList System.Collections.CollectionBase::list
ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * ___list_0;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(CollectionBase_tF5D4583FF325726066A9803839A04E9C0084ED01, ___list_0)); }
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * get_list_0() const { return ___list_0; }
inline ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(ArrayList_t4131E0C29C7E1B9BC9DFE37BEC41A5EB1481ADF4 * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((&___list_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // COLLECTIONBASE_TF5D4583FF325726066A9803839A04E9C0084ED01_H
#ifndef DICTIONARY_2_T4EFE6A1D6502662B911688316C6920444A18CF0C_H
#define DICTIONARY_2_T4EFE6A1D6502662B911688316C6920444A18CF0C_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.Dictionary`2<System.Int32,System.String>
struct Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C : public RuntimeObject
{
public:
// System.Int32[] System.Collections.Generic.Dictionary`2::buckets
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0;
// System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries
EntryU5BU5D_t69CCD9E4E7050700879917C9CB7E5E88F89235B1* ___entries_1;
// System.Int32 System.Collections.Generic.Dictionary`2::count
int32_t ___count_2;
// System.Int32 System.Collections.Generic.Dictionary`2::version
int32_t ___version_3;
// System.Int32 System.Collections.Generic.Dictionary`2::freeList
int32_t ___freeList_4;
// System.Int32 System.Collections.Generic.Dictionary`2::freeCount
int32_t ___freeCount_5;
// System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer
RuntimeObject* ___comparer_6;
// System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys
KeyCollection_t2F25BAF319A40DA5241F076B74BB90B72F16822F * ___keys_7;
// System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
ValueCollection_tEDEE983AB5C1AD1832785DBAED94462C85312A6F * ___values_8;
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
RuntimeObject * ____syncRoot_9;
public:
inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C, ___buckets_0)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; }
inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___buckets_0 = value;
Il2CppCodeGenWriteBarrier((&___buckets_0), value);
}
inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C, ___entries_1)); }
inline EntryU5BU5D_t69CCD9E4E7050700879917C9CB7E5E88F89235B1* get_entries_1() const { return ___entries_1; }
inline EntryU5BU5D_t69CCD9E4E7050700879917C9CB7E5E88F89235B1** get_address_of_entries_1() { return &___entries_1; }
inline void set_entries_1(EntryU5BU5D_t69CCD9E4E7050700879917C9CB7E5E88F89235B1* value)
{
___entries_1 = value;
Il2CppCodeGenWriteBarrier((&___entries_1), value);
}
inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C, ___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_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C, ___version_3)); }
inline int32_t get_version_3() const { return ___version_3; }
inline int32_t* get_address_of_version_3() { return &___version_3; }
inline void set_version_3(int32_t value)
{
___version_3 = value;
}
inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C, ___freeList_4)); }
inline int32_t get_freeList_4() const { return ___freeList_4; }
inline int32_t* get_address_of_freeList_4() { return &___freeList_4; }
inline void set_freeList_4(int32_t value)
{
___freeList_4 = value;
}
inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C, ___freeCount_5)); }
inline int32_t get_freeCount_5() const { return ___freeCount_5; }
inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; }
inline void set_freeCount_5(int32_t value)
{
___freeCount_5 = value;
}
inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C, ___comparer_6)); }
inline RuntimeObject* get_comparer_6() const { return ___comparer_6; }
inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; }
inline void set_comparer_6(RuntimeObject* value)
{
___comparer_6 = value;
Il2CppCodeGenWriteBarrier((&___comparer_6), value);
}
inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C, ___keys_7)); }
inline KeyCollection_t2F25BAF319A40DA5241F076B74BB90B72F16822F * get_keys_7() const { return ___keys_7; }
inline KeyCollection_t2F25BAF319A40DA5241F076B74BB90B72F16822F ** get_address_of_keys_7() { return &___keys_7; }
inline void set_keys_7(KeyCollection_t2F25BAF319A40DA5241F076B74BB90B72F16822F * value)
{
___keys_7 = value;
Il2CppCodeGenWriteBarrier((&___keys_7), value);
}
inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C, ___values_8)); }
inline ValueCollection_tEDEE983AB5C1AD1832785DBAED94462C85312A6F * get_values_8() const { return ___values_8; }
inline ValueCollection_tEDEE983AB5C1AD1832785DBAED94462C85312A6F ** get_address_of_values_8() { return &___values_8; }
inline void set_values_8(ValueCollection_tEDEE983AB5C1AD1832785DBAED94462C85312A6F * value)
{
___values_8 = value;
Il2CppCodeGenWriteBarrier((&___values_8), value);
}
inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C, ____syncRoot_9)); }
inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; }
inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; }
inline void set__syncRoot_9(RuntimeObject * value)
{
____syncRoot_9 = value;
Il2CppCodeGenWriteBarrier((&____syncRoot_9), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DICTIONARY_2_T4EFE6A1D6502662B911688316C6920444A18CF0C_H
#ifndef STANDARDVALUESCOLLECTION_T929677712574EF02F5C4CF4C38E070841C20BDA3_H
#define STANDARDVALUESCOLLECTION_T929677712574EF02F5C4CF4C38E070841C20BDA3_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ComponentModel.TypeConverter/StandardValuesCollection
struct StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 : public RuntimeObject
{
public:
// System.Collections.ICollection System.ComponentModel.TypeConverter/StandardValuesCollection::values
RuntimeObject* ___values_0;
// System.Array System.ComponentModel.TypeConverter/StandardValuesCollection::valueArray
RuntimeArray * ___valueArray_1;
public:
inline static int32_t get_offset_of_values_0() { return static_cast<int32_t>(offsetof(StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3, ___values_0)); }
inline RuntimeObject* get_values_0() const { return ___values_0; }
inline RuntimeObject** get_address_of_values_0() { return &___values_0; }
inline void set_values_0(RuntimeObject* value)
{
___values_0 = value;
Il2CppCodeGenWriteBarrier((&___values_0), value);
}
inline static int32_t get_offset_of_valueArray_1() { return static_cast<int32_t>(offsetof(StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3, ___valueArray_1)); }
inline RuntimeArray * get_valueArray_1() const { return ___valueArray_1; }
inline RuntimeArray ** get_address_of_valueArray_1() { return &___valueArray_1; }
inline void set_valueArray_1(RuntimeArray * value)
{
___valueArray_1 = value;
Il2CppCodeGenWriteBarrier((&___valueArray_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // STANDARDVALUESCOLLECTION_T929677712574EF02F5C4CF4C38E070841C20BDA3_H
#ifndef CONFIGURATIONELEMENT_TF3ECE1CDFD3304CD9D595E758276F014321AD9FE_H
#define CONFIGURATIONELEMENT_TF3ECE1CDFD3304CD9D595E758276F014321AD9FE_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Configuration.ConfigurationElement
struct ConfigurationElement_tF3ECE1CDFD3304CD9D595E758276F014321AD9FE : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONFIGURATIONELEMENT_TF3ECE1CDFD3304CD9D595E758276F014321AD9FE_H
#ifndef CONFIGURATIONSECTIONGROUP_T64AC7C211E1F868ABF1BD604DA43815564D304E6_H
#define CONFIGURATIONSECTIONGROUP_T64AC7C211E1F868ABF1BD604DA43815564D304E6_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Configuration.ConfigurationSectionGroup
struct ConfigurationSectionGroup_t64AC7C211E1F868ABF1BD604DA43815564D304E6 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONFIGURATIONSECTIONGROUP_T64AC7C211E1F868ABF1BD604DA43815564D304E6_H
#ifndef DIAGNOSTICSCONFIGURATIONHANDLER_T885EAAD2DCF9678F16E3BB296E307868ECE68239_H
#define DIAGNOSTICSCONFIGURATIONHANDLER_T885EAAD2DCF9678F16E3BB296E307868ECE68239_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Diagnostics.DiagnosticsConfigurationHandler
struct DiagnosticsConfigurationHandler_t885EAAD2DCF9678F16E3BB296E307868ECE68239 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DIAGNOSTICSCONFIGURATIONHANDLER_T885EAAD2DCF9678F16E3BB296E307868ECE68239_H
#ifndef DOMAINNAMEHELPER_T352A81605233B6F36A5E382453C798E1AD4389CC_H
#define DOMAINNAMEHELPER_T352A81605233B6F36A5E382453C798E1AD4389CC_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.DomainNameHelper
struct DomainNameHelper_t352A81605233B6F36A5E382453C798E1AD4389CC : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DOMAINNAMEHELPER_T352A81605233B6F36A5E382453C798E1AD4389CC_H
#ifndef EXCEPTION_T_H
#define EXCEPTION_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&____className_1), 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((&____message_2), 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((&____data_3), 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((&____innerException_4), 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((&____helpURL_5), 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((&____stackTrace_6), 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((&____stackTraceString_7), 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((&____remoteStackTraceString_8), 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((&____dynamicMethods_10), 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((&____source_12), 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((&____safeSerializationManager_13), 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((&___captured_traces_14), 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((&___native_trace_ips_15), 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((&___s_EDILock_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// 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;
intptr_t* ___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;
intptr_t* ___native_trace_ips_15;
};
#endif // EXCEPTION_T_H
#ifndef CULTUREINFO_T345AC6924134F039ED9A11F3E03F8E91B6A3225F_H
#define CULTUREINFO_T345AC6924134F039ED9A11F3E03F8E91B6A3225F_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Globalization.CultureInfo
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F : public RuntimeObject
{
public:
// System.Boolean System.Globalization.CultureInfo::m_isReadOnly
bool ___m_isReadOnly_3;
// System.Int32 System.Globalization.CultureInfo::cultureID
int32_t ___cultureID_4;
// System.Int32 System.Globalization.CultureInfo::parent_lcid
int32_t ___parent_lcid_5;
// System.Int32 System.Globalization.CultureInfo::datetime_index
int32_t ___datetime_index_6;
// System.Int32 System.Globalization.CultureInfo::number_index
int32_t ___number_index_7;
// System.Int32 System.Globalization.CultureInfo::default_calendar_type
int32_t ___default_calendar_type_8;
// System.Boolean System.Globalization.CultureInfo::m_useUserOverride
bool ___m_useUserOverride_9;
// System.Globalization.NumberFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::numInfo
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numInfo_10;
// System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::dateTimeInfo
DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dateTimeInfo_11;
// System.Globalization.TextInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::textInfo
TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * ___textInfo_12;
// System.String System.Globalization.CultureInfo::m_name
String_t* ___m_name_13;
// System.String System.Globalization.CultureInfo::englishname
String_t* ___englishname_14;
// System.String System.Globalization.CultureInfo::nativename
String_t* ___nativename_15;
// System.String System.Globalization.CultureInfo::iso3lang
String_t* ___iso3lang_16;
// System.String System.Globalization.CultureInfo::iso2lang
String_t* ___iso2lang_17;
// System.String System.Globalization.CultureInfo::win3lang
String_t* ___win3lang_18;
// System.String System.Globalization.CultureInfo::territory
String_t* ___territory_19;
// System.String[] System.Globalization.CultureInfo::native_calendar_names
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___native_calendar_names_20;
// System.Globalization.CompareInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::compareInfo
CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ___compareInfo_21;
// System.Void* System.Globalization.CultureInfo::textinfo_data
void* ___textinfo_data_22;
// System.Int32 System.Globalization.CultureInfo::m_dataItem
int32_t ___m_dataItem_23;
// System.Globalization.Calendar System.Globalization.CultureInfo::calendar
Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * ___calendar_24;
// System.Globalization.CultureInfo System.Globalization.CultureInfo::parent_culture
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___parent_culture_25;
// System.Boolean System.Globalization.CultureInfo::constructed
bool ___constructed_26;
// System.Byte[] System.Globalization.CultureInfo::cached_serialized_form
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___cached_serialized_form_27;
// System.Globalization.CultureData System.Globalization.CultureInfo::m_cultureData
CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * ___m_cultureData_28;
// System.Boolean System.Globalization.CultureInfo::m_isInherited
bool ___m_isInherited_29;
public:
inline static int32_t get_offset_of_m_isReadOnly_3() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_isReadOnly_3)); }
inline bool get_m_isReadOnly_3() const { return ___m_isReadOnly_3; }
inline bool* get_address_of_m_isReadOnly_3() { return &___m_isReadOnly_3; }
inline void set_m_isReadOnly_3(bool value)
{
___m_isReadOnly_3 = value;
}
inline static int32_t get_offset_of_cultureID_4() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___cultureID_4)); }
inline int32_t get_cultureID_4() const { return ___cultureID_4; }
inline int32_t* get_address_of_cultureID_4() { return &___cultureID_4; }
inline void set_cultureID_4(int32_t value)
{
___cultureID_4 = value;
}
inline static int32_t get_offset_of_parent_lcid_5() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___parent_lcid_5)); }
inline int32_t get_parent_lcid_5() const { return ___parent_lcid_5; }
inline int32_t* get_address_of_parent_lcid_5() { return &___parent_lcid_5; }
inline void set_parent_lcid_5(int32_t value)
{
___parent_lcid_5 = value;
}
inline static int32_t get_offset_of_datetime_index_6() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___datetime_index_6)); }
inline int32_t get_datetime_index_6() const { return ___datetime_index_6; }
inline int32_t* get_address_of_datetime_index_6() { return &___datetime_index_6; }
inline void set_datetime_index_6(int32_t value)
{
___datetime_index_6 = value;
}
inline static int32_t get_offset_of_number_index_7() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___number_index_7)); }
inline int32_t get_number_index_7() const { return ___number_index_7; }
inline int32_t* get_address_of_number_index_7() { return &___number_index_7; }
inline void set_number_index_7(int32_t value)
{
___number_index_7 = value;
}
inline static int32_t get_offset_of_default_calendar_type_8() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___default_calendar_type_8)); }
inline int32_t get_default_calendar_type_8() const { return ___default_calendar_type_8; }
inline int32_t* get_address_of_default_calendar_type_8() { return &___default_calendar_type_8; }
inline void set_default_calendar_type_8(int32_t value)
{
___default_calendar_type_8 = value;
}
inline static int32_t get_offset_of_m_useUserOverride_9() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_useUserOverride_9)); }
inline bool get_m_useUserOverride_9() const { return ___m_useUserOverride_9; }
inline bool* get_address_of_m_useUserOverride_9() { return &___m_useUserOverride_9; }
inline void set_m_useUserOverride_9(bool value)
{
___m_useUserOverride_9 = value;
}
inline static int32_t get_offset_of_numInfo_10() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___numInfo_10)); }
inline NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * get_numInfo_10() const { return ___numInfo_10; }
inline NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 ** get_address_of_numInfo_10() { return &___numInfo_10; }
inline void set_numInfo_10(NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * value)
{
___numInfo_10 = value;
Il2CppCodeGenWriteBarrier((&___numInfo_10), value);
}
inline static int32_t get_offset_of_dateTimeInfo_11() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___dateTimeInfo_11)); }
inline DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * get_dateTimeInfo_11() const { return ___dateTimeInfo_11; }
inline DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F ** get_address_of_dateTimeInfo_11() { return &___dateTimeInfo_11; }
inline void set_dateTimeInfo_11(DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * value)
{
___dateTimeInfo_11 = value;
Il2CppCodeGenWriteBarrier((&___dateTimeInfo_11), value);
}
inline static int32_t get_offset_of_textInfo_12() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___textInfo_12)); }
inline TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * get_textInfo_12() const { return ___textInfo_12; }
inline TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 ** get_address_of_textInfo_12() { return &___textInfo_12; }
inline void set_textInfo_12(TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * value)
{
___textInfo_12 = value;
Il2CppCodeGenWriteBarrier((&___textInfo_12), value);
}
inline static int32_t get_offset_of_m_name_13() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_name_13)); }
inline String_t* get_m_name_13() const { return ___m_name_13; }
inline String_t** get_address_of_m_name_13() { return &___m_name_13; }
inline void set_m_name_13(String_t* value)
{
___m_name_13 = value;
Il2CppCodeGenWriteBarrier((&___m_name_13), value);
}
inline static int32_t get_offset_of_englishname_14() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___englishname_14)); }
inline String_t* get_englishname_14() const { return ___englishname_14; }
inline String_t** get_address_of_englishname_14() { return &___englishname_14; }
inline void set_englishname_14(String_t* value)
{
___englishname_14 = value;
Il2CppCodeGenWriteBarrier((&___englishname_14), value);
}
inline static int32_t get_offset_of_nativename_15() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___nativename_15)); }
inline String_t* get_nativename_15() const { return ___nativename_15; }
inline String_t** get_address_of_nativename_15() { return &___nativename_15; }
inline void set_nativename_15(String_t* value)
{
___nativename_15 = value;
Il2CppCodeGenWriteBarrier((&___nativename_15), value);
}
inline static int32_t get_offset_of_iso3lang_16() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___iso3lang_16)); }
inline String_t* get_iso3lang_16() const { return ___iso3lang_16; }
inline String_t** get_address_of_iso3lang_16() { return &___iso3lang_16; }
inline void set_iso3lang_16(String_t* value)
{
___iso3lang_16 = value;
Il2CppCodeGenWriteBarrier((&___iso3lang_16), value);
}
inline static int32_t get_offset_of_iso2lang_17() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___iso2lang_17)); }
inline String_t* get_iso2lang_17() const { return ___iso2lang_17; }
inline String_t** get_address_of_iso2lang_17() { return &___iso2lang_17; }
inline void set_iso2lang_17(String_t* value)
{
___iso2lang_17 = value;
Il2CppCodeGenWriteBarrier((&___iso2lang_17), value);
}
inline static int32_t get_offset_of_win3lang_18() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___win3lang_18)); }
inline String_t* get_win3lang_18() const { return ___win3lang_18; }
inline String_t** get_address_of_win3lang_18() { return &___win3lang_18; }
inline void set_win3lang_18(String_t* value)
{
___win3lang_18 = value;
Il2CppCodeGenWriteBarrier((&___win3lang_18), value);
}
inline static int32_t get_offset_of_territory_19() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___territory_19)); }
inline String_t* get_territory_19() const { return ___territory_19; }
inline String_t** get_address_of_territory_19() { return &___territory_19; }
inline void set_territory_19(String_t* value)
{
___territory_19 = value;
Il2CppCodeGenWriteBarrier((&___territory_19), value);
}
inline static int32_t get_offset_of_native_calendar_names_20() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___native_calendar_names_20)); }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_native_calendar_names_20() const { return ___native_calendar_names_20; }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_native_calendar_names_20() { return &___native_calendar_names_20; }
inline void set_native_calendar_names_20(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
{
___native_calendar_names_20 = value;
Il2CppCodeGenWriteBarrier((&___native_calendar_names_20), value);
}
inline static int32_t get_offset_of_compareInfo_21() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___compareInfo_21)); }
inline CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * get_compareInfo_21() const { return ___compareInfo_21; }
inline CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 ** get_address_of_compareInfo_21() { return &___compareInfo_21; }
inline void set_compareInfo_21(CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * value)
{
___compareInfo_21 = value;
Il2CppCodeGenWriteBarrier((&___compareInfo_21), value);
}
inline static int32_t get_offset_of_textinfo_data_22() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___textinfo_data_22)); }
inline void* get_textinfo_data_22() const { return ___textinfo_data_22; }
inline void** get_address_of_textinfo_data_22() { return &___textinfo_data_22; }
inline void set_textinfo_data_22(void* value)
{
___textinfo_data_22 = value;
}
inline static int32_t get_offset_of_m_dataItem_23() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_dataItem_23)); }
inline int32_t get_m_dataItem_23() const { return ___m_dataItem_23; }
inline int32_t* get_address_of_m_dataItem_23() { return &___m_dataItem_23; }
inline void set_m_dataItem_23(int32_t value)
{
___m_dataItem_23 = value;
}
inline static int32_t get_offset_of_calendar_24() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___calendar_24)); }
inline Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * get_calendar_24() const { return ___calendar_24; }
inline Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 ** get_address_of_calendar_24() { return &___calendar_24; }
inline void set_calendar_24(Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * value)
{
___calendar_24 = value;
Il2CppCodeGenWriteBarrier((&___calendar_24), value);
}
inline static int32_t get_offset_of_parent_culture_25() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___parent_culture_25)); }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_parent_culture_25() const { return ___parent_culture_25; }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_parent_culture_25() { return &___parent_culture_25; }
inline void set_parent_culture_25(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value)
{
___parent_culture_25 = value;
Il2CppCodeGenWriteBarrier((&___parent_culture_25), value);
}
inline static int32_t get_offset_of_constructed_26() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___constructed_26)); }
inline bool get_constructed_26() const { return ___constructed_26; }
inline bool* get_address_of_constructed_26() { return &___constructed_26; }
inline void set_constructed_26(bool value)
{
___constructed_26 = value;
}
inline static int32_t get_offset_of_cached_serialized_form_27() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___cached_serialized_form_27)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_cached_serialized_form_27() const { return ___cached_serialized_form_27; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_cached_serialized_form_27() { return &___cached_serialized_form_27; }
inline void set_cached_serialized_form_27(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___cached_serialized_form_27 = value;
Il2CppCodeGenWriteBarrier((&___cached_serialized_form_27), value);
}
inline static int32_t get_offset_of_m_cultureData_28() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_cultureData_28)); }
inline CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * get_m_cultureData_28() const { return ___m_cultureData_28; }
inline CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD ** get_address_of_m_cultureData_28() { return &___m_cultureData_28; }
inline void set_m_cultureData_28(CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD * value)
{
___m_cultureData_28 = value;
Il2CppCodeGenWriteBarrier((&___m_cultureData_28), value);
}
inline static int32_t get_offset_of_m_isInherited_29() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F, ___m_isInherited_29)); }
inline bool get_m_isInherited_29() const { return ___m_isInherited_29; }
inline bool* get_address_of_m_isInherited_29() { return &___m_isInherited_29; }
inline void set_m_isInherited_29(bool value)
{
___m_isInherited_29 = value;
}
};
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields
{
public:
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::invariant_culture_info
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___invariant_culture_info_0;
// System.Object System.Globalization.CultureInfo::shared_table_lock
RuntimeObject * ___shared_table_lock_1;
// System.Globalization.CultureInfo System.Globalization.CultureInfo::default_current_culture
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___default_current_culture_2;
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentUICulture
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___s_DefaultThreadCurrentUICulture_33;
// System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentCulture
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___s_DefaultThreadCurrentCulture_34;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_number
Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B * ___shared_by_number_35;
// System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo> System.Globalization.CultureInfo::shared_by_name
Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 * ___shared_by_name_36;
// System.Boolean System.Globalization.CultureInfo::IsTaiwanSku
bool ___IsTaiwanSku_37;
public:
inline static int32_t get_offset_of_invariant_culture_info_0() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___invariant_culture_info_0)); }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_invariant_culture_info_0() const { return ___invariant_culture_info_0; }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_invariant_culture_info_0() { return &___invariant_culture_info_0; }
inline void set_invariant_culture_info_0(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value)
{
___invariant_culture_info_0 = value;
Il2CppCodeGenWriteBarrier((&___invariant_culture_info_0), value);
}
inline static int32_t get_offset_of_shared_table_lock_1() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___shared_table_lock_1)); }
inline RuntimeObject * get_shared_table_lock_1() const { return ___shared_table_lock_1; }
inline RuntimeObject ** get_address_of_shared_table_lock_1() { return &___shared_table_lock_1; }
inline void set_shared_table_lock_1(RuntimeObject * value)
{
___shared_table_lock_1 = value;
Il2CppCodeGenWriteBarrier((&___shared_table_lock_1), value);
}
inline static int32_t get_offset_of_default_current_culture_2() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___default_current_culture_2)); }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_default_current_culture_2() const { return ___default_current_culture_2; }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_default_current_culture_2() { return &___default_current_culture_2; }
inline void set_default_current_culture_2(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value)
{
___default_current_culture_2 = value;
Il2CppCodeGenWriteBarrier((&___default_current_culture_2), value);
}
inline static int32_t get_offset_of_s_DefaultThreadCurrentUICulture_33() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___s_DefaultThreadCurrentUICulture_33)); }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_s_DefaultThreadCurrentUICulture_33() const { return ___s_DefaultThreadCurrentUICulture_33; }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_s_DefaultThreadCurrentUICulture_33() { return &___s_DefaultThreadCurrentUICulture_33; }
inline void set_s_DefaultThreadCurrentUICulture_33(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value)
{
___s_DefaultThreadCurrentUICulture_33 = value;
Il2CppCodeGenWriteBarrier((&___s_DefaultThreadCurrentUICulture_33), value);
}
inline static int32_t get_offset_of_s_DefaultThreadCurrentCulture_34() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___s_DefaultThreadCurrentCulture_34)); }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * get_s_DefaultThreadCurrentCulture_34() const { return ___s_DefaultThreadCurrentCulture_34; }
inline CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F ** get_address_of_s_DefaultThreadCurrentCulture_34() { return &___s_DefaultThreadCurrentCulture_34; }
inline void set_s_DefaultThreadCurrentCulture_34(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * value)
{
___s_DefaultThreadCurrentCulture_34 = value;
Il2CppCodeGenWriteBarrier((&___s_DefaultThreadCurrentCulture_34), value);
}
inline static int32_t get_offset_of_shared_by_number_35() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___shared_by_number_35)); }
inline Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B * get_shared_by_number_35() const { return ___shared_by_number_35; }
inline Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B ** get_address_of_shared_by_number_35() { return &___shared_by_number_35; }
inline void set_shared_by_number_35(Dictionary_2_tC88A56872F7C79DBB9582D4F3FC22ED5D8E0B98B * value)
{
___shared_by_number_35 = value;
Il2CppCodeGenWriteBarrier((&___shared_by_number_35), value);
}
inline static int32_t get_offset_of_shared_by_name_36() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___shared_by_name_36)); }
inline Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 * get_shared_by_name_36() const { return ___shared_by_name_36; }
inline Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 ** get_address_of_shared_by_name_36() { return &___shared_by_name_36; }
inline void set_shared_by_name_36(Dictionary_2_tBA5388DBB42BF620266F9A48E8B859BBBB224E25 * value)
{
___shared_by_name_36 = value;
Il2CppCodeGenWriteBarrier((&___shared_by_name_36), value);
}
inline static int32_t get_offset_of_IsTaiwanSku_37() { return static_cast<int32_t>(offsetof(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_StaticFields, ___IsTaiwanSku_37)); }
inline bool get_IsTaiwanSku_37() const { return ___IsTaiwanSku_37; }
inline bool* get_address_of_IsTaiwanSku_37() { return &___IsTaiwanSku_37; }
inline void set_IsTaiwanSku_37(bool value)
{
___IsTaiwanSku_37 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Globalization.CultureInfo
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_pinvoke
{
int32_t ___m_isReadOnly_3;
int32_t ___cultureID_4;
int32_t ___parent_lcid_5;
int32_t ___datetime_index_6;
int32_t ___number_index_7;
int32_t ___default_calendar_type_8;
int32_t ___m_useUserOverride_9;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numInfo_10;
DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dateTimeInfo_11;
TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * ___textInfo_12;
char* ___m_name_13;
char* ___englishname_14;
char* ___nativename_15;
char* ___iso3lang_16;
char* ___iso2lang_17;
char* ___win3lang_18;
char* ___territory_19;
char** ___native_calendar_names_20;
CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ___compareInfo_21;
void* ___textinfo_data_22;
int32_t ___m_dataItem_23;
Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * ___calendar_24;
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_pinvoke* ___parent_culture_25;
int32_t ___constructed_26;
uint8_t* ___cached_serialized_form_27;
CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_pinvoke* ___m_cultureData_28;
int32_t ___m_isInherited_29;
};
// Native definition for COM marshalling of System.Globalization.CultureInfo
struct CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_com
{
int32_t ___m_isReadOnly_3;
int32_t ___cultureID_4;
int32_t ___parent_lcid_5;
int32_t ___datetime_index_6;
int32_t ___number_index_7;
int32_t ___default_calendar_type_8;
int32_t ___m_useUserOverride_9;
NumberFormatInfo_tFDF57037EBC5BC833D0A53EF0327B805994860A8 * ___numInfo_10;
DateTimeFormatInfo_tF4BB3AA482C2F772D2A9022F78BF8727830FAF5F * ___dateTimeInfo_11;
TextInfo_t5F1E697CB6A7E5EC80F0DC3A968B9B4A70C291D8 * ___textInfo_12;
Il2CppChar* ___m_name_13;
Il2CppChar* ___englishname_14;
Il2CppChar* ___nativename_15;
Il2CppChar* ___iso3lang_16;
Il2CppChar* ___iso2lang_17;
Il2CppChar* ___win3lang_18;
Il2CppChar* ___territory_19;
Il2CppChar** ___native_calendar_names_20;
CompareInfo_tB9A071DBC11AC00AF2EA2066D0C2AE1DCB1865D1 * ___compareInfo_21;
void* ___textinfo_data_22;
int32_t ___m_dataItem_23;
Calendar_tF55A785ACD277504CF0D2F2C6AD56F76C6E91BD5 * ___calendar_24;
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_marshaled_com* ___parent_culture_25;
int32_t ___constructed_26;
uint8_t* ___cached_serialized_form_27;
CultureData_tF43B080FFA6EB278F4F289BCDA3FB74B6C208ECD_marshaled_com* ___m_cultureData_28;
int32_t ___m_isInherited_29;
};
#endif // CULTUREINFO_T345AC6924134F039ED9A11F3E03F8E91B6A3225F_H
#ifndef IDNMAPPING_TAF779B2798D263F30F4F4DAF1F21363201256EDC_H
#define IDNMAPPING_TAF779B2798D263F30F4F4DAF1F21363201256EDC_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Globalization.IdnMapping
struct IdnMapping_tAF779B2798D263F30F4F4DAF1F21363201256EDC : public RuntimeObject
{
public:
// System.Boolean System.Globalization.IdnMapping::allow_unassigned
bool ___allow_unassigned_0;
// System.Boolean System.Globalization.IdnMapping::use_std3
bool ___use_std3_1;
// System.Globalization.Punycode System.Globalization.IdnMapping::puny
Punycode_t603C1A89205A5CB0C0A24B1EB2C95F0A5655D0CA * ___puny_2;
public:
inline static int32_t get_offset_of_allow_unassigned_0() { return static_cast<int32_t>(offsetof(IdnMapping_tAF779B2798D263F30F4F4DAF1F21363201256EDC, ___allow_unassigned_0)); }
inline bool get_allow_unassigned_0() const { return ___allow_unassigned_0; }
inline bool* get_address_of_allow_unassigned_0() { return &___allow_unassigned_0; }
inline void set_allow_unassigned_0(bool value)
{
___allow_unassigned_0 = value;
}
inline static int32_t get_offset_of_use_std3_1() { return static_cast<int32_t>(offsetof(IdnMapping_tAF779B2798D263F30F4F4DAF1F21363201256EDC, ___use_std3_1)); }
inline bool get_use_std3_1() const { return ___use_std3_1; }
inline bool* get_address_of_use_std3_1() { return &___use_std3_1; }
inline void set_use_std3_1(bool value)
{
___use_std3_1 = value;
}
inline static int32_t get_offset_of_puny_2() { return static_cast<int32_t>(offsetof(IdnMapping_tAF779B2798D263F30F4F4DAF1F21363201256EDC, ___puny_2)); }
inline Punycode_t603C1A89205A5CB0C0A24B1EB2C95F0A5655D0CA * get_puny_2() const { return ___puny_2; }
inline Punycode_t603C1A89205A5CB0C0A24B1EB2C95F0A5655D0CA ** get_address_of_puny_2() { return &___puny_2; }
inline void set_puny_2(Punycode_t603C1A89205A5CB0C0A24B1EB2C95F0A5655D0CA * value)
{
___puny_2 = value;
Il2CppCodeGenWriteBarrier((&___puny_2), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // IDNMAPPING_TAF779B2798D263F30F4F4DAF1F21363201256EDC_H
#ifndef IOASYNCRESULT_TB02ABC485035B18A731F1B61FB27EE17F4B792AD_H
#define IOASYNCRESULT_TB02ABC485035B18A731F1B61FB27EE17F4B792AD_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IOAsyncResult
struct IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD : public RuntimeObject
{
public:
// System.AsyncCallback System.IOAsyncResult::async_callback
AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___async_callback_0;
// System.Object System.IOAsyncResult::async_state
RuntimeObject * ___async_state_1;
// System.Threading.ManualResetEvent System.IOAsyncResult::wait_handle
ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * ___wait_handle_2;
// System.Boolean System.IOAsyncResult::completed_synchronously
bool ___completed_synchronously_3;
// System.Boolean System.IOAsyncResult::completed
bool ___completed_4;
public:
inline static int32_t get_offset_of_async_callback_0() { return static_cast<int32_t>(offsetof(IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD, ___async_callback_0)); }
inline AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * get_async_callback_0() const { return ___async_callback_0; }
inline AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 ** get_address_of_async_callback_0() { return &___async_callback_0; }
inline void set_async_callback_0(AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * value)
{
___async_callback_0 = value;
Il2CppCodeGenWriteBarrier((&___async_callback_0), value);
}
inline static int32_t get_offset_of_async_state_1() { return static_cast<int32_t>(offsetof(IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD, ___async_state_1)); }
inline RuntimeObject * get_async_state_1() const { return ___async_state_1; }
inline RuntimeObject ** get_address_of_async_state_1() { return &___async_state_1; }
inline void set_async_state_1(RuntimeObject * value)
{
___async_state_1 = value;
Il2CppCodeGenWriteBarrier((&___async_state_1), value);
}
inline static int32_t get_offset_of_wait_handle_2() { return static_cast<int32_t>(offsetof(IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD, ___wait_handle_2)); }
inline ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * get_wait_handle_2() const { return ___wait_handle_2; }
inline ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 ** get_address_of_wait_handle_2() { return &___wait_handle_2; }
inline void set_wait_handle_2(ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * value)
{
___wait_handle_2 = value;
Il2CppCodeGenWriteBarrier((&___wait_handle_2), value);
}
inline static int32_t get_offset_of_completed_synchronously_3() { return static_cast<int32_t>(offsetof(IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD, ___completed_synchronously_3)); }
inline bool get_completed_synchronously_3() const { return ___completed_synchronously_3; }
inline bool* get_address_of_completed_synchronously_3() { return &___completed_synchronously_3; }
inline void set_completed_synchronously_3(bool value)
{
___completed_synchronously_3 = value;
}
inline static int32_t get_offset_of_completed_4() { return static_cast<int32_t>(offsetof(IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD, ___completed_4)); }
inline bool get_completed_4() const { return ___completed_4; }
inline bool* get_address_of_completed_4() { return &___completed_4; }
inline void set_completed_4(bool value)
{
___completed_4 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.IOAsyncResult
struct IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD_marshaled_pinvoke
{
Il2CppMethodPointer ___async_callback_0;
Il2CppIUnknown* ___async_state_1;
ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * ___wait_handle_2;
int32_t ___completed_synchronously_3;
int32_t ___completed_4;
};
// Native definition for COM marshalling of System.IOAsyncResult
struct IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD_marshaled_com
{
Il2CppMethodPointer ___async_callback_0;
Il2CppIUnknown* ___async_state_1;
ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * ___wait_handle_2;
int32_t ___completed_synchronously_3;
int32_t ___completed_4;
};
#endif // IOASYNCRESULT_TB02ABC485035B18A731F1B61FB27EE17F4B792AD_H
#ifndef IPV4ADDRESSHELPER_T06EA480809796F398A6E625E72409FEAB7FBE651_H
#define IPV4ADDRESSHELPER_T06EA480809796F398A6E625E72409FEAB7FBE651_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IPv4AddressHelper
struct IPv4AddressHelper_t06EA480809796F398A6E625E72409FEAB7FBE651 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // IPV4ADDRESSHELPER_T06EA480809796F398A6E625E72409FEAB7FBE651_H
#ifndef IPV6ADDRESSHELPER_T9ADF3294E97B0B635821927A0946F92BF1E3A35A_H
#define IPV6ADDRESSHELPER_T9ADF3294E97B0B635821927A0946F92BF1E3A35A_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IPv6AddressHelper
struct IPv6AddressHelper_t9ADF3294E97B0B635821927A0946F92BF1E3A35A : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // IPV6ADDRESSHELPER_T9ADF3294E97B0B635821927A0946F92BF1E3A35A_H
#ifndef IRIHELPER_T1F587A9DDB97B13CE32CBD7C4834654EB7060D99_H
#define IRIHELPER_T1F587A9DDB97B13CE32CBD7C4834654EB7060D99_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IriHelper
struct IriHelper_t1F587A9DDB97B13CE32CBD7C4834654EB7060D99 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // IRIHELPER_T1F587A9DDB97B13CE32CBD7C4834654EB7060D99_H
#ifndef MARSHALBYREFOBJECT_TC4577953D0A44D0AB8597CFA868E01C858B1C9AF_H
#define MARSHALBYREFOBJECT_TC4577953D0A44D0AB8597CFA868E01C858B1C9AF_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.MarshalByRefObject
struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF : public RuntimeObject
{
public:
// System.Object System.MarshalByRefObject::_identity
RuntimeObject * ____identity_0;
public:
inline static int32_t get_offset_of__identity_0() { return static_cast<int32_t>(offsetof(MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF, ____identity_0)); }
inline RuntimeObject * get__identity_0() const { return ____identity_0; }
inline RuntimeObject ** get_address_of__identity_0() { return &____identity_0; }
inline void set__identity_0(RuntimeObject * value)
{
____identity_0 = value;
Il2CppCodeGenWriteBarrier((&____identity_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.MarshalByRefObject
struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_pinvoke
{
Il2CppIUnknown* ____identity_0;
};
// Native definition for COM marshalling of System.MarshalByRefObject
struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_com
{
Il2CppIUnknown* ____identity_0;
};
#endif // MARSHALBYREFOBJECT_TC4577953D0A44D0AB8597CFA868E01C858B1C9AF_H
#ifndef ENDPOINT_TD87FCEF2780A951E8CE8D808C345FBF2C088D980_H
#define ENDPOINT_TD87FCEF2780A951E8CE8D808C345FBF2C088D980_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.EndPoint
struct EndPoint_tD87FCEF2780A951E8CE8D808C345FBF2C088D980 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENDPOINT_TD87FCEF2780A951E8CE8D808C345FBF2C088D980_H
#ifndef MEMBERINFO_T_H
#define MEMBERINFO_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.MemberInfo
struct MemberInfo_t : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MEMBERINFO_T_H
#ifndef EXCEPTIONDISPATCHINFO_T0C54083F3909DAF986A4DEAA7C047559531E0E2A_H
#define EXCEPTIONDISPATCHINFO_T0C54083F3909DAF986A4DEAA7C047559531E0E2A_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.ExceptionServices.ExceptionDispatchInfo
struct ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A : public RuntimeObject
{
public:
// System.Exception System.Runtime.ExceptionServices.ExceptionDispatchInfo::m_Exception
Exception_t * ___m_Exception_0;
// System.Object System.Runtime.ExceptionServices.ExceptionDispatchInfo::m_stackTrace
RuntimeObject * ___m_stackTrace_1;
public:
inline static int32_t get_offset_of_m_Exception_0() { return static_cast<int32_t>(offsetof(ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A, ___m_Exception_0)); }
inline Exception_t * get_m_Exception_0() const { return ___m_Exception_0; }
inline Exception_t ** get_address_of_m_Exception_0() { return &___m_Exception_0; }
inline void set_m_Exception_0(Exception_t * value)
{
___m_Exception_0 = value;
Il2CppCodeGenWriteBarrier((&___m_Exception_0), value);
}
inline static int32_t get_offset_of_m_stackTrace_1() { return static_cast<int32_t>(offsetof(ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A, ___m_stackTrace_1)); }
inline RuntimeObject * get_m_stackTrace_1() const { return ___m_stackTrace_1; }
inline RuntimeObject ** get_address_of_m_stackTrace_1() { return &___m_stackTrace_1; }
inline void set_m_stackTrace_1(RuntimeObject * value)
{
___m_stackTrace_1 = value;
Il2CppCodeGenWriteBarrier((&___m_stackTrace_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EXCEPTIONDISPATCHINFO_T0C54083F3909DAF986A4DEAA7C047559531E0E2A_H
#ifndef SERIALIZATIONINFO_T1BB80E9C9DEA52DBF464487234B045E2930ADA26_H
#define SERIALIZATIONINFO_T1BB80E9C9DEA52DBF464487234B045E2930ADA26_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.Serialization.SerializationInfo
struct SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 : public RuntimeObject
{
public:
// System.String[] System.Runtime.Serialization.SerializationInfo::m_members
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___m_members_0;
// System.Object[] System.Runtime.Serialization.SerializationInfo::m_data
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___m_data_1;
// System.Type[] System.Runtime.Serialization.SerializationInfo::m_types
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___m_types_2;
// System.Collections.Generic.Dictionary`2<System.String,System.Int32> System.Runtime.Serialization.SerializationInfo::m_nameToIndex
Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB * ___m_nameToIndex_3;
// System.Int32 System.Runtime.Serialization.SerializationInfo::m_currMember
int32_t ___m_currMember_4;
// System.Runtime.Serialization.IFormatterConverter System.Runtime.Serialization.SerializationInfo::m_converter
RuntimeObject* ___m_converter_5;
// System.String System.Runtime.Serialization.SerializationInfo::m_fullTypeName
String_t* ___m_fullTypeName_6;
// System.String System.Runtime.Serialization.SerializationInfo::m_assemName
String_t* ___m_assemName_7;
// System.Type System.Runtime.Serialization.SerializationInfo::objectType
Type_t * ___objectType_8;
// System.Boolean System.Runtime.Serialization.SerializationInfo::isFullTypeNameSetExplicit
bool ___isFullTypeNameSetExplicit_9;
// System.Boolean System.Runtime.Serialization.SerializationInfo::isAssemblyNameSetExplicit
bool ___isAssemblyNameSetExplicit_10;
// System.Boolean System.Runtime.Serialization.SerializationInfo::requireSameTokenInPartialTrust
bool ___requireSameTokenInPartialTrust_11;
public:
inline static int32_t get_offset_of_m_members_0() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_members_0)); }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_m_members_0() const { return ___m_members_0; }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_m_members_0() { return &___m_members_0; }
inline void set_m_members_0(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
{
___m_members_0 = value;
Il2CppCodeGenWriteBarrier((&___m_members_0), value);
}
inline static int32_t get_offset_of_m_data_1() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_data_1)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get_m_data_1() const { return ___m_data_1; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of_m_data_1() { return &___m_data_1; }
inline void set_m_data_1(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
___m_data_1 = value;
Il2CppCodeGenWriteBarrier((&___m_data_1), value);
}
inline static int32_t get_offset_of_m_types_2() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_types_2)); }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_m_types_2() const { return ___m_types_2; }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_m_types_2() { return &___m_types_2; }
inline void set_m_types_2(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value)
{
___m_types_2 = value;
Il2CppCodeGenWriteBarrier((&___m_types_2), value);
}
inline static int32_t get_offset_of_m_nameToIndex_3() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_nameToIndex_3)); }
inline Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB * get_m_nameToIndex_3() const { return ___m_nameToIndex_3; }
inline Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB ** get_address_of_m_nameToIndex_3() { return &___m_nameToIndex_3; }
inline void set_m_nameToIndex_3(Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB * value)
{
___m_nameToIndex_3 = value;
Il2CppCodeGenWriteBarrier((&___m_nameToIndex_3), value);
}
inline static int32_t get_offset_of_m_currMember_4() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_currMember_4)); }
inline int32_t get_m_currMember_4() const { return ___m_currMember_4; }
inline int32_t* get_address_of_m_currMember_4() { return &___m_currMember_4; }
inline void set_m_currMember_4(int32_t value)
{
___m_currMember_4 = value;
}
inline static int32_t get_offset_of_m_converter_5() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_converter_5)); }
inline RuntimeObject* get_m_converter_5() const { return ___m_converter_5; }
inline RuntimeObject** get_address_of_m_converter_5() { return &___m_converter_5; }
inline void set_m_converter_5(RuntimeObject* value)
{
___m_converter_5 = value;
Il2CppCodeGenWriteBarrier((&___m_converter_5), value);
}
inline static int32_t get_offset_of_m_fullTypeName_6() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_fullTypeName_6)); }
inline String_t* get_m_fullTypeName_6() const { return ___m_fullTypeName_6; }
inline String_t** get_address_of_m_fullTypeName_6() { return &___m_fullTypeName_6; }
inline void set_m_fullTypeName_6(String_t* value)
{
___m_fullTypeName_6 = value;
Il2CppCodeGenWriteBarrier((&___m_fullTypeName_6), value);
}
inline static int32_t get_offset_of_m_assemName_7() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___m_assemName_7)); }
inline String_t* get_m_assemName_7() const { return ___m_assemName_7; }
inline String_t** get_address_of_m_assemName_7() { return &___m_assemName_7; }
inline void set_m_assemName_7(String_t* value)
{
___m_assemName_7 = value;
Il2CppCodeGenWriteBarrier((&___m_assemName_7), value);
}
inline static int32_t get_offset_of_objectType_8() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___objectType_8)); }
inline Type_t * get_objectType_8() const { return ___objectType_8; }
inline Type_t ** get_address_of_objectType_8() { return &___objectType_8; }
inline void set_objectType_8(Type_t * value)
{
___objectType_8 = value;
Il2CppCodeGenWriteBarrier((&___objectType_8), value);
}
inline static int32_t get_offset_of_isFullTypeNameSetExplicit_9() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___isFullTypeNameSetExplicit_9)); }
inline bool get_isFullTypeNameSetExplicit_9() const { return ___isFullTypeNameSetExplicit_9; }
inline bool* get_address_of_isFullTypeNameSetExplicit_9() { return &___isFullTypeNameSetExplicit_9; }
inline void set_isFullTypeNameSetExplicit_9(bool value)
{
___isFullTypeNameSetExplicit_9 = value;
}
inline static int32_t get_offset_of_isAssemblyNameSetExplicit_10() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___isAssemblyNameSetExplicit_10)); }
inline bool get_isAssemblyNameSetExplicit_10() const { return ___isAssemblyNameSetExplicit_10; }
inline bool* get_address_of_isAssemblyNameSetExplicit_10() { return &___isAssemblyNameSetExplicit_10; }
inline void set_isAssemblyNameSetExplicit_10(bool value)
{
___isAssemblyNameSetExplicit_10 = value;
}
inline static int32_t get_offset_of_requireSameTokenInPartialTrust_11() { return static_cast<int32_t>(offsetof(SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26, ___requireSameTokenInPartialTrust_11)); }
inline bool get_requireSameTokenInPartialTrust_11() const { return ___requireSameTokenInPartialTrust_11; }
inline bool* get_address_of_requireSameTokenInPartialTrust_11() { return &___requireSameTokenInPartialTrust_11; }
inline void set_requireSameTokenInPartialTrust_11(bool value)
{
___requireSameTokenInPartialTrust_11 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SERIALIZATIONINFO_T1BB80E9C9DEA52DBF464487234B045E2930ADA26_H
#ifndef X509CERTIFICATE_T6859B8914E252B6831D6F59A2A720CD23F7FA7B2_H
#define X509CERTIFICATE_T6859B8914E252B6831D6F59A2A720CD23F7FA7B2_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Security.Cryptography.X509Certificates.X509Certificate
struct X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 : public RuntimeObject
{
public:
// System.Security.Cryptography.X509Certificates.X509CertificateImpl System.Security.Cryptography.X509Certificates.X509Certificate::impl
X509CertificateImpl_t89610BFDE87B872143A4623CFC7F17275EB48313 * ___impl_0;
// System.Boolean System.Security.Cryptography.X509Certificates.X509Certificate::hideDates
bool ___hideDates_1;
// System.String System.Security.Cryptography.X509Certificates.X509Certificate::issuer_name
String_t* ___issuer_name_2;
// System.String System.Security.Cryptography.X509Certificates.X509Certificate::subject_name
String_t* ___subject_name_3;
public:
inline static int32_t get_offset_of_impl_0() { return static_cast<int32_t>(offsetof(X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2, ___impl_0)); }
inline X509CertificateImpl_t89610BFDE87B872143A4623CFC7F17275EB48313 * get_impl_0() const { return ___impl_0; }
inline X509CertificateImpl_t89610BFDE87B872143A4623CFC7F17275EB48313 ** get_address_of_impl_0() { return &___impl_0; }
inline void set_impl_0(X509CertificateImpl_t89610BFDE87B872143A4623CFC7F17275EB48313 * value)
{
___impl_0 = value;
Il2CppCodeGenWriteBarrier((&___impl_0), value);
}
inline static int32_t get_offset_of_hideDates_1() { return static_cast<int32_t>(offsetof(X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2, ___hideDates_1)); }
inline bool get_hideDates_1() const { return ___hideDates_1; }
inline bool* get_address_of_hideDates_1() { return &___hideDates_1; }
inline void set_hideDates_1(bool value)
{
___hideDates_1 = value;
}
inline static int32_t get_offset_of_issuer_name_2() { return static_cast<int32_t>(offsetof(X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2, ___issuer_name_2)); }
inline String_t* get_issuer_name_2() const { return ___issuer_name_2; }
inline String_t** get_address_of_issuer_name_2() { return &___issuer_name_2; }
inline void set_issuer_name_2(String_t* value)
{
___issuer_name_2 = value;
Il2CppCodeGenWriteBarrier((&___issuer_name_2), value);
}
inline static int32_t get_offset_of_subject_name_3() { return static_cast<int32_t>(offsetof(X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2, ___subject_name_3)); }
inline String_t* get_subject_name_3() const { return ___subject_name_3; }
inline String_t** get_address_of_subject_name_3() { return &___subject_name_3; }
inline void set_subject_name_3(String_t* value)
{
___subject_name_3 = value;
Il2CppCodeGenWriteBarrier((&___subject_name_3), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // X509CERTIFICATE_T6859B8914E252B6831D6F59A2A720CD23F7FA7B2_H
#ifndef X509CERTIFICATEENUMERATOR_T99AEDECD77BFC6083D8C98F9760BF7876D5B886B_H
#define X509CERTIFICATEENUMERATOR_T99AEDECD77BFC6083D8C98F9760BF7876D5B886B_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Security.Cryptography.X509Certificates.X509CertificateCollection/X509CertificateEnumerator
struct X509CertificateEnumerator_t99AEDECD77BFC6083D8C98F9760BF7876D5B886B : public RuntimeObject
{
public:
// System.Collections.IEnumerator System.Security.Cryptography.X509Certificates.X509CertificateCollection/X509CertificateEnumerator::enumerator
RuntimeObject* ___enumerator_0;
public:
inline static int32_t get_offset_of_enumerator_0() { return static_cast<int32_t>(offsetof(X509CertificateEnumerator_t99AEDECD77BFC6083D8C98F9760BF7876D5B886B, ___enumerator_0)); }
inline RuntimeObject* get_enumerator_0() const { return ___enumerator_0; }
inline RuntimeObject** get_address_of_enumerator_0() { return &___enumerator_0; }
inline void set_enumerator_0(RuntimeObject* value)
{
___enumerator_0 = value;
Il2CppCodeGenWriteBarrier((&___enumerator_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // X509CERTIFICATEENUMERATOR_T99AEDECD77BFC6083D8C98F9760BF7876D5B886B_H
#ifndef X509CERTIFICATEIMPL_T89610BFDE87B872143A4623CFC7F17275EB48313_H
#define X509CERTIFICATEIMPL_T89610BFDE87B872143A4623CFC7F17275EB48313_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Security.Cryptography.X509Certificates.X509CertificateImpl
struct X509CertificateImpl_t89610BFDE87B872143A4623CFC7F17275EB48313 : public RuntimeObject
{
public:
// System.Byte[] System.Security.Cryptography.X509Certificates.X509CertificateImpl::cachedCertificateHash
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___cachedCertificateHash_0;
public:
inline static int32_t get_offset_of_cachedCertificateHash_0() { return static_cast<int32_t>(offsetof(X509CertificateImpl_t89610BFDE87B872143A4623CFC7F17275EB48313, ___cachedCertificateHash_0)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_cachedCertificateHash_0() const { return ___cachedCertificateHash_0; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_cachedCertificateHash_0() { return &___cachedCertificateHash_0; }
inline void set_cachedCertificateHash_0(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___cachedCertificateHash_0 = value;
Il2CppCodeGenWriteBarrier((&___cachedCertificateHash_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // X509CERTIFICATEIMPL_T89610BFDE87B872143A4623CFC7F17275EB48313_H
#ifndef X509CERTIFICATEIMPLCOLLECTION_T2F7A6E9F160116CE64224D56187C92ECD7FA7242_H
#define X509CERTIFICATEIMPLCOLLECTION_T2F7A6E9F160116CE64224D56187C92ECD7FA7242_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Security.Cryptography.X509Certificates.X509CertificateImplCollection
struct X509CertificateImplCollection_t2F7A6E9F160116CE64224D56187C92ECD7FA7242 : public RuntimeObject
{
public:
// System.Collections.Generic.List`1<System.Security.Cryptography.X509Certificates.X509CertificateImpl> System.Security.Cryptography.X509Certificates.X509CertificateImplCollection::list
List_1_t37E424CC2C8529EE0DCF9C6ACACB7F4CA9534033 * ___list_0;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(X509CertificateImplCollection_t2F7A6E9F160116CE64224D56187C92ECD7FA7242, ___list_0)); }
inline List_1_t37E424CC2C8529EE0DCF9C6ACACB7F4CA9534033 * get_list_0() const { return ___list_0; }
inline List_1_t37E424CC2C8529EE0DCF9C6ACACB7F4CA9534033 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_t37E424CC2C8529EE0DCF9C6ACACB7F4CA9534033 * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((&___list_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // X509CERTIFICATEIMPLCOLLECTION_T2F7A6E9F160116CE64224D56187C92ECD7FA7242_H
#ifndef X509CHAIN_T4A28E9A30CBB331C9B68AE4AFCB30625C6C8B538_H
#define X509CHAIN_T4A28E9A30CBB331C9B68AE4AFCB30625C6C8B538_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Security.Cryptography.X509Certificates.X509Chain
struct X509Chain_t4A28E9A30CBB331C9B68AE4AFCB30625C6C8B538 : public RuntimeObject
{
public:
// System.Security.Cryptography.X509Certificates.X509ChainImpl System.Security.Cryptography.X509Certificates.X509Chain::impl
X509ChainImpl_t34FABF07BEA0CFB6D88717BCDDE0607D9DA13A67 * ___impl_0;
public:
inline static int32_t get_offset_of_impl_0() { return static_cast<int32_t>(offsetof(X509Chain_t4A28E9A30CBB331C9B68AE4AFCB30625C6C8B538, ___impl_0)); }
inline X509ChainImpl_t34FABF07BEA0CFB6D88717BCDDE0607D9DA13A67 * get_impl_0() const { return ___impl_0; }
inline X509ChainImpl_t34FABF07BEA0CFB6D88717BCDDE0607D9DA13A67 ** get_address_of_impl_0() { return &___impl_0; }
inline void set_impl_0(X509ChainImpl_t34FABF07BEA0CFB6D88717BCDDE0607D9DA13A67 * value)
{
___impl_0 = value;
Il2CppCodeGenWriteBarrier((&___impl_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // X509CHAIN_T4A28E9A30CBB331C9B68AE4AFCB30625C6C8B538_H
#ifndef STRING_T_H
#define STRING_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&___Empty_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // STRING_T_H
#ifndef STRINGCOMPARER_T588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_H
#define STRINGCOMPARER_T588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.StringComparer
struct StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE : public RuntimeObject
{
public:
public:
};
struct StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_StaticFields
{
public:
// System.StringComparer System.StringComparer::_invariantCulture
StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * ____invariantCulture_0;
// System.StringComparer System.StringComparer::_invariantCultureIgnoreCase
StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * ____invariantCultureIgnoreCase_1;
// System.StringComparer System.StringComparer::_ordinal
StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * ____ordinal_2;
// System.StringComparer System.StringComparer::_ordinalIgnoreCase
StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * ____ordinalIgnoreCase_3;
public:
inline static int32_t get_offset_of__invariantCulture_0() { return static_cast<int32_t>(offsetof(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_StaticFields, ____invariantCulture_0)); }
inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * get__invariantCulture_0() const { return ____invariantCulture_0; }
inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE ** get_address_of__invariantCulture_0() { return &____invariantCulture_0; }
inline void set__invariantCulture_0(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * value)
{
____invariantCulture_0 = value;
Il2CppCodeGenWriteBarrier((&____invariantCulture_0), value);
}
inline static int32_t get_offset_of__invariantCultureIgnoreCase_1() { return static_cast<int32_t>(offsetof(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_StaticFields, ____invariantCultureIgnoreCase_1)); }
inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * get__invariantCultureIgnoreCase_1() const { return ____invariantCultureIgnoreCase_1; }
inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE ** get_address_of__invariantCultureIgnoreCase_1() { return &____invariantCultureIgnoreCase_1; }
inline void set__invariantCultureIgnoreCase_1(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * value)
{
____invariantCultureIgnoreCase_1 = value;
Il2CppCodeGenWriteBarrier((&____invariantCultureIgnoreCase_1), value);
}
inline static int32_t get_offset_of__ordinal_2() { return static_cast<int32_t>(offsetof(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_StaticFields, ____ordinal_2)); }
inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * get__ordinal_2() const { return ____ordinal_2; }
inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE ** get_address_of__ordinal_2() { return &____ordinal_2; }
inline void set__ordinal_2(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * value)
{
____ordinal_2 = value;
Il2CppCodeGenWriteBarrier((&____ordinal_2), value);
}
inline static int32_t get_offset_of__ordinalIgnoreCase_3() { return static_cast<int32_t>(offsetof(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_StaticFields, ____ordinalIgnoreCase_3)); }
inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * get__ordinalIgnoreCase_3() const { return ____ordinalIgnoreCase_3; }
inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE ** get_address_of__ordinalIgnoreCase_3() { return &____ordinalIgnoreCase_3; }
inline void set__ordinalIgnoreCase_3(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * value)
{
____ordinalIgnoreCase_3 = value;
Il2CppCodeGenWriteBarrier((&____ordinalIgnoreCase_3), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // STRINGCOMPARER_T588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_H
#ifndef DECODERFALLBACK_T128445EB7676870485230893338EF044F6B72F60_H
#define DECODERFALLBACK_T128445EB7676870485230893338EF044F6B72F60_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Text.DecoderFallback
struct DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 : public RuntimeObject
{
public:
// System.Boolean System.Text.DecoderFallback::bIsMicrosoftBestFitFallback
bool ___bIsMicrosoftBestFitFallback_0;
public:
inline static int32_t get_offset_of_bIsMicrosoftBestFitFallback_0() { return static_cast<int32_t>(offsetof(DecoderFallback_t128445EB7676870485230893338EF044F6B72F60, ___bIsMicrosoftBestFitFallback_0)); }
inline bool get_bIsMicrosoftBestFitFallback_0() const { return ___bIsMicrosoftBestFitFallback_0; }
inline bool* get_address_of_bIsMicrosoftBestFitFallback_0() { return &___bIsMicrosoftBestFitFallback_0; }
inline void set_bIsMicrosoftBestFitFallback_0(bool value)
{
___bIsMicrosoftBestFitFallback_0 = value;
}
};
struct DecoderFallback_t128445EB7676870485230893338EF044F6B72F60_StaticFields
{
public:
// System.Text.DecoderFallback modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.DecoderFallback::replacementFallback
DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * ___replacementFallback_1;
// System.Text.DecoderFallback modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.DecoderFallback::exceptionFallback
DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * ___exceptionFallback_2;
// System.Object System.Text.DecoderFallback::s_InternalSyncObject
RuntimeObject * ___s_InternalSyncObject_3;
public:
inline static int32_t get_offset_of_replacementFallback_1() { return static_cast<int32_t>(offsetof(DecoderFallback_t128445EB7676870485230893338EF044F6B72F60_StaticFields, ___replacementFallback_1)); }
inline DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * get_replacementFallback_1() const { return ___replacementFallback_1; }
inline DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 ** get_address_of_replacementFallback_1() { return &___replacementFallback_1; }
inline void set_replacementFallback_1(DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * value)
{
___replacementFallback_1 = value;
Il2CppCodeGenWriteBarrier((&___replacementFallback_1), value);
}
inline static int32_t get_offset_of_exceptionFallback_2() { return static_cast<int32_t>(offsetof(DecoderFallback_t128445EB7676870485230893338EF044F6B72F60_StaticFields, ___exceptionFallback_2)); }
inline DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * get_exceptionFallback_2() const { return ___exceptionFallback_2; }
inline DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 ** get_address_of_exceptionFallback_2() { return &___exceptionFallback_2; }
inline void set_exceptionFallback_2(DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * value)
{
___exceptionFallback_2 = value;
Il2CppCodeGenWriteBarrier((&___exceptionFallback_2), value);
}
inline static int32_t get_offset_of_s_InternalSyncObject_3() { return static_cast<int32_t>(offsetof(DecoderFallback_t128445EB7676870485230893338EF044F6B72F60_StaticFields, ___s_InternalSyncObject_3)); }
inline RuntimeObject * get_s_InternalSyncObject_3() const { return ___s_InternalSyncObject_3; }
inline RuntimeObject ** get_address_of_s_InternalSyncObject_3() { return &___s_InternalSyncObject_3; }
inline void set_s_InternalSyncObject_3(RuntimeObject * value)
{
___s_InternalSyncObject_3 = value;
Il2CppCodeGenWriteBarrier((&___s_InternalSyncObject_3), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DECODERFALLBACK_T128445EB7676870485230893338EF044F6B72F60_H
#ifndef ENCODERFALLBACK_TDE342346D01608628F1BCEBB652D31009852CF63_H
#define ENCODERFALLBACK_TDE342346D01608628F1BCEBB652D31009852CF63_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Text.EncoderFallback
struct EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 : public RuntimeObject
{
public:
// System.Boolean System.Text.EncoderFallback::bIsMicrosoftBestFitFallback
bool ___bIsMicrosoftBestFitFallback_0;
public:
inline static int32_t get_offset_of_bIsMicrosoftBestFitFallback_0() { return static_cast<int32_t>(offsetof(EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63, ___bIsMicrosoftBestFitFallback_0)); }
inline bool get_bIsMicrosoftBestFitFallback_0() const { return ___bIsMicrosoftBestFitFallback_0; }
inline bool* get_address_of_bIsMicrosoftBestFitFallback_0() { return &___bIsMicrosoftBestFitFallback_0; }
inline void set_bIsMicrosoftBestFitFallback_0(bool value)
{
___bIsMicrosoftBestFitFallback_0 = value;
}
};
struct EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63_StaticFields
{
public:
// System.Text.EncoderFallback modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.EncoderFallback::replacementFallback
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * ___replacementFallback_1;
// System.Text.EncoderFallback modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.EncoderFallback::exceptionFallback
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * ___exceptionFallback_2;
// System.Object System.Text.EncoderFallback::s_InternalSyncObject
RuntimeObject * ___s_InternalSyncObject_3;
public:
inline static int32_t get_offset_of_replacementFallback_1() { return static_cast<int32_t>(offsetof(EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63_StaticFields, ___replacementFallback_1)); }
inline EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * get_replacementFallback_1() const { return ___replacementFallback_1; }
inline EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 ** get_address_of_replacementFallback_1() { return &___replacementFallback_1; }
inline void set_replacementFallback_1(EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * value)
{
___replacementFallback_1 = value;
Il2CppCodeGenWriteBarrier((&___replacementFallback_1), value);
}
inline static int32_t get_offset_of_exceptionFallback_2() { return static_cast<int32_t>(offsetof(EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63_StaticFields, ___exceptionFallback_2)); }
inline EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * get_exceptionFallback_2() const { return ___exceptionFallback_2; }
inline EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 ** get_address_of_exceptionFallback_2() { return &___exceptionFallback_2; }
inline void set_exceptionFallback_2(EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * value)
{
___exceptionFallback_2 = value;
Il2CppCodeGenWriteBarrier((&___exceptionFallback_2), value);
}
inline static int32_t get_offset_of_s_InternalSyncObject_3() { return static_cast<int32_t>(offsetof(EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63_StaticFields, ___s_InternalSyncObject_3)); }
inline RuntimeObject * get_s_InternalSyncObject_3() const { return ___s_InternalSyncObject_3; }
inline RuntimeObject ** get_address_of_s_InternalSyncObject_3() { return &___s_InternalSyncObject_3; }
inline void set_s_InternalSyncObject_3(RuntimeObject * value)
{
___s_InternalSyncObject_3 = value;
Il2CppCodeGenWriteBarrier((&___s_InternalSyncObject_3), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENCODERFALLBACK_TDE342346D01608628F1BCEBB652D31009852CF63_H
#ifndef ENCODING_T7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_H
#define ENCODING_T7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Text.Encoding
struct Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 : public RuntimeObject
{
public:
// System.Int32 System.Text.Encoding::m_codePage
int32_t ___m_codePage_9;
// System.Globalization.CodePageDataItem System.Text.Encoding::dataItem
CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB * ___dataItem_10;
// System.Boolean System.Text.Encoding::m_deserializedFromEverett
bool ___m_deserializedFromEverett_11;
// System.Boolean System.Text.Encoding::m_isReadOnly
bool ___m_isReadOnly_12;
// System.Text.EncoderFallback System.Text.Encoding::encoderFallback
EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * ___encoderFallback_13;
// System.Text.DecoderFallback System.Text.Encoding::decoderFallback
DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * ___decoderFallback_14;
public:
inline static int32_t get_offset_of_m_codePage_9() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___m_codePage_9)); }
inline int32_t get_m_codePage_9() const { return ___m_codePage_9; }
inline int32_t* get_address_of_m_codePage_9() { return &___m_codePage_9; }
inline void set_m_codePage_9(int32_t value)
{
___m_codePage_9 = value;
}
inline static int32_t get_offset_of_dataItem_10() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___dataItem_10)); }
inline CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB * get_dataItem_10() const { return ___dataItem_10; }
inline CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB ** get_address_of_dataItem_10() { return &___dataItem_10; }
inline void set_dataItem_10(CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB * value)
{
___dataItem_10 = value;
Il2CppCodeGenWriteBarrier((&___dataItem_10), value);
}
inline static int32_t get_offset_of_m_deserializedFromEverett_11() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___m_deserializedFromEverett_11)); }
inline bool get_m_deserializedFromEverett_11() const { return ___m_deserializedFromEverett_11; }
inline bool* get_address_of_m_deserializedFromEverett_11() { return &___m_deserializedFromEverett_11; }
inline void set_m_deserializedFromEverett_11(bool value)
{
___m_deserializedFromEverett_11 = value;
}
inline static int32_t get_offset_of_m_isReadOnly_12() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___m_isReadOnly_12)); }
inline bool get_m_isReadOnly_12() const { return ___m_isReadOnly_12; }
inline bool* get_address_of_m_isReadOnly_12() { return &___m_isReadOnly_12; }
inline void set_m_isReadOnly_12(bool value)
{
___m_isReadOnly_12 = value;
}
inline static int32_t get_offset_of_encoderFallback_13() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___encoderFallback_13)); }
inline EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * get_encoderFallback_13() const { return ___encoderFallback_13; }
inline EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 ** get_address_of_encoderFallback_13() { return &___encoderFallback_13; }
inline void set_encoderFallback_13(EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * value)
{
___encoderFallback_13 = value;
Il2CppCodeGenWriteBarrier((&___encoderFallback_13), value);
}
inline static int32_t get_offset_of_decoderFallback_14() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___decoderFallback_14)); }
inline DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * get_decoderFallback_14() const { return ___decoderFallback_14; }
inline DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 ** get_address_of_decoderFallback_14() { return &___decoderFallback_14; }
inline void set_decoderFallback_14(DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * value)
{
___decoderFallback_14 = value;
Il2CppCodeGenWriteBarrier((&___decoderFallback_14), value);
}
};
struct Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields
{
public:
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::defaultEncoding
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___defaultEncoding_0;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::unicodeEncoding
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___unicodeEncoding_1;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::bigEndianUnicode
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___bigEndianUnicode_2;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf7Encoding
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___utf7Encoding_3;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf8Encoding
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___utf8Encoding_4;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf32Encoding
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___utf32Encoding_5;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::asciiEncoding
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___asciiEncoding_6;
// System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::latin1Encoding
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___latin1Encoding_7;
// System.Collections.Hashtable modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::encodings
Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___encodings_8;
// System.Object System.Text.Encoding::s_InternalSyncObject
RuntimeObject * ___s_InternalSyncObject_15;
public:
inline static int32_t get_offset_of_defaultEncoding_0() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___defaultEncoding_0)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_defaultEncoding_0() const { return ___defaultEncoding_0; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_defaultEncoding_0() { return &___defaultEncoding_0; }
inline void set_defaultEncoding_0(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
{
___defaultEncoding_0 = value;
Il2CppCodeGenWriteBarrier((&___defaultEncoding_0), value);
}
inline static int32_t get_offset_of_unicodeEncoding_1() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___unicodeEncoding_1)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_unicodeEncoding_1() const { return ___unicodeEncoding_1; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_unicodeEncoding_1() { return &___unicodeEncoding_1; }
inline void set_unicodeEncoding_1(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
{
___unicodeEncoding_1 = value;
Il2CppCodeGenWriteBarrier((&___unicodeEncoding_1), value);
}
inline static int32_t get_offset_of_bigEndianUnicode_2() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___bigEndianUnicode_2)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_bigEndianUnicode_2() const { return ___bigEndianUnicode_2; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_bigEndianUnicode_2() { return &___bigEndianUnicode_2; }
inline void set_bigEndianUnicode_2(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
{
___bigEndianUnicode_2 = value;
Il2CppCodeGenWriteBarrier((&___bigEndianUnicode_2), value);
}
inline static int32_t get_offset_of_utf7Encoding_3() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___utf7Encoding_3)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_utf7Encoding_3() const { return ___utf7Encoding_3; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_utf7Encoding_3() { return &___utf7Encoding_3; }
inline void set_utf7Encoding_3(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
{
___utf7Encoding_3 = value;
Il2CppCodeGenWriteBarrier((&___utf7Encoding_3), value);
}
inline static int32_t get_offset_of_utf8Encoding_4() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___utf8Encoding_4)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_utf8Encoding_4() const { return ___utf8Encoding_4; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_utf8Encoding_4() { return &___utf8Encoding_4; }
inline void set_utf8Encoding_4(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
{
___utf8Encoding_4 = value;
Il2CppCodeGenWriteBarrier((&___utf8Encoding_4), value);
}
inline static int32_t get_offset_of_utf32Encoding_5() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___utf32Encoding_5)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_utf32Encoding_5() const { return ___utf32Encoding_5; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_utf32Encoding_5() { return &___utf32Encoding_5; }
inline void set_utf32Encoding_5(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
{
___utf32Encoding_5 = value;
Il2CppCodeGenWriteBarrier((&___utf32Encoding_5), value);
}
inline static int32_t get_offset_of_asciiEncoding_6() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___asciiEncoding_6)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_asciiEncoding_6() const { return ___asciiEncoding_6; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_asciiEncoding_6() { return &___asciiEncoding_6; }
inline void set_asciiEncoding_6(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
{
___asciiEncoding_6 = value;
Il2CppCodeGenWriteBarrier((&___asciiEncoding_6), value);
}
inline static int32_t get_offset_of_latin1Encoding_7() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___latin1Encoding_7)); }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_latin1Encoding_7() const { return ___latin1Encoding_7; }
inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_latin1Encoding_7() { return &___latin1Encoding_7; }
inline void set_latin1Encoding_7(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value)
{
___latin1Encoding_7 = value;
Il2CppCodeGenWriteBarrier((&___latin1Encoding_7), value);
}
inline static int32_t get_offset_of_encodings_8() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___encodings_8)); }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_encodings_8() const { return ___encodings_8; }
inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_encodings_8() { return &___encodings_8; }
inline void set_encodings_8(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value)
{
___encodings_8 = value;
Il2CppCodeGenWriteBarrier((&___encodings_8), value);
}
inline static int32_t get_offset_of_s_InternalSyncObject_15() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___s_InternalSyncObject_15)); }
inline RuntimeObject * get_s_InternalSyncObject_15() const { return ___s_InternalSyncObject_15; }
inline RuntimeObject ** get_address_of_s_InternalSyncObject_15() { return &___s_InternalSyncObject_15; }
inline void set_s_InternalSyncObject_15(RuntimeObject * value)
{
___s_InternalSyncObject_15 = value;
Il2CppCodeGenWriteBarrier((&___s_InternalSyncObject_15), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENCODING_T7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_H
#ifndef STRINGBUILDER_T_H
#define STRINGBUILDER_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Text.StringBuilder
struct StringBuilder_t : public RuntimeObject
{
public:
// System.Char[] System.Text.StringBuilder::m_ChunkChars
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___m_ChunkChars_0;
// System.Text.StringBuilder System.Text.StringBuilder::m_ChunkPrevious
StringBuilder_t * ___m_ChunkPrevious_1;
// System.Int32 System.Text.StringBuilder::m_ChunkLength
int32_t ___m_ChunkLength_2;
// System.Int32 System.Text.StringBuilder::m_ChunkOffset
int32_t ___m_ChunkOffset_3;
// System.Int32 System.Text.StringBuilder::m_MaxCapacity
int32_t ___m_MaxCapacity_4;
public:
inline static int32_t get_offset_of_m_ChunkChars_0() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkChars_0)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_m_ChunkChars_0() const { return ___m_ChunkChars_0; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_m_ChunkChars_0() { return &___m_ChunkChars_0; }
inline void set_m_ChunkChars_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___m_ChunkChars_0 = value;
Il2CppCodeGenWriteBarrier((&___m_ChunkChars_0), value);
}
inline static int32_t get_offset_of_m_ChunkPrevious_1() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkPrevious_1)); }
inline StringBuilder_t * get_m_ChunkPrevious_1() const { return ___m_ChunkPrevious_1; }
inline StringBuilder_t ** get_address_of_m_ChunkPrevious_1() { return &___m_ChunkPrevious_1; }
inline void set_m_ChunkPrevious_1(StringBuilder_t * value)
{
___m_ChunkPrevious_1 = value;
Il2CppCodeGenWriteBarrier((&___m_ChunkPrevious_1), value);
}
inline static int32_t get_offset_of_m_ChunkLength_2() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkLength_2)); }
inline int32_t get_m_ChunkLength_2() const { return ___m_ChunkLength_2; }
inline int32_t* get_address_of_m_ChunkLength_2() { return &___m_ChunkLength_2; }
inline void set_m_ChunkLength_2(int32_t value)
{
___m_ChunkLength_2 = value;
}
inline static int32_t get_offset_of_m_ChunkOffset_3() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkOffset_3)); }
inline int32_t get_m_ChunkOffset_3() const { return ___m_ChunkOffset_3; }
inline int32_t* get_address_of_m_ChunkOffset_3() { return &___m_ChunkOffset_3; }
inline void set_m_ChunkOffset_3(int32_t value)
{
___m_ChunkOffset_3 = value;
}
inline static int32_t get_offset_of_m_MaxCapacity_4() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_MaxCapacity_4)); }
inline int32_t get_m_MaxCapacity_4() const { return ___m_MaxCapacity_4; }
inline int32_t* get_address_of_m_MaxCapacity_4() { return &___m_MaxCapacity_4; }
inline void set_m_MaxCapacity_4(int32_t value)
{
___m_MaxCapacity_4 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // STRINGBUILDER_T_H
#ifndef VALUETYPE_T4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_H
#define VALUETYPE_T4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ValueType
struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// 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
{
};
#endif // VALUETYPE_T4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_H
#ifndef XMLNODE_T07D70045D843753E4FE8AFE40FD36244E6B6D7FB_H
#define XMLNODE_T07D70045D843753E4FE8AFE40FD36244E6B6D7FB_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Xml.XmlNode
struct XmlNode_t07D70045D843753E4FE8AFE40FD36244E6B6D7FB : public RuntimeObject
{
public:
// System.Xml.XmlNode System.Xml.XmlNode::parentNode
XmlNode_t07D70045D843753E4FE8AFE40FD36244E6B6D7FB * ___parentNode_0;
public:
inline static int32_t get_offset_of_parentNode_0() { return static_cast<int32_t>(offsetof(XmlNode_t07D70045D843753E4FE8AFE40FD36244E6B6D7FB, ___parentNode_0)); }
inline XmlNode_t07D70045D843753E4FE8AFE40FD36244E6B6D7FB * get_parentNode_0() const { return ___parentNode_0; }
inline XmlNode_t07D70045D843753E4FE8AFE40FD36244E6B6D7FB ** get_address_of_parentNode_0() { return &___parentNode_0; }
inline void set_parentNode_0(XmlNode_t07D70045D843753E4FE8AFE40FD36244E6B6D7FB * value)
{
___parentNode_0 = value;
Il2CppCodeGenWriteBarrier((&___parentNode_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // XMLNODE_T07D70045D843753E4FE8AFE40FD36244E6B6D7FB_H
#ifndef __STATICARRAYINITTYPESIZEU3D128_T4A42759E6E25B0C61E6036A661F4344DE92C2905_H
#define __STATICARRAYINITTYPESIZEU3D128_T4A42759E6E25B0C61E6036A661F4344DE92C2905_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>/__StaticArrayInitTypeSize=128
struct __StaticArrayInitTypeSizeU3D128_t4A42759E6E25B0C61E6036A661F4344DE92C2905
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D128_t4A42759E6E25B0C61E6036A661F4344DE92C2905__padding[128];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __STATICARRAYINITTYPESIZEU3D128_T4A42759E6E25B0C61E6036A661F4344DE92C2905_H
#ifndef __STATICARRAYINITTYPESIZEU3D32_T5300E5FCBD58716E8A4EBB9470E4FAE1A0A964FA_H
#define __STATICARRAYINITTYPESIZEU3D32_T5300E5FCBD58716E8A4EBB9470E4FAE1A0A964FA_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>/__StaticArrayInitTypeSize=32
struct __StaticArrayInitTypeSizeU3D32_t5300E5FCBD58716E8A4EBB9470E4FAE1A0A964FA
{
public:
union
{
struct
{
union
{
};
};
uint8_t __StaticArrayInitTypeSizeU3D32_t5300E5FCBD58716E8A4EBB9470E4FAE1A0A964FA__padding[32];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // __STATICARRAYINITTYPESIZEU3D32_T5300E5FCBD58716E8A4EBB9470E4FAE1A0A964FA_H
#ifndef ASYNCREADORWRITEREQUEST_T991B91E93F3980A5879ABAC6738F9BAC770E3B8F_H
#define ASYNCREADORWRITEREQUEST_T991B91E93F3980A5879ABAC6738F9BAC770E3B8F_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Net.Security.AsyncReadOrWriteRequest
struct AsyncReadOrWriteRequest_t991B91E93F3980A5879ABAC6738F9BAC770E3B8F : public AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027
{
public:
// Mono.Net.Security.BufferOffsetSize Mono.Net.Security.AsyncReadOrWriteRequest::<UserBuffer>k__BackingField
BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 * ___U3CUserBufferU3Ek__BackingField_7;
// System.Int32 Mono.Net.Security.AsyncReadOrWriteRequest::<CurrentSize>k__BackingField
int32_t ___U3CCurrentSizeU3Ek__BackingField_8;
public:
inline static int32_t get_offset_of_U3CUserBufferU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(AsyncReadOrWriteRequest_t991B91E93F3980A5879ABAC6738F9BAC770E3B8F, ___U3CUserBufferU3Ek__BackingField_7)); }
inline BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 * get_U3CUserBufferU3Ek__BackingField_7() const { return ___U3CUserBufferU3Ek__BackingField_7; }
inline BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 ** get_address_of_U3CUserBufferU3Ek__BackingField_7() { return &___U3CUserBufferU3Ek__BackingField_7; }
inline void set_U3CUserBufferU3Ek__BackingField_7(BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 * value)
{
___U3CUserBufferU3Ek__BackingField_7 = value;
Il2CppCodeGenWriteBarrier((&___U3CUserBufferU3Ek__BackingField_7), value);
}
inline static int32_t get_offset_of_U3CCurrentSizeU3Ek__BackingField_8() { return static_cast<int32_t>(offsetof(AsyncReadOrWriteRequest_t991B91E93F3980A5879ABAC6738F9BAC770E3B8F, ___U3CCurrentSizeU3Ek__BackingField_8)); }
inline int32_t get_U3CCurrentSizeU3Ek__BackingField_8() const { return ___U3CCurrentSizeU3Ek__BackingField_8; }
inline int32_t* get_address_of_U3CCurrentSizeU3Ek__BackingField_8() { return &___U3CCurrentSizeU3Ek__BackingField_8; }
inline void set_U3CCurrentSizeU3Ek__BackingField_8(int32_t value)
{
___U3CCurrentSizeU3Ek__BackingField_8 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASYNCREADORWRITEREQUEST_T991B91E93F3980A5879ABAC6738F9BAC770E3B8F_H
#ifndef BUFFEROFFSETSIZE2_T2E9889F6FB134EF92FC0B930BF630243553F4E00_H
#define BUFFEROFFSETSIZE2_T2E9889F6FB134EF92FC0B930BF630243553F4E00_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Net.Security.BufferOffsetSize2
struct BufferOffsetSize2_t2E9889F6FB134EF92FC0B930BF630243553F4E00 : public BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9
{
public:
// System.Int32 Mono.Net.Security.BufferOffsetSize2::InitialSize
int32_t ___InitialSize_5;
public:
inline static int32_t get_offset_of_InitialSize_5() { return static_cast<int32_t>(offsetof(BufferOffsetSize2_t2E9889F6FB134EF92FC0B930BF630243553F4E00, ___InitialSize_5)); }
inline int32_t get_InitialSize_5() const { return ___InitialSize_5; }
inline int32_t* get_address_of_InitialSize_5() { return &___InitialSize_5; }
inline void set_InitialSize_5(int32_t value)
{
___InitialSize_5 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // BUFFEROFFSETSIZE2_T2E9889F6FB134EF92FC0B930BF630243553F4E00_H
#ifndef UNITYTLS_KEY_TABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9_H
#define UNITYTLS_KEY_TABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_key
struct unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9
{
public:
union
{
struct
{
};
uint8_t unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9__padding[1];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLS_KEY_TABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9_H
#ifndef UNITYTLS_KEY_REF_TE908606656A7C49CA1EB734722E4C3DED7CE6E5B_H
#define UNITYTLS_KEY_REF_TE908606656A7C49CA1EB734722E4C3DED7CE6E5B_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_key_ref
struct unitytls_key_ref_tE908606656A7C49CA1EB734722E4C3DED7CE6E5B
{
public:
// System.UInt64 Mono.Unity.UnityTls/unitytls_key_ref::handle
uint64_t ___handle_0;
public:
inline static int32_t get_offset_of_handle_0() { return static_cast<int32_t>(offsetof(unitytls_key_ref_tE908606656A7C49CA1EB734722E4C3DED7CE6E5B, ___handle_0)); }
inline uint64_t get_handle_0() const { return ___handle_0; }
inline uint64_t* get_address_of_handle_0() { return &___handle_0; }
inline void set_handle_0(uint64_t value)
{
___handle_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLS_KEY_REF_TE908606656A7C49CA1EB734722E4C3DED7CE6E5B_H
#ifndef UNITYTLS_TLSCTX_T6B948536BDFA3AAC0135FF136ABD7779A0B96A74_H
#define UNITYTLS_TLSCTX_T6B948536BDFA3AAC0135FF136ABD7779A0B96A74_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_tlsctx
struct unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74
{
public:
union
{
struct
{
};
uint8_t unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74__padding[1];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLS_TLSCTX_T6B948536BDFA3AAC0135FF136ABD7779A0B96A74_H
#ifndef UNITYTLS_TLSCTX_CALLBACKS_T7BB5F622E014A8EC300C578657E2B0550DA828B2_H
#define UNITYTLS_TLSCTX_CALLBACKS_T7BB5F622E014A8EC300C578657E2B0550DA828B2_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_tlsctx_callbacks
struct unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2
{
public:
// Mono.Unity.UnityTls/unitytls_tlsctx_read_callback Mono.Unity.UnityTls/unitytls_tlsctx_callbacks::read
unitytls_tlsctx_read_callback_tD85E7923018681355C1D851137CEC527F04093F5 * ___read_0;
// Mono.Unity.UnityTls/unitytls_tlsctx_write_callback Mono.Unity.UnityTls/unitytls_tlsctx_callbacks::write
unitytls_tlsctx_write_callback_tBDF40F27E011F577C3E834B14788491861F870D6 * ___write_1;
// System.Void* Mono.Unity.UnityTls/unitytls_tlsctx_callbacks::data
void* ___data_2;
public:
inline static int32_t get_offset_of_read_0() { return static_cast<int32_t>(offsetof(unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2, ___read_0)); }
inline unitytls_tlsctx_read_callback_tD85E7923018681355C1D851137CEC527F04093F5 * get_read_0() const { return ___read_0; }
inline unitytls_tlsctx_read_callback_tD85E7923018681355C1D851137CEC527F04093F5 ** get_address_of_read_0() { return &___read_0; }
inline void set_read_0(unitytls_tlsctx_read_callback_tD85E7923018681355C1D851137CEC527F04093F5 * value)
{
___read_0 = value;
Il2CppCodeGenWriteBarrier((&___read_0), value);
}
inline static int32_t get_offset_of_write_1() { return static_cast<int32_t>(offsetof(unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2, ___write_1)); }
inline unitytls_tlsctx_write_callback_tBDF40F27E011F577C3E834B14788491861F870D6 * get_write_1() const { return ___write_1; }
inline unitytls_tlsctx_write_callback_tBDF40F27E011F577C3E834B14788491861F870D6 ** get_address_of_write_1() { return &___write_1; }
inline void set_write_1(unitytls_tlsctx_write_callback_tBDF40F27E011F577C3E834B14788491861F870D6 * value)
{
___write_1 = value;
Il2CppCodeGenWriteBarrier((&___write_1), value);
}
inline static int32_t get_offset_of_data_2() { return static_cast<int32_t>(offsetof(unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2, ___data_2)); }
inline void* get_data_2() const { return ___data_2; }
inline void** get_address_of_data_2() { return &___data_2; }
inline void set_data_2(void* value)
{
___data_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of Mono.Unity.UnityTls/unitytls_tlsctx_callbacks
struct unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2_marshaled_pinvoke
{
Il2CppMethodPointer ___read_0;
Il2CppMethodPointer ___write_1;
void* ___data_2;
};
// Native definition for COM marshalling of Mono.Unity.UnityTls/unitytls_tlsctx_callbacks
struct unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2_marshaled_com
{
Il2CppMethodPointer ___read_0;
Il2CppMethodPointer ___write_1;
void* ___data_2;
};
#endif // UNITYTLS_TLSCTX_CALLBACKS_T7BB5F622E014A8EC300C578657E2B0550DA828B2_H
#ifndef UNITYTLS_X509_REF_TE1ED17887226610A1328A57FF787396C9457E7B7_H
#define UNITYTLS_X509_REF_TE1ED17887226610A1328A57FF787396C9457E7B7_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_x509_ref
struct unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7
{
public:
// System.UInt64 Mono.Unity.UnityTls/unitytls_x509_ref::handle
uint64_t ___handle_0;
public:
inline static int32_t get_offset_of_handle_0() { return static_cast<int32_t>(offsetof(unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7, ___handle_0)); }
inline uint64_t get_handle_0() const { return ___handle_0; }
inline uint64_t* get_address_of_handle_0() { return &___handle_0; }
inline void set_handle_0(uint64_t value)
{
___handle_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLS_X509_REF_TE1ED17887226610A1328A57FF787396C9457E7B7_H
#ifndef UNITYTLS_X509LIST_TDFEEABB4254CDE9475890D0F2AE361B45EC357C7_H
#define UNITYTLS_X509LIST_TDFEEABB4254CDE9475890D0F2AE361B45EC357C7_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_x509list
struct unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7
{
public:
union
{
struct
{
};
uint8_t unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7__padding[1];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLS_X509LIST_TDFEEABB4254CDE9475890D0F2AE361B45EC357C7_H
#ifndef UNITYTLS_X509LIST_REF_TF01A6BF5ADA9C454E6B975D2669AF22D27555BF6_H
#define UNITYTLS_X509LIST_REF_TF01A6BF5ADA9C454E6B975D2669AF22D27555BF6_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_x509list_ref
struct unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6
{
public:
// System.UInt64 Mono.Unity.UnityTls/unitytls_x509list_ref::handle
uint64_t ___handle_0;
public:
inline static int32_t get_offset_of_handle_0() { return static_cast<int32_t>(offsetof(unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6, ___handle_0)); }
inline uint64_t get_handle_0() const { return ___handle_0; }
inline uint64_t* get_address_of_handle_0() { return &___handle_0; }
inline void set_handle_0(uint64_t value)
{
___handle_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLS_X509LIST_REF_TF01A6BF5ADA9C454E6B975D2669AF22D27555BF6_H
#ifndef UNITYTLS_X509NAME_T551F433869F1BAA39C78962C7ACA1BAB9A4D6337_H
#define UNITYTLS_X509NAME_T551F433869F1BAA39C78962C7ACA1BAB9A4D6337_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_x509name
struct unitytls_x509name_t551F433869F1BAA39C78962C7ACA1BAB9A4D6337
{
public:
union
{
struct
{
};
uint8_t unitytls_x509name_t551F433869F1BAA39C78962C7ACA1BAB9A4D6337__padding[1];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLS_X509NAME_T551F433869F1BAA39C78962C7ACA1BAB9A4D6337_H
#ifndef UNITYTLSPROVIDER_T38A61346F4CF37E18E390610CF6092AEFCA65965_H
#define UNITYTLSPROVIDER_T38A61346F4CF37E18E390610CF6092AEFCA65965_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTlsProvider
struct UnityTlsProvider_t38A61346F4CF37E18E390610CF6092AEFCA65965 : public MonoTlsProvider_tDCD056C5BBBE59ED6BAF63F25952B406C1143C27
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLSPROVIDER_T38A61346F4CF37E18E390610CF6092AEFCA65965_H
#ifndef BOOLEAN_TB53F6830F670160873277339AA58F15CAED4399C_H
#define BOOLEAN_TB53F6830F670160873277339AA58F15CAED4399C_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&___TrueString_5), 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((&___FalseString_6), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // BOOLEAN_TB53F6830F670160873277339AA58F15CAED4399C_H
#ifndef BYTE_TF87C579059BD4633E6840EBBBEEF899C6E33EF07_H
#define BYTE_TF87C579059BD4633E6840EBBBEEF899C6E33EF07_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // BYTE_TF87C579059BD4633E6840EBBBEEF899C6E33EF07_H
#ifndef CHAR_TBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_H
#define CHAR_TBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&___categoryForLatin1_3), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CHAR_TBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_H
#ifndef KEYVALUEPAIR_2_TA9AFBC865B07606ED8F020A8E3AF8E27491AF809_H
#define KEYVALUEPAIR_2_TA9AFBC865B07606ED8F020A8E3AF8E27491AF809_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>
struct KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
int32_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_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809, ___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_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // KEYVALUEPAIR_2_TA9AFBC865B07606ED8F020A8E3AF8E27491AF809_H
#ifndef DEFAULTVALUEATTRIBUTE_T03B1F51B35271D50779D31234C9C6845BC9626EC_H
#define DEFAULTVALUEATTRIBUTE_T03B1F51B35271D50779D31234C9C6845BC9626EC_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ComponentModel.DefaultValueAttribute
struct DefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
// System.Object System.ComponentModel.DefaultValueAttribute::value
RuntimeObject * ___value_0;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(DefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC, ___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((&___value_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DEFAULTVALUEATTRIBUTE_T03B1F51B35271D50779D31234C9C6845BC9626EC_H
#ifndef TYPECONVERTERATTRIBUTE_TA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8_H
#define TYPECONVERTERATTRIBUTE_TA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ComponentModel.TypeConverterAttribute
struct TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
// System.String System.ComponentModel.TypeConverterAttribute::typeName
String_t* ___typeName_0;
public:
inline static int32_t get_offset_of_typeName_0() { return static_cast<int32_t>(offsetof(TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8, ___typeName_0)); }
inline String_t* get_typeName_0() const { return ___typeName_0; }
inline String_t** get_address_of_typeName_0() { return &___typeName_0; }
inline void set_typeName_0(String_t* value)
{
___typeName_0 = value;
Il2CppCodeGenWriteBarrier((&___typeName_0), value);
}
};
struct TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8_StaticFields
{
public:
// System.ComponentModel.TypeConverterAttribute System.ComponentModel.TypeConverterAttribute::Default
TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 * ___Default_1;
public:
inline static int32_t get_offset_of_Default_1() { return static_cast<int32_t>(offsetof(TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8_StaticFields, ___Default_1)); }
inline TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 * get_Default_1() const { return ___Default_1; }
inline TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 ** get_address_of_Default_1() { return &___Default_1; }
inline void set_Default_1(TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 * value)
{
___Default_1 = value;
Il2CppCodeGenWriteBarrier((&___Default_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TYPECONVERTERATTRIBUTE_TA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8_H
#ifndef CONFIGURATIONELEMENTCOLLECTION_TB0DA3194B9C1528D2627B291C79B560C68A78FCC_H
#define CONFIGURATIONELEMENTCOLLECTION_TB0DA3194B9C1528D2627B291C79B560C68A78FCC_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Configuration.ConfigurationElementCollection
struct ConfigurationElementCollection_tB0DA3194B9C1528D2627B291C79B560C68A78FCC : public ConfigurationElement_tF3ECE1CDFD3304CD9D595E758276F014321AD9FE
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONFIGURATIONELEMENTCOLLECTION_TB0DA3194B9C1528D2627B291C79B560C68A78FCC_H
#ifndef CONFIGURATIONSECTION_T044F68052218C8000611AE9ADD5F66E62A632B34_H
#define CONFIGURATIONSECTION_T044F68052218C8000611AE9ADD5F66E62A632B34_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Configuration.ConfigurationSection
struct ConfigurationSection_t044F68052218C8000611AE9ADD5F66E62A632B34 : public ConfigurationElement_tF3ECE1CDFD3304CD9D595E758276F014321AD9FE
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONFIGURATIONSECTION_T044F68052218C8000611AE9ADD5F66E62A632B34_H
#ifndef DATETIME_T349B7449FBAAFF4192636E2B7A07694DA9236132_H
#define DATETIME_T349B7449FBAAFF4192636E2B7A07694DA9236132_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&___DaysToMonth365_29), 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((&___DaysToMonth366_30), 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DATETIME_T349B7449FBAAFF4192636E2B7A07694DA9236132_H
#ifndef ENUM_T2AF27C02B8653AE29442467390005ABC74D8F521_H
#define ENUM_T2AF27C02B8653AE29442467390005ABC74D8F521_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&___enumSeperatorCharArray_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// 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
{
};
#endif // ENUM_T2AF27C02B8653AE29442467390005ABC74D8F521_H
#ifndef GUID_T_H
#define GUID_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&____rngAccess_12), 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((&____rng_13), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // GUID_T_H
#ifndef STREAM_TFC50657DD5AAB87770987F9179D934A51D99D5E7_H
#define STREAM_TFC50657DD5AAB87770987F9179D934A51D99D5E7_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.Stream
struct Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF
{
public:
// System.IO.Stream/ReadWriteTask System.IO.Stream::_activeReadWriteTask
ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * ____activeReadWriteTask_2;
// System.Threading.SemaphoreSlim System.IO.Stream::_asyncActiveSemaphore
SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * ____asyncActiveSemaphore_3;
public:
inline static int32_t get_offset_of__activeReadWriteTask_2() { return static_cast<int32_t>(offsetof(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7, ____activeReadWriteTask_2)); }
inline ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * get__activeReadWriteTask_2() const { return ____activeReadWriteTask_2; }
inline ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 ** get_address_of__activeReadWriteTask_2() { return &____activeReadWriteTask_2; }
inline void set__activeReadWriteTask_2(ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * value)
{
____activeReadWriteTask_2 = value;
Il2CppCodeGenWriteBarrier((&____activeReadWriteTask_2), value);
}
inline static int32_t get_offset_of__asyncActiveSemaphore_3() { return static_cast<int32_t>(offsetof(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7, ____asyncActiveSemaphore_3)); }
inline SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * get__asyncActiveSemaphore_3() const { return ____asyncActiveSemaphore_3; }
inline SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 ** get_address_of__asyncActiveSemaphore_3() { return &____asyncActiveSemaphore_3; }
inline void set__asyncActiveSemaphore_3(SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * value)
{
____asyncActiveSemaphore_3 = value;
Il2CppCodeGenWriteBarrier((&____asyncActiveSemaphore_3), value);
}
};
struct Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_StaticFields
{
public:
// System.IO.Stream System.IO.Stream::Null
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___Null_1;
public:
inline static int32_t get_offset_of_Null_1() { return static_cast<int32_t>(offsetof(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_StaticFields, ___Null_1)); }
inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * get_Null_1() const { return ___Null_1; }
inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 ** get_address_of_Null_1() { return &___Null_1; }
inline void set_Null_1(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * value)
{
___Null_1 = value;
Il2CppCodeGenWriteBarrier((&___Null_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // STREAM_TFC50657DD5AAB87770987F9179D934A51D99D5E7_H
#ifndef INT32_T585191389E07734F19F3156FF88FB3EF4800D102_H
#define INT32_T585191389E07734F19F3156FF88FB3EF4800D102_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INT32_T585191389E07734F19F3156FF88FB3EF4800D102_H
#ifndef INT64_T7A386C2FF7B0280A0F516992401DDFCF0FF7B436_H
#define INT64_T7A386C2FF7B0280A0F516992401DDFCF0FF7B436_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INT64_T7A386C2FF7B0280A0F516992401DDFCF0FF7B436_H
#ifndef INTPTR_T_H
#define INTPTR_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INTPTR_T_H
#ifndef BYPASSELEMENT_T89C59A549C7A25609AA5C200352CD9E310172BAF_H
#define BYPASSELEMENT_T89C59A549C7A25609AA5C200352CD9E310172BAF_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Configuration.BypassElement
struct BypassElement_t89C59A549C7A25609AA5C200352CD9E310172BAF : public ConfigurationElement_tF3ECE1CDFD3304CD9D595E758276F014321AD9FE
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // BYPASSELEMENT_T89C59A549C7A25609AA5C200352CD9E310172BAF_H
#ifndef CONNECTIONMANAGEMENTELEMENT_TABDA95F63A9CBFC2720D7D3F15C5B352EC5CE7AD_H
#define CONNECTIONMANAGEMENTELEMENT_TABDA95F63A9CBFC2720D7D3F15C5B352EC5CE7AD_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Configuration.ConnectionManagementElement
struct ConnectionManagementElement_tABDA95F63A9CBFC2720D7D3F15C5B352EC5CE7AD : public ConfigurationElement_tF3ECE1CDFD3304CD9D595E758276F014321AD9FE
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONNECTIONMANAGEMENTELEMENT_TABDA95F63A9CBFC2720D7D3F15C5B352EC5CE7AD_H
#ifndef HTTPWEBREQUESTELEMENT_T3E2FC0EB83C362CC92300949AF90A0B0BE01EA3D_H
#define HTTPWEBREQUESTELEMENT_T3E2FC0EB83C362CC92300949AF90A0B0BE01EA3D_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Configuration.HttpWebRequestElement
struct HttpWebRequestElement_t3E2FC0EB83C362CC92300949AF90A0B0BE01EA3D : public ConfigurationElement_tF3ECE1CDFD3304CD9D595E758276F014321AD9FE
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // HTTPWEBREQUESTELEMENT_T3E2FC0EB83C362CC92300949AF90A0B0BE01EA3D_H
#ifndef IPV6ELEMENT_TCA869DC79FE3740DBDECC47877F1676294DB4A23_H
#define IPV6ELEMENT_TCA869DC79FE3740DBDECC47877F1676294DB4A23_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Configuration.Ipv6Element
struct Ipv6Element_tCA869DC79FE3740DBDECC47877F1676294DB4A23 : public ConfigurationElement_tF3ECE1CDFD3304CD9D595E758276F014321AD9FE
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // IPV6ELEMENT_TCA869DC79FE3740DBDECC47877F1676294DB4A23_H
#ifndef NETSECTIONGROUP_TA4ACD82AFE8B5C11E509FA8623D554BB5B4DB591_H
#define NETSECTIONGROUP_TA4ACD82AFE8B5C11E509FA8623D554BB5B4DB591_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Configuration.NetSectionGroup
struct NetSectionGroup_tA4ACD82AFE8B5C11E509FA8623D554BB5B4DB591 : public ConfigurationSectionGroup_t64AC7C211E1F868ABF1BD604DA43815564D304E6
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // NETSECTIONGROUP_TA4ACD82AFE8B5C11E509FA8623D554BB5B4DB591_H
#ifndef PERFORMANCECOUNTERSELEMENT_TCE4CFF0A3503E44D7B8EC6E85FD3C50EB1A1B570_H
#define PERFORMANCECOUNTERSELEMENT_TCE4CFF0A3503E44D7B8EC6E85FD3C50EB1A1B570_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Configuration.PerformanceCountersElement
struct PerformanceCountersElement_tCE4CFF0A3503E44D7B8EC6E85FD3C50EB1A1B570 : public ConfigurationElement_tF3ECE1CDFD3304CD9D595E758276F014321AD9FE
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PERFORMANCECOUNTERSELEMENT_TCE4CFF0A3503E44D7B8EC6E85FD3C50EB1A1B570_H
#ifndef PROXYELEMENT_TBD5D75620576BA5BB5521C11D09E0A6E996F9449_H
#define PROXYELEMENT_TBD5D75620576BA5BB5521C11D09E0A6E996F9449_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Configuration.ProxyElement
struct ProxyElement_tBD5D75620576BA5BB5521C11D09E0A6E996F9449 : public ConfigurationElement_tF3ECE1CDFD3304CD9D595E758276F014321AD9FE
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PROXYELEMENT_TBD5D75620576BA5BB5521C11D09E0A6E996F9449_H
#ifndef SERVICEPOINTMANAGERELEMENT_TD8D1491569C963460C14DF4D42ED05DF34428CFC_H
#define SERVICEPOINTMANAGERELEMENT_TD8D1491569C963460C14DF4D42ED05DF34428CFC_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Configuration.ServicePointManagerElement
struct ServicePointManagerElement_tD8D1491569C963460C14DF4D42ED05DF34428CFC : public ConfigurationElement_tF3ECE1CDFD3304CD9D595E758276F014321AD9FE
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SERVICEPOINTMANAGERELEMENT_TD8D1491569C963460C14DF4D42ED05DF34428CFC_H
#ifndef SOCKETELEMENT_T32F016077CBED287B80063811E80BCCC7E8B1BF9_H
#define SOCKETELEMENT_T32F016077CBED287B80063811E80BCCC7E8B1BF9_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Configuration.SocketElement
struct SocketElement_t32F016077CBED287B80063811E80BCCC7E8B1BF9 : public ConfigurationElement_tF3ECE1CDFD3304CD9D595E758276F014321AD9FE
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SOCKETELEMENT_T32F016077CBED287B80063811E80BCCC7E8B1BF9_H
#ifndef WEBPROXYSCRIPTELEMENT_T4302A26A6D4E02146662B30E3452A5167966E6B3_H
#define WEBPROXYSCRIPTELEMENT_T4302A26A6D4E02146662B30E3452A5167966E6B3_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Configuration.WebProxyScriptElement
struct WebProxyScriptElement_t4302A26A6D4E02146662B30E3452A5167966E6B3 : public ConfigurationElement_tF3ECE1CDFD3304CD9D595E758276F014321AD9FE
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // WEBPROXYSCRIPTELEMENT_T4302A26A6D4E02146662B30E3452A5167966E6B3_H
#ifndef WEBREQUESTMODULEELEMENT_TE81A1FA5B9B4BCFB1ED015287A2D4F9EED37F3EC_H
#define WEBREQUESTMODULEELEMENT_TE81A1FA5B9B4BCFB1ED015287A2D4F9EED37F3EC_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Configuration.WebRequestModuleElement
struct WebRequestModuleElement_tE81A1FA5B9B4BCFB1ED015287A2D4F9EED37F3EC : public ConfigurationElement_tF3ECE1CDFD3304CD9D595E758276F014321AD9FE
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // WEBREQUESTMODULEELEMENT_TE81A1FA5B9B4BCFB1ED015287A2D4F9EED37F3EC_H
#ifndef IPV6ADDRESSFORMATTER_T451290B1C6FD64B6C59F95D99EDB4A9CC703BA90_H
#define IPV6ADDRESSFORMATTER_T451290B1C6FD64B6C59F95D99EDB4A9CC703BA90_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.IPv6AddressFormatter
struct IPv6AddressFormatter_t451290B1C6FD64B6C59F95D99EDB4A9CC703BA90
{
public:
// System.UInt16[] System.Net.IPv6AddressFormatter::address
UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* ___address_0;
// System.Int64 System.Net.IPv6AddressFormatter::scopeId
int64_t ___scopeId_1;
public:
inline static int32_t get_offset_of_address_0() { return static_cast<int32_t>(offsetof(IPv6AddressFormatter_t451290B1C6FD64B6C59F95D99EDB4A9CC703BA90, ___address_0)); }
inline UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* get_address_0() const { return ___address_0; }
inline UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E** get_address_of_address_0() { return &___address_0; }
inline void set_address_0(UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* value)
{
___address_0 = value;
Il2CppCodeGenWriteBarrier((&___address_0), value);
}
inline static int32_t get_offset_of_scopeId_1() { return static_cast<int32_t>(offsetof(IPv6AddressFormatter_t451290B1C6FD64B6C59F95D99EDB4A9CC703BA90, ___scopeId_1)); }
inline int64_t get_scopeId_1() const { return ___scopeId_1; }
inline int64_t* get_address_of_scopeId_1() { return &___scopeId_1; }
inline void set_scopeId_1(int64_t value)
{
___scopeId_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Net.IPv6AddressFormatter
struct IPv6AddressFormatter_t451290B1C6FD64B6C59F95D99EDB4A9CC703BA90_marshaled_pinvoke
{
uint16_t* ___address_0;
int64_t ___scopeId_1;
};
// Native definition for COM marshalling of System.Net.IPv6AddressFormatter
struct IPv6AddressFormatter_t451290B1C6FD64B6C59F95D99EDB4A9CC703BA90_marshaled_com
{
uint16_t* ___address_0;
int64_t ___scopeId_1;
};
#endif // IPV6ADDRESSFORMATTER_T451290B1C6FD64B6C59F95D99EDB4A9CC703BA90_H
#ifndef NULLABLE_1_T0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB_H
#define NULLABLE_1_T0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Nullable`1<System.Int32>
struct Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB
{
public:
// T System.Nullable`1::value
int32_t ___value_0;
// System.Boolean System.Nullable`1::has_value
bool ___has_value_1;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB, ___value_0)); }
inline int32_t get_value_0() const { return ___value_0; }
inline int32_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(int32_t value)
{
___value_0 = value;
}
inline static int32_t get_offset_of_has_value_1() { return static_cast<int32_t>(offsetof(Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB, ___has_value_1)); }
inline bool get_has_value_1() const { return ___has_value_1; }
inline bool* get_address_of_has_value_1() { return &___has_value_1; }
inline void set_has_value_1(bool value)
{
___has_value_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // NULLABLE_1_T0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB_H
#ifndef ASYNCMETHODBUILDERCORE_T4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01_H
#define ASYNCMETHODBUILDERCORE_T4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.AsyncMethodBuilderCore
struct AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01
{
public:
// System.Runtime.CompilerServices.IAsyncStateMachine System.Runtime.CompilerServices.AsyncMethodBuilderCore::m_stateMachine
RuntimeObject* ___m_stateMachine_0;
// System.Action System.Runtime.CompilerServices.AsyncMethodBuilderCore::m_defaultContextAction
Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * ___m_defaultContextAction_1;
public:
inline static int32_t get_offset_of_m_stateMachine_0() { return static_cast<int32_t>(offsetof(AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01, ___m_stateMachine_0)); }
inline RuntimeObject* get_m_stateMachine_0() const { return ___m_stateMachine_0; }
inline RuntimeObject** get_address_of_m_stateMachine_0() { return &___m_stateMachine_0; }
inline void set_m_stateMachine_0(RuntimeObject* value)
{
___m_stateMachine_0 = value;
Il2CppCodeGenWriteBarrier((&___m_stateMachine_0), value);
}
inline static int32_t get_offset_of_m_defaultContextAction_1() { return static_cast<int32_t>(offsetof(AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01, ___m_defaultContextAction_1)); }
inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * get_m_defaultContextAction_1() const { return ___m_defaultContextAction_1; }
inline Action_t591D2A86165F896B4B800BB5C25CE18672A55579 ** get_address_of_m_defaultContextAction_1() { return &___m_defaultContextAction_1; }
inline void set_m_defaultContextAction_1(Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * value)
{
___m_defaultContextAction_1 = value;
Il2CppCodeGenWriteBarrier((&___m_defaultContextAction_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Runtime.CompilerServices.AsyncMethodBuilderCore
struct AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01_marshaled_pinvoke
{
RuntimeObject* ___m_stateMachine_0;
Il2CppMethodPointer ___m_defaultContextAction_1;
};
// Native definition for COM marshalling of System.Runtime.CompilerServices.AsyncMethodBuilderCore
struct AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01_marshaled_com
{
RuntimeObject* ___m_stateMachine_0;
Il2CppMethodPointer ___m_defaultContextAction_1;
};
#endif // ASYNCMETHODBUILDERCORE_T4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01_H
#ifndef CONFIGUREDTASKAWAITER_TF1AAA16B8A1250CA037E32157A3424CD2BA47874_H
#define CONFIGUREDTASKAWAITER_TF1AAA16B8A1250CA037E32157A3424CD2BA47874_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter
struct ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874
{
public:
// System.Threading.Tasks.Task System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter::m_task
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___m_task_0;
// System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter::m_continueOnCapturedContext
bool ___m_continueOnCapturedContext_1;
public:
inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874, ___m_task_0)); }
inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * get_m_task_0() const { return ___m_task_0; }
inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 ** get_address_of_m_task_0() { return &___m_task_0; }
inline void set_m_task_0(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * value)
{
___m_task_0 = value;
Il2CppCodeGenWriteBarrier((&___m_task_0), value);
}
inline static int32_t get_offset_of_m_continueOnCapturedContext_1() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874, ___m_continueOnCapturedContext_1)); }
inline bool get_m_continueOnCapturedContext_1() const { return ___m_continueOnCapturedContext_1; }
inline bool* get_address_of_m_continueOnCapturedContext_1() { return &___m_continueOnCapturedContext_1; }
inline void set_m_continueOnCapturedContext_1(bool value)
{
___m_continueOnCapturedContext_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter
struct ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874_marshaled_pinvoke
{
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___m_task_0;
int32_t ___m_continueOnCapturedContext_1;
};
// Native definition for COM marshalling of System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter
struct ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874_marshaled_com
{
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___m_task_0;
int32_t ___m_continueOnCapturedContext_1;
};
#endif // CONFIGUREDTASKAWAITER_TF1AAA16B8A1250CA037E32157A3424CD2BA47874_H
#ifndef CONFIGUREDTASKAWAITER_T688A02A53D1A4A883C7DDAFE0F07F17691C51E96_H
#define CONFIGUREDTASKAWAITER_T688A02A53D1A4A883C7DDAFE0F07F17691C51E96_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<Mono.Net.Security.AsyncProtocolResult>
struct ConfiguredTaskAwaiter_t688A02A53D1A4A883C7DDAFE0F07F17691C51E96
{
public:
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_task
Task_1_t6D67FA6126155FF2C2E227A859409D83DFAFA9BD * ___m_task_0;
// System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_continueOnCapturedContext
bool ___m_continueOnCapturedContext_1;
public:
inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_t688A02A53D1A4A883C7DDAFE0F07F17691C51E96, ___m_task_0)); }
inline Task_1_t6D67FA6126155FF2C2E227A859409D83DFAFA9BD * get_m_task_0() const { return ___m_task_0; }
inline Task_1_t6D67FA6126155FF2C2E227A859409D83DFAFA9BD ** get_address_of_m_task_0() { return &___m_task_0; }
inline void set_m_task_0(Task_1_t6D67FA6126155FF2C2E227A859409D83DFAFA9BD * value)
{
___m_task_0 = value;
Il2CppCodeGenWriteBarrier((&___m_task_0), value);
}
inline static int32_t get_offset_of_m_continueOnCapturedContext_1() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_t688A02A53D1A4A883C7DDAFE0F07F17691C51E96, ___m_continueOnCapturedContext_1)); }
inline bool get_m_continueOnCapturedContext_1() const { return ___m_continueOnCapturedContext_1; }
inline bool* get_address_of_m_continueOnCapturedContext_1() { return &___m_continueOnCapturedContext_1; }
inline void set_m_continueOnCapturedContext_1(bool value)
{
___m_continueOnCapturedContext_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONFIGUREDTASKAWAITER_T688A02A53D1A4A883C7DDAFE0F07F17691C51E96_H
#ifndef CONFIGUREDTASKAWAITER_T18D0589F789FFE82A30A223888FB7C5BED32C63E_H
#define CONFIGUREDTASKAWAITER_T18D0589F789FFE82A30A223888FB7C5BED32C63E_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>
struct ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E
{
public:
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_task
Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * ___m_task_0;
// System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_continueOnCapturedContext
bool ___m_continueOnCapturedContext_1;
public:
inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E, ___m_task_0)); }
inline Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * get_m_task_0() const { return ___m_task_0; }
inline Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 ** get_address_of_m_task_0() { return &___m_task_0; }
inline void set_m_task_0(Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * value)
{
___m_task_0 = value;
Il2CppCodeGenWriteBarrier((&___m_task_0), value);
}
inline static int32_t get_offset_of_m_continueOnCapturedContext_1() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E, ___m_continueOnCapturedContext_1)); }
inline bool get_m_continueOnCapturedContext_1() const { return ___m_continueOnCapturedContext_1; }
inline bool* get_address_of_m_continueOnCapturedContext_1() { return &___m_continueOnCapturedContext_1; }
inline void set_m_continueOnCapturedContext_1(bool value)
{
___m_continueOnCapturedContext_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONFIGUREDTASKAWAITER_T18D0589F789FFE82A30A223888FB7C5BED32C63E_H
#ifndef CONFIGUREDTASKAWAITER_T7DF2E84988582301369783F2ECA65B4F26D5A740_H
#define CONFIGUREDTASKAWAITER_T7DF2E84988582301369783F2ECA65B4F26D5A740_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Nullable`1<System.Int32>>
struct ConfiguredTaskAwaiter_t7DF2E84988582301369783F2ECA65B4F26D5A740
{
public:
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_task
Task_1_t8906695C9865566AA79419735634FF27AC74506E * ___m_task_0;
// System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_continueOnCapturedContext
bool ___m_continueOnCapturedContext_1;
public:
inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_t7DF2E84988582301369783F2ECA65B4F26D5A740, ___m_task_0)); }
inline Task_1_t8906695C9865566AA79419735634FF27AC74506E * get_m_task_0() const { return ___m_task_0; }
inline Task_1_t8906695C9865566AA79419735634FF27AC74506E ** get_address_of_m_task_0() { return &___m_task_0; }
inline void set_m_task_0(Task_1_t8906695C9865566AA79419735634FF27AC74506E * value)
{
___m_task_0 = value;
Il2CppCodeGenWriteBarrier((&___m_task_0), value);
}
inline static int32_t get_offset_of_m_continueOnCapturedContext_1() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_t7DF2E84988582301369783F2ECA65B4F26D5A740, ___m_continueOnCapturedContext_1)); }
inline bool get_m_continueOnCapturedContext_1() const { return ___m_continueOnCapturedContext_1; }
inline bool* get_address_of_m_continueOnCapturedContext_1() { return &___m_continueOnCapturedContext_1; }
inline void set_m_continueOnCapturedContext_1(bool value)
{
___m_continueOnCapturedContext_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONFIGUREDTASKAWAITER_T7DF2E84988582301369783F2ECA65B4F26D5A740_H
#ifndef CONFIGUREDTASKAWAITER_TFB3C4197768C6CF02BE088F703AA6E46D703D46E_H
#define CONFIGUREDTASKAWAITER_TFB3C4197768C6CF02BE088F703AA6E46D703D46E_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>
struct ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E
{
public:
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_task
Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * ___m_task_0;
// System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter::m_continueOnCapturedContext
bool ___m_continueOnCapturedContext_1;
public:
inline static int32_t get_offset_of_m_task_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E, ___m_task_0)); }
inline Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * get_m_task_0() const { return ___m_task_0; }
inline Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 ** get_address_of_m_task_0() { return &___m_task_0; }
inline void set_m_task_0(Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * value)
{
___m_task_0 = value;
Il2CppCodeGenWriteBarrier((&___m_task_0), value);
}
inline static int32_t get_offset_of_m_continueOnCapturedContext_1() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E, ___m_continueOnCapturedContext_1)); }
inline bool get_m_continueOnCapturedContext_1() const { return ___m_continueOnCapturedContext_1; }
inline bool* get_address_of_m_continueOnCapturedContext_1() { return &___m_continueOnCapturedContext_1; }
inline void set_m_continueOnCapturedContext_1(bool value)
{
___m_continueOnCapturedContext_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONFIGUREDTASKAWAITER_TFB3C4197768C6CF02BE088F703AA6E46D703D46E_H
#ifndef GCHANDLE_T39FAEE3EA592432C93B574A31DD83B87F1847DE3_H
#define GCHANDLE_T39FAEE3EA592432C93B574A31DD83B87F1847DE3_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // GCHANDLE_T39FAEE3EA592432C93B574A31DD83B87F1847DE3_H
#ifndef X509CERTIFICATE2IMPL_T645108014422F6408EB87390317CD10710F129E7_H
#define X509CERTIFICATE2IMPL_T645108014422F6408EB87390317CD10710F129E7_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Security.Cryptography.X509Certificates.X509Certificate2Impl
struct X509Certificate2Impl_t645108014422F6408EB87390317CD10710F129E7 : public X509CertificateImpl_t89610BFDE87B872143A4623CFC7F17275EB48313
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // X509CERTIFICATE2IMPL_T645108014422F6408EB87390317CD10710F129E7_H
#ifndef X509CERTIFICATECOLLECTION_T824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833_H
#define X509CERTIFICATECOLLECTION_T824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Security.Cryptography.X509Certificates.X509CertificateCollection
struct X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 : public CollectionBase_tF5D4583FF325726066A9803839A04E9C0084ED01
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // X509CERTIFICATECOLLECTION_T824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833_H
#ifndef SYSTEMEXCEPTION_T5380468142AA850BE4A341D7AF3EAB9C78746782_H
#define SYSTEMEXCEPTION_T5380468142AA850BE4A341D7AF3EAB9C78746782_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.SystemException
struct SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 : public Exception_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SYSTEMEXCEPTION_T5380468142AA850BE4A341D7AF3EAB9C78746782_H
#ifndef DECODERREPLACEMENTFALLBACK_T8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742_H
#define DECODERREPLACEMENTFALLBACK_T8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Text.DecoderReplacementFallback
struct DecoderReplacementFallback_t8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742 : public DecoderFallback_t128445EB7676870485230893338EF044F6B72F60
{
public:
// System.String System.Text.DecoderReplacementFallback::strDefault
String_t* ___strDefault_4;
public:
inline static int32_t get_offset_of_strDefault_4() { return static_cast<int32_t>(offsetof(DecoderReplacementFallback_t8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742, ___strDefault_4)); }
inline String_t* get_strDefault_4() const { return ___strDefault_4; }
inline String_t** get_address_of_strDefault_4() { return &___strDefault_4; }
inline void set_strDefault_4(String_t* value)
{
___strDefault_4 = value;
Il2CppCodeGenWriteBarrier((&___strDefault_4), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DECODERREPLACEMENTFALLBACK_T8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742_H
#ifndef ENCODERREPLACEMENTFALLBACK_TC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998_H
#define ENCODERREPLACEMENTFALLBACK_TC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Text.EncoderReplacementFallback
struct EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998 : public EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63
{
public:
// System.String System.Text.EncoderReplacementFallback::strDefault
String_t* ___strDefault_4;
public:
inline static int32_t get_offset_of_strDefault_4() { return static_cast<int32_t>(offsetof(EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998, ___strDefault_4)); }
inline String_t* get_strDefault_4() const { return ___strDefault_4; }
inline String_t** get_address_of_strDefault_4() { return &___strDefault_4; }
inline void set_strDefault_4(String_t* value)
{
___strDefault_4 = value;
Il2CppCodeGenWriteBarrier((&___strDefault_4), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENCODERREPLACEMENTFALLBACK_TC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998_H
#ifndef CANCELLATIONTOKEN_T9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_H
#define CANCELLATIONTOKEN_T9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.CancellationToken
struct CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB
{
public:
// System.Threading.CancellationTokenSource System.Threading.CancellationToken::m_source
CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * ___m_source_0;
public:
inline static int32_t get_offset_of_m_source_0() { return static_cast<int32_t>(offsetof(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB, ___m_source_0)); }
inline CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * get_m_source_0() const { return ___m_source_0; }
inline CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE ** get_address_of_m_source_0() { return &___m_source_0; }
inline void set_m_source_0(CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * value)
{
___m_source_0 = value;
Il2CppCodeGenWriteBarrier((&___m_source_0), value);
}
};
struct CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_StaticFields
{
public:
// System.Action`1<System.Object> System.Threading.CancellationToken::s_ActionToActionObjShunt
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ___s_ActionToActionObjShunt_1;
public:
inline static int32_t get_offset_of_s_ActionToActionObjShunt_1() { return static_cast<int32_t>(offsetof(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_StaticFields, ___s_ActionToActionObjShunt_1)); }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get_s_ActionToActionObjShunt_1() const { return ___s_ActionToActionObjShunt_1; }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of_s_ActionToActionObjShunt_1() { return &___s_ActionToActionObjShunt_1; }
inline void set_s_ActionToActionObjShunt_1(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * value)
{
___s_ActionToActionObjShunt_1 = value;
Il2CppCodeGenWriteBarrier((&___s_ActionToActionObjShunt_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Threading.CancellationToken
struct CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_marshaled_pinvoke
{
CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * ___m_source_0;
};
// Native definition for COM marshalling of System.Threading.CancellationToken
struct CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_marshaled_com
{
CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * ___m_source_0;
};
#endif // CANCELLATIONTOKEN_T9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_H
#ifndef UINT16_TAE45CEF73BF720100519F6867F32145D075F928E_H
#define UINT16_TAE45CEF73BF720100519F6867F32145D075F928E_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UINT16_TAE45CEF73BF720100519F6867F32145D075F928E_H
#ifndef UINT32_T4980FA09003AFAAB5A6E361BA2748EA9A005709B_H
#define UINT32_T4980FA09003AFAAB5A6E361BA2748EA9A005709B_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UINT32_T4980FA09003AFAAB5A6E361BA2748EA9A005709B_H
#ifndef UINT64_TA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_H
#define UINT64_TA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UINT64_TA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_H
#ifndef VALUETUPLE_2_T446756A8057B54D18CAD5BA1D73699DA4B40A264_H
#define VALUETUPLE_2_T446756A8057B54D18CAD5BA1D73699DA4B40A264_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ValueTuple`2<System.Int32,System.Boolean>
struct ValueTuple_2_t446756A8057B54D18CAD5BA1D73699DA4B40A264
{
public:
// T1 System.ValueTuple`2::Item1
int32_t ___Item1_0;
// T2 System.ValueTuple`2::Item2
bool ___Item2_1;
public:
inline static int32_t get_offset_of_Item1_0() { return static_cast<int32_t>(offsetof(ValueTuple_2_t446756A8057B54D18CAD5BA1D73699DA4B40A264, ___Item1_0)); }
inline int32_t get_Item1_0() const { return ___Item1_0; }
inline int32_t* get_address_of_Item1_0() { return &___Item1_0; }
inline void set_Item1_0(int32_t value)
{
___Item1_0 = value;
}
inline static int32_t get_offset_of_Item2_1() { return static_cast<int32_t>(offsetof(ValueTuple_2_t446756A8057B54D18CAD5BA1D73699DA4B40A264, ___Item2_1)); }
inline bool get_Item2_1() const { return ___Item2_1; }
inline bool* get_address_of_Item2_1() { return &___Item2_1; }
inline void set_Item2_1(bool value)
{
___Item2_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // VALUETUPLE_2_T446756A8057B54D18CAD5BA1D73699DA4B40A264_H
#ifndef VOID_T22962CB4C05B1D89B55A6E1139F0E87A90987017_H
#define VOID_T22962CB4C05B1D89B55A6E1139F0E87A90987017_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void
struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017
{
public:
union
{
struct
{
};
uint8_t Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017__padding[1];
};
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // VOID_T22962CB4C05B1D89B55A6E1139F0E87A90987017_H
#ifndef U3CPRIVATEIMPLEMENTATIONDETAILSU3E_TD3F45A95FC1F3A32916F221D83F290D182AD6291_H
#define U3CPRIVATEIMPLEMENTATIONDETAILSU3E_TD3F45A95FC1F3A32916F221D83F290D182AD6291_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <PrivateImplementationDetails>
struct U3CPrivateImplementationDetailsU3E_tD3F45A95FC1F3A32916F221D83F290D182AD6291 : public RuntimeObject
{
public:
public:
};
struct U3CPrivateImplementationDetailsU3E_tD3F45A95FC1F3A32916F221D83F290D182AD6291_StaticFields
{
public:
// <PrivateImplementationDetails>/__StaticArrayInitTypeSize=32 <PrivateImplementationDetails>::59F5BD34B6C013DEACC784F69C67E95150033A84
__StaticArrayInitTypeSizeU3D32_t5300E5FCBD58716E8A4EBB9470E4FAE1A0A964FA ___59F5BD34B6C013DEACC784F69C67E95150033A84_0;
// <PrivateImplementationDetails>/__StaticArrayInitTypeSize=32 <PrivateImplementationDetails>::C02C28AFEBE998F767E4AF43E3BE8F5E9FA11536
__StaticArrayInitTypeSizeU3D32_t5300E5FCBD58716E8A4EBB9470E4FAE1A0A964FA ___C02C28AFEBE998F767E4AF43E3BE8F5E9FA11536_1;
// <PrivateImplementationDetails>/__StaticArrayInitTypeSize=128 <PrivateImplementationDetails>::CCEEADA43268372341F81AE0C9208C6856441C04
__StaticArrayInitTypeSizeU3D128_t4A42759E6E25B0C61E6036A661F4344DE92C2905 ___CCEEADA43268372341F81AE0C9208C6856441C04_2;
// System.Int64 <PrivateImplementationDetails>::E5BC1BAFADE1862DD6E0B9FB632BFAA6C3873A78
int64_t ___E5BC1BAFADE1862DD6E0B9FB632BFAA6C3873A78_3;
public:
inline static int32_t get_offset_of_U359F5BD34B6C013DEACC784F69C67E95150033A84_0() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tD3F45A95FC1F3A32916F221D83F290D182AD6291_StaticFields, ___59F5BD34B6C013DEACC784F69C67E95150033A84_0)); }
inline __StaticArrayInitTypeSizeU3D32_t5300E5FCBD58716E8A4EBB9470E4FAE1A0A964FA get_U359F5BD34B6C013DEACC784F69C67E95150033A84_0() const { return ___59F5BD34B6C013DEACC784F69C67E95150033A84_0; }
inline __StaticArrayInitTypeSizeU3D32_t5300E5FCBD58716E8A4EBB9470E4FAE1A0A964FA * get_address_of_U359F5BD34B6C013DEACC784F69C67E95150033A84_0() { return &___59F5BD34B6C013DEACC784F69C67E95150033A84_0; }
inline void set_U359F5BD34B6C013DEACC784F69C67E95150033A84_0(__StaticArrayInitTypeSizeU3D32_t5300E5FCBD58716E8A4EBB9470E4FAE1A0A964FA value)
{
___59F5BD34B6C013DEACC784F69C67E95150033A84_0 = value;
}
inline static int32_t get_offset_of_C02C28AFEBE998F767E4AF43E3BE8F5E9FA11536_1() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tD3F45A95FC1F3A32916F221D83F290D182AD6291_StaticFields, ___C02C28AFEBE998F767E4AF43E3BE8F5E9FA11536_1)); }
inline __StaticArrayInitTypeSizeU3D32_t5300E5FCBD58716E8A4EBB9470E4FAE1A0A964FA get_C02C28AFEBE998F767E4AF43E3BE8F5E9FA11536_1() const { return ___C02C28AFEBE998F767E4AF43E3BE8F5E9FA11536_1; }
inline __StaticArrayInitTypeSizeU3D32_t5300E5FCBD58716E8A4EBB9470E4FAE1A0A964FA * get_address_of_C02C28AFEBE998F767E4AF43E3BE8F5E9FA11536_1() { return &___C02C28AFEBE998F767E4AF43E3BE8F5E9FA11536_1; }
inline void set_C02C28AFEBE998F767E4AF43E3BE8F5E9FA11536_1(__StaticArrayInitTypeSizeU3D32_t5300E5FCBD58716E8A4EBB9470E4FAE1A0A964FA value)
{
___C02C28AFEBE998F767E4AF43E3BE8F5E9FA11536_1 = value;
}
inline static int32_t get_offset_of_CCEEADA43268372341F81AE0C9208C6856441C04_2() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tD3F45A95FC1F3A32916F221D83F290D182AD6291_StaticFields, ___CCEEADA43268372341F81AE0C9208C6856441C04_2)); }
inline __StaticArrayInitTypeSizeU3D128_t4A42759E6E25B0C61E6036A661F4344DE92C2905 get_CCEEADA43268372341F81AE0C9208C6856441C04_2() const { return ___CCEEADA43268372341F81AE0C9208C6856441C04_2; }
inline __StaticArrayInitTypeSizeU3D128_t4A42759E6E25B0C61E6036A661F4344DE92C2905 * get_address_of_CCEEADA43268372341F81AE0C9208C6856441C04_2() { return &___CCEEADA43268372341F81AE0C9208C6856441C04_2; }
inline void set_CCEEADA43268372341F81AE0C9208C6856441C04_2(__StaticArrayInitTypeSizeU3D128_t4A42759E6E25B0C61E6036A661F4344DE92C2905 value)
{
___CCEEADA43268372341F81AE0C9208C6856441C04_2 = value;
}
inline static int32_t get_offset_of_E5BC1BAFADE1862DD6E0B9FB632BFAA6C3873A78_3() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tD3F45A95FC1F3A32916F221D83F290D182AD6291_StaticFields, ___E5BC1BAFADE1862DD6E0B9FB632BFAA6C3873A78_3)); }
inline int64_t get_E5BC1BAFADE1862DD6E0B9FB632BFAA6C3873A78_3() const { return ___E5BC1BAFADE1862DD6E0B9FB632BFAA6C3873A78_3; }
inline int64_t* get_address_of_E5BC1BAFADE1862DD6E0B9FB632BFAA6C3873A78_3() { return &___E5BC1BAFADE1862DD6E0B9FB632BFAA6C3873A78_3; }
inline void set_E5BC1BAFADE1862DD6E0B9FB632BFAA6C3873A78_3(int64_t value)
{
___E5BC1BAFADE1862DD6E0B9FB632BFAA6C3873A78_3 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CPRIVATEIMPLEMENTATIONDETAILSU3E_TD3F45A95FC1F3A32916F221D83F290D182AD6291_H
#ifndef ASYNCOPERATIONSTATUS_T355A724E020AF86BA40298A468EB739EA41B9E27_H
#define ASYNCOPERATIONSTATUS_T355A724E020AF86BA40298A468EB739EA41B9E27_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Net.Security.AsyncOperationStatus
struct AsyncOperationStatus_t355A724E020AF86BA40298A468EB739EA41B9E27
{
public:
// System.Int32 Mono.Net.Security.AsyncOperationStatus::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AsyncOperationStatus_t355A724E020AF86BA40298A468EB739EA41B9E27, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASYNCOPERATIONSTATUS_T355A724E020AF86BA40298A468EB739EA41B9E27_H
#ifndef ASYNCREADREQUEST_T10B0459470C14DC065B5AD60AF378AB78CD138C1_H
#define ASYNCREADREQUEST_T10B0459470C14DC065B5AD60AF378AB78CD138C1_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Net.Security.AsyncReadRequest
struct AsyncReadRequest_t10B0459470C14DC065B5AD60AF378AB78CD138C1 : public AsyncReadOrWriteRequest_t991B91E93F3980A5879ABAC6738F9BAC770E3B8F
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASYNCREADREQUEST_T10B0459470C14DC065B5AD60AF378AB78CD138C1_H
#ifndef ASYNCWRITEREQUEST_TFE4740D02401F295910B4006A8390590D5E2C27B_H
#define ASYNCWRITEREQUEST_TFE4740D02401F295910B4006A8390590D5E2C27B_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Net.Security.AsyncWriteRequest
struct AsyncWriteRequest_tFE4740D02401F295910B4006A8390590D5E2C27B : public AsyncReadOrWriteRequest_t991B91E93F3980A5879ABAC6738F9BAC770E3B8F
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASYNCWRITEREQUEST_TFE4740D02401F295910B4006A8390590D5E2C27B_H
#ifndef OPERATIONTYPE_T76DD3B06699CAF7714C8E801F9B1FBD9FCAF9ED0_H
#define OPERATIONTYPE_T76DD3B06699CAF7714C8E801F9B1FBD9FCAF9ED0_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Net.Security.MobileAuthenticatedStream/OperationType
struct OperationType_t76DD3B06699CAF7714C8E801F9B1FBD9FCAF9ED0
{
public:
// System.Int32 Mono.Net.Security.MobileAuthenticatedStream/OperationType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(OperationType_t76DD3B06699CAF7714C8E801F9B1FBD9FCAF9ED0, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // OPERATIONTYPE_T76DD3B06699CAF7714C8E801F9B1FBD9FCAF9ED0_H
#ifndef MONOTLSPROVIDERFACTORY_T01773E7677E88B1202FB7770A3E9F53655BB2525_H
#define MONOTLSPROVIDERFACTORY_T01773E7677E88B1202FB7770A3E9F53655BB2525_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Net.Security.MonoTlsProviderFactory
struct MonoTlsProviderFactory_t01773E7677E88B1202FB7770A3E9F53655BB2525 : public RuntimeObject
{
public:
public:
};
struct MonoTlsProviderFactory_t01773E7677E88B1202FB7770A3E9F53655BB2525_StaticFields
{
public:
// System.Object Mono.Net.Security.MonoTlsProviderFactory::locker
RuntimeObject * ___locker_0;
// System.Guid Mono.Net.Security.MonoTlsProviderFactory::UnityTlsId
Guid_t ___UnityTlsId_1;
// System.Guid Mono.Net.Security.MonoTlsProviderFactory::AppleTlsId
Guid_t ___AppleTlsId_2;
// System.Guid Mono.Net.Security.MonoTlsProviderFactory::BtlsId
Guid_t ___BtlsId_3;
// System.Guid Mono.Net.Security.MonoTlsProviderFactory::LegacyId
Guid_t ___LegacyId_4;
public:
inline static int32_t get_offset_of_locker_0() { return static_cast<int32_t>(offsetof(MonoTlsProviderFactory_t01773E7677E88B1202FB7770A3E9F53655BB2525_StaticFields, ___locker_0)); }
inline RuntimeObject * get_locker_0() const { return ___locker_0; }
inline RuntimeObject ** get_address_of_locker_0() { return &___locker_0; }
inline void set_locker_0(RuntimeObject * value)
{
___locker_0 = value;
Il2CppCodeGenWriteBarrier((&___locker_0), value);
}
inline static int32_t get_offset_of_UnityTlsId_1() { return static_cast<int32_t>(offsetof(MonoTlsProviderFactory_t01773E7677E88B1202FB7770A3E9F53655BB2525_StaticFields, ___UnityTlsId_1)); }
inline Guid_t get_UnityTlsId_1() const { return ___UnityTlsId_1; }
inline Guid_t * get_address_of_UnityTlsId_1() { return &___UnityTlsId_1; }
inline void set_UnityTlsId_1(Guid_t value)
{
___UnityTlsId_1 = value;
}
inline static int32_t get_offset_of_AppleTlsId_2() { return static_cast<int32_t>(offsetof(MonoTlsProviderFactory_t01773E7677E88B1202FB7770A3E9F53655BB2525_StaticFields, ___AppleTlsId_2)); }
inline Guid_t get_AppleTlsId_2() const { return ___AppleTlsId_2; }
inline Guid_t * get_address_of_AppleTlsId_2() { return &___AppleTlsId_2; }
inline void set_AppleTlsId_2(Guid_t value)
{
___AppleTlsId_2 = value;
}
inline static int32_t get_offset_of_BtlsId_3() { return static_cast<int32_t>(offsetof(MonoTlsProviderFactory_t01773E7677E88B1202FB7770A3E9F53655BB2525_StaticFields, ___BtlsId_3)); }
inline Guid_t get_BtlsId_3() const { return ___BtlsId_3; }
inline Guid_t * get_address_of_BtlsId_3() { return &___BtlsId_3; }
inline void set_BtlsId_3(Guid_t value)
{
___BtlsId_3 = value;
}
inline static int32_t get_offset_of_LegacyId_4() { return static_cast<int32_t>(offsetof(MonoTlsProviderFactory_t01773E7677E88B1202FB7770A3E9F53655BB2525_StaticFields, ___LegacyId_4)); }
inline Guid_t get_LegacyId_4() const { return ___LegacyId_4; }
inline Guid_t * get_address_of_LegacyId_4() { return &___LegacyId_4; }
inline void set_LegacyId_4(Guid_t value)
{
___LegacyId_4 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MONOTLSPROVIDERFACTORY_T01773E7677E88B1202FB7770A3E9F53655BB2525_H
#ifndef MONOSSLPOLICYERRORS_T5F32A4E793EAB8B8A8128A6A3E7690D2E1F666C7_H
#define MONOSSLPOLICYERRORS_T5F32A4E793EAB8B8A8128A6A3E7690D2E1F666C7_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Interface.MonoSslPolicyErrors
struct MonoSslPolicyErrors_t5F32A4E793EAB8B8A8128A6A3E7690D2E1F666C7
{
public:
// System.Int32 Mono.Security.Interface.MonoSslPolicyErrors::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(MonoSslPolicyErrors_t5F32A4E793EAB8B8A8128A6A3E7690D2E1F666C7, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MONOSSLPOLICYERRORS_T5F32A4E793EAB8B8A8128A6A3E7690D2E1F666C7_H
#ifndef UNITYTLS_CIPHERSUITE_TA99DBE84EF3BB26740AEF7A5CC6DEA1227B5F9DC_H
#define UNITYTLS_CIPHERSUITE_TA99DBE84EF3BB26740AEF7A5CC6DEA1227B5F9DC_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_ciphersuite
struct unitytls_ciphersuite_tA99DBE84EF3BB26740AEF7A5CC6DEA1227B5F9DC
{
public:
// System.UInt32 Mono.Unity.UnityTls/unitytls_ciphersuite::value__
uint32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(unitytls_ciphersuite_tA99DBE84EF3BB26740AEF7A5CC6DEA1227B5F9DC, ___value___2)); }
inline uint32_t get_value___2() const { return ___value___2; }
inline uint32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(uint32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLS_CIPHERSUITE_TA99DBE84EF3BB26740AEF7A5CC6DEA1227B5F9DC_H
#ifndef UNITYTLS_ERROR_CODE_TA9272A71D51F7FE555C03185AE244FB01EAF998F_H
#define UNITYTLS_ERROR_CODE_TA9272A71D51F7FE555C03185AE244FB01EAF998F_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_error_code
struct unitytls_error_code_tA9272A71D51F7FE555C03185AE244FB01EAF998F
{
public:
// System.UInt32 Mono.Unity.UnityTls/unitytls_error_code::value__
uint32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(unitytls_error_code_tA9272A71D51F7FE555C03185AE244FB01EAF998F, ___value___2)); }
inline uint32_t get_value___2() const { return ___value___2; }
inline uint32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(uint32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLS_ERROR_CODE_TA9272A71D51F7FE555C03185AE244FB01EAF998F_H
#ifndef UNITYTLS_PROTOCOL_T4E7BF0D3D575EDD09EA7BF6593AAB40BBAC60DF8_H
#define UNITYTLS_PROTOCOL_T4E7BF0D3D575EDD09EA7BF6593AAB40BBAC60DF8_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_protocol
struct unitytls_protocol_t4E7BF0D3D575EDD09EA7BF6593AAB40BBAC60DF8
{
public:
// System.UInt32 Mono.Unity.UnityTls/unitytls_protocol::value__
uint32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(unitytls_protocol_t4E7BF0D3D575EDD09EA7BF6593AAB40BBAC60DF8, ___value___2)); }
inline uint32_t get_value___2() const { return ___value___2; }
inline uint32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(uint32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLS_PROTOCOL_T4E7BF0D3D575EDD09EA7BF6593AAB40BBAC60DF8_H
#ifndef UNITYTLS_X509VERIFY_RESULT_T835FEA0265EFD70F0762B220C663474E03402278_H
#define UNITYTLS_X509VERIFY_RESULT_T835FEA0265EFD70F0762B220C663474E03402278_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_x509verify_result
struct unitytls_x509verify_result_t835FEA0265EFD70F0762B220C663474E03402278
{
public:
// System.UInt32 Mono.Unity.UnityTls/unitytls_x509verify_result::value__
uint32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(unitytls_x509verify_result_t835FEA0265EFD70F0762B220C663474E03402278, ___value___2)); }
inline uint32_t get_value___2() const { return ___value___2; }
inline uint32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(uint32_t value)
{
___value___2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLS_X509VERIFY_RESULT_T835FEA0265EFD70F0762B220C663474E03402278_H
#ifndef ARGUMENTEXCEPTION_TEDCD16F20A09ECE461C3DA766C16EDA8864057D1_H
#define ARGUMENTEXCEPTION_TEDCD16F20A09ECE461C3DA766C16EDA8864057D1_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ArgumentException
struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
// System.String System.ArgumentException::m_paramName
String_t* ___m_paramName_17;
public:
inline static int32_t get_offset_of_m_paramName_17() { return static_cast<int32_t>(offsetof(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1, ___m_paramName_17)); }
inline String_t* get_m_paramName_17() const { return ___m_paramName_17; }
inline String_t** get_address_of_m_paramName_17() { return &___m_paramName_17; }
inline void set_m_paramName_17(String_t* value)
{
___m_paramName_17 = value;
Il2CppCodeGenWriteBarrier((&___m_paramName_17), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ARGUMENTEXCEPTION_TEDCD16F20A09ECE461C3DA766C16EDA8864057D1_H
#ifndef EDITORBROWSABLESTATE_T8EAF9BADAAE7DA735C235280DF4B8974EAA39C1B_H
#define EDITORBROWSABLESTATE_T8EAF9BADAAE7DA735C235280DF4B8974EAA39C1B_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ComponentModel.EditorBrowsableState
struct EditorBrowsableState_t8EAF9BADAAE7DA735C235280DF4B8974EAA39C1B
{
public:
// System.Int32 System.ComponentModel.EditorBrowsableState::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EditorBrowsableState_t8EAF9BADAAE7DA735C235280DF4B8974EAA39C1B, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EDITORBROWSABLESTATE_T8EAF9BADAAE7DA735C235280DF4B8974EAA39C1B_H
#ifndef TYPECONVERTER_T8306AE03734853B551DDF089C1F17836A7764DBB_H
#define TYPECONVERTER_T8306AE03734853B551DDF089C1F17836A7764DBB_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ComponentModel.TypeConverter
struct TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB : public RuntimeObject
{
public:
public:
};
struct TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB_StaticFields
{
public:
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.TypeConverter::useCompatibleTypeConversion
bool ___useCompatibleTypeConversion_1;
public:
inline static int32_t get_offset_of_useCompatibleTypeConversion_1() { return static_cast<int32_t>(offsetof(TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB_StaticFields, ___useCompatibleTypeConversion_1)); }
inline bool get_useCompatibleTypeConversion_1() const { return ___useCompatibleTypeConversion_1; }
inline bool* get_address_of_useCompatibleTypeConversion_1() { return &___useCompatibleTypeConversion_1; }
inline void set_useCompatibleTypeConversion_1(bool value)
{
___useCompatibleTypeConversion_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TYPECONVERTER_T8306AE03734853B551DDF089C1F17836A7764DBB_H
#ifndef DELEGATE_T_H
#define DELEGATE_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&___m_target_2), 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((&___method_info_7), 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((&___original_method_info_8), 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((&___data_9), 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// 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;
};
#endif // DELEGATE_T_H
#ifndef FORMATEXCEPTION_T2808E076CDE4650AF89F55FD78F49290D0EC5BDC_H
#define FORMATEXCEPTION_T2808E076CDE4650AF89F55FD78F49290D0EC5BDC_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.FormatException
struct FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FORMATEXCEPTION_T2808E076CDE4650AF89F55FD78F49290D0EC5BDC_H
#ifndef IOEXCEPTION_T60E052020EDE4D3075F57A1DCC224FF8864354BA_H
#define IOEXCEPTION_T60E052020EDE4D3075F57A1DCC224FF8864354BA_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.IOException
struct IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
// System.String System.IO.IOException::_maybeFullPath
String_t* ____maybeFullPath_17;
public:
inline static int32_t get_offset_of__maybeFullPath_17() { return static_cast<int32_t>(offsetof(IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA, ____maybeFullPath_17)); }
inline String_t* get__maybeFullPath_17() const { return ____maybeFullPath_17; }
inline String_t** get_address_of__maybeFullPath_17() { return &____maybeFullPath_17; }
inline void set__maybeFullPath_17(String_t* value)
{
____maybeFullPath_17 = value;
Il2CppCodeGenWriteBarrier((&____maybeFullPath_17), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // IOEXCEPTION_T60E052020EDE4D3075F57A1DCC224FF8864354BA_H
#ifndef SEEKORIGIN_TAC0AF155E3D8B36359FAD8A95FACA23169D55BB3_H
#define SEEKORIGIN_TAC0AF155E3D8B36359FAD8A95FACA23169D55BB3_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.SeekOrigin
struct SeekOrigin_tAC0AF155E3D8B36359FAD8A95FACA23169D55BB3
{
public:
// System.Int32 System.IO.SeekOrigin::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(SeekOrigin_tAC0AF155E3D8B36359FAD8A95FACA23169D55BB3, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SEEKORIGIN_TAC0AF155E3D8B36359FAD8A95FACA23169D55BB3_H
#ifndef IOOPERATION_T49FF3E40F8D6C93F406C56521BE8CC395E4FE834_H
#define IOOPERATION_T49FF3E40F8D6C93F406C56521BE8CC395E4FE834_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IOOperation
struct IOOperation_t49FF3E40F8D6C93F406C56521BE8CC395E4FE834
{
public:
// System.Int32 System.IOOperation::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(IOOperation_t49FF3E40F8D6C93F406C56521BE8CC395E4FE834, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // IOOPERATION_T49FF3E40F8D6C93F406C56521BE8CC395E4FE834_H
#ifndef INVALIDOPERATIONEXCEPTION_T0530E734D823F78310CAFAFA424CA5164D93A1F1_H
#define INVALIDOPERATIONEXCEPTION_T0530E734D823F78310CAFAFA424CA5164D93A1F1_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.InvalidOperationException
struct InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INVALIDOPERATIONEXCEPTION_T0530E734D823F78310CAFAFA424CA5164D93A1F1_H
#ifndef BYPASSELEMENTCOLLECTION_T5CCE032F76311FCEFC3128DA5A88D25568A234A7_H
#define BYPASSELEMENTCOLLECTION_T5CCE032F76311FCEFC3128DA5A88D25568A234A7_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Configuration.BypassElementCollection
struct BypassElementCollection_t5CCE032F76311FCEFC3128DA5A88D25568A234A7 : public ConfigurationElementCollection_tB0DA3194B9C1528D2627B291C79B560C68A78FCC
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // BYPASSELEMENTCOLLECTION_T5CCE032F76311FCEFC3128DA5A88D25568A234A7_H
#ifndef CONNECTIONMANAGEMENTELEMENTCOLLECTION_T83F843AEC2D2354836CC863E346FE2ECFEED2572_H
#define CONNECTIONMANAGEMENTELEMENTCOLLECTION_T83F843AEC2D2354836CC863E346FE2ECFEED2572_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Configuration.ConnectionManagementElementCollection
struct ConnectionManagementElementCollection_t83F843AEC2D2354836CC863E346FE2ECFEED2572 : public ConfigurationElementCollection_tB0DA3194B9C1528D2627B291C79B560C68A78FCC
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONNECTIONMANAGEMENTELEMENTCOLLECTION_T83F843AEC2D2354836CC863E346FE2ECFEED2572_H
#ifndef CONNECTIONMANAGEMENTSECTION_TA88F9BAD144E401AB524A9579B50050140592447_H
#define CONNECTIONMANAGEMENTSECTION_TA88F9BAD144E401AB524A9579B50050140592447_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Configuration.ConnectionManagementSection
struct ConnectionManagementSection_tA88F9BAD144E401AB524A9579B50050140592447 : public ConfigurationSection_t044F68052218C8000611AE9ADD5F66E62A632B34
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONNECTIONMANAGEMENTSECTION_TA88F9BAD144E401AB524A9579B50050140592447_H
#ifndef DEFAULTPROXYSECTION_TB752851846FC0CEBA83C36C2BF6553211029AA3B_H
#define DEFAULTPROXYSECTION_TB752851846FC0CEBA83C36C2BF6553211029AA3B_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Configuration.DefaultProxySection
struct DefaultProxySection_tB752851846FC0CEBA83C36C2BF6553211029AA3B : public ConfigurationSection_t044F68052218C8000611AE9ADD5F66E62A632B34
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DEFAULTPROXYSECTION_TB752851846FC0CEBA83C36C2BF6553211029AA3B_H
#ifndef SETTINGSSECTION_T8BECD0EB76F1865B33D072DD368676A8D51840B3_H
#define SETTINGSSECTION_T8BECD0EB76F1865B33D072DD368676A8D51840B3_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Configuration.SettingsSection
struct SettingsSection_t8BECD0EB76F1865B33D072DD368676A8D51840B3 : public ConfigurationSection_t044F68052218C8000611AE9ADD5F66E62A632B34
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SETTINGSSECTION_T8BECD0EB76F1865B33D072DD368676A8D51840B3_H
#ifndef WEBREQUESTMODULEELEMENTCOLLECTION_T2A993B681E96AAF6A96CCB0458F0F0B99BFF51BE_H
#define WEBREQUESTMODULEELEMENTCOLLECTION_T2A993B681E96AAF6A96CCB0458F0F0B99BFF51BE_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Configuration.WebRequestModuleElementCollection
struct WebRequestModuleElementCollection_t2A993B681E96AAF6A96CCB0458F0F0B99BFF51BE : public ConfigurationElementCollection_tB0DA3194B9C1528D2627B291C79B560C68A78FCC
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // WEBREQUESTMODULEELEMENTCOLLECTION_T2A993B681E96AAF6A96CCB0458F0F0B99BFF51BE_H
#ifndef WEBREQUESTMODULESSECTION_T5E031F632797D2C7F0D394BCEE4BD0DF0ECA81BC_H
#define WEBREQUESTMODULESSECTION_T5E031F632797D2C7F0D394BCEE4BD0DF0ECA81BC_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Configuration.WebRequestModulesSection
struct WebRequestModulesSection_t5E031F632797D2C7F0D394BCEE4BD0DF0ECA81BC : public ConfigurationSection_t044F68052218C8000611AE9ADD5F66E62A632B34
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // WEBREQUESTMODULESSECTION_T5E031F632797D2C7F0D394BCEE4BD0DF0ECA81BC_H
#ifndef AUTHENTICATEDSTREAM_T3DD09B1EB437BE77A9B0536EC26005B6914BF501_H
#define AUTHENTICATEDSTREAM_T3DD09B1EB437BE77A9B0536EC26005B6914BF501_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Security.AuthenticatedStream
struct AuthenticatedStream_t3DD09B1EB437BE77A9B0536EC26005B6914BF501 : public Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7
{
public:
// System.IO.Stream System.Net.Security.AuthenticatedStream::_InnerStream
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ____InnerStream_4;
// System.Boolean System.Net.Security.AuthenticatedStream::_LeaveStreamOpen
bool ____LeaveStreamOpen_5;
public:
inline static int32_t get_offset_of__InnerStream_4() { return static_cast<int32_t>(offsetof(AuthenticatedStream_t3DD09B1EB437BE77A9B0536EC26005B6914BF501, ____InnerStream_4)); }
inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * get__InnerStream_4() const { return ____InnerStream_4; }
inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 ** get_address_of__InnerStream_4() { return &____InnerStream_4; }
inline void set__InnerStream_4(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * value)
{
____InnerStream_4 = value;
Il2CppCodeGenWriteBarrier((&____InnerStream_4), value);
}
inline static int32_t get_offset_of__LeaveStreamOpen_5() { return static_cast<int32_t>(offsetof(AuthenticatedStream_t3DD09B1EB437BE77A9B0536EC26005B6914BF501, ____LeaveStreamOpen_5)); }
inline bool get__LeaveStreamOpen_5() const { return ____LeaveStreamOpen_5; }
inline bool* get_address_of__LeaveStreamOpen_5() { return &____LeaveStreamOpen_5; }
inline void set__LeaveStreamOpen_5(bool value)
{
____LeaveStreamOpen_5 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // AUTHENTICATEDSTREAM_T3DD09B1EB437BE77A9B0536EC26005B6914BF501_H
#ifndef ADDRESSFAMILY_TFA4F79FA7F299EBDF507F4811E6E5C3EEBF0850E_H
#define ADDRESSFAMILY_TFA4F79FA7F299EBDF507F4811E6E5C3EEBF0850E_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Sockets.AddressFamily
struct AddressFamily_tFA4F79FA7F299EBDF507F4811E6E5C3EEBF0850E
{
public:
// System.Int32 System.Net.Sockets.AddressFamily::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AddressFamily_tFA4F79FA7F299EBDF507F4811E6E5C3EEBF0850E, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ADDRESSFAMILY_TFA4F79FA7F299EBDF507F4811E6E5C3EEBF0850E_H
#ifndef SOCKETERROR_T0157BEC7F0A26C8FC31D392B2B7C6CFCD695D5E7_H
#define SOCKETERROR_T0157BEC7F0A26C8FC31D392B2B7C6CFCD695D5E7_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Sockets.SocketError
struct SocketError_t0157BEC7F0A26C8FC31D392B2B7C6CFCD695D5E7
{
public:
// System.Int32 System.Net.Sockets.SocketError::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(SocketError_t0157BEC7F0A26C8FC31D392B2B7C6CFCD695D5E7, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SOCKETERROR_T0157BEC7F0A26C8FC31D392B2B7C6CFCD695D5E7_H
#ifndef NOTSUPPORTEDEXCEPTION_TE75B318D6590A02A5D9B29FD97409B1750FA0010_H
#define NOTSUPPORTEDEXCEPTION_TE75B318D6590A02A5D9B29FD97409B1750FA0010_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.NotSupportedException
struct NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // NOTSUPPORTEDEXCEPTION_TE75B318D6590A02A5D9B29FD97409B1750FA0010_H
#ifndef OPERATIONCANCELEDEXCEPTION_TD28B1AE59ACCE4D46333BFE398395B8D75D76A90_H
#define OPERATIONCANCELEDEXCEPTION_TD28B1AE59ACCE4D46333BFE398395B8D75D76A90_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.OperationCanceledException
struct OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
// System.Threading.CancellationToken System.OperationCanceledException::_cancellationToken
CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ____cancellationToken_17;
public:
inline static int32_t get_offset_of__cancellationToken_17() { return static_cast<int32_t>(offsetof(OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90, ____cancellationToken_17)); }
inline CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB get__cancellationToken_17() const { return ____cancellationToken_17; }
inline CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB * get_address_of__cancellationToken_17() { return &____cancellationToken_17; }
inline void set__cancellationToken_17(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB value)
{
____cancellationToken_17 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // OPERATIONCANCELEDEXCEPTION_TD28B1AE59ACCE4D46333BFE398395B8D75D76A90_H
#ifndef PLATFORMID_T7969561D329B66D3E609C70CA506A519E06F2776_H
#define PLATFORMID_T7969561D329B66D3E609C70CA506A519E06F2776_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.PlatformID
struct PlatformID_t7969561D329B66D3E609C70CA506A519E06F2776
{
public:
// System.Int32 System.PlatformID::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(PlatformID_t7969561D329B66D3E609C70CA506A519E06F2776, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PLATFORMID_T7969561D329B66D3E609C70CA506A519E06F2776_H
#ifndef BINDINGFLAGS_TE35C91D046E63A1B92BB9AB909FCF9DA84379ED0_H
#define BINDINGFLAGS_TE35C91D046E63A1B92BB9AB909FCF9DA84379ED0_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.BindingFlags
struct BindingFlags_tE35C91D046E63A1B92BB9AB909FCF9DA84379ED0
{
public:
// System.Int32 System.Reflection.BindingFlags::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(BindingFlags_tE35C91D046E63A1B92BB9AB909FCF9DA84379ED0, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // BINDINGFLAGS_TE35C91D046E63A1B92BB9AB909FCF9DA84379ED0_H
#ifndef ASYNCTASKMETHODBUILDER_1_TE6ADC5F95443C1197F4C34B1207F02A4E0F7EDB2_H
#define ASYNCTASKMETHODBUILDER_1_TE6ADC5F95443C1197F4C34B1207F02A4E0F7EDB2_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<Mono.Net.Security.AsyncProtocolResult>
struct AsyncTaskMethodBuilder_1_tE6ADC5F95443C1197F4C34B1207F02A4E0F7EDB2
{
public:
// System.Runtime.CompilerServices.AsyncMethodBuilderCore System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_coreState
AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 ___m_coreState_1;
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_task
Task_1_t6D67FA6126155FF2C2E227A859409D83DFAFA9BD * ___m_task_2;
public:
inline static int32_t get_offset_of_m_coreState_1() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_tE6ADC5F95443C1197F4C34B1207F02A4E0F7EDB2, ___m_coreState_1)); }
inline AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 get_m_coreState_1() const { return ___m_coreState_1; }
inline AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 * get_address_of_m_coreState_1() { return &___m_coreState_1; }
inline void set_m_coreState_1(AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 value)
{
___m_coreState_1 = value;
}
inline static int32_t get_offset_of_m_task_2() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_tE6ADC5F95443C1197F4C34B1207F02A4E0F7EDB2, ___m_task_2)); }
inline Task_1_t6D67FA6126155FF2C2E227A859409D83DFAFA9BD * get_m_task_2() const { return ___m_task_2; }
inline Task_1_t6D67FA6126155FF2C2E227A859409D83DFAFA9BD ** get_address_of_m_task_2() { return &___m_task_2; }
inline void set_m_task_2(Task_1_t6D67FA6126155FF2C2E227A859409D83DFAFA9BD * value)
{
___m_task_2 = value;
Il2CppCodeGenWriteBarrier((&___m_task_2), value);
}
};
struct AsyncTaskMethodBuilder_1_tE6ADC5F95443C1197F4C34B1207F02A4E0F7EDB2_StaticFields
{
public:
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::s_defaultResultTask
Task_1_t6D67FA6126155FF2C2E227A859409D83DFAFA9BD * ___s_defaultResultTask_0;
public:
inline static int32_t get_offset_of_s_defaultResultTask_0() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_tE6ADC5F95443C1197F4C34B1207F02A4E0F7EDB2_StaticFields, ___s_defaultResultTask_0)); }
inline Task_1_t6D67FA6126155FF2C2E227A859409D83DFAFA9BD * get_s_defaultResultTask_0() const { return ___s_defaultResultTask_0; }
inline Task_1_t6D67FA6126155FF2C2E227A859409D83DFAFA9BD ** get_address_of_s_defaultResultTask_0() { return &___s_defaultResultTask_0; }
inline void set_s_defaultResultTask_0(Task_1_t6D67FA6126155FF2C2E227A859409D83DFAFA9BD * value)
{
___s_defaultResultTask_0 = value;
Il2CppCodeGenWriteBarrier((&___s_defaultResultTask_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASYNCTASKMETHODBUILDER_1_TE6ADC5F95443C1197F4C34B1207F02A4E0F7EDB2_H
#ifndef ASYNCTASKMETHODBUILDER_1_T822D24686214CB8B967C66DA507CD66A5C853079_H
#define ASYNCTASKMETHODBUILDER_1_T822D24686214CB8B967C66DA507CD66A5C853079_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>
struct AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079
{
public:
// System.Runtime.CompilerServices.AsyncMethodBuilderCore System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_coreState
AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 ___m_coreState_1;
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_task
Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * ___m_task_2;
public:
inline static int32_t get_offset_of_m_coreState_1() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079, ___m_coreState_1)); }
inline AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 get_m_coreState_1() const { return ___m_coreState_1; }
inline AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 * get_address_of_m_coreState_1() { return &___m_coreState_1; }
inline void set_m_coreState_1(AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 value)
{
___m_coreState_1 = value;
}
inline static int32_t get_offset_of_m_task_2() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079, ___m_task_2)); }
inline Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * get_m_task_2() const { return ___m_task_2; }
inline Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 ** get_address_of_m_task_2() { return &___m_task_2; }
inline void set_m_task_2(Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * value)
{
___m_task_2 = value;
Il2CppCodeGenWriteBarrier((&___m_task_2), value);
}
};
struct AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079_StaticFields
{
public:
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::s_defaultResultTask
Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * ___s_defaultResultTask_0;
public:
inline static int32_t get_offset_of_s_defaultResultTask_0() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079_StaticFields, ___s_defaultResultTask_0)); }
inline Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * get_s_defaultResultTask_0() const { return ___s_defaultResultTask_0; }
inline Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 ** get_address_of_s_defaultResultTask_0() { return &___s_defaultResultTask_0; }
inline void set_s_defaultResultTask_0(Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * value)
{
___s_defaultResultTask_0 = value;
Il2CppCodeGenWriteBarrier((&___s_defaultResultTask_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASYNCTASKMETHODBUILDER_1_T822D24686214CB8B967C66DA507CD66A5C853079_H
#ifndef ASYNCTASKMETHODBUILDER_1_TADDA4A1D7E8E45B9C6AC65AF43C5868605F74865_H
#define ASYNCTASKMETHODBUILDER_1_TADDA4A1D7E8E45B9C6AC65AF43C5868605F74865_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>
struct AsyncTaskMethodBuilder_1_tADDA4A1D7E8E45B9C6AC65AF43C5868605F74865
{
public:
// System.Runtime.CompilerServices.AsyncMethodBuilderCore System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_coreState
AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 ___m_coreState_1;
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_task
Task_1_t8906695C9865566AA79419735634FF27AC74506E * ___m_task_2;
public:
inline static int32_t get_offset_of_m_coreState_1() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_tADDA4A1D7E8E45B9C6AC65AF43C5868605F74865, ___m_coreState_1)); }
inline AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 get_m_coreState_1() const { return ___m_coreState_1; }
inline AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 * get_address_of_m_coreState_1() { return &___m_coreState_1; }
inline void set_m_coreState_1(AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 value)
{
___m_coreState_1 = value;
}
inline static int32_t get_offset_of_m_task_2() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_tADDA4A1D7E8E45B9C6AC65AF43C5868605F74865, ___m_task_2)); }
inline Task_1_t8906695C9865566AA79419735634FF27AC74506E * get_m_task_2() const { return ___m_task_2; }
inline Task_1_t8906695C9865566AA79419735634FF27AC74506E ** get_address_of_m_task_2() { return &___m_task_2; }
inline void set_m_task_2(Task_1_t8906695C9865566AA79419735634FF27AC74506E * value)
{
___m_task_2 = value;
Il2CppCodeGenWriteBarrier((&___m_task_2), value);
}
};
struct AsyncTaskMethodBuilder_1_tADDA4A1D7E8E45B9C6AC65AF43C5868605F74865_StaticFields
{
public:
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::s_defaultResultTask
Task_1_t8906695C9865566AA79419735634FF27AC74506E * ___s_defaultResultTask_0;
public:
inline static int32_t get_offset_of_s_defaultResultTask_0() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_tADDA4A1D7E8E45B9C6AC65AF43C5868605F74865_StaticFields, ___s_defaultResultTask_0)); }
inline Task_1_t8906695C9865566AA79419735634FF27AC74506E * get_s_defaultResultTask_0() const { return ___s_defaultResultTask_0; }
inline Task_1_t8906695C9865566AA79419735634FF27AC74506E ** get_address_of_s_defaultResultTask_0() { return &___s_defaultResultTask_0; }
inline void set_s_defaultResultTask_0(Task_1_t8906695C9865566AA79419735634FF27AC74506E * value)
{
___s_defaultResultTask_0 = value;
Il2CppCodeGenWriteBarrier((&___s_defaultResultTask_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASYNCTASKMETHODBUILDER_1_TADDA4A1D7E8E45B9C6AC65AF43C5868605F74865_H
#ifndef ASYNCTASKMETHODBUILDER_1_T2A9513A084F4B19851B91EF1F22BB57776D35663_H
#define ASYNCTASKMETHODBUILDER_1_T2A9513A084F4B19851B91EF1F22BB57776D35663_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>
struct AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663
{
public:
// System.Runtime.CompilerServices.AsyncMethodBuilderCore System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_coreState
AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 ___m_coreState_1;
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_task
Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * ___m_task_2;
public:
inline static int32_t get_offset_of_m_coreState_1() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663, ___m_coreState_1)); }
inline AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 get_m_coreState_1() const { return ___m_coreState_1; }
inline AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 * get_address_of_m_coreState_1() { return &___m_coreState_1; }
inline void set_m_coreState_1(AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 value)
{
___m_coreState_1 = value;
}
inline static int32_t get_offset_of_m_task_2() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663, ___m_task_2)); }
inline Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * get_m_task_2() const { return ___m_task_2; }
inline Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 ** get_address_of_m_task_2() { return &___m_task_2; }
inline void set_m_task_2(Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * value)
{
___m_task_2 = value;
Il2CppCodeGenWriteBarrier((&___m_task_2), value);
}
};
struct AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663_StaticFields
{
public:
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::s_defaultResultTask
Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * ___s_defaultResultTask_0;
public:
inline static int32_t get_offset_of_s_defaultResultTask_0() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663_StaticFields, ___s_defaultResultTask_0)); }
inline Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * get_s_defaultResultTask_0() const { return ___s_defaultResultTask_0; }
inline Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 ** get_address_of_s_defaultResultTask_0() { return &___s_defaultResultTask_0; }
inline void set_s_defaultResultTask_0(Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * value)
{
___s_defaultResultTask_0 = value;
Il2CppCodeGenWriteBarrier((&___s_defaultResultTask_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASYNCTASKMETHODBUILDER_1_T2A9513A084F4B19851B91EF1F22BB57776D35663_H
#ifndef ASYNCTASKMETHODBUILDER_1_T66ED1808B26B8081A2804D6A750D13386E360BD9_H
#define ASYNCTASKMETHODBUILDER_1_T66ED1808B26B8081A2804D6A750D13386E360BD9_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult>
struct AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9
{
public:
// System.Runtime.CompilerServices.AsyncMethodBuilderCore System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_coreState
AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 ___m_coreState_1;
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::m_task
Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * ___m_task_2;
public:
inline static int32_t get_offset_of_m_coreState_1() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9, ___m_coreState_1)); }
inline AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 get_m_coreState_1() const { return ___m_coreState_1; }
inline AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 * get_address_of_m_coreState_1() { return &___m_coreState_1; }
inline void set_m_coreState_1(AsyncMethodBuilderCore_t4CE6C1E4B0621A6EC45CF6E0E8F1F633FFF9FF01 value)
{
___m_coreState_1 = value;
}
inline static int32_t get_offset_of_m_task_2() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9, ___m_task_2)); }
inline Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * get_m_task_2() const { return ___m_task_2; }
inline Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 ** get_address_of_m_task_2() { return &___m_task_2; }
inline void set_m_task_2(Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * value)
{
___m_task_2 = value;
Il2CppCodeGenWriteBarrier((&___m_task_2), value);
}
};
struct AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9_StaticFields
{
public:
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1::s_defaultResultTask
Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * ___s_defaultResultTask_0;
public:
inline static int32_t get_offset_of_s_defaultResultTask_0() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9_StaticFields, ___s_defaultResultTask_0)); }
inline Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * get_s_defaultResultTask_0() const { return ___s_defaultResultTask_0; }
inline Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 ** get_address_of_s_defaultResultTask_0() { return &___s_defaultResultTask_0; }
inline void set_s_defaultResultTask_0(Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * value)
{
___s_defaultResultTask_0 = value;
Il2CppCodeGenWriteBarrier((&___s_defaultResultTask_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASYNCTASKMETHODBUILDER_1_T66ED1808B26B8081A2804D6A750D13386E360BD9_H
#ifndef CONFIGUREDTASKAWAITABLE_T24DE1415466EE20060BE5AD528DC5C812CFA53A9_H
#define CONFIGUREDTASKAWAITABLE_T24DE1415466EE20060BE5AD528DC5C812CFA53A9_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable
struct ConfiguredTaskAwaitable_t24DE1415466EE20060BE5AD528DC5C812CFA53A9
{
public:
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter System.Runtime.CompilerServices.ConfiguredTaskAwaitable::m_configuredTaskAwaiter
ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 ___m_configuredTaskAwaiter_0;
public:
inline static int32_t get_offset_of_m_configuredTaskAwaiter_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaitable_t24DE1415466EE20060BE5AD528DC5C812CFA53A9, ___m_configuredTaskAwaiter_0)); }
inline ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 get_m_configuredTaskAwaiter_0() const { return ___m_configuredTaskAwaiter_0; }
inline ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 * get_address_of_m_configuredTaskAwaiter_0() { return &___m_configuredTaskAwaiter_0; }
inline void set_m_configuredTaskAwaiter_0(ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 value)
{
___m_configuredTaskAwaiter_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Runtime.CompilerServices.ConfiguredTaskAwaitable
struct ConfiguredTaskAwaitable_t24DE1415466EE20060BE5AD528DC5C812CFA53A9_marshaled_pinvoke
{
ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874_marshaled_pinvoke ___m_configuredTaskAwaiter_0;
};
// Native definition for COM marshalling of System.Runtime.CompilerServices.ConfiguredTaskAwaitable
struct ConfiguredTaskAwaitable_t24DE1415466EE20060BE5AD528DC5C812CFA53A9_marshaled_com
{
ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874_marshaled_com ___m_configuredTaskAwaiter_0;
};
#endif // CONFIGUREDTASKAWAITABLE_T24DE1415466EE20060BE5AD528DC5C812CFA53A9_H
#ifndef CONFIGUREDTASKAWAITABLE_1_T0A9F15BC9C9FD2CB00C9B0EB52DDEE933EC860A1_H
#define CONFIGUREDTASKAWAITABLE_1_T0A9F15BC9C9FD2CB00C9B0EB52DDEE933EC860A1_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<Mono.Net.Security.AsyncProtocolResult>
struct ConfiguredTaskAwaitable_1_t0A9F15BC9C9FD2CB00C9B0EB52DDEE933EC860A1
{
public:
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1::m_configuredTaskAwaiter
ConfiguredTaskAwaiter_t688A02A53D1A4A883C7DDAFE0F07F17691C51E96 ___m_configuredTaskAwaiter_0;
public:
inline static int32_t get_offset_of_m_configuredTaskAwaiter_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaitable_1_t0A9F15BC9C9FD2CB00C9B0EB52DDEE933EC860A1, ___m_configuredTaskAwaiter_0)); }
inline ConfiguredTaskAwaiter_t688A02A53D1A4A883C7DDAFE0F07F17691C51E96 get_m_configuredTaskAwaiter_0() const { return ___m_configuredTaskAwaiter_0; }
inline ConfiguredTaskAwaiter_t688A02A53D1A4A883C7DDAFE0F07F17691C51E96 * get_address_of_m_configuredTaskAwaiter_0() { return &___m_configuredTaskAwaiter_0; }
inline void set_m_configuredTaskAwaiter_0(ConfiguredTaskAwaiter_t688A02A53D1A4A883C7DDAFE0F07F17691C51E96 value)
{
___m_configuredTaskAwaiter_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONFIGUREDTASKAWAITABLE_1_T0A9F15BC9C9FD2CB00C9B0EB52DDEE933EC860A1_H
#ifndef CONFIGUREDTASKAWAITABLE_1_T10E65A50D6EC08956E9F550CD64330F4DED0D38A_H
#define CONFIGUREDTASKAWAITABLE_1_T10E65A50D6EC08956E9F550CD64330F4DED0D38A_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Int32>
struct ConfiguredTaskAwaitable_1_t10E65A50D6EC08956E9F550CD64330F4DED0D38A
{
public:
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1::m_configuredTaskAwaiter
ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E ___m_configuredTaskAwaiter_0;
public:
inline static int32_t get_offset_of_m_configuredTaskAwaiter_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaitable_1_t10E65A50D6EC08956E9F550CD64330F4DED0D38A, ___m_configuredTaskAwaiter_0)); }
inline ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E get_m_configuredTaskAwaiter_0() const { return ___m_configuredTaskAwaiter_0; }
inline ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E * get_address_of_m_configuredTaskAwaiter_0() { return &___m_configuredTaskAwaiter_0; }
inline void set_m_configuredTaskAwaiter_0(ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E value)
{
___m_configuredTaskAwaiter_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONFIGUREDTASKAWAITABLE_1_T10E65A50D6EC08956E9F550CD64330F4DED0D38A_H
#ifndef CONFIGUREDTASKAWAITABLE_1_TBB2B2DCC75E051E96BC844D2AADFE67C2EB3A872_H
#define CONFIGUREDTASKAWAITABLE_1_TBB2B2DCC75E051E96BC844D2AADFE67C2EB3A872_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Nullable`1<System.Int32>>
struct ConfiguredTaskAwaitable_1_tBB2B2DCC75E051E96BC844D2AADFE67C2EB3A872
{
public:
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1::m_configuredTaskAwaiter
ConfiguredTaskAwaiter_t7DF2E84988582301369783F2ECA65B4F26D5A740 ___m_configuredTaskAwaiter_0;
public:
inline static int32_t get_offset_of_m_configuredTaskAwaiter_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaitable_1_tBB2B2DCC75E051E96BC844D2AADFE67C2EB3A872, ___m_configuredTaskAwaiter_0)); }
inline ConfiguredTaskAwaiter_t7DF2E84988582301369783F2ECA65B4F26D5A740 get_m_configuredTaskAwaiter_0() const { return ___m_configuredTaskAwaiter_0; }
inline ConfiguredTaskAwaiter_t7DF2E84988582301369783F2ECA65B4F26D5A740 * get_address_of_m_configuredTaskAwaiter_0() { return &___m_configuredTaskAwaiter_0; }
inline void set_m_configuredTaskAwaiter_0(ConfiguredTaskAwaiter_t7DF2E84988582301369783F2ECA65B4F26D5A740 value)
{
___m_configuredTaskAwaiter_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONFIGUREDTASKAWAITABLE_1_TBB2B2DCC75E051E96BC844D2AADFE67C2EB3A872_H
#ifndef CONFIGUREDTASKAWAITABLE_1_TA36F8230F9392F8C09FD6FDBAEA3F1A41388CCA8_H
#define CONFIGUREDTASKAWAITABLE_1_TA36F8230F9392F8C09FD6FDBAEA3F1A41388CCA8_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Object>
struct ConfiguredTaskAwaitable_1_tA36F8230F9392F8C09FD6FDBAEA3F1A41388CCA8
{
public:
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<TResult> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1::m_configuredTaskAwaiter
ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E ___m_configuredTaskAwaiter_0;
public:
inline static int32_t get_offset_of_m_configuredTaskAwaiter_0() { return static_cast<int32_t>(offsetof(ConfiguredTaskAwaitable_1_tA36F8230F9392F8C09FD6FDBAEA3F1A41388CCA8, ___m_configuredTaskAwaiter_0)); }
inline ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E get_m_configuredTaskAwaiter_0() const { return ___m_configuredTaskAwaiter_0; }
inline ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E * get_address_of_m_configuredTaskAwaiter_0() { return &___m_configuredTaskAwaiter_0; }
inline void set_m_configuredTaskAwaiter_0(ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E value)
{
___m_configuredTaskAwaiter_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONFIGUREDTASKAWAITABLE_1_TA36F8230F9392F8C09FD6FDBAEA3F1A41388CCA8_H
#ifndef EXTERNALEXCEPTION_T68841FD169C0CB00CC950EDA7E2A59540D65B1CE_H
#define EXTERNALEXCEPTION_T68841FD169C0CB00CC950EDA7E2A59540D65B1CE_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.InteropServices.ExternalException
struct ExternalException_t68841FD169C0CB00CC950EDA7E2A59540D65B1CE : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EXTERNALEXCEPTION_T68841FD169C0CB00CC950EDA7E2A59540D65B1CE_H
#ifndef GCHANDLETYPE_T7155EF9CB120186C6753EE17470D37E148CB2EF1_H
#define GCHANDLETYPE_T7155EF9CB120186C6753EE17470D37E148CB2EF1_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.InteropServices.GCHandleType
struct GCHandleType_t7155EF9CB120186C6753EE17470D37E148CB2EF1
{
public:
// System.Int32 System.Runtime.InteropServices.GCHandleType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(GCHandleType_t7155EF9CB120186C6753EE17470D37E148CB2EF1, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // GCHANDLETYPE_T7155EF9CB120186C6753EE17470D37E148CB2EF1_H
#ifndef STREAMINGCONTEXTSTATES_T6D16CD7BC584A66A29B702F5FD59DF62BB1BDD3F_H
#define STREAMINGCONTEXTSTATES_T6D16CD7BC584A66A29B702F5FD59DF62BB1BDD3F_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.Serialization.StreamingContextStates
struct StreamingContextStates_t6D16CD7BC584A66A29B702F5FD59DF62BB1BDD3F
{
public:
// System.Int32 System.Runtime.Serialization.StreamingContextStates::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StreamingContextStates_t6D16CD7BC584A66A29B702F5FD59DF62BB1BDD3F, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // STREAMINGCONTEXTSTATES_T6D16CD7BC584A66A29B702F5FD59DF62BB1BDD3F_H
#ifndef RUNTIMETYPEHANDLE_T7B542280A22F0EC4EAC2061C29178845847A8B2D_H
#define RUNTIMETYPEHANDLE_T7B542280A22F0EC4EAC2061C29178845847A8B2D_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.RuntimeTypeHandle
struct RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D
{
public:
// System.IntPtr System.RuntimeTypeHandle::value
intptr_t ___value_0;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D, ___value_0)); }
inline intptr_t get_value_0() const { return ___value_0; }
inline intptr_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(intptr_t value)
{
___value_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RUNTIMETYPEHANDLE_T7B542280A22F0EC4EAC2061C29178845847A8B2D_H
#ifndef AUTHENTICATIONEXCEPTION_TE24BF2E2AD351F0C9586A59191F01918659A7516_H
#define AUTHENTICATIONEXCEPTION_TE24BF2E2AD351F0C9586A59191F01918659A7516_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Security.Authentication.AuthenticationException
struct AuthenticationException_tE24BF2E2AD351F0C9586A59191F01918659A7516 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // AUTHENTICATIONEXCEPTION_TE24BF2E2AD351F0C9586A59191F01918659A7516_H
#ifndef SSLPROTOCOLS_TDD37F8F06AD19BDAF27AEA484EC06820FE3107AE_H
#define SSLPROTOCOLS_TDD37F8F06AD19BDAF27AEA484EC06820FE3107AE_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Security.Authentication.SslProtocols
struct SslProtocols_tDD37F8F06AD19BDAF27AEA484EC06820FE3107AE
{
public:
// System.Int32 System.Security.Authentication.SslProtocols::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(SslProtocols_tDD37F8F06AD19BDAF27AEA484EC06820FE3107AE, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SSLPROTOCOLS_TDD37F8F06AD19BDAF27AEA484EC06820FE3107AE_H
#ifndef X509KEYUSAGEFLAGS_TAD6560EDDEB746BA983AE4E7ABC237A6178D6437_H
#define X509KEYUSAGEFLAGS_TAD6560EDDEB746BA983AE4E7ABC237A6178D6437_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Security.Cryptography.X509Certificates.X509KeyUsageFlags
struct X509KeyUsageFlags_tAD6560EDDEB746BA983AE4E7ABC237A6178D6437
{
public:
// System.Int32 System.Security.Cryptography.X509Certificates.X509KeyUsageFlags::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(X509KeyUsageFlags_tAD6560EDDEB746BA983AE4E7ABC237A6178D6437, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // X509KEYUSAGEFLAGS_TAD6560EDDEB746BA983AE4E7ABC237A6178D6437_H
#ifndef X509REVOCATIONFLAG_T8BF7FE53641A7A3C406E86857F3C80F0E25C3F4A_H
#define X509REVOCATIONFLAG_T8BF7FE53641A7A3C406E86857F3C80F0E25C3F4A_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Security.Cryptography.X509Certificates.X509RevocationFlag
struct X509RevocationFlag_t8BF7FE53641A7A3C406E86857F3C80F0E25C3F4A
{
public:
// System.Int32 System.Security.Cryptography.X509Certificates.X509RevocationFlag::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(X509RevocationFlag_t8BF7FE53641A7A3C406E86857F3C80F0E25C3F4A, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // X509REVOCATIONFLAG_T8BF7FE53641A7A3C406E86857F3C80F0E25C3F4A_H
#ifndef X509REVOCATIONMODE_TEFEA8C7147423CC3363A4AF504853BD054A33BE7_H
#define X509REVOCATIONMODE_TEFEA8C7147423CC3363A4AF504853BD054A33BE7_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Security.Cryptography.X509Certificates.X509RevocationMode
struct X509RevocationMode_tEFEA8C7147423CC3363A4AF504853BD054A33BE7
{
public:
// System.Int32 System.Security.Cryptography.X509Certificates.X509RevocationMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(X509RevocationMode_tEFEA8C7147423CC3363A4AF504853BD054A33BE7, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // X509REVOCATIONMODE_TEFEA8C7147423CC3363A4AF504853BD054A33BE7_H
#ifndef X509VERIFICATIONFLAGS_T145010CF6C45EE6563E0874B82C2555025F7A20B_H
#define X509VERIFICATIONFLAGS_T145010CF6C45EE6563E0874B82C2555025F7A20B_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Security.Cryptography.X509Certificates.X509VerificationFlags
struct X509VerificationFlags_t145010CF6C45EE6563E0874B82C2555025F7A20B
{
public:
// System.Int32 System.Security.Cryptography.X509Certificates.X509VerificationFlags::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(X509VerificationFlags_t145010CF6C45EE6563E0874B82C2555025F7A20B, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // X509VERIFICATIONFLAGS_T145010CF6C45EE6563E0874B82C2555025F7A20B_H
#ifndef TASK_T1F48C203E163126EBC69ACCA679D1A462DEE9EB2_H
#define TASK_T1F48C203E163126EBC69ACCA679D1A462DEE9EB2_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.Task
struct Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 : public RuntimeObject
{
public:
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_taskId
int32_t ___m_taskId_4;
// System.Object System.Threading.Tasks.Task::m_action
RuntimeObject * ___m_action_5;
// System.Object System.Threading.Tasks.Task::m_stateObject
RuntimeObject * ___m_stateObject_6;
// System.Threading.Tasks.TaskScheduler System.Threading.Tasks.Task::m_taskScheduler
TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * ___m_taskScheduler_7;
// System.Threading.Tasks.Task System.Threading.Tasks.Task::m_parent
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___m_parent_8;
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_stateFlags
int32_t ___m_stateFlags_9;
// System.Object modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_continuationObject
RuntimeObject * ___m_continuationObject_10;
// System.Threading.Tasks.Task/ContingentProperties modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_contingentProperties
ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 * ___m_contingentProperties_15;
public:
inline static int32_t get_offset_of_m_taskId_4() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2, ___m_taskId_4)); }
inline int32_t get_m_taskId_4() const { return ___m_taskId_4; }
inline int32_t* get_address_of_m_taskId_4() { return &___m_taskId_4; }
inline void set_m_taskId_4(int32_t value)
{
___m_taskId_4 = value;
}
inline static int32_t get_offset_of_m_action_5() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2, ___m_action_5)); }
inline RuntimeObject * get_m_action_5() const { return ___m_action_5; }
inline RuntimeObject ** get_address_of_m_action_5() { return &___m_action_5; }
inline void set_m_action_5(RuntimeObject * value)
{
___m_action_5 = value;
Il2CppCodeGenWriteBarrier((&___m_action_5), value);
}
inline static int32_t get_offset_of_m_stateObject_6() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2, ___m_stateObject_6)); }
inline RuntimeObject * get_m_stateObject_6() const { return ___m_stateObject_6; }
inline RuntimeObject ** get_address_of_m_stateObject_6() { return &___m_stateObject_6; }
inline void set_m_stateObject_6(RuntimeObject * value)
{
___m_stateObject_6 = value;
Il2CppCodeGenWriteBarrier((&___m_stateObject_6), value);
}
inline static int32_t get_offset_of_m_taskScheduler_7() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2, ___m_taskScheduler_7)); }
inline TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * get_m_taskScheduler_7() const { return ___m_taskScheduler_7; }
inline TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 ** get_address_of_m_taskScheduler_7() { return &___m_taskScheduler_7; }
inline void set_m_taskScheduler_7(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * value)
{
___m_taskScheduler_7 = value;
Il2CppCodeGenWriteBarrier((&___m_taskScheduler_7), value);
}
inline static int32_t get_offset_of_m_parent_8() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2, ___m_parent_8)); }
inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * get_m_parent_8() const { return ___m_parent_8; }
inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 ** get_address_of_m_parent_8() { return &___m_parent_8; }
inline void set_m_parent_8(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * value)
{
___m_parent_8 = value;
Il2CppCodeGenWriteBarrier((&___m_parent_8), value);
}
inline static int32_t get_offset_of_m_stateFlags_9() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2, ___m_stateFlags_9)); }
inline int32_t get_m_stateFlags_9() const { return ___m_stateFlags_9; }
inline int32_t* get_address_of_m_stateFlags_9() { return &___m_stateFlags_9; }
inline void set_m_stateFlags_9(int32_t value)
{
___m_stateFlags_9 = value;
}
inline static int32_t get_offset_of_m_continuationObject_10() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2, ___m_continuationObject_10)); }
inline RuntimeObject * get_m_continuationObject_10() const { return ___m_continuationObject_10; }
inline RuntimeObject ** get_address_of_m_continuationObject_10() { return &___m_continuationObject_10; }
inline void set_m_continuationObject_10(RuntimeObject * value)
{
___m_continuationObject_10 = value;
Il2CppCodeGenWriteBarrier((&___m_continuationObject_10), value);
}
inline static int32_t get_offset_of_m_contingentProperties_15() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2, ___m_contingentProperties_15)); }
inline ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 * get_m_contingentProperties_15() const { return ___m_contingentProperties_15; }
inline ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 ** get_address_of_m_contingentProperties_15() { return &___m_contingentProperties_15; }
inline void set_m_contingentProperties_15(ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 * value)
{
___m_contingentProperties_15 = value;
Il2CppCodeGenWriteBarrier((&___m_contingentProperties_15), value);
}
};
struct Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields
{
public:
// System.Int32 System.Threading.Tasks.Task::s_taskIdCounter
int32_t ___s_taskIdCounter_2;
// System.Threading.Tasks.TaskFactory System.Threading.Tasks.Task::s_factory
TaskFactory_tF3C6D983390ACFB40B4979E225368F78006D6155 * ___s_factory_3;
// System.Object System.Threading.Tasks.Task::s_taskCompletionSentinel
RuntimeObject * ___s_taskCompletionSentinel_11;
// System.Boolean System.Threading.Tasks.Task::s_asyncDebuggingEnabled
bool ___s_asyncDebuggingEnabled_12;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Threading.Tasks.Task> System.Threading.Tasks.Task::s_currentActiveTasks
Dictionary_2_t70161CFEB8DA3C79E19E31D0ED948D3C2925095F * ___s_currentActiveTasks_13;
// System.Object System.Threading.Tasks.Task::s_activeTasksLock
RuntimeObject * ___s_activeTasksLock_14;
// System.Action`1<System.Object> System.Threading.Tasks.Task::s_taskCancelCallback
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ___s_taskCancelCallback_16;
// System.Func`1<System.Threading.Tasks.Task/ContingentProperties> System.Threading.Tasks.Task::s_createContingentProperties
Func_1_t48C2978A48CE3F2F6EB5B6DE269D00746483BB1F * ___s_createContingentProperties_17;
// System.Threading.Tasks.Task System.Threading.Tasks.Task::s_completedTask
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___s_completedTask_18;
// System.Predicate`1<System.Threading.Tasks.Task> System.Threading.Tasks.Task::s_IsExceptionObservedByParentPredicate
Predicate_1_tF4286C34BB184CE5690FDCEBA7F09FC68D229335 * ___s_IsExceptionObservedByParentPredicate_19;
// System.Threading.ContextCallback System.Threading.Tasks.Task::s_ecCallback
ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 * ___s_ecCallback_20;
// System.Predicate`1<System.Object> System.Threading.Tasks.Task::s_IsTaskContinuationNullPredicate
Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * ___s_IsTaskContinuationNullPredicate_21;
public:
inline static int32_t get_offset_of_s_taskIdCounter_2() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_taskIdCounter_2)); }
inline int32_t get_s_taskIdCounter_2() const { return ___s_taskIdCounter_2; }
inline int32_t* get_address_of_s_taskIdCounter_2() { return &___s_taskIdCounter_2; }
inline void set_s_taskIdCounter_2(int32_t value)
{
___s_taskIdCounter_2 = value;
}
inline static int32_t get_offset_of_s_factory_3() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_factory_3)); }
inline TaskFactory_tF3C6D983390ACFB40B4979E225368F78006D6155 * get_s_factory_3() const { return ___s_factory_3; }
inline TaskFactory_tF3C6D983390ACFB40B4979E225368F78006D6155 ** get_address_of_s_factory_3() { return &___s_factory_3; }
inline void set_s_factory_3(TaskFactory_tF3C6D983390ACFB40B4979E225368F78006D6155 * value)
{
___s_factory_3 = value;
Il2CppCodeGenWriteBarrier((&___s_factory_3), value);
}
inline static int32_t get_offset_of_s_taskCompletionSentinel_11() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_taskCompletionSentinel_11)); }
inline RuntimeObject * get_s_taskCompletionSentinel_11() const { return ___s_taskCompletionSentinel_11; }
inline RuntimeObject ** get_address_of_s_taskCompletionSentinel_11() { return &___s_taskCompletionSentinel_11; }
inline void set_s_taskCompletionSentinel_11(RuntimeObject * value)
{
___s_taskCompletionSentinel_11 = value;
Il2CppCodeGenWriteBarrier((&___s_taskCompletionSentinel_11), value);
}
inline static int32_t get_offset_of_s_asyncDebuggingEnabled_12() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_asyncDebuggingEnabled_12)); }
inline bool get_s_asyncDebuggingEnabled_12() const { return ___s_asyncDebuggingEnabled_12; }
inline bool* get_address_of_s_asyncDebuggingEnabled_12() { return &___s_asyncDebuggingEnabled_12; }
inline void set_s_asyncDebuggingEnabled_12(bool value)
{
___s_asyncDebuggingEnabled_12 = value;
}
inline static int32_t get_offset_of_s_currentActiveTasks_13() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_currentActiveTasks_13)); }
inline Dictionary_2_t70161CFEB8DA3C79E19E31D0ED948D3C2925095F * get_s_currentActiveTasks_13() const { return ___s_currentActiveTasks_13; }
inline Dictionary_2_t70161CFEB8DA3C79E19E31D0ED948D3C2925095F ** get_address_of_s_currentActiveTasks_13() { return &___s_currentActiveTasks_13; }
inline void set_s_currentActiveTasks_13(Dictionary_2_t70161CFEB8DA3C79E19E31D0ED948D3C2925095F * value)
{
___s_currentActiveTasks_13 = value;
Il2CppCodeGenWriteBarrier((&___s_currentActiveTasks_13), value);
}
inline static int32_t get_offset_of_s_activeTasksLock_14() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_activeTasksLock_14)); }
inline RuntimeObject * get_s_activeTasksLock_14() const { return ___s_activeTasksLock_14; }
inline RuntimeObject ** get_address_of_s_activeTasksLock_14() { return &___s_activeTasksLock_14; }
inline void set_s_activeTasksLock_14(RuntimeObject * value)
{
___s_activeTasksLock_14 = value;
Il2CppCodeGenWriteBarrier((&___s_activeTasksLock_14), value);
}
inline static int32_t get_offset_of_s_taskCancelCallback_16() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_taskCancelCallback_16)); }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get_s_taskCancelCallback_16() const { return ___s_taskCancelCallback_16; }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of_s_taskCancelCallback_16() { return &___s_taskCancelCallback_16; }
inline void set_s_taskCancelCallback_16(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * value)
{
___s_taskCancelCallback_16 = value;
Il2CppCodeGenWriteBarrier((&___s_taskCancelCallback_16), value);
}
inline static int32_t get_offset_of_s_createContingentProperties_17() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_createContingentProperties_17)); }
inline Func_1_t48C2978A48CE3F2F6EB5B6DE269D00746483BB1F * get_s_createContingentProperties_17() const { return ___s_createContingentProperties_17; }
inline Func_1_t48C2978A48CE3F2F6EB5B6DE269D00746483BB1F ** get_address_of_s_createContingentProperties_17() { return &___s_createContingentProperties_17; }
inline void set_s_createContingentProperties_17(Func_1_t48C2978A48CE3F2F6EB5B6DE269D00746483BB1F * value)
{
___s_createContingentProperties_17 = value;
Il2CppCodeGenWriteBarrier((&___s_createContingentProperties_17), value);
}
inline static int32_t get_offset_of_s_completedTask_18() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_completedTask_18)); }
inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * get_s_completedTask_18() const { return ___s_completedTask_18; }
inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 ** get_address_of_s_completedTask_18() { return &___s_completedTask_18; }
inline void set_s_completedTask_18(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * value)
{
___s_completedTask_18 = value;
Il2CppCodeGenWriteBarrier((&___s_completedTask_18), value);
}
inline static int32_t get_offset_of_s_IsExceptionObservedByParentPredicate_19() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_IsExceptionObservedByParentPredicate_19)); }
inline Predicate_1_tF4286C34BB184CE5690FDCEBA7F09FC68D229335 * get_s_IsExceptionObservedByParentPredicate_19() const { return ___s_IsExceptionObservedByParentPredicate_19; }
inline Predicate_1_tF4286C34BB184CE5690FDCEBA7F09FC68D229335 ** get_address_of_s_IsExceptionObservedByParentPredicate_19() { return &___s_IsExceptionObservedByParentPredicate_19; }
inline void set_s_IsExceptionObservedByParentPredicate_19(Predicate_1_tF4286C34BB184CE5690FDCEBA7F09FC68D229335 * value)
{
___s_IsExceptionObservedByParentPredicate_19 = value;
Il2CppCodeGenWriteBarrier((&___s_IsExceptionObservedByParentPredicate_19), value);
}
inline static int32_t get_offset_of_s_ecCallback_20() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_ecCallback_20)); }
inline ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 * get_s_ecCallback_20() const { return ___s_ecCallback_20; }
inline ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 ** get_address_of_s_ecCallback_20() { return &___s_ecCallback_20; }
inline void set_s_ecCallback_20(ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 * value)
{
___s_ecCallback_20 = value;
Il2CppCodeGenWriteBarrier((&___s_ecCallback_20), value);
}
inline static int32_t get_offset_of_s_IsTaskContinuationNullPredicate_21() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_IsTaskContinuationNullPredicate_21)); }
inline Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * get_s_IsTaskContinuationNullPredicate_21() const { return ___s_IsTaskContinuationNullPredicate_21; }
inline Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 ** get_address_of_s_IsTaskContinuationNullPredicate_21() { return &___s_IsTaskContinuationNullPredicate_21; }
inline void set_s_IsTaskContinuationNullPredicate_21(Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * value)
{
___s_IsTaskContinuationNullPredicate_21 = value;
Il2CppCodeGenWriteBarrier((&___s_IsTaskContinuationNullPredicate_21), value);
}
};
struct Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_ThreadStaticFields
{
public:
// System.Threading.Tasks.Task System.Threading.Tasks.Task::t_currentTask
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___t_currentTask_0;
// System.Threading.Tasks.StackGuard System.Threading.Tasks.Task::t_stackGuard
StackGuard_tE431ED3BBD1A18705FEE6F948EBF7FA2E99D64A9 * ___t_stackGuard_1;
public:
inline static int32_t get_offset_of_t_currentTask_0() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_ThreadStaticFields, ___t_currentTask_0)); }
inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * get_t_currentTask_0() const { return ___t_currentTask_0; }
inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 ** get_address_of_t_currentTask_0() { return &___t_currentTask_0; }
inline void set_t_currentTask_0(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * value)
{
___t_currentTask_0 = value;
Il2CppCodeGenWriteBarrier((&___t_currentTask_0), value);
}
inline static int32_t get_offset_of_t_stackGuard_1() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_ThreadStaticFields, ___t_stackGuard_1)); }
inline StackGuard_tE431ED3BBD1A18705FEE6F948EBF7FA2E99D64A9 * get_t_stackGuard_1() const { return ___t_stackGuard_1; }
inline StackGuard_tE431ED3BBD1A18705FEE6F948EBF7FA2E99D64A9 ** get_address_of_t_stackGuard_1() { return &___t_stackGuard_1; }
inline void set_t_stackGuard_1(StackGuard_tE431ED3BBD1A18705FEE6F948EBF7FA2E99D64A9 * value)
{
___t_stackGuard_1 = value;
Il2CppCodeGenWriteBarrier((&___t_stackGuard_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TASK_T1F48C203E163126EBC69ACCA679D1A462DEE9EB2_H
#ifndef THREADABORTEXCEPTION_T0B7CFB34B2901B695FBCFF84E0A1EBDFC8177468_H
#define THREADABORTEXCEPTION_T0B7CFB34B2901B695FBCFF84E0A1EBDFC8177468_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.ThreadAbortException
struct ThreadAbortException_t0B7CFB34B2901B695FBCFF84E0A1EBDFC8177468 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // THREADABORTEXCEPTION_T0B7CFB34B2901B695FBCFF84E0A1EBDFC8177468_H
#ifndef WAITHANDLE_TFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_H
#define WAITHANDLE_TFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.WaitHandle
struct WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF
{
public:
// System.IntPtr System.Threading.WaitHandle::waitHandle
intptr_t ___waitHandle_3;
// Microsoft.Win32.SafeHandles.SafeWaitHandle modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.WaitHandle::safeWaitHandle
SafeWaitHandle_t51DB35FF382E636FF3B868D87816733894D46CF2 * ___safeWaitHandle_4;
// System.Boolean System.Threading.WaitHandle::hasThreadAffinity
bool ___hasThreadAffinity_5;
public:
inline static int32_t get_offset_of_waitHandle_3() { return static_cast<int32_t>(offsetof(WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6, ___waitHandle_3)); }
inline intptr_t get_waitHandle_3() const { return ___waitHandle_3; }
inline intptr_t* get_address_of_waitHandle_3() { return &___waitHandle_3; }
inline void set_waitHandle_3(intptr_t value)
{
___waitHandle_3 = value;
}
inline static int32_t get_offset_of_safeWaitHandle_4() { return static_cast<int32_t>(offsetof(WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6, ___safeWaitHandle_4)); }
inline SafeWaitHandle_t51DB35FF382E636FF3B868D87816733894D46CF2 * get_safeWaitHandle_4() const { return ___safeWaitHandle_4; }
inline SafeWaitHandle_t51DB35FF382E636FF3B868D87816733894D46CF2 ** get_address_of_safeWaitHandle_4() { return &___safeWaitHandle_4; }
inline void set_safeWaitHandle_4(SafeWaitHandle_t51DB35FF382E636FF3B868D87816733894D46CF2 * value)
{
___safeWaitHandle_4 = value;
Il2CppCodeGenWriteBarrier((&___safeWaitHandle_4), value);
}
inline static int32_t get_offset_of_hasThreadAffinity_5() { return static_cast<int32_t>(offsetof(WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6, ___hasThreadAffinity_5)); }
inline bool get_hasThreadAffinity_5() const { return ___hasThreadAffinity_5; }
inline bool* get_address_of_hasThreadAffinity_5() { return &___hasThreadAffinity_5; }
inline void set_hasThreadAffinity_5(bool value)
{
___hasThreadAffinity_5 = value;
}
};
struct WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_StaticFields
{
public:
// System.IntPtr System.Threading.WaitHandle::InvalidHandle
intptr_t ___InvalidHandle_10;
public:
inline static int32_t get_offset_of_InvalidHandle_10() { return static_cast<int32_t>(offsetof(WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_StaticFields, ___InvalidHandle_10)); }
inline intptr_t get_InvalidHandle_10() const { return ___InvalidHandle_10; }
inline intptr_t* get_address_of_InvalidHandle_10() { return &___InvalidHandle_10; }
inline void set_InvalidHandle_10(intptr_t value)
{
___InvalidHandle_10 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Threading.WaitHandle
struct WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_marshaled_pinvoke : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_pinvoke
{
intptr_t ___waitHandle_3;
SafeWaitHandle_t51DB35FF382E636FF3B868D87816733894D46CF2 * ___safeWaitHandle_4;
int32_t ___hasThreadAffinity_5;
};
// Native definition for COM marshalling of System.Threading.WaitHandle
struct WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_marshaled_com : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_com
{
intptr_t ___waitHandle_3;
SafeWaitHandle_t51DB35FF382E636FF3B868D87816733894D46CF2 * ___safeWaitHandle_4;
int32_t ___hasThreadAffinity_5;
};
#endif // WAITHANDLE_TFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6_H
#ifndef TIMESPAN_TA8069278ACE8A74D6DF7D514A9CD4432433F64C4_H
#define TIMESPAN_TA8069278ACE8A74D6DF7D514A9CD4432433F64C4_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TIMESPAN_TA8069278ACE8A74D6DF7D514A9CD4432433F64C4_H
#ifndef URICOMPONENTS_TE42D5229291668DE73323E1C519E4E1459A64CFF_H
#define URICOMPONENTS_TE42D5229291668DE73323E1C519E4E1459A64CFF_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.UriComponents
struct UriComponents_tE42D5229291668DE73323E1C519E4E1459A64CFF
{
public:
// System.Int32 System.UriComponents::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UriComponents_tE42D5229291668DE73323E1C519E4E1459A64CFF, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // URICOMPONENTS_TE42D5229291668DE73323E1C519E4E1459A64CFF_H
#ifndef U3CINNERREADU3ED__25_TCE25EDB99323C3358577085230EE086DE0CADA5E_H
#define U3CINNERREADU3ED__25_TCE25EDB99323C3358577085230EE086DE0CADA5E_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Net.Security.AsyncProtocolRequest/<InnerRead>d__25
struct U3CInnerReadU3Ed__25_tCE25EDB99323C3358577085230EE086DE0CADA5E
{
public:
// System.Int32 Mono.Net.Security.AsyncProtocolRequest/<InnerRead>d__25::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>> Mono.Net.Security.AsyncProtocolRequest/<InnerRead>d__25::<>t__builder
AsyncTaskMethodBuilder_1_tADDA4A1D7E8E45B9C6AC65AF43C5868605F74865 ___U3CU3Et__builder_1;
// Mono.Net.Security.AsyncProtocolRequest Mono.Net.Security.AsyncProtocolRequest/<InnerRead>d__25::<>4__this
AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * ___U3CU3E4__this_2;
// System.Threading.CancellationToken Mono.Net.Security.AsyncProtocolRequest/<InnerRead>d__25::cancellationToken
CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___cancellationToken_3;
// System.Int32 Mono.Net.Security.AsyncProtocolRequest/<InnerRead>d__25::<requestedSize>5__1
int32_t ___U3CrequestedSizeU3E5__1_4;
// System.Nullable`1<System.Int32> Mono.Net.Security.AsyncProtocolRequest/<InnerRead>d__25::<totalRead>5__2
Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB ___U3CtotalReadU3E5__2_5;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32> Mono.Net.Security.AsyncProtocolRequest/<InnerRead>d__25::<>u__1
ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E ___U3CU3Eu__1_6;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CInnerReadU3Ed__25_tCE25EDB99323C3358577085230EE086DE0CADA5E, ___U3CU3E1__state_0)); }
inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; }
inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; }
inline void set_U3CU3E1__state_0(int32_t value)
{
___U3CU3E1__state_0 = value;
}
inline static int32_t get_offset_of_U3CU3Et__builder_1() { return static_cast<int32_t>(offsetof(U3CInnerReadU3Ed__25_tCE25EDB99323C3358577085230EE086DE0CADA5E, ___U3CU3Et__builder_1)); }
inline AsyncTaskMethodBuilder_1_tADDA4A1D7E8E45B9C6AC65AF43C5868605F74865 get_U3CU3Et__builder_1() const { return ___U3CU3Et__builder_1; }
inline AsyncTaskMethodBuilder_1_tADDA4A1D7E8E45B9C6AC65AF43C5868605F74865 * get_address_of_U3CU3Et__builder_1() { return &___U3CU3Et__builder_1; }
inline void set_U3CU3Et__builder_1(AsyncTaskMethodBuilder_1_tADDA4A1D7E8E45B9C6AC65AF43C5868605F74865 value)
{
___U3CU3Et__builder_1 = value;
}
inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast<int32_t>(offsetof(U3CInnerReadU3Ed__25_tCE25EDB99323C3358577085230EE086DE0CADA5E, ___U3CU3E4__this_2)); }
inline AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; }
inline AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; }
inline void set_U3CU3E4__this_2(AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * value)
{
___U3CU3E4__this_2 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E4__this_2), value);
}
inline static int32_t get_offset_of_cancellationToken_3() { return static_cast<int32_t>(offsetof(U3CInnerReadU3Ed__25_tCE25EDB99323C3358577085230EE086DE0CADA5E, ___cancellationToken_3)); }
inline CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB get_cancellationToken_3() const { return ___cancellationToken_3; }
inline CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB * get_address_of_cancellationToken_3() { return &___cancellationToken_3; }
inline void set_cancellationToken_3(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB value)
{
___cancellationToken_3 = value;
}
inline static int32_t get_offset_of_U3CrequestedSizeU3E5__1_4() { return static_cast<int32_t>(offsetof(U3CInnerReadU3Ed__25_tCE25EDB99323C3358577085230EE086DE0CADA5E, ___U3CrequestedSizeU3E5__1_4)); }
inline int32_t get_U3CrequestedSizeU3E5__1_4() const { return ___U3CrequestedSizeU3E5__1_4; }
inline int32_t* get_address_of_U3CrequestedSizeU3E5__1_4() { return &___U3CrequestedSizeU3E5__1_4; }
inline void set_U3CrequestedSizeU3E5__1_4(int32_t value)
{
___U3CrequestedSizeU3E5__1_4 = value;
}
inline static int32_t get_offset_of_U3CtotalReadU3E5__2_5() { return static_cast<int32_t>(offsetof(U3CInnerReadU3Ed__25_tCE25EDB99323C3358577085230EE086DE0CADA5E, ___U3CtotalReadU3E5__2_5)); }
inline Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB get_U3CtotalReadU3E5__2_5() const { return ___U3CtotalReadU3E5__2_5; }
inline Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * get_address_of_U3CtotalReadU3E5__2_5() { return &___U3CtotalReadU3E5__2_5; }
inline void set_U3CtotalReadU3E5__2_5(Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB value)
{
___U3CtotalReadU3E5__2_5 = value;
}
inline static int32_t get_offset_of_U3CU3Eu__1_6() { return static_cast<int32_t>(offsetof(U3CInnerReadU3Ed__25_tCE25EDB99323C3358577085230EE086DE0CADA5E, ___U3CU3Eu__1_6)); }
inline ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E get_U3CU3Eu__1_6() const { return ___U3CU3Eu__1_6; }
inline ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E * get_address_of_U3CU3Eu__1_6() { return &___U3CU3Eu__1_6; }
inline void set_U3CU3Eu__1_6(ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E value)
{
___U3CU3Eu__1_6 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CINNERREADU3ED__25_TCE25EDB99323C3358577085230EE086DE0CADA5E_H
#ifndef U3CSTARTOPERATIONU3ED__23_TF07DD38BEEE955EB5B1359B816079584899DDEC9_H
#define U3CSTARTOPERATIONU3ED__23_TF07DD38BEEE955EB5B1359B816079584899DDEC9_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Net.Security.AsyncProtocolRequest/<StartOperation>d__23
struct U3CStartOperationU3Ed__23_tF07DD38BEEE955EB5B1359B816079584899DDEC9
{
public:
// System.Int32 Mono.Net.Security.AsyncProtocolRequest/<StartOperation>d__23::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<Mono.Net.Security.AsyncProtocolResult> Mono.Net.Security.AsyncProtocolRequest/<StartOperation>d__23::<>t__builder
AsyncTaskMethodBuilder_1_tE6ADC5F95443C1197F4C34B1207F02A4E0F7EDB2 ___U3CU3Et__builder_1;
// Mono.Net.Security.AsyncProtocolRequest Mono.Net.Security.AsyncProtocolRequest/<StartOperation>d__23::<>4__this
AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * ___U3CU3E4__this_2;
// System.Threading.CancellationToken Mono.Net.Security.AsyncProtocolRequest/<StartOperation>d__23::cancellationToken
CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___cancellationToken_3;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter Mono.Net.Security.AsyncProtocolRequest/<StartOperation>d__23::<>u__1
ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 ___U3CU3Eu__1_4;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CStartOperationU3Ed__23_tF07DD38BEEE955EB5B1359B816079584899DDEC9, ___U3CU3E1__state_0)); }
inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; }
inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; }
inline void set_U3CU3E1__state_0(int32_t value)
{
___U3CU3E1__state_0 = value;
}
inline static int32_t get_offset_of_U3CU3Et__builder_1() { return static_cast<int32_t>(offsetof(U3CStartOperationU3Ed__23_tF07DD38BEEE955EB5B1359B816079584899DDEC9, ___U3CU3Et__builder_1)); }
inline AsyncTaskMethodBuilder_1_tE6ADC5F95443C1197F4C34B1207F02A4E0F7EDB2 get_U3CU3Et__builder_1() const { return ___U3CU3Et__builder_1; }
inline AsyncTaskMethodBuilder_1_tE6ADC5F95443C1197F4C34B1207F02A4E0F7EDB2 * get_address_of_U3CU3Et__builder_1() { return &___U3CU3Et__builder_1; }
inline void set_U3CU3Et__builder_1(AsyncTaskMethodBuilder_1_tE6ADC5F95443C1197F4C34B1207F02A4E0F7EDB2 value)
{
___U3CU3Et__builder_1 = value;
}
inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast<int32_t>(offsetof(U3CStartOperationU3Ed__23_tF07DD38BEEE955EB5B1359B816079584899DDEC9, ___U3CU3E4__this_2)); }
inline AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; }
inline AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; }
inline void set_U3CU3E4__this_2(AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * value)
{
___U3CU3E4__this_2 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E4__this_2), value);
}
inline static int32_t get_offset_of_cancellationToken_3() { return static_cast<int32_t>(offsetof(U3CStartOperationU3Ed__23_tF07DD38BEEE955EB5B1359B816079584899DDEC9, ___cancellationToken_3)); }
inline CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB get_cancellationToken_3() const { return ___cancellationToken_3; }
inline CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB * get_address_of_cancellationToken_3() { return &___cancellationToken_3; }
inline void set_cancellationToken_3(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB value)
{
___cancellationToken_3 = value;
}
inline static int32_t get_offset_of_U3CU3Eu__1_4() { return static_cast<int32_t>(offsetof(U3CStartOperationU3Ed__23_tF07DD38BEEE955EB5B1359B816079584899DDEC9, ___U3CU3Eu__1_4)); }
inline ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 get_U3CU3Eu__1_4() const { return ___U3CU3Eu__1_4; }
inline ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 * get_address_of_U3CU3Eu__1_4() { return &___U3CU3Eu__1_4; }
inline void set_U3CU3Eu__1_4(ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 value)
{
___U3CU3Eu__1_4 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CSTARTOPERATIONU3ED__23_TF07DD38BEEE955EB5B1359B816079584899DDEC9_H
#ifndef MOBILEAUTHENTICATEDSTREAM_TB6E77FB644434B5B525191DC671462A6461B9045_H
#define MOBILEAUTHENTICATEDSTREAM_TB6E77FB644434B5B525191DC671462A6461B9045_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Net.Security.MobileAuthenticatedStream
struct MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 : public AuthenticatedStream_t3DD09B1EB437BE77A9B0536EC26005B6914BF501
{
public:
// Mono.Net.Security.MobileTlsContext Mono.Net.Security.MobileAuthenticatedStream::xobileTlsContext
MobileTlsContext_tFC684CF3275DF6B898319625C4F3A4D537B8A127 * ___xobileTlsContext_6;
// System.Runtime.ExceptionServices.ExceptionDispatchInfo Mono.Net.Security.MobileAuthenticatedStream::lastException
ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * ___lastException_7;
// Mono.Net.Security.AsyncProtocolRequest Mono.Net.Security.MobileAuthenticatedStream::asyncReadRequest
AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * ___asyncReadRequest_8;
// Mono.Net.Security.AsyncProtocolRequest Mono.Net.Security.MobileAuthenticatedStream::asyncWriteRequest
AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * ___asyncWriteRequest_9;
// Mono.Net.Security.BufferOffsetSize2 Mono.Net.Security.MobileAuthenticatedStream::readBuffer
BufferOffsetSize2_t2E9889F6FB134EF92FC0B930BF630243553F4E00 * ___readBuffer_10;
// Mono.Net.Security.BufferOffsetSize2 Mono.Net.Security.MobileAuthenticatedStream::writeBuffer
BufferOffsetSize2_t2E9889F6FB134EF92FC0B930BF630243553F4E00 * ___writeBuffer_11;
// System.Object Mono.Net.Security.MobileAuthenticatedStream::ioLock
RuntimeObject * ___ioLock_12;
// System.Boolean Mono.Net.Security.MobileAuthenticatedStream::shutdown
bool ___shutdown_13;
// System.Net.Security.SslStream Mono.Net.Security.MobileAuthenticatedStream::<SslStream>k__BackingField
SslStream_t9CEE8F6E125C734DD807D9289C86860FFEE81087 * ___U3CSslStreamU3Ek__BackingField_15;
// Mono.Security.Interface.MonoTlsSettings Mono.Net.Security.MobileAuthenticatedStream::<Settings>k__BackingField
MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * ___U3CSettingsU3Ek__BackingField_16;
// Mono.Security.Interface.MonoTlsProvider Mono.Net.Security.MobileAuthenticatedStream::<Provider>k__BackingField
MonoTlsProvider_tDCD056C5BBBE59ED6BAF63F25952B406C1143C27 * ___U3CProviderU3Ek__BackingField_17;
// System.Int32 Mono.Net.Security.MobileAuthenticatedStream::ID
int32_t ___ID_19;
public:
inline static int32_t get_offset_of_xobileTlsContext_6() { return static_cast<int32_t>(offsetof(MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045, ___xobileTlsContext_6)); }
inline MobileTlsContext_tFC684CF3275DF6B898319625C4F3A4D537B8A127 * get_xobileTlsContext_6() const { return ___xobileTlsContext_6; }
inline MobileTlsContext_tFC684CF3275DF6B898319625C4F3A4D537B8A127 ** get_address_of_xobileTlsContext_6() { return &___xobileTlsContext_6; }
inline void set_xobileTlsContext_6(MobileTlsContext_tFC684CF3275DF6B898319625C4F3A4D537B8A127 * value)
{
___xobileTlsContext_6 = value;
Il2CppCodeGenWriteBarrier((&___xobileTlsContext_6), value);
}
inline static int32_t get_offset_of_lastException_7() { return static_cast<int32_t>(offsetof(MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045, ___lastException_7)); }
inline ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * get_lastException_7() const { return ___lastException_7; }
inline ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A ** get_address_of_lastException_7() { return &___lastException_7; }
inline void set_lastException_7(ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * value)
{
___lastException_7 = value;
Il2CppCodeGenWriteBarrier((&___lastException_7), value);
}
inline static int32_t get_offset_of_asyncReadRequest_8() { return static_cast<int32_t>(offsetof(MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045, ___asyncReadRequest_8)); }
inline AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * get_asyncReadRequest_8() const { return ___asyncReadRequest_8; }
inline AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 ** get_address_of_asyncReadRequest_8() { return &___asyncReadRequest_8; }
inline void set_asyncReadRequest_8(AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * value)
{
___asyncReadRequest_8 = value;
Il2CppCodeGenWriteBarrier((&___asyncReadRequest_8), value);
}
inline static int32_t get_offset_of_asyncWriteRequest_9() { return static_cast<int32_t>(offsetof(MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045, ___asyncWriteRequest_9)); }
inline AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * get_asyncWriteRequest_9() const { return ___asyncWriteRequest_9; }
inline AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 ** get_address_of_asyncWriteRequest_9() { return &___asyncWriteRequest_9; }
inline void set_asyncWriteRequest_9(AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * value)
{
___asyncWriteRequest_9 = value;
Il2CppCodeGenWriteBarrier((&___asyncWriteRequest_9), value);
}
inline static int32_t get_offset_of_readBuffer_10() { return static_cast<int32_t>(offsetof(MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045, ___readBuffer_10)); }
inline BufferOffsetSize2_t2E9889F6FB134EF92FC0B930BF630243553F4E00 * get_readBuffer_10() const { return ___readBuffer_10; }
inline BufferOffsetSize2_t2E9889F6FB134EF92FC0B930BF630243553F4E00 ** get_address_of_readBuffer_10() { return &___readBuffer_10; }
inline void set_readBuffer_10(BufferOffsetSize2_t2E9889F6FB134EF92FC0B930BF630243553F4E00 * value)
{
___readBuffer_10 = value;
Il2CppCodeGenWriteBarrier((&___readBuffer_10), value);
}
inline static int32_t get_offset_of_writeBuffer_11() { return static_cast<int32_t>(offsetof(MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045, ___writeBuffer_11)); }
inline BufferOffsetSize2_t2E9889F6FB134EF92FC0B930BF630243553F4E00 * get_writeBuffer_11() const { return ___writeBuffer_11; }
inline BufferOffsetSize2_t2E9889F6FB134EF92FC0B930BF630243553F4E00 ** get_address_of_writeBuffer_11() { return &___writeBuffer_11; }
inline void set_writeBuffer_11(BufferOffsetSize2_t2E9889F6FB134EF92FC0B930BF630243553F4E00 * value)
{
___writeBuffer_11 = value;
Il2CppCodeGenWriteBarrier((&___writeBuffer_11), value);
}
inline static int32_t get_offset_of_ioLock_12() { return static_cast<int32_t>(offsetof(MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045, ___ioLock_12)); }
inline RuntimeObject * get_ioLock_12() const { return ___ioLock_12; }
inline RuntimeObject ** get_address_of_ioLock_12() { return &___ioLock_12; }
inline void set_ioLock_12(RuntimeObject * value)
{
___ioLock_12 = value;
Il2CppCodeGenWriteBarrier((&___ioLock_12), value);
}
inline static int32_t get_offset_of_shutdown_13() { return static_cast<int32_t>(offsetof(MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045, ___shutdown_13)); }
inline bool get_shutdown_13() const { return ___shutdown_13; }
inline bool* get_address_of_shutdown_13() { return &___shutdown_13; }
inline void set_shutdown_13(bool value)
{
___shutdown_13 = value;
}
inline static int32_t get_offset_of_U3CSslStreamU3Ek__BackingField_15() { return static_cast<int32_t>(offsetof(MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045, ___U3CSslStreamU3Ek__BackingField_15)); }
inline SslStream_t9CEE8F6E125C734DD807D9289C86860FFEE81087 * get_U3CSslStreamU3Ek__BackingField_15() const { return ___U3CSslStreamU3Ek__BackingField_15; }
inline SslStream_t9CEE8F6E125C734DD807D9289C86860FFEE81087 ** get_address_of_U3CSslStreamU3Ek__BackingField_15() { return &___U3CSslStreamU3Ek__BackingField_15; }
inline void set_U3CSslStreamU3Ek__BackingField_15(SslStream_t9CEE8F6E125C734DD807D9289C86860FFEE81087 * value)
{
___U3CSslStreamU3Ek__BackingField_15 = value;
Il2CppCodeGenWriteBarrier((&___U3CSslStreamU3Ek__BackingField_15), value);
}
inline static int32_t get_offset_of_U3CSettingsU3Ek__BackingField_16() { return static_cast<int32_t>(offsetof(MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045, ___U3CSettingsU3Ek__BackingField_16)); }
inline MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * get_U3CSettingsU3Ek__BackingField_16() const { return ___U3CSettingsU3Ek__BackingField_16; }
inline MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF ** get_address_of_U3CSettingsU3Ek__BackingField_16() { return &___U3CSettingsU3Ek__BackingField_16; }
inline void set_U3CSettingsU3Ek__BackingField_16(MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * value)
{
___U3CSettingsU3Ek__BackingField_16 = value;
Il2CppCodeGenWriteBarrier((&___U3CSettingsU3Ek__BackingField_16), value);
}
inline static int32_t get_offset_of_U3CProviderU3Ek__BackingField_17() { return static_cast<int32_t>(offsetof(MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045, ___U3CProviderU3Ek__BackingField_17)); }
inline MonoTlsProvider_tDCD056C5BBBE59ED6BAF63F25952B406C1143C27 * get_U3CProviderU3Ek__BackingField_17() const { return ___U3CProviderU3Ek__BackingField_17; }
inline MonoTlsProvider_tDCD056C5BBBE59ED6BAF63F25952B406C1143C27 ** get_address_of_U3CProviderU3Ek__BackingField_17() { return &___U3CProviderU3Ek__BackingField_17; }
inline void set_U3CProviderU3Ek__BackingField_17(MonoTlsProvider_tDCD056C5BBBE59ED6BAF63F25952B406C1143C27 * value)
{
___U3CProviderU3Ek__BackingField_17 = value;
Il2CppCodeGenWriteBarrier((&___U3CProviderU3Ek__BackingField_17), value);
}
inline static int32_t get_offset_of_ID_19() { return static_cast<int32_t>(offsetof(MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045, ___ID_19)); }
inline int32_t get_ID_19() const { return ___ID_19; }
inline int32_t* get_address_of_ID_19() { return &___ID_19; }
inline void set_ID_19(int32_t value)
{
___ID_19 = value;
}
};
struct MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045_StaticFields
{
public:
// System.Int32 Mono.Net.Security.MobileAuthenticatedStream::uniqueNameInteger
int32_t ___uniqueNameInteger_14;
// System.Int32 Mono.Net.Security.MobileAuthenticatedStream::nextId
int32_t ___nextId_18;
public:
inline static int32_t get_offset_of_uniqueNameInteger_14() { return static_cast<int32_t>(offsetof(MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045_StaticFields, ___uniqueNameInteger_14)); }
inline int32_t get_uniqueNameInteger_14() const { return ___uniqueNameInteger_14; }
inline int32_t* get_address_of_uniqueNameInteger_14() { return &___uniqueNameInteger_14; }
inline void set_uniqueNameInteger_14(int32_t value)
{
___uniqueNameInteger_14 = value;
}
inline static int32_t get_offset_of_nextId_18() { return static_cast<int32_t>(offsetof(MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045_StaticFields, ___nextId_18)); }
inline int32_t get_nextId_18() const { return ___nextId_18; }
inline int32_t* get_address_of_nextId_18() { return &___nextId_18; }
inline void set_nextId_18(int32_t value)
{
___nextId_18 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MOBILEAUTHENTICATEDSTREAM_TB6E77FB644434B5B525191DC671462A6461B9045_H
#ifndef U3CINNERREADU3ED__66_TA027A607C6D5A6367A04D2DCAF5FCBB66E6B5CAB_H
#define U3CINNERREADU3ED__66_TA027A607C6D5A6367A04D2DCAF5FCBB66E6B5CAB_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Net.Security.MobileAuthenticatedStream/<InnerRead>d__66
struct U3CInnerReadU3Ed__66_tA027A607C6D5A6367A04D2DCAF5FCBB66E6B5CAB
{
public:
// System.Int32 Mono.Net.Security.MobileAuthenticatedStream/<InnerRead>d__66::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32> Mono.Net.Security.MobileAuthenticatedStream/<InnerRead>d__66::<>t__builder
AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 ___U3CU3Et__builder_1;
// Mono.Net.Security.MobileAuthenticatedStream Mono.Net.Security.MobileAuthenticatedStream/<InnerRead>d__66::<>4__this
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * ___U3CU3E4__this_2;
// System.Threading.CancellationToken Mono.Net.Security.MobileAuthenticatedStream/<InnerRead>d__66::cancellationToken
CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___cancellationToken_3;
// System.Int32 Mono.Net.Security.MobileAuthenticatedStream/<InnerRead>d__66::requestedSize
int32_t ___requestedSize_4;
// System.Boolean Mono.Net.Security.MobileAuthenticatedStream/<InnerRead>d__66::sync
bool ___sync_5;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32> Mono.Net.Security.MobileAuthenticatedStream/<InnerRead>d__66::<>u__1
ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E ___U3CU3Eu__1_6;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CInnerReadU3Ed__66_tA027A607C6D5A6367A04D2DCAF5FCBB66E6B5CAB, ___U3CU3E1__state_0)); }
inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; }
inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; }
inline void set_U3CU3E1__state_0(int32_t value)
{
___U3CU3E1__state_0 = value;
}
inline static int32_t get_offset_of_U3CU3Et__builder_1() { return static_cast<int32_t>(offsetof(U3CInnerReadU3Ed__66_tA027A607C6D5A6367A04D2DCAF5FCBB66E6B5CAB, ___U3CU3Et__builder_1)); }
inline AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 get_U3CU3Et__builder_1() const { return ___U3CU3Et__builder_1; }
inline AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 * get_address_of_U3CU3Et__builder_1() { return &___U3CU3Et__builder_1; }
inline void set_U3CU3Et__builder_1(AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 value)
{
___U3CU3Et__builder_1 = value;
}
inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast<int32_t>(offsetof(U3CInnerReadU3Ed__66_tA027A607C6D5A6367A04D2DCAF5FCBB66E6B5CAB, ___U3CU3E4__this_2)); }
inline MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; }
inline MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; }
inline void set_U3CU3E4__this_2(MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * value)
{
___U3CU3E4__this_2 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E4__this_2), value);
}
inline static int32_t get_offset_of_cancellationToken_3() { return static_cast<int32_t>(offsetof(U3CInnerReadU3Ed__66_tA027A607C6D5A6367A04D2DCAF5FCBB66E6B5CAB, ___cancellationToken_3)); }
inline CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB get_cancellationToken_3() const { return ___cancellationToken_3; }
inline CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB * get_address_of_cancellationToken_3() { return &___cancellationToken_3; }
inline void set_cancellationToken_3(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB value)
{
___cancellationToken_3 = value;
}
inline static int32_t get_offset_of_requestedSize_4() { return static_cast<int32_t>(offsetof(U3CInnerReadU3Ed__66_tA027A607C6D5A6367A04D2DCAF5FCBB66E6B5CAB, ___requestedSize_4)); }
inline int32_t get_requestedSize_4() const { return ___requestedSize_4; }
inline int32_t* get_address_of_requestedSize_4() { return &___requestedSize_4; }
inline void set_requestedSize_4(int32_t value)
{
___requestedSize_4 = value;
}
inline static int32_t get_offset_of_sync_5() { return static_cast<int32_t>(offsetof(U3CInnerReadU3Ed__66_tA027A607C6D5A6367A04D2DCAF5FCBB66E6B5CAB, ___sync_5)); }
inline bool get_sync_5() const { return ___sync_5; }
inline bool* get_address_of_sync_5() { return &___sync_5; }
inline void set_sync_5(bool value)
{
___sync_5 = value;
}
inline static int32_t get_offset_of_U3CU3Eu__1_6() { return static_cast<int32_t>(offsetof(U3CInnerReadU3Ed__66_tA027A607C6D5A6367A04D2DCAF5FCBB66E6B5CAB, ___U3CU3Eu__1_6)); }
inline ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E get_U3CU3Eu__1_6() const { return ___U3CU3Eu__1_6; }
inline ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E * get_address_of_U3CU3Eu__1_6() { return &___U3CU3Eu__1_6; }
inline void set_U3CU3Eu__1_6(ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E value)
{
___U3CU3Eu__1_6 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CINNERREADU3ED__66_TA027A607C6D5A6367A04D2DCAF5FCBB66E6B5CAB_H
#ifndef U3CSTARTOPERATIONU3ED__58_T9CFBEC306AEE875FF526F77EF660D0493F475BB1_H
#define U3CSTARTOPERATIONU3ED__58_T9CFBEC306AEE875FF526F77EF660D0493F475BB1_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__58
struct U3CStartOperationU3Ed__58_t9CFBEC306AEE875FF526F77EF660D0493F475BB1
{
public:
// System.Int32 Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__58::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32> Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__58::<>t__builder
AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 ___U3CU3Et__builder_1;
// Mono.Net.Security.MobileAuthenticatedStream Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__58::<>4__this
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * ___U3CU3E4__this_2;
// Mono.Net.Security.MobileAuthenticatedStream/OperationType Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__58::type
int32_t ___type_3;
// Mono.Net.Security.AsyncProtocolRequest Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__58::asyncRequest
AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * ___asyncRequest_4;
// System.Threading.CancellationToken Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__58::cancellationToken
CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___cancellationToken_5;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<Mono.Net.Security.AsyncProtocolResult> Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__58::<>u__1
ConfiguredTaskAwaiter_t688A02A53D1A4A883C7DDAFE0F07F17691C51E96 ___U3CU3Eu__1_6;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CStartOperationU3Ed__58_t9CFBEC306AEE875FF526F77EF660D0493F475BB1, ___U3CU3E1__state_0)); }
inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; }
inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; }
inline void set_U3CU3E1__state_0(int32_t value)
{
___U3CU3E1__state_0 = value;
}
inline static int32_t get_offset_of_U3CU3Et__builder_1() { return static_cast<int32_t>(offsetof(U3CStartOperationU3Ed__58_t9CFBEC306AEE875FF526F77EF660D0493F475BB1, ___U3CU3Et__builder_1)); }
inline AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 get_U3CU3Et__builder_1() const { return ___U3CU3Et__builder_1; }
inline AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 * get_address_of_U3CU3Et__builder_1() { return &___U3CU3Et__builder_1; }
inline void set_U3CU3Et__builder_1(AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 value)
{
___U3CU3Et__builder_1 = value;
}
inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast<int32_t>(offsetof(U3CStartOperationU3Ed__58_t9CFBEC306AEE875FF526F77EF660D0493F475BB1, ___U3CU3E4__this_2)); }
inline MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; }
inline MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; }
inline void set_U3CU3E4__this_2(MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * value)
{
___U3CU3E4__this_2 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E4__this_2), value);
}
inline static int32_t get_offset_of_type_3() { return static_cast<int32_t>(offsetof(U3CStartOperationU3Ed__58_t9CFBEC306AEE875FF526F77EF660D0493F475BB1, ___type_3)); }
inline int32_t get_type_3() const { return ___type_3; }
inline int32_t* get_address_of_type_3() { return &___type_3; }
inline void set_type_3(int32_t value)
{
___type_3 = value;
}
inline static int32_t get_offset_of_asyncRequest_4() { return static_cast<int32_t>(offsetof(U3CStartOperationU3Ed__58_t9CFBEC306AEE875FF526F77EF660D0493F475BB1, ___asyncRequest_4)); }
inline AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * get_asyncRequest_4() const { return ___asyncRequest_4; }
inline AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 ** get_address_of_asyncRequest_4() { return &___asyncRequest_4; }
inline void set_asyncRequest_4(AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * value)
{
___asyncRequest_4 = value;
Il2CppCodeGenWriteBarrier((&___asyncRequest_4), value);
}
inline static int32_t get_offset_of_cancellationToken_5() { return static_cast<int32_t>(offsetof(U3CStartOperationU3Ed__58_t9CFBEC306AEE875FF526F77EF660D0493F475BB1, ___cancellationToken_5)); }
inline CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB get_cancellationToken_5() const { return ___cancellationToken_5; }
inline CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB * get_address_of_cancellationToken_5() { return &___cancellationToken_5; }
inline void set_cancellationToken_5(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB value)
{
___cancellationToken_5 = value;
}
inline static int32_t get_offset_of_U3CU3Eu__1_6() { return static_cast<int32_t>(offsetof(U3CStartOperationU3Ed__58_t9CFBEC306AEE875FF526F77EF660D0493F475BB1, ___U3CU3Eu__1_6)); }
inline ConfiguredTaskAwaiter_t688A02A53D1A4A883C7DDAFE0F07F17691C51E96 get_U3CU3Eu__1_6() const { return ___U3CU3Eu__1_6; }
inline ConfiguredTaskAwaiter_t688A02A53D1A4A883C7DDAFE0F07F17691C51E96 * get_address_of_U3CU3Eu__1_6() { return &___U3CU3Eu__1_6; }
inline void set_U3CU3Eu__1_6(ConfiguredTaskAwaiter_t688A02A53D1A4A883C7DDAFE0F07F17691C51E96 value)
{
___U3CU3Eu__1_6 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CSTARTOPERATIONU3ED__58_T9CFBEC306AEE875FF526F77EF660D0493F475BB1_H
#ifndef SYSTEMCERTIFICATEVALIDATOR_TEB00AC944EDDAA53F9A9FA7A316A23574985475F_H
#define SYSTEMCERTIFICATEVALIDATOR_TEB00AC944EDDAA53F9A9FA7A316A23574985475F_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Net.Security.SystemCertificateValidator
struct SystemCertificateValidator_tEB00AC944EDDAA53F9A9FA7A316A23574985475F : public RuntimeObject
{
public:
public:
};
struct SystemCertificateValidator_tEB00AC944EDDAA53F9A9FA7A316A23574985475F_StaticFields
{
public:
// System.Boolean Mono.Net.Security.SystemCertificateValidator::is_macosx
bool ___is_macosx_0;
// System.Security.Cryptography.X509Certificates.X509KeyUsageFlags Mono.Net.Security.SystemCertificateValidator::s_flags
int32_t ___s_flags_1;
public:
inline static int32_t get_offset_of_is_macosx_0() { return static_cast<int32_t>(offsetof(SystemCertificateValidator_tEB00AC944EDDAA53F9A9FA7A316A23574985475F_StaticFields, ___is_macosx_0)); }
inline bool get_is_macosx_0() const { return ___is_macosx_0; }
inline bool* get_address_of_is_macosx_0() { return &___is_macosx_0; }
inline void set_is_macosx_0(bool value)
{
___is_macosx_0 = value;
}
inline static int32_t get_offset_of_s_flags_1() { return static_cast<int32_t>(offsetof(SystemCertificateValidator_tEB00AC944EDDAA53F9A9FA7A316A23574985475F_StaticFields, ___s_flags_1)); }
inline int32_t get_s_flags_1() const { return ___s_flags_1; }
inline int32_t* get_address_of_s_flags_1() { return &___s_flags_1; }
inline void set_s_flags_1(int32_t value)
{
___s_flags_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SYSTEMCERTIFICATEVALIDATOR_TEB00AC944EDDAA53F9A9FA7A316A23574985475F_H
#ifndef UNITYTLS_ERRORSTATE_T64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6_H
#define UNITYTLS_ERRORSTATE_T64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_errorstate
struct unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6
{
public:
// System.UInt32 Mono.Unity.UnityTls/unitytls_errorstate::magic
uint32_t ___magic_0;
// Mono.Unity.UnityTls/unitytls_error_code Mono.Unity.UnityTls/unitytls_errorstate::code
uint32_t ___code_1;
// System.UInt64 Mono.Unity.UnityTls/unitytls_errorstate::reserved
uint64_t ___reserved_2;
public:
inline static int32_t get_offset_of_magic_0() { return static_cast<int32_t>(offsetof(unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6, ___magic_0)); }
inline uint32_t get_magic_0() const { return ___magic_0; }
inline uint32_t* get_address_of_magic_0() { return &___magic_0; }
inline void set_magic_0(uint32_t value)
{
___magic_0 = value;
}
inline static int32_t get_offset_of_code_1() { return static_cast<int32_t>(offsetof(unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6, ___code_1)); }
inline uint32_t get_code_1() const { return ___code_1; }
inline uint32_t* get_address_of_code_1() { return &___code_1; }
inline void set_code_1(uint32_t value)
{
___code_1 = value;
}
inline static int32_t get_offset_of_reserved_2() { return static_cast<int32_t>(offsetof(unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6, ___reserved_2)); }
inline uint64_t get_reserved_2() const { return ___reserved_2; }
inline uint64_t* get_address_of_reserved_2() { return &___reserved_2; }
inline void set_reserved_2(uint64_t value)
{
___reserved_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLS_ERRORSTATE_T64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6_H
#ifndef UNITYTLS_TLSCTX_PROTOCOLRANGE_T36243D72F83DAD47C95928314F58026DE8D38F47_H
#define UNITYTLS_TLSCTX_PROTOCOLRANGE_T36243D72F83DAD47C95928314F58026DE8D38F47_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_tlsctx_protocolrange
struct unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47
{
public:
// Mono.Unity.UnityTls/unitytls_protocol Mono.Unity.UnityTls/unitytls_tlsctx_protocolrange::min
uint32_t ___min_0;
// Mono.Unity.UnityTls/unitytls_protocol Mono.Unity.UnityTls/unitytls_tlsctx_protocolrange::max
uint32_t ___max_1;
public:
inline static int32_t get_offset_of_min_0() { return static_cast<int32_t>(offsetof(unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47, ___min_0)); }
inline uint32_t get_min_0() const { return ___min_0; }
inline uint32_t* get_address_of_min_0() { return &___min_0; }
inline void set_min_0(uint32_t value)
{
___min_0 = value;
}
inline static int32_t get_offset_of_max_1() { return static_cast<int32_t>(offsetof(unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47, ___max_1)); }
inline uint32_t get_max_1() const { return ___max_1; }
inline uint32_t* get_address_of_max_1() { return &___max_1; }
inline void set_max_1(uint32_t value)
{
___max_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLS_TLSCTX_PROTOCOLRANGE_T36243D72F83DAD47C95928314F58026DE8D38F47_H
#ifndef ARGUMENTNULLEXCEPTION_T581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_H
#define ARGUMENTNULLEXCEPTION_T581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ArgumentNullException
struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD : public ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ARGUMENTNULLEXCEPTION_T581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_H
#ifndef ARGUMENTOUTOFRANGEEXCEPTION_T94D19DF918A54511AEDF4784C9A08741BAD1DEDA_H
#define ARGUMENTOUTOFRANGEEXCEPTION_T94D19DF918A54511AEDF4784C9A08741BAD1DEDA_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA : public ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1
{
public:
// System.Object System.ArgumentOutOfRangeException::m_actualValue
RuntimeObject * ___m_actualValue_19;
public:
inline static int32_t get_offset_of_m_actualValue_19() { return static_cast<int32_t>(offsetof(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA, ___m_actualValue_19)); }
inline RuntimeObject * get_m_actualValue_19() const { return ___m_actualValue_19; }
inline RuntimeObject ** get_address_of_m_actualValue_19() { return &___m_actualValue_19; }
inline void set_m_actualValue_19(RuntimeObject * value)
{
___m_actualValue_19 = value;
Il2CppCodeGenWriteBarrier((&___m_actualValue_19), value);
}
};
struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_StaticFields
{
public:
// System.String modreq(System.Runtime.CompilerServices.IsVolatile) System.ArgumentOutOfRangeException::_rangeMessage
String_t* ____rangeMessage_18;
public:
inline static int32_t get_offset_of__rangeMessage_18() { return static_cast<int32_t>(offsetof(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_StaticFields, ____rangeMessage_18)); }
inline String_t* get__rangeMessage_18() const { return ____rangeMessage_18; }
inline String_t** get_address_of__rangeMessage_18() { return &____rangeMessage_18; }
inline void set__rangeMessage_18(String_t* value)
{
____rangeMessage_18 = value;
Il2CppCodeGenWriteBarrier((&____rangeMessage_18), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ARGUMENTOUTOFRANGEEXCEPTION_T94D19DF918A54511AEDF4784C9A08741BAD1DEDA_H
#ifndef BASENUMBERCONVERTER_T6AF36A2503E7BABF7FB9A8EC05DF8B828491AC63_H
#define BASENUMBERCONVERTER_T6AF36A2503E7BABF7FB9A8EC05DF8B828491AC63_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ComponentModel.BaseNumberConverter
struct BaseNumberConverter_t6AF36A2503E7BABF7FB9A8EC05DF8B828491AC63 : public TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // BASENUMBERCONVERTER_T6AF36A2503E7BABF7FB9A8EC05DF8B828491AC63_H
#ifndef BOOLEANCONVERTER_TD0D177A9F577915FAA9F6749229672CE8EBAA94C_H
#define BOOLEANCONVERTER_TD0D177A9F577915FAA9F6749229672CE8EBAA94C_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ComponentModel.BooleanConverter
struct BooleanConverter_tD0D177A9F577915FAA9F6749229672CE8EBAA94C : public TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB
{
public:
public:
};
struct BooleanConverter_tD0D177A9F577915FAA9F6749229672CE8EBAA94C_StaticFields
{
public:
// System.ComponentModel.TypeConverter/StandardValuesCollection modreq(System.Runtime.CompilerServices.IsVolatile) System.ComponentModel.BooleanConverter::values
StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * ___values_2;
public:
inline static int32_t get_offset_of_values_2() { return static_cast<int32_t>(offsetof(BooleanConverter_tD0D177A9F577915FAA9F6749229672CE8EBAA94C_StaticFields, ___values_2)); }
inline StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * get_values_2() const { return ___values_2; }
inline StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 ** get_address_of_values_2() { return &___values_2; }
inline void set_values_2(StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * value)
{
___values_2 = value;
Il2CppCodeGenWriteBarrier((&___values_2), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // BOOLEANCONVERTER_TD0D177A9F577915FAA9F6749229672CE8EBAA94C_H
#ifndef COLLECTIONCONVERTER_T039E15C433996B0F0F0EB78BEE81F6DE0705F184_H
#define COLLECTIONCONVERTER_T039E15C433996B0F0F0EB78BEE81F6DE0705F184_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ComponentModel.CollectionConverter
struct CollectionConverter_t039E15C433996B0F0F0EB78BEE81F6DE0705F184 : public TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // COLLECTIONCONVERTER_T039E15C433996B0F0F0EB78BEE81F6DE0705F184_H
#ifndef EDITORBROWSABLEATTRIBUTE_TF3507DF0AB82A8D54C70D6F7FB4D363DF729D516_H
#define EDITORBROWSABLEATTRIBUTE_TF3507DF0AB82A8D54C70D6F7FB4D363DF729D516_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ComponentModel.EditorBrowsableAttribute
struct EditorBrowsableAttribute_tF3507DF0AB82A8D54C70D6F7FB4D363DF729D516 : public Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74
{
public:
// System.ComponentModel.EditorBrowsableState System.ComponentModel.EditorBrowsableAttribute::browsableState
int32_t ___browsableState_0;
public:
inline static int32_t get_offset_of_browsableState_0() { return static_cast<int32_t>(offsetof(EditorBrowsableAttribute_tF3507DF0AB82A8D54C70D6F7FB4D363DF729D516, ___browsableState_0)); }
inline int32_t get_browsableState_0() const { return ___browsableState_0; }
inline int32_t* get_address_of_browsableState_0() { return &___browsableState_0; }
inline void set_browsableState_0(int32_t value)
{
___browsableState_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EDITORBROWSABLEATTRIBUTE_TF3507DF0AB82A8D54C70D6F7FB4D363DF729D516_H
#ifndef ENUMCONVERTER_T5DA4CB27C27A8C37C31B2A4DE0C4C37820638E12_H
#define ENUMCONVERTER_T5DA4CB27C27A8C37C31B2A4DE0C4C37820638E12_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ComponentModel.EnumConverter
struct EnumConverter_t5DA4CB27C27A8C37C31B2A4DE0C4C37820638E12 : public TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB
{
public:
// System.ComponentModel.TypeConverter/StandardValuesCollection System.ComponentModel.EnumConverter::values
StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * ___values_2;
// System.Type System.ComponentModel.EnumConverter::type
Type_t * ___type_3;
public:
inline static int32_t get_offset_of_values_2() { return static_cast<int32_t>(offsetof(EnumConverter_t5DA4CB27C27A8C37C31B2A4DE0C4C37820638E12, ___values_2)); }
inline StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * get_values_2() const { return ___values_2; }
inline StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 ** get_address_of_values_2() { return &___values_2; }
inline void set_values_2(StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * value)
{
___values_2 = value;
Il2CppCodeGenWriteBarrier((&___values_2), value);
}
inline static int32_t get_offset_of_type_3() { return static_cast<int32_t>(offsetof(EnumConverter_t5DA4CB27C27A8C37C31B2A4DE0C4C37820638E12, ___type_3)); }
inline Type_t * get_type_3() const { return ___type_3; }
inline Type_t ** get_address_of_type_3() { return &___type_3; }
inline void set_type_3(Type_t * value)
{
___type_3 = value;
Il2CppCodeGenWriteBarrier((&___type_3), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENUMCONVERTER_T5DA4CB27C27A8C37C31B2A4DE0C4C37820638E12_H
#ifndef STRINGCONVERTER_T054FA0796F4C8E951208AFA052D99BCB8E68BED7_H
#define STRINGCONVERTER_T054FA0796F4C8E951208AFA052D99BCB8E68BED7_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ComponentModel.StringConverter
struct StringConverter_t054FA0796F4C8E951208AFA052D99BCB8E68BED7 : public TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // STRINGCONVERTER_T054FA0796F4C8E951208AFA052D99BCB8E68BED7_H
#ifndef TIMESPANCONVERTER_T4025A0861C52420BC73D837729E5EFA6ECDE07C7_H
#define TIMESPANCONVERTER_T4025A0861C52420BC73D837729E5EFA6ECDE07C7_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ComponentModel.TimeSpanConverter
struct TimeSpanConverter_t4025A0861C52420BC73D837729E5EFA6ECDE07C7 : public TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TIMESPANCONVERTER_T4025A0861C52420BC73D837729E5EFA6ECDE07C7_H
#ifndef WIN32EXCEPTION_TB05BE97AB4CADD54DF96C0109689F0ECA7517668_H
#define WIN32EXCEPTION_TB05BE97AB4CADD54DF96C0109689F0ECA7517668_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ComponentModel.Win32Exception
struct Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668 : public ExternalException_t68841FD169C0CB00CC950EDA7E2A59540D65B1CE
{
public:
// System.Int32 System.ComponentModel.Win32Exception::nativeErrorCode
int32_t ___nativeErrorCode_17;
public:
inline static int32_t get_offset_of_nativeErrorCode_17() { return static_cast<int32_t>(offsetof(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668, ___nativeErrorCode_17)); }
inline int32_t get_nativeErrorCode_17() const { return ___nativeErrorCode_17; }
inline int32_t* get_address_of_nativeErrorCode_17() { return &___nativeErrorCode_17; }
inline void set_nativeErrorCode_17(int32_t value)
{
___nativeErrorCode_17 = value;
}
};
struct Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields
{
public:
// System.Boolean System.ComponentModel.Win32Exception::s_ErrorMessagesInitialized
bool ___s_ErrorMessagesInitialized_18;
// System.Collections.Generic.Dictionary`2<System.Int32,System.String> System.ComponentModel.Win32Exception::s_ErrorMessage
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * ___s_ErrorMessage_19;
public:
inline static int32_t get_offset_of_s_ErrorMessagesInitialized_18() { return static_cast<int32_t>(offsetof(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields, ___s_ErrorMessagesInitialized_18)); }
inline bool get_s_ErrorMessagesInitialized_18() const { return ___s_ErrorMessagesInitialized_18; }
inline bool* get_address_of_s_ErrorMessagesInitialized_18() { return &___s_ErrorMessagesInitialized_18; }
inline void set_s_ErrorMessagesInitialized_18(bool value)
{
___s_ErrorMessagesInitialized_18 = value;
}
inline static int32_t get_offset_of_s_ErrorMessage_19() { return static_cast<int32_t>(offsetof(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields, ___s_ErrorMessage_19)); }
inline Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * get_s_ErrorMessage_19() const { return ___s_ErrorMessage_19; }
inline Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C ** get_address_of_s_ErrorMessage_19() { return &___s_ErrorMessage_19; }
inline void set_s_ErrorMessage_19(Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * value)
{
___s_ErrorMessage_19 = value;
Il2CppCodeGenWriteBarrier((&___s_ErrorMessage_19), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // WIN32EXCEPTION_TB05BE97AB4CADD54DF96C0109689F0ECA7517668_H
#ifndef IOSELECTORJOB_T2B03604D19B81660C4C1C06590C76BC8630DDE99_H
#define IOSELECTORJOB_T2B03604D19B81660C4C1C06590C76BC8630DDE99_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IOSelectorJob
struct IOSelectorJob_t2B03604D19B81660C4C1C06590C76BC8630DDE99 : public RuntimeObject
{
public:
// System.IOOperation System.IOSelectorJob::operation
int32_t ___operation_0;
// System.IOAsyncCallback System.IOSelectorJob::callback
IOAsyncCallback_tEAEB626A6DAC959F4C365B12136A80EE9AA17547 * ___callback_1;
// System.IOAsyncResult System.IOSelectorJob::state
IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD * ___state_2;
public:
inline static int32_t get_offset_of_operation_0() { return static_cast<int32_t>(offsetof(IOSelectorJob_t2B03604D19B81660C4C1C06590C76BC8630DDE99, ___operation_0)); }
inline int32_t get_operation_0() const { return ___operation_0; }
inline int32_t* get_address_of_operation_0() { return &___operation_0; }
inline void set_operation_0(int32_t value)
{
___operation_0 = value;
}
inline static int32_t get_offset_of_callback_1() { return static_cast<int32_t>(offsetof(IOSelectorJob_t2B03604D19B81660C4C1C06590C76BC8630DDE99, ___callback_1)); }
inline IOAsyncCallback_tEAEB626A6DAC959F4C365B12136A80EE9AA17547 * get_callback_1() const { return ___callback_1; }
inline IOAsyncCallback_tEAEB626A6DAC959F4C365B12136A80EE9AA17547 ** get_address_of_callback_1() { return &___callback_1; }
inline void set_callback_1(IOAsyncCallback_tEAEB626A6DAC959F4C365B12136A80EE9AA17547 * value)
{
___callback_1 = value;
Il2CppCodeGenWriteBarrier((&___callback_1), value);
}
inline static int32_t get_offset_of_state_2() { return static_cast<int32_t>(offsetof(IOSelectorJob_t2B03604D19B81660C4C1C06590C76BC8630DDE99, ___state_2)); }
inline IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD * get_state_2() const { return ___state_2; }
inline IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD ** get_address_of_state_2() { return &___state_2; }
inline void set_state_2(IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD * value)
{
___state_2 = value;
Il2CppCodeGenWriteBarrier((&___state_2), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.IOSelectorJob
struct IOSelectorJob_t2B03604D19B81660C4C1C06590C76BC8630DDE99_marshaled_pinvoke
{
int32_t ___operation_0;
Il2CppMethodPointer ___callback_1;
IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD_marshaled_pinvoke* ___state_2;
};
// Native definition for COM marshalling of System.IOSelectorJob
struct IOSelectorJob_t2B03604D19B81660C4C1C06590C76BC8630DDE99_marshaled_com
{
int32_t ___operation_0;
Il2CppMethodPointer ___callback_1;
IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD_marshaled_com* ___state_2;
};
#endif // IOSELECTORJOB_T2B03604D19B81660C4C1C06590C76BC8630DDE99_H
#ifndef MULTICASTDELEGATE_T_H
#define MULTICASTDELEGATE_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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((&___delegates_11), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* ___delegates_11;
};
// Native definition for COM marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* ___delegates_11;
};
#endif // MULTICASTDELEGATE_T_H
#ifndef IPADDRESS_T77F35D21A3027F0CE7B38EA9B56BFD31B28952CE_H
#define IPADDRESS_T77F35D21A3027F0CE7B38EA9B56BFD31B28952CE_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.IPAddress
struct IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE : public RuntimeObject
{
public:
// System.Int64 System.Net.IPAddress::m_Address
int64_t ___m_Address_5;
// System.String System.Net.IPAddress::m_ToString
String_t* ___m_ToString_6;
// System.Net.Sockets.AddressFamily System.Net.IPAddress::m_Family
int32_t ___m_Family_10;
// System.UInt16[] System.Net.IPAddress::m_Numbers
UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* ___m_Numbers_11;
// System.Int64 System.Net.IPAddress::m_ScopeId
int64_t ___m_ScopeId_12;
// System.Int32 System.Net.IPAddress::m_HashCode
int32_t ___m_HashCode_13;
public:
inline static int32_t get_offset_of_m_Address_5() { return static_cast<int32_t>(offsetof(IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE, ___m_Address_5)); }
inline int64_t get_m_Address_5() const { return ___m_Address_5; }
inline int64_t* get_address_of_m_Address_5() { return &___m_Address_5; }
inline void set_m_Address_5(int64_t value)
{
___m_Address_5 = value;
}
inline static int32_t get_offset_of_m_ToString_6() { return static_cast<int32_t>(offsetof(IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE, ___m_ToString_6)); }
inline String_t* get_m_ToString_6() const { return ___m_ToString_6; }
inline String_t** get_address_of_m_ToString_6() { return &___m_ToString_6; }
inline void set_m_ToString_6(String_t* value)
{
___m_ToString_6 = value;
Il2CppCodeGenWriteBarrier((&___m_ToString_6), value);
}
inline static int32_t get_offset_of_m_Family_10() { return static_cast<int32_t>(offsetof(IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE, ___m_Family_10)); }
inline int32_t get_m_Family_10() const { return ___m_Family_10; }
inline int32_t* get_address_of_m_Family_10() { return &___m_Family_10; }
inline void set_m_Family_10(int32_t value)
{
___m_Family_10 = value;
}
inline static int32_t get_offset_of_m_Numbers_11() { return static_cast<int32_t>(offsetof(IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE, ___m_Numbers_11)); }
inline UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* get_m_Numbers_11() const { return ___m_Numbers_11; }
inline UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E** get_address_of_m_Numbers_11() { return &___m_Numbers_11; }
inline void set_m_Numbers_11(UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* value)
{
___m_Numbers_11 = value;
Il2CppCodeGenWriteBarrier((&___m_Numbers_11), value);
}
inline static int32_t get_offset_of_m_ScopeId_12() { return static_cast<int32_t>(offsetof(IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE, ___m_ScopeId_12)); }
inline int64_t get_m_ScopeId_12() const { return ___m_ScopeId_12; }
inline int64_t* get_address_of_m_ScopeId_12() { return &___m_ScopeId_12; }
inline void set_m_ScopeId_12(int64_t value)
{
___m_ScopeId_12 = value;
}
inline static int32_t get_offset_of_m_HashCode_13() { return static_cast<int32_t>(offsetof(IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE, ___m_HashCode_13)); }
inline int32_t get_m_HashCode_13() const { return ___m_HashCode_13; }
inline int32_t* get_address_of_m_HashCode_13() { return &___m_HashCode_13; }
inline void set_m_HashCode_13(int32_t value)
{
___m_HashCode_13 = value;
}
};
struct IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE_StaticFields
{
public:
// System.Net.IPAddress System.Net.IPAddress::Any
IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE * ___Any_0;
// System.Net.IPAddress System.Net.IPAddress::Loopback
IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE * ___Loopback_1;
// System.Net.IPAddress System.Net.IPAddress::Broadcast
IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE * ___Broadcast_2;
// System.Net.IPAddress System.Net.IPAddress::None
IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE * ___None_3;
// System.Net.IPAddress System.Net.IPAddress::IPv6Any
IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE * ___IPv6Any_7;
// System.Net.IPAddress System.Net.IPAddress::IPv6Loopback
IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE * ___IPv6Loopback_8;
// System.Net.IPAddress System.Net.IPAddress::IPv6None
IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE * ___IPv6None_9;
public:
inline static int32_t get_offset_of_Any_0() { return static_cast<int32_t>(offsetof(IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE_StaticFields, ___Any_0)); }
inline IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE * get_Any_0() const { return ___Any_0; }
inline IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE ** get_address_of_Any_0() { return &___Any_0; }
inline void set_Any_0(IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE * value)
{
___Any_0 = value;
Il2CppCodeGenWriteBarrier((&___Any_0), value);
}
inline static int32_t get_offset_of_Loopback_1() { return static_cast<int32_t>(offsetof(IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE_StaticFields, ___Loopback_1)); }
inline IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE * get_Loopback_1() const { return ___Loopback_1; }
inline IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE ** get_address_of_Loopback_1() { return &___Loopback_1; }
inline void set_Loopback_1(IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE * value)
{
___Loopback_1 = value;
Il2CppCodeGenWriteBarrier((&___Loopback_1), value);
}
inline static int32_t get_offset_of_Broadcast_2() { return static_cast<int32_t>(offsetof(IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE_StaticFields, ___Broadcast_2)); }
inline IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE * get_Broadcast_2() const { return ___Broadcast_2; }
inline IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE ** get_address_of_Broadcast_2() { return &___Broadcast_2; }
inline void set_Broadcast_2(IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE * value)
{
___Broadcast_2 = value;
Il2CppCodeGenWriteBarrier((&___Broadcast_2), value);
}
inline static int32_t get_offset_of_None_3() { return static_cast<int32_t>(offsetof(IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE_StaticFields, ___None_3)); }
inline IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE * get_None_3() const { return ___None_3; }
inline IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE ** get_address_of_None_3() { return &___None_3; }
inline void set_None_3(IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE * value)
{
___None_3 = value;
Il2CppCodeGenWriteBarrier((&___None_3), value);
}
inline static int32_t get_offset_of_IPv6Any_7() { return static_cast<int32_t>(offsetof(IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE_StaticFields, ___IPv6Any_7)); }
inline IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE * get_IPv6Any_7() const { return ___IPv6Any_7; }
inline IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE ** get_address_of_IPv6Any_7() { return &___IPv6Any_7; }
inline void set_IPv6Any_7(IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE * value)
{
___IPv6Any_7 = value;
Il2CppCodeGenWriteBarrier((&___IPv6Any_7), value);
}
inline static int32_t get_offset_of_IPv6Loopback_8() { return static_cast<int32_t>(offsetof(IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE_StaticFields, ___IPv6Loopback_8)); }
inline IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE * get_IPv6Loopback_8() const { return ___IPv6Loopback_8; }
inline IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE ** get_address_of_IPv6Loopback_8() { return &___IPv6Loopback_8; }
inline void set_IPv6Loopback_8(IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE * value)
{
___IPv6Loopback_8 = value;
Il2CppCodeGenWriteBarrier((&___IPv6Loopback_8), value);
}
inline static int32_t get_offset_of_IPv6None_9() { return static_cast<int32_t>(offsetof(IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE_StaticFields, ___IPv6None_9)); }
inline IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE * get_IPv6None_9() const { return ___IPv6None_9; }
inline IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE ** get_address_of_IPv6None_9() { return &___IPv6None_9; }
inline void set_IPv6None_9(IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE * value)
{
___IPv6None_9 = value;
Il2CppCodeGenWriteBarrier((&___IPv6None_9), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // IPADDRESS_T77F35D21A3027F0CE7B38EA9B56BFD31B28952CE_H
#ifndef SSLSTREAM_T9CEE8F6E125C734DD807D9289C86860FFEE81087_H
#define SSLSTREAM_T9CEE8F6E125C734DD807D9289C86860FFEE81087_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Security.SslStream
struct SslStream_t9CEE8F6E125C734DD807D9289C86860FFEE81087 : public AuthenticatedStream_t3DD09B1EB437BE77A9B0536EC26005B6914BF501
{
public:
// Mono.Security.Interface.MonoTlsProvider System.Net.Security.SslStream::provider
MonoTlsProvider_tDCD056C5BBBE59ED6BAF63F25952B406C1143C27 * ___provider_6;
// Mono.Security.Interface.IMonoSslStream System.Net.Security.SslStream::impl
RuntimeObject* ___impl_7;
public:
inline static int32_t get_offset_of_provider_6() { return static_cast<int32_t>(offsetof(SslStream_t9CEE8F6E125C734DD807D9289C86860FFEE81087, ___provider_6)); }
inline MonoTlsProvider_tDCD056C5BBBE59ED6BAF63F25952B406C1143C27 * get_provider_6() const { return ___provider_6; }
inline MonoTlsProvider_tDCD056C5BBBE59ED6BAF63F25952B406C1143C27 ** get_address_of_provider_6() { return &___provider_6; }
inline void set_provider_6(MonoTlsProvider_tDCD056C5BBBE59ED6BAF63F25952B406C1143C27 * value)
{
___provider_6 = value;
Il2CppCodeGenWriteBarrier((&___provider_6), value);
}
inline static int32_t get_offset_of_impl_7() { return static_cast<int32_t>(offsetof(SslStream_t9CEE8F6E125C734DD807D9289C86860FFEE81087, ___impl_7)); }
inline RuntimeObject* get_impl_7() const { return ___impl_7; }
inline RuntimeObject** get_address_of_impl_7() { return &___impl_7; }
inline void set_impl_7(RuntimeObject* value)
{
___impl_7 = value;
Il2CppCodeGenWriteBarrier((&___impl_7), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SSLSTREAM_T9CEE8F6E125C734DD807D9289C86860FFEE81087_H
#ifndef OBJECTDISPOSEDEXCEPTION_TF68E471ECD1419AD7C51137B742837395F50B69A_H
#define OBJECTDISPOSEDEXCEPTION_TF68E471ECD1419AD7C51137B742837395F50B69A_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ObjectDisposedException
struct ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A : public InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1
{
public:
// System.String System.ObjectDisposedException::objectName
String_t* ___objectName_17;
public:
inline static int32_t get_offset_of_objectName_17() { return static_cast<int32_t>(offsetof(ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A, ___objectName_17)); }
inline String_t* get_objectName_17() const { return ___objectName_17; }
inline String_t** get_address_of_objectName_17() { return &___objectName_17; }
inline void set_objectName_17(String_t* value)
{
___objectName_17 = value;
Il2CppCodeGenWriteBarrier((&___objectName_17), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // OBJECTDISPOSEDEXCEPTION_TF68E471ECD1419AD7C51137B742837395F50B69A_H
#ifndef OPERATINGSYSTEM_TBB05846D5AA6960FFEB42C59E5FE359255C2BE83_H
#define OPERATINGSYSTEM_TBB05846D5AA6960FFEB42C59E5FE359255C2BE83_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.OperatingSystem
struct OperatingSystem_tBB05846D5AA6960FFEB42C59E5FE359255C2BE83 : public RuntimeObject
{
public:
// System.PlatformID System.OperatingSystem::_platform
int32_t ____platform_0;
// System.Version System.OperatingSystem::_version
Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * ____version_1;
// System.String System.OperatingSystem::_servicePack
String_t* ____servicePack_2;
public:
inline static int32_t get_offset_of__platform_0() { return static_cast<int32_t>(offsetof(OperatingSystem_tBB05846D5AA6960FFEB42C59E5FE359255C2BE83, ____platform_0)); }
inline int32_t get__platform_0() const { return ____platform_0; }
inline int32_t* get_address_of__platform_0() { return &____platform_0; }
inline void set__platform_0(int32_t value)
{
____platform_0 = value;
}
inline static int32_t get_offset_of__version_1() { return static_cast<int32_t>(offsetof(OperatingSystem_tBB05846D5AA6960FFEB42C59E5FE359255C2BE83, ____version_1)); }
inline Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * get__version_1() const { return ____version_1; }
inline Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD ** get_address_of__version_1() { return &____version_1; }
inline void set__version_1(Version_tDBE6876C59B6F56D4F8CAA03851177ABC6FE0DFD * value)
{
____version_1 = value;
Il2CppCodeGenWriteBarrier((&____version_1), value);
}
inline static int32_t get_offset_of__servicePack_2() { return static_cast<int32_t>(offsetof(OperatingSystem_tBB05846D5AA6960FFEB42C59E5FE359255C2BE83, ____servicePack_2)); }
inline String_t* get__servicePack_2() const { return ____servicePack_2; }
inline String_t** get_address_of__servicePack_2() { return &____servicePack_2; }
inline void set__servicePack_2(String_t* value)
{
____servicePack_2 = value;
Il2CppCodeGenWriteBarrier((&____servicePack_2), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // OPERATINGSYSTEM_TBB05846D5AA6960FFEB42C59E5FE359255C2BE83_H
#ifndef ASYNCTASKMETHODBUILDER_T0CD1893D670405BED201BE8CA6F2E811F2C0F487_H
#define ASYNCTASKMETHODBUILDER_T0CD1893D670405BED201BE8CA6F2E811F2C0F487_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder
struct AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487
{
public:
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Threading.Tasks.VoidTaskResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder::m_builder
AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 ___m_builder_1;
public:
inline static int32_t get_offset_of_m_builder_1() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487, ___m_builder_1)); }
inline AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 get_m_builder_1() const { return ___m_builder_1; }
inline AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 * get_address_of_m_builder_1() { return &___m_builder_1; }
inline void set_m_builder_1(AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 value)
{
___m_builder_1 = value;
}
};
struct AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487_StaticFields
{
public:
// System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult> System.Runtime.CompilerServices.AsyncTaskMethodBuilder::s_cachedCompleted
Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * ___s_cachedCompleted_0;
public:
inline static int32_t get_offset_of_s_cachedCompleted_0() { return static_cast<int32_t>(offsetof(AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487_StaticFields, ___s_cachedCompleted_0)); }
inline Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * get_s_cachedCompleted_0() const { return ___s_cachedCompleted_0; }
inline Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 ** get_address_of_s_cachedCompleted_0() { return &___s_cachedCompleted_0; }
inline void set_s_cachedCompleted_0(Task_1_t1359D75350E9D976BFA28AD96E417450DE277673 * value)
{
___s_cachedCompleted_0 = value;
Il2CppCodeGenWriteBarrier((&___s_cachedCompleted_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Runtime.CompilerServices.AsyncTaskMethodBuilder
struct AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487_marshaled_pinvoke
{
AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 ___m_builder_1;
};
// Native definition for COM marshalling of System.Runtime.CompilerServices.AsyncTaskMethodBuilder
struct AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487_marshaled_com
{
AsyncTaskMethodBuilder_1_t66ED1808B26B8081A2804D6A750D13386E360BD9 ___m_builder_1;
};
#endif // ASYNCTASKMETHODBUILDER_T0CD1893D670405BED201BE8CA6F2E811F2C0F487_H
#ifndef STREAMINGCONTEXT_T2CCDC54E0E8D078AF4A50E3A8B921B828A900034_H
#define STREAMINGCONTEXT_T2CCDC54E0E8D078AF4A50E3A8B921B828A900034_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.Serialization.StreamingContext
struct StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034
{
public:
// System.Object System.Runtime.Serialization.StreamingContext::m_additionalContext
RuntimeObject * ___m_additionalContext_0;
// System.Runtime.Serialization.StreamingContextStates System.Runtime.Serialization.StreamingContext::m_state
int32_t ___m_state_1;
public:
inline static int32_t get_offset_of_m_additionalContext_0() { return static_cast<int32_t>(offsetof(StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034, ___m_additionalContext_0)); }
inline RuntimeObject * get_m_additionalContext_0() const { return ___m_additionalContext_0; }
inline RuntimeObject ** get_address_of_m_additionalContext_0() { return &___m_additionalContext_0; }
inline void set_m_additionalContext_0(RuntimeObject * value)
{
___m_additionalContext_0 = value;
Il2CppCodeGenWriteBarrier((&___m_additionalContext_0), value);
}
inline static int32_t get_offset_of_m_state_1() { return static_cast<int32_t>(offsetof(StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034, ___m_state_1)); }
inline int32_t get_m_state_1() const { return ___m_state_1; }
inline int32_t* get_address_of_m_state_1() { return &___m_state_1; }
inline void set_m_state_1(int32_t value)
{
___m_state_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Runtime.Serialization.StreamingContext
struct StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_marshaled_pinvoke
{
Il2CppIUnknown* ___m_additionalContext_0;
int32_t ___m_state_1;
};
// Native definition for COM marshalling of System.Runtime.Serialization.StreamingContext
struct StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034_marshaled_com
{
Il2CppIUnknown* ___m_additionalContext_0;
int32_t ___m_state_1;
};
#endif // STREAMINGCONTEXT_T2CCDC54E0E8D078AF4A50E3A8B921B828A900034_H
#ifndef X509CHAINPOLICY_TCA1D9E9842A16ACD71D35E9C36659E3E861D74DD_H
#define X509CHAINPOLICY_TCA1D9E9842A16ACD71D35E9C36659E3E861D74DD_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Security.Cryptography.X509Certificates.X509ChainPolicy
struct X509ChainPolicy_tCA1D9E9842A16ACD71D35E9C36659E3E861D74DD : public RuntimeObject
{
public:
// System.Security.Cryptography.OidCollection System.Security.Cryptography.X509Certificates.X509ChainPolicy::apps
OidCollection_tEB423F1150E53DCF513BF5A699F911586A31B94E * ___apps_0;
// System.Security.Cryptography.OidCollection System.Security.Cryptography.X509Certificates.X509ChainPolicy::cert
OidCollection_tEB423F1150E53DCF513BF5A699F911586A31B94E * ___cert_1;
// System.Security.Cryptography.X509Certificates.X509CertificateCollection System.Security.Cryptography.X509Certificates.X509ChainPolicy::store
X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 * ___store_2;
// System.Security.Cryptography.X509Certificates.X509Certificate2Collection System.Security.Cryptography.X509Certificates.X509ChainPolicy::store2
X509Certificate2Collection_t14D64A5A2CFE4EA1782A417F975C2AB85BDA190D * ___store2_3;
// System.Security.Cryptography.X509Certificates.X509RevocationFlag System.Security.Cryptography.X509Certificates.X509ChainPolicy::rflag
int32_t ___rflag_4;
// System.Security.Cryptography.X509Certificates.X509RevocationMode System.Security.Cryptography.X509Certificates.X509ChainPolicy::mode
int32_t ___mode_5;
// System.TimeSpan System.Security.Cryptography.X509Certificates.X509ChainPolicy::timeout
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___timeout_6;
// System.Security.Cryptography.X509Certificates.X509VerificationFlags System.Security.Cryptography.X509Certificates.X509ChainPolicy::vflags
int32_t ___vflags_7;
// System.DateTime System.Security.Cryptography.X509Certificates.X509ChainPolicy::vtime
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___vtime_8;
public:
inline static int32_t get_offset_of_apps_0() { return static_cast<int32_t>(offsetof(X509ChainPolicy_tCA1D9E9842A16ACD71D35E9C36659E3E861D74DD, ___apps_0)); }
inline OidCollection_tEB423F1150E53DCF513BF5A699F911586A31B94E * get_apps_0() const { return ___apps_0; }
inline OidCollection_tEB423F1150E53DCF513BF5A699F911586A31B94E ** get_address_of_apps_0() { return &___apps_0; }
inline void set_apps_0(OidCollection_tEB423F1150E53DCF513BF5A699F911586A31B94E * value)
{
___apps_0 = value;
Il2CppCodeGenWriteBarrier((&___apps_0), value);
}
inline static int32_t get_offset_of_cert_1() { return static_cast<int32_t>(offsetof(X509ChainPolicy_tCA1D9E9842A16ACD71D35E9C36659E3E861D74DD, ___cert_1)); }
inline OidCollection_tEB423F1150E53DCF513BF5A699F911586A31B94E * get_cert_1() const { return ___cert_1; }
inline OidCollection_tEB423F1150E53DCF513BF5A699F911586A31B94E ** get_address_of_cert_1() { return &___cert_1; }
inline void set_cert_1(OidCollection_tEB423F1150E53DCF513BF5A699F911586A31B94E * value)
{
___cert_1 = value;
Il2CppCodeGenWriteBarrier((&___cert_1), value);
}
inline static int32_t get_offset_of_store_2() { return static_cast<int32_t>(offsetof(X509ChainPolicy_tCA1D9E9842A16ACD71D35E9C36659E3E861D74DD, ___store_2)); }
inline X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 * get_store_2() const { return ___store_2; }
inline X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 ** get_address_of_store_2() { return &___store_2; }
inline void set_store_2(X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 * value)
{
___store_2 = value;
Il2CppCodeGenWriteBarrier((&___store_2), value);
}
inline static int32_t get_offset_of_store2_3() { return static_cast<int32_t>(offsetof(X509ChainPolicy_tCA1D9E9842A16ACD71D35E9C36659E3E861D74DD, ___store2_3)); }
inline X509Certificate2Collection_t14D64A5A2CFE4EA1782A417F975C2AB85BDA190D * get_store2_3() const { return ___store2_3; }
inline X509Certificate2Collection_t14D64A5A2CFE4EA1782A417F975C2AB85BDA190D ** get_address_of_store2_3() { return &___store2_3; }
inline void set_store2_3(X509Certificate2Collection_t14D64A5A2CFE4EA1782A417F975C2AB85BDA190D * value)
{
___store2_3 = value;
Il2CppCodeGenWriteBarrier((&___store2_3), value);
}
inline static int32_t get_offset_of_rflag_4() { return static_cast<int32_t>(offsetof(X509ChainPolicy_tCA1D9E9842A16ACD71D35E9C36659E3E861D74DD, ___rflag_4)); }
inline int32_t get_rflag_4() const { return ___rflag_4; }
inline int32_t* get_address_of_rflag_4() { return &___rflag_4; }
inline void set_rflag_4(int32_t value)
{
___rflag_4 = value;
}
inline static int32_t get_offset_of_mode_5() { return static_cast<int32_t>(offsetof(X509ChainPolicy_tCA1D9E9842A16ACD71D35E9C36659E3E861D74DD, ___mode_5)); }
inline int32_t get_mode_5() const { return ___mode_5; }
inline int32_t* get_address_of_mode_5() { return &___mode_5; }
inline void set_mode_5(int32_t value)
{
___mode_5 = value;
}
inline static int32_t get_offset_of_timeout_6() { return static_cast<int32_t>(offsetof(X509ChainPolicy_tCA1D9E9842A16ACD71D35E9C36659E3E861D74DD, ___timeout_6)); }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_timeout_6() const { return ___timeout_6; }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_timeout_6() { return &___timeout_6; }
inline void set_timeout_6(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value)
{
___timeout_6 = value;
}
inline static int32_t get_offset_of_vflags_7() { return static_cast<int32_t>(offsetof(X509ChainPolicy_tCA1D9E9842A16ACD71D35E9C36659E3E861D74DD, ___vflags_7)); }
inline int32_t get_vflags_7() const { return ___vflags_7; }
inline int32_t* get_address_of_vflags_7() { return &___vflags_7; }
inline void set_vflags_7(int32_t value)
{
___vflags_7 = value;
}
inline static int32_t get_offset_of_vtime_8() { return static_cast<int32_t>(offsetof(X509ChainPolicy_tCA1D9E9842A16ACD71D35E9C36659E3E861D74DD, ___vtime_8)); }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_vtime_8() const { return ___vtime_8; }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_vtime_8() { return &___vtime_8; }
inline void set_vtime_8(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value)
{
___vtime_8 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // X509CHAINPOLICY_TCA1D9E9842A16ACD71D35E9C36659E3E861D74DD_H
#ifndef EVENTWAITHANDLE_T7603BF1D3D30FE42DD07A450C8D09E2684DC4D98_H
#define EVENTWAITHANDLE_T7603BF1D3D30FE42DD07A450C8D09E2684DC4D98_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.EventWaitHandle
struct EventWaitHandle_t7603BF1D3D30FE42DD07A450C8D09E2684DC4D98 : public WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EVENTWAITHANDLE_T7603BF1D3D30FE42DD07A450C8D09E2684DC4D98_H
#ifndef TASK_1_T6D67FA6126155FF2C2E227A859409D83DFAFA9BD_H
#define TASK_1_T6D67FA6126155FF2C2E227A859409D83DFAFA9BD_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.Task`1<Mono.Net.Security.AsyncProtocolResult>
struct Task_1_t6D67FA6126155FF2C2E227A859409D83DFAFA9BD : public Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2
{
public:
// TResult System.Threading.Tasks.Task`1::m_result
AsyncProtocolResult_t957DDFF1A4D0CC662F930F5C9E09E4FA1FBBFBC0 * ___m_result_22;
public:
inline static int32_t get_offset_of_m_result_22() { return static_cast<int32_t>(offsetof(Task_1_t6D67FA6126155FF2C2E227A859409D83DFAFA9BD, ___m_result_22)); }
inline AsyncProtocolResult_t957DDFF1A4D0CC662F930F5C9E09E4FA1FBBFBC0 * get_m_result_22() const { return ___m_result_22; }
inline AsyncProtocolResult_t957DDFF1A4D0CC662F930F5C9E09E4FA1FBBFBC0 ** get_address_of_m_result_22() { return &___m_result_22; }
inline void set_m_result_22(AsyncProtocolResult_t957DDFF1A4D0CC662F930F5C9E09E4FA1FBBFBC0 * value)
{
___m_result_22 = value;
Il2CppCodeGenWriteBarrier((&___m_result_22), value);
}
};
struct Task_1_t6D67FA6126155FF2C2E227A859409D83DFAFA9BD_StaticFields
{
public:
// System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1::s_Factory
TaskFactory_1_t0BBF93A8240DC9AA4CB30E731C2B8DCE5768503F * ___s_Factory_23;
// System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<TResult>> System.Threading.Tasks.Task`1::TaskWhenAnyCast
Func_2_t13B32D77E04EC21101230BDAC9B8F7E516325CFB * ___TaskWhenAnyCast_24;
public:
inline static int32_t get_offset_of_s_Factory_23() { return static_cast<int32_t>(offsetof(Task_1_t6D67FA6126155FF2C2E227A859409D83DFAFA9BD_StaticFields, ___s_Factory_23)); }
inline TaskFactory_1_t0BBF93A8240DC9AA4CB30E731C2B8DCE5768503F * get_s_Factory_23() const { return ___s_Factory_23; }
inline TaskFactory_1_t0BBF93A8240DC9AA4CB30E731C2B8DCE5768503F ** get_address_of_s_Factory_23() { return &___s_Factory_23; }
inline void set_s_Factory_23(TaskFactory_1_t0BBF93A8240DC9AA4CB30E731C2B8DCE5768503F * value)
{
___s_Factory_23 = value;
Il2CppCodeGenWriteBarrier((&___s_Factory_23), value);
}
inline static int32_t get_offset_of_TaskWhenAnyCast_24() { return static_cast<int32_t>(offsetof(Task_1_t6D67FA6126155FF2C2E227A859409D83DFAFA9BD_StaticFields, ___TaskWhenAnyCast_24)); }
inline Func_2_t13B32D77E04EC21101230BDAC9B8F7E516325CFB * get_TaskWhenAnyCast_24() const { return ___TaskWhenAnyCast_24; }
inline Func_2_t13B32D77E04EC21101230BDAC9B8F7E516325CFB ** get_address_of_TaskWhenAnyCast_24() { return &___TaskWhenAnyCast_24; }
inline void set_TaskWhenAnyCast_24(Func_2_t13B32D77E04EC21101230BDAC9B8F7E516325CFB * value)
{
___TaskWhenAnyCast_24 = value;
Il2CppCodeGenWriteBarrier((&___TaskWhenAnyCast_24), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TASK_1_T6D67FA6126155FF2C2E227A859409D83DFAFA9BD_H
#ifndef TASK_1_T640F0CBB720BB9CD14B90B7B81624471A9F56D87_H
#define TASK_1_T640F0CBB720BB9CD14B90B7B81624471A9F56D87_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.Task`1<System.Int32>
struct Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 : public Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2
{
public:
// TResult System.Threading.Tasks.Task`1::m_result
int32_t ___m_result_22;
public:
inline static int32_t get_offset_of_m_result_22() { return static_cast<int32_t>(offsetof(Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87, ___m_result_22)); }
inline int32_t get_m_result_22() const { return ___m_result_22; }
inline int32_t* get_address_of_m_result_22() { return &___m_result_22; }
inline void set_m_result_22(int32_t value)
{
___m_result_22 = value;
}
};
struct Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87_StaticFields
{
public:
// System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1::s_Factory
TaskFactory_1_t35BBF03CDA9AA94D2BE8CB805D2C764236F56CC7 * ___s_Factory_23;
// System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<TResult>> System.Threading.Tasks.Task`1::TaskWhenAnyCast
Func_2_tBCA034BF330CE1C3008C166BF27F309CD4C41C24 * ___TaskWhenAnyCast_24;
public:
inline static int32_t get_offset_of_s_Factory_23() { return static_cast<int32_t>(offsetof(Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87_StaticFields, ___s_Factory_23)); }
inline TaskFactory_1_t35BBF03CDA9AA94D2BE8CB805D2C764236F56CC7 * get_s_Factory_23() const { return ___s_Factory_23; }
inline TaskFactory_1_t35BBF03CDA9AA94D2BE8CB805D2C764236F56CC7 ** get_address_of_s_Factory_23() { return &___s_Factory_23; }
inline void set_s_Factory_23(TaskFactory_1_t35BBF03CDA9AA94D2BE8CB805D2C764236F56CC7 * value)
{
___s_Factory_23 = value;
Il2CppCodeGenWriteBarrier((&___s_Factory_23), value);
}
inline static int32_t get_offset_of_TaskWhenAnyCast_24() { return static_cast<int32_t>(offsetof(Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87_StaticFields, ___TaskWhenAnyCast_24)); }
inline Func_2_tBCA034BF330CE1C3008C166BF27F309CD4C41C24 * get_TaskWhenAnyCast_24() const { return ___TaskWhenAnyCast_24; }
inline Func_2_tBCA034BF330CE1C3008C166BF27F309CD4C41C24 ** get_address_of_TaskWhenAnyCast_24() { return &___TaskWhenAnyCast_24; }
inline void set_TaskWhenAnyCast_24(Func_2_tBCA034BF330CE1C3008C166BF27F309CD4C41C24 * value)
{
___TaskWhenAnyCast_24 = value;
Il2CppCodeGenWriteBarrier((&___TaskWhenAnyCast_24), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TASK_1_T640F0CBB720BB9CD14B90B7B81624471A9F56D87_H
#ifndef TASK_1_T8906695C9865566AA79419735634FF27AC74506E_H
#define TASK_1_T8906695C9865566AA79419735634FF27AC74506E_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>
struct Task_1_t8906695C9865566AA79419735634FF27AC74506E : public Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2
{
public:
// TResult System.Threading.Tasks.Task`1::m_result
Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB ___m_result_22;
public:
inline static int32_t get_offset_of_m_result_22() { return static_cast<int32_t>(offsetof(Task_1_t8906695C9865566AA79419735634FF27AC74506E, ___m_result_22)); }
inline Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB get_m_result_22() const { return ___m_result_22; }
inline Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * get_address_of_m_result_22() { return &___m_result_22; }
inline void set_m_result_22(Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB value)
{
___m_result_22 = value;
}
};
struct Task_1_t8906695C9865566AA79419735634FF27AC74506E_StaticFields
{
public:
// System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1::s_Factory
TaskFactory_1_tBDEE73CC26733B668E00E1788D332FB0D9CC209E * ___s_Factory_23;
// System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<TResult>> System.Threading.Tasks.Task`1::TaskWhenAnyCast
Func_2_t701CADF8EBD45CB33B018417B83025C3FF39ABA3 * ___TaskWhenAnyCast_24;
public:
inline static int32_t get_offset_of_s_Factory_23() { return static_cast<int32_t>(offsetof(Task_1_t8906695C9865566AA79419735634FF27AC74506E_StaticFields, ___s_Factory_23)); }
inline TaskFactory_1_tBDEE73CC26733B668E00E1788D332FB0D9CC209E * get_s_Factory_23() const { return ___s_Factory_23; }
inline TaskFactory_1_tBDEE73CC26733B668E00E1788D332FB0D9CC209E ** get_address_of_s_Factory_23() { return &___s_Factory_23; }
inline void set_s_Factory_23(TaskFactory_1_tBDEE73CC26733B668E00E1788D332FB0D9CC209E * value)
{
___s_Factory_23 = value;
Il2CppCodeGenWriteBarrier((&___s_Factory_23), value);
}
inline static int32_t get_offset_of_TaskWhenAnyCast_24() { return static_cast<int32_t>(offsetof(Task_1_t8906695C9865566AA79419735634FF27AC74506E_StaticFields, ___TaskWhenAnyCast_24)); }
inline Func_2_t701CADF8EBD45CB33B018417B83025C3FF39ABA3 * get_TaskWhenAnyCast_24() const { return ___TaskWhenAnyCast_24; }
inline Func_2_t701CADF8EBD45CB33B018417B83025C3FF39ABA3 ** get_address_of_TaskWhenAnyCast_24() { return &___TaskWhenAnyCast_24; }
inline void set_TaskWhenAnyCast_24(Func_2_t701CADF8EBD45CB33B018417B83025C3FF39ABA3 * value)
{
___TaskWhenAnyCast_24 = value;
Il2CppCodeGenWriteBarrier((&___TaskWhenAnyCast_24), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TASK_1_T8906695C9865566AA79419735634FF27AC74506E_H
#ifndef TYPE_T_H
#define TYPE_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Type
struct Type_t : public MemberInfo_t
{
public:
// System.RuntimeTypeHandle System.Type::_impl
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ____impl_9;
public:
inline static int32_t get_offset_of__impl_9() { return static_cast<int32_t>(offsetof(Type_t, ____impl_9)); }
inline RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D get__impl_9() const { return ____impl_9; }
inline RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D * get_address_of__impl_9() { return &____impl_9; }
inline void set__impl_9(RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D value)
{
____impl_9 = value;
}
};
struct Type_t_StaticFields
{
public:
// System.Reflection.MemberFilter System.Type::FilterAttribute
MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterAttribute_0;
// System.Reflection.MemberFilter System.Type::FilterName
MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterName_1;
// System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterNameIgnoreCase_2;
// System.Object System.Type::Missing
RuntimeObject * ___Missing_3;
// System.Char System.Type::Delimiter
Il2CppChar ___Delimiter_4;
// System.Type[] System.Type::EmptyTypes
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___EmptyTypes_5;
// System.Reflection.Binder System.Type::defaultBinder
Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * ___defaultBinder_6;
public:
inline static int32_t get_offset_of_FilterAttribute_0() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterAttribute_0)); }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterAttribute_0() const { return ___FilterAttribute_0; }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; }
inline void set_FilterAttribute_0(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value)
{
___FilterAttribute_0 = value;
Il2CppCodeGenWriteBarrier((&___FilterAttribute_0), value);
}
inline static int32_t get_offset_of_FilterName_1() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterName_1)); }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterName_1() const { return ___FilterName_1; }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterName_1() { return &___FilterName_1; }
inline void set_FilterName_1(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value)
{
___FilterName_1 = value;
Il2CppCodeGenWriteBarrier((&___FilterName_1), value);
}
inline static int32_t get_offset_of_FilterNameIgnoreCase_2() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_2)); }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; }
inline void set_FilterNameIgnoreCase_2(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value)
{
___FilterNameIgnoreCase_2 = value;
Il2CppCodeGenWriteBarrier((&___FilterNameIgnoreCase_2), value);
}
inline static int32_t get_offset_of_Missing_3() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Missing_3)); }
inline RuntimeObject * get_Missing_3() const { return ___Missing_3; }
inline RuntimeObject ** get_address_of_Missing_3() { return &___Missing_3; }
inline void set_Missing_3(RuntimeObject * value)
{
___Missing_3 = value;
Il2CppCodeGenWriteBarrier((&___Missing_3), value);
}
inline static int32_t get_offset_of_Delimiter_4() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Delimiter_4)); }
inline Il2CppChar get_Delimiter_4() const { return ___Delimiter_4; }
inline Il2CppChar* get_address_of_Delimiter_4() { return &___Delimiter_4; }
inline void set_Delimiter_4(Il2CppChar value)
{
___Delimiter_4 = value;
}
inline static int32_t get_offset_of_EmptyTypes_5() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___EmptyTypes_5)); }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_EmptyTypes_5() const { return ___EmptyTypes_5; }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; }
inline void set_EmptyTypes_5(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value)
{
___EmptyTypes_5 = value;
Il2CppCodeGenWriteBarrier((&___EmptyTypes_5), value);
}
inline static int32_t get_offset_of_defaultBinder_6() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___defaultBinder_6)); }
inline Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * get_defaultBinder_6() const { return ___defaultBinder_6; }
inline Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; }
inline void set_defaultBinder_6(Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * value)
{
___defaultBinder_6 = value;
Il2CppCodeGenWriteBarrier((&___defaultBinder_6), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TYPE_T_H
#ifndef URIFORMATEXCEPTION_T86B375C9E56DBEE5BD4CC9D71C4C40AE5141808A_H
#define URIFORMATEXCEPTION_T86B375C9E56DBEE5BD4CC9D71C4C40AE5141808A_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.UriFormatException
struct UriFormatException_t86B375C9E56DBEE5BD4CC9D71C4C40AE5141808A : public FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // URIFORMATEXCEPTION_T86B375C9E56DBEE5BD4CC9D71C4C40AE5141808A_H
#ifndef U3CPROCESSOPERATIONU3ED__24_T969904EA513B205F08A3ED1624FE3890853645AA_H
#define U3CPROCESSOPERATIONU3ED__24_T969904EA513B205F08A3ED1624FE3890853645AA_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24
struct U3CProcessOperationU3Ed__24_t969904EA513B205F08A3ED1624FE3890853645AA
{
public:
// System.Int32 Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24::<>t__builder
AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 ___U3CU3Et__builder_1;
// System.Threading.CancellationToken Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24::cancellationToken
CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___cancellationToken_2;
// Mono.Net.Security.AsyncProtocolRequest Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24::<>4__this
AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * ___U3CU3E4__this_3;
// Mono.Net.Security.AsyncOperationStatus Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24::<status>5__1
int32_t ___U3CstatusU3E5__1_4;
// Mono.Net.Security.AsyncOperationStatus Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24::<newStatus>5__2
int32_t ___U3CnewStatusU3E5__2_5;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Nullable`1<System.Int32>> Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24::<>u__1
ConfiguredTaskAwaiter_t7DF2E84988582301369783F2ECA65B4F26D5A740 ___U3CU3Eu__1_6;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24::<>u__2
ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 ___U3CU3Eu__2_7;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CProcessOperationU3Ed__24_t969904EA513B205F08A3ED1624FE3890853645AA, ___U3CU3E1__state_0)); }
inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; }
inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; }
inline void set_U3CU3E1__state_0(int32_t value)
{
___U3CU3E1__state_0 = value;
}
inline static int32_t get_offset_of_U3CU3Et__builder_1() { return static_cast<int32_t>(offsetof(U3CProcessOperationU3Ed__24_t969904EA513B205F08A3ED1624FE3890853645AA, ___U3CU3Et__builder_1)); }
inline AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 get_U3CU3Et__builder_1() const { return ___U3CU3Et__builder_1; }
inline AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 * get_address_of_U3CU3Et__builder_1() { return &___U3CU3Et__builder_1; }
inline void set_U3CU3Et__builder_1(AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 value)
{
___U3CU3Et__builder_1 = value;
}
inline static int32_t get_offset_of_cancellationToken_2() { return static_cast<int32_t>(offsetof(U3CProcessOperationU3Ed__24_t969904EA513B205F08A3ED1624FE3890853645AA, ___cancellationToken_2)); }
inline CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB get_cancellationToken_2() const { return ___cancellationToken_2; }
inline CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB * get_address_of_cancellationToken_2() { return &___cancellationToken_2; }
inline void set_cancellationToken_2(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB value)
{
___cancellationToken_2 = value;
}
inline static int32_t get_offset_of_U3CU3E4__this_3() { return static_cast<int32_t>(offsetof(U3CProcessOperationU3Ed__24_t969904EA513B205F08A3ED1624FE3890853645AA, ___U3CU3E4__this_3)); }
inline AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * get_U3CU3E4__this_3() const { return ___U3CU3E4__this_3; }
inline AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 ** get_address_of_U3CU3E4__this_3() { return &___U3CU3E4__this_3; }
inline void set_U3CU3E4__this_3(AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * value)
{
___U3CU3E4__this_3 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E4__this_3), value);
}
inline static int32_t get_offset_of_U3CstatusU3E5__1_4() { return static_cast<int32_t>(offsetof(U3CProcessOperationU3Ed__24_t969904EA513B205F08A3ED1624FE3890853645AA, ___U3CstatusU3E5__1_4)); }
inline int32_t get_U3CstatusU3E5__1_4() const { return ___U3CstatusU3E5__1_4; }
inline int32_t* get_address_of_U3CstatusU3E5__1_4() { return &___U3CstatusU3E5__1_4; }
inline void set_U3CstatusU3E5__1_4(int32_t value)
{
___U3CstatusU3E5__1_4 = value;
}
inline static int32_t get_offset_of_U3CnewStatusU3E5__2_5() { return static_cast<int32_t>(offsetof(U3CProcessOperationU3Ed__24_t969904EA513B205F08A3ED1624FE3890853645AA, ___U3CnewStatusU3E5__2_5)); }
inline int32_t get_U3CnewStatusU3E5__2_5() const { return ___U3CnewStatusU3E5__2_5; }
inline int32_t* get_address_of_U3CnewStatusU3E5__2_5() { return &___U3CnewStatusU3E5__2_5; }
inline void set_U3CnewStatusU3E5__2_5(int32_t value)
{
___U3CnewStatusU3E5__2_5 = value;
}
inline static int32_t get_offset_of_U3CU3Eu__1_6() { return static_cast<int32_t>(offsetof(U3CProcessOperationU3Ed__24_t969904EA513B205F08A3ED1624FE3890853645AA, ___U3CU3Eu__1_6)); }
inline ConfiguredTaskAwaiter_t7DF2E84988582301369783F2ECA65B4F26D5A740 get_U3CU3Eu__1_6() const { return ___U3CU3Eu__1_6; }
inline ConfiguredTaskAwaiter_t7DF2E84988582301369783F2ECA65B4F26D5A740 * get_address_of_U3CU3Eu__1_6() { return &___U3CU3Eu__1_6; }
inline void set_U3CU3Eu__1_6(ConfiguredTaskAwaiter_t7DF2E84988582301369783F2ECA65B4F26D5A740 value)
{
___U3CU3Eu__1_6 = value;
}
inline static int32_t get_offset_of_U3CU3Eu__2_7() { return static_cast<int32_t>(offsetof(U3CProcessOperationU3Ed__24_t969904EA513B205F08A3ED1624FE3890853645AA, ___U3CU3Eu__2_7)); }
inline ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 get_U3CU3Eu__2_7() const { return ___U3CU3Eu__2_7; }
inline ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 * get_address_of_U3CU3Eu__2_7() { return &___U3CU3Eu__2_7; }
inline void set_U3CU3Eu__2_7(ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 value)
{
___U3CU3Eu__2_7 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CPROCESSOPERATIONU3ED__24_T969904EA513B205F08A3ED1624FE3890853645AA_H
#ifndef U3CINNERWRITEU3ED__67_TCEBE4678B01EBC181A242F16C978B7A71367AF43_H
#define U3CINNERWRITEU3ED__67_TCEBE4678B01EBC181A242F16C978B7A71367AF43_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67
struct U3CInnerWriteU3Ed__67_tCEBE4678B01EBC181A242F16C978B7A71367AF43
{
public:
// System.Int32 Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67::<>1__state
int32_t ___U3CU3E1__state_0;
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67::<>t__builder
AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 ___U3CU3Et__builder_1;
// System.Threading.CancellationToken Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67::cancellationToken
CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___cancellationToken_2;
// Mono.Net.Security.MobileAuthenticatedStream Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67::<>4__this
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * ___U3CU3E4__this_3;
// System.Boolean Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67::sync
bool ___sync_4;
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67::<>u__1
ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 ___U3CU3Eu__1_5;
public:
inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast<int32_t>(offsetof(U3CInnerWriteU3Ed__67_tCEBE4678B01EBC181A242F16C978B7A71367AF43, ___U3CU3E1__state_0)); }
inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; }
inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; }
inline void set_U3CU3E1__state_0(int32_t value)
{
___U3CU3E1__state_0 = value;
}
inline static int32_t get_offset_of_U3CU3Et__builder_1() { return static_cast<int32_t>(offsetof(U3CInnerWriteU3Ed__67_tCEBE4678B01EBC181A242F16C978B7A71367AF43, ___U3CU3Et__builder_1)); }
inline AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 get_U3CU3Et__builder_1() const { return ___U3CU3Et__builder_1; }
inline AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 * get_address_of_U3CU3Et__builder_1() { return &___U3CU3Et__builder_1; }
inline void set_U3CU3Et__builder_1(AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 value)
{
___U3CU3Et__builder_1 = value;
}
inline static int32_t get_offset_of_cancellationToken_2() { return static_cast<int32_t>(offsetof(U3CInnerWriteU3Ed__67_tCEBE4678B01EBC181A242F16C978B7A71367AF43, ___cancellationToken_2)); }
inline CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB get_cancellationToken_2() const { return ___cancellationToken_2; }
inline CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB * get_address_of_cancellationToken_2() { return &___cancellationToken_2; }
inline void set_cancellationToken_2(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB value)
{
___cancellationToken_2 = value;
}
inline static int32_t get_offset_of_U3CU3E4__this_3() { return static_cast<int32_t>(offsetof(U3CInnerWriteU3Ed__67_tCEBE4678B01EBC181A242F16C978B7A71367AF43, ___U3CU3E4__this_3)); }
inline MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * get_U3CU3E4__this_3() const { return ___U3CU3E4__this_3; }
inline MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 ** get_address_of_U3CU3E4__this_3() { return &___U3CU3E4__this_3; }
inline void set_U3CU3E4__this_3(MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * value)
{
___U3CU3E4__this_3 = value;
Il2CppCodeGenWriteBarrier((&___U3CU3E4__this_3), value);
}
inline static int32_t get_offset_of_sync_4() { return static_cast<int32_t>(offsetof(U3CInnerWriteU3Ed__67_tCEBE4678B01EBC181A242F16C978B7A71367AF43, ___sync_4)); }
inline bool get_sync_4() const { return ___sync_4; }
inline bool* get_address_of_sync_4() { return &___sync_4; }
inline void set_sync_4(bool value)
{
___sync_4 = value;
}
inline static int32_t get_offset_of_U3CU3Eu__1_5() { return static_cast<int32_t>(offsetof(U3CInnerWriteU3Ed__67_tCEBE4678B01EBC181A242F16C978B7A71367AF43, ___U3CU3Eu__1_5)); }
inline ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 get_U3CU3Eu__1_5() const { return ___U3CU3Eu__1_5; }
inline ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 * get_address_of_U3CU3Eu__1_5() { return &___U3CU3Eu__1_5; }
inline void set_U3CU3Eu__1_5(ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 value)
{
___U3CU3Eu__1_5 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // U3CINNERWRITEU3ED__67_TCEBE4678B01EBC181A242F16C978B7A71367AF43_H
#ifndef UNITYTLS_INTERFACE_STRUCT_T0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF_H
#define UNITYTLS_INTERFACE_STRUCT_T0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_interface_struct
struct unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF : public RuntimeObject
{
public:
// System.UInt64 Mono.Unity.UnityTls/unitytls_interface_struct::UNITYTLS_INVALID_HANDLE
uint64_t ___UNITYTLS_INVALID_HANDLE_0;
// Mono.Unity.UnityTls/unitytls_tlsctx_protocolrange Mono.Unity.UnityTls/unitytls_interface_struct::UNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT
unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47 ___UNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT_1;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_errorstate_create_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_errorstate_create
unitytls_errorstate_create_t_t104BADBBE1265BD1A3F84C153EB7A67CDDBF35A9 * ___unitytls_errorstate_create_2;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_errorstate_raise_error_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_errorstate_raise_error
unitytls_errorstate_raise_error_t_tC441A37D4A6F1BAC1AFCA0108D4F7570EFF9E0D1 * ___unitytls_errorstate_raise_error_3;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_key_get_ref_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_key_get_ref
unitytls_key_get_ref_t_t2F4EF4CD2F6AFC4F2D166953E834C6F0A13382A7 * ___unitytls_key_get_ref_4;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_key_parse_der_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_key_parse_der
unitytls_key_parse_der_t_t2ABD1C146C8B9405F6E5A78CD59A779EA607741B * ___unitytls_key_parse_der_5;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_key_parse_pem_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_key_parse_pem
unitytls_key_parse_pem_t_tB4BCEBA4194442C8C85FA19E80B808D0EDA462AB * ___unitytls_key_parse_pem_6;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_key_free_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_key_free
unitytls_key_free_t_tCC7AD95D3B758BB99785645E65EDCD65A1D243AB * ___unitytls_key_free_7;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509_export_der_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_x509_export_der
unitytls_x509_export_der_t_tB0D0A02DE7E75757AFCA780298BF95467BF82856 * ___unitytls_x509_export_der_8;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_get_ref_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_x509list_get_ref
unitytls_x509list_get_ref_t_t1FAB0CD82E536E0C9EB5255B145FC5AF434B3986 * ___unitytls_x509list_get_ref_9;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_get_x509_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_x509list_get_x509
unitytls_x509list_get_x509_t_t028BB06EEB95E8F62511F2301B90D8181F4FFDB5 * ___unitytls_x509list_get_x509_10;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_create_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_x509list_create
unitytls_x509list_create_t_tC040C2CF47D5426B7F6B1D6A2751507DC681CFF3 * ___unitytls_x509list_create_11;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_append_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_x509list_append
unitytls_x509list_append_t_tAB1C185C77DFD6BD96DF7909370AA1FAD6BB90AF * ___unitytls_x509list_append_12;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_append_der_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_x509list_append_der
unitytls_x509list_append_der_t_tDA1C93A382058FB563F8772B119D5B598DC37A5C * ___unitytls_x509list_append_der_13;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_append_der_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_x509list_append_pem
unitytls_x509list_append_der_t_tDA1C93A382058FB563F8772B119D5B598DC37A5C * ___unitytls_x509list_append_pem_14;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_free_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_x509list_free
unitytls_x509list_free_t_tE3FC523507F07BD9901D84E9F6968CD8A583FF09 * ___unitytls_x509list_free_15;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509verify_default_ca_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_x509verify_default_ca
unitytls_x509verify_default_ca_t_t4BACB6B49AA85C025AF9B18B3F30F63C9881DE2D * ___unitytls_x509verify_default_ca_16;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509verify_explicit_ca_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_x509verify_explicit_ca
unitytls_x509verify_explicit_ca_t_t6C8BE964C5EE9B24D3734F028EFCD83F5893D2E6 * ___unitytls_x509verify_explicit_ca_17;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_create_server_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_tlsctx_create_server
unitytls_tlsctx_create_server_t_t6E7812D40DDD91958E3CFBB92B5F5748D477E19D * ___unitytls_tlsctx_create_server_18;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_create_client_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_tlsctx_create_client
unitytls_tlsctx_create_client_t_tD9DFBDB5559983F0E11A67FA92E0F7182114C8F2 * ___unitytls_tlsctx_create_client_19;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_server_require_client_authentication_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_tlsctx_server_require_client_authentication
unitytls_tlsctx_server_require_client_authentication_t_t77B3CAFF25690A45405E3C957E40CC4FF83B49C6 * ___unitytls_tlsctx_server_require_client_authentication_20;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_set_certificate_callback_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_tlsctx_set_certificate_callback
unitytls_tlsctx_set_certificate_callback_t_tC4864FE0F6A3398A572F2511AA64C72126640937 * ___unitytls_tlsctx_set_certificate_callback_21;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_set_trace_callback_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_tlsctx_set_trace_callback
unitytls_tlsctx_set_trace_callback_t_tA11F424F68D297B6FD2B2EA26C6764F80146662A * ___unitytls_tlsctx_set_trace_callback_22;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_set_x509verify_callback_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_tlsctx_set_x509verify_callback
unitytls_tlsctx_set_x509verify_callback_t_t34EEB7BA38CA2C86F847416785ADB22BC4A04F4B * ___unitytls_tlsctx_set_x509verify_callback_23;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_set_supported_ciphersuites_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_tlsctx_set_supported_ciphersuites
unitytls_tlsctx_set_supported_ciphersuites_t_t6914054EA0F7A59C8A4ED4B9CDD5AF143F7D8BFE * ___unitytls_tlsctx_set_supported_ciphersuites_24;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_get_ciphersuite_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_tlsctx_get_ciphersuite
unitytls_tlsctx_get_ciphersuite_t_t94A91CB42A2EBB2CC598EF3E278770AFD80696A0 * ___unitytls_tlsctx_get_ciphersuite_25;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_get_protocol_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_tlsctx_get_protocol
unitytls_tlsctx_get_protocol_t_tB29092875D3CBD25E4461BFD165B5373FA54DB14 * ___unitytls_tlsctx_get_protocol_26;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_process_handshake_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_tlsctx_process_handshake
unitytls_tlsctx_process_handshake_t_tC8AAF317CBE4CA216F22BF031ECF89315B963C9D * ___unitytls_tlsctx_process_handshake_27;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_read_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_tlsctx_read
unitytls_tlsctx_read_t_tA8D1209D5F488E02F826EE2362F5AA61C8FF2EE2 * ___unitytls_tlsctx_read_28;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_write_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_tlsctx_write
unitytls_tlsctx_write_t_t0B4A49BBA592FE4EC0630B490463AE116AF07C9C * ___unitytls_tlsctx_write_29;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_notify_close_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_tlsctx_notify_close
unitytls_tlsctx_notify_close_t_t2FC4C08BACF1AEA509ABCAF3B22475E196E74A0D * ___unitytls_tlsctx_notify_close_30;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_free_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_tlsctx_free
unitytls_tlsctx_free_t_tB27A3B6F9D1B784ABE082849EAB6B81F51FAC8E2 * ___unitytls_tlsctx_free_31;
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_random_generate_bytes_t Mono.Unity.UnityTls/unitytls_interface_struct::unitytls_random_generate_bytes
unitytls_random_generate_bytes_t_t494B8599A6D4247BB0C8AB7341DDC73BE42623F7 * ___unitytls_random_generate_bytes_32;
public:
inline static int32_t get_offset_of_UNITYTLS_INVALID_HANDLE_0() { return static_cast<int32_t>(offsetof(unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF, ___UNITYTLS_INVALID_HANDLE_0)); }
inline uint64_t get_UNITYTLS_INVALID_HANDLE_0() const { return ___UNITYTLS_INVALID_HANDLE_0; }
inline uint64_t* get_address_of_UNITYTLS_INVALID_HANDLE_0() { return &___UNITYTLS_INVALID_HANDLE_0; }
inline void set_UNITYTLS_INVALID_HANDLE_0(uint64_t value)
{
___UNITYTLS_INVALID_HANDLE_0 = value;
}
inline static int32_t get_offset_of_UNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT_1() { return static_cast<int32_t>(offsetof(unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF, ___UNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT_1)); }
inline unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47 get_UNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT_1() const { return ___UNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT_1; }
inline unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47 * get_address_of_UNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT_1() { return &___UNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT_1; }
inline void set_UNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT_1(unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47 value)
{
___UNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT_1 = value;
}
inline static int32_t get_offset_of_unitytls_errorstate_create_2() { return static_cast<int32_t>(offsetof(unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF, ___unitytls_errorstate_create_2)); }
inline unitytls_errorstate_create_t_t104BADBBE1265BD1A3F84C153EB7A67CDDBF35A9 * get_unitytls_errorstate_create_2() const { return ___unitytls_errorstate_create_2; }
inline unitytls_errorstate_create_t_t104BADBBE1265BD1A3F84C153EB7A67CDDBF35A9 ** get_address_of_unitytls_errorstate_create_2() { return &___unitytls_errorstate_create_2; }
inline void set_unitytls_errorstate_create_2(unitytls_errorstate_create_t_t104BADBBE1265BD1A3F84C153EB7A67CDDBF35A9 * value)
{
___unitytls_errorstate_create_2 = value;
Il2CppCodeGenWriteBarrier((&___unitytls_errorstate_create_2), value);
}
inline static int32_t get_offset_of_unitytls_errorstate_raise_error_3() { return static_cast<int32_t>(offsetof(unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF, ___unitytls_errorstate_raise_error_3)); }
inline unitytls_errorstate_raise_error_t_tC441A37D4A6F1BAC1AFCA0108D4F7570EFF9E0D1 * get_unitytls_errorstate_raise_error_3() const { return ___unitytls_errorstate_raise_error_3; }
inline unitytls_errorstate_raise_error_t_tC441A37D4A6F1BAC1AFCA0108D4F7570EFF9E0D1 ** get_address_of_unitytls_errorstate_raise_error_3() { return &___unitytls_errorstate_raise_error_3; }
inline void set_unitytls_errorstate_raise_error_3(unitytls_errorstate_raise_error_t_tC441A37D4A6F1BAC1AFCA0108D4F7570EFF9E0D1 * value)
{
___unitytls_errorstate_raise_error_3 = value;
Il2CppCodeGenWriteBarrier((&___unitytls_errorstate_raise_error_3), value);
}
inline static int32_t get_offset_of_unitytls_key_get_ref_4() { return static_cast<int32_t>(offsetof(unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF, ___unitytls_key_get_ref_4)); }
inline unitytls_key_get_ref_t_t2F4EF4CD2F6AFC4F2D166953E834C6F0A13382A7 * get_unitytls_key_get_ref_4() const { return ___unitytls_key_get_ref_4; }
inline unitytls_key_get_ref_t_t2F4EF4CD2F6AFC4F2D166953E834C6F0A13382A7 ** get_address_of_unitytls_key_get_ref_4() { return &___unitytls_key_get_ref_4; }
inline void set_unitytls_key_get_ref_4(unitytls_key_get_ref_t_t2F4EF4CD2F6AFC4F2D166953E834C6F0A13382A7 * value)
{
___unitytls_key_get_ref_4 = value;
Il2CppCodeGenWriteBarrier((&___unitytls_key_get_ref_4), value);
}
inline static int32_t get_offset_of_unitytls_key_parse_der_5() { return static_cast<int32_t>(offsetof(unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF, ___unitytls_key_parse_der_5)); }
inline unitytls_key_parse_der_t_t2ABD1C146C8B9405F6E5A78CD59A779EA607741B * get_unitytls_key_parse_der_5() const { return ___unitytls_key_parse_der_5; }
inline unitytls_key_parse_der_t_t2ABD1C146C8B9405F6E5A78CD59A779EA607741B ** get_address_of_unitytls_key_parse_der_5() { return &___unitytls_key_parse_der_5; }
inline void set_unitytls_key_parse_der_5(unitytls_key_parse_der_t_t2ABD1C146C8B9405F6E5A78CD59A779EA607741B * value)
{
___unitytls_key_parse_der_5 = value;
Il2CppCodeGenWriteBarrier((&___unitytls_key_parse_der_5), value);
}
inline static int32_t get_offset_of_unitytls_key_parse_pem_6() { return static_cast<int32_t>(offsetof(unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF, ___unitytls_key_parse_pem_6)); }
inline unitytls_key_parse_pem_t_tB4BCEBA4194442C8C85FA19E80B808D0EDA462AB * get_unitytls_key_parse_pem_6() const { return ___unitytls_key_parse_pem_6; }
inline unitytls_key_parse_pem_t_tB4BCEBA4194442C8C85FA19E80B808D0EDA462AB ** get_address_of_unitytls_key_parse_pem_6() { return &___unitytls_key_parse_pem_6; }
inline void set_unitytls_key_parse_pem_6(unitytls_key_parse_pem_t_tB4BCEBA4194442C8C85FA19E80B808D0EDA462AB * value)
{
___unitytls_key_parse_pem_6 = value;
Il2CppCodeGenWriteBarrier((&___unitytls_key_parse_pem_6), value);
}
inline static int32_t get_offset_of_unitytls_key_free_7() { return static_cast<int32_t>(offsetof(unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF, ___unitytls_key_free_7)); }
inline unitytls_key_free_t_tCC7AD95D3B758BB99785645E65EDCD65A1D243AB * get_unitytls_key_free_7() const { return ___unitytls_key_free_7; }
inline unitytls_key_free_t_tCC7AD95D3B758BB99785645E65EDCD65A1D243AB ** get_address_of_unitytls_key_free_7() { return &___unitytls_key_free_7; }
inline void set_unitytls_key_free_7(unitytls_key_free_t_tCC7AD95D3B758BB99785645E65EDCD65A1D243AB * value)
{
___unitytls_key_free_7 = value;
Il2CppCodeGenWriteBarrier((&___unitytls_key_free_7), value);
}
inline static int32_t get_offset_of_unitytls_x509_export_der_8() { return static_cast<int32_t>(offsetof(unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF, ___unitytls_x509_export_der_8)); }
inline unitytls_x509_export_der_t_tB0D0A02DE7E75757AFCA780298BF95467BF82856 * get_unitytls_x509_export_der_8() const { return ___unitytls_x509_export_der_8; }
inline unitytls_x509_export_der_t_tB0D0A02DE7E75757AFCA780298BF95467BF82856 ** get_address_of_unitytls_x509_export_der_8() { return &___unitytls_x509_export_der_8; }
inline void set_unitytls_x509_export_der_8(unitytls_x509_export_der_t_tB0D0A02DE7E75757AFCA780298BF95467BF82856 * value)
{
___unitytls_x509_export_der_8 = value;
Il2CppCodeGenWriteBarrier((&___unitytls_x509_export_der_8), value);
}
inline static int32_t get_offset_of_unitytls_x509list_get_ref_9() { return static_cast<int32_t>(offsetof(unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF, ___unitytls_x509list_get_ref_9)); }
inline unitytls_x509list_get_ref_t_t1FAB0CD82E536E0C9EB5255B145FC5AF434B3986 * get_unitytls_x509list_get_ref_9() const { return ___unitytls_x509list_get_ref_9; }
inline unitytls_x509list_get_ref_t_t1FAB0CD82E536E0C9EB5255B145FC5AF434B3986 ** get_address_of_unitytls_x509list_get_ref_9() { return &___unitytls_x509list_get_ref_9; }
inline void set_unitytls_x509list_get_ref_9(unitytls_x509list_get_ref_t_t1FAB0CD82E536E0C9EB5255B145FC5AF434B3986 * value)
{
___unitytls_x509list_get_ref_9 = value;
Il2CppCodeGenWriteBarrier((&___unitytls_x509list_get_ref_9), value);
}
inline static int32_t get_offset_of_unitytls_x509list_get_x509_10() { return static_cast<int32_t>(offsetof(unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF, ___unitytls_x509list_get_x509_10)); }
inline unitytls_x509list_get_x509_t_t028BB06EEB95E8F62511F2301B90D8181F4FFDB5 * get_unitytls_x509list_get_x509_10() const { return ___unitytls_x509list_get_x509_10; }
inline unitytls_x509list_get_x509_t_t028BB06EEB95E8F62511F2301B90D8181F4FFDB5 ** get_address_of_unitytls_x509list_get_x509_10() { return &___unitytls_x509list_get_x509_10; }
inline void set_unitytls_x509list_get_x509_10(unitytls_x509list_get_x509_t_t028BB06EEB95E8F62511F2301B90D8181F4FFDB5 * value)
{
___unitytls_x509list_get_x509_10 = value;
Il2CppCodeGenWriteBarrier((&___unitytls_x509list_get_x509_10), value);
}
inline static int32_t get_offset_of_unitytls_x509list_create_11() { return static_cast<int32_t>(offsetof(unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF, ___unitytls_x509list_create_11)); }
inline unitytls_x509list_create_t_tC040C2CF47D5426B7F6B1D6A2751507DC681CFF3 * get_unitytls_x509list_create_11() const { return ___unitytls_x509list_create_11; }
inline unitytls_x509list_create_t_tC040C2CF47D5426B7F6B1D6A2751507DC681CFF3 ** get_address_of_unitytls_x509list_create_11() { return &___unitytls_x509list_create_11; }
inline void set_unitytls_x509list_create_11(unitytls_x509list_create_t_tC040C2CF47D5426B7F6B1D6A2751507DC681CFF3 * value)
{
___unitytls_x509list_create_11 = value;
Il2CppCodeGenWriteBarrier((&___unitytls_x509list_create_11), value);
}
inline static int32_t get_offset_of_unitytls_x509list_append_12() { return static_cast<int32_t>(offsetof(unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF, ___unitytls_x509list_append_12)); }
inline unitytls_x509list_append_t_tAB1C185C77DFD6BD96DF7909370AA1FAD6BB90AF * get_unitytls_x509list_append_12() const { return ___unitytls_x509list_append_12; }
inline unitytls_x509list_append_t_tAB1C185C77DFD6BD96DF7909370AA1FAD6BB90AF ** get_address_of_unitytls_x509list_append_12() { return &___unitytls_x509list_append_12; }
inline void set_unitytls_x509list_append_12(unitytls_x509list_append_t_tAB1C185C77DFD6BD96DF7909370AA1FAD6BB90AF * value)
{
___unitytls_x509list_append_12 = value;
Il2CppCodeGenWriteBarrier((&___unitytls_x509list_append_12), value);
}
inline static int32_t get_offset_of_unitytls_x509list_append_der_13() { return static_cast<int32_t>(offsetof(unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF, ___unitytls_x509list_append_der_13)); }
inline unitytls_x509list_append_der_t_tDA1C93A382058FB563F8772B119D5B598DC37A5C * get_unitytls_x509list_append_der_13() const { return ___unitytls_x509list_append_der_13; }
inline unitytls_x509list_append_der_t_tDA1C93A382058FB563F8772B119D5B598DC37A5C ** get_address_of_unitytls_x509list_append_der_13() { return &___unitytls_x509list_append_der_13; }
inline void set_unitytls_x509list_append_der_13(unitytls_x509list_append_der_t_tDA1C93A382058FB563F8772B119D5B598DC37A5C * value)
{
___unitytls_x509list_append_der_13 = value;
Il2CppCodeGenWriteBarrier((&___unitytls_x509list_append_der_13), value);
}
inline static int32_t get_offset_of_unitytls_x509list_append_pem_14() { return static_cast<int32_t>(offsetof(unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF, ___unitytls_x509list_append_pem_14)); }
inline unitytls_x509list_append_der_t_tDA1C93A382058FB563F8772B119D5B598DC37A5C * get_unitytls_x509list_append_pem_14() const { return ___unitytls_x509list_append_pem_14; }
inline unitytls_x509list_append_der_t_tDA1C93A382058FB563F8772B119D5B598DC37A5C ** get_address_of_unitytls_x509list_append_pem_14() { return &___unitytls_x509list_append_pem_14; }
inline void set_unitytls_x509list_append_pem_14(unitytls_x509list_append_der_t_tDA1C93A382058FB563F8772B119D5B598DC37A5C * value)
{
___unitytls_x509list_append_pem_14 = value;
Il2CppCodeGenWriteBarrier((&___unitytls_x509list_append_pem_14), value);
}
inline static int32_t get_offset_of_unitytls_x509list_free_15() { return static_cast<int32_t>(offsetof(unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF, ___unitytls_x509list_free_15)); }
inline unitytls_x509list_free_t_tE3FC523507F07BD9901D84E9F6968CD8A583FF09 * get_unitytls_x509list_free_15() const { return ___unitytls_x509list_free_15; }
inline unitytls_x509list_free_t_tE3FC523507F07BD9901D84E9F6968CD8A583FF09 ** get_address_of_unitytls_x509list_free_15() { return &___unitytls_x509list_free_15; }
inline void set_unitytls_x509list_free_15(unitytls_x509list_free_t_tE3FC523507F07BD9901D84E9F6968CD8A583FF09 * value)
{
___unitytls_x509list_free_15 = value;
Il2CppCodeGenWriteBarrier((&___unitytls_x509list_free_15), value);
}
inline static int32_t get_offset_of_unitytls_x509verify_default_ca_16() { return static_cast<int32_t>(offsetof(unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF, ___unitytls_x509verify_default_ca_16)); }
inline unitytls_x509verify_default_ca_t_t4BACB6B49AA85C025AF9B18B3F30F63C9881DE2D * get_unitytls_x509verify_default_ca_16() const { return ___unitytls_x509verify_default_ca_16; }
inline unitytls_x509verify_default_ca_t_t4BACB6B49AA85C025AF9B18B3F30F63C9881DE2D ** get_address_of_unitytls_x509verify_default_ca_16() { return &___unitytls_x509verify_default_ca_16; }
inline void set_unitytls_x509verify_default_ca_16(unitytls_x509verify_default_ca_t_t4BACB6B49AA85C025AF9B18B3F30F63C9881DE2D * value)
{
___unitytls_x509verify_default_ca_16 = value;
Il2CppCodeGenWriteBarrier((&___unitytls_x509verify_default_ca_16), value);
}
inline static int32_t get_offset_of_unitytls_x509verify_explicit_ca_17() { return static_cast<int32_t>(offsetof(unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF, ___unitytls_x509verify_explicit_ca_17)); }
inline unitytls_x509verify_explicit_ca_t_t6C8BE964C5EE9B24D3734F028EFCD83F5893D2E6 * get_unitytls_x509verify_explicit_ca_17() const { return ___unitytls_x509verify_explicit_ca_17; }
inline unitytls_x509verify_explicit_ca_t_t6C8BE964C5EE9B24D3734F028EFCD83F5893D2E6 ** get_address_of_unitytls_x509verify_explicit_ca_17() { return &___unitytls_x509verify_explicit_ca_17; }
inline void set_unitytls_x509verify_explicit_ca_17(unitytls_x509verify_explicit_ca_t_t6C8BE964C5EE9B24D3734F028EFCD83F5893D2E6 * value)
{
___unitytls_x509verify_explicit_ca_17 = value;
Il2CppCodeGenWriteBarrier((&___unitytls_x509verify_explicit_ca_17), value);
}
inline static int32_t get_offset_of_unitytls_tlsctx_create_server_18() { return static_cast<int32_t>(offsetof(unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF, ___unitytls_tlsctx_create_server_18)); }
inline unitytls_tlsctx_create_server_t_t6E7812D40DDD91958E3CFBB92B5F5748D477E19D * get_unitytls_tlsctx_create_server_18() const { return ___unitytls_tlsctx_create_server_18; }
inline unitytls_tlsctx_create_server_t_t6E7812D40DDD91958E3CFBB92B5F5748D477E19D ** get_address_of_unitytls_tlsctx_create_server_18() { return &___unitytls_tlsctx_create_server_18; }
inline void set_unitytls_tlsctx_create_server_18(unitytls_tlsctx_create_server_t_t6E7812D40DDD91958E3CFBB92B5F5748D477E19D * value)
{
___unitytls_tlsctx_create_server_18 = value;
Il2CppCodeGenWriteBarrier((&___unitytls_tlsctx_create_server_18), value);
}
inline static int32_t get_offset_of_unitytls_tlsctx_create_client_19() { return static_cast<int32_t>(offsetof(unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF, ___unitytls_tlsctx_create_client_19)); }
inline unitytls_tlsctx_create_client_t_tD9DFBDB5559983F0E11A67FA92E0F7182114C8F2 * get_unitytls_tlsctx_create_client_19() const { return ___unitytls_tlsctx_create_client_19; }
inline unitytls_tlsctx_create_client_t_tD9DFBDB5559983F0E11A67FA92E0F7182114C8F2 ** get_address_of_unitytls_tlsctx_create_client_19() { return &___unitytls_tlsctx_create_client_19; }
inline void set_unitytls_tlsctx_create_client_19(unitytls_tlsctx_create_client_t_tD9DFBDB5559983F0E11A67FA92E0F7182114C8F2 * value)
{
___unitytls_tlsctx_create_client_19 = value;
Il2CppCodeGenWriteBarrier((&___unitytls_tlsctx_create_client_19), value);
}
inline static int32_t get_offset_of_unitytls_tlsctx_server_require_client_authentication_20() { return static_cast<int32_t>(offsetof(unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF, ___unitytls_tlsctx_server_require_client_authentication_20)); }
inline unitytls_tlsctx_server_require_client_authentication_t_t77B3CAFF25690A45405E3C957E40CC4FF83B49C6 * get_unitytls_tlsctx_server_require_client_authentication_20() const { return ___unitytls_tlsctx_server_require_client_authentication_20; }
inline unitytls_tlsctx_server_require_client_authentication_t_t77B3CAFF25690A45405E3C957E40CC4FF83B49C6 ** get_address_of_unitytls_tlsctx_server_require_client_authentication_20() { return &___unitytls_tlsctx_server_require_client_authentication_20; }
inline void set_unitytls_tlsctx_server_require_client_authentication_20(unitytls_tlsctx_server_require_client_authentication_t_t77B3CAFF25690A45405E3C957E40CC4FF83B49C6 * value)
{
___unitytls_tlsctx_server_require_client_authentication_20 = value;
Il2CppCodeGenWriteBarrier((&___unitytls_tlsctx_server_require_client_authentication_20), value);
}
inline static int32_t get_offset_of_unitytls_tlsctx_set_certificate_callback_21() { return static_cast<int32_t>(offsetof(unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF, ___unitytls_tlsctx_set_certificate_callback_21)); }
inline unitytls_tlsctx_set_certificate_callback_t_tC4864FE0F6A3398A572F2511AA64C72126640937 * get_unitytls_tlsctx_set_certificate_callback_21() const { return ___unitytls_tlsctx_set_certificate_callback_21; }
inline unitytls_tlsctx_set_certificate_callback_t_tC4864FE0F6A3398A572F2511AA64C72126640937 ** get_address_of_unitytls_tlsctx_set_certificate_callback_21() { return &___unitytls_tlsctx_set_certificate_callback_21; }
inline void set_unitytls_tlsctx_set_certificate_callback_21(unitytls_tlsctx_set_certificate_callback_t_tC4864FE0F6A3398A572F2511AA64C72126640937 * value)
{
___unitytls_tlsctx_set_certificate_callback_21 = value;
Il2CppCodeGenWriteBarrier((&___unitytls_tlsctx_set_certificate_callback_21), value);
}
inline static int32_t get_offset_of_unitytls_tlsctx_set_trace_callback_22() { return static_cast<int32_t>(offsetof(unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF, ___unitytls_tlsctx_set_trace_callback_22)); }
inline unitytls_tlsctx_set_trace_callback_t_tA11F424F68D297B6FD2B2EA26C6764F80146662A * get_unitytls_tlsctx_set_trace_callback_22() const { return ___unitytls_tlsctx_set_trace_callback_22; }
inline unitytls_tlsctx_set_trace_callback_t_tA11F424F68D297B6FD2B2EA26C6764F80146662A ** get_address_of_unitytls_tlsctx_set_trace_callback_22() { return &___unitytls_tlsctx_set_trace_callback_22; }
inline void set_unitytls_tlsctx_set_trace_callback_22(unitytls_tlsctx_set_trace_callback_t_tA11F424F68D297B6FD2B2EA26C6764F80146662A * value)
{
___unitytls_tlsctx_set_trace_callback_22 = value;
Il2CppCodeGenWriteBarrier((&___unitytls_tlsctx_set_trace_callback_22), value);
}
inline static int32_t get_offset_of_unitytls_tlsctx_set_x509verify_callback_23() { return static_cast<int32_t>(offsetof(unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF, ___unitytls_tlsctx_set_x509verify_callback_23)); }
inline unitytls_tlsctx_set_x509verify_callback_t_t34EEB7BA38CA2C86F847416785ADB22BC4A04F4B * get_unitytls_tlsctx_set_x509verify_callback_23() const { return ___unitytls_tlsctx_set_x509verify_callback_23; }
inline unitytls_tlsctx_set_x509verify_callback_t_t34EEB7BA38CA2C86F847416785ADB22BC4A04F4B ** get_address_of_unitytls_tlsctx_set_x509verify_callback_23() { return &___unitytls_tlsctx_set_x509verify_callback_23; }
inline void set_unitytls_tlsctx_set_x509verify_callback_23(unitytls_tlsctx_set_x509verify_callback_t_t34EEB7BA38CA2C86F847416785ADB22BC4A04F4B * value)
{
___unitytls_tlsctx_set_x509verify_callback_23 = value;
Il2CppCodeGenWriteBarrier((&___unitytls_tlsctx_set_x509verify_callback_23), value);
}
inline static int32_t get_offset_of_unitytls_tlsctx_set_supported_ciphersuites_24() { return static_cast<int32_t>(offsetof(unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF, ___unitytls_tlsctx_set_supported_ciphersuites_24)); }
inline unitytls_tlsctx_set_supported_ciphersuites_t_t6914054EA0F7A59C8A4ED4B9CDD5AF143F7D8BFE * get_unitytls_tlsctx_set_supported_ciphersuites_24() const { return ___unitytls_tlsctx_set_supported_ciphersuites_24; }
inline unitytls_tlsctx_set_supported_ciphersuites_t_t6914054EA0F7A59C8A4ED4B9CDD5AF143F7D8BFE ** get_address_of_unitytls_tlsctx_set_supported_ciphersuites_24() { return &___unitytls_tlsctx_set_supported_ciphersuites_24; }
inline void set_unitytls_tlsctx_set_supported_ciphersuites_24(unitytls_tlsctx_set_supported_ciphersuites_t_t6914054EA0F7A59C8A4ED4B9CDD5AF143F7D8BFE * value)
{
___unitytls_tlsctx_set_supported_ciphersuites_24 = value;
Il2CppCodeGenWriteBarrier((&___unitytls_tlsctx_set_supported_ciphersuites_24), value);
}
inline static int32_t get_offset_of_unitytls_tlsctx_get_ciphersuite_25() { return static_cast<int32_t>(offsetof(unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF, ___unitytls_tlsctx_get_ciphersuite_25)); }
inline unitytls_tlsctx_get_ciphersuite_t_t94A91CB42A2EBB2CC598EF3E278770AFD80696A0 * get_unitytls_tlsctx_get_ciphersuite_25() const { return ___unitytls_tlsctx_get_ciphersuite_25; }
inline unitytls_tlsctx_get_ciphersuite_t_t94A91CB42A2EBB2CC598EF3E278770AFD80696A0 ** get_address_of_unitytls_tlsctx_get_ciphersuite_25() { return &___unitytls_tlsctx_get_ciphersuite_25; }
inline void set_unitytls_tlsctx_get_ciphersuite_25(unitytls_tlsctx_get_ciphersuite_t_t94A91CB42A2EBB2CC598EF3E278770AFD80696A0 * value)
{
___unitytls_tlsctx_get_ciphersuite_25 = value;
Il2CppCodeGenWriteBarrier((&___unitytls_tlsctx_get_ciphersuite_25), value);
}
inline static int32_t get_offset_of_unitytls_tlsctx_get_protocol_26() { return static_cast<int32_t>(offsetof(unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF, ___unitytls_tlsctx_get_protocol_26)); }
inline unitytls_tlsctx_get_protocol_t_tB29092875D3CBD25E4461BFD165B5373FA54DB14 * get_unitytls_tlsctx_get_protocol_26() const { return ___unitytls_tlsctx_get_protocol_26; }
inline unitytls_tlsctx_get_protocol_t_tB29092875D3CBD25E4461BFD165B5373FA54DB14 ** get_address_of_unitytls_tlsctx_get_protocol_26() { return &___unitytls_tlsctx_get_protocol_26; }
inline void set_unitytls_tlsctx_get_protocol_26(unitytls_tlsctx_get_protocol_t_tB29092875D3CBD25E4461BFD165B5373FA54DB14 * value)
{
___unitytls_tlsctx_get_protocol_26 = value;
Il2CppCodeGenWriteBarrier((&___unitytls_tlsctx_get_protocol_26), value);
}
inline static int32_t get_offset_of_unitytls_tlsctx_process_handshake_27() { return static_cast<int32_t>(offsetof(unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF, ___unitytls_tlsctx_process_handshake_27)); }
inline unitytls_tlsctx_process_handshake_t_tC8AAF317CBE4CA216F22BF031ECF89315B963C9D * get_unitytls_tlsctx_process_handshake_27() const { return ___unitytls_tlsctx_process_handshake_27; }
inline unitytls_tlsctx_process_handshake_t_tC8AAF317CBE4CA216F22BF031ECF89315B963C9D ** get_address_of_unitytls_tlsctx_process_handshake_27() { return &___unitytls_tlsctx_process_handshake_27; }
inline void set_unitytls_tlsctx_process_handshake_27(unitytls_tlsctx_process_handshake_t_tC8AAF317CBE4CA216F22BF031ECF89315B963C9D * value)
{
___unitytls_tlsctx_process_handshake_27 = value;
Il2CppCodeGenWriteBarrier((&___unitytls_tlsctx_process_handshake_27), value);
}
inline static int32_t get_offset_of_unitytls_tlsctx_read_28() { return static_cast<int32_t>(offsetof(unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF, ___unitytls_tlsctx_read_28)); }
inline unitytls_tlsctx_read_t_tA8D1209D5F488E02F826EE2362F5AA61C8FF2EE2 * get_unitytls_tlsctx_read_28() const { return ___unitytls_tlsctx_read_28; }
inline unitytls_tlsctx_read_t_tA8D1209D5F488E02F826EE2362F5AA61C8FF2EE2 ** get_address_of_unitytls_tlsctx_read_28() { return &___unitytls_tlsctx_read_28; }
inline void set_unitytls_tlsctx_read_28(unitytls_tlsctx_read_t_tA8D1209D5F488E02F826EE2362F5AA61C8FF2EE2 * value)
{
___unitytls_tlsctx_read_28 = value;
Il2CppCodeGenWriteBarrier((&___unitytls_tlsctx_read_28), value);
}
inline static int32_t get_offset_of_unitytls_tlsctx_write_29() { return static_cast<int32_t>(offsetof(unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF, ___unitytls_tlsctx_write_29)); }
inline unitytls_tlsctx_write_t_t0B4A49BBA592FE4EC0630B490463AE116AF07C9C * get_unitytls_tlsctx_write_29() const { return ___unitytls_tlsctx_write_29; }
inline unitytls_tlsctx_write_t_t0B4A49BBA592FE4EC0630B490463AE116AF07C9C ** get_address_of_unitytls_tlsctx_write_29() { return &___unitytls_tlsctx_write_29; }
inline void set_unitytls_tlsctx_write_29(unitytls_tlsctx_write_t_t0B4A49BBA592FE4EC0630B490463AE116AF07C9C * value)
{
___unitytls_tlsctx_write_29 = value;
Il2CppCodeGenWriteBarrier((&___unitytls_tlsctx_write_29), value);
}
inline static int32_t get_offset_of_unitytls_tlsctx_notify_close_30() { return static_cast<int32_t>(offsetof(unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF, ___unitytls_tlsctx_notify_close_30)); }
inline unitytls_tlsctx_notify_close_t_t2FC4C08BACF1AEA509ABCAF3B22475E196E74A0D * get_unitytls_tlsctx_notify_close_30() const { return ___unitytls_tlsctx_notify_close_30; }
inline unitytls_tlsctx_notify_close_t_t2FC4C08BACF1AEA509ABCAF3B22475E196E74A0D ** get_address_of_unitytls_tlsctx_notify_close_30() { return &___unitytls_tlsctx_notify_close_30; }
inline void set_unitytls_tlsctx_notify_close_30(unitytls_tlsctx_notify_close_t_t2FC4C08BACF1AEA509ABCAF3B22475E196E74A0D * value)
{
___unitytls_tlsctx_notify_close_30 = value;
Il2CppCodeGenWriteBarrier((&___unitytls_tlsctx_notify_close_30), value);
}
inline static int32_t get_offset_of_unitytls_tlsctx_free_31() { return static_cast<int32_t>(offsetof(unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF, ___unitytls_tlsctx_free_31)); }
inline unitytls_tlsctx_free_t_tB27A3B6F9D1B784ABE082849EAB6B81F51FAC8E2 * get_unitytls_tlsctx_free_31() const { return ___unitytls_tlsctx_free_31; }
inline unitytls_tlsctx_free_t_tB27A3B6F9D1B784ABE082849EAB6B81F51FAC8E2 ** get_address_of_unitytls_tlsctx_free_31() { return &___unitytls_tlsctx_free_31; }
inline void set_unitytls_tlsctx_free_31(unitytls_tlsctx_free_t_tB27A3B6F9D1B784ABE082849EAB6B81F51FAC8E2 * value)
{
___unitytls_tlsctx_free_31 = value;
Il2CppCodeGenWriteBarrier((&___unitytls_tlsctx_free_31), value);
}
inline static int32_t get_offset_of_unitytls_random_generate_bytes_32() { return static_cast<int32_t>(offsetof(unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF, ___unitytls_random_generate_bytes_32)); }
inline unitytls_random_generate_bytes_t_t494B8599A6D4247BB0C8AB7341DDC73BE42623F7 * get_unitytls_random_generate_bytes_32() const { return ___unitytls_random_generate_bytes_32; }
inline unitytls_random_generate_bytes_t_t494B8599A6D4247BB0C8AB7341DDC73BE42623F7 ** get_address_of_unitytls_random_generate_bytes_32() { return &___unitytls_random_generate_bytes_32; }
inline void set_unitytls_random_generate_bytes_32(unitytls_random_generate_bytes_t_t494B8599A6D4247BB0C8AB7341DDC73BE42623F7 * value)
{
___unitytls_random_generate_bytes_32 = value;
Il2CppCodeGenWriteBarrier((&___unitytls_random_generate_bytes_32), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of Mono.Unity.UnityTls/unitytls_interface_struct
struct unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF_marshaled_pinvoke
{
uint64_t ___UNITYTLS_INVALID_HANDLE_0;
unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47 ___UNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT_1;
Il2CppMethodPointer ___unitytls_errorstate_create_2;
Il2CppMethodPointer ___unitytls_errorstate_raise_error_3;
Il2CppMethodPointer ___unitytls_key_get_ref_4;
Il2CppMethodPointer ___unitytls_key_parse_der_5;
Il2CppMethodPointer ___unitytls_key_parse_pem_6;
Il2CppMethodPointer ___unitytls_key_free_7;
Il2CppMethodPointer ___unitytls_x509_export_der_8;
Il2CppMethodPointer ___unitytls_x509list_get_ref_9;
Il2CppMethodPointer ___unitytls_x509list_get_x509_10;
Il2CppMethodPointer ___unitytls_x509list_create_11;
Il2CppMethodPointer ___unitytls_x509list_append_12;
Il2CppMethodPointer ___unitytls_x509list_append_der_13;
Il2CppMethodPointer ___unitytls_x509list_append_pem_14;
Il2CppMethodPointer ___unitytls_x509list_free_15;
Il2CppMethodPointer ___unitytls_x509verify_default_ca_16;
Il2CppMethodPointer ___unitytls_x509verify_explicit_ca_17;
Il2CppMethodPointer ___unitytls_tlsctx_create_server_18;
Il2CppMethodPointer ___unitytls_tlsctx_create_client_19;
Il2CppMethodPointer ___unitytls_tlsctx_server_require_client_authentication_20;
Il2CppMethodPointer ___unitytls_tlsctx_set_certificate_callback_21;
Il2CppMethodPointer ___unitytls_tlsctx_set_trace_callback_22;
Il2CppMethodPointer ___unitytls_tlsctx_set_x509verify_callback_23;
Il2CppMethodPointer ___unitytls_tlsctx_set_supported_ciphersuites_24;
Il2CppMethodPointer ___unitytls_tlsctx_get_ciphersuite_25;
Il2CppMethodPointer ___unitytls_tlsctx_get_protocol_26;
Il2CppMethodPointer ___unitytls_tlsctx_process_handshake_27;
Il2CppMethodPointer ___unitytls_tlsctx_read_28;
Il2CppMethodPointer ___unitytls_tlsctx_write_29;
Il2CppMethodPointer ___unitytls_tlsctx_notify_close_30;
Il2CppMethodPointer ___unitytls_tlsctx_free_31;
Il2CppMethodPointer ___unitytls_random_generate_bytes_32;
};
// Native definition for COM marshalling of Mono.Unity.UnityTls/unitytls_interface_struct
struct unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF_marshaled_com
{
uint64_t ___UNITYTLS_INVALID_HANDLE_0;
unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47 ___UNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT_1;
Il2CppMethodPointer ___unitytls_errorstate_create_2;
Il2CppMethodPointer ___unitytls_errorstate_raise_error_3;
Il2CppMethodPointer ___unitytls_key_get_ref_4;
Il2CppMethodPointer ___unitytls_key_parse_der_5;
Il2CppMethodPointer ___unitytls_key_parse_pem_6;
Il2CppMethodPointer ___unitytls_key_free_7;
Il2CppMethodPointer ___unitytls_x509_export_der_8;
Il2CppMethodPointer ___unitytls_x509list_get_ref_9;
Il2CppMethodPointer ___unitytls_x509list_get_x509_10;
Il2CppMethodPointer ___unitytls_x509list_create_11;
Il2CppMethodPointer ___unitytls_x509list_append_12;
Il2CppMethodPointer ___unitytls_x509list_append_der_13;
Il2CppMethodPointer ___unitytls_x509list_append_pem_14;
Il2CppMethodPointer ___unitytls_x509list_free_15;
Il2CppMethodPointer ___unitytls_x509verify_default_ca_16;
Il2CppMethodPointer ___unitytls_x509verify_explicit_ca_17;
Il2CppMethodPointer ___unitytls_tlsctx_create_server_18;
Il2CppMethodPointer ___unitytls_tlsctx_create_client_19;
Il2CppMethodPointer ___unitytls_tlsctx_server_require_client_authentication_20;
Il2CppMethodPointer ___unitytls_tlsctx_set_certificate_callback_21;
Il2CppMethodPointer ___unitytls_tlsctx_set_trace_callback_22;
Il2CppMethodPointer ___unitytls_tlsctx_set_x509verify_callback_23;
Il2CppMethodPointer ___unitytls_tlsctx_set_supported_ciphersuites_24;
Il2CppMethodPointer ___unitytls_tlsctx_get_ciphersuite_25;
Il2CppMethodPointer ___unitytls_tlsctx_get_protocol_26;
Il2CppMethodPointer ___unitytls_tlsctx_process_handshake_27;
Il2CppMethodPointer ___unitytls_tlsctx_read_28;
Il2CppMethodPointer ___unitytls_tlsctx_write_29;
Il2CppMethodPointer ___unitytls_tlsctx_notify_close_30;
Il2CppMethodPointer ___unitytls_tlsctx_free_31;
Il2CppMethodPointer ___unitytls_random_generate_bytes_32;
};
#endif // UNITYTLS_INTERFACE_STRUCT_T0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF_H
#ifndef UNITYTLS_ERRORSTATE_CREATE_T_T104BADBBE1265BD1A3F84C153EB7A67CDDBF35A9_H
#define UNITYTLS_ERRORSTATE_CREATE_T_T104BADBBE1265BD1A3F84C153EB7A67CDDBF35A9_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_errorstate_create_t
struct unitytls_errorstate_create_t_t104BADBBE1265BD1A3F84C153EB7A67CDDBF35A9 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLS_ERRORSTATE_CREATE_T_T104BADBBE1265BD1A3F84C153EB7A67CDDBF35A9_H
#ifndef UNITYTLS_ERRORSTATE_RAISE_ERROR_T_TC441A37D4A6F1BAC1AFCA0108D4F7570EFF9E0D1_H
#define UNITYTLS_ERRORSTATE_RAISE_ERROR_T_TC441A37D4A6F1BAC1AFCA0108D4F7570EFF9E0D1_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_errorstate_raise_error_t
struct unitytls_errorstate_raise_error_t_tC441A37D4A6F1BAC1AFCA0108D4F7570EFF9E0D1 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLS_ERRORSTATE_RAISE_ERROR_T_TC441A37D4A6F1BAC1AFCA0108D4F7570EFF9E0D1_H
#ifndef UNITYTLS_KEY_FREE_T_TCC7AD95D3B758BB99785645E65EDCD65A1D243AB_H
#define UNITYTLS_KEY_FREE_T_TCC7AD95D3B758BB99785645E65EDCD65A1D243AB_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_key_free_t
struct unitytls_key_free_t_tCC7AD95D3B758BB99785645E65EDCD65A1D243AB : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLS_KEY_FREE_T_TCC7AD95D3B758BB99785645E65EDCD65A1D243AB_H
#ifndef UNITYTLS_KEY_GET_REF_T_T2F4EF4CD2F6AFC4F2D166953E834C6F0A13382A7_H
#define UNITYTLS_KEY_GET_REF_T_T2F4EF4CD2F6AFC4F2D166953E834C6F0A13382A7_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_key_get_ref_t
struct unitytls_key_get_ref_t_t2F4EF4CD2F6AFC4F2D166953E834C6F0A13382A7 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLS_KEY_GET_REF_T_T2F4EF4CD2F6AFC4F2D166953E834C6F0A13382A7_H
#ifndef UNITYTLS_KEY_PARSE_DER_T_T2ABD1C146C8B9405F6E5A78CD59A779EA607741B_H
#define UNITYTLS_KEY_PARSE_DER_T_T2ABD1C146C8B9405F6E5A78CD59A779EA607741B_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_key_parse_der_t
struct unitytls_key_parse_der_t_t2ABD1C146C8B9405F6E5A78CD59A779EA607741B : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLS_KEY_PARSE_DER_T_T2ABD1C146C8B9405F6E5A78CD59A779EA607741B_H
#ifndef UNITYTLS_KEY_PARSE_PEM_T_TB4BCEBA4194442C8C85FA19E80B808D0EDA462AB_H
#define UNITYTLS_KEY_PARSE_PEM_T_TB4BCEBA4194442C8C85FA19E80B808D0EDA462AB_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_key_parse_pem_t
struct unitytls_key_parse_pem_t_tB4BCEBA4194442C8C85FA19E80B808D0EDA462AB : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLS_KEY_PARSE_PEM_T_TB4BCEBA4194442C8C85FA19E80B808D0EDA462AB_H
#ifndef UNITYTLS_RANDOM_GENERATE_BYTES_T_T494B8599A6D4247BB0C8AB7341DDC73BE42623F7_H
#define UNITYTLS_RANDOM_GENERATE_BYTES_T_T494B8599A6D4247BB0C8AB7341DDC73BE42623F7_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_random_generate_bytes_t
struct unitytls_random_generate_bytes_t_t494B8599A6D4247BB0C8AB7341DDC73BE42623F7 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLS_RANDOM_GENERATE_BYTES_T_T494B8599A6D4247BB0C8AB7341DDC73BE42623F7_H
#ifndef UNITYTLS_TLSCTX_CREATE_CLIENT_T_TD9DFBDB5559983F0E11A67FA92E0F7182114C8F2_H
#define UNITYTLS_TLSCTX_CREATE_CLIENT_T_TD9DFBDB5559983F0E11A67FA92E0F7182114C8F2_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_create_client_t
struct unitytls_tlsctx_create_client_t_tD9DFBDB5559983F0E11A67FA92E0F7182114C8F2 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLS_TLSCTX_CREATE_CLIENT_T_TD9DFBDB5559983F0E11A67FA92E0F7182114C8F2_H
#ifndef UNITYTLS_TLSCTX_CREATE_SERVER_T_T6E7812D40DDD91958E3CFBB92B5F5748D477E19D_H
#define UNITYTLS_TLSCTX_CREATE_SERVER_T_T6E7812D40DDD91958E3CFBB92B5F5748D477E19D_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_create_server_t
struct unitytls_tlsctx_create_server_t_t6E7812D40DDD91958E3CFBB92B5F5748D477E19D : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLS_TLSCTX_CREATE_SERVER_T_T6E7812D40DDD91958E3CFBB92B5F5748D477E19D_H
#ifndef UNITYTLS_TLSCTX_FREE_T_TB27A3B6F9D1B784ABE082849EAB6B81F51FAC8E2_H
#define UNITYTLS_TLSCTX_FREE_T_TB27A3B6F9D1B784ABE082849EAB6B81F51FAC8E2_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_free_t
struct unitytls_tlsctx_free_t_tB27A3B6F9D1B784ABE082849EAB6B81F51FAC8E2 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLS_TLSCTX_FREE_T_TB27A3B6F9D1B784ABE082849EAB6B81F51FAC8E2_H
#ifndef UNITYTLS_TLSCTX_GET_CIPHERSUITE_T_T94A91CB42A2EBB2CC598EF3E278770AFD80696A0_H
#define UNITYTLS_TLSCTX_GET_CIPHERSUITE_T_T94A91CB42A2EBB2CC598EF3E278770AFD80696A0_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_get_ciphersuite_t
struct unitytls_tlsctx_get_ciphersuite_t_t94A91CB42A2EBB2CC598EF3E278770AFD80696A0 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLS_TLSCTX_GET_CIPHERSUITE_T_T94A91CB42A2EBB2CC598EF3E278770AFD80696A0_H
#ifndef UNITYTLS_TLSCTX_GET_PROTOCOL_T_TB29092875D3CBD25E4461BFD165B5373FA54DB14_H
#define UNITYTLS_TLSCTX_GET_PROTOCOL_T_TB29092875D3CBD25E4461BFD165B5373FA54DB14_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_get_protocol_t
struct unitytls_tlsctx_get_protocol_t_tB29092875D3CBD25E4461BFD165B5373FA54DB14 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLS_TLSCTX_GET_PROTOCOL_T_TB29092875D3CBD25E4461BFD165B5373FA54DB14_H
#ifndef UNITYTLS_TLSCTX_NOTIFY_CLOSE_T_T2FC4C08BACF1AEA509ABCAF3B22475E196E74A0D_H
#define UNITYTLS_TLSCTX_NOTIFY_CLOSE_T_T2FC4C08BACF1AEA509ABCAF3B22475E196E74A0D_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_notify_close_t
struct unitytls_tlsctx_notify_close_t_t2FC4C08BACF1AEA509ABCAF3B22475E196E74A0D : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLS_TLSCTX_NOTIFY_CLOSE_T_T2FC4C08BACF1AEA509ABCAF3B22475E196E74A0D_H
#ifndef UNITYTLS_TLSCTX_PROCESS_HANDSHAKE_T_TC8AAF317CBE4CA216F22BF031ECF89315B963C9D_H
#define UNITYTLS_TLSCTX_PROCESS_HANDSHAKE_T_TC8AAF317CBE4CA216F22BF031ECF89315B963C9D_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_process_handshake_t
struct unitytls_tlsctx_process_handshake_t_tC8AAF317CBE4CA216F22BF031ECF89315B963C9D : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLS_TLSCTX_PROCESS_HANDSHAKE_T_TC8AAF317CBE4CA216F22BF031ECF89315B963C9D_H
#ifndef UNITYTLS_TLSCTX_READ_T_TA8D1209D5F488E02F826EE2362F5AA61C8FF2EE2_H
#define UNITYTLS_TLSCTX_READ_T_TA8D1209D5F488E02F826EE2362F5AA61C8FF2EE2_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_read_t
struct unitytls_tlsctx_read_t_tA8D1209D5F488E02F826EE2362F5AA61C8FF2EE2 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLS_TLSCTX_READ_T_TA8D1209D5F488E02F826EE2362F5AA61C8FF2EE2_H
#ifndef UNITYTLS_TLSCTX_SERVER_REQUIRE_CLIENT_AUTHENTICATION_T_T77B3CAFF25690A45405E3C957E40CC4FF83B49C6_H
#define UNITYTLS_TLSCTX_SERVER_REQUIRE_CLIENT_AUTHENTICATION_T_T77B3CAFF25690A45405E3C957E40CC4FF83B49C6_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_server_require_client_authentication_t
struct unitytls_tlsctx_server_require_client_authentication_t_t77B3CAFF25690A45405E3C957E40CC4FF83B49C6 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLS_TLSCTX_SERVER_REQUIRE_CLIENT_AUTHENTICATION_T_T77B3CAFF25690A45405E3C957E40CC4FF83B49C6_H
#ifndef UNITYTLS_TLSCTX_SET_CERTIFICATE_CALLBACK_T_TC4864FE0F6A3398A572F2511AA64C72126640937_H
#define UNITYTLS_TLSCTX_SET_CERTIFICATE_CALLBACK_T_TC4864FE0F6A3398A572F2511AA64C72126640937_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_set_certificate_callback_t
struct unitytls_tlsctx_set_certificate_callback_t_tC4864FE0F6A3398A572F2511AA64C72126640937 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLS_TLSCTX_SET_CERTIFICATE_CALLBACK_T_TC4864FE0F6A3398A572F2511AA64C72126640937_H
#ifndef UNITYTLS_TLSCTX_SET_SUPPORTED_CIPHERSUITES_T_T6914054EA0F7A59C8A4ED4B9CDD5AF143F7D8BFE_H
#define UNITYTLS_TLSCTX_SET_SUPPORTED_CIPHERSUITES_T_T6914054EA0F7A59C8A4ED4B9CDD5AF143F7D8BFE_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_set_supported_ciphersuites_t
struct unitytls_tlsctx_set_supported_ciphersuites_t_t6914054EA0F7A59C8A4ED4B9CDD5AF143F7D8BFE : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLS_TLSCTX_SET_SUPPORTED_CIPHERSUITES_T_T6914054EA0F7A59C8A4ED4B9CDD5AF143F7D8BFE_H
#ifndef UNITYTLS_TLSCTX_SET_TRACE_CALLBACK_T_TA11F424F68D297B6FD2B2EA26C6764F80146662A_H
#define UNITYTLS_TLSCTX_SET_TRACE_CALLBACK_T_TA11F424F68D297B6FD2B2EA26C6764F80146662A_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_set_trace_callback_t
struct unitytls_tlsctx_set_trace_callback_t_tA11F424F68D297B6FD2B2EA26C6764F80146662A : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLS_TLSCTX_SET_TRACE_CALLBACK_T_TA11F424F68D297B6FD2B2EA26C6764F80146662A_H
#ifndef UNITYTLS_TLSCTX_SET_X509VERIFY_CALLBACK_T_T34EEB7BA38CA2C86F847416785ADB22BC4A04F4B_H
#define UNITYTLS_TLSCTX_SET_X509VERIFY_CALLBACK_T_T34EEB7BA38CA2C86F847416785ADB22BC4A04F4B_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_set_x509verify_callback_t
struct unitytls_tlsctx_set_x509verify_callback_t_t34EEB7BA38CA2C86F847416785ADB22BC4A04F4B : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLS_TLSCTX_SET_X509VERIFY_CALLBACK_T_T34EEB7BA38CA2C86F847416785ADB22BC4A04F4B_H
#ifndef UNITYTLS_TLSCTX_WRITE_T_T0B4A49BBA592FE4EC0630B490463AE116AF07C9C_H
#define UNITYTLS_TLSCTX_WRITE_T_T0B4A49BBA592FE4EC0630B490463AE116AF07C9C_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_write_t
struct unitytls_tlsctx_write_t_t0B4A49BBA592FE4EC0630B490463AE116AF07C9C : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLS_TLSCTX_WRITE_T_T0B4A49BBA592FE4EC0630B490463AE116AF07C9C_H
#ifndef UNITYTLS_X509_EXPORT_DER_T_TB0D0A02DE7E75757AFCA780298BF95467BF82856_H
#define UNITYTLS_X509_EXPORT_DER_T_TB0D0A02DE7E75757AFCA780298BF95467BF82856_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509_export_der_t
struct unitytls_x509_export_der_t_tB0D0A02DE7E75757AFCA780298BF95467BF82856 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLS_X509_EXPORT_DER_T_TB0D0A02DE7E75757AFCA780298BF95467BF82856_H
#ifndef UNITYTLS_X509LIST_APPEND_DER_T_TDA1C93A382058FB563F8772B119D5B598DC37A5C_H
#define UNITYTLS_X509LIST_APPEND_DER_T_TDA1C93A382058FB563F8772B119D5B598DC37A5C_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_append_der_t
struct unitytls_x509list_append_der_t_tDA1C93A382058FB563F8772B119D5B598DC37A5C : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLS_X509LIST_APPEND_DER_T_TDA1C93A382058FB563F8772B119D5B598DC37A5C_H
#ifndef UNITYTLS_X509LIST_APPEND_T_TAB1C185C77DFD6BD96DF7909370AA1FAD6BB90AF_H
#define UNITYTLS_X509LIST_APPEND_T_TAB1C185C77DFD6BD96DF7909370AA1FAD6BB90AF_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_append_t
struct unitytls_x509list_append_t_tAB1C185C77DFD6BD96DF7909370AA1FAD6BB90AF : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLS_X509LIST_APPEND_T_TAB1C185C77DFD6BD96DF7909370AA1FAD6BB90AF_H
#ifndef UNITYTLS_X509LIST_CREATE_T_TC040C2CF47D5426B7F6B1D6A2751507DC681CFF3_H
#define UNITYTLS_X509LIST_CREATE_T_TC040C2CF47D5426B7F6B1D6A2751507DC681CFF3_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_create_t
struct unitytls_x509list_create_t_tC040C2CF47D5426B7F6B1D6A2751507DC681CFF3 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLS_X509LIST_CREATE_T_TC040C2CF47D5426B7F6B1D6A2751507DC681CFF3_H
#ifndef UNITYTLS_X509LIST_FREE_T_TE3FC523507F07BD9901D84E9F6968CD8A583FF09_H
#define UNITYTLS_X509LIST_FREE_T_TE3FC523507F07BD9901D84E9F6968CD8A583FF09_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_free_t
struct unitytls_x509list_free_t_tE3FC523507F07BD9901D84E9F6968CD8A583FF09 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLS_X509LIST_FREE_T_TE3FC523507F07BD9901D84E9F6968CD8A583FF09_H
#ifndef UNITYTLS_X509LIST_GET_REF_T_T1FAB0CD82E536E0C9EB5255B145FC5AF434B3986_H
#define UNITYTLS_X509LIST_GET_REF_T_T1FAB0CD82E536E0C9EB5255B145FC5AF434B3986_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_get_ref_t
struct unitytls_x509list_get_ref_t_t1FAB0CD82E536E0C9EB5255B145FC5AF434B3986 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLS_X509LIST_GET_REF_T_T1FAB0CD82E536E0C9EB5255B145FC5AF434B3986_H
#ifndef UNITYTLS_X509LIST_GET_X509_T_T028BB06EEB95E8F62511F2301B90D8181F4FFDB5_H
#define UNITYTLS_X509LIST_GET_X509_T_T028BB06EEB95E8F62511F2301B90D8181F4FFDB5_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_get_x509_t
struct unitytls_x509list_get_x509_t_t028BB06EEB95E8F62511F2301B90D8181F4FFDB5 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLS_X509LIST_GET_X509_T_T028BB06EEB95E8F62511F2301B90D8181F4FFDB5_H
#ifndef UNITYTLS_X509VERIFY_DEFAULT_CA_T_T4BACB6B49AA85C025AF9B18B3F30F63C9881DE2D_H
#define UNITYTLS_X509VERIFY_DEFAULT_CA_T_T4BACB6B49AA85C025AF9B18B3F30F63C9881DE2D_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509verify_default_ca_t
struct unitytls_x509verify_default_ca_t_t4BACB6B49AA85C025AF9B18B3F30F63C9881DE2D : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLS_X509VERIFY_DEFAULT_CA_T_T4BACB6B49AA85C025AF9B18B3F30F63C9881DE2D_H
#ifndef UNITYTLS_X509VERIFY_EXPLICIT_CA_T_T6C8BE964C5EE9B24D3734F028EFCD83F5893D2E6_H
#define UNITYTLS_X509VERIFY_EXPLICIT_CA_T_T6C8BE964C5EE9B24D3734F028EFCD83F5893D2E6_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509verify_explicit_ca_t
struct unitytls_x509verify_explicit_ca_t_t6C8BE964C5EE9B24D3734F028EFCD83F5893D2E6 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLS_X509VERIFY_EXPLICIT_CA_T_T6C8BE964C5EE9B24D3734F028EFCD83F5893D2E6_H
#ifndef UNITYTLS_TLSCTX_CERTIFICATE_CALLBACK_T55149A988CA1CE32772ACAC0031DAF4DC0F6D740_H
#define UNITYTLS_TLSCTX_CERTIFICATE_CALLBACK_T55149A988CA1CE32772ACAC0031DAF4DC0F6D740_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_tlsctx_certificate_callback
struct unitytls_tlsctx_certificate_callback_t55149A988CA1CE32772ACAC0031DAF4DC0F6D740 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLS_TLSCTX_CERTIFICATE_CALLBACK_T55149A988CA1CE32772ACAC0031DAF4DC0F6D740_H
#ifndef UNITYTLS_TLSCTX_READ_CALLBACK_TD85E7923018681355C1D851137CEC527F04093F5_H
#define UNITYTLS_TLSCTX_READ_CALLBACK_TD85E7923018681355C1D851137CEC527F04093F5_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_tlsctx_read_callback
struct unitytls_tlsctx_read_callback_tD85E7923018681355C1D851137CEC527F04093F5 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLS_TLSCTX_READ_CALLBACK_TD85E7923018681355C1D851137CEC527F04093F5_H
#ifndef UNITYTLS_TLSCTX_TRACE_CALLBACK_T2C8F0895EF17ECAC042835D68A6BFDB9CBC7F2AA_H
#define UNITYTLS_TLSCTX_TRACE_CALLBACK_T2C8F0895EF17ECAC042835D68A6BFDB9CBC7F2AA_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_tlsctx_trace_callback
struct unitytls_tlsctx_trace_callback_t2C8F0895EF17ECAC042835D68A6BFDB9CBC7F2AA : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLS_TLSCTX_TRACE_CALLBACK_T2C8F0895EF17ECAC042835D68A6BFDB9CBC7F2AA_H
#ifndef UNITYTLS_TLSCTX_WRITE_CALLBACK_TBDF40F27E011F577C3E834B14788491861F870D6_H
#define UNITYTLS_TLSCTX_WRITE_CALLBACK_TBDF40F27E011F577C3E834B14788491861F870D6_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_tlsctx_write_callback
struct unitytls_tlsctx_write_callback_tBDF40F27E011F577C3E834B14788491861F870D6 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLS_TLSCTX_WRITE_CALLBACK_TBDF40F27E011F577C3E834B14788491861F870D6_H
#ifndef UNITYTLS_TLSCTX_X509VERIFY_CALLBACK_T5FCF0307C4AB263BC611FE396EC4D2B9CF93528A_H
#define UNITYTLS_TLSCTX_X509VERIFY_CALLBACK_T5FCF0307C4AB263BC611FE396EC4D2B9CF93528A_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_tlsctx_x509verify_callback
struct unitytls_tlsctx_x509verify_callback_t5FCF0307C4AB263BC611FE396EC4D2B9CF93528A : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLS_TLSCTX_X509VERIFY_CALLBACK_T5FCF0307C4AB263BC611FE396EC4D2B9CF93528A_H
#ifndef UNITYTLS_X509VERIFY_CALLBACK_T90C02C529DB2B9F434C18797BACC456BCB5400A9_H
#define UNITYTLS_X509VERIFY_CALLBACK_T90C02C529DB2B9F434C18797BACC456BCB5400A9_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTls/unitytls_x509verify_callback
struct unitytls_x509verify_callback_t90C02C529DB2B9F434C18797BACC456BCB5400A9 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLS_X509VERIFY_CALLBACK_T90C02C529DB2B9F434C18797BACC456BCB5400A9_H
#ifndef UNITYTLSSTREAM_TE8613CD306315DCC3E00A7B1036E20E280F83166_H
#define UNITYTLSSTREAM_TE8613CD306315DCC3E00A7B1036E20E280F83166_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Unity.UnityTlsStream
struct UnityTlsStream_tE8613CD306315DCC3E00A7B1036E20E280F83166 : public MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNITYTLSSTREAM_TE8613CD306315DCC3E00A7B1036E20E280F83166_H
#ifndef ACTION_T591D2A86165F896B4B800BB5C25CE18672A55579_H
#define ACTION_T591D2A86165F896B4B800BB5C25CE18672A55579_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Action
struct Action_t591D2A86165F896B4B800BB5C25CE18672A55579 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ACTION_T591D2A86165F896B4B800BB5C25CE18672A55579_H
#ifndef ASYNCCALLBACK_T3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4_H
#define ASYNCCALLBACK_T3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.AsyncCallback
struct AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASYNCCALLBACK_T3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4_H
#ifndef ARRAYCONVERTER_TAAD8F39711C6ECD39D31226FA1D140DD38752B57_H
#define ARRAYCONVERTER_TAAD8F39711C6ECD39D31226FA1D140DD38752B57_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ComponentModel.ArrayConverter
struct ArrayConverter_tAAD8F39711C6ECD39D31226FA1D140DD38752B57 : public CollectionConverter_t039E15C433996B0F0F0EB78BEE81F6DE0705F184
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ARRAYCONVERTER_TAAD8F39711C6ECD39D31226FA1D140DD38752B57_H
#ifndef DECIMALCONVERTER_T10232B897580B6DE599BB375BE8C0F4E1C30B0C1_H
#define DECIMALCONVERTER_T10232B897580B6DE599BB375BE8C0F4E1C30B0C1_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ComponentModel.DecimalConverter
struct DecimalConverter_t10232B897580B6DE599BB375BE8C0F4E1C30B0C1 : public BaseNumberConverter_t6AF36A2503E7BABF7FB9A8EC05DF8B828491AC63
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DECIMALCONVERTER_T10232B897580B6DE599BB375BE8C0F4E1C30B0C1_H
#ifndef DOUBLECONVERTER_T65A5D8B0C2736FC5469CE5DFA468D371DD5F9F75_H
#define DOUBLECONVERTER_T65A5D8B0C2736FC5469CE5DFA468D371DD5F9F75_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ComponentModel.DoubleConverter
struct DoubleConverter_t65A5D8B0C2736FC5469CE5DFA468D371DD5F9F75 : public BaseNumberConverter_t6AF36A2503E7BABF7FB9A8EC05DF8B828491AC63
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DOUBLECONVERTER_T65A5D8B0C2736FC5469CE5DFA468D371DD5F9F75_H
#ifndef INT16CONVERTER_TA2223DDF2BE99AD79AD836FCEC90F2C12705433B_H
#define INT16CONVERTER_TA2223DDF2BE99AD79AD836FCEC90F2C12705433B_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ComponentModel.Int16Converter
struct Int16Converter_tA2223DDF2BE99AD79AD836FCEC90F2C12705433B : public BaseNumberConverter_t6AF36A2503E7BABF7FB9A8EC05DF8B828491AC63
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INT16CONVERTER_TA2223DDF2BE99AD79AD836FCEC90F2C12705433B_H
#ifndef INT32CONVERTER_T73A6E403EBE01B56528CB227509954397A46BA22_H
#define INT32CONVERTER_T73A6E403EBE01B56528CB227509954397A46BA22_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ComponentModel.Int32Converter
struct Int32Converter_t73A6E403EBE01B56528CB227509954397A46BA22 : public BaseNumberConverter_t6AF36A2503E7BABF7FB9A8EC05DF8B828491AC63
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INT32CONVERTER_T73A6E403EBE01B56528CB227509954397A46BA22_H
#ifndef INT64CONVERTER_TED09C98C409F894484943F8D4F9C6468A97F1447_H
#define INT64CONVERTER_TED09C98C409F894484943F8D4F9C6468A97F1447_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ComponentModel.Int64Converter
struct Int64Converter_tED09C98C409F894484943F8D4F9C6468A97F1447 : public BaseNumberConverter_t6AF36A2503E7BABF7FB9A8EC05DF8B828491AC63
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INT64CONVERTER_TED09C98C409F894484943F8D4F9C6468A97F1447_H
#ifndef SINGLECONVERTER_T86A24FBD46D753B99344470E9566584F15538902_H
#define SINGLECONVERTER_T86A24FBD46D753B99344470E9566584F15538902_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ComponentModel.SingleConverter
struct SingleConverter_t86A24FBD46D753B99344470E9566584F15538902 : public BaseNumberConverter_t6AF36A2503E7BABF7FB9A8EC05DF8B828491AC63
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SINGLECONVERTER_T86A24FBD46D753B99344470E9566584F15538902_H
#ifndef FUNC_1_T30631A63BE46FE93700939B764202D360449FE30_H
#define FUNC_1_T30631A63BE46FE93700939B764202D360449FE30_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Func`1<System.Int32>
struct Func_1_t30631A63BE46FE93700939B764202D360449FE30 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FUNC_1_T30631A63BE46FE93700939B764202D360449FE30_H
#ifndef IOASYNCCALLBACK_TEAEB626A6DAC959F4C365B12136A80EE9AA17547_H
#define IOASYNCCALLBACK_TEAEB626A6DAC959F4C365B12136A80EE9AA17547_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IOAsyncCallback
struct IOAsyncCallback_tEAEB626A6DAC959F4C365B12136A80EE9AA17547 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // IOASYNCCALLBACK_TEAEB626A6DAC959F4C365B12136A80EE9AA17547_H
#ifndef SOCKETEXCEPTION_T75481CF49BCAF5685A5A9E6933909E0B65E7E0A5_H
#define SOCKETEXCEPTION_T75481CF49BCAF5685A5A9E6933909E0B65E7E0A5_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Net.Sockets.SocketException
struct SocketException_t75481CF49BCAF5685A5A9E6933909E0B65E7E0A5 : public Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668
{
public:
// System.Net.EndPoint System.Net.Sockets.SocketException::m_EndPoint
EndPoint_tD87FCEF2780A951E8CE8D808C345FBF2C088D980 * ___m_EndPoint_20;
public:
inline static int32_t get_offset_of_m_EndPoint_20() { return static_cast<int32_t>(offsetof(SocketException_t75481CF49BCAF5685A5A9E6933909E0B65E7E0A5, ___m_EndPoint_20)); }
inline EndPoint_tD87FCEF2780A951E8CE8D808C345FBF2C088D980 * get_m_EndPoint_20() const { return ___m_EndPoint_20; }
inline EndPoint_tD87FCEF2780A951E8CE8D808C345FBF2C088D980 ** get_address_of_m_EndPoint_20() { return &___m_EndPoint_20; }
inline void set_m_EndPoint_20(EndPoint_tD87FCEF2780A951E8CE8D808C345FBF2C088D980 * value)
{
___m_EndPoint_20 = value;
Il2CppCodeGenWriteBarrier((&___m_EndPoint_20), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SOCKETEXCEPTION_T75481CF49BCAF5685A5A9E6933909E0B65E7E0A5_H
#ifndef MANUALRESETEVENT_TDFAF117B200ECA4CCF4FD09593F949A016D55408_H
#define MANUALRESETEVENT_TDFAF117B200ECA4CCF4FD09593F949A016D55408_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Threading.ManualResetEvent
struct ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 : public EventWaitHandle_t7603BF1D3D30FE42DD07A450C8D09E2684DC4D98
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MANUALRESETEVENT_TDFAF117B200ECA4CCF4FD09593F949A016D55408_H
// System.Byte[]
struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821 : public RuntimeArray
{
public:
ALIGN_FIELD (8) uint8_t m_Items[1];
public:
inline uint8_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline uint8_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, uint8_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value)
{
m_Items[index] = value;
}
};
// System.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(m_Items + index, 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(m_Items + index, value);
}
};
// 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(m_Items + index, 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(m_Items + index, value);
}
};
// System.Int64[]
struct Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F : public RuntimeArray
{
public:
ALIGN_FIELD (8) int64_t m_Items[1];
public:
inline int64_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline int64_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, int64_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline int64_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline int64_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, int64_t value)
{
m_Items[index] = value;
}
};
// System.Char[]
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Il2CppChar m_Items[1];
public:
inline Il2CppChar GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Il2CppChar* 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, Il2CppChar value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Il2CppChar GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Il2CppChar* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Il2CppChar value)
{
m_Items[index] = value;
}
};
// System.UInt16[]
struct UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E : public RuntimeArray
{
public:
ALIGN_FIELD (8) uint16_t m_Items[1];
public:
inline uint16_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline uint16_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, uint16_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline uint16_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline uint16_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, uint16_t value)
{
m_Items[index] = value;
}
};
extern "C" void unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2_marshal_pinvoke(const unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2& unmarshaled, unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2_marshaled_pinvoke& marshaled);
extern "C" void unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2_marshal_pinvoke_back(const unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2_marshaled_pinvoke& marshaled, unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2& unmarshaled);
extern "C" void unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2_marshal_pinvoke_cleanup(unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2_marshaled_pinvoke& marshaled);
extern "C" void IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD_marshal_pinvoke(const IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD& unmarshaled, IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD_marshaled_pinvoke& marshaled);
extern "C" void IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD_marshal_pinvoke_back(const IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD_marshaled_pinvoke& marshaled, IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD& unmarshaled);
extern "C" void IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD_marshal_pinvoke_cleanup(IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD_marshaled_pinvoke& marshaled);
extern "C" void IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD_marshal_com(const IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD& unmarshaled, IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD_marshaled_com& marshaled);
extern "C" void IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD_marshal_com_back(const IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD_marshaled_com& marshaled, IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD& unmarshaled);
extern "C" void IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD_marshal_com_cleanup(IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD_marshaled_com& marshaled);
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<!0> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::Create()
extern "C" IL2CPP_METHOD_ATTR AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 AsyncTaskMethodBuilder_1_Create_mC7806A5C115ED2239A5073313AA3564D8244156E_gshared (const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::Start<Mono.Net.Security.AsyncProtocolRequest/<StartOperation>d__23>(!!0&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_Start_TisU3CStartOperationU3Ed__23_tF07DD38BEEE955EB5B1359B816079584899DDEC9_mA55AABD80D5893D94172768FC8CF1570EBF17780_gshared (AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 * __this, U3CStartOperationU3Ed__23_tF07DD38BEEE955EB5B1359B816079584899DDEC9 * p0, const RuntimeMethod* method);
// System.Threading.Tasks.Task`1<!0> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::get_Task()
extern "C" IL2CPP_METHOD_ATTR Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * AsyncTaskMethodBuilder_1_get_Task_m19C5664D70C4FC799BEFB8D0FC98E687F97059FA_gshared (AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start<Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24>(!!0&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_Start_TisU3CProcessOperationU3Ed__24_t969904EA513B205F08A3ED1624FE3890853645AA_mE4E7D5465A93C56B5F17EB43FD2AF11AF3597A69_gshared (AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 * __this, U3CProcessOperationU3Ed__24_t969904EA513B205F08A3ED1624FE3890853645AA * p0, const RuntimeMethod* method);
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<!0> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::Create()
extern "C" IL2CPP_METHOD_ATTR AsyncTaskMethodBuilder_1_tADDA4A1D7E8E45B9C6AC65AF43C5868605F74865 AsyncTaskMethodBuilder_1_Create_m242902BEDFDC7D1CC69AFDD97C9D701DE8FE2B50_gshared (const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::Start<Mono.Net.Security.AsyncProtocolRequest/<InnerRead>d__25>(!!0&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_Start_TisU3CInnerReadU3Ed__25_tCE25EDB99323C3358577085230EE086DE0CADA5E_m76073D93DA6947C4B0CF9D9C6BF57526F674D659_gshared (AsyncTaskMethodBuilder_1_tADDA4A1D7E8E45B9C6AC65AF43C5868605F74865 * __this, U3CInnerReadU3Ed__25_tCE25EDB99323C3358577085230EE086DE0CADA5E * p0, const RuntimeMethod* method);
// System.Threading.Tasks.Task`1<!0> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::get_Task()
extern "C" IL2CPP_METHOD_ATTR Task_1_t8906695C9865566AA79419735634FF27AC74506E * AsyncTaskMethodBuilder_1_get_Task_m35C5C2BA1998F89CDCED8166BAE477A591FAB101_gshared (AsyncTaskMethodBuilder_1_tADDA4A1D7E8E45B9C6AC65AF43C5868605F74865 * __this, const RuntimeMethod* method);
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<!0> System.Threading.Tasks.Task`1<System.Int32>::ConfigureAwait(System.Boolean)
extern "C" IL2CPP_METHOD_ATTR ConfiguredTaskAwaitable_1_t10E65A50D6EC08956E9F550CD64330F4DED0D38A Task_1_ConfigureAwait_m88DF0C431456B72CA5CF2534AE96969FDB86F982_gshared (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * __this, bool p0, const RuntimeMethod* method);
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<!0> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Int32>::GetAwaiter()
extern "C" IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E ConfiguredTaskAwaitable_1_GetAwaiter_m10B0B84F72A27E623BD94882380E582459F8B8DE_gshared (ConfiguredTaskAwaitable_1_t10E65A50D6EC08956E9F550CD64330F4DED0D38A * __this, const RuntimeMethod* method);
// System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>::get_IsCompleted()
extern "C" IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_get_IsCompleted_mCBD6C3EF024E1D7C538268F338BD0C4BA712FA92_gshared (ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>,Mono.Net.Security.AsyncProtocolRequest/<InnerRead>d__25>(!!0&,!!1&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E_TisU3CInnerReadU3Ed__25_tCE25EDB99323C3358577085230EE086DE0CADA5E_m8A995342D50B0ABAA2E3EE6CBA355484259E4CF5_gshared (AsyncTaskMethodBuilder_1_tADDA4A1D7E8E45B9C6AC65AF43C5868605F74865 * __this, ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E * p0, U3CInnerReadU3Ed__25_tCE25EDB99323C3358577085230EE086DE0CADA5E * p1, const RuntimeMethod* method);
// !0 System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>::GetResult()
extern "C" IL2CPP_METHOD_ATTR int32_t ConfiguredTaskAwaiter_GetResult_m05FB789E6901C9496B94A722DF99239A979A2623_gshared (ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E * __this, const RuntimeMethod* method);
// System.Void System.Nullable`1<System.Int32>::.ctor(!0)
extern "C" IL2CPP_METHOD_ATTR void Nullable_1__ctor_m11F9C228CFDF836DDFCD7880C09CB4098AB9D7F2_gshared (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * __this, int32_t p0, const RuntimeMethod* method);
// System.Boolean System.Nullable`1<System.Int32>::get_HasValue()
extern "C" IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mB664E2C41CADA8413EF8842E6601B8C696A7CE15_gshared (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * __this, const RuntimeMethod* method);
// !0 System.Nullable`1<System.Int32>::GetValueOrDefault()
extern "C" IL2CPP_METHOD_ATTR int32_t Nullable_1_GetValueOrDefault_mE89BB8F302DF31EE202251F4746859285860B6B6_gshared (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::SetException(System.Exception)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetException_m24103DD71F8B33836CA0506874DBB021B9385837_gshared (AsyncTaskMethodBuilder_1_tADDA4A1D7E8E45B9C6AC65AF43C5868605F74865 * __this, Exception_t * p0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::SetResult(!0)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetResult_mDB67DEC1B95ACC8E46B3323B1F19D65EC17ADA9A_gshared (AsyncTaskMethodBuilder_1_tADDA4A1D7E8E45B9C6AC65AF43C5868605F74865 * __this, Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB p0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetStateMachine_m982DF1DD4A7F18AB2E91BB6203C81F0246BB094A_gshared (AsyncTaskMethodBuilder_1_tADDA4A1D7E8E45B9C6AC65AF43C5868605F74865 * __this, RuntimeObject* p0, const RuntimeMethod* method);
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<!0> System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::ConfigureAwait(System.Boolean)
extern "C" IL2CPP_METHOD_ATTR ConfiguredTaskAwaitable_1_tBB2B2DCC75E051E96BC844D2AADFE67C2EB3A872 Task_1_ConfigureAwait_m4A70F9E8C6A5F7C412A2A2ECEC755007AA4A37A3_gshared (Task_1_t8906695C9865566AA79419735634FF27AC74506E * __this, bool p0, const RuntimeMethod* method);
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<!0> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Nullable`1<System.Int32>>::GetAwaiter()
extern "C" IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_t7DF2E84988582301369783F2ECA65B4F26D5A740 ConfiguredTaskAwaitable_1_GetAwaiter_m2334D52A2F0403A09E55D5B4B4AA4DA5B2E318B5_gshared (ConfiguredTaskAwaitable_1_tBB2B2DCC75E051E96BC844D2AADFE67C2EB3A872 * __this, const RuntimeMethod* method);
// System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Nullable`1<System.Int32>>::get_IsCompleted()
extern "C" IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_get_IsCompleted_m1358F59D9346DF4A24793C6A211BC0AF3BC3AB04_gshared (ConfiguredTaskAwaiter_t7DF2E84988582301369783F2ECA65B4F26D5A740 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Nullable`1<System.Int32>>,Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24>(!!0&,!!1&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t7DF2E84988582301369783F2ECA65B4F26D5A740_TisU3CProcessOperationU3Ed__24_t969904EA513B205F08A3ED1624FE3890853645AA_mFAAE60A8CEF35B2FFAAC5B0CFC0E04A24F309821_gshared (AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 * __this, ConfiguredTaskAwaiter_t7DF2E84988582301369783F2ECA65B4F26D5A740 * p0, U3CProcessOperationU3Ed__24_t969904EA513B205F08A3ED1624FE3890853645AA * p1, const RuntimeMethod* method);
// !0 System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Nullable`1<System.Int32>>::GetResult()
extern "C" IL2CPP_METHOD_ATTR Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB ConfiguredTaskAwaiter_GetResult_m519FEE37CB8F736EE39E33E1C36D4A0EE8C2611C_gshared (ConfiguredTaskAwaiter_t7DF2E84988582301369783F2ECA65B4F26D5A740 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24>(!!0&,!!1&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874_TisU3CProcessOperationU3Ed__24_t969904EA513B205F08A3ED1624FE3890853645AA_m00FD9615EAA4D3E47C70D097B61431C2A1965520_gshared (AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 * __this, ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 * p0, U3CProcessOperationU3Ed__24_t969904EA513B205F08A3ED1624FE3890853645AA * p1, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Mono.Net.Security.AsyncProtocolRequest/<StartOperation>d__23>(!!0&,!!1&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874_TisU3CStartOperationU3Ed__23_tF07DD38BEEE955EB5B1359B816079584899DDEC9_m16B2ECF2C3A8B0C1A5A7C09FB227849CD6687054_gshared (AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 * __this, ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 * p0, U3CStartOperationU3Ed__23_tF07DD38BEEE955EB5B1359B816079584899DDEC9 * p1, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::SetException(System.Exception)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetException_m4C0B5462ECCB520FACA3C90B353DF596DAAF586D_gshared (AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 * __this, Exception_t * p0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::SetResult(!0)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetResult_mD7DA7A17DC0610B11A0AAA364C3CA51FEC1271DB_gshared (AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 * __this, RuntimeObject * p0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetStateMachine_m5CC21A02320CF3D2DD7894A31123DFD82A428E4C_gshared (AsyncTaskMethodBuilder_1_t2A9513A084F4B19851B91EF1F22BB57776D35663 * __this, RuntimeObject* p0, const RuntimeMethod* method);
// !!0 System.Threading.Tasks.TaskToApm::End<System.Int32>(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR int32_t TaskToApm_End_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m7A78383A6B69F06EC91BDED0E0F6F3DE02960234_gshared (RuntimeObject* p0, const RuntimeMethod* method);
// !0 System.Threading.Tasks.Task`1<System.Int32>::get_Result()
extern "C" IL2CPP_METHOD_ATTR int32_t Task_1_get_Result_m80E150EF93681DF361700DB6F78C976BE3EC871B_gshared (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * __this, const RuntimeMethod* method);
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<!0> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::Create()
extern "C" IL2CPP_METHOD_ATTR AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 AsyncTaskMethodBuilder_1_Create_mB155504875E2454883E034E847877A9DEA85E318_gshared (const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::Start<Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__58>(!!0&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_Start_TisU3CStartOperationU3Ed__58_t9CFBEC306AEE875FF526F77EF660D0493F475BB1_m86EE112E3DDD51CBC6A0F57A35AC3919A128BCB8_gshared (AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 * __this, U3CStartOperationU3Ed__58_t9CFBEC306AEE875FF526F77EF660D0493F475BB1 * p0, const RuntimeMethod* method);
// System.Threading.Tasks.Task`1<!0> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::get_Task()
extern "C" IL2CPP_METHOD_ATTR Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * AsyncTaskMethodBuilder_1_get_Task_m939AAFF5841821CC09C627DCDEB2DFD5B933DFC2_gshared (AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::Start<Mono.Net.Security.MobileAuthenticatedStream/<InnerRead>d__66>(!!0&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_Start_TisU3CInnerReadU3Ed__66_tA027A607C6D5A6367A04D2DCAF5FCBB66E6B5CAB_mD28BD96B617BE0AE227EDF31AE26EED9D391C2D4_gshared (AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 * __this, U3CInnerReadU3Ed__66_tA027A607C6D5A6367A04D2DCAF5FCBB66E6B5CAB * p0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start<Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67>(!!0&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_Start_TisU3CInnerWriteU3Ed__67_tCEBE4678B01EBC181A242F16C978B7A71367AF43_m04E42D96056940C94B4AC023C0851B1EF14F14F9_gshared (AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 * __this, U3CInnerWriteU3Ed__67_tCEBE4678B01EBC181A242F16C978B7A71367AF43 * p0, const RuntimeMethod* method);
// System.Void System.Func`1<System.Int32>::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void Func_1__ctor_m27E13FE1436758E3083686F1DC59AABC45F50527_gshared (Func_1_t30631A63BE46FE93700939B764202D360449FE30 * __this, RuntimeObject * p0, intptr_t p1, const RuntimeMethod* method);
// System.Threading.Tasks.Task`1<!!0> System.Threading.Tasks.Task::Run<System.Int32>(System.Func`1<!!0>)
extern "C" IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * Task_Run_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m11A2B12F2DF2E9E71644C83D3A1601E8BCC4929A_gshared (Func_1_t30631A63BE46FE93700939B764202D360449FE30 * p0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>,Mono.Net.Security.MobileAuthenticatedStream/<InnerRead>d__66>(!!0&,!!1&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E_TisU3CInnerReadU3Ed__66_tA027A607C6D5A6367A04D2DCAF5FCBB66E6B5CAB_m27EC0547CE146B1E82C108C283D1DAD2AEF81083_gshared (AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 * __this, ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E * p0, U3CInnerReadU3Ed__66_tA027A607C6D5A6367A04D2DCAF5FCBB66E6B5CAB * p1, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::SetException(System.Exception)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetException_mC6242DDCD4119CD73267E4B9888FF3474D795821_gshared (AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 * __this, Exception_t * p0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::SetResult(!0)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetResult_mAFB12C1766B74D412E293BA7AB711615A14C2230_gshared (AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 * __this, int32_t p0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_SetStateMachine_mADB2F2ED219BD69EC85F7516C62FB23F840BB877_gshared (AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 * __this, RuntimeObject* p0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67>(!!0&,!!1&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874_TisU3CInnerWriteU3Ed__67_tCEBE4678B01EBC181A242F16C978B7A71367AF43_mFD398737DB235705CD93D5EBA8FF31DDF273D6A5_gshared (AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 * __this, ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 * p0, U3CInnerWriteU3Ed__67_tCEBE4678B01EBC181A242F16C978B7A71367AF43 * p1, const RuntimeMethod* method);
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<!0> System.Threading.Tasks.Task`1<System.Object>::ConfigureAwait(System.Boolean)
extern "C" IL2CPP_METHOD_ATTR ConfiguredTaskAwaitable_1_tA36F8230F9392F8C09FD6FDBAEA3F1A41388CCA8 Task_1_ConfigureAwait_m60DD864D9488EACBA6C087E87E448797C1C8B76B_gshared (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * __this, bool p0, const RuntimeMethod* method);
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<!0> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Object>::GetAwaiter()
extern "C" IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E ConfiguredTaskAwaitable_1_GetAwaiter_m86C543D72022CB5D0C43053C4AF5F37EA4E690A7_gshared (ConfiguredTaskAwaitable_1_tA36F8230F9392F8C09FD6FDBAEA3F1A41388CCA8 * __this, const RuntimeMethod* method);
// System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>::get_IsCompleted()
extern "C" IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_get_IsCompleted_mA1F08104B225C8640528B38BFD0AAAEE84541586_gshared (ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>,Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__58>(!!0&,!!1&)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E_TisU3CStartOperationU3Ed__58_t9CFBEC306AEE875FF526F77EF660D0493F475BB1_mB6158F07BDA3F4D4DFB299A8E235E405DAB18C74_gshared (AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 * __this, ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E * p0, U3CStartOperationU3Ed__58_t9CFBEC306AEE875FF526F77EF660D0493F475BB1 * p1, const RuntimeMethod* method);
// !0 System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>::GetResult()
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * ConfiguredTaskAwaiter_GetResult_m4EE5BF4F8536CCC951CA3F4E3C494411AE2D507E_gshared (ConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E * __this, const RuntimeMethod* method);
// !!0 System.Runtime.InteropServices.Marshal::PtrToStructure<System.Object>(System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * Marshal_PtrToStructure_TisRuntimeObject_mDB88EE58460703A7A664B670DE68020F9D1CAD72_gshared (intptr_t p0, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::TryGetValue(!0,!1&)
extern "C" IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_m867F6DA953678D0333A55270B7C6EF38EFC293FF_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, int32_t p0, RuntimeObject ** p1, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::Add(!0,!1)
extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_Add_mF7AEA0EFA07EEBC1A4B283A26A7CB720EE7A4C20_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, int32_t p0, RuntimeObject * p1, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.Object>::.ctor()
extern "C" IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m7D745ADE56151C2895459668F4A4242985E526D8_gshared (Dictionary_2_t03608389BB57475AA3F4B2B79D176A27807BC884 * __this, const RuntimeMethod* method);
// !0 System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>::get_Key()
extern "C" IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Key_mB735BC2D7232A3B45D667D28C17BA51AAAFFB4A1_gshared (KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 * __this, const RuntimeMethod* method);
// !1 System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>::get_Value()
extern "C" IL2CPP_METHOD_ATTR int32_t KeyValuePair_2_get_Value_mF7293AF44DA0B8EB7B455A6227F7C36EEE9CF508_gshared (KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>::.ctor(!0,!1)
extern "C" IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m87D429E0B3923A6CF37A52F6F8C56B8FFFBE06D0_gshared (KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 * __this, int32_t p0, int32_t p1, const RuntimeMethod* method);
// System.Char System.String::get_Chars(System.Int32)
extern "C" IL2CPP_METHOD_ATTR Il2CppChar String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96 (String_t* __this, int32_t p0, const RuntimeMethod* method);
// System.Int32 System.String::get_Length()
extern "C" IL2CPP_METHOD_ATTR int32_t String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018 (String_t* __this, const RuntimeMethod* method);
// System.Type System.Object::GetType()
extern "C" IL2CPP_METHOD_ATTR Type_t * Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60 (RuntimeObject * __this, const RuntimeMethod* method);
// System.Void System.Object::.ctor()
extern "C" IL2CPP_METHOD_ATTR void Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0 (RuntimeObject * __this, const RuntimeMethod* method);
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<!0> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<Mono.Net.Security.AsyncProtocolResult>::Create()
inline AsyncTaskMethodBuilder_1_tE6ADC5F95443C1197F4C34B1207F02A4E0F7EDB2 AsyncTaskMethodBuilder_1_Create_mB60DC339AEDD170B1734CFCE9841538E84686820 (const RuntimeMethod* method)
{
return (( AsyncTaskMethodBuilder_1_tE6ADC5F95443C1197F4C34B1207F02A4E0F7EDB2 (*) (const RuntimeMethod*))AsyncTaskMethodBuilder_1_Create_mC7806A5C115ED2239A5073313AA3564D8244156E_gshared)(method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<Mono.Net.Security.AsyncProtocolResult>::Start<Mono.Net.Security.AsyncProtocolRequest/<StartOperation>d__23>(!!0&)
inline void AsyncTaskMethodBuilder_1_Start_TisU3CStartOperationU3Ed__23_tF07DD38BEEE955EB5B1359B816079584899DDEC9_m43D22CCD35DA950DB1C0515C6C6897DCB2575ED4 (AsyncTaskMethodBuilder_1_tE6ADC5F95443C1197F4C34B1207F02A4E0F7EDB2 * __this, U3CStartOperationU3Ed__23_tF07DD38BEEE955EB5B1359B816079584899DDEC9 * p0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_tE6ADC5F95443C1197F4C34B1207F02A4E0F7EDB2 *, U3CStartOperationU3Ed__23_tF07DD38BEEE955EB5B1359B816079584899DDEC9 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_Start_TisU3CStartOperationU3Ed__23_tF07DD38BEEE955EB5B1359B816079584899DDEC9_mA55AABD80D5893D94172768FC8CF1570EBF17780_gshared)(__this, p0, method);
}
// System.Threading.Tasks.Task`1<!0> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<Mono.Net.Security.AsyncProtocolResult>::get_Task()
inline Task_1_t6D67FA6126155FF2C2E227A859409D83DFAFA9BD * AsyncTaskMethodBuilder_1_get_Task_m6F38E3B2220CD252E1196C38A8DC4A33EDEAA9F6 (AsyncTaskMethodBuilder_1_tE6ADC5F95443C1197F4C34B1207F02A4E0F7EDB2 * __this, const RuntimeMethod* method)
{
return (( Task_1_t6D67FA6126155FF2C2E227A859409D83DFAFA9BD * (*) (AsyncTaskMethodBuilder_1_tE6ADC5F95443C1197F4C34B1207F02A4E0F7EDB2 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_get_Task_m19C5664D70C4FC799BEFB8D0FC98E687F97059FA_gshared)(__this, method);
}
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Create()
extern "C" IL2CPP_METHOD_ATTR AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 AsyncTaskMethodBuilder_Create_m081DF9A202E7C2F3CF3D41E1E63E63DA18F19FDB (const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start<Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24>(!!0&)
inline void AsyncTaskMethodBuilder_Start_TisU3CProcessOperationU3Ed__24_t969904EA513B205F08A3ED1624FE3890853645AA_mE4E7D5465A93C56B5F17EB43FD2AF11AF3597A69 (AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 * __this, U3CProcessOperationU3Ed__24_t969904EA513B205F08A3ED1624FE3890853645AA * p0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 *, U3CProcessOperationU3Ed__24_t969904EA513B205F08A3ED1624FE3890853645AA *, const RuntimeMethod*))AsyncTaskMethodBuilder_Start_TisU3CProcessOperationU3Ed__24_t969904EA513B205F08A3ED1624FE3890853645AA_mE4E7D5465A93C56B5F17EB43FD2AF11AF3597A69_gshared)(__this, p0, method);
}
// System.Threading.Tasks.Task System.Runtime.CompilerServices.AsyncTaskMethodBuilder::get_Task()
extern "C" IL2CPP_METHOD_ATTR Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * AsyncTaskMethodBuilder_get_Task_m3E45BC00F7D224FEA04AB9BF26DB52E131D33022 (AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 * __this, const RuntimeMethod* method);
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<!0> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::Create()
inline AsyncTaskMethodBuilder_1_tADDA4A1D7E8E45B9C6AC65AF43C5868605F74865 AsyncTaskMethodBuilder_1_Create_m242902BEDFDC7D1CC69AFDD97C9D701DE8FE2B50 (const RuntimeMethod* method)
{
return (( AsyncTaskMethodBuilder_1_tADDA4A1D7E8E45B9C6AC65AF43C5868605F74865 (*) (const RuntimeMethod*))AsyncTaskMethodBuilder_1_Create_m242902BEDFDC7D1CC69AFDD97C9D701DE8FE2B50_gshared)(method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::Start<Mono.Net.Security.AsyncProtocolRequest/<InnerRead>d__25>(!!0&)
inline void AsyncTaskMethodBuilder_1_Start_TisU3CInnerReadU3Ed__25_tCE25EDB99323C3358577085230EE086DE0CADA5E_m76073D93DA6947C4B0CF9D9C6BF57526F674D659 (AsyncTaskMethodBuilder_1_tADDA4A1D7E8E45B9C6AC65AF43C5868605F74865 * __this, U3CInnerReadU3Ed__25_tCE25EDB99323C3358577085230EE086DE0CADA5E * p0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_tADDA4A1D7E8E45B9C6AC65AF43C5868605F74865 *, U3CInnerReadU3Ed__25_tCE25EDB99323C3358577085230EE086DE0CADA5E *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_Start_TisU3CInnerReadU3Ed__25_tCE25EDB99323C3358577085230EE086DE0CADA5E_m76073D93DA6947C4B0CF9D9C6BF57526F674D659_gshared)(__this, p0, method);
}
// System.Threading.Tasks.Task`1<!0> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::get_Task()
inline Task_1_t8906695C9865566AA79419735634FF27AC74506E * AsyncTaskMethodBuilder_1_get_Task_m35C5C2BA1998F89CDCED8166BAE477A591FAB101 (AsyncTaskMethodBuilder_1_tADDA4A1D7E8E45B9C6AC65AF43C5868605F74865 * __this, const RuntimeMethod* method)
{
return (( Task_1_t8906695C9865566AA79419735634FF27AC74506E * (*) (AsyncTaskMethodBuilder_1_tADDA4A1D7E8E45B9C6AC65AF43C5868605F74865 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_get_Task_m35C5C2BA1998F89CDCED8166BAE477A591FAB101_gshared)(__this, method);
}
// System.String Mono.Net.Security.AsyncProtocolRequest::get_Name()
extern "C" IL2CPP_METHOD_ATTR String_t* AsyncProtocolRequest_get_Name_m1999BAB96B06DCB4DC11BF5F3B0BF4C6E2A26FF6 (AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * __this, const RuntimeMethod* method);
// System.String System.String::Format(System.String,System.Object)
extern "C" IL2CPP_METHOD_ATTR String_t* String_Format_m0ACDD8B34764E4040AED0B3EEB753567E4576BFA (String_t* p0, RuntimeObject * p1, const RuntimeMethod* method);
// System.Int32 System.Threading.Interlocked::Exchange(System.Int32&,System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Interlocked_Exchange_mD5CC61AF0F002355912FAAF84F26BE93639B5FD5 (int32_t* p0, int32_t p1, const RuntimeMethod* method);
// Mono.Net.Security.MobileAuthenticatedStream Mono.Net.Security.AsyncProtocolRequest::get_Parent()
extern "C" IL2CPP_METHOD_ATTR MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * AsyncProtocolRequest_get_Parent_m1F7659D1FAFC679076165336ED380C4BD123B452 (AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * __this, const RuntimeMethod* method);
// System.Boolean Mono.Net.Security.AsyncProtocolRequest::get_RunSynchronously()
extern "C" IL2CPP_METHOD_ATTR bool AsyncProtocolRequest_get_RunSynchronously_m66A26ED05543D9AF1ED86287DCE8389BC1CB319A (AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * __this, const RuntimeMethod* method);
// System.Threading.Tasks.Task`1<System.Int32> Mono.Net.Security.MobileAuthenticatedStream::InnerRead(System.Boolean,System.Int32,System.Threading.CancellationToken)
extern "C" IL2CPP_METHOD_ATTR Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * MobileAuthenticatedStream_InnerRead_m0EDB58159985F661C68EBA26247546ED06999D0F (MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * __this, bool ___sync0, int32_t ___requestedSize1, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___cancellationToken2, const RuntimeMethod* method);
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<!0> System.Threading.Tasks.Task`1<System.Int32>::ConfigureAwait(System.Boolean)
inline ConfiguredTaskAwaitable_1_t10E65A50D6EC08956E9F550CD64330F4DED0D38A Task_1_ConfigureAwait_m88DF0C431456B72CA5CF2534AE96969FDB86F982 (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * __this, bool p0, const RuntimeMethod* method)
{
return (( ConfiguredTaskAwaitable_1_t10E65A50D6EC08956E9F550CD64330F4DED0D38A (*) (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *, bool, const RuntimeMethod*))Task_1_ConfigureAwait_m88DF0C431456B72CA5CF2534AE96969FDB86F982_gshared)(__this, p0, method);
}
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<!0> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Int32>::GetAwaiter()
inline ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E ConfiguredTaskAwaitable_1_GetAwaiter_m10B0B84F72A27E623BD94882380E582459F8B8DE (ConfiguredTaskAwaitable_1_t10E65A50D6EC08956E9F550CD64330F4DED0D38A * __this, const RuntimeMethod* method)
{
return (( ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E (*) (ConfiguredTaskAwaitable_1_t10E65A50D6EC08956E9F550CD64330F4DED0D38A *, const RuntimeMethod*))ConfiguredTaskAwaitable_1_GetAwaiter_m10B0B84F72A27E623BD94882380E582459F8B8DE_gshared)(__this, method);
}
// System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>::get_IsCompleted()
inline bool ConfiguredTaskAwaiter_get_IsCompleted_mCBD6C3EF024E1D7C538268F338BD0C4BA712FA92 (ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E * __this, const RuntimeMethod* method)
{
return (( bool (*) (ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E *, const RuntimeMethod*))ConfiguredTaskAwaiter_get_IsCompleted_mCBD6C3EF024E1D7C538268F338BD0C4BA712FA92_gshared)(__this, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>,Mono.Net.Security.AsyncProtocolRequest/<InnerRead>d__25>(!!0&,!!1&)
inline void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E_TisU3CInnerReadU3Ed__25_tCE25EDB99323C3358577085230EE086DE0CADA5E_m8A995342D50B0ABAA2E3EE6CBA355484259E4CF5 (AsyncTaskMethodBuilder_1_tADDA4A1D7E8E45B9C6AC65AF43C5868605F74865 * __this, ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E * p0, U3CInnerReadU3Ed__25_tCE25EDB99323C3358577085230EE086DE0CADA5E * p1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_tADDA4A1D7E8E45B9C6AC65AF43C5868605F74865 *, ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E *, U3CInnerReadU3Ed__25_tCE25EDB99323C3358577085230EE086DE0CADA5E *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E_TisU3CInnerReadU3Ed__25_tCE25EDB99323C3358577085230EE086DE0CADA5E_m8A995342D50B0ABAA2E3EE6CBA355484259E4CF5_gshared)(__this, p0, p1, method);
}
// !0 System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>::GetResult()
inline int32_t ConfiguredTaskAwaiter_GetResult_m05FB789E6901C9496B94A722DF99239A979A2623 (ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E *, const RuntimeMethod*))ConfiguredTaskAwaiter_GetResult_m05FB789E6901C9496B94A722DF99239A979A2623_gshared)(__this, method);
}
// System.Void System.Nullable`1<System.Int32>::.ctor(!0)
inline void Nullable_1__ctor_m11F9C228CFDF836DDFCD7880C09CB4098AB9D7F2 (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * __this, int32_t p0, const RuntimeMethod* method)
{
(( void (*) (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB *, int32_t, const RuntimeMethod*))Nullable_1__ctor_m11F9C228CFDF836DDFCD7880C09CB4098AB9D7F2_gshared)(__this, p0, method);
}
// System.Void System.InvalidOperationException::.ctor()
extern "C" IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_m1F94EA1226068BD1B7EAA1B836A59C99979F579E (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * __this, const RuntimeMethod* method);
// System.Boolean System.Nullable`1<System.Int32>::get_HasValue()
inline bool Nullable_1_get_HasValue_mB664E2C41CADA8413EF8842E6601B8C696A7CE15 (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * __this, const RuntimeMethod* method)
{
return (( bool (*) (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB *, const RuntimeMethod*))Nullable_1_get_HasValue_mB664E2C41CADA8413EF8842E6601B8C696A7CE15_gshared)(__this, method);
}
// !0 System.Nullable`1<System.Int32>::GetValueOrDefault()
inline int32_t Nullable_1_GetValueOrDefault_mE89BB8F302DF31EE202251F4746859285860B6B6 (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB *, const RuntimeMethod*))Nullable_1_GetValueOrDefault_mE89BB8F302DF31EE202251F4746859285860B6B6_gshared)(__this, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::SetException(System.Exception)
inline void AsyncTaskMethodBuilder_1_SetException_m24103DD71F8B33836CA0506874DBB021B9385837 (AsyncTaskMethodBuilder_1_tADDA4A1D7E8E45B9C6AC65AF43C5868605F74865 * __this, Exception_t * p0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_tADDA4A1D7E8E45B9C6AC65AF43C5868605F74865 *, Exception_t *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetException_m24103DD71F8B33836CA0506874DBB021B9385837_gshared)(__this, p0, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::SetResult(!0)
inline void AsyncTaskMethodBuilder_1_SetResult_mDB67DEC1B95ACC8E46B3323B1F19D65EC17ADA9A (AsyncTaskMethodBuilder_1_tADDA4A1D7E8E45B9C6AC65AF43C5868605F74865 * __this, Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB p0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_tADDA4A1D7E8E45B9C6AC65AF43C5868605F74865 *, Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB , const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetResult_mDB67DEC1B95ACC8E46B3323B1F19D65EC17ADA9A_gshared)(__this, p0, method);
}
// System.Void Mono.Net.Security.AsyncProtocolRequest/<InnerRead>d__25::MoveNext()
extern "C" IL2CPP_METHOD_ATTR void U3CInnerReadU3Ed__25_MoveNext_m4AD149EC4A2E6FDA803D63FB72A354300DBD3D0D (U3CInnerReadU3Ed__25_tCE25EDB99323C3358577085230EE086DE0CADA5E * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Nullable`1<System.Int32>>::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
inline void AsyncTaskMethodBuilder_1_SetStateMachine_m982DF1DD4A7F18AB2E91BB6203C81F0246BB094A (AsyncTaskMethodBuilder_1_tADDA4A1D7E8E45B9C6AC65AF43C5868605F74865 * __this, RuntimeObject* p0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_tADDA4A1D7E8E45B9C6AC65AF43C5868605F74865 *, RuntimeObject*, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetStateMachine_m982DF1DD4A7F18AB2E91BB6203C81F0246BB094A_gshared)(__this, p0, method);
}
// System.Void Mono.Net.Security.AsyncProtocolRequest/<InnerRead>d__25::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
extern "C" IL2CPP_METHOD_ATTR void U3CInnerReadU3Ed__25_SetStateMachine_mEBFC49E17D2A224B493E390CDDD4D211EC701EC3 (U3CInnerReadU3Ed__25_tCE25EDB99323C3358577085230EE086DE0CADA5E * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method);
// System.Void System.Threading.CancellationToken::ThrowIfCancellationRequested()
extern "C" IL2CPP_METHOD_ATTR void CancellationToken_ThrowIfCancellationRequested_m13AB667F961F83D8ED759BA402325638F43B0938 (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB * __this, const RuntimeMethod* method);
// System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>> Mono.Net.Security.AsyncProtocolRequest::InnerRead(System.Threading.CancellationToken)
extern "C" IL2CPP_METHOD_ATTR Task_1_t8906695C9865566AA79419735634FF27AC74506E * AsyncProtocolRequest_InnerRead_m902FA39460933B383900CB60BDF8CCFC96BF3499 (AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * __this, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___cancellationToken0, const RuntimeMethod* method);
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<!0> System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>>::ConfigureAwait(System.Boolean)
inline ConfiguredTaskAwaitable_1_tBB2B2DCC75E051E96BC844D2AADFE67C2EB3A872 Task_1_ConfigureAwait_m4A70F9E8C6A5F7C412A2A2ECEC755007AA4A37A3 (Task_1_t8906695C9865566AA79419735634FF27AC74506E * __this, bool p0, const RuntimeMethod* method)
{
return (( ConfiguredTaskAwaitable_1_tBB2B2DCC75E051E96BC844D2AADFE67C2EB3A872 (*) (Task_1_t8906695C9865566AA79419735634FF27AC74506E *, bool, const RuntimeMethod*))Task_1_ConfigureAwait_m4A70F9E8C6A5F7C412A2A2ECEC755007AA4A37A3_gshared)(__this, p0, method);
}
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<!0> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Nullable`1<System.Int32>>::GetAwaiter()
inline ConfiguredTaskAwaiter_t7DF2E84988582301369783F2ECA65B4F26D5A740 ConfiguredTaskAwaitable_1_GetAwaiter_m2334D52A2F0403A09E55D5B4B4AA4DA5B2E318B5 (ConfiguredTaskAwaitable_1_tBB2B2DCC75E051E96BC844D2AADFE67C2EB3A872 * __this, const RuntimeMethod* method)
{
return (( ConfiguredTaskAwaiter_t7DF2E84988582301369783F2ECA65B4F26D5A740 (*) (ConfiguredTaskAwaitable_1_tBB2B2DCC75E051E96BC844D2AADFE67C2EB3A872 *, const RuntimeMethod*))ConfiguredTaskAwaitable_1_GetAwaiter_m2334D52A2F0403A09E55D5B4B4AA4DA5B2E318B5_gshared)(__this, method);
}
// System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Nullable`1<System.Int32>>::get_IsCompleted()
inline bool ConfiguredTaskAwaiter_get_IsCompleted_m1358F59D9346DF4A24793C6A211BC0AF3BC3AB04 (ConfiguredTaskAwaiter_t7DF2E84988582301369783F2ECA65B4F26D5A740 * __this, const RuntimeMethod* method)
{
return (( bool (*) (ConfiguredTaskAwaiter_t7DF2E84988582301369783F2ECA65B4F26D5A740 *, const RuntimeMethod*))ConfiguredTaskAwaiter_get_IsCompleted_m1358F59D9346DF4A24793C6A211BC0AF3BC3AB04_gshared)(__this, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Nullable`1<System.Int32>>,Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24>(!!0&,!!1&)
inline void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t7DF2E84988582301369783F2ECA65B4F26D5A740_TisU3CProcessOperationU3Ed__24_t969904EA513B205F08A3ED1624FE3890853645AA_mFAAE60A8CEF35B2FFAAC5B0CFC0E04A24F309821 (AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 * __this, ConfiguredTaskAwaiter_t7DF2E84988582301369783F2ECA65B4F26D5A740 * p0, U3CProcessOperationU3Ed__24_t969904EA513B205F08A3ED1624FE3890853645AA * p1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 *, ConfiguredTaskAwaiter_t7DF2E84988582301369783F2ECA65B4F26D5A740 *, U3CProcessOperationU3Ed__24_t969904EA513B205F08A3ED1624FE3890853645AA *, const RuntimeMethod*))AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t7DF2E84988582301369783F2ECA65B4F26D5A740_TisU3CProcessOperationU3Ed__24_t969904EA513B205F08A3ED1624FE3890853645AA_mFAAE60A8CEF35B2FFAAC5B0CFC0E04A24F309821_gshared)(__this, p0, p1, method);
}
// !0 System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Nullable`1<System.Int32>>::GetResult()
inline Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB ConfiguredTaskAwaiter_GetResult_m519FEE37CB8F736EE39E33E1C36D4A0EE8C2611C (ConfiguredTaskAwaiter_t7DF2E84988582301369783F2ECA65B4F26D5A740 * __this, const RuntimeMethod* method)
{
return (( Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB (*) (ConfiguredTaskAwaiter_t7DF2E84988582301369783F2ECA65B4F26D5A740 *, const RuntimeMethod*))ConfiguredTaskAwaiter_GetResult_m519FEE37CB8F736EE39E33E1C36D4A0EE8C2611C_gshared)(__this, method);
}
// System.Void System.IO.IOException::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void IOException__ctor_mB64DEFB376AA8E279A647A3770F913B20EF65175 (IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA * __this, String_t* p0, const RuntimeMethod* method);
// System.Threading.Tasks.Task Mono.Net.Security.MobileAuthenticatedStream::InnerWrite(System.Boolean,System.Threading.CancellationToken)
extern "C" IL2CPP_METHOD_ATTR Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * MobileAuthenticatedStream_InnerWrite_m36FEDC8E842C497B62D566D6392287270FD698AC (MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * __this, bool ___sync0, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___cancellationToken1, const RuntimeMethod* method);
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable System.Threading.Tasks.Task::ConfigureAwait(System.Boolean)
extern "C" IL2CPP_METHOD_ATTR ConfiguredTaskAwaitable_t24DE1415466EE20060BE5AD528DC5C812CFA53A9 Task_ConfigureAwait_m2FB91172F9031B0CC520D9D09B658ACC5FD6CE02 (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, bool p0, const RuntimeMethod* method);
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter System.Runtime.CompilerServices.ConfiguredTaskAwaitable::GetAwaiter()
extern "C" IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 ConfiguredTaskAwaitable_GetAwaiter_m1EF40F198D32924E2D0F41E20B99CADBF5DDD303 (ConfiguredTaskAwaitable_t24DE1415466EE20060BE5AD528DC5C812CFA53A9 * __this, const RuntimeMethod* method);
// System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter::get_IsCompleted()
extern "C" IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_get_IsCompleted_mDD0292137E15882AF385AE9D2FB1C8B0BEE89BDD (ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24>(!!0&,!!1&)
inline void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874_TisU3CProcessOperationU3Ed__24_t969904EA513B205F08A3ED1624FE3890853645AA_m00FD9615EAA4D3E47C70D097B61431C2A1965520 (AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 * __this, ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 * p0, U3CProcessOperationU3Ed__24_t969904EA513B205F08A3ED1624FE3890853645AA * p1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 *, ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 *, U3CProcessOperationU3Ed__24_t969904EA513B205F08A3ED1624FE3890853645AA *, const RuntimeMethod*))AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874_TisU3CProcessOperationU3Ed__24_t969904EA513B205F08A3ED1624FE3890853645AA_m00FD9615EAA4D3E47C70D097B61431C2A1965520_gshared)(__this, p0, p1, method);
}
// System.Void System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter::GetResult()
extern "C" IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_GetResult_m7DFE5EAFB3C1F70B40948EFF46E9B13F1E260062 (ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::SetException(System.Exception)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_SetException_m370C484922A63A6EF96E241D1370B8814F1F2D6B (AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 * __this, Exception_t * p0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::SetResult()
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_SetResult_m151016FB698F3BB34A73BAE693A97513A7E4C838 (AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 * __this, const RuntimeMethod* method);
// System.Void Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24::MoveNext()
extern "C" IL2CPP_METHOD_ATTR void U3CProcessOperationU3Ed__24_MoveNext_m8B20266FC4831A26E691F83D54C6903CF264999D (U3CProcessOperationU3Ed__24_t969904EA513B205F08A3ED1624FE3890853645AA * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
extern "C" IL2CPP_METHOD_ATTR void AsyncTaskMethodBuilder_SetStateMachine_mB5DD68F7C49EA6D452AEBA02B1B98AED898C3C25 (AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 * __this, RuntimeObject* p0, const RuntimeMethod* method);
// System.Void Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
extern "C" IL2CPP_METHOD_ATTR void U3CProcessOperationU3Ed__24_SetStateMachine_m9710FA92383D6497F1A16F90563A9056800A59F3 (U3CProcessOperationU3Ed__24_t969904EA513B205F08A3ED1624FE3890853645AA * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method);
// System.Int32 System.Threading.Interlocked::CompareExchange(System.Int32&,System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Interlocked_CompareExchange_mD830160E95D6C589AD31EE9DC8D19BD4A8DCDC03 (int32_t* p0, int32_t p1, int32_t p2, const RuntimeMethod* method);
// System.Threading.Tasks.Task Mono.Net.Security.AsyncProtocolRequest::ProcessOperation(System.Threading.CancellationToken)
extern "C" IL2CPP_METHOD_ATTR Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * AsyncProtocolRequest_ProcessOperation_m6DD0D7800F73C41BE9A5313737357801B22ED71D (AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * __this, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___cancellationToken0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<Mono.Net.Security.AsyncProtocolResult>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Mono.Net.Security.AsyncProtocolRequest/<StartOperation>d__23>(!!0&,!!1&)
inline void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874_TisU3CStartOperationU3Ed__23_tF07DD38BEEE955EB5B1359B816079584899DDEC9_m0BF83BB93CE0CD7BFC1D12292259197900CEA4F8 (AsyncTaskMethodBuilder_1_tE6ADC5F95443C1197F4C34B1207F02A4E0F7EDB2 * __this, ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 * p0, U3CStartOperationU3Ed__23_tF07DD38BEEE955EB5B1359B816079584899DDEC9 * p1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_tE6ADC5F95443C1197F4C34B1207F02A4E0F7EDB2 *, ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 *, U3CStartOperationU3Ed__23_tF07DD38BEEE955EB5B1359B816079584899DDEC9 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874_TisU3CStartOperationU3Ed__23_tF07DD38BEEE955EB5B1359B816079584899DDEC9_m16B2ECF2C3A8B0C1A5A7C09FB227849CD6687054_gshared)(__this, p0, p1, method);
}
// System.Int32 Mono.Net.Security.AsyncProtocolRequest::get_UserResult()
extern "C" IL2CPP_METHOD_ATTR int32_t AsyncProtocolRequest_get_UserResult_m53CEBBACE5031D4CE92308ABBAEA38AEF74DDBD3 (AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * __this, const RuntimeMethod* method);
// System.Void Mono.Net.Security.AsyncProtocolResult::.ctor(System.Int32)
extern "C" IL2CPP_METHOD_ATTR void AsyncProtocolResult__ctor_m9F01278D600A337B6A0CF5F6C9EFF7760BD758D8 (AsyncProtocolResult_t957DDFF1A4D0CC662F930F5C9E09E4FA1FBBFBC0 * __this, int32_t ___result0, const RuntimeMethod* method);
// System.Exception Mono.Net.Security.MobileAuthenticatedStream::GetSSPIException(System.Exception)
extern "C" IL2CPP_METHOD_ATTR Exception_t * MobileAuthenticatedStream_GetSSPIException_m574F0E57FDDC71287516A9908D7E57FC61A8ED27 (Exception_t * ___e0, const RuntimeMethod* method);
// System.Runtime.ExceptionServices.ExceptionDispatchInfo Mono.Net.Security.MobileAuthenticatedStream::SetException(System.Exception)
extern "C" IL2CPP_METHOD_ATTR ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * MobileAuthenticatedStream_SetException_mAFD628C4C8A54C4FE24BFB30C0F5863FDDFC8A7F (MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * __this, Exception_t * ___e0, const RuntimeMethod* method);
// System.Void Mono.Net.Security.AsyncProtocolResult::.ctor(System.Runtime.ExceptionServices.ExceptionDispatchInfo)
extern "C" IL2CPP_METHOD_ATTR void AsyncProtocolResult__ctor_mD63EC8610596D4B15DB1325C58FF32A41DAD48CF (AsyncProtocolResult_t957DDFF1A4D0CC662F930F5C9E09E4FA1FBBFBC0 * __this, ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * ___error0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<Mono.Net.Security.AsyncProtocolResult>::SetException(System.Exception)
inline void AsyncTaskMethodBuilder_1_SetException_m7AC187DC8C778D9C7E06D316EB9BFAE37B4E7D53 (AsyncTaskMethodBuilder_1_tE6ADC5F95443C1197F4C34B1207F02A4E0F7EDB2 * __this, Exception_t * p0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_tE6ADC5F95443C1197F4C34B1207F02A4E0F7EDB2 *, Exception_t *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetException_m4C0B5462ECCB520FACA3C90B353DF596DAAF586D_gshared)(__this, p0, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<Mono.Net.Security.AsyncProtocolResult>::SetResult(!0)
inline void AsyncTaskMethodBuilder_1_SetResult_mD643FBB081E33BE94442E9D8F9694E9008B0C4F0 (AsyncTaskMethodBuilder_1_tE6ADC5F95443C1197F4C34B1207F02A4E0F7EDB2 * __this, AsyncProtocolResult_t957DDFF1A4D0CC662F930F5C9E09E4FA1FBBFBC0 * p0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_tE6ADC5F95443C1197F4C34B1207F02A4E0F7EDB2 *, AsyncProtocolResult_t957DDFF1A4D0CC662F930F5C9E09E4FA1FBBFBC0 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetResult_mD7DA7A17DC0610B11A0AAA364C3CA51FEC1271DB_gshared)(__this, p0, method);
}
// System.Void Mono.Net.Security.AsyncProtocolRequest/<StartOperation>d__23::MoveNext()
extern "C" IL2CPP_METHOD_ATTR void U3CStartOperationU3Ed__23_MoveNext_m8BB4BB3D517CE898003C10FE5B80D375FA4D30A2 (U3CStartOperationU3Ed__23_tF07DD38BEEE955EB5B1359B816079584899DDEC9 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<Mono.Net.Security.AsyncProtocolResult>::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
inline void AsyncTaskMethodBuilder_1_SetStateMachine_m26511B6C387FC1405B1EEDF9BA97FC8B04E833DD (AsyncTaskMethodBuilder_1_tE6ADC5F95443C1197F4C34B1207F02A4E0F7EDB2 * __this, RuntimeObject* p0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_tE6ADC5F95443C1197F4C34B1207F02A4E0F7EDB2 *, RuntimeObject*, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetStateMachine_m5CC21A02320CF3D2DD7894A31123DFD82A428E4C_gshared)(__this, p0, method);
}
// System.Void Mono.Net.Security.AsyncProtocolRequest/<StartOperation>d__23::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
extern "C" IL2CPP_METHOD_ATTR void U3CStartOperationU3Ed__23_SetStateMachine_m0D9AFFD785F28428CCC846BD6A8FCFD38F9B0F9A (U3CStartOperationU3Ed__23_tF07DD38BEEE955EB5B1359B816079584899DDEC9 * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method);
// System.Void Mono.Net.Security.AsyncProtocolRequest::.ctor(Mono.Net.Security.MobileAuthenticatedStream,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void AsyncProtocolRequest__ctor_mFE18CBE3FAA084FF6DF2AD8BECC2CA6DF4C6E769 (AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * __this, MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * ___parent0, bool ___sync1, const RuntimeMethod* method);
// System.Void Mono.Net.Security.BufferOffsetSize::.ctor(System.Byte[],System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void BufferOffsetSize__ctor_m3DE692137428B2E6AB46008825FC5C1B63FDAF4F (BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t ___offset1, int32_t ___size2, const RuntimeMethod* method);
// Mono.Net.Security.BufferOffsetSize Mono.Net.Security.AsyncReadOrWriteRequest::get_UserBuffer()
extern "C" IL2CPP_METHOD_ATTR BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 * AsyncReadOrWriteRequest_get_UserBuffer_m628B7BB1EB536BA73CFE467242E0E749A7B0AE6A (AsyncReadOrWriteRequest_t991B91E93F3980A5879ABAC6738F9BAC770E3B8F * __this, const RuntimeMethod* method);
// System.String System.String::Format(System.String,System.Object,System.Object)
extern "C" IL2CPP_METHOD_ATTR String_t* String_Format_m19325298DBC61AAC016C16F7B3CF97A8A3DEA34A (String_t* p0, RuntimeObject * p1, RuntimeObject * p2, const RuntimeMethod* method);
// System.Void Mono.Net.Security.AsyncReadOrWriteRequest::.ctor(Mono.Net.Security.MobileAuthenticatedStream,System.Boolean,System.Byte[],System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void AsyncReadOrWriteRequest__ctor_m880E292B39EF76B9EDF3A5AB0A9A333A38A5575F (AsyncReadOrWriteRequest_t991B91E93F3980A5879ABAC6738F9BAC770E3B8F * __this, MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * ___parent0, bool ___sync1, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer2, int32_t ___offset3, int32_t ___size4, const RuntimeMethod* method);
// System.ValueTuple`2<System.Int32,System.Boolean> Mono.Net.Security.MobileAuthenticatedStream::ProcessRead(Mono.Net.Security.BufferOffsetSize)
extern "C" IL2CPP_METHOD_ATTR ValueTuple_2_t446756A8057B54D18CAD5BA1D73699DA4B40A264 MobileAuthenticatedStream_ProcessRead_mB005268451AB3F73B29AD1F787B576D5F3279371 (MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * __this, BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 * ___userBuffer0, const RuntimeMethod* method);
// System.Void Mono.Net.Security.AsyncProtocolRequest::set_UserResult(System.Int32)
extern "C" IL2CPP_METHOD_ATTR void AsyncProtocolRequest_set_UserResult_mBF62363240DC9BE894231E56047F594EF452CD19 (AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Int32 Mono.Net.Security.AsyncReadOrWriteRequest::get_CurrentSize()
extern "C" IL2CPP_METHOD_ATTR int32_t AsyncReadOrWriteRequest_get_CurrentSize_m5AE6CC50F25E8504438DF2C9C2E2A44000621142 (AsyncReadOrWriteRequest_t991B91E93F3980A5879ABAC6738F9BAC770E3B8F * __this, const RuntimeMethod* method);
// System.Void Mono.Net.Security.AsyncReadOrWriteRequest::set_CurrentSize(System.Int32)
extern "C" IL2CPP_METHOD_ATTR void AsyncReadOrWriteRequest_set_CurrentSize_mAB6067CAD6F9DB5B3D274FC09E70BFA8DCBA288B (AsyncReadOrWriteRequest_t991B91E93F3980A5879ABAC6738F9BAC770E3B8F * __this, int32_t ___value0, const RuntimeMethod* method);
// System.ValueTuple`2<System.Int32,System.Boolean> Mono.Net.Security.MobileAuthenticatedStream::ProcessWrite(Mono.Net.Security.BufferOffsetSize)
extern "C" IL2CPP_METHOD_ATTR ValueTuple_2_t446756A8057B54D18CAD5BA1D73699DA4B40A264 MobileAuthenticatedStream_ProcessWrite_m30427A9308C97FAD0964F81A6A9F436FB2507F0F (MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * __this, BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 * ___userBuffer0, const RuntimeMethod* method);
// System.Void System.ArgumentNullException::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * __this, String_t* p0, const RuntimeMethod* method);
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6 (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * __this, String_t* p0, const RuntimeMethod* method);
// System.Void System.Net.Security.AuthenticatedStream::.ctor(System.IO.Stream,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void AuthenticatedStream__ctor_mFCFA51BD3C5544DC6390CF5094E1C0DBA133C172 (AuthenticatedStream_t3DD09B1EB437BE77A9B0536EC26005B6914BF501 * __this, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___innerStream0, bool ___leaveInnerStreamOpen1, const RuntimeMethod* method);
// System.Void Mono.Net.Security.BufferOffsetSize2::.ctor(System.Int32)
extern "C" IL2CPP_METHOD_ATTR void BufferOffsetSize2__ctor_m68156625CD993C66D5EA9C5194263DD9A4F59F3F (BufferOffsetSize2_t2E9889F6FB134EF92FC0B930BF630243553F4E00 * __this, int32_t ___size0, const RuntimeMethod* method);
// System.Void System.Runtime.ExceptionServices.ExceptionDispatchInfo::Throw()
extern "C" IL2CPP_METHOD_ATTR void ExceptionDispatchInfo_Throw_m9630C06EF8D7CDF5BD5DC76144CD98C4D9E8D26F (ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * __this, const RuntimeMethod* method);
// System.Void System.InvalidOperationException::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706 (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * __this, String_t* p0, const RuntimeMethod* method);
// System.Void System.Security.Authentication.AuthenticationException::.ctor(System.String,System.Exception)
extern "C" IL2CPP_METHOD_ATTR void AuthenticationException__ctor_m431AB34EFB028337941758B192DF4D045BA93005 (AuthenticationException_tE24BF2E2AD351F0C9586A59191F01918659A7516 * __this, String_t* ___message0, Exception_t * ___innerException1, const RuntimeMethod* method);
// System.Void System.IO.IOException::.ctor(System.String,System.Exception)
extern "C" IL2CPP_METHOD_ATTR void IOException__ctor_m37262C706BEB979358ABEFEA9F9F253E8773D2B7 (IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA * __this, String_t* p0, Exception_t * p1, const RuntimeMethod* method);
// System.Runtime.ExceptionServices.ExceptionDispatchInfo System.Runtime.ExceptionServices.ExceptionDispatchInfo::Capture(System.Exception)
extern "C" IL2CPP_METHOD_ATTR ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * ExceptionDispatchInfo_Capture_m8E5F721466EDFE9AA8BC532F9AE7A859E0766E23 (Exception_t * p0, const RuntimeMethod* method);
// System.Void Mono.Net.Security.AsyncReadRequest::.ctor(Mono.Net.Security.MobileAuthenticatedStream,System.Boolean,System.Byte[],System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void AsyncReadRequest__ctor_mAF75247AFFC230BA5433424D27D13ACF53B3A239 (AsyncReadRequest_t10B0459470C14DC065B5AD60AF378AB78CD138C1 * __this, MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * ___parent0, bool ___sync1, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer2, int32_t ___offset3, int32_t ___size4, const RuntimeMethod* method);
// System.Threading.CancellationToken System.Threading.CancellationToken::get_None()
extern "C" IL2CPP_METHOD_ATTR CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB CancellationToken_get_None_m008D4CF5E11172703A6D781A3C30E6E537004F1D (const RuntimeMethod* method);
// System.Threading.Tasks.Task`1<System.Int32> Mono.Net.Security.MobileAuthenticatedStream::StartOperation(Mono.Net.Security.MobileAuthenticatedStream/OperationType,Mono.Net.Security.AsyncProtocolRequest,System.Threading.CancellationToken)
extern "C" IL2CPP_METHOD_ATTR Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * MobileAuthenticatedStream_StartOperation_mB3763CD0086F3FB7D75AF3E10A9E1532FAD5BDB7 (MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * __this, int32_t ___type0, AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * ___asyncRequest1, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___cancellationToken2, const RuntimeMethod* method);
// System.IAsyncResult System.Threading.Tasks.TaskToApm::Begin(System.Threading.Tasks.Task,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* TaskToApm_Begin_m42DFEB73E3BB1B51E0E8D115AFD215F9F2BF4175 (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * p0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * p1, RuntimeObject * p2, const RuntimeMethod* method);
// !!0 System.Threading.Tasks.TaskToApm::End<System.Int32>(System.IAsyncResult)
inline int32_t TaskToApm_End_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m7A78383A6B69F06EC91BDED0E0F6F3DE02960234 (RuntimeObject* p0, const RuntimeMethod* method)
{
return (( int32_t (*) (RuntimeObject*, const RuntimeMethod*))TaskToApm_End_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m7A78383A6B69F06EC91BDED0E0F6F3DE02960234_gshared)(p0, method);
}
// System.Void Mono.Net.Security.AsyncWriteRequest::.ctor(Mono.Net.Security.MobileAuthenticatedStream,System.Boolean,System.Byte[],System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void AsyncWriteRequest__ctor_mF3534E810074917ABDE7E4CE7EE61715694F9EB8 (AsyncWriteRequest_tFE4740D02401F295910B4006A8390590D5E2C27B * __this, MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * ___parent0, bool ___sync1, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer2, int32_t ___offset3, int32_t ___size4, const RuntimeMethod* method);
// System.Void System.Threading.Tasks.TaskToApm::End(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR void TaskToApm_End_m1BCAAEC9A8AED75C16537F0D568BE8AE8670FD1A (RuntimeObject* p0, const RuntimeMethod* method);
// !0 System.Threading.Tasks.Task`1<System.Int32>::get_Result()
inline int32_t Task_1_get_Result_m80E150EF93681DF361700DB6F78C976BE3EC871B (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *, const RuntimeMethod*))Task_1_get_Result_m80E150EF93681DF361700DB6F78C976BE3EC871B_gshared)(__this, method);
}
// System.Void System.Threading.Tasks.Task::Wait()
extern "C" IL2CPP_METHOD_ATTR void Task_Wait_m7793234C16E5D2B719519CE3C55653EA4D1A815A (Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * __this, const RuntimeMethod* method);
// System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<!0> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::Create()
inline AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 AsyncTaskMethodBuilder_1_Create_mB155504875E2454883E034E847877A9DEA85E318 (const RuntimeMethod* method)
{
return (( AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 (*) (const RuntimeMethod*))AsyncTaskMethodBuilder_1_Create_mB155504875E2454883E034E847877A9DEA85E318_gshared)(method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::Start<Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__58>(!!0&)
inline void AsyncTaskMethodBuilder_1_Start_TisU3CStartOperationU3Ed__58_t9CFBEC306AEE875FF526F77EF660D0493F475BB1_m86EE112E3DDD51CBC6A0F57A35AC3919A128BCB8 (AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 * __this, U3CStartOperationU3Ed__58_t9CFBEC306AEE875FF526F77EF660D0493F475BB1 * p0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 *, U3CStartOperationU3Ed__58_t9CFBEC306AEE875FF526F77EF660D0493F475BB1 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_Start_TisU3CStartOperationU3Ed__58_t9CFBEC306AEE875FF526F77EF660D0493F475BB1_m86EE112E3DDD51CBC6A0F57A35AC3919A128BCB8_gshared)(__this, p0, method);
}
// System.Threading.Tasks.Task`1<!0> System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::get_Task()
inline Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * AsyncTaskMethodBuilder_1_get_Task_m939AAFF5841821CC09C627DCDEB2DFD5B933DFC2 (AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 * __this, const RuntimeMethod* method)
{
return (( Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * (*) (AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_get_Task_m939AAFF5841821CC09C627DCDEB2DFD5B933DFC2_gshared)(__this, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::Start<Mono.Net.Security.MobileAuthenticatedStream/<InnerRead>d__66>(!!0&)
inline void AsyncTaskMethodBuilder_1_Start_TisU3CInnerReadU3Ed__66_tA027A607C6D5A6367A04D2DCAF5FCBB66E6B5CAB_mD28BD96B617BE0AE227EDF31AE26EED9D391C2D4 (AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 * __this, U3CInnerReadU3Ed__66_tA027A607C6D5A6367A04D2DCAF5FCBB66E6B5CAB * p0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 *, U3CInnerReadU3Ed__66_tA027A607C6D5A6367A04D2DCAF5FCBB66E6B5CAB *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_Start_TisU3CInnerReadU3Ed__66_tA027A607C6D5A6367A04D2DCAF5FCBB66E6B5CAB_mD28BD96B617BE0AE227EDF31AE26EED9D391C2D4_gshared)(__this, p0, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::Start<Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67>(!!0&)
inline void AsyncTaskMethodBuilder_Start_TisU3CInnerWriteU3Ed__67_tCEBE4678B01EBC181A242F16C978B7A71367AF43_m04E42D96056940C94B4AC023C0851B1EF14F14F9 (AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 * __this, U3CInnerWriteU3Ed__67_tCEBE4678B01EBC181A242F16C978B7A71367AF43 * p0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 *, U3CInnerWriteU3Ed__67_tCEBE4678B01EBC181A242F16C978B7A71367AF43 *, const RuntimeMethod*))AsyncTaskMethodBuilder_Start_TisU3CInnerWriteU3Ed__67_tCEBE4678B01EBC181A242F16C978B7A71367AF43_m04E42D96056940C94B4AC023C0851B1EF14F14F9_gshared)(__this, p0, method);
}
// System.Void System.Threading.Monitor::Enter(System.Object,System.Boolean&)
extern "C" IL2CPP_METHOD_ATTR void Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5 (RuntimeObject * p0, bool* p1, const RuntimeMethod* method);
// System.Void System.Threading.Monitor::Exit(System.Object)
extern "C" IL2CPP_METHOD_ATTR void Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2 (RuntimeObject * p0, const RuntimeMethod* method);
// System.Void System.ObjectDisposedException::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void ObjectDisposedException__ctor_m8B5D23EA08E42BDE6BC5233CC666295F19BBD2F9 (ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A * __this, String_t* p0, const RuntimeMethod* method);
// System.Void Mono.Net.Security.MobileTlsContext::Dispose()
extern "C" IL2CPP_METHOD_ATTR void MobileTlsContext_Dispose_m28EF01B1A0096B9A7820BAA0A77DB59C96A619DD (MobileTlsContext_tFC684CF3275DF6B898319625C4F3A4D537B8A127 * __this, const RuntimeMethod* method);
// System.Void System.Net.Security.AuthenticatedStream::Dispose(System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void AuthenticatedStream_Dispose_m5610A806886C36698AC932D21F5FBDCAE9FA3E14 (AuthenticatedStream_t3DD09B1EB437BE77A9B0536EC26005B6914BF501 * __this, bool ___disposing0, const RuntimeMethod* method);
// System.IO.Stream System.Net.Security.AuthenticatedStream::get_InnerStream()
extern "C" IL2CPP_METHOD_ATTR Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * AuthenticatedStream_get_InnerStream_mB7DF06B2F011B3F9F301D068438BBD01C24DCDDC (AuthenticatedStream_t3DD09B1EB437BE77A9B0536EC26005B6914BF501 * __this, const RuntimeMethod* method);
// System.Void System.NotSupportedException::.ctor()
extern "C" IL2CPP_METHOD_ATTR void NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33 (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * __this, const RuntimeMethod* method);
// System.Int32 Mono.Net.Security.BufferOffsetSize::get_EndOffset()
extern "C" IL2CPP_METHOD_ATTR int32_t BufferOffsetSize_get_EndOffset_m3D0A21592979F5088101892843183FCFB8C9BF2A (BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 * __this, const RuntimeMethod* method);
// System.Void Mono.Net.Security.MobileAuthenticatedStream/<>c__DisplayClass66_0::.ctor()
extern "C" IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass66_0__ctor_m4ADA8611B27CC1C1BE9AFD1D22978A6621F720BE (U3CU3Ec__DisplayClass66_0_t57BA0EF5D295E67BF00C608A8D3AC8A83A7606CC * __this, const RuntimeMethod* method);
// System.Int32 Mono.Net.Security.BufferOffsetSize::get_Remaining()
extern "C" IL2CPP_METHOD_ATTR int32_t BufferOffsetSize_get_Remaining_mBD3EA6B0F643284A54FDCA2860FE0F65C5CAF054 (BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 * __this, const RuntimeMethod* method);
// System.Int32 System.Math::Min(System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t Math_Min_mC950438198519FB2B0260FCB91220847EE4BB525 (int32_t p0, int32_t p1, const RuntimeMethod* method);
// System.Void System.Func`1<System.Int32>::.ctor(System.Object,System.IntPtr)
inline void Func_1__ctor_m27E13FE1436758E3083686F1DC59AABC45F50527 (Func_1_t30631A63BE46FE93700939B764202D360449FE30 * __this, RuntimeObject * p0, intptr_t p1, const RuntimeMethod* method)
{
(( void (*) (Func_1_t30631A63BE46FE93700939B764202D360449FE30 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_1__ctor_m27E13FE1436758E3083686F1DC59AABC45F50527_gshared)(__this, p0, p1, method);
}
// System.Threading.Tasks.Task`1<!!0> System.Threading.Tasks.Task::Run<System.Int32>(System.Func`1<!!0>)
inline Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * Task_Run_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m11A2B12F2DF2E9E71644C83D3A1601E8BCC4929A (Func_1_t30631A63BE46FE93700939B764202D360449FE30 * p0, const RuntimeMethod* method)
{
return (( Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * (*) (Func_1_t30631A63BE46FE93700939B764202D360449FE30 *, const RuntimeMethod*))Task_Run_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m11A2B12F2DF2E9E71644C83D3A1601E8BCC4929A_gshared)(p0, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>,Mono.Net.Security.MobileAuthenticatedStream/<InnerRead>d__66>(!!0&,!!1&)
inline void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E_TisU3CInnerReadU3Ed__66_tA027A607C6D5A6367A04D2DCAF5FCBB66E6B5CAB_m27EC0547CE146B1E82C108C283D1DAD2AEF81083 (AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 * __this, ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E * p0, U3CInnerReadU3Ed__66_tA027A607C6D5A6367A04D2DCAF5FCBB66E6B5CAB * p1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 *, ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E *, U3CInnerReadU3Ed__66_tA027A607C6D5A6367A04D2DCAF5FCBB66E6B5CAB *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E_TisU3CInnerReadU3Ed__66_tA027A607C6D5A6367A04D2DCAF5FCBB66E6B5CAB_m27EC0547CE146B1E82C108C283D1DAD2AEF81083_gshared)(__this, p0, p1, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::SetException(System.Exception)
inline void AsyncTaskMethodBuilder_1_SetException_mC6242DDCD4119CD73267E4B9888FF3474D795821 (AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 * __this, Exception_t * p0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 *, Exception_t *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetException_mC6242DDCD4119CD73267E4B9888FF3474D795821_gshared)(__this, p0, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::SetResult(!0)
inline void AsyncTaskMethodBuilder_1_SetResult_mAFB12C1766B74D412E293BA7AB711615A14C2230 (AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 * __this, int32_t p0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 *, int32_t, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetResult_mAFB12C1766B74D412E293BA7AB711615A14C2230_gshared)(__this, p0, method);
}
// System.Void Mono.Net.Security.MobileAuthenticatedStream/<InnerRead>d__66::MoveNext()
extern "C" IL2CPP_METHOD_ATTR void U3CInnerReadU3Ed__66_MoveNext_mDF4D1A1689C7CC5B3E42580E12BA513E31959F96 (U3CInnerReadU3Ed__66_tA027A607C6D5A6367A04D2DCAF5FCBB66E6B5CAB * __this, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
inline void AsyncTaskMethodBuilder_1_SetStateMachine_mADB2F2ED219BD69EC85F7516C62FB23F840BB877 (AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 * __this, RuntimeObject* p0, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 *, RuntimeObject*, const RuntimeMethod*))AsyncTaskMethodBuilder_1_SetStateMachine_mADB2F2ED219BD69EC85F7516C62FB23F840BB877_gshared)(__this, p0, method);
}
// System.Void Mono.Net.Security.MobileAuthenticatedStream/<InnerRead>d__66::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
extern "C" IL2CPP_METHOD_ATTR void U3CInnerReadU3Ed__66_SetStateMachine_m27E2C20E7DC4AC988ADDF81E73A957C100424381 (U3CInnerReadU3Ed__66_tA027A607C6D5A6367A04D2DCAF5FCBB66E6B5CAB * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method);
// System.Void System.Action::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void Action__ctor_m570E96B2A0C48BC1DC6788460316191F24572760 (Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * __this, RuntimeObject * p0, intptr_t p1, const RuntimeMethod* method);
// System.Threading.Tasks.Task System.Threading.Tasks.Task::Run(System.Action)
extern "C" IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * Task_Run_m201E4C04F97BCF541633AF913DF20C6FF7872E44 (Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * p0, const RuntimeMethod* method);
// System.Threading.Tasks.Task System.IO.Stream::WriteAsync(System.Byte[],System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * Stream_WriteAsync_mCFD85AD4F5D46429304AD261776AD0B8CE5CEF84 (Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* p0, int32_t p1, int32_t p2, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable/ConfiguredTaskAwaiter,Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67>(!!0&,!!1&)
inline void AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874_TisU3CInnerWriteU3Ed__67_tCEBE4678B01EBC181A242F16C978B7A71367AF43_mFD398737DB235705CD93D5EBA8FF31DDF273D6A5 (AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 * __this, ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 * p0, U3CInnerWriteU3Ed__67_tCEBE4678B01EBC181A242F16C978B7A71367AF43 * p1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 *, ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 *, U3CInnerWriteU3Ed__67_tCEBE4678B01EBC181A242F16C978B7A71367AF43 *, const RuntimeMethod*))AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874_TisU3CInnerWriteU3Ed__67_tCEBE4678B01EBC181A242F16C978B7A71367AF43_mFD398737DB235705CD93D5EBA8FF31DDF273D6A5_gshared)(__this, p0, p1, method);
}
// System.Void Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67::MoveNext()
extern "C" IL2CPP_METHOD_ATTR void U3CInnerWriteU3Ed__67_MoveNext_mD7A964B6974275AD771AB15475A775E3393EE542 (U3CInnerWriteU3Ed__67_tCEBE4678B01EBC181A242F16C978B7A71367AF43 * __this, const RuntimeMethod* method);
// System.Void Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
extern "C" IL2CPP_METHOD_ATTR void U3CInnerWriteU3Ed__67_SetStateMachine_mDEA51EA28DEE2587F5E63C6D535E4EDA8943C11A (U3CInnerWriteU3Ed__67_tCEBE4678B01EBC181A242F16C978B7A71367AF43 * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method);
// System.Void Mono.Net.Security.MobileAuthenticatedStream::CheckThrow(System.Boolean,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void MobileAuthenticatedStream_CheckThrow_m2AAEC9435176D4AA10890A896C5909330B23683E (MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * __this, bool ___authSuccessCheck0, bool ___shutdownCheck1, const RuntimeMethod* method);
// System.Void Mono.Net.Security.BufferOffsetSize2::Reset()
extern "C" IL2CPP_METHOD_ATTR void BufferOffsetSize2_Reset_m4426212B4ECDC2D1487AE5B825918B747D947AB7 (BufferOffsetSize2_t2E9889F6FB134EF92FC0B930BF630243553F4E00 * __this, const RuntimeMethod* method);
// System.Threading.Tasks.Task`1<Mono.Net.Security.AsyncProtocolResult> Mono.Net.Security.AsyncProtocolRequest::StartOperation(System.Threading.CancellationToken)
extern "C" IL2CPP_METHOD_ATTR Task_1_t6D67FA6126155FF2C2E227A859409D83DFAFA9BD * AsyncProtocolRequest_StartOperation_mA13EA6B8ED143BC043F506815D05EB3F49F22682 (AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * __this, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___cancellationToken0, const RuntimeMethod* method);
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<!0> System.Threading.Tasks.Task`1<Mono.Net.Security.AsyncProtocolResult>::ConfigureAwait(System.Boolean)
inline ConfiguredTaskAwaitable_1_t0A9F15BC9C9FD2CB00C9B0EB52DDEE933EC860A1 Task_1_ConfigureAwait_m75E697C17E49CB06391311471AC0E4FAB9C08CC4 (Task_1_t6D67FA6126155FF2C2E227A859409D83DFAFA9BD * __this, bool p0, const RuntimeMethod* method)
{
return (( ConfiguredTaskAwaitable_1_t0A9F15BC9C9FD2CB00C9B0EB52DDEE933EC860A1 (*) (Task_1_t6D67FA6126155FF2C2E227A859409D83DFAFA9BD *, bool, const RuntimeMethod*))Task_1_ConfigureAwait_m60DD864D9488EACBA6C087E87E448797C1C8B76B_gshared)(__this, p0, method);
}
// System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<!0> System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<Mono.Net.Security.AsyncProtocolResult>::GetAwaiter()
inline ConfiguredTaskAwaiter_t688A02A53D1A4A883C7DDAFE0F07F17691C51E96 ConfiguredTaskAwaitable_1_GetAwaiter_m84063760B3748345CCC1C5EE19101346F0EBC3D5 (ConfiguredTaskAwaitable_1_t0A9F15BC9C9FD2CB00C9B0EB52DDEE933EC860A1 * __this, const RuntimeMethod* method)
{
return (( ConfiguredTaskAwaiter_t688A02A53D1A4A883C7DDAFE0F07F17691C51E96 (*) (ConfiguredTaskAwaitable_1_t0A9F15BC9C9FD2CB00C9B0EB52DDEE933EC860A1 *, const RuntimeMethod*))ConfiguredTaskAwaitable_1_GetAwaiter_m86C543D72022CB5D0C43053C4AF5F37EA4E690A7_gshared)(__this, method);
}
// System.Boolean System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<Mono.Net.Security.AsyncProtocolResult>::get_IsCompleted()
inline bool ConfiguredTaskAwaiter_get_IsCompleted_m49530C37AAFA1E0E489AF08AB80C56EE30ACAA80 (ConfiguredTaskAwaiter_t688A02A53D1A4A883C7DDAFE0F07F17691C51E96 * __this, const RuntimeMethod* method)
{
return (( bool (*) (ConfiguredTaskAwaiter_t688A02A53D1A4A883C7DDAFE0F07F17691C51E96 *, const RuntimeMethod*))ConfiguredTaskAwaiter_get_IsCompleted_mA1F08104B225C8640528B38BFD0AAAEE84541586_gshared)(__this, method);
}
// System.Void System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Int32>::AwaitUnsafeOnCompleted<System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<Mono.Net.Security.AsyncProtocolResult>,Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__58>(!!0&,!!1&)
inline void AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t688A02A53D1A4A883C7DDAFE0F07F17691C51E96_TisU3CStartOperationU3Ed__58_t9CFBEC306AEE875FF526F77EF660D0493F475BB1_m10F3A6CBD71592E7C6A8E694309C48D87D4E95AD (AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 * __this, ConfiguredTaskAwaiter_t688A02A53D1A4A883C7DDAFE0F07F17691C51E96 * p0, U3CStartOperationU3Ed__58_t9CFBEC306AEE875FF526F77EF660D0493F475BB1 * p1, const RuntimeMethod* method)
{
(( void (*) (AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 *, ConfiguredTaskAwaiter_t688A02A53D1A4A883C7DDAFE0F07F17691C51E96 *, U3CStartOperationU3Ed__58_t9CFBEC306AEE875FF526F77EF660D0493F475BB1 *, const RuntimeMethod*))AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_tFB3C4197768C6CF02BE088F703AA6E46D703D46E_TisU3CStartOperationU3Ed__58_t9CFBEC306AEE875FF526F77EF660D0493F475BB1_mB6158F07BDA3F4D4DFB299A8E235E405DAB18C74_gshared)(__this, p0, p1, method);
}
// !0 System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<Mono.Net.Security.AsyncProtocolResult>::GetResult()
inline AsyncProtocolResult_t957DDFF1A4D0CC662F930F5C9E09E4FA1FBBFBC0 * ConfiguredTaskAwaiter_GetResult_mE3D98A933BFBF815C080F9C52674D4927E5C86FE (ConfiguredTaskAwaiter_t688A02A53D1A4A883C7DDAFE0F07F17691C51E96 * __this, const RuntimeMethod* method)
{
return (( AsyncProtocolResult_t957DDFF1A4D0CC662F930F5C9E09E4FA1FBBFBC0 * (*) (ConfiguredTaskAwaiter_t688A02A53D1A4A883C7DDAFE0F07F17691C51E96 *, const RuntimeMethod*))ConfiguredTaskAwaiter_GetResult_m4EE5BF4F8536CCC951CA3F4E3C494411AE2D507E_gshared)(__this, method);
}
// System.String System.String::Concat(System.String,System.String)
extern "C" IL2CPP_METHOD_ATTR String_t* String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE (String_t* p0, String_t* p1, const RuntimeMethod* method);
// System.Exception Mono.Net.Security.MobileAuthenticatedStream::GetIOException(System.Exception,System.String)
extern "C" IL2CPP_METHOD_ATTR Exception_t * MobileAuthenticatedStream_GetIOException_mE435E11E49448A2035BCABF04AA5F72F44DC26D4 (Exception_t * ___e0, String_t* ___message1, const RuntimeMethod* method);
// System.Runtime.ExceptionServices.ExceptionDispatchInfo Mono.Net.Security.AsyncProtocolResult::get_Error()
extern "C" IL2CPP_METHOD_ATTR ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * AsyncProtocolResult_get_Error_m90252805C3FCD7277CD1CB01CB765183889E6E29 (AsyncProtocolResult_t957DDFF1A4D0CC662F930F5C9E09E4FA1FBBFBC0 * __this, const RuntimeMethod* method);
// System.Int32 Mono.Net.Security.AsyncProtocolResult::get_UserResult()
extern "C" IL2CPP_METHOD_ATTR int32_t AsyncProtocolResult_get_UserResult_mCCD14DC517D32C83AA61320D6D1D2E7F1430A3C8 (AsyncProtocolResult_t957DDFF1A4D0CC662F930F5C9E09E4FA1FBBFBC0 * __this, const RuntimeMethod* method);
// System.Void Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__58::MoveNext()
extern "C" IL2CPP_METHOD_ATTR void U3CStartOperationU3Ed__58_MoveNext_m8484CAD90FCBB0E2C0D16FFA928EF43362834466 (U3CStartOperationU3Ed__58_t9CFBEC306AEE875FF526F77EF660D0493F475BB1 * __this, const RuntimeMethod* method);
// System.Void Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__58::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
extern "C" IL2CPP_METHOD_ATTR void U3CStartOperationU3Ed__58_SetStateMachine_m2DAE3399BC870A25A88A99F04B5C36A1FECC47BC (U3CStartOperationU3Ed__58_t9CFBEC306AEE875FF526F77EF660D0493F475BB1 * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method);
// System.Void System.GC::SuppressFinalize(System.Object)
extern "C" IL2CPP_METHOD_ATTR void GC_SuppressFinalize_m037319A9B95A5BA437E806DE592802225EE5B425 (RuntimeObject * p0, const RuntimeMethod* method);
// System.Void System.Object::Finalize()
extern "C" IL2CPP_METHOD_ATTR void Object_Finalize_m4015B7D3A44DE125C5FE34D7276CD4697C06F380 (RuntimeObject * __this, const RuntimeMethod* method);
// System.Void System.Guid::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void Guid__ctor_mC668142577A40A77D13B78AADDEFFFC2E2705079 (Guid_t * __this, String_t* p0, const RuntimeMethod* method);
// System.OperatingSystem System.Environment::get_OSVersion()
extern "C" IL2CPP_METHOD_ATTR OperatingSystem_tBB05846D5AA6960FFEB42C59E5FE359255C2BE83 * Environment_get_OSVersion_mD6E99E279170E00D17F7D29F242EF65434812233 (const RuntimeMethod* method);
// System.PlatformID System.OperatingSystem::get_Platform()
extern "C" IL2CPP_METHOD_ATTR int32_t OperatingSystem_get_Platform_m36635DD0A3D5442E515AB8D2EA3C7092348A5181 (OperatingSystem_tBB05846D5AA6960FFEB42C59E5FE359255C2BE83 * __this, const RuntimeMethod* method);
// System.Boolean System.IO.File::Exists(System.String)
extern "C" IL2CPP_METHOD_ATTR bool File_Exists_m6B9BDD8EEB33D744EB0590DD27BC0152FAFBD1FB (String_t* p0, const RuntimeMethod* method);
// System.Void System.Security.Cryptography.X509Certificates.X509Chain::.ctor()
extern "C" IL2CPP_METHOD_ATTR void X509Chain__ctor_mC6F6E3F01D21638D909E13D151923EB4BF592CAB (X509Chain_t4A28E9A30CBB331C9B68AE4AFCB30625C6C8B538 * __this, const RuntimeMethod* method);
// System.Void System.Security.Cryptography.X509Certificates.X509ChainPolicy::.ctor(System.Security.Cryptography.X509Certificates.X509CertificateCollection)
extern "C" IL2CPP_METHOD_ATTR void X509ChainPolicy__ctor_m53AB51FBA21115B866EB0AB6AEE039B6167F6A4D (X509ChainPolicy_tCA1D9E9842A16ACD71D35E9C36659E3E861D74DD * __this, X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 * ___store0, const RuntimeMethod* method);
// System.Void System.Security.Cryptography.X509Certificates.X509Chain::set_ChainPolicy(System.Security.Cryptography.X509Certificates.X509ChainPolicy)
extern "C" IL2CPP_METHOD_ATTR void X509Chain_set_ChainPolicy_mFFC95743026B78C7B6DA33B51CEBD81FA2215EDD (X509Chain_t4A28E9A30CBB331C9B68AE4AFCB30625C6C8B538 * __this, X509ChainPolicy_tCA1D9E9842A16ACD71D35E9C36659E3E861D74DD * ___value0, const RuntimeMethod* method);
// System.Security.Cryptography.X509Certificates.X509CertificateCollection/X509CertificateEnumerator System.Security.Cryptography.X509Certificates.X509CertificateCollection::GetEnumerator()
extern "C" IL2CPP_METHOD_ATTR X509CertificateEnumerator_t99AEDECD77BFC6083D8C98F9760BF7876D5B886B * X509CertificateCollection_GetEnumerator_mD28E40E9104E833480FA012B1CE905AC08A7AD4F (X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 * __this, const RuntimeMethod* method);
// System.Security.Cryptography.X509Certificates.X509Certificate System.Security.Cryptography.X509Certificates.X509CertificateCollection/X509CertificateEnumerator::get_Current()
extern "C" IL2CPP_METHOD_ATTR X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 * X509CertificateEnumerator_get_Current_mDA87DA5B1CD027E452E22112ED43423F95573BE0 (X509CertificateEnumerator_t99AEDECD77BFC6083D8C98F9760BF7876D5B886B * __this, const RuntimeMethod* method);
// System.Void Mono.Unity.CertHelper::AddCertificateToNativeChain(Mono.Unity.UnityTls/unitytls_x509list*,System.Security.Cryptography.X509Certificates.X509Certificate,Mono.Unity.UnityTls/unitytls_errorstate*)
extern "C" IL2CPP_METHOD_ATTR void CertHelper_AddCertificateToNativeChain_m223E545813937EC29B6EF428DAE3F45551728166 (unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * ___nativeCertificateChain0, X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 * ___certificate1, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState2, const RuntimeMethod* method);
// System.Boolean System.Security.Cryptography.X509Certificates.X509CertificateCollection/X509CertificateEnumerator::MoveNext()
extern "C" IL2CPP_METHOD_ATTR bool X509CertificateEnumerator_MoveNext_m472F420F968A52D970486D21BFFABCCE5329F714 (X509CertificateEnumerator_t99AEDECD77BFC6083D8C98F9760BF7876D5B886B * __this, const RuntimeMethod* method);
// Mono.Unity.UnityTls/unitytls_interface_struct Mono.Unity.UnityTls::get_NativeInterface()
extern "C" IL2CPP_METHOD_ATTR unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF * UnityTls_get_NativeInterface_mB7B44E93A89C271D6C65B44DE2EE9C4A5786E88E (const RuntimeMethod* method);
// System.IntPtr System.IntPtr::op_Explicit(System.Int32)
extern "C" IL2CPP_METHOD_ATTR intptr_t IntPtr_op_Explicit_m62A5ED7757661C8DB6AEF4816829ED92A1929F91 (int32_t p0, const RuntimeMethod* method);
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_append_der_t::Invoke(Mono.Unity.UnityTls/unitytls_x509list*,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*)
extern "C" IL2CPP_METHOD_ATTR void unitytls_x509list_append_der_t_Invoke_m1606FADA7E902086F7AEE6D8F304867C7E0A434F (unitytls_x509list_append_der_t_tDA1C93A382058FB563F8772B119D5B598DC37A5C * __this, unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * ___list0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState3, const RuntimeMethod* method);
// System.Security.Cryptography.X509Certificates.X509CertificateImpl System.Security.Cryptography.X509Certificates.X509Certificate::get_Impl()
extern "C" IL2CPP_METHOD_ATTR X509CertificateImpl_t89610BFDE87B872143A4623CFC7F17275EB48313 * X509Certificate_get_Impl_m2CFDB01127BFCE77F0FABDA64432CB20340EB26D (X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 * __this, const RuntimeMethod* method);
// System.Int32 System.Security.Cryptography.X509Certificates.X509CertificateImplCollection::get_Count()
extern "C" IL2CPP_METHOD_ATTR int32_t X509CertificateImplCollection_get_Count_m1503CBCEDE4650173097C408898F1806582CC77E (X509CertificateImplCollection_t2F7A6E9F160116CE64224D56187C92ECD7FA7242 * __this, const RuntimeMethod* method);
// System.Security.Cryptography.X509Certificates.X509CertificateImpl System.Security.Cryptography.X509Certificates.X509CertificateImplCollection::get_Item(System.Int32)
extern "C" IL2CPP_METHOD_ATTR X509CertificateImpl_t89610BFDE87B872143A4623CFC7F17275EB48313 * X509CertificateImplCollection_get_Item_m24CA14D68946B6E0006B162BA284EB51F826F276 (X509CertificateImplCollection_t2F7A6E9F160116CE64224D56187C92ECD7FA7242 * __this, int32_t ___index0, const RuntimeMethod* method);
// System.Void System.Security.Cryptography.X509Certificates.X509Certificate::.ctor(System.Security.Cryptography.X509Certificates.X509CertificateImpl)
extern "C" IL2CPP_METHOD_ATTR void X509Certificate__ctor_m4CF4E6ECED8EF961E498F6D17166A23DF3CA05CF (X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 * __this, X509CertificateImpl_t89610BFDE87B872143A4623CFC7F17275EB48313 * p0, const RuntimeMethod* method);
// System.IntPtr Mono.Unity.UnityTls::GetUnityTlsInterface()
extern "C" IL2CPP_METHOD_ATTR intptr_t UnityTls_GetUnityTlsInterface_mB672D3C985554FC0EDFAB68EB4A77BCB74FEE719 (const RuntimeMethod* method);
// System.Boolean System.IntPtr::op_Equality(System.IntPtr,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR bool IntPtr_op_Equality_mEE8D9FD2DFE312BBAA8B4ED3BF7976B3142A5934 (intptr_t p0, intptr_t p1, const RuntimeMethod* method);
// !!0 System.Runtime.InteropServices.Marshal::PtrToStructure<Mono.Unity.UnityTls/unitytls_interface_struct>(System.IntPtr)
inline unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF * Marshal_PtrToStructure_Tisunitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF_m7EDA997C9EC997C0EC8D05B1150DD34723490193 (intptr_t p0, const RuntimeMethod* method)
{
return (( unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF * (*) (intptr_t, const RuntimeMethod*))Marshal_PtrToStructure_TisRuntimeObject_mDB88EE58460703A7A664B670DE68020F9D1CAD72_gshared)(p0, method);
}
// System.Boolean System.Enum::HasFlag(System.Enum)
extern "C" IL2CPP_METHOD_ATTR bool Enum_HasFlag_m5D934A541DEEF44DBF3415EE47F8CCED9370C173 (RuntimeObject * __this, Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 * p0, const RuntimeMethod* method);
// Mono.Security.Interface.IMonoSslStream System.Net.Security.SslStream::CreateMonoSslStream(System.IO.Stream,System.Boolean,Mono.Security.Interface.MonoTlsProvider,Mono.Security.Interface.MonoTlsSettings)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* SslStream_CreateMonoSslStream_m2DA6B0A589490351B37010F5BCF2DA3D734FF266 (Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___innerStream0, bool ___leaveInnerStreamOpen1, MonoTlsProvider_tDCD056C5BBBE59ED6BAF63F25952B406C1143C27 * ___provider2, MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * ___settings3, const RuntimeMethod* method);
// System.Void Mono.Unity.UnityTlsStream::.ctor(System.IO.Stream,System.Boolean,System.Net.Security.SslStream,Mono.Security.Interface.MonoTlsSettings,Mono.Security.Interface.MonoTlsProvider)
extern "C" IL2CPP_METHOD_ATTR void UnityTlsStream__ctor_mCFCFF6B6CCEB2BEBB904E26AB3BF22E888C75C3F (UnityTlsStream_tE8613CD306315DCC3E00A7B1036E20E280F83166 * __this, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___innerStream0, bool ___leaveInnerStreamOpen1, SslStream_t9CEE8F6E125C734DD807D9289C86860FFEE81087 * ___owner2, MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * ___settings3, MonoTlsProvider_tDCD056C5BBBE59ED6BAF63F25952B406C1143C27 * ___provider4, const RuntimeMethod* method);
// System.Security.Cryptography.X509Certificates.X509Chain Mono.Net.Security.SystemCertificateValidator::CreateX509Chain(System.Security.Cryptography.X509Certificates.X509CertificateCollection)
extern "C" IL2CPP_METHOD_ATTR X509Chain_t4A28E9A30CBB331C9B68AE4AFCB30625C6C8B538 * SystemCertificateValidator_CreateX509Chain_mB9965896005703ADC050BC1E6415D30FBDC42091 (X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 * ___certs0, const RuntimeMethod* method);
// System.Int32 System.Collections.CollectionBase::get_Count()
extern "C" IL2CPP_METHOD_ATTR int32_t CollectionBase_get_Count_mFB8B3BCCCE581FEFA96FF5A6C1629E7EC092D92C (CollectionBase_tF5D4583FF325726066A9803839A04E9C0084ED01 * __this, const RuntimeMethod* method);
// System.Boolean System.String::IsNullOrEmpty(System.String)
extern "C" IL2CPP_METHOD_ATTR bool String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229 (String_t* p0, const RuntimeMethod* method);
// System.Int32 System.String::IndexOf(System.Char)
extern "C" IL2CPP_METHOD_ATTR int32_t String_IndexOf_m2909B8CF585E1BD0C81E11ACA2F48012156FD5BD (String_t* __this, Il2CppChar p0, const RuntimeMethod* method);
// System.String System.String::Substring(System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR String_t* String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB (String_t* __this, int32_t p0, int32_t p1, const RuntimeMethod* method);
// Mono.Unity.UnityTls/unitytls_errorstate Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_errorstate_create_t::Invoke()
extern "C" IL2CPP_METHOD_ATTR unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 unitytls_errorstate_create_t_Invoke_m2A913757D4713362254BE457E8792AD299677D42 (unitytls_errorstate_create_t_t104BADBBE1265BD1A3F84C153EB7A67CDDBF35A9 * __this, const RuntimeMethod* method);
// Mono.Unity.UnityTls/unitytls_x509list* Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_create_t::Invoke(Mono.Unity.UnityTls/unitytls_errorstate*)
extern "C" IL2CPP_METHOD_ATTR unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * unitytls_x509list_create_t_Invoke_m45B75F9286D2C1DC14AECFA258F419C3A1989A79 (unitytls_x509list_create_t_tC040C2CF47D5426B7F6B1D6A2751507DC681CFF3 * __this, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState0, const RuntimeMethod* method);
// System.Void Mono.Unity.CertHelper::AddCertificatesToNativeChain(Mono.Unity.UnityTls/unitytls_x509list*,System.Security.Cryptography.X509Certificates.X509CertificateCollection,Mono.Unity.UnityTls/unitytls_errorstate*)
extern "C" IL2CPP_METHOD_ATTR void CertHelper_AddCertificatesToNativeChain_m1D22A9A50CA05E1F931B8B309E047092DDE01CFF (unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * ___nativeCertificateChain0, X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 * ___certificates1, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState2, const RuntimeMethod* method);
// Mono.Unity.UnityTls/unitytls_x509list_ref Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_get_ref_t::Invoke(Mono.Unity.UnityTls/unitytls_x509list*,Mono.Unity.UnityTls/unitytls_errorstate*)
extern "C" IL2CPP_METHOD_ATTR unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 unitytls_x509list_get_ref_t_Invoke_mDCA9357333DA8B614E6C0F68922B3E5306A6534C (unitytls_x509list_get_ref_t_t1FAB0CD82E536E0C9EB5255B145FC5AF434B3986 * __this, unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * ___list0, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState1, const RuntimeMethod* method);
// System.Text.Encoding System.Text.Encoding::get_UTF8()
extern "C" IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9 (const RuntimeMethod* method);
// System.Security.Cryptography.X509Certificates.X509CertificateCollection Mono.Security.Interface.MonoTlsSettings::get_TrustAnchors()
extern "C" IL2CPP_METHOD_ATTR X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 * MonoTlsSettings_get_TrustAnchors_mD6ADD8546ED8D9C0BA58A25F0ADA0BBB5127F28F (MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * __this, const RuntimeMethod* method);
// Mono.Unity.UnityTls/unitytls_x509verify_result Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509verify_explicit_ca_t::Invoke(Mono.Unity.UnityTls/unitytls_x509list_ref,Mono.Unity.UnityTls/unitytls_x509list_ref,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_x509verify_callback,System.Void*,Mono.Unity.UnityTls/unitytls_errorstate*)
extern "C" IL2CPP_METHOD_ATTR uint32_t unitytls_x509verify_explicit_ca_t_Invoke_mCC06B1AF3BCD90C24E3CA05A785528588C7CCEB5 (unitytls_x509verify_explicit_ca_t_t6C8BE964C5EE9B24D3734F028EFCD83F5893D2E6 * __this, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 ___chain0, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 ___trustCA1, uint8_t* ___cn2, intptr_t ___cnLen3, unitytls_x509verify_callback_t90C02C529DB2B9F434C18797BACC456BCB5400A9 * ___cb4, void* ___userData5, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState6, const RuntimeMethod* method);
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_free_t::Invoke(Mono.Unity.UnityTls/unitytls_x509list*)
extern "C" IL2CPP_METHOD_ATTR void unitytls_x509list_free_t_Invoke_m733759A5A94705388D233DB23FDFECAE2ADACDF0 (unitytls_x509list_free_t_tE3FC523507F07BD9901D84E9F6968CD8A583FF09 * __this, unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * ___list0, const RuntimeMethod* method);
// Mono.Unity.UnityTls/unitytls_x509verify_result Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509verify_default_ca_t::Invoke(Mono.Unity.UnityTls/unitytls_x509list_ref,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_x509verify_callback,System.Void*,Mono.Unity.UnityTls/unitytls_errorstate*)
extern "C" IL2CPP_METHOD_ATTR uint32_t unitytls_x509verify_default_ca_t_Invoke_mE5D523AFD08CCE9A427389F17611D56C6D905B98 (unitytls_x509verify_default_ca_t_t4BACB6B49AA85C025AF9B18B3F30F63C9881DE2D * __this, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 ___chain0, uint8_t* ___cn1, intptr_t ___cnLen2, unitytls_x509verify_callback_t90C02C529DB2B9F434C18797BACC456BCB5400A9 * ___cb3, void* ___userData4, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState5, const RuntimeMethod* method);
// Mono.Security.Interface.MonoSslPolicyErrors Mono.Unity.UnityTlsConversions::VerifyResultToPolicyErrror(Mono.Unity.UnityTls/unitytls_x509verify_result)
extern "C" IL2CPP_METHOD_ATTR int32_t UnityTlsConversions_VerifyResultToPolicyErrror_m0F695E9B6732F71E1719D642E28A569B39A56BB7 (uint32_t ___verifyResult0, const RuntimeMethod* method);
// System.Void Mono.Security.Interface.MonoTlsProvider::.ctor()
extern "C" IL2CPP_METHOD_ATTR void MonoTlsProvider__ctor_m627444C019C32E18FC68ABF1AF33577E54A9705B (MonoTlsProvider_tDCD056C5BBBE59ED6BAF63F25952B406C1143C27 * __this, const RuntimeMethod* method);
// System.Void Mono.Net.Security.MobileAuthenticatedStream::.ctor(System.IO.Stream,System.Boolean,System.Net.Security.SslStream,Mono.Security.Interface.MonoTlsSettings,Mono.Security.Interface.MonoTlsProvider)
extern "C" IL2CPP_METHOD_ATTR void MobileAuthenticatedStream__ctor_mF6BF50D6BFDEF283FF8036F5170281D29FDD7628 (MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * __this, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___innerStream0, bool ___leaveInnerStreamOpen1, SslStream_t9CEE8F6E125C734DD807D9289C86860FFEE81087 * ___owner2, MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * ___settings3, MonoTlsProvider_tDCD056C5BBBE59ED6BAF63F25952B406C1143C27 * ___provider4, const RuntimeMethod* method);
// System.Globalization.CultureInfo System.Globalization.CultureInfo::get_InvariantCulture()
extern "C" IL2CPP_METHOD_ATTR CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72 (const RuntimeMethod* method);
// System.String SR::GetString(System.Globalization.CultureInfo,System.String,System.Object[])
extern "C" IL2CPP_METHOD_ATTR String_t* SR_GetString_m9D671CBA422B18D15B8FF59B22DCCEB32E3D16E2 (CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture0, String_t* ___name1, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args2, const RuntimeMethod* method);
// System.String System.String::Format(System.IFormatProvider,System.String,System.Object[])
extern "C" IL2CPP_METHOD_ATTR String_t* String_Format_mF68EE0DEC1AA5ADE9DFEF9AE0508E428FBB10EFD (RuntimeObject* p0, String_t* p1, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* p2, const RuntimeMethod* method);
// System.Void System.ComponentModel.CollectionConverter::.ctor()
extern "C" IL2CPP_METHOD_ATTR void CollectionConverter__ctor_m86DBE477F4462418329C5CFB45C86A9420F852E7 (CollectionConverter_t039E15C433996B0F0F0EB78BEE81F6DE0705F184 * __this, const RuntimeMethod* method);
// System.Void System.ComponentModel.TypeConverter::.ctor()
extern "C" IL2CPP_METHOD_ATTR void TypeConverter__ctor_m7F8A006E775CCB83A8ACB042B296E48B0AE501CD (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, const RuntimeMethod* method);
// System.Void System.ComponentModel.BaseNumberConverter::.ctor()
extern "C" IL2CPP_METHOD_ATTR void BaseNumberConverter__ctor_mD78E1C7E1F8A977BC7AD33DB0C1E5E32C60E8E83 (BaseNumberConverter_t6AF36A2503E7BABF7FB9A8EC05DF8B828491AC63 * __this, const RuntimeMethod* method);
// System.Void System.Attribute::.ctor()
extern "C" IL2CPP_METHOD_ATTR void Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0 (Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * __this, const RuntimeMethod* method);
// System.Int32 System.Attribute::GetHashCode()
extern "C" IL2CPP_METHOD_ATTR int32_t Attribute_GetHashCode_mEA741DA9A7D5E2BF980C11EB942F5C67F3142C7B (Attribute_tF048C13FB3C8CFCC53F82290E4A3F621089F9A74 * __this, const RuntimeMethod* method);
// System.Int32 System.Array::get_Length()
extern "C" IL2CPP_METHOD_ATTR int32_t Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D (RuntimeArray * __this, const RuntimeMethod* method);
// System.Int32 System.ComponentModel.TypeConverter/StandardValuesCollection::get_Count()
extern "C" IL2CPP_METHOD_ATTR int32_t StandardValuesCollection_get_Count_mD0531EA777492E88EBEA8C6B8E8A12C4AFE5103A (StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * __this, const RuntimeMethod* method);
// System.Void System.ComponentModel.TypeConverter/StandardValuesCollection::CopyTo(System.Array,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void StandardValuesCollection_CopyTo_mA319F11A11360C258FCEEF3C9EFA53D504BD7C3E (StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method);
// System.Collections.IEnumerator System.ComponentModel.TypeConverter/StandardValuesCollection::GetEnumerator()
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* StandardValuesCollection_GetEnumerator_m40E0D69CDEDD7EDE2D9454C4A18AA4C91A96B95F (StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * __this, const RuntimeMethod* method);
// System.String System.ComponentModel.TypeConverterAttribute::get_ConverterTypeName()
extern "C" IL2CPP_METHOD_ATTR String_t* TypeConverterAttribute_get_ConverterTypeName_m883941C77E14FC5B4A3E32DD8F59F11739D5D6D8 (TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 * __this, const RuntimeMethod* method);
// System.Boolean System.String::op_Equality(System.String,System.String)
extern "C" IL2CPP_METHOD_ATTR bool String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE (String_t* p0, String_t* p1, const RuntimeMethod* method);
// System.Void System.ComponentModel.TypeConverterAttribute::.ctor()
extern "C" IL2CPP_METHOD_ATTR void TypeConverterAttribute__ctor_mD0795A29B6FD59978CAAC6DAF3AC7EC564C519A5 (TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 * __this, const RuntimeMethod* method);
// System.Int32 System.Runtime.InteropServices.Marshal::GetLastWin32Error()
extern "C" IL2CPP_METHOD_ATTR int32_t Marshal_GetLastWin32Error_mE1A714E69515F70001BA6714077880530257AEC7 (const RuntimeMethod* method);
// System.Void System.ComponentModel.Win32Exception::.ctor(System.Int32)
extern "C" IL2CPP_METHOD_ATTR void Win32Exception__ctor_m2BEA755F6AA536ADDDF07D83BD8297F02584F714 (Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668 * __this, int32_t ___error0, const RuntimeMethod* method);
// System.String System.ComponentModel.Win32Exception::GetErrorMessage(System.Int32)
extern "C" IL2CPP_METHOD_ATTR String_t* Win32Exception_GetErrorMessage_m6085687D868718B45289CB6AF6EDCB7F89D7350D (int32_t ___error0, const RuntimeMethod* method);
// System.Void System.ComponentModel.Win32Exception::.ctor(System.Int32,System.String)
extern "C" IL2CPP_METHOD_ATTR void Win32Exception__ctor_m94A043EE26097BBFE0ED22FD4EBEA357F142EFE6 (Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668 * __this, int32_t ___error0, String_t* ___message1, const RuntimeMethod* method);
// System.Void System.Runtime.InteropServices.ExternalException::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void ExternalException__ctor_mD032EC4BD5C633D675C6AA458C584FB810EF70CC (ExternalException_t68841FD169C0CB00CC950EDA7E2A59540D65B1CE * __this, String_t* p0, const RuntimeMethod* method);
// System.Void System.Runtime.InteropServices.ExternalException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
extern "C" IL2CPP_METHOD_ATTR void ExternalException__ctor_mFEC5FB15E763D381775B80255162202A3F961FCC (ExternalException_t68841FD169C0CB00CC950EDA7E2A59540D65B1CE * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * p0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 p1, const RuntimeMethod* method);
// System.Int32 System.Runtime.Serialization.SerializationInfo::GetInt32(System.String)
extern "C" IL2CPP_METHOD_ATTR int32_t SerializationInfo_GetInt32_mB47BD46A0BDBBAF5B47BB62E6EFF8E092E3F3656 (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* p0, const RuntimeMethod* method);
// System.Void System.Runtime.Serialization.SerializationInfo::AddValue(System.String,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_m7C73917D9DC4B8FE4AFEF4BA8EBEDAB046A8D0BD (SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * __this, String_t* p0, int32_t p1, const RuntimeMethod* method);
// System.Void System.Exception::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
extern "C" IL2CPP_METHOD_ATTR void Exception_GetObjectData_m76F759ED00FA218FFC522C32626B851FDE849AD6 (Exception_t * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * p0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 p1, const RuntimeMethod* method);
// System.Void System.ComponentModel.Win32Exception::InitializeErrorMessages()
extern "C" IL2CPP_METHOD_ATTR void Win32Exception_InitializeErrorMessages_m4FE6F56C1C2CCB3F6468F0F9F5AD6E1B08673438 (const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2<System.Int32,System.String>::TryGetValue(!0,!1&)
inline bool Dictionary_2_TryGetValue_m581BE284F430A27B34743D8438ADB091C70000FD (Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * __this, int32_t p0, String_t** p1, const RuntimeMethod* method)
{
return (( bool (*) (Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C *, int32_t, String_t**, const RuntimeMethod*))Dictionary_2_TryGetValue_m867F6DA953678D0333A55270B7C6EF38EFC293FF_gshared)(__this, p0, p1, method);
}
// System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.String>::Add(!0,!1)
inline void Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA (Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * __this, int32_t p0, String_t* p1, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C *, int32_t, String_t*, const RuntimeMethod*))Dictionary_2_Add_mF7AEA0EFA07EEBC1A4B283A26A7CB720EE7A4C20_gshared)(__this, p0, p1, method);
}
// System.Void System.Collections.Generic.Dictionary`2<System.Int32,System.String>::.ctor()
inline void Dictionary_2__ctor_m6C6B59C12BD62E890CCF5AF0366E3DA0F29ADE6C (Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * __this, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C *, const RuntimeMethod*))Dictionary_2__ctor_m7D745ADE56151C2895459668F4A4242985E526D8_gshared)(__this, method);
}
// System.String System.String::ToLower(System.Globalization.CultureInfo)
extern "C" IL2CPP_METHOD_ATTR String_t* String_ToLower_m91732DBE4AE31B77EA3BB2C185E66513919968A5 (String_t* __this, CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * p0, const RuntimeMethod* method);
// System.Boolean System.DomainNameHelper::IsASCIILetterOrDigit(System.Char,System.Boolean&)
extern "C" IL2CPP_METHOD_ATTR bool DomainNameHelper_IsASCIILetterOrDigit_mD3B0B9BD4573FADEF6AC7330A5EC58C220455F01 (Il2CppChar ___character0, bool* ___notCanonical1, const RuntimeMethod* method);
// System.Boolean System.DomainNameHelper::IsValidDomainLabelCharacter(System.Char,System.Boolean&)
extern "C" IL2CPP_METHOD_ATTR bool DomainNameHelper_IsValidDomainLabelCharacter_mF6DEB20D9D03A8728B1C58006C40D6603B7D61D1 (Il2CppChar ___character0, bool* ___notCanonical1, const RuntimeMethod* method);
// System.String System.DomainNameHelper::IdnEquivalent(System.Char*,System.Int32,System.Int32,System.Boolean&,System.String&)
extern "C" IL2CPP_METHOD_ATTR String_t* DomainNameHelper_IdnEquivalent_m459BFF3040F8E6BFE1CE1C6432A1343A2ECF2F57 (Il2CppChar* ___hostname0, int32_t ___start1, int32_t ___end2, bool* ___allAscii3, String_t** ___bidiStrippedHost4, const RuntimeMethod* method);
// System.Int32 System.Runtime.CompilerServices.RuntimeHelpers::get_OffsetToStringData()
extern "C" IL2CPP_METHOD_ATTR int32_t RuntimeHelpers_get_OffsetToStringData_mF3B79A906181F1A2734590DA161E2AF183853F8B (const RuntimeMethod* method);
// System.Boolean System.DomainNameHelper::IsIdnAce(System.Char*,System.Int32)
extern "C" IL2CPP_METHOD_ATTR bool DomainNameHelper_IsIdnAce_m9193B7D824FC6965820FCE980FEE3E0B40EA94B8 (Il2CppChar* ___input0, int32_t ___index1, const RuntimeMethod* method);
// System.Void System.Globalization.IdnMapping::.ctor()
extern "C" IL2CPP_METHOD_ATTR void IdnMapping__ctor_mE5F38CE30977917F9B755D45A6AA80BE1D9324A7 (IdnMapping_tAF779B2798D263F30F4F4DAF1F21363201256EDC * __this, const RuntimeMethod* method);
// System.String System.String::CreateString(System.Char*,System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR String_t* String_CreateString_mC16F6AD7A921B1AD038C1EB215D7F055C5676590 (String_t* __this, Il2CppChar* ___value0, int32_t ___startIndex1, int32_t ___length2, const RuntimeMethod* method);
// System.String System.Globalization.IdnMapping::GetUnicode(System.String)
extern "C" IL2CPP_METHOD_ATTR String_t* IdnMapping_GetUnicode_mBC420EB51831F695AC79B1AD9B18535658C3E16A (IdnMapping_tAF779B2798D263F30F4F4DAF1F21363201256EDC * __this, String_t* p0, const RuntimeMethod* method);
// System.String System.String::ToLowerInvariant()
extern "C" IL2CPP_METHOD_ATTR String_t* String_ToLowerInvariant_m197BD65B6582DC546FF1BC398161EEFA708F799E (String_t* __this, const RuntimeMethod* method);
// System.String System.Uri::StripBidiControlCharacter(System.Char*,System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR String_t* Uri_StripBidiControlCharacter_m49D782826401F99D943C1AD76A75125879FF332F (Il2CppChar* ___strToClean0, int32_t ___start1, int32_t ___length2, const RuntimeMethod* method);
// System.String System.Globalization.IdnMapping::GetAscii(System.String)
extern "C" IL2CPP_METHOD_ATTR String_t* IdnMapping_GetAscii_mE829EDA54A82515593FE6EF29E624E0FA78DAA71 (IdnMapping_tAF779B2798D263F30F4F4DAF1F21363201256EDC * __this, String_t* p0, const RuntimeMethod* method);
// System.String SR::GetString(System.String)
extern "C" IL2CPP_METHOD_ATTR String_t* SR_GetString_m3FC710B15474A9B651DA02B303241B6D8B87E2A7 (String_t* ___name0, const RuntimeMethod* method);
// System.Void System.UriFormatException::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void UriFormatException__ctor_mE1D46962CC168EB07B59D1265F5734A8F587567D (UriFormatException_t86B375C9E56DBEE5BD4CC9D71C4C40AE5141808A * __this, String_t* ___textString0, const RuntimeMethod* method);
// System.String System.DomainNameHelper::UnicodeEquivalent(System.Char*,System.Int32,System.Int32,System.Boolean&,System.Boolean&)
extern "C" IL2CPP_METHOD_ATTR String_t* DomainNameHelper_UnicodeEquivalent_mD5A7A659B82F1FBF7ABF30009117CFBF8BC4D55F (Il2CppChar* ___hostname0, int32_t ___start1, int32_t ___end2, bool* ___allAscii3, bool* ___atLeastOneValidIdn4, const RuntimeMethod* method);
// System.Boolean System.DomainNameHelper::IsIdnAce(System.String,System.Int32)
extern "C" IL2CPP_METHOD_ATTR bool DomainNameHelper_IsIdnAce_m2231C778C4CCE141ACDC412737642CC365307445 (String_t* ___input0, int32_t ___index1, const RuntimeMethod* method);
// System.Void System.Threading.ManualResetEvent::.ctor(System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void ManualResetEvent__ctor_m8973D9E3C622B9602641C017A33870F51D0311E1 (ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * __this, bool p0, const RuntimeMethod* method);
// System.Void System.IOAsyncCallback::Invoke(System.IOAsyncResult)
extern "C" IL2CPP_METHOD_ATTR void IOAsyncCallback_Invoke_mB95F7E7F0E8326CE5364A30F42FC1073B0AB2D8B (IOAsyncCallback_tEAEB626A6DAC959F4C365B12136A80EE9AA17547 * __this, IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD * ___ioares0, const RuntimeMethod* method);
// System.Boolean System.IPv4AddressHelper::Parse(System.String,System.Byte*,System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR bool IPv4AddressHelper_Parse_m08110623FAC14806376148D7C16AB95A428EA6CF (String_t* ___name0, uint8_t* ___numbers1, int32_t ___start2, int32_t ___end3, const RuntimeMethod* method);
// System.String System.String::Concat(System.Object[])
extern "C" IL2CPP_METHOD_ATTR String_t* String_Concat_mB7BA84F13912303B2E5E40FBF0109E1A328ACA07 (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* p0, const RuntimeMethod* method);
// System.Boolean System.IPv4AddressHelper::ParseCanonical(System.String,System.Byte*,System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR bool IPv4AddressHelper_ParseCanonical_m9D4552558C934E373D188DDA0BC1D1DEF5A62C33 (String_t* ___name0, uint8_t* ___numbers1, int32_t ___start2, int32_t ___end3, const RuntimeMethod* method);
// System.Boolean System.IPv4AddressHelper::IsValidCanonical(System.Char*,System.Int32,System.Int32&,System.Boolean,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR bool IPv4AddressHelper_IsValidCanonical_mC27E31F1F043D68BC52719892D34EDDC7851B120 (Il2CppChar* ___name0, int32_t ___start1, int32_t* ___end2, bool ___allowIPv63, bool ___notImplicitFile4, const RuntimeMethod* method);
// System.Int64 System.IPv4AddressHelper::ParseNonCanonical(System.Char*,System.Int32,System.Int32&,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR int64_t IPv4AddressHelper_ParseNonCanonical_mDCD1CD7FB85C4FFBF3070B1435A0D632C1A7B97E (Il2CppChar* ___name0, int32_t ___start1, int32_t* ___end2, bool ___notImplicitFile3, const RuntimeMethod* method);
// System.Boolean System.IPv6AddressHelper::Parse(System.String,System.UInt16*,System.Int32,System.String&)
extern "C" IL2CPP_METHOD_ATTR bool IPv6AddressHelper_Parse_m36CE2F56465C4F9F7791E80E954C7C0ECBD16DFB (String_t* ___address0, uint16_t* ___numbers1, int32_t ___start2, String_t** ___scopeId3, const RuntimeMethod* method);
// System.String System.IPv6AddressHelper::CreateCanonicalName(System.UInt16*)
extern "C" IL2CPP_METHOD_ATTR String_t* IPv6AddressHelper_CreateCanonicalName_m0B1C201DFADBEB58869E0BE8BFA967EEE64B096A (uint16_t* ___numbers0, const RuntimeMethod* method);
// System.String System.String::Concat(System.String,System.String,System.String)
extern "C" IL2CPP_METHOD_ATTR String_t* String_Concat_mF4626905368D6558695A823466A1AF65EADB9923 (String_t* p0, String_t* p1, String_t* p2, const RuntimeMethod* method);
// System.Boolean System.UriParser::get_ShouldUseLegacyV2Quirks()
extern "C" IL2CPP_METHOD_ATTR bool UriParser_get_ShouldUseLegacyV2Quirks_mD4C8DF67677ACCCC3B5E026099ECC0BDA24D96DD (const RuntimeMethod* method);
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32> System.IPv6AddressHelper::FindCompressionRange(System.UInt16*)
extern "C" IL2CPP_METHOD_ATTR KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 IPv6AddressHelper_FindCompressionRange_mE70B131DDA05D3059325246A5AB7F6029B6EF6BD (uint16_t* ___numbers0, const RuntimeMethod* method);
// System.Boolean System.IPv6AddressHelper::ShouldHaveIpv4Embedded(System.UInt16*)
extern "C" IL2CPP_METHOD_ATTR bool IPv6AddressHelper_ShouldHaveIpv4Embedded_m262634E9099141536C00213C1CFC123665A641DE (uint16_t* ___numbers0, const RuntimeMethod* method);
// System.Void System.Text.StringBuilder::.ctor()
extern "C" IL2CPP_METHOD_ATTR void StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E (StringBuilder_t * __this, const RuntimeMethod* method);
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.String)
extern "C" IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260 (StringBuilder_t * __this, String_t* p0, const RuntimeMethod* method);
// !0 System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>::get_Key()
inline int32_t KeyValuePair_2_get_Key_mB735BC2D7232A3B45D667D28C17BA51AAAFFB4A1 (KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 *, const RuntimeMethod*))KeyValuePair_2_get_Key_mB735BC2D7232A3B45D667D28C17BA51AAAFFB4A1_gshared)(__this, method);
}
// !1 System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>::get_Value()
inline int32_t KeyValuePair_2_get_Value_mF7293AF44DA0B8EB7B455A6227F7C36EEE9CF508 (KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 *, const RuntimeMethod*))KeyValuePair_2_get_Value_mF7293AF44DA0B8EB7B455A6227F7C36EEE9CF508_gshared)(__this, method);
}
// System.String System.String::Format(System.IFormatProvider,System.String,System.Object)
extern "C" IL2CPP_METHOD_ATTR String_t* String_Format_m30892041DA5F50D7B8CFD82FFC0F55B5B97A2B7F (RuntimeObject* p0, String_t* p1, RuntimeObject * p2, const RuntimeMethod* method);
// System.Void System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>::.ctor(!0,!1)
inline void KeyValuePair_2__ctor_m87D429E0B3923A6CF37A52F6F8C56B8FFFBE06D0 (KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 * __this, int32_t p0, int32_t p1, const RuntimeMethod* method)
{
(( void (*) (KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 *, int32_t, int32_t, const RuntimeMethod*))KeyValuePair_2__ctor_m87D429E0B3923A6CF37A52F6F8C56B8FFFBE06D0_gshared)(__this, p0, p1, method);
}
// System.Boolean System.Uri::IsHexDigit(System.Char)
extern "C" IL2CPP_METHOD_ATTR bool Uri_IsHexDigit_m3B2881FA99F0B2197F8017E70C3AE6EBF9849836 (Il2CppChar ___character0, const RuntimeMethod* method);
// System.Boolean System.IPv4AddressHelper::IsValid(System.Char*,System.Int32,System.Int32&,System.Boolean,System.Boolean,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR bool IPv4AddressHelper_IsValid_mD96D91E0F3830414F4601A4521E71DE832A45843 (Il2CppChar* ___name0, int32_t ___start1, int32_t* ___end2, bool ___allowIPv63, bool ___notImplicitFile4, bool ___unknownScheme5, const RuntimeMethod* method);
// System.Boolean System.IPv6AddressHelper::InternalIsValid(System.Char*,System.Int32,System.Int32&,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR bool IPv6AddressHelper_InternalIsValid_m3BD7E7524455146D4464037DA3B65530E547AB7A (Il2CppChar* ___name0, int32_t ___start1, int32_t* ___end2, bool ___validateStrictAddress3, const RuntimeMethod* method);
// System.Int32 System.IPv4AddressHelper::ParseHostNumber(System.String,System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t IPv4AddressHelper_ParseHostNumber_m798FB6828971F70775D1125565A1D1025C897F14 (String_t* ___str0, int32_t ___start1, int32_t ___end2, const RuntimeMethod* method);
// System.Int32 System.Uri::FromHex(System.Char)
extern "C" IL2CPP_METHOD_ATTR int32_t Uri_FromHex_m9EAC76A5DBFED86532FF7E1BBD809176337A227B (Il2CppChar ___digit0, const RuntimeMethod* method);
// System.Boolean System.Char::IsSurrogatePair(System.Char,System.Char)
extern "C" IL2CPP_METHOD_ATTR bool Char_IsSurrogatePair_m186784A2523D247DD43AC669D29A140AE0E992CF (Il2CppChar p0, Il2CppChar p1, const RuntimeMethod* method);
// System.String System.String::CreateString(System.Char[])
extern "C" IL2CPP_METHOD_ATTR String_t* String_CreateString_m394C06654854ADD4C51FF957BE0CC72EF52BAA96 (String_t* __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___val0, const RuntimeMethod* method);
// System.Int32 System.String::CompareOrdinal(System.String,System.String)
extern "C" IL2CPP_METHOD_ATTR int32_t String_CompareOrdinal_m172D84EDDE0823F53EAB60857C07EA7F85600068 (String_t* p0, String_t* p1, const RuntimeMethod* method);
// System.Boolean System.Uri::IsGenDelim(System.Char)
extern "C" IL2CPP_METHOD_ATTR bool Uri_IsGenDelim_m376CCA5D00D019A69FD746C57D236A54EB9D3CF3 (Il2CppChar ___ch0, const RuntimeMethod* method);
// System.Runtime.InteropServices.GCHandle System.Runtime.InteropServices.GCHandle::Alloc(System.Object,System.Runtime.InteropServices.GCHandleType)
extern "C" IL2CPP_METHOD_ATTR GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 GCHandle_Alloc_m30DAF14F75E3A692C594965CE6724E2454DE9A2E (RuntimeObject * p0, int32_t p1, const RuntimeMethod* method);
// System.IntPtr System.Runtime.InteropServices.GCHandle::AddrOfPinnedObject()
extern "C" IL2CPP_METHOD_ATTR intptr_t GCHandle_AddrOfPinnedObject_mA20090CB8274F28D087A6E8AD36D3230B6741EA5 (GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 * __this, const RuntimeMethod* method);
// System.Void* System.IntPtr::op_Explicit(System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void* IntPtr_op_Explicit_mB8A512095BCE1A23B2840310C8A27C928ADAD027 (intptr_t p0, const RuntimeMethod* method);
// System.Char System.UriHelper::EscapedAscii(System.Char,System.Char)
extern "C" IL2CPP_METHOD_ATTR Il2CppChar UriHelper_EscapedAscii_m06D556717795E649EBBB30E4CBCF3D221C1FEB78 (Il2CppChar ___digit0, Il2CppChar ___next1, const RuntimeMethod* method);
// System.Boolean System.IriHelper::CheckIsReserved(System.Char,System.UriComponents)
extern "C" IL2CPP_METHOD_ATTR bool IriHelper_CheckIsReserved_m5C0A35BF0890852A3FC564618DB0836BBB6C0F1C (Il2CppChar ___ch0, int32_t ___component1, const RuntimeMethod* method);
// System.Boolean System.UriHelper::IsNotSafeForUnescape(System.Char)
extern "C" IL2CPP_METHOD_ATTR bool UriHelper_IsNotSafeForUnescape_m1D0461E7C5A3CFBD7A2A7F7322B66BC68CCE741D (Il2CppChar ___ch0, const RuntimeMethod* method);
// System.Void System.Text.EncoderReplacementFallback::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void EncoderReplacementFallback__ctor_mAE97C6B5EF9A81A90315A21E68271FAE87A738FD (EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998 * __this, String_t* p0, const RuntimeMethod* method);
// System.Void System.Text.Encoding::set_EncoderFallback(System.Text.EncoderFallback)
extern "C" IL2CPP_METHOD_ATTR void Encoding_set_EncoderFallback_m24306F093457AE12D59A36AB84F1E03C840BD10A (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * p0, const RuntimeMethod* method);
// System.Void System.Text.DecoderReplacementFallback::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void DecoderReplacementFallback__ctor_m9D82FC93423AD9B954F28E30B20BF14DAFB01A5B (DecoderReplacementFallback_t8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742 * __this, String_t* p0, const RuntimeMethod* method);
// System.Void System.Text.Encoding::set_DecoderFallback(System.Text.DecoderFallback)
extern "C" IL2CPP_METHOD_ATTR void Encoding_set_DecoderFallback_mB321EB8D6C34B8935A169C0E4FAC7A4E0A99FACC (Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * __this, DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * p0, const RuntimeMethod* method);
// System.Void System.UriHelper::MatchUTF8Sequence(System.Char*,System.Char[],System.Int32&,System.Char[],System.Int32,System.Byte[],System.Int32,System.Boolean,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void UriHelper_MatchUTF8Sequence_m4835D9BB77C2701643B14D6FFD3D7057F8C9007F (Il2CppChar* ___pDest0, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___dest1, int32_t* ___destOffset2, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___unescapedChars3, int32_t ___charCount4, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bytes5, int32_t ___byteCount6, bool ___isQuery7, bool ___iriParsing8, const RuntimeMethod* method);
// System.Boolean System.Char::IsHighSurrogate(System.Char)
extern "C" IL2CPP_METHOD_ATTR bool Char_IsHighSurrogate_m64C60C09A8561520E43C8527D3DC38FF97E6274D (Il2CppChar p0, const RuntimeMethod* method);
// System.Boolean System.IriHelper::CheckIriUnicodeRange(System.Char,System.Char,System.Boolean&,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR bool IriHelper_CheckIriUnicodeRange_m5ED29083C22062AEAB8B5787C9A27CFEEC397AD9 (Il2CppChar ___highSurr0, Il2CppChar ___lowSurr1, bool* ___surrogatePair2, bool ___isQuery3, const RuntimeMethod* method);
// System.Boolean System.IriHelper::CheckIriUnicodeRange(System.Char,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR bool IriHelper_CheckIriUnicodeRange_mA9BAAD6D244ADEE8986FDC0DFB3DFDA90C093A6C (Il2CppChar ___unicode0, bool ___isQuery1, const RuntimeMethod* method);
// System.Boolean System.Uri::IsBidiControlCharacter(System.Char)
extern "C" IL2CPP_METHOD_ATTR bool Uri_IsBidiControlCharacter_mB14EA5816A434B7CE382EB9ACBD1432916EC341D (Il2CppChar ___ch0, const RuntimeMethod* method);
// System.Void System.Buffer::Memcpy(System.Byte*,System.Byte*,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void Buffer_Memcpy_m4D475106A101E5ED38EB22776EAAFB6D02F63678 (uint8_t* p0, uint8_t* p1, int32_t p2, const RuntimeMethod* method);
// System.Boolean System.Runtime.InteropServices.GCHandle::get_IsAllocated()
extern "C" IL2CPP_METHOD_ATTR bool GCHandle_get_IsAllocated_m91323BCB568B1150F90515EF862B00F193E77808 (GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 * __this, const RuntimeMethod* method);
// System.Void System.Runtime.InteropServices.GCHandle::Free()
extern "C" IL2CPP_METHOD_ATTR void GCHandle_Free_m392ECC9B1058E35A0FD5CF21A65F212873FC26F0 (GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 * __this, const RuntimeMethod* method);
// System.Void System.UriHelper::EscapeAsciiChar(System.Char,System.Char[],System.Int32&)
extern "C" IL2CPP_METHOD_ATTR void UriHelper_EscapeAsciiChar_mFD7DE796BD53CBD2B1E73080FE0346D37F358902 (Il2CppChar ___ch0, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___to1, int32_t* ___pos2, const RuntimeMethod* method);
// System.String System.String::CreateString(System.Char[],System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR String_t* String_CreateString_mC7FB167C0D5B97F7EF502AF54399C61DD5B87509 (String_t* __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___val0, int32_t ___startIndex1, int32_t ___length2, const RuntimeMethod* method);
// System.Void System.ArgumentException::.ctor(System.String,System.String)
extern "C" IL2CPP_METHOD_ATTR void ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, String_t* p0, String_t* p1, const RuntimeMethod* method);
// System.Void System.Net.Sockets.SocketException::.ctor(System.Net.Sockets.SocketError)
extern "C" IL2CPP_METHOD_ATTR void SocketException__ctor_m2687C4EFA4D012280C5D19B89D8D01F97B6A2F1A (SocketException_t75481CF49BCAF5685A5A9E6933909E0B65E7E0A5 * __this, int32_t ___socketError0, const RuntimeMethod* method);
// System.Int64 System.Net.IPAddress::get_ScopeId()
extern "C" IL2CPP_METHOD_ATTR int64_t IPAddress_get_ScopeId_m941461DEBDECCD858F8D3165F3CA366A318064D9 (IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE * __this, const RuntimeMethod* method);
// System.Void System.Net.IPv6AddressFormatter::.ctor(System.UInt16[],System.Int64)
extern "C" IL2CPP_METHOD_ATTR void IPv6AddressFormatter__ctor_m94725668992E78AA0D75E1C072E8A567E9C34497 (IPv6AddressFormatter_t451290B1C6FD64B6C59F95D99EDB4A9CC703BA90 * __this, UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* ___addr0, int64_t ___scopeId1, const RuntimeMethod* method);
// System.String System.Net.IPv6AddressFormatter::ToString()
extern "C" IL2CPP_METHOD_ATTR String_t* IPv6AddressFormatter_ToString_mBBBF9A3ABB56F52589BD211DD827015066076C8F (IPv6AddressFormatter_t451290B1C6FD64B6C59F95D99EDB4A9CC703BA90 * __this, const RuntimeMethod* method);
// System.Boolean System.Net.IPAddress::Equals(System.Object,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR bool IPAddress_Equals_mADA54686760DE75E2C31B8651224FFEB019316D6 (IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE * __this, RuntimeObject * ___comparandObj0, bool ___compareScopeId1, const RuntimeMethod* method);
// System.StringComparer System.StringComparer::get_InvariantCultureIgnoreCase()
extern "C" IL2CPP_METHOD_ATTR StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * StringComparer_get_InvariantCultureIgnoreCase_mC6DA70EBD0C00B02EC4BB5C24882F99984028DFC (const RuntimeMethod* method);
// System.Void System.Net.IPAddress::.ctor(System.Int32)
extern "C" IL2CPP_METHOD_ATTR void IPAddress__ctor_mCC321EEDA0750DA97447EB60529BCBCB4EA0249D (IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE * __this, int32_t ___newAddress0, const RuntimeMethod* method);
// System.Void System.Net.IPAddress::.ctor(System.Int64)
extern "C" IL2CPP_METHOD_ATTR void IPAddress__ctor_mFD0AF2F6A282D1158DF3C34EF2E63B73814E7748 (IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE * __this, int64_t ___newAddress0, const RuntimeMethod* method);
// System.Void System.Net.IPAddress::.ctor(System.Byte[],System.Int64)
extern "C" IL2CPP_METHOD_ATTR void IPAddress__ctor_m373D3930BEEA00EC628E98C5A13AE9BE2B2CEC84 (IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___address0, int64_t ___scopeid1, const RuntimeMethod* method);
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.UInt32 <PrivateImplementationDetails>::ComputeStringHash(System.String)
extern "C" IL2CPP_METHOD_ATTR uint32_t U3CPrivateImplementationDetailsU3E_ComputeStringHash_m7C7DB27BC4297A74A96AC53E1EDD3E7415DFB874 (String_t* ___s0, const RuntimeMethod* method)
{
uint32_t V_0 = 0;
int32_t V_1 = 0;
{
String_t* L_0 = ___s0;
if (!L_0)
{
goto IL_002a;
}
}
{
V_0 = ((int32_t)-2128831035);
V_1 = 0;
goto IL_0021;
}
IL_000d:
{
String_t* L_1 = ___s0;
int32_t L_2 = V_1;
NullCheck(L_1);
Il2CppChar L_3 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_1, L_2, /*hidden argument*/NULL);
uint32_t L_4 = V_0;
V_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)((int32_t)L_3^(int32_t)L_4)), (int32_t)((int32_t)16777619)));
int32_t L_5 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1));
}
IL_0021:
{
int32_t L_6 = V_1;
String_t* L_7 = ___s0;
NullCheck(L_7);
int32_t L_8 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_7, /*hidden argument*/NULL);
if ((((int32_t)L_6) < ((int32_t)L_8)))
{
goto IL_000d;
}
}
IL_002a:
{
uint32_t L_9 = V_0;
return L_9;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Net.Security.MobileAuthenticatedStream Mono.Net.Security.AsyncProtocolRequest::get_Parent()
extern "C" IL2CPP_METHOD_ATTR MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * AsyncProtocolRequest_get_Parent_m1F7659D1FAFC679076165336ED380C4BD123B452 (AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * __this, const RuntimeMethod* method)
{
{
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * L_0 = __this->get_U3CParentU3Ek__BackingField_0();
return L_0;
}
}
// System.Boolean Mono.Net.Security.AsyncProtocolRequest::get_RunSynchronously()
extern "C" IL2CPP_METHOD_ATTR bool AsyncProtocolRequest_get_RunSynchronously_m66A26ED05543D9AF1ED86287DCE8389BC1CB319A (AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CRunSynchronouslyU3Ek__BackingField_1();
return L_0;
}
}
// System.String Mono.Net.Security.AsyncProtocolRequest::get_Name()
extern "C" IL2CPP_METHOD_ATTR String_t* AsyncProtocolRequest_get_Name_m1999BAB96B06DCB4DC11BF5F3B0BF4C6E2A26FF6 (AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * __this, const RuntimeMethod* method)
{
{
Type_t * L_0 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60(__this, /*hidden argument*/NULL);
NullCheck(L_0);
String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(7 /* System.String System.Reflection.MemberInfo::get_Name() */, L_0);
return L_1;
}
}
// System.Int32 Mono.Net.Security.AsyncProtocolRequest::get_UserResult()
extern "C" IL2CPP_METHOD_ATTR int32_t AsyncProtocolRequest_get_UserResult_m53CEBBACE5031D4CE92308ABBAEA38AEF74DDBD3 (AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_U3CUserResultU3Ek__BackingField_2();
return L_0;
}
}
// System.Void Mono.Net.Security.AsyncProtocolRequest::set_UserResult(System.Int32)
extern "C" IL2CPP_METHOD_ATTR void AsyncProtocolRequest_set_UserResult_mBF62363240DC9BE894231E56047F594EF452CD19 (AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set_U3CUserResultU3Ek__BackingField_2(L_0);
return;
}
}
// System.Void Mono.Net.Security.AsyncProtocolRequest::.ctor(Mono.Net.Security.MobileAuthenticatedStream,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void AsyncProtocolRequest__ctor_mFE18CBE3FAA084FF6DF2AD8BECC2CA6DF4C6E769 (AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * __this, MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * ___parent0, bool ___sync1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncProtocolRequest__ctor_mFE18CBE3FAA084FF6DF2AD8BECC2CA6DF4C6E769_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_0, /*hidden argument*/NULL);
__this->set_locker_6(L_0);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * L_1 = ___parent0;
__this->set_U3CParentU3Ek__BackingField_0(L_1);
bool L_2 = ___sync1;
__this->set_U3CRunSynchronouslyU3Ek__BackingField_1(L_2);
return;
}
}
// System.Threading.Tasks.Task`1<Mono.Net.Security.AsyncProtocolResult> Mono.Net.Security.AsyncProtocolRequest::StartOperation(System.Threading.CancellationToken)
extern "C" IL2CPP_METHOD_ATTR Task_1_t6D67FA6126155FF2C2E227A859409D83DFAFA9BD * AsyncProtocolRequest_StartOperation_mA13EA6B8ED143BC043F506815D05EB3F49F22682 (AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * __this, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___cancellationToken0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncProtocolRequest_StartOperation_mA13EA6B8ED143BC043F506815D05EB3F49F22682_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
U3CStartOperationU3Ed__23_tF07DD38BEEE955EB5B1359B816079584899DDEC9 V_0;
memset(&V_0, 0, sizeof(V_0));
AsyncTaskMethodBuilder_1_tE6ADC5F95443C1197F4C34B1207F02A4E0F7EDB2 V_1;
memset(&V_1, 0, sizeof(V_1));
{
(&V_0)->set_U3CU3E4__this_2(__this);
CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_0 = ___cancellationToken0;
(&V_0)->set_cancellationToken_3(L_0);
IL2CPP_RUNTIME_CLASS_INIT(AsyncTaskMethodBuilder_1_tE6ADC5F95443C1197F4C34B1207F02A4E0F7EDB2_il2cpp_TypeInfo_var);
AsyncTaskMethodBuilder_1_tE6ADC5F95443C1197F4C34B1207F02A4E0F7EDB2 L_1 = AsyncTaskMethodBuilder_1_Create_mB60DC339AEDD170B1734CFCE9841538E84686820(/*hidden argument*/AsyncTaskMethodBuilder_1_Create_mB60DC339AEDD170B1734CFCE9841538E84686820_RuntimeMethod_var);
(&V_0)->set_U3CU3Et__builder_1(L_1);
(&V_0)->set_U3CU3E1__state_0((-1));
U3CStartOperationU3Ed__23_tF07DD38BEEE955EB5B1359B816079584899DDEC9 L_2 = V_0;
AsyncTaskMethodBuilder_1_tE6ADC5F95443C1197F4C34B1207F02A4E0F7EDB2 L_3 = L_2.get_U3CU3Et__builder_1();
V_1 = L_3;
AsyncTaskMethodBuilder_1_Start_TisU3CStartOperationU3Ed__23_tF07DD38BEEE955EB5B1359B816079584899DDEC9_m43D22CCD35DA950DB1C0515C6C6897DCB2575ED4((AsyncTaskMethodBuilder_1_tE6ADC5F95443C1197F4C34B1207F02A4E0F7EDB2 *)(&V_1), (U3CStartOperationU3Ed__23_tF07DD38BEEE955EB5B1359B816079584899DDEC9 *)(&V_0), /*hidden argument*/AsyncTaskMethodBuilder_1_Start_TisU3CStartOperationU3Ed__23_tF07DD38BEEE955EB5B1359B816079584899DDEC9_m43D22CCD35DA950DB1C0515C6C6897DCB2575ED4_RuntimeMethod_var);
AsyncTaskMethodBuilder_1_tE6ADC5F95443C1197F4C34B1207F02A4E0F7EDB2 * L_4 = (&V_0)->get_address_of_U3CU3Et__builder_1();
Task_1_t6D67FA6126155FF2C2E227A859409D83DFAFA9BD * L_5 = AsyncTaskMethodBuilder_1_get_Task_m6F38E3B2220CD252E1196C38A8DC4A33EDEAA9F6((AsyncTaskMethodBuilder_1_tE6ADC5F95443C1197F4C34B1207F02A4E0F7EDB2 *)L_4, /*hidden argument*/AsyncTaskMethodBuilder_1_get_Task_m6F38E3B2220CD252E1196C38A8DC4A33EDEAA9F6_RuntimeMethod_var);
return L_5;
}
}
// System.Threading.Tasks.Task Mono.Net.Security.AsyncProtocolRequest::ProcessOperation(System.Threading.CancellationToken)
extern "C" IL2CPP_METHOD_ATTR Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * AsyncProtocolRequest_ProcessOperation_m6DD0D7800F73C41BE9A5313737357801B22ED71D (AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * __this, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___cancellationToken0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncProtocolRequest_ProcessOperation_m6DD0D7800F73C41BE9A5313737357801B22ED71D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
U3CProcessOperationU3Ed__24_t969904EA513B205F08A3ED1624FE3890853645AA V_0;
memset(&V_0, 0, sizeof(V_0));
AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 V_1;
memset(&V_1, 0, sizeof(V_1));
{
(&V_0)->set_U3CU3E4__this_3(__this);
CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_0 = ___cancellationToken0;
(&V_0)->set_cancellationToken_2(L_0);
IL2CPP_RUNTIME_CLASS_INIT(AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487_il2cpp_TypeInfo_var);
AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 L_1 = AsyncTaskMethodBuilder_Create_m081DF9A202E7C2F3CF3D41E1E63E63DA18F19FDB(/*hidden argument*/NULL);
(&V_0)->set_U3CU3Et__builder_1(L_1);
(&V_0)->set_U3CU3E1__state_0((-1));
U3CProcessOperationU3Ed__24_t969904EA513B205F08A3ED1624FE3890853645AA L_2 = V_0;
AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 L_3 = L_2.get_U3CU3Et__builder_1();
V_1 = L_3;
AsyncTaskMethodBuilder_Start_TisU3CProcessOperationU3Ed__24_t969904EA513B205F08A3ED1624FE3890853645AA_mE4E7D5465A93C56B5F17EB43FD2AF11AF3597A69((AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 *)(&V_1), (U3CProcessOperationU3Ed__24_t969904EA513B205F08A3ED1624FE3890853645AA *)(&V_0), /*hidden argument*/AsyncTaskMethodBuilder_Start_TisU3CProcessOperationU3Ed__24_t969904EA513B205F08A3ED1624FE3890853645AA_mE4E7D5465A93C56B5F17EB43FD2AF11AF3597A69_RuntimeMethod_var);
AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 * L_4 = (&V_0)->get_address_of_U3CU3Et__builder_1();
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_5 = AsyncTaskMethodBuilder_get_Task_m3E45BC00F7D224FEA04AB9BF26DB52E131D33022((AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 *)L_4, /*hidden argument*/NULL);
return L_5;
}
}
// System.Threading.Tasks.Task`1<System.Nullable`1<System.Int32>> Mono.Net.Security.AsyncProtocolRequest::InnerRead(System.Threading.CancellationToken)
extern "C" IL2CPP_METHOD_ATTR Task_1_t8906695C9865566AA79419735634FF27AC74506E * AsyncProtocolRequest_InnerRead_m902FA39460933B383900CB60BDF8CCFC96BF3499 (AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * __this, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___cancellationToken0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncProtocolRequest_InnerRead_m902FA39460933B383900CB60BDF8CCFC96BF3499_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
U3CInnerReadU3Ed__25_tCE25EDB99323C3358577085230EE086DE0CADA5E V_0;
memset(&V_0, 0, sizeof(V_0));
AsyncTaskMethodBuilder_1_tADDA4A1D7E8E45B9C6AC65AF43C5868605F74865 V_1;
memset(&V_1, 0, sizeof(V_1));
{
(&V_0)->set_U3CU3E4__this_2(__this);
CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_0 = ___cancellationToken0;
(&V_0)->set_cancellationToken_3(L_0);
IL2CPP_RUNTIME_CLASS_INIT(AsyncTaskMethodBuilder_1_tADDA4A1D7E8E45B9C6AC65AF43C5868605F74865_il2cpp_TypeInfo_var);
AsyncTaskMethodBuilder_1_tADDA4A1D7E8E45B9C6AC65AF43C5868605F74865 L_1 = AsyncTaskMethodBuilder_1_Create_m242902BEDFDC7D1CC69AFDD97C9D701DE8FE2B50(/*hidden argument*/AsyncTaskMethodBuilder_1_Create_m242902BEDFDC7D1CC69AFDD97C9D701DE8FE2B50_RuntimeMethod_var);
(&V_0)->set_U3CU3Et__builder_1(L_1);
(&V_0)->set_U3CU3E1__state_0((-1));
U3CInnerReadU3Ed__25_tCE25EDB99323C3358577085230EE086DE0CADA5E L_2 = V_0;
AsyncTaskMethodBuilder_1_tADDA4A1D7E8E45B9C6AC65AF43C5868605F74865 L_3 = L_2.get_U3CU3Et__builder_1();
V_1 = L_3;
AsyncTaskMethodBuilder_1_Start_TisU3CInnerReadU3Ed__25_tCE25EDB99323C3358577085230EE086DE0CADA5E_m76073D93DA6947C4B0CF9D9C6BF57526F674D659((AsyncTaskMethodBuilder_1_tADDA4A1D7E8E45B9C6AC65AF43C5868605F74865 *)(&V_1), (U3CInnerReadU3Ed__25_tCE25EDB99323C3358577085230EE086DE0CADA5E *)(&V_0), /*hidden argument*/AsyncTaskMethodBuilder_1_Start_TisU3CInnerReadU3Ed__25_tCE25EDB99323C3358577085230EE086DE0CADA5E_m76073D93DA6947C4B0CF9D9C6BF57526F674D659_RuntimeMethod_var);
AsyncTaskMethodBuilder_1_tADDA4A1D7E8E45B9C6AC65AF43C5868605F74865 * L_4 = (&V_0)->get_address_of_U3CU3Et__builder_1();
Task_1_t8906695C9865566AA79419735634FF27AC74506E * L_5 = AsyncTaskMethodBuilder_1_get_Task_m35C5C2BA1998F89CDCED8166BAE477A591FAB101((AsyncTaskMethodBuilder_1_tADDA4A1D7E8E45B9C6AC65AF43C5868605F74865 *)L_4, /*hidden argument*/AsyncTaskMethodBuilder_1_get_Task_m35C5C2BA1998F89CDCED8166BAE477A591FAB101_RuntimeMethod_var);
return L_5;
}
}
// System.String Mono.Net.Security.AsyncProtocolRequest::ToString()
extern "C" IL2CPP_METHOD_ATTR String_t* AsyncProtocolRequest_ToString_m2D8062B5811D7B7A071CC451D2FD03E5BF61B529 (AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncProtocolRequest_ToString_m2D8062B5811D7B7A071CC451D2FD03E5BF61B529_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = AsyncProtocolRequest_get_Name_m1999BAB96B06DCB4DC11BF5F3B0BF4C6E2A26FF6(__this, /*hidden argument*/NULL);
String_t* L_1 = String_Format_m0ACDD8B34764E4040AED0B3EEB753567E4576BFA(_stringLiteral61CE5A2CEB12686C40BA9776D128F0AF7AFDDAB1, L_0, /*hidden argument*/NULL);
return L_1;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Net.Security.AsyncProtocolRequest/<InnerRead>d__25::MoveNext()
extern "C" IL2CPP_METHOD_ATTR void U3CInnerReadU3Ed__25_MoveNext_m4AD149EC4A2E6FDA803D63FB72A354300DBD3D0D (U3CInnerReadU3Ed__25_tCE25EDB99323C3358577085230EE086DE0CADA5E * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CInnerReadU3Ed__25_MoveNext_m4AD149EC4A2E6FDA803D63FB72A354300DBD3D0D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * V_1 = NULL;
Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB V_2;
memset(&V_2, 0, sizeof(V_2));
int32_t V_3 = 0;
int32_t V_4 = 0;
ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E V_5;
memset(&V_5, 0, sizeof(V_5));
ConfiguredTaskAwaitable_1_t10E65A50D6EC08956E9F550CD64330F4DED0D38A V_6;
memset(&V_6, 0, sizeof(V_6));
Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB V_7;
memset(&V_7, 0, sizeof(V_7));
int32_t V_8 = 0;
Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB V_9;
memset(&V_9, 0, sizeof(V_9));
Exception_t * V_10 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
U3CInnerReadU3Ed__25_tCE25EDB99323C3358577085230EE086DE0CADA5E * G_B12_0 = NULL;
U3CInnerReadU3Ed__25_tCE25EDB99323C3358577085230EE086DE0CADA5E * G_B11_0 = NULL;
Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB G_B13_0;
memset(&G_B13_0, 0, sizeof(G_B13_0));
U3CInnerReadU3Ed__25_tCE25EDB99323C3358577085230EE086DE0CADA5E * G_B13_1 = NULL;
{
int32_t L_0 = __this->get_U3CU3E1__state_0();
V_0 = L_0;
AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * L_1 = __this->get_U3CU3E4__this_2();
V_1 = L_1;
}
IL_000e:
try
{ // begin try (depth: 1)
{
int32_t L_2 = V_0;
if (!L_2)
{
goto IL_008f;
}
}
IL_0011:
{
Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB * L_3 = __this->get_address_of_U3CtotalReadU3E5__2_5();
il2cpp_codegen_initobj(L_3, sizeof(Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB ));
AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * L_4 = V_1;
NullCheck(L_4);
int32_t* L_5 = L_4->get_address_of_RequestedSize_4();
int32_t L_6 = Interlocked_Exchange_mD5CC61AF0F002355912FAAF84F26BE93639B5FD5((int32_t*)L_5, 0, /*hidden argument*/NULL);
__this->set_U3CrequestedSizeU3E5__1_4(L_6);
goto IL_0133;
}
IL_0034:
{
AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * L_7 = V_1;
NullCheck(L_7);
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * L_8 = AsyncProtocolRequest_get_Parent_m1F7659D1FAFC679076165336ED380C4BD123B452(L_7, /*hidden argument*/NULL);
AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * L_9 = V_1;
NullCheck(L_9);
bool L_10 = AsyncProtocolRequest_get_RunSynchronously_m66A26ED05543D9AF1ED86287DCE8389BC1CB319A(L_9, /*hidden argument*/NULL);
int32_t L_11 = __this->get_U3CrequestedSizeU3E5__1_4();
CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_12 = __this->get_cancellationToken_3();
NullCheck(L_8);
Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * L_13 = MobileAuthenticatedStream_InnerRead_m0EDB58159985F661C68EBA26247546ED06999D0F(L_8, L_10, L_11, L_12, /*hidden argument*/NULL);
NullCheck(L_13);
ConfiguredTaskAwaitable_1_t10E65A50D6EC08956E9F550CD64330F4DED0D38A L_14 = Task_1_ConfigureAwait_m88DF0C431456B72CA5CF2534AE96969FDB86F982(L_13, (bool)0, /*hidden argument*/Task_1_ConfigureAwait_m88DF0C431456B72CA5CF2534AE96969FDB86F982_RuntimeMethod_var);
V_6 = L_14;
ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E L_15 = ConfiguredTaskAwaitable_1_GetAwaiter_m10B0B84F72A27E623BD94882380E582459F8B8DE((ConfiguredTaskAwaitable_1_t10E65A50D6EC08956E9F550CD64330F4DED0D38A *)(&V_6), /*hidden argument*/ConfiguredTaskAwaitable_1_GetAwaiter_m10B0B84F72A27E623BD94882380E582459F8B8DE_RuntimeMethod_var);
V_5 = L_15;
bool L_16 = ConfiguredTaskAwaiter_get_IsCompleted_mCBD6C3EF024E1D7C538268F338BD0C4BA712FA92((ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E *)(&V_5), /*hidden argument*/ConfiguredTaskAwaiter_get_IsCompleted_mCBD6C3EF024E1D7C538268F338BD0C4BA712FA92_RuntimeMethod_var);
if (L_16)
{
goto IL_00ac;
}
}
IL_006b:
{
int32_t L_17 = 0;
V_0 = L_17;
__this->set_U3CU3E1__state_0(L_17);
ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E L_18 = V_5;
__this->set_U3CU3Eu__1_6(L_18);
AsyncTaskMethodBuilder_1_tADDA4A1D7E8E45B9C6AC65AF43C5868605F74865 * L_19 = __this->get_address_of_U3CU3Et__builder_1();
AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E_TisU3CInnerReadU3Ed__25_tCE25EDB99323C3358577085230EE086DE0CADA5E_m8A995342D50B0ABAA2E3EE6CBA355484259E4CF5((AsyncTaskMethodBuilder_1_tADDA4A1D7E8E45B9C6AC65AF43C5868605F74865 *)L_19, (ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E *)(&V_5), (U3CInnerReadU3Ed__25_tCE25EDB99323C3358577085230EE086DE0CADA5E *)__this, /*hidden argument*/AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E_TisU3CInnerReadU3Ed__25_tCE25EDB99323C3358577085230EE086DE0CADA5E_m8A995342D50B0ABAA2E3EE6CBA355484259E4CF5_RuntimeMethod_var);
goto IL_0175;
}
IL_008f:
{
ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E L_20 = __this->get_U3CU3Eu__1_6();
V_5 = L_20;
ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E * L_21 = __this->get_address_of_U3CU3Eu__1_6();
il2cpp_codegen_initobj(L_21, sizeof(ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E ));
int32_t L_22 = (-1);
V_0 = L_22;
__this->set_U3CU3E1__state_0(L_22);
}
IL_00ac:
{
int32_t L_23 = ConfiguredTaskAwaiter_GetResult_m05FB789E6901C9496B94A722DF99239A979A2623((ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E *)(&V_5), /*hidden argument*/ConfiguredTaskAwaiter_GetResult_m05FB789E6901C9496B94A722DF99239A979A2623_RuntimeMethod_var);
V_3 = L_23;
int32_t L_24 = V_3;
if ((((int32_t)L_24) > ((int32_t)0)))
{
goto IL_00c4;
}
}
IL_00b8:
{
int32_t L_25 = V_3;
Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB L_26;
memset(&L_26, 0, sizeof(L_26));
Nullable_1__ctor_m11F9C228CFDF836DDFCD7880C09CB4098AB9D7F2((&L_26), L_25, /*hidden argument*/Nullable_1__ctor_m11F9C228CFDF836DDFCD7880C09CB4098AB9D7F2_RuntimeMethod_var);
V_2 = L_26;
goto IL_0161;
}
IL_00c4:
{
int32_t L_27 = V_3;
int32_t L_28 = __this->get_U3CrequestedSizeU3E5__1_4();
if ((((int32_t)L_27) <= ((int32_t)L_28)))
{
goto IL_00d3;
}
}
IL_00cd:
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_29 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1F94EA1226068BD1B7EAA1B836A59C99979F579E(L_29, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_29, NULL, U3CInnerReadU3Ed__25_MoveNext_m4AD149EC4A2E6FDA803D63FB72A354300DBD3D0D_RuntimeMethod_var);
}
IL_00d3:
{
Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB L_30 = __this->get_U3CtotalReadU3E5__2_5();
V_7 = L_30;
int32_t L_31 = V_3;
V_8 = L_31;
bool L_32 = Nullable_1_get_HasValue_mB664E2C41CADA8413EF8842E6601B8C696A7CE15((Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB *)(&V_7), /*hidden argument*/Nullable_1_get_HasValue_mB664E2C41CADA8413EF8842E6601B8C696A7CE15_RuntimeMethod_var);
G_B11_0 = __this;
if (L_32)
{
G_B12_0 = __this;
goto IL_00f4;
}
}
IL_00e8:
{
il2cpp_codegen_initobj((&V_9), sizeof(Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB ));
Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB L_33 = V_9;
G_B13_0 = L_33;
G_B13_1 = G_B11_0;
goto IL_0103;
}
IL_00f4:
{
int32_t L_34 = Nullable_1_GetValueOrDefault_mE89BB8F302DF31EE202251F4746859285860B6B6((Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB *)(&V_7), /*hidden argument*/Nullable_1_GetValueOrDefault_mE89BB8F302DF31EE202251F4746859285860B6B6_RuntimeMethod_var);
int32_t L_35 = V_8;
Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB L_36;
memset(&L_36, 0, sizeof(L_36));
Nullable_1__ctor_m11F9C228CFDF836DDFCD7880C09CB4098AB9D7F2((&L_36), ((int32_t)il2cpp_codegen_add((int32_t)L_34, (int32_t)L_35)), /*hidden argument*/Nullable_1__ctor_m11F9C228CFDF836DDFCD7880C09CB4098AB9D7F2_RuntimeMethod_var);
G_B13_0 = L_36;
G_B13_1 = G_B12_0;
}
IL_0103:
{
G_B13_1->set_U3CtotalReadU3E5__2_5(G_B13_0);
int32_t L_37 = __this->get_U3CrequestedSizeU3E5__1_4();
int32_t L_38 = V_3;
__this->set_U3CrequestedSizeU3E5__1_4(((int32_t)il2cpp_codegen_subtract((int32_t)L_37, (int32_t)L_38)));
AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * L_39 = V_1;
NullCheck(L_39);
int32_t* L_40 = L_39->get_address_of_RequestedSize_4();
int32_t L_41 = Interlocked_Exchange_mD5CC61AF0F002355912FAAF84F26BE93639B5FD5((int32_t*)L_40, 0, /*hidden argument*/NULL);
V_4 = L_41;
int32_t L_42 = __this->get_U3CrequestedSizeU3E5__1_4();
int32_t L_43 = V_4;
__this->set_U3CrequestedSizeU3E5__1_4(((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)L_43)));
}
IL_0133:
{
int32_t L_44 = __this->get_U3CrequestedSizeU3E5__1_4();
if ((((int32_t)L_44) > ((int32_t)0)))
{
goto IL_0034;
}
}
IL_013f:
{
Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB L_45 = __this->get_U3CtotalReadU3E5__2_5();
V_2 = L_45;
goto IL_0161;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0148;
throw e;
}
CATCH_0148:
{ // begin catch(System.Exception)
V_10 = ((Exception_t *)__exception_local);
__this->set_U3CU3E1__state_0(((int32_t)-2));
AsyncTaskMethodBuilder_1_tADDA4A1D7E8E45B9C6AC65AF43C5868605F74865 * L_46 = __this->get_address_of_U3CU3Et__builder_1();
Exception_t * L_47 = V_10;
AsyncTaskMethodBuilder_1_SetException_m24103DD71F8B33836CA0506874DBB021B9385837((AsyncTaskMethodBuilder_1_tADDA4A1D7E8E45B9C6AC65AF43C5868605F74865 *)L_46, L_47, /*hidden argument*/AsyncTaskMethodBuilder_1_SetException_m24103DD71F8B33836CA0506874DBB021B9385837_RuntimeMethod_var);
goto IL_0175;
} // end catch (depth: 1)
IL_0161:
{
__this->set_U3CU3E1__state_0(((int32_t)-2));
AsyncTaskMethodBuilder_1_tADDA4A1D7E8E45B9C6AC65AF43C5868605F74865 * L_48 = __this->get_address_of_U3CU3Et__builder_1();
Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB L_49 = V_2;
AsyncTaskMethodBuilder_1_SetResult_mDB67DEC1B95ACC8E46B3323B1F19D65EC17ADA9A((AsyncTaskMethodBuilder_1_tADDA4A1D7E8E45B9C6AC65AF43C5868605F74865 *)L_48, L_49, /*hidden argument*/AsyncTaskMethodBuilder_1_SetResult_mDB67DEC1B95ACC8E46B3323B1F19D65EC17ADA9A_RuntimeMethod_var);
}
IL_0175:
{
return;
}
}
extern "C" void U3CInnerReadU3Ed__25_MoveNext_m4AD149EC4A2E6FDA803D63FB72A354300DBD3D0D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
U3CInnerReadU3Ed__25_tCE25EDB99323C3358577085230EE086DE0CADA5E * _thisAdjusted = reinterpret_cast<U3CInnerReadU3Ed__25_tCE25EDB99323C3358577085230EE086DE0CADA5E *>(__this + 1);
U3CInnerReadU3Ed__25_MoveNext_m4AD149EC4A2E6FDA803D63FB72A354300DBD3D0D(_thisAdjusted, method);
}
// System.Void Mono.Net.Security.AsyncProtocolRequest/<InnerRead>d__25::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
extern "C" IL2CPP_METHOD_ATTR void U3CInnerReadU3Ed__25_SetStateMachine_mEBFC49E17D2A224B493E390CDDD4D211EC701EC3 (U3CInnerReadU3Ed__25_tCE25EDB99323C3358577085230EE086DE0CADA5E * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CInnerReadU3Ed__25_SetStateMachine_mEBFC49E17D2A224B493E390CDDD4D211EC701EC3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
AsyncTaskMethodBuilder_1_tADDA4A1D7E8E45B9C6AC65AF43C5868605F74865 * L_0 = __this->get_address_of_U3CU3Et__builder_1();
RuntimeObject* L_1 = ___stateMachine0;
AsyncTaskMethodBuilder_1_SetStateMachine_m982DF1DD4A7F18AB2E91BB6203C81F0246BB094A((AsyncTaskMethodBuilder_1_tADDA4A1D7E8E45B9C6AC65AF43C5868605F74865 *)L_0, L_1, /*hidden argument*/AsyncTaskMethodBuilder_1_SetStateMachine_m982DF1DD4A7F18AB2E91BB6203C81F0246BB094A_RuntimeMethod_var);
return;
}
}
extern "C" void U3CInnerReadU3Ed__25_SetStateMachine_mEBFC49E17D2A224B493E390CDDD4D211EC701EC3_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
U3CInnerReadU3Ed__25_tCE25EDB99323C3358577085230EE086DE0CADA5E * _thisAdjusted = reinterpret_cast<U3CInnerReadU3Ed__25_tCE25EDB99323C3358577085230EE086DE0CADA5E *>(__this + 1);
U3CInnerReadU3Ed__25_SetStateMachine_mEBFC49E17D2A224B493E390CDDD4D211EC701EC3(_thisAdjusted, ___stateMachine0, 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 Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24::MoveNext()
extern "C" IL2CPP_METHOD_ATTR void U3CProcessOperationU3Ed__24_MoveNext_m8B20266FC4831A26E691F83D54C6903CF264999D (U3CProcessOperationU3Ed__24_t969904EA513B205F08A3ED1624FE3890853645AA * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CProcessOperationU3Ed__24_MoveNext_m8B20266FC4831A26E691F83D54C6903CF264999D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * V_1 = NULL;
Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB V_2;
memset(&V_2, 0, sizeof(V_2));
ConfiguredTaskAwaiter_t7DF2E84988582301369783F2ECA65B4F26D5A740 V_3;
memset(&V_3, 0, sizeof(V_3));
ConfiguredTaskAwaitable_1_tBB2B2DCC75E051E96BC844D2AADFE67C2EB3A872 V_4;
memset(&V_4, 0, sizeof(V_4));
Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB V_5;
memset(&V_5, 0, sizeof(V_5));
int32_t V_6 = 0;
int32_t V_7 = 0;
ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 V_8;
memset(&V_8, 0, sizeof(V_8));
ConfiguredTaskAwaitable_t24DE1415466EE20060BE5AD528DC5C812CFA53A9 V_9;
memset(&V_9, 0, sizeof(V_9));
Exception_t * V_10 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
int32_t G_B11_0 = 0;
int32_t G_B16_0 = 0;
{
int32_t L_0 = __this->get_U3CU3E1__state_0();
V_0 = L_0;
AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * L_1 = __this->get_U3CU3E4__this_3();
V_1 = L_1;
}
IL_000e:
try
{ // begin try (depth: 1)
{
int32_t L_2 = V_0;
if (!L_2)
{
goto IL_0077;
}
}
IL_0011:
{
int32_t L_3 = V_0;
if ((((int32_t)L_3) == ((int32_t)1)))
{
goto IL_0179;
}
}
IL_0018:
{
__this->set_U3CstatusU3E5__1_4(0);
goto IL_01a9;
}
IL_0024:
{
CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB * L_4 = __this->get_address_of_cancellationToken_2();
CancellationToken_ThrowIfCancellationRequested_m13AB667F961F83D8ED759BA402325638F43B0938((CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB *)L_4, /*hidden argument*/NULL);
AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * L_5 = V_1;
CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_6 = __this->get_cancellationToken_2();
NullCheck(L_5);
Task_1_t8906695C9865566AA79419735634FF27AC74506E * L_7 = AsyncProtocolRequest_InnerRead_m902FA39460933B383900CB60BDF8CCFC96BF3499(L_5, L_6, /*hidden argument*/NULL);
NullCheck(L_7);
ConfiguredTaskAwaitable_1_tBB2B2DCC75E051E96BC844D2AADFE67C2EB3A872 L_8 = Task_1_ConfigureAwait_m4A70F9E8C6A5F7C412A2A2ECEC755007AA4A37A3(L_7, (bool)0, /*hidden argument*/Task_1_ConfigureAwait_m4A70F9E8C6A5F7C412A2A2ECEC755007AA4A37A3_RuntimeMethod_var);
V_4 = L_8;
ConfiguredTaskAwaiter_t7DF2E84988582301369783F2ECA65B4F26D5A740 L_9 = ConfiguredTaskAwaitable_1_GetAwaiter_m2334D52A2F0403A09E55D5B4B4AA4DA5B2E318B5((ConfiguredTaskAwaitable_1_tBB2B2DCC75E051E96BC844D2AADFE67C2EB3A872 *)(&V_4), /*hidden argument*/ConfiguredTaskAwaitable_1_GetAwaiter_m2334D52A2F0403A09E55D5B4B4AA4DA5B2E318B5_RuntimeMethod_var);
V_3 = L_9;
bool L_10 = ConfiguredTaskAwaiter_get_IsCompleted_m1358F59D9346DF4A24793C6A211BC0AF3BC3AB04((ConfiguredTaskAwaiter_t7DF2E84988582301369783F2ECA65B4F26D5A740 *)(&V_3), /*hidden argument*/ConfiguredTaskAwaiter_get_IsCompleted_m1358F59D9346DF4A24793C6A211BC0AF3BC3AB04_RuntimeMethod_var);
if (L_10)
{
goto IL_0093;
}
}
IL_0054:
{
int32_t L_11 = 0;
V_0 = L_11;
__this->set_U3CU3E1__state_0(L_11);
ConfiguredTaskAwaiter_t7DF2E84988582301369783F2ECA65B4F26D5A740 L_12 = V_3;
__this->set_U3CU3Eu__1_6(L_12);
AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 * L_13 = __this->get_address_of_U3CU3Et__builder_1();
AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t7DF2E84988582301369783F2ECA65B4F26D5A740_TisU3CProcessOperationU3Ed__24_t969904EA513B205F08A3ED1624FE3890853645AA_mFAAE60A8CEF35B2FFAAC5B0CFC0E04A24F309821((AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 *)L_13, (ConfiguredTaskAwaiter_t7DF2E84988582301369783F2ECA65B4F26D5A740 *)(&V_3), (U3CProcessOperationU3Ed__24_t969904EA513B205F08A3ED1624FE3890853645AA *)__this, /*hidden argument*/AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t7DF2E84988582301369783F2ECA65B4F26D5A740_TisU3CProcessOperationU3Ed__24_t969904EA513B205F08A3ED1624FE3890853645AA_mFAAE60A8CEF35B2FFAAC5B0CFC0E04A24F309821_RuntimeMethod_var);
goto IL_01e3;
}
IL_0077:
{
ConfiguredTaskAwaiter_t7DF2E84988582301369783F2ECA65B4F26D5A740 L_14 = __this->get_U3CU3Eu__1_6();
V_3 = L_14;
ConfiguredTaskAwaiter_t7DF2E84988582301369783F2ECA65B4F26D5A740 * L_15 = __this->get_address_of_U3CU3Eu__1_6();
il2cpp_codegen_initobj(L_15, sizeof(ConfiguredTaskAwaiter_t7DF2E84988582301369783F2ECA65B4F26D5A740 ));
int32_t L_16 = (-1);
V_0 = L_16;
__this->set_U3CU3E1__state_0(L_16);
}
IL_0093:
{
Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB L_17 = ConfiguredTaskAwaiter_GetResult_m519FEE37CB8F736EE39E33E1C36D4A0EE8C2611C((ConfiguredTaskAwaiter_t7DF2E84988582301369783F2ECA65B4F26D5A740 *)(&V_3), /*hidden argument*/ConfiguredTaskAwaiter_GetResult_m519FEE37CB8F736EE39E33E1C36D4A0EE8C2611C_RuntimeMethod_var);
V_2 = L_17;
bool L_18 = Nullable_1_get_HasValue_mB664E2C41CADA8413EF8842E6601B8C696A7CE15((Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB *)(&V_2), /*hidden argument*/Nullable_1_get_HasValue_mB664E2C41CADA8413EF8842E6601B8C696A7CE15_RuntimeMethod_var);
if (!L_18)
{
goto IL_00f2;
}
}
IL_00a4:
{
Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB L_19 = V_2;
V_5 = L_19;
V_6 = 0;
int32_t L_20 = Nullable_1_GetValueOrDefault_mE89BB8F302DF31EE202251F4746859285860B6B6((Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB *)(&V_5), /*hidden argument*/Nullable_1_GetValueOrDefault_mE89BB8F302DF31EE202251F4746859285860B6B6_RuntimeMethod_var);
int32_t L_21 = V_6;
if ((((int32_t)L_20) == ((int32_t)L_21)))
{
goto IL_00b8;
}
}
IL_00b5:
{
G_B11_0 = 0;
goto IL_00bf;
}
IL_00b8:
{
bool L_22 = Nullable_1_get_HasValue_mB664E2C41CADA8413EF8842E6601B8C696A7CE15((Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB *)(&V_5), /*hidden argument*/Nullable_1_get_HasValue_mB664E2C41CADA8413EF8842E6601B8C696A7CE15_RuntimeMethod_var);
G_B11_0 = ((int32_t)(L_22));
}
IL_00bf:
{
if (!G_B11_0)
{
goto IL_00ca;
}
}
IL_00c1:
{
__this->set_U3CstatusU3E5__1_4(2);
goto IL_00f2;
}
IL_00ca:
{
Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB L_23 = V_2;
V_5 = L_23;
V_6 = 0;
int32_t L_24 = Nullable_1_GetValueOrDefault_mE89BB8F302DF31EE202251F4746859285860B6B6((Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB *)(&V_5), /*hidden argument*/Nullable_1_GetValueOrDefault_mE89BB8F302DF31EE202251F4746859285860B6B6_RuntimeMethod_var);
int32_t L_25 = V_6;
if ((((int32_t)L_24) < ((int32_t)L_25)))
{
goto IL_00de;
}
}
IL_00db:
{
G_B16_0 = 0;
goto IL_00e5;
}
IL_00de:
{
bool L_26 = Nullable_1_get_HasValue_mB664E2C41CADA8413EF8842E6601B8C696A7CE15((Nullable_1_t0D03270832B3FFDDC0E7C2D89D4A0EA25376A1EB *)(&V_5), /*hidden argument*/Nullable_1_get_HasValue_mB664E2C41CADA8413EF8842E6601B8C696A7CE15_RuntimeMethod_var);
G_B16_0 = ((int32_t)(L_26));
}
IL_00e5:
{
if (!G_B16_0)
{
goto IL_00f2;
}
}
IL_00e7:
{
IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA * L_27 = (IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA *)il2cpp_codegen_object_new(IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA_il2cpp_TypeInfo_var);
IOException__ctor_mB64DEFB376AA8E279A647A3770F913B20EF65175(L_27, _stringLiteral4A37E59F0BD3B687584D2D8B9790C9B454FBE94B, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_27, NULL, U3CProcessOperationU3Ed__24_MoveNext_m8B20266FC4831A26E691F83D54C6903CF264999D_RuntimeMethod_var);
}
IL_00f2:
{
int32_t L_28 = __this->get_U3CstatusU3E5__1_4();
V_7 = L_28;
int32_t L_29 = V_7;
if ((!(((uint32_t)L_29) <= ((uint32_t)2))))
{
goto IL_0113;
}
}
IL_00ff:
{
AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * L_30 = V_1;
int32_t L_31 = __this->get_U3CstatusU3E5__1_4();
NullCheck(L_30);
int32_t L_32 = VirtFuncInvoker1< int32_t, int32_t >::Invoke(4 /* Mono.Net.Security.AsyncOperationStatus Mono.Net.Security.AsyncProtocolRequest::Run(Mono.Net.Security.AsyncOperationStatus) */, L_30, L_31);
__this->set_U3CnewStatusU3E5__2_5(L_32);
goto IL_0119;
}
IL_0113:
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_33 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1F94EA1226068BD1B7EAA1B836A59C99979F579E(L_33, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_33, NULL, U3CProcessOperationU3Ed__24_MoveNext_m8B20266FC4831A26E691F83D54C6903CF264999D_RuntimeMethod_var);
}
IL_0119:
{
AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * L_34 = V_1;
NullCheck(L_34);
int32_t* L_35 = L_34->get_address_of_WriteRequested_5();
int32_t L_36 = Interlocked_Exchange_mD5CC61AF0F002355912FAAF84F26BE93639B5FD5((int32_t*)L_35, 0, /*hidden argument*/NULL);
if (!L_36)
{
goto IL_019d;
}
}
IL_0127:
{
AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * L_37 = V_1;
NullCheck(L_37);
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * L_38 = AsyncProtocolRequest_get_Parent_m1F7659D1FAFC679076165336ED380C4BD123B452(L_37, /*hidden argument*/NULL);
AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * L_39 = V_1;
NullCheck(L_39);
bool L_40 = AsyncProtocolRequest_get_RunSynchronously_m66A26ED05543D9AF1ED86287DCE8389BC1CB319A(L_39, /*hidden argument*/NULL);
CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_41 = __this->get_cancellationToken_2();
NullCheck(L_38);
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_42 = MobileAuthenticatedStream_InnerWrite_m36FEDC8E842C497B62D566D6392287270FD698AC(L_38, L_40, L_41, /*hidden argument*/NULL);
NullCheck(L_42);
ConfiguredTaskAwaitable_t24DE1415466EE20060BE5AD528DC5C812CFA53A9 L_43 = Task_ConfigureAwait_m2FB91172F9031B0CC520D9D09B658ACC5FD6CE02(L_42, (bool)0, /*hidden argument*/NULL);
V_9 = L_43;
ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 L_44 = ConfiguredTaskAwaitable_GetAwaiter_m1EF40F198D32924E2D0F41E20B99CADBF5DDD303((ConfiguredTaskAwaitable_t24DE1415466EE20060BE5AD528DC5C812CFA53A9 *)(&V_9), /*hidden argument*/NULL);
V_8 = L_44;
bool L_45 = ConfiguredTaskAwaiter_get_IsCompleted_mDD0292137E15882AF385AE9D2FB1C8B0BEE89BDD((ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 *)(&V_8), /*hidden argument*/NULL);
if (L_45)
{
goto IL_0196;
}
}
IL_0158:
{
int32_t L_46 = 1;
V_0 = L_46;
__this->set_U3CU3E1__state_0(L_46);
ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 L_47 = V_8;
__this->set_U3CU3Eu__2_7(L_47);
AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 * L_48 = __this->get_address_of_U3CU3Et__builder_1();
AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874_TisU3CProcessOperationU3Ed__24_t969904EA513B205F08A3ED1624FE3890853645AA_m00FD9615EAA4D3E47C70D097B61431C2A1965520((AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 *)L_48, (ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 *)(&V_8), (U3CProcessOperationU3Ed__24_t969904EA513B205F08A3ED1624FE3890853645AA *)__this, /*hidden argument*/AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874_TisU3CProcessOperationU3Ed__24_t969904EA513B205F08A3ED1624FE3890853645AA_m00FD9615EAA4D3E47C70D097B61431C2A1965520_RuntimeMethod_var);
goto IL_01e3;
}
IL_0179:
{
ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 L_49 = __this->get_U3CU3Eu__2_7();
V_8 = L_49;
ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 * L_50 = __this->get_address_of_U3CU3Eu__2_7();
il2cpp_codegen_initobj(L_50, sizeof(ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 ));
int32_t L_51 = (-1);
V_0 = L_51;
__this->set_U3CU3E1__state_0(L_51);
}
IL_0196:
{
ConfiguredTaskAwaiter_GetResult_m7DFE5EAFB3C1F70B40948EFF46E9B13F1E260062((ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 *)(&V_8), /*hidden argument*/NULL);
}
IL_019d:
{
int32_t L_52 = __this->get_U3CnewStatusU3E5__2_5();
__this->set_U3CstatusU3E5__1_4(L_52);
}
IL_01a9:
{
int32_t L_53 = __this->get_U3CstatusU3E5__1_4();
if ((!(((uint32_t)L_53) == ((uint32_t)3))))
{
goto IL_0024;
}
}
IL_01b5:
{
goto IL_01d0;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_01b7;
throw e;
}
CATCH_01b7:
{ // begin catch(System.Exception)
V_10 = ((Exception_t *)__exception_local);
__this->set_U3CU3E1__state_0(((int32_t)-2));
AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 * L_54 = __this->get_address_of_U3CU3Et__builder_1();
Exception_t * L_55 = V_10;
AsyncTaskMethodBuilder_SetException_m370C484922A63A6EF96E241D1370B8814F1F2D6B((AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 *)L_54, L_55, /*hidden argument*/NULL);
goto IL_01e3;
} // end catch (depth: 1)
IL_01d0:
{
__this->set_U3CU3E1__state_0(((int32_t)-2));
AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 * L_56 = __this->get_address_of_U3CU3Et__builder_1();
AsyncTaskMethodBuilder_SetResult_m151016FB698F3BB34A73BAE693A97513A7E4C838((AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 *)L_56, /*hidden argument*/NULL);
}
IL_01e3:
{
return;
}
}
extern "C" void U3CProcessOperationU3Ed__24_MoveNext_m8B20266FC4831A26E691F83D54C6903CF264999D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
U3CProcessOperationU3Ed__24_t969904EA513B205F08A3ED1624FE3890853645AA * _thisAdjusted = reinterpret_cast<U3CProcessOperationU3Ed__24_t969904EA513B205F08A3ED1624FE3890853645AA *>(__this + 1);
U3CProcessOperationU3Ed__24_MoveNext_m8B20266FC4831A26E691F83D54C6903CF264999D(_thisAdjusted, method);
}
// System.Void Mono.Net.Security.AsyncProtocolRequest/<ProcessOperation>d__24::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
extern "C" IL2CPP_METHOD_ATTR void U3CProcessOperationU3Ed__24_SetStateMachine_m9710FA92383D6497F1A16F90563A9056800A59F3 (U3CProcessOperationU3Ed__24_t969904EA513B205F08A3ED1624FE3890853645AA * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
{
AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 * L_0 = __this->get_address_of_U3CU3Et__builder_1();
RuntimeObject* L_1 = ___stateMachine0;
AsyncTaskMethodBuilder_SetStateMachine_mB5DD68F7C49EA6D452AEBA02B1B98AED898C3C25((AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 *)L_0, L_1, /*hidden argument*/NULL);
return;
}
}
extern "C" void U3CProcessOperationU3Ed__24_SetStateMachine_m9710FA92383D6497F1A16F90563A9056800A59F3_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
U3CProcessOperationU3Ed__24_t969904EA513B205F08A3ED1624FE3890853645AA * _thisAdjusted = reinterpret_cast<U3CProcessOperationU3Ed__24_t969904EA513B205F08A3ED1624FE3890853645AA *>(__this + 1);
U3CProcessOperationU3Ed__24_SetStateMachine_m9710FA92383D6497F1A16F90563A9056800A59F3(_thisAdjusted, ___stateMachine0, 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 Mono.Net.Security.AsyncProtocolRequest/<StartOperation>d__23::MoveNext()
extern "C" IL2CPP_METHOD_ATTR void U3CStartOperationU3Ed__23_MoveNext_m8BB4BB3D517CE898003C10FE5B80D375FA4D30A2 (U3CStartOperationU3Ed__23_tF07DD38BEEE955EB5B1359B816079584899DDEC9 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CStartOperationU3Ed__23_MoveNext_m8BB4BB3D517CE898003C10FE5B80D375FA4D30A2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * V_1 = NULL;
AsyncProtocolResult_t957DDFF1A4D0CC662F930F5C9E09E4FA1FBBFBC0 * V_2 = NULL;
ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 V_3;
memset(&V_3, 0, sizeof(V_3));
ConfiguredTaskAwaitable_t24DE1415466EE20060BE5AD528DC5C812CFA53A9 V_4;
memset(&V_4, 0, sizeof(V_4));
Exception_t * V_5 = NULL;
Exception_t * V_6 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
int32_t L_0 = __this->get_U3CU3E1__state_0();
V_0 = L_0;
AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * L_1 = __this->get_U3CU3E4__this_2();
V_1 = L_1;
}
IL_000e:
try
{ // begin try (depth: 1)
{
int32_t L_2 = V_0;
if (!L_2)
{
goto IL_0026;
}
}
IL_0011:
{
AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * L_3 = V_1;
NullCheck(L_3);
int32_t* L_4 = L_3->get_address_of_Started_3();
int32_t L_5 = Interlocked_CompareExchange_mD830160E95D6C589AD31EE9DC8D19BD4A8DCDC03((int32_t*)L_4, 1, 0, /*hidden argument*/NULL);
if (!L_5)
{
goto IL_0026;
}
}
IL_0020:
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_6 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1F94EA1226068BD1B7EAA1B836A59C99979F579E(L_6, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, U3CStartOperationU3Ed__23_MoveNext_m8BB4BB3D517CE898003C10FE5B80D375FA4D30A2_RuntimeMethod_var);
}
IL_0026:
{
}
IL_0027:
try
{ // begin try (depth: 2)
{
int32_t L_7 = V_0;
if (!L_7)
{
goto IL_006f;
}
}
IL_002a:
{
AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * L_8 = V_1;
CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_9 = __this->get_cancellationToken_3();
NullCheck(L_8);
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_10 = AsyncProtocolRequest_ProcessOperation_m6DD0D7800F73C41BE9A5313737357801B22ED71D(L_8, L_9, /*hidden argument*/NULL);
NullCheck(L_10);
ConfiguredTaskAwaitable_t24DE1415466EE20060BE5AD528DC5C812CFA53A9 L_11 = Task_ConfigureAwait_m2FB91172F9031B0CC520D9D09B658ACC5FD6CE02(L_10, (bool)0, /*hidden argument*/NULL);
V_4 = L_11;
ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 L_12 = ConfiguredTaskAwaitable_GetAwaiter_m1EF40F198D32924E2D0F41E20B99CADBF5DDD303((ConfiguredTaskAwaitable_t24DE1415466EE20060BE5AD528DC5C812CFA53A9 *)(&V_4), /*hidden argument*/NULL);
V_3 = L_12;
bool L_13 = ConfiguredTaskAwaiter_get_IsCompleted_mDD0292137E15882AF385AE9D2FB1C8B0BEE89BDD((ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 *)(&V_3), /*hidden argument*/NULL);
if (L_13)
{
goto IL_008b;
}
}
IL_004f:
{
int32_t L_14 = 0;
V_0 = L_14;
__this->set_U3CU3E1__state_0(L_14);
ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 L_15 = V_3;
__this->set_U3CU3Eu__1_4(L_15);
AsyncTaskMethodBuilder_1_tE6ADC5F95443C1197F4C34B1207F02A4E0F7EDB2 * L_16 = __this->get_address_of_U3CU3Et__builder_1();
AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874_TisU3CStartOperationU3Ed__23_tF07DD38BEEE955EB5B1359B816079584899DDEC9_m0BF83BB93CE0CD7BFC1D12292259197900CEA4F8((AsyncTaskMethodBuilder_1_tE6ADC5F95443C1197F4C34B1207F02A4E0F7EDB2 *)L_16, (ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 *)(&V_3), (U3CStartOperationU3Ed__23_tF07DD38BEEE955EB5B1359B816079584899DDEC9 *)__this, /*hidden argument*/AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874_TisU3CStartOperationU3Ed__23_tF07DD38BEEE955EB5B1359B816079584899DDEC9_m0BF83BB93CE0CD7BFC1D12292259197900CEA4F8_RuntimeMethod_var);
goto IL_00e9;
}
IL_006f:
{
ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 L_17 = __this->get_U3CU3Eu__1_4();
V_3 = L_17;
ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 * L_18 = __this->get_address_of_U3CU3Eu__1_4();
il2cpp_codegen_initobj(L_18, sizeof(ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 ));
int32_t L_19 = (-1);
V_0 = L_19;
__this->set_U3CU3E1__state_0(L_19);
}
IL_008b:
{
ConfiguredTaskAwaiter_GetResult_m7DFE5EAFB3C1F70B40948EFF46E9B13F1E260062((ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 *)(&V_3), /*hidden argument*/NULL);
AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * L_20 = V_1;
NullCheck(L_20);
int32_t L_21 = AsyncProtocolRequest_get_UserResult_m53CEBBACE5031D4CE92308ABBAEA38AEF74DDBD3(L_20, /*hidden argument*/NULL);
AsyncProtocolResult_t957DDFF1A4D0CC662F930F5C9E09E4FA1FBBFBC0 * L_22 = (AsyncProtocolResult_t957DDFF1A4D0CC662F930F5C9E09E4FA1FBBFBC0 *)il2cpp_codegen_object_new(AsyncProtocolResult_t957DDFF1A4D0CC662F930F5C9E09E4FA1FBBFBC0_il2cpp_TypeInfo_var);
AsyncProtocolResult__ctor_m9F01278D600A337B6A0CF5F6C9EFF7760BD758D8(L_22, L_21, /*hidden argument*/NULL);
V_2 = L_22;
goto IL_00d5;
}
} // end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_00a0;
throw e;
}
CATCH_00a0:
{ // begin catch(System.Exception)
V_5 = ((Exception_t *)__exception_local);
AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * L_23 = V_1;
NullCheck(L_23);
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * L_24 = AsyncProtocolRequest_get_Parent_m1F7659D1FAFC679076165336ED380C4BD123B452(L_23, /*hidden argument*/NULL);
Exception_t * L_25 = V_5;
IL2CPP_RUNTIME_CLASS_INIT(MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045_il2cpp_TypeInfo_var);
Exception_t * L_26 = MobileAuthenticatedStream_GetSSPIException_m574F0E57FDDC71287516A9908D7E57FC61A8ED27(L_25, /*hidden argument*/NULL);
NullCheck(L_24);
ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * L_27 = MobileAuthenticatedStream_SetException_mAFD628C4C8A54C4FE24BFB30C0F5863FDDFC8A7F(L_24, L_26, /*hidden argument*/NULL);
AsyncProtocolResult_t957DDFF1A4D0CC662F930F5C9E09E4FA1FBBFBC0 * L_28 = (AsyncProtocolResult_t957DDFF1A4D0CC662F930F5C9E09E4FA1FBBFBC0 *)il2cpp_codegen_object_new(AsyncProtocolResult_t957DDFF1A4D0CC662F930F5C9E09E4FA1FBBFBC0_il2cpp_TypeInfo_var);
AsyncProtocolResult__ctor_mD63EC8610596D4B15DB1325C58FF32A41DAD48CF(L_28, L_27, /*hidden argument*/NULL);
V_2 = L_28;
goto IL_00d5;
} // end catch (depth: 2)
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_00bc;
throw e;
}
CATCH_00bc:
{ // begin catch(System.Exception)
V_6 = ((Exception_t *)__exception_local);
__this->set_U3CU3E1__state_0(((int32_t)-2));
AsyncTaskMethodBuilder_1_tE6ADC5F95443C1197F4C34B1207F02A4E0F7EDB2 * L_29 = __this->get_address_of_U3CU3Et__builder_1();
Exception_t * L_30 = V_6;
AsyncTaskMethodBuilder_1_SetException_m7AC187DC8C778D9C7E06D316EB9BFAE37B4E7D53((AsyncTaskMethodBuilder_1_tE6ADC5F95443C1197F4C34B1207F02A4E0F7EDB2 *)L_29, L_30, /*hidden argument*/AsyncTaskMethodBuilder_1_SetException_m7AC187DC8C778D9C7E06D316EB9BFAE37B4E7D53_RuntimeMethod_var);
goto IL_00e9;
} // end catch (depth: 1)
IL_00d5:
{
__this->set_U3CU3E1__state_0(((int32_t)-2));
AsyncTaskMethodBuilder_1_tE6ADC5F95443C1197F4C34B1207F02A4E0F7EDB2 * L_31 = __this->get_address_of_U3CU3Et__builder_1();
AsyncProtocolResult_t957DDFF1A4D0CC662F930F5C9E09E4FA1FBBFBC0 * L_32 = V_2;
AsyncTaskMethodBuilder_1_SetResult_mD643FBB081E33BE94442E9D8F9694E9008B0C4F0((AsyncTaskMethodBuilder_1_tE6ADC5F95443C1197F4C34B1207F02A4E0F7EDB2 *)L_31, L_32, /*hidden argument*/AsyncTaskMethodBuilder_1_SetResult_mD643FBB081E33BE94442E9D8F9694E9008B0C4F0_RuntimeMethod_var);
}
IL_00e9:
{
return;
}
}
extern "C" void U3CStartOperationU3Ed__23_MoveNext_m8BB4BB3D517CE898003C10FE5B80D375FA4D30A2_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
U3CStartOperationU3Ed__23_tF07DD38BEEE955EB5B1359B816079584899DDEC9 * _thisAdjusted = reinterpret_cast<U3CStartOperationU3Ed__23_tF07DD38BEEE955EB5B1359B816079584899DDEC9 *>(__this + 1);
U3CStartOperationU3Ed__23_MoveNext_m8BB4BB3D517CE898003C10FE5B80D375FA4D30A2(_thisAdjusted, method);
}
// System.Void Mono.Net.Security.AsyncProtocolRequest/<StartOperation>d__23::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
extern "C" IL2CPP_METHOD_ATTR void U3CStartOperationU3Ed__23_SetStateMachine_m0D9AFFD785F28428CCC846BD6A8FCFD38F9B0F9A (U3CStartOperationU3Ed__23_tF07DD38BEEE955EB5B1359B816079584899DDEC9 * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CStartOperationU3Ed__23_SetStateMachine_m0D9AFFD785F28428CCC846BD6A8FCFD38F9B0F9A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
AsyncTaskMethodBuilder_1_tE6ADC5F95443C1197F4C34B1207F02A4E0F7EDB2 * L_0 = __this->get_address_of_U3CU3Et__builder_1();
RuntimeObject* L_1 = ___stateMachine0;
AsyncTaskMethodBuilder_1_SetStateMachine_m26511B6C387FC1405B1EEDF9BA97FC8B04E833DD((AsyncTaskMethodBuilder_1_tE6ADC5F95443C1197F4C34B1207F02A4E0F7EDB2 *)L_0, L_1, /*hidden argument*/AsyncTaskMethodBuilder_1_SetStateMachine_m26511B6C387FC1405B1EEDF9BA97FC8B04E833DD_RuntimeMethod_var);
return;
}
}
extern "C" void U3CStartOperationU3Ed__23_SetStateMachine_m0D9AFFD785F28428CCC846BD6A8FCFD38F9B0F9A_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
U3CStartOperationU3Ed__23_tF07DD38BEEE955EB5B1359B816079584899DDEC9 * _thisAdjusted = reinterpret_cast<U3CStartOperationU3Ed__23_tF07DD38BEEE955EB5B1359B816079584899DDEC9 *>(__this + 1);
U3CStartOperationU3Ed__23_SetStateMachine_m0D9AFFD785F28428CCC846BD6A8FCFD38F9B0F9A(_thisAdjusted, ___stateMachine0, 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.Int32 Mono.Net.Security.AsyncProtocolResult::get_UserResult()
extern "C" IL2CPP_METHOD_ATTR int32_t AsyncProtocolResult_get_UserResult_mCCD14DC517D32C83AA61320D6D1D2E7F1430A3C8 (AsyncProtocolResult_t957DDFF1A4D0CC662F930F5C9E09E4FA1FBBFBC0 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_U3CUserResultU3Ek__BackingField_0();
return L_0;
}
}
// System.Runtime.ExceptionServices.ExceptionDispatchInfo Mono.Net.Security.AsyncProtocolResult::get_Error()
extern "C" IL2CPP_METHOD_ATTR ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * AsyncProtocolResult_get_Error_m90252805C3FCD7277CD1CB01CB765183889E6E29 (AsyncProtocolResult_t957DDFF1A4D0CC662F930F5C9E09E4FA1FBBFBC0 * __this, const RuntimeMethod* method)
{
{
ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * L_0 = __this->get_U3CErrorU3Ek__BackingField_1();
return L_0;
}
}
// System.Void Mono.Net.Security.AsyncProtocolResult::.ctor(System.Int32)
extern "C" IL2CPP_METHOD_ATTR void AsyncProtocolResult__ctor_m9F01278D600A337B6A0CF5F6C9EFF7760BD758D8 (AsyncProtocolResult_t957DDFF1A4D0CC662F930F5C9E09E4FA1FBBFBC0 * __this, int32_t ___result0, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
int32_t L_0 = ___result0;
__this->set_U3CUserResultU3Ek__BackingField_0(L_0);
return;
}
}
// System.Void Mono.Net.Security.AsyncProtocolResult::.ctor(System.Runtime.ExceptionServices.ExceptionDispatchInfo)
extern "C" IL2CPP_METHOD_ATTR void AsyncProtocolResult__ctor_mD63EC8610596D4B15DB1325C58FF32A41DAD48CF (AsyncProtocolResult_t957DDFF1A4D0CC662F930F5C9E09E4FA1FBBFBC0 * __this, ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * ___error0, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * L_0 = ___error0;
__this->set_U3CErrorU3Ek__BackingField_1(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
// Mono.Net.Security.BufferOffsetSize Mono.Net.Security.AsyncReadOrWriteRequest::get_UserBuffer()
extern "C" IL2CPP_METHOD_ATTR BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 * AsyncReadOrWriteRequest_get_UserBuffer_m628B7BB1EB536BA73CFE467242E0E749A7B0AE6A (AsyncReadOrWriteRequest_t991B91E93F3980A5879ABAC6738F9BAC770E3B8F * __this, const RuntimeMethod* method)
{
{
BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 * L_0 = __this->get_U3CUserBufferU3Ek__BackingField_7();
return L_0;
}
}
// System.Int32 Mono.Net.Security.AsyncReadOrWriteRequest::get_CurrentSize()
extern "C" IL2CPP_METHOD_ATTR int32_t AsyncReadOrWriteRequest_get_CurrentSize_m5AE6CC50F25E8504438DF2C9C2E2A44000621142 (AsyncReadOrWriteRequest_t991B91E93F3980A5879ABAC6738F9BAC770E3B8F * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_U3CCurrentSizeU3Ek__BackingField_8();
return L_0;
}
}
// System.Void Mono.Net.Security.AsyncReadOrWriteRequest::set_CurrentSize(System.Int32)
extern "C" IL2CPP_METHOD_ATTR void AsyncReadOrWriteRequest_set_CurrentSize_mAB6067CAD6F9DB5B3D274FC09E70BFA8DCBA288B (AsyncReadOrWriteRequest_t991B91E93F3980A5879ABAC6738F9BAC770E3B8F * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set_U3CCurrentSizeU3Ek__BackingField_8(L_0);
return;
}
}
// System.Void Mono.Net.Security.AsyncReadOrWriteRequest::.ctor(Mono.Net.Security.MobileAuthenticatedStream,System.Boolean,System.Byte[],System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void AsyncReadOrWriteRequest__ctor_m880E292B39EF76B9EDF3A5AB0A9A333A38A5575F (AsyncReadOrWriteRequest_t991B91E93F3980A5879ABAC6738F9BAC770E3B8F * __this, MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * ___parent0, bool ___sync1, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer2, int32_t ___offset3, int32_t ___size4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncReadOrWriteRequest__ctor_m880E292B39EF76B9EDF3A5AB0A9A333A38A5575F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * L_0 = ___parent0;
bool L_1 = ___sync1;
AsyncProtocolRequest__ctor_mFE18CBE3FAA084FF6DF2AD8BECC2CA6DF4C6E769(__this, L_0, L_1, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___buffer2;
int32_t L_3 = ___offset3;
int32_t L_4 = ___size4;
BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 * L_5 = (BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 *)il2cpp_codegen_object_new(BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9_il2cpp_TypeInfo_var);
BufferOffsetSize__ctor_m3DE692137428B2E6AB46008825FC5C1B63FDAF4F(L_5, L_2, L_3, L_4, /*hidden argument*/NULL);
__this->set_U3CUserBufferU3Ek__BackingField_7(L_5);
return;
}
}
// System.String Mono.Net.Security.AsyncReadOrWriteRequest::ToString()
extern "C" IL2CPP_METHOD_ATTR String_t* AsyncReadOrWriteRequest_ToString_mDF6B2FA7AFA4E8B6571656E60CEF9BCFDCF05EDD (AsyncReadOrWriteRequest_t991B91E93F3980A5879ABAC6738F9BAC770E3B8F * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (AsyncReadOrWriteRequest_ToString_mDF6B2FA7AFA4E8B6571656E60CEF9BCFDCF05EDD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
String_t* L_0 = AsyncProtocolRequest_get_Name_m1999BAB96B06DCB4DC11BF5F3B0BF4C6E2A26FF6(__this, /*hidden argument*/NULL);
BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 * L_1 = AsyncReadOrWriteRequest_get_UserBuffer_m628B7BB1EB536BA73CFE467242E0E749A7B0AE6A(__this, /*hidden argument*/NULL);
String_t* L_2 = String_Format_m19325298DBC61AAC016C16F7B3CF97A8A3DEA34A(_stringLiteral2EFCDFD2D2F77EFCD3A02B86DEA0E3E932226F8A, L_0, L_1, /*hidden argument*/NULL);
return L_2;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Net.Security.AsyncReadRequest::.ctor(Mono.Net.Security.MobileAuthenticatedStream,System.Boolean,System.Byte[],System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void AsyncReadRequest__ctor_mAF75247AFFC230BA5433424D27D13ACF53B3A239 (AsyncReadRequest_t10B0459470C14DC065B5AD60AF378AB78CD138C1 * __this, MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * ___parent0, bool ___sync1, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer2, int32_t ___offset3, int32_t ___size4, const RuntimeMethod* method)
{
{
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * L_0 = ___parent0;
bool L_1 = ___sync1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___buffer2;
int32_t L_3 = ___offset3;
int32_t L_4 = ___size4;
AsyncReadOrWriteRequest__ctor_m880E292B39EF76B9EDF3A5AB0A9A333A38A5575F(__this, L_0, L_1, L_2, L_3, L_4, /*hidden argument*/NULL);
return;
}
}
// Mono.Net.Security.AsyncOperationStatus Mono.Net.Security.AsyncReadRequest::Run(Mono.Net.Security.AsyncOperationStatus)
extern "C" IL2CPP_METHOD_ATTR int32_t AsyncReadRequest_Run_mC9FDEBDFB3C4519C11A47FF358D4B7AB62514E11 (AsyncReadRequest_t10B0459470C14DC065B5AD60AF378AB78CD138C1 * __this, int32_t ___status0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
bool V_1 = false;
{
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * L_0 = AsyncProtocolRequest_get_Parent_m1F7659D1FAFC679076165336ED380C4BD123B452(__this, /*hidden argument*/NULL);
BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 * L_1 = AsyncReadOrWriteRequest_get_UserBuffer_m628B7BB1EB536BA73CFE467242E0E749A7B0AE6A(__this, /*hidden argument*/NULL);
NullCheck(L_0);
ValueTuple_2_t446756A8057B54D18CAD5BA1D73699DA4B40A264 L_2 = MobileAuthenticatedStream_ProcessRead_mB005268451AB3F73B29AD1F787B576D5F3279371(L_0, L_1, /*hidden argument*/NULL);
ValueTuple_2_t446756A8057B54D18CAD5BA1D73699DA4B40A264 L_3 = L_2;
int32_t L_4 = L_3.get_Item1_0();
V_0 = L_4;
bool L_5 = L_3.get_Item2_1();
V_1 = L_5;
int32_t L_6 = V_0;
if ((((int32_t)L_6) >= ((int32_t)0)))
{
goto IL_002b;
}
}
{
AsyncProtocolRequest_set_UserResult_mBF62363240DC9BE894231E56047F594EF452CD19(__this, (-1), /*hidden argument*/NULL);
return (int32_t)(3);
}
IL_002b:
{
int32_t L_7 = AsyncReadOrWriteRequest_get_CurrentSize_m5AE6CC50F25E8504438DF2C9C2E2A44000621142(__this, /*hidden argument*/NULL);
int32_t L_8 = V_0;
AsyncReadOrWriteRequest_set_CurrentSize_mAB6067CAD6F9DB5B3D274FC09E70BFA8DCBA288B(__this, ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8)), /*hidden argument*/NULL);
BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 * L_9 = AsyncReadOrWriteRequest_get_UserBuffer_m628B7BB1EB536BA73CFE467242E0E749A7B0AE6A(__this, /*hidden argument*/NULL);
BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 * L_10 = L_9;
NullCheck(L_10);
int32_t L_11 = L_10->get_Offset_1();
int32_t L_12 = V_0;
NullCheck(L_10);
L_10->set_Offset_1(((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)L_12)));
BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 * L_13 = AsyncReadOrWriteRequest_get_UserBuffer_m628B7BB1EB536BA73CFE467242E0E749A7B0AE6A(__this, /*hidden argument*/NULL);
BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 * L_14 = L_13;
NullCheck(L_14);
int32_t L_15 = L_14->get_Size_2();
int32_t L_16 = V_0;
NullCheck(L_14);
L_14->set_Size_2(((int32_t)il2cpp_codegen_subtract((int32_t)L_15, (int32_t)L_16)));
bool L_17 = V_1;
if (!L_17)
{
goto IL_006c;
}
}
{
int32_t L_18 = AsyncReadOrWriteRequest_get_CurrentSize_m5AE6CC50F25E8504438DF2C9C2E2A44000621142(__this, /*hidden argument*/NULL);
if (L_18)
{
goto IL_006c;
}
}
{
return (int32_t)(1);
}
IL_006c:
{
int32_t L_19 = AsyncReadOrWriteRequest_get_CurrentSize_m5AE6CC50F25E8504438DF2C9C2E2A44000621142(__this, /*hidden argument*/NULL);
AsyncProtocolRequest_set_UserResult_mBF62363240DC9BE894231E56047F594EF452CD19(__this, L_19, /*hidden argument*/NULL);
return (int32_t)(3);
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Net.Security.AsyncWriteRequest::.ctor(Mono.Net.Security.MobileAuthenticatedStream,System.Boolean,System.Byte[],System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void AsyncWriteRequest__ctor_mF3534E810074917ABDE7E4CE7EE61715694F9EB8 (AsyncWriteRequest_tFE4740D02401F295910B4006A8390590D5E2C27B * __this, MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * ___parent0, bool ___sync1, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer2, int32_t ___offset3, int32_t ___size4, const RuntimeMethod* method)
{
{
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * L_0 = ___parent0;
bool L_1 = ___sync1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___buffer2;
int32_t L_3 = ___offset3;
int32_t L_4 = ___size4;
AsyncReadOrWriteRequest__ctor_m880E292B39EF76B9EDF3A5AB0A9A333A38A5575F(__this, L_0, L_1, L_2, L_3, L_4, /*hidden argument*/NULL);
return;
}
}
// Mono.Net.Security.AsyncOperationStatus Mono.Net.Security.AsyncWriteRequest::Run(Mono.Net.Security.AsyncOperationStatus)
extern "C" IL2CPP_METHOD_ATTR int32_t AsyncWriteRequest_Run_mA3FF2D74BD568114BF3EA7FF6B0BE568D25D81BC (AsyncWriteRequest_tFE4740D02401F295910B4006A8390590D5E2C27B * __this, int32_t ___status0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
bool V_1 = false;
{
BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 * L_0 = AsyncReadOrWriteRequest_get_UserBuffer_m628B7BB1EB536BA73CFE467242E0E749A7B0AE6A(__this, /*hidden argument*/NULL);
NullCheck(L_0);
int32_t L_1 = L_0->get_Size_2();
if (L_1)
{
goto IL_001b;
}
}
{
int32_t L_2 = AsyncReadOrWriteRequest_get_CurrentSize_m5AE6CC50F25E8504438DF2C9C2E2A44000621142(__this, /*hidden argument*/NULL);
AsyncProtocolRequest_set_UserResult_mBF62363240DC9BE894231E56047F594EF452CD19(__this, L_2, /*hidden argument*/NULL);
return (int32_t)(3);
}
IL_001b:
{
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * L_3 = AsyncProtocolRequest_get_Parent_m1F7659D1FAFC679076165336ED380C4BD123B452(__this, /*hidden argument*/NULL);
BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 * L_4 = AsyncReadOrWriteRequest_get_UserBuffer_m628B7BB1EB536BA73CFE467242E0E749A7B0AE6A(__this, /*hidden argument*/NULL);
NullCheck(L_3);
ValueTuple_2_t446756A8057B54D18CAD5BA1D73699DA4B40A264 L_5 = MobileAuthenticatedStream_ProcessWrite_m30427A9308C97FAD0964F81A6A9F436FB2507F0F(L_3, L_4, /*hidden argument*/NULL);
ValueTuple_2_t446756A8057B54D18CAD5BA1D73699DA4B40A264 L_6 = L_5;
int32_t L_7 = L_6.get_Item1_0();
V_0 = L_7;
bool L_8 = L_6.get_Item2_1();
V_1 = L_8;
int32_t L_9 = V_0;
if ((((int32_t)L_9) >= ((int32_t)0)))
{
goto IL_0046;
}
}
{
AsyncProtocolRequest_set_UserResult_mBF62363240DC9BE894231E56047F594EF452CD19(__this, (-1), /*hidden argument*/NULL);
return (int32_t)(3);
}
IL_0046:
{
int32_t L_10 = AsyncReadOrWriteRequest_get_CurrentSize_m5AE6CC50F25E8504438DF2C9C2E2A44000621142(__this, /*hidden argument*/NULL);
int32_t L_11 = V_0;
AsyncReadOrWriteRequest_set_CurrentSize_mAB6067CAD6F9DB5B3D274FC09E70BFA8DCBA288B(__this, ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)L_11)), /*hidden argument*/NULL);
BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 * L_12 = AsyncReadOrWriteRequest_get_UserBuffer_m628B7BB1EB536BA73CFE467242E0E749A7B0AE6A(__this, /*hidden argument*/NULL);
BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 * L_13 = L_12;
NullCheck(L_13);
int32_t L_14 = L_13->get_Offset_1();
int32_t L_15 = V_0;
NullCheck(L_13);
L_13->set_Offset_1(((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15)));
BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 * L_16 = AsyncReadOrWriteRequest_get_UserBuffer_m628B7BB1EB536BA73CFE467242E0E749A7B0AE6A(__this, /*hidden argument*/NULL);
BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 * L_17 = L_16;
NullCheck(L_17);
int32_t L_18 = L_17->get_Size_2();
int32_t L_19 = V_0;
NullCheck(L_17);
L_17->set_Size_2(((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)L_19)));
bool L_20 = V_1;
if (!L_20)
{
goto IL_007f;
}
}
{
return (int32_t)(1);
}
IL_007f:
{
int32_t L_21 = AsyncReadOrWriteRequest_get_CurrentSize_m5AE6CC50F25E8504438DF2C9C2E2A44000621142(__this, /*hidden argument*/NULL);
AsyncProtocolRequest_set_UserResult_mBF62363240DC9BE894231E56047F594EF452CD19(__this, L_21, /*hidden argument*/NULL);
return (int32_t)(3);
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Int32 Mono.Net.Security.BufferOffsetSize::get_EndOffset()
extern "C" IL2CPP_METHOD_ATTR int32_t BufferOffsetSize_get_EndOffset_m3D0A21592979F5088101892843183FCFB8C9BF2A (BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_Offset_1();
int32_t L_1 = __this->get_Size_2();
return ((int32_t)il2cpp_codegen_add((int32_t)L_0, (int32_t)L_1));
}
}
// System.Int32 Mono.Net.Security.BufferOffsetSize::get_Remaining()
extern "C" IL2CPP_METHOD_ATTR int32_t BufferOffsetSize_get_Remaining_mBD3EA6B0F643284A54FDCA2860FE0F65C5CAF054 (BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 * __this, const RuntimeMethod* method)
{
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = __this->get_Buffer_0();
NullCheck(L_0);
int32_t L_1 = __this->get_Offset_1();
int32_t L_2 = __this->get_Size_2();
return ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length)))), (int32_t)L_1)), (int32_t)L_2));
}
}
// System.Void Mono.Net.Security.BufferOffsetSize::.ctor(System.Byte[],System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void BufferOffsetSize__ctor_m3DE692137428B2E6AB46008825FC5C1B63FDAF4F (BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t ___offset1, int32_t ___size2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BufferOffsetSize__ctor_m3DE692137428B2E6AB46008825FC5C1B63FDAF4F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___buffer0;
if (L_0)
{
goto IL_0014;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteralE53C2EA1FE4BD2B78BF4723C7C155A578E020A25, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, BufferOffsetSize__ctor_m3DE692137428B2E6AB46008825FC5C1B63FDAF4F_RuntimeMethod_var);
}
IL_0014:
{
int32_t L_2 = ___offset1;
if ((((int32_t)L_2) >= ((int32_t)0)))
{
goto IL_0023;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_3 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_3, _stringLiteral53A610E925BBC0A175E365D31241AE75AEEAD651, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, BufferOffsetSize__ctor_m3DE692137428B2E6AB46008825FC5C1B63FDAF4F_RuntimeMethod_var);
}
IL_0023:
{
int32_t L_4 = ___size2;
if ((((int32_t)L_4) < ((int32_t)0)))
{
goto IL_002f;
}
}
{
int32_t L_5 = ___offset1;
int32_t L_6 = ___size2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = ___buffer0;
NullCheck(L_7);
if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)L_6))) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_7)->max_length)))))))
{
goto IL_003a;
}
}
IL_002f:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_8 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_8, _stringLiteral89368E1D68015693AB48EE189D0632CB5D6EDFB3, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, NULL, BufferOffsetSize__ctor_m3DE692137428B2E6AB46008825FC5C1B63FDAF4F_RuntimeMethod_var);
}
IL_003a:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = ___buffer0;
__this->set_Buffer_0(L_9);
int32_t L_10 = ___offset1;
__this->set_Offset_1(L_10);
int32_t L_11 = ___size2;
__this->set_Size_2(L_11);
__this->set_Complete_4((bool)0);
return;
}
}
// System.String Mono.Net.Security.BufferOffsetSize::ToString()
extern "C" IL2CPP_METHOD_ATTR String_t* BufferOffsetSize_ToString_mEEB6528B305FE796622A87E8692C7132423D4655 (BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BufferOffsetSize_ToString_mEEB6528B305FE796622A87E8692C7132423D4655_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = __this->get_Offset_1();
int32_t L_1 = L_0;
RuntimeObject * L_2 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_1);
int32_t L_3 = __this->get_Size_2();
int32_t L_4 = L_3;
RuntimeObject * L_5 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_4);
String_t* L_6 = String_Format_m19325298DBC61AAC016C16F7B3CF97A8A3DEA34A(_stringLiteralD3383CCD17F8375DB7E6AF29AAF0F90B1FCC6BE5, L_2, L_5, /*hidden argument*/NULL);
return L_6;
}
}
#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 Mono.Net.Security.BufferOffsetSize2::.ctor(System.Int32)
extern "C" IL2CPP_METHOD_ATTR void BufferOffsetSize2__ctor_m68156625CD993C66D5EA9C5194263DD9A4F59F3F (BufferOffsetSize2_t2E9889F6FB134EF92FC0B930BF630243553F4E00 * __this, int32_t ___size0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BufferOffsetSize2__ctor_m68156625CD993C66D5EA9C5194263DD9A4F59F3F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___size0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)L_0);
BufferOffsetSize__ctor_m3DE692137428B2E6AB46008825FC5C1B63FDAF4F(__this, L_1, 0, 0, /*hidden argument*/NULL);
int32_t L_2 = ___size0;
__this->set_InitialSize_5(L_2);
return;
}
}
// System.Void Mono.Net.Security.BufferOffsetSize2::Reset()
extern "C" IL2CPP_METHOD_ATTR void BufferOffsetSize2_Reset_m4426212B4ECDC2D1487AE5B825918B747D947AB7 (BufferOffsetSize2_t2E9889F6FB134EF92FC0B930BF630243553F4E00 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BufferOffsetSize2_Reset_m4426212B4ECDC2D1487AE5B825918B747D947AB7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = 0;
V_0 = L_0;
((BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 *)__this)->set_Size_2(L_0);
int32_t L_1 = V_0;
((BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 *)__this)->set_Offset_1(L_1);
((BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 *)__this)->set_TotalBytes_3(0);
int32_t L_2 = __this->get_InitialSize_5();
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)L_2);
((BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 *)__this)->set_Buffer_0(L_3);
((BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 *)__this)->set_Complete_4((bool)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 Mono.Net.Security.MobileAuthenticatedStream::.ctor(System.IO.Stream,System.Boolean,System.Net.Security.SslStream,Mono.Security.Interface.MonoTlsSettings,Mono.Security.Interface.MonoTlsProvider)
extern "C" IL2CPP_METHOD_ATTR void MobileAuthenticatedStream__ctor_mF6BF50D6BFDEF283FF8036F5170281D29FDD7628 (MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * __this, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___innerStream0, bool ___leaveInnerStreamOpen1, SslStream_t9CEE8F6E125C734DD807D9289C86860FFEE81087 * ___owner2, MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * ___settings3, MonoTlsProvider_tDCD056C5BBBE59ED6BAF63F25952B406C1143C27 * ___provider4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MobileAuthenticatedStream__ctor_mF6BF50D6BFDEF283FF8036F5170281D29FDD7628_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_0, /*hidden argument*/NULL);
__this->set_ioLock_12(L_0);
IL2CPP_RUNTIME_CLASS_INIT(MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045_il2cpp_TypeInfo_var);
int32_t L_1 = ((MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045_StaticFields*)il2cpp_codegen_static_fields_for(MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045_il2cpp_TypeInfo_var))->get_nextId_18();
int32_t L_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_1, (int32_t)1));
((MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045_StaticFields*)il2cpp_codegen_static_fields_for(MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045_il2cpp_TypeInfo_var))->set_nextId_18(L_2);
__this->set_ID_19(L_2);
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_3 = ___innerStream0;
bool L_4 = ___leaveInnerStreamOpen1;
AuthenticatedStream__ctor_mFCFA51BD3C5544DC6390CF5094E1C0DBA133C172(__this, L_3, L_4, /*hidden argument*/NULL);
SslStream_t9CEE8F6E125C734DD807D9289C86860FFEE81087 * L_5 = ___owner2;
__this->set_U3CSslStreamU3Ek__BackingField_15(L_5);
MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * L_6 = ___settings3;
__this->set_U3CSettingsU3Ek__BackingField_16(L_6);
MonoTlsProvider_tDCD056C5BBBE59ED6BAF63F25952B406C1143C27 * L_7 = ___provider4;
__this->set_U3CProviderU3Ek__BackingField_17(L_7);
BufferOffsetSize2_t2E9889F6FB134EF92FC0B930BF630243553F4E00 * L_8 = (BufferOffsetSize2_t2E9889F6FB134EF92FC0B930BF630243553F4E00 *)il2cpp_codegen_object_new(BufferOffsetSize2_t2E9889F6FB134EF92FC0B930BF630243553F4E00_il2cpp_TypeInfo_var);
BufferOffsetSize2__ctor_m68156625CD993C66D5EA9C5194263DD9A4F59F3F(L_8, ((int32_t)16834), /*hidden argument*/NULL);
__this->set_readBuffer_10(L_8);
BufferOffsetSize2_t2E9889F6FB134EF92FC0B930BF630243553F4E00 * L_9 = (BufferOffsetSize2_t2E9889F6FB134EF92FC0B930BF630243553F4E00 *)il2cpp_codegen_object_new(BufferOffsetSize2_t2E9889F6FB134EF92FC0B930BF630243553F4E00_il2cpp_TypeInfo_var);
BufferOffsetSize2__ctor_m68156625CD993C66D5EA9C5194263DD9A4F59F3F(L_9, ((int32_t)16384), /*hidden argument*/NULL);
__this->set_writeBuffer_11(L_9);
return;
}
}
// System.Void Mono.Net.Security.MobileAuthenticatedStream::CheckThrow(System.Boolean,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void MobileAuthenticatedStream_CheckThrow_m2AAEC9435176D4AA10890A896C5909330B23683E (MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * __this, bool ___authSuccessCheck0, bool ___shutdownCheck1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MobileAuthenticatedStream_CheckThrow_m2AAEC9435176D4AA10890A896C5909330B23683E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * L_0 = __this->get_lastException_7();
if (!L_0)
{
goto IL_0013;
}
}
{
ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * L_1 = __this->get_lastException_7();
NullCheck(L_1);
ExceptionDispatchInfo_Throw_m9630C06EF8D7CDF5BD5DC76144CD98C4D9E8D26F(L_1, /*hidden argument*/NULL);
}
IL_0013:
{
bool L_2 = ___authSuccessCheck0;
if (!L_2)
{
goto IL_0029;
}
}
{
bool L_3 = VirtFuncInvoker0< bool >::Invoke(27 /* System.Boolean System.Net.Security.AuthenticatedStream::get_IsAuthenticated() */, __this);
if (L_3)
{
goto IL_0029;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_4 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_4, _stringLiteralA2D949D908FE6D31B32F76B1D98C42040346B4AF, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, MobileAuthenticatedStream_CheckThrow_m2AAEC9435176D4AA10890A896C5909330B23683E_RuntimeMethod_var);
}
IL_0029:
{
bool L_5 = ___shutdownCheck1;
if (!L_5)
{
goto IL_003f;
}
}
{
bool L_6 = __this->get_shutdown_13();
if (!L_6)
{
goto IL_003f;
}
}
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_7 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_7, _stringLiteral80C8E6938B5EF83DCE60C536BC9079720D54F951, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, MobileAuthenticatedStream_CheckThrow_m2AAEC9435176D4AA10890A896C5909330B23683E_RuntimeMethod_var);
}
IL_003f:
{
return;
}
}
// System.Exception Mono.Net.Security.MobileAuthenticatedStream::GetSSPIException(System.Exception)
extern "C" IL2CPP_METHOD_ATTR Exception_t * MobileAuthenticatedStream_GetSSPIException_m574F0E57FDDC71287516A9908D7E57FC61A8ED27 (Exception_t * ___e0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MobileAuthenticatedStream_GetSSPIException_m574F0E57FDDC71287516A9908D7E57FC61A8ED27_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Exception_t * L_0 = ___e0;
if (((OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 *)IsInstClass((RuntimeObject*)L_0, OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90_il2cpp_TypeInfo_var)))
{
goto IL_0020;
}
}
{
Exception_t * L_1 = ___e0;
if (((IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA *)IsInstClass((RuntimeObject*)L_1, IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA_il2cpp_TypeInfo_var)))
{
goto IL_0020;
}
}
{
Exception_t * L_2 = ___e0;
if (((ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A *)IsInstClass((RuntimeObject*)L_2, ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A_il2cpp_TypeInfo_var)))
{
goto IL_0020;
}
}
{
Exception_t * L_3 = ___e0;
if (!((AuthenticationException_tE24BF2E2AD351F0C9586A59191F01918659A7516 *)IsInstClass((RuntimeObject*)L_3, AuthenticationException_tE24BF2E2AD351F0C9586A59191F01918659A7516_il2cpp_TypeInfo_var)))
{
goto IL_0022;
}
}
IL_0020:
{
Exception_t * L_4 = ___e0;
return L_4;
}
IL_0022:
{
Exception_t * L_5 = ___e0;
AuthenticationException_tE24BF2E2AD351F0C9586A59191F01918659A7516 * L_6 = (AuthenticationException_tE24BF2E2AD351F0C9586A59191F01918659A7516 *)il2cpp_codegen_object_new(AuthenticationException_tE24BF2E2AD351F0C9586A59191F01918659A7516_il2cpp_TypeInfo_var);
AuthenticationException__ctor_m431AB34EFB028337941758B192DF4D045BA93005(L_6, _stringLiteral7B453BCD52F806A62F523CDE2D3C877791F00E3D, L_5, /*hidden argument*/NULL);
return L_6;
}
}
// System.Exception Mono.Net.Security.MobileAuthenticatedStream::GetIOException(System.Exception,System.String)
extern "C" IL2CPP_METHOD_ATTR Exception_t * MobileAuthenticatedStream_GetIOException_mE435E11E49448A2035BCABF04AA5F72F44DC26D4 (Exception_t * ___e0, String_t* ___message1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MobileAuthenticatedStream_GetIOException_mE435E11E49448A2035BCABF04AA5F72F44DC26D4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Exception_t * L_0 = ___e0;
if (((OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90 *)IsInstClass((RuntimeObject*)L_0, OperationCanceledException_tD28B1AE59ACCE4D46333BFE398395B8D75D76A90_il2cpp_TypeInfo_var)))
{
goto IL_0020;
}
}
{
Exception_t * L_1 = ___e0;
if (((IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA *)IsInstClass((RuntimeObject*)L_1, IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA_il2cpp_TypeInfo_var)))
{
goto IL_0020;
}
}
{
Exception_t * L_2 = ___e0;
if (((ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A *)IsInstClass((RuntimeObject*)L_2, ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A_il2cpp_TypeInfo_var)))
{
goto IL_0020;
}
}
{
Exception_t * L_3 = ___e0;
if (!((AuthenticationException_tE24BF2E2AD351F0C9586A59191F01918659A7516 *)IsInstClass((RuntimeObject*)L_3, AuthenticationException_tE24BF2E2AD351F0C9586A59191F01918659A7516_il2cpp_TypeInfo_var)))
{
goto IL_0022;
}
}
IL_0020:
{
Exception_t * L_4 = ___e0;
return L_4;
}
IL_0022:
{
String_t* L_5 = ___message1;
Exception_t * L_6 = ___e0;
IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA * L_7 = (IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA *)il2cpp_codegen_object_new(IOException_t60E052020EDE4D3075F57A1DCC224FF8864354BA_il2cpp_TypeInfo_var);
IOException__ctor_m37262C706BEB979358ABEFEA9F9F253E8773D2B7(L_7, L_5, L_6, /*hidden argument*/NULL);
return L_7;
}
}
// System.Runtime.ExceptionServices.ExceptionDispatchInfo Mono.Net.Security.MobileAuthenticatedStream::SetException(System.Exception)
extern "C" IL2CPP_METHOD_ATTR ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * MobileAuthenticatedStream_SetException_mAFD628C4C8A54C4FE24BFB30C0F5863FDDFC8A7F (MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * __this, Exception_t * ___e0, const RuntimeMethod* method)
{
ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * V_0 = NULL;
ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * G_B2_0 = NULL;
ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * G_B1_0 = NULL;
{
Exception_t * L_0 = ___e0;
ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * L_1 = ExceptionDispatchInfo_Capture_m8E5F721466EDFE9AA8BC532F9AE7A859E0766E23(L_0, /*hidden argument*/NULL);
V_0 = L_1;
ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A ** L_2 = __this->get_address_of_lastException_7();
ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * L_3 = V_0;
ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * L_4 = InterlockedCompareExchangeImpl<ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A *>((ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A **)L_2, L_3, (ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A *)NULL);
ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * L_5 = L_4;
G_B1_0 = L_5;
if (L_5)
{
G_B2_0 = L_5;
goto IL_0019;
}
}
{
ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * L_6 = V_0;
G_B2_0 = L_6;
}
IL_0019:
{
return G_B2_0;
}
}
// System.IAsyncResult Mono.Net.Security.MobileAuthenticatedStream::BeginRead(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* MobileAuthenticatedStream_BeginRead_m678B1BECC958CD3B67D66134E56AD3CAEB07019C (MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t ___offset1, int32_t ___count2, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___asyncCallback3, RuntimeObject * ___asyncState4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MobileAuthenticatedStream_BeginRead_m678B1BECC958CD3B67D66134E56AD3CAEB07019C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
AsyncReadRequest_t10B0459470C14DC065B5AD60AF378AB78CD138C1 * V_0 = NULL;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___buffer0;
int32_t L_1 = ___offset1;
int32_t L_2 = ___count2;
AsyncReadRequest_t10B0459470C14DC065B5AD60AF378AB78CD138C1 * L_3 = (AsyncReadRequest_t10B0459470C14DC065B5AD60AF378AB78CD138C1 *)il2cpp_codegen_object_new(AsyncReadRequest_t10B0459470C14DC065B5AD60AF378AB78CD138C1_il2cpp_TypeInfo_var);
AsyncReadRequest__ctor_mAF75247AFFC230BA5433424D27D13ACF53B3A239(L_3, __this, (bool)0, L_0, L_1, L_2, /*hidden argument*/NULL);
V_0 = L_3;
AsyncReadRequest_t10B0459470C14DC065B5AD60AF378AB78CD138C1 * L_4 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_il2cpp_TypeInfo_var);
CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_5 = CancellationToken_get_None_m008D4CF5E11172703A6D781A3C30E6E537004F1D(/*hidden argument*/NULL);
Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * L_6 = MobileAuthenticatedStream_StartOperation_mB3763CD0086F3FB7D75AF3E10A9E1532FAD5BDB7(__this, 0, L_4, L_5, /*hidden argument*/NULL);
AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * L_7 = ___asyncCallback3;
RuntimeObject * L_8 = ___asyncState4;
RuntimeObject* L_9 = TaskToApm_Begin_m42DFEB73E3BB1B51E0E8D115AFD215F9F2BF4175(L_6, L_7, L_8, /*hidden argument*/NULL);
return L_9;
}
}
// System.Int32 Mono.Net.Security.MobileAuthenticatedStream::EndRead(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR int32_t MobileAuthenticatedStream_EndRead_m347ACCE77CCCE6738781A2B182949CBA72CF9143 (MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * __this, RuntimeObject* ___asyncResult0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MobileAuthenticatedStream_EndRead_m347ACCE77CCCE6738781A2B182949CBA72CF9143_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___asyncResult0;
int32_t L_1 = TaskToApm_End_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m7A78383A6B69F06EC91BDED0E0F6F3DE02960234(L_0, /*hidden argument*/TaskToApm_End_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m7A78383A6B69F06EC91BDED0E0F6F3DE02960234_RuntimeMethod_var);
return L_1;
}
}
// System.IAsyncResult Mono.Net.Security.MobileAuthenticatedStream::BeginWrite(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* MobileAuthenticatedStream_BeginWrite_m01F98CCE1A968C5654028F266F3C648CF858864B (MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t ___offset1, int32_t ___count2, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___asyncCallback3, RuntimeObject * ___asyncState4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MobileAuthenticatedStream_BeginWrite_m01F98CCE1A968C5654028F266F3C648CF858864B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
AsyncWriteRequest_tFE4740D02401F295910B4006A8390590D5E2C27B * V_0 = NULL;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___buffer0;
int32_t L_1 = ___offset1;
int32_t L_2 = ___count2;
AsyncWriteRequest_tFE4740D02401F295910B4006A8390590D5E2C27B * L_3 = (AsyncWriteRequest_tFE4740D02401F295910B4006A8390590D5E2C27B *)il2cpp_codegen_object_new(AsyncWriteRequest_tFE4740D02401F295910B4006A8390590D5E2C27B_il2cpp_TypeInfo_var);
AsyncWriteRequest__ctor_mF3534E810074917ABDE7E4CE7EE61715694F9EB8(L_3, __this, (bool)0, L_0, L_1, L_2, /*hidden argument*/NULL);
V_0 = L_3;
AsyncWriteRequest_tFE4740D02401F295910B4006A8390590D5E2C27B * L_4 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_il2cpp_TypeInfo_var);
CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_5 = CancellationToken_get_None_m008D4CF5E11172703A6D781A3C30E6E537004F1D(/*hidden argument*/NULL);
Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * L_6 = MobileAuthenticatedStream_StartOperation_mB3763CD0086F3FB7D75AF3E10A9E1532FAD5BDB7(__this, 1, L_4, L_5, /*hidden argument*/NULL);
AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * L_7 = ___asyncCallback3;
RuntimeObject * L_8 = ___asyncState4;
RuntimeObject* L_9 = TaskToApm_Begin_m42DFEB73E3BB1B51E0E8D115AFD215F9F2BF4175(L_6, L_7, L_8, /*hidden argument*/NULL);
return L_9;
}
}
// System.Void Mono.Net.Security.MobileAuthenticatedStream::EndWrite(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR void MobileAuthenticatedStream_EndWrite_m0CA1FD8354542D4F2BCA50BB4B0B852472D775C1 (MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * __this, RuntimeObject* ___asyncResult0, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___asyncResult0;
TaskToApm_End_m1BCAAEC9A8AED75C16537F0D568BE8AE8670FD1A(L_0, /*hidden argument*/NULL);
return;
}
}
// System.Int32 Mono.Net.Security.MobileAuthenticatedStream::Read(System.Byte[],System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t MobileAuthenticatedStream_Read_mB273DD14EDCED08E88F57CB340B97A206BA7DDE1 (MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t ___offset1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MobileAuthenticatedStream_Read_mB273DD14EDCED08E88F57CB340B97A206BA7DDE1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
AsyncReadRequest_t10B0459470C14DC065B5AD60AF378AB78CD138C1 * V_0 = NULL;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___buffer0;
int32_t L_1 = ___offset1;
int32_t L_2 = ___count2;
AsyncReadRequest_t10B0459470C14DC065B5AD60AF378AB78CD138C1 * L_3 = (AsyncReadRequest_t10B0459470C14DC065B5AD60AF378AB78CD138C1 *)il2cpp_codegen_object_new(AsyncReadRequest_t10B0459470C14DC065B5AD60AF378AB78CD138C1_il2cpp_TypeInfo_var);
AsyncReadRequest__ctor_mAF75247AFFC230BA5433424D27D13ACF53B3A239(L_3, __this, (bool)1, L_0, L_1, L_2, /*hidden argument*/NULL);
V_0 = L_3;
AsyncReadRequest_t10B0459470C14DC065B5AD60AF378AB78CD138C1 * L_4 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_il2cpp_TypeInfo_var);
CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_5 = CancellationToken_get_None_m008D4CF5E11172703A6D781A3C30E6E537004F1D(/*hidden argument*/NULL);
Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * L_6 = MobileAuthenticatedStream_StartOperation_mB3763CD0086F3FB7D75AF3E10A9E1532FAD5BDB7(__this, 0, L_4, L_5, /*hidden argument*/NULL);
NullCheck(L_6);
int32_t L_7 = Task_1_get_Result_m80E150EF93681DF361700DB6F78C976BE3EC871B(L_6, /*hidden argument*/Task_1_get_Result_m80E150EF93681DF361700DB6F78C976BE3EC871B_RuntimeMethod_var);
return L_7;
}
}
// System.Void Mono.Net.Security.MobileAuthenticatedStream::Write(System.Byte[],System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void MobileAuthenticatedStream_Write_m0264ACE9D90AFB72A1A27B6130DD1B2876334DDF (MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t ___offset1, int32_t ___count2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MobileAuthenticatedStream_Write_m0264ACE9D90AFB72A1A27B6130DD1B2876334DDF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
AsyncWriteRequest_tFE4740D02401F295910B4006A8390590D5E2C27B * V_0 = NULL;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___buffer0;
int32_t L_1 = ___offset1;
int32_t L_2 = ___count2;
AsyncWriteRequest_tFE4740D02401F295910B4006A8390590D5E2C27B * L_3 = (AsyncWriteRequest_tFE4740D02401F295910B4006A8390590D5E2C27B *)il2cpp_codegen_object_new(AsyncWriteRequest_tFE4740D02401F295910B4006A8390590D5E2C27B_il2cpp_TypeInfo_var);
AsyncWriteRequest__ctor_mF3534E810074917ABDE7E4CE7EE61715694F9EB8(L_3, __this, (bool)1, L_0, L_1, L_2, /*hidden argument*/NULL);
V_0 = L_3;
AsyncWriteRequest_tFE4740D02401F295910B4006A8390590D5E2C27B * L_4 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_il2cpp_TypeInfo_var);
CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_5 = CancellationToken_get_None_m008D4CF5E11172703A6D781A3C30E6E537004F1D(/*hidden argument*/NULL);
Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * L_6 = MobileAuthenticatedStream_StartOperation_mB3763CD0086F3FB7D75AF3E10A9E1532FAD5BDB7(__this, 1, L_4, L_5, /*hidden argument*/NULL);
NullCheck(L_6);
Task_Wait_m7793234C16E5D2B719519CE3C55653EA4D1A815A(L_6, /*hidden argument*/NULL);
return;
}
}
// System.Threading.Tasks.Task`1<System.Int32> Mono.Net.Security.MobileAuthenticatedStream::ReadAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)
extern "C" IL2CPP_METHOD_ATTR Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * MobileAuthenticatedStream_ReadAsync_mA54D1973D54A2F0DB84CE3FB41EAE1974988BB32 (MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t ___offset1, int32_t ___count2, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___cancellationToken3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MobileAuthenticatedStream_ReadAsync_mA54D1973D54A2F0DB84CE3FB41EAE1974988BB32_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
AsyncReadRequest_t10B0459470C14DC065B5AD60AF378AB78CD138C1 * V_0 = NULL;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___buffer0;
int32_t L_1 = ___offset1;
int32_t L_2 = ___count2;
AsyncReadRequest_t10B0459470C14DC065B5AD60AF378AB78CD138C1 * L_3 = (AsyncReadRequest_t10B0459470C14DC065B5AD60AF378AB78CD138C1 *)il2cpp_codegen_object_new(AsyncReadRequest_t10B0459470C14DC065B5AD60AF378AB78CD138C1_il2cpp_TypeInfo_var);
AsyncReadRequest__ctor_mAF75247AFFC230BA5433424D27D13ACF53B3A239(L_3, __this, (bool)0, L_0, L_1, L_2, /*hidden argument*/NULL);
V_0 = L_3;
AsyncReadRequest_t10B0459470C14DC065B5AD60AF378AB78CD138C1 * L_4 = V_0;
CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_5 = ___cancellationToken3;
Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * L_6 = MobileAuthenticatedStream_StartOperation_mB3763CD0086F3FB7D75AF3E10A9E1532FAD5BDB7(__this, 0, L_4, L_5, /*hidden argument*/NULL);
return L_6;
}
}
// System.Threading.Tasks.Task Mono.Net.Security.MobileAuthenticatedStream::WriteAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken)
extern "C" IL2CPP_METHOD_ATTR Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * MobileAuthenticatedStream_WriteAsync_m2521D8A56CEC0EA00B99F2DD570FCCEDEBFF1807 (MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer0, int32_t ___offset1, int32_t ___count2, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___cancellationToken3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MobileAuthenticatedStream_WriteAsync_m2521D8A56CEC0EA00B99F2DD570FCCEDEBFF1807_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
AsyncWriteRequest_tFE4740D02401F295910B4006A8390590D5E2C27B * V_0 = NULL;
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___buffer0;
int32_t L_1 = ___offset1;
int32_t L_2 = ___count2;
AsyncWriteRequest_tFE4740D02401F295910B4006A8390590D5E2C27B * L_3 = (AsyncWriteRequest_tFE4740D02401F295910B4006A8390590D5E2C27B *)il2cpp_codegen_object_new(AsyncWriteRequest_tFE4740D02401F295910B4006A8390590D5E2C27B_il2cpp_TypeInfo_var);
AsyncWriteRequest__ctor_mF3534E810074917ABDE7E4CE7EE61715694F9EB8(L_3, __this, (bool)0, L_0, L_1, L_2, /*hidden argument*/NULL);
V_0 = L_3;
AsyncWriteRequest_tFE4740D02401F295910B4006A8390590D5E2C27B * L_4 = V_0;
CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_5 = ___cancellationToken3;
Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * L_6 = MobileAuthenticatedStream_StartOperation_mB3763CD0086F3FB7D75AF3E10A9E1532FAD5BDB7(__this, 1, L_4, L_5, /*hidden argument*/NULL);
return L_6;
}
}
// System.Threading.Tasks.Task`1<System.Int32> Mono.Net.Security.MobileAuthenticatedStream::StartOperation(Mono.Net.Security.MobileAuthenticatedStream/OperationType,Mono.Net.Security.AsyncProtocolRequest,System.Threading.CancellationToken)
extern "C" IL2CPP_METHOD_ATTR Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * MobileAuthenticatedStream_StartOperation_mB3763CD0086F3FB7D75AF3E10A9E1532FAD5BDB7 (MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * __this, int32_t ___type0, AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * ___asyncRequest1, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___cancellationToken2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MobileAuthenticatedStream_StartOperation_mB3763CD0086F3FB7D75AF3E10A9E1532FAD5BDB7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
U3CStartOperationU3Ed__58_t9CFBEC306AEE875FF526F77EF660D0493F475BB1 V_0;
memset(&V_0, 0, sizeof(V_0));
AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 V_1;
memset(&V_1, 0, sizeof(V_1));
{
(&V_0)->set_U3CU3E4__this_2(__this);
int32_t L_0 = ___type0;
(&V_0)->set_type_3(L_0);
AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * L_1 = ___asyncRequest1;
(&V_0)->set_asyncRequest_4(L_1);
CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_2 = ___cancellationToken2;
(&V_0)->set_cancellationToken_5(L_2);
IL2CPP_RUNTIME_CLASS_INIT(AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079_il2cpp_TypeInfo_var);
AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 L_3 = AsyncTaskMethodBuilder_1_Create_mB155504875E2454883E034E847877A9DEA85E318(/*hidden argument*/AsyncTaskMethodBuilder_1_Create_mB155504875E2454883E034E847877A9DEA85E318_RuntimeMethod_var);
(&V_0)->set_U3CU3Et__builder_1(L_3);
(&V_0)->set_U3CU3E1__state_0((-1));
U3CStartOperationU3Ed__58_t9CFBEC306AEE875FF526F77EF660D0493F475BB1 L_4 = V_0;
AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 L_5 = L_4.get_U3CU3Et__builder_1();
V_1 = L_5;
AsyncTaskMethodBuilder_1_Start_TisU3CStartOperationU3Ed__58_t9CFBEC306AEE875FF526F77EF660D0493F475BB1_m86EE112E3DDD51CBC6A0F57A35AC3919A128BCB8((AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 *)(&V_1), (U3CStartOperationU3Ed__58_t9CFBEC306AEE875FF526F77EF660D0493F475BB1 *)(&V_0), /*hidden argument*/AsyncTaskMethodBuilder_1_Start_TisU3CStartOperationU3Ed__58_t9CFBEC306AEE875FF526F77EF660D0493F475BB1_m86EE112E3DDD51CBC6A0F57A35AC3919A128BCB8_RuntimeMethod_var);
AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 * L_6 = (&V_0)->get_address_of_U3CU3Et__builder_1();
Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * L_7 = AsyncTaskMethodBuilder_1_get_Task_m939AAFF5841821CC09C627DCDEB2DFD5B933DFC2((AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 *)L_6, /*hidden argument*/AsyncTaskMethodBuilder_1_get_Task_m939AAFF5841821CC09C627DCDEB2DFD5B933DFC2_RuntimeMethod_var);
return L_7;
}
}
// System.Threading.Tasks.Task`1<System.Int32> Mono.Net.Security.MobileAuthenticatedStream::InnerRead(System.Boolean,System.Int32,System.Threading.CancellationToken)
extern "C" IL2CPP_METHOD_ATTR Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * MobileAuthenticatedStream_InnerRead_m0EDB58159985F661C68EBA26247546ED06999D0F (MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * __this, bool ___sync0, int32_t ___requestedSize1, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___cancellationToken2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MobileAuthenticatedStream_InnerRead_m0EDB58159985F661C68EBA26247546ED06999D0F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
U3CInnerReadU3Ed__66_tA027A607C6D5A6367A04D2DCAF5FCBB66E6B5CAB V_0;
memset(&V_0, 0, sizeof(V_0));
AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 V_1;
memset(&V_1, 0, sizeof(V_1));
{
(&V_0)->set_U3CU3E4__this_2(__this);
bool L_0 = ___sync0;
(&V_0)->set_sync_5(L_0);
int32_t L_1 = ___requestedSize1;
(&V_0)->set_requestedSize_4(L_1);
CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_2 = ___cancellationToken2;
(&V_0)->set_cancellationToken_3(L_2);
IL2CPP_RUNTIME_CLASS_INIT(AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079_il2cpp_TypeInfo_var);
AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 L_3 = AsyncTaskMethodBuilder_1_Create_mB155504875E2454883E034E847877A9DEA85E318(/*hidden argument*/AsyncTaskMethodBuilder_1_Create_mB155504875E2454883E034E847877A9DEA85E318_RuntimeMethod_var);
(&V_0)->set_U3CU3Et__builder_1(L_3);
(&V_0)->set_U3CU3E1__state_0((-1));
U3CInnerReadU3Ed__66_tA027A607C6D5A6367A04D2DCAF5FCBB66E6B5CAB L_4 = V_0;
AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 L_5 = L_4.get_U3CU3Et__builder_1();
V_1 = L_5;
AsyncTaskMethodBuilder_1_Start_TisU3CInnerReadU3Ed__66_tA027A607C6D5A6367A04D2DCAF5FCBB66E6B5CAB_mD28BD96B617BE0AE227EDF31AE26EED9D391C2D4((AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 *)(&V_1), (U3CInnerReadU3Ed__66_tA027A607C6D5A6367A04D2DCAF5FCBB66E6B5CAB *)(&V_0), /*hidden argument*/AsyncTaskMethodBuilder_1_Start_TisU3CInnerReadU3Ed__66_tA027A607C6D5A6367A04D2DCAF5FCBB66E6B5CAB_mD28BD96B617BE0AE227EDF31AE26EED9D391C2D4_RuntimeMethod_var);
AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 * L_6 = (&V_0)->get_address_of_U3CU3Et__builder_1();
Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * L_7 = AsyncTaskMethodBuilder_1_get_Task_m939AAFF5841821CC09C627DCDEB2DFD5B933DFC2((AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 *)L_6, /*hidden argument*/AsyncTaskMethodBuilder_1_get_Task_m939AAFF5841821CC09C627DCDEB2DFD5B933DFC2_RuntimeMethod_var);
return L_7;
}
}
// System.Threading.Tasks.Task Mono.Net.Security.MobileAuthenticatedStream::InnerWrite(System.Boolean,System.Threading.CancellationToken)
extern "C" IL2CPP_METHOD_ATTR Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * MobileAuthenticatedStream_InnerWrite_m36FEDC8E842C497B62D566D6392287270FD698AC (MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * __this, bool ___sync0, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___cancellationToken1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MobileAuthenticatedStream_InnerWrite_m36FEDC8E842C497B62D566D6392287270FD698AC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
U3CInnerWriteU3Ed__67_tCEBE4678B01EBC181A242F16C978B7A71367AF43 V_0;
memset(&V_0, 0, sizeof(V_0));
AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 V_1;
memset(&V_1, 0, sizeof(V_1));
{
(&V_0)->set_U3CU3E4__this_3(__this);
bool L_0 = ___sync0;
(&V_0)->set_sync_4(L_0);
CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_1 = ___cancellationToken1;
(&V_0)->set_cancellationToken_2(L_1);
IL2CPP_RUNTIME_CLASS_INIT(AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487_il2cpp_TypeInfo_var);
AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 L_2 = AsyncTaskMethodBuilder_Create_m081DF9A202E7C2F3CF3D41E1E63E63DA18F19FDB(/*hidden argument*/NULL);
(&V_0)->set_U3CU3Et__builder_1(L_2);
(&V_0)->set_U3CU3E1__state_0((-1));
U3CInnerWriteU3Ed__67_tCEBE4678B01EBC181A242F16C978B7A71367AF43 L_3 = V_0;
AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 L_4 = L_3.get_U3CU3Et__builder_1();
V_1 = L_4;
AsyncTaskMethodBuilder_Start_TisU3CInnerWriteU3Ed__67_tCEBE4678B01EBC181A242F16C978B7A71367AF43_m04E42D96056940C94B4AC023C0851B1EF14F14F9((AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 *)(&V_1), (U3CInnerWriteU3Ed__67_tCEBE4678B01EBC181A242F16C978B7A71367AF43 *)(&V_0), /*hidden argument*/AsyncTaskMethodBuilder_Start_TisU3CInnerWriteU3Ed__67_tCEBE4678B01EBC181A242F16C978B7A71367AF43_m04E42D96056940C94B4AC023C0851B1EF14F14F9_RuntimeMethod_var);
AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 * L_5 = (&V_0)->get_address_of_U3CU3Et__builder_1();
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_6 = AsyncTaskMethodBuilder_get_Task_m3E45BC00F7D224FEA04AB9BF26DB52E131D33022((AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 *)L_5, /*hidden argument*/NULL);
return L_6;
}
}
// System.ValueTuple`2<System.Int32,System.Boolean> Mono.Net.Security.MobileAuthenticatedStream::ProcessRead(Mono.Net.Security.BufferOffsetSize)
extern "C" IL2CPP_METHOD_ATTR ValueTuple_2_t446756A8057B54D18CAD5BA1D73699DA4B40A264 MobileAuthenticatedStream_ProcessRead_mB005268451AB3F73B29AD1F787B576D5F3279371 (MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * __this, BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 * ___userBuffer0, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
bool V_1 = false;
ValueTuple_2_t446756A8057B54D18CAD5BA1D73699DA4B40A264 V_2;
memset(&V_2, 0, sizeof(V_2));
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
ValueTuple_2_t446756A8057B54D18CAD5BA1D73699DA4B40A264 G_B3_0;
memset(&G_B3_0, 0, sizeof(G_B3_0));
ValueTuple_2_t446756A8057B54D18CAD5BA1D73699DA4B40A264 G_B2_0;
memset(&G_B2_0, 0, sizeof(G_B2_0));
{
RuntimeObject * L_0 = __this->get_ioLock_12();
V_0 = L_0;
V_1 = (bool)0;
}
IL_0009:
try
{ // begin try (depth: 1)
{
RuntimeObject * L_1 = V_0;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_1, (bool*)(&V_1), /*hidden argument*/NULL);
MobileTlsContext_tFC684CF3275DF6B898319625C4F3A4D537B8A127 * L_2 = __this->get_xobileTlsContext_6();
BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 * L_3 = ___userBuffer0;
NullCheck(L_3);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = L_3->get_Buffer_0();
BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 * L_5 = ___userBuffer0;
NullCheck(L_5);
int32_t L_6 = L_5->get_Offset_1();
BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 * L_7 = ___userBuffer0;
NullCheck(L_7);
int32_t L_8 = L_7->get_Size_2();
NullCheck(L_2);
ValueTuple_2_t446756A8057B54D18CAD5BA1D73699DA4B40A264 L_9 = VirtFuncInvoker3< ValueTuple_2_t446756A8057B54D18CAD5BA1D73699DA4B40A264 , ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(6 /* System.ValueTuple`2<System.Int32,System.Boolean> Mono.Net.Security.MobileTlsContext::Read(System.Byte[],System.Int32,System.Int32) */, L_2, L_4, L_6, L_8);
ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * L_10 = __this->get_lastException_7();
G_B2_0 = L_9;
if (!L_10)
{
G_B3_0 = L_9;
goto IL_0041;
}
}
IL_0036:
{
ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * L_11 = __this->get_lastException_7();
NullCheck(L_11);
ExceptionDispatchInfo_Throw_m9630C06EF8D7CDF5BD5DC76144CD98C4D9E8D26F(L_11, /*hidden argument*/NULL);
G_B3_0 = G_B2_0;
}
IL_0041:
{
V_2 = G_B3_0;
IL2CPP_LEAVE(0x4E, FINALLY_0044);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0044;
}
FINALLY_0044:
{ // begin finally (depth: 1)
{
bool L_12 = V_1;
if (!L_12)
{
goto IL_004d;
}
}
IL_0047:
{
RuntimeObject * L_13 = V_0;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_13, /*hidden argument*/NULL);
}
IL_004d:
{
IL2CPP_END_FINALLY(68)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(68)
{
IL2CPP_JUMP_TBL(0x4E, IL_004e)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_004e:
{
ValueTuple_2_t446756A8057B54D18CAD5BA1D73699DA4B40A264 L_14 = V_2;
return L_14;
}
}
// System.ValueTuple`2<System.Int32,System.Boolean> Mono.Net.Security.MobileAuthenticatedStream::ProcessWrite(Mono.Net.Security.BufferOffsetSize)
extern "C" IL2CPP_METHOD_ATTR ValueTuple_2_t446756A8057B54D18CAD5BA1D73699DA4B40A264 MobileAuthenticatedStream_ProcessWrite_m30427A9308C97FAD0964F81A6A9F436FB2507F0F (MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * __this, BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 * ___userBuffer0, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
bool V_1 = false;
ValueTuple_2_t446756A8057B54D18CAD5BA1D73699DA4B40A264 V_2;
memset(&V_2, 0, sizeof(V_2));
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
ValueTuple_2_t446756A8057B54D18CAD5BA1D73699DA4B40A264 G_B3_0;
memset(&G_B3_0, 0, sizeof(G_B3_0));
ValueTuple_2_t446756A8057B54D18CAD5BA1D73699DA4B40A264 G_B2_0;
memset(&G_B2_0, 0, sizeof(G_B2_0));
{
RuntimeObject * L_0 = __this->get_ioLock_12();
V_0 = L_0;
V_1 = (bool)0;
}
IL_0009:
try
{ // begin try (depth: 1)
{
RuntimeObject * L_1 = V_0;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_1, (bool*)(&V_1), /*hidden argument*/NULL);
MobileTlsContext_tFC684CF3275DF6B898319625C4F3A4D537B8A127 * L_2 = __this->get_xobileTlsContext_6();
BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 * L_3 = ___userBuffer0;
NullCheck(L_3);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = L_3->get_Buffer_0();
BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 * L_5 = ___userBuffer0;
NullCheck(L_5);
int32_t L_6 = L_5->get_Offset_1();
BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 * L_7 = ___userBuffer0;
NullCheck(L_7);
int32_t L_8 = L_7->get_Size_2();
NullCheck(L_2);
ValueTuple_2_t446756A8057B54D18CAD5BA1D73699DA4B40A264 L_9 = VirtFuncInvoker3< ValueTuple_2_t446756A8057B54D18CAD5BA1D73699DA4B40A264 , ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(7 /* System.ValueTuple`2<System.Int32,System.Boolean> Mono.Net.Security.MobileTlsContext::Write(System.Byte[],System.Int32,System.Int32) */, L_2, L_4, L_6, L_8);
ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * L_10 = __this->get_lastException_7();
G_B2_0 = L_9;
if (!L_10)
{
G_B3_0 = L_9;
goto IL_0041;
}
}
IL_0036:
{
ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * L_11 = __this->get_lastException_7();
NullCheck(L_11);
ExceptionDispatchInfo_Throw_m9630C06EF8D7CDF5BD5DC76144CD98C4D9E8D26F(L_11, /*hidden argument*/NULL);
G_B3_0 = G_B2_0;
}
IL_0041:
{
V_2 = G_B3_0;
IL2CPP_LEAVE(0x4E, FINALLY_0044);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0044;
}
FINALLY_0044:
{ // begin finally (depth: 1)
{
bool L_12 = V_1;
if (!L_12)
{
goto IL_004d;
}
}
IL_0047:
{
RuntimeObject * L_13 = V_0;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_13, /*hidden argument*/NULL);
}
IL_004d:
{
IL2CPP_END_FINALLY(68)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(68)
{
IL2CPP_JUMP_TBL(0x4E, IL_004e)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_004e:
{
ValueTuple_2_t446756A8057B54D18CAD5BA1D73699DA4B40A264 L_14 = V_2;
return L_14;
}
}
// System.Boolean Mono.Net.Security.MobileAuthenticatedStream::get_IsAuthenticated()
extern "C" IL2CPP_METHOD_ATTR bool MobileAuthenticatedStream_get_IsAuthenticated_m8D978D4684246BB2629CB1E2D207D2D76C132E3A (MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * __this, const RuntimeMethod* method)
{
RuntimeObject * V_0 = NULL;
bool V_1 = false;
bool V_2 = false;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
int32_t G_B5_0 = 0;
{
RuntimeObject * L_0 = __this->get_ioLock_12();
V_0 = L_0;
V_1 = (bool)0;
}
IL_0009:
try
{ // begin try (depth: 1)
{
RuntimeObject * L_1 = V_0;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_1, (bool*)(&V_1), /*hidden argument*/NULL);
MobileTlsContext_tFC684CF3275DF6B898319625C4F3A4D537B8A127 * L_2 = __this->get_xobileTlsContext_6();
if (!L_2)
{
goto IL_002e;
}
}
IL_0019:
{
ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * L_3 = __this->get_lastException_7();
if (L_3)
{
goto IL_002e;
}
}
IL_0021:
{
MobileTlsContext_tFC684CF3275DF6B898319625C4F3A4D537B8A127 * L_4 = __this->get_xobileTlsContext_6();
NullCheck(L_4);
bool L_5 = VirtFuncInvoker0< bool >::Invoke(5 /* System.Boolean Mono.Net.Security.MobileTlsContext::get_IsAuthenticated() */, L_4);
G_B5_0 = ((int32_t)(L_5));
goto IL_002f;
}
IL_002e:
{
G_B5_0 = 0;
}
IL_002f:
{
V_2 = (bool)G_B5_0;
IL2CPP_LEAVE(0x3C, FINALLY_0032);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0032;
}
FINALLY_0032:
{ // begin finally (depth: 1)
{
bool L_6 = V_1;
if (!L_6)
{
goto IL_003b;
}
}
IL_0035:
{
RuntimeObject * L_7 = V_0;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_7, /*hidden argument*/NULL);
}
IL_003b:
{
IL2CPP_END_FINALLY(50)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(50)
{
IL2CPP_JUMP_TBL(0x3C, IL_003c)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_003c:
{
bool L_8 = V_2;
return L_8;
}
}
// System.Void Mono.Net.Security.MobileAuthenticatedStream::Dispose(System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void MobileAuthenticatedStream_Dispose_mB7DAA195CE82F2FA15AB576C961A7CE5D58C3106 (MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * __this, bool ___disposing0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MobileAuthenticatedStream_Dispose_mB7DAA195CE82F2FA15AB576C961A7CE5D58C3106_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
bool V_1 = false;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
IL_0000:
try
{ // begin try (depth: 1)
{
RuntimeObject * L_0 = __this->get_ioLock_12();
V_0 = L_0;
V_1 = (bool)0;
}
IL_0009:
try
{ // begin try (depth: 2)
{
RuntimeObject * L_1 = V_0;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_1, (bool*)(&V_1), /*hidden argument*/NULL);
ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A * L_2 = (ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A *)il2cpp_codegen_object_new(ObjectDisposedException_tF68E471ECD1419AD7C51137B742837395F50B69A_il2cpp_TypeInfo_var);
ObjectDisposedException__ctor_m8B5D23EA08E42BDE6BC5233CC666295F19BBD2F9(L_2, _stringLiteralDFFBC6C8A7C18041DDE01CA73B539F216F6C6C4F, /*hidden argument*/NULL);
ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * L_3 = ExceptionDispatchInfo_Capture_m8E5F721466EDFE9AA8BC532F9AE7A859E0766E23(L_2, /*hidden argument*/NULL);
__this->set_lastException_7(L_3);
MobileTlsContext_tFC684CF3275DF6B898319625C4F3A4D537B8A127 * L_4 = __this->get_xobileTlsContext_6();
if (!L_4)
{
goto IL_0040;
}
}
IL_002e:
{
MobileTlsContext_tFC684CF3275DF6B898319625C4F3A4D537B8A127 * L_5 = __this->get_xobileTlsContext_6();
NullCheck(L_5);
MobileTlsContext_Dispose_m28EF01B1A0096B9A7820BAA0A77DB59C96A619DD(L_5, /*hidden argument*/NULL);
__this->set_xobileTlsContext_6((MobileTlsContext_tFC684CF3275DF6B898319625C4F3A4D537B8A127 *)NULL);
}
IL_0040:
{
IL2CPP_LEAVE(0x54, FINALLY_0042);
}
} // end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0042;
}
FINALLY_0042:
{ // begin finally (depth: 2)
{
bool L_6 = V_1;
if (!L_6)
{
goto IL_004b;
}
}
IL_0045:
{
RuntimeObject * L_7 = V_0;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_7, /*hidden argument*/NULL);
}
IL_004b:
{
IL2CPP_END_FINALLY(66)
}
} // end finally (depth: 2)
IL2CPP_CLEANUP(66)
{
IL2CPP_END_CLEANUP(0x54, FINALLY_004c);
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_004c;
}
FINALLY_004c:
{ // begin finally (depth: 1)
bool L_8 = ___disposing0;
AuthenticatedStream_Dispose_m5610A806886C36698AC932D21F5FBDCAE9FA3E14(__this, L_8, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(76)
} // end finally (depth: 1)
IL2CPP_CLEANUP(76)
{
IL2CPP_JUMP_TBL(0x54, IL_0054)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0054:
{
return;
}
}
// System.Void Mono.Net.Security.MobileAuthenticatedStream::Flush()
extern "C" IL2CPP_METHOD_ATTR void MobileAuthenticatedStream_Flush_m20FAE0A0A6C311E1925367C03ECA23BBFB74BE8D (MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * __this, const RuntimeMethod* method)
{
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_0 = AuthenticatedStream_get_InnerStream_mB7DF06B2F011B3F9F301D068438BBD01C24DCDDC(__this, /*hidden argument*/NULL);
NullCheck(L_0);
VirtActionInvoker0::Invoke(15 /* System.Void System.IO.Stream::Flush() */, L_0);
return;
}
}
// System.Int64 Mono.Net.Security.MobileAuthenticatedStream::Seek(System.Int64,System.IO.SeekOrigin)
extern "C" IL2CPP_METHOD_ATTR int64_t MobileAuthenticatedStream_Seek_m2D799812EC327A4E25AA165B9966514B2B1475A6 (MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * __this, int64_t ___offset0, int32_t ___origin1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MobileAuthenticatedStream_Seek_m2D799812EC327A4E25AA165B9966514B2B1475A6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, MobileAuthenticatedStream_Seek_m2D799812EC327A4E25AA165B9966514B2B1475A6_RuntimeMethod_var);
}
}
// System.Boolean Mono.Net.Security.MobileAuthenticatedStream::get_CanRead()
extern "C" IL2CPP_METHOD_ATTR bool MobileAuthenticatedStream_get_CanRead_mE230E0D6A7CA3324925CD6311465B7BD41A144CE (MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * __this, const RuntimeMethod* method)
{
{
bool L_0 = VirtFuncInvoker0< bool >::Invoke(27 /* System.Boolean System.Net.Security.AuthenticatedStream::get_IsAuthenticated() */, __this);
if (!L_0)
{
goto IL_0014;
}
}
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_1 = AuthenticatedStream_get_InnerStream_mB7DF06B2F011B3F9F301D068438BBD01C24DCDDC(__this, /*hidden argument*/NULL);
NullCheck(L_1);
bool L_2 = VirtFuncInvoker0< bool >::Invoke(7 /* System.Boolean System.IO.Stream::get_CanRead() */, L_1);
return L_2;
}
IL_0014:
{
return (bool)0;
}
}
// System.Boolean Mono.Net.Security.MobileAuthenticatedStream::get_CanWrite()
extern "C" IL2CPP_METHOD_ATTR bool MobileAuthenticatedStream_get_CanWrite_mAF3696EAD7809A7D9EB50A091BDAE02586E0DF54 (MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * __this, const RuntimeMethod* method)
{
{
bool L_0 = VirtFuncInvoker0< bool >::Invoke(27 /* System.Boolean System.Net.Security.AuthenticatedStream::get_IsAuthenticated() */, __this);
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_1 = AuthenticatedStream_get_InnerStream_mB7DF06B2F011B3F9F301D068438BBD01C24DCDDC(__this, /*hidden argument*/NULL);
NullCheck(L_1);
bool L_2 = VirtFuncInvoker0< bool >::Invoke(9 /* System.Boolean System.IO.Stream::get_CanWrite() */, L_1);
if (!((int32_t)((int32_t)L_0&(int32_t)L_2)))
{
goto IL_001e;
}
}
{
bool L_3 = __this->get_shutdown_13();
return (bool)((((int32_t)L_3) == ((int32_t)0))? 1 : 0);
}
IL_001e:
{
return (bool)0;
}
}
// System.Boolean Mono.Net.Security.MobileAuthenticatedStream::get_CanSeek()
extern "C" IL2CPP_METHOD_ATTR bool MobileAuthenticatedStream_get_CanSeek_mFD9C9EF3A622E65965F14997361F9F611B2314A2 (MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Int64 Mono.Net.Security.MobileAuthenticatedStream::get_Length()
extern "C" IL2CPP_METHOD_ATTR int64_t MobileAuthenticatedStream_get_Length_mD76215A3195543708BCB40C787678535541CE71E (MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * __this, const RuntimeMethod* method)
{
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_0 = AuthenticatedStream_get_InnerStream_mB7DF06B2F011B3F9F301D068438BBD01C24DCDDC(__this, /*hidden argument*/NULL);
NullCheck(L_0);
int64_t L_1 = VirtFuncInvoker0< int64_t >::Invoke(10 /* System.Int64 System.IO.Stream::get_Length() */, L_0);
return L_1;
}
}
// System.Int64 Mono.Net.Security.MobileAuthenticatedStream::get_Position()
extern "C" IL2CPP_METHOD_ATTR int64_t MobileAuthenticatedStream_get_Position_mD05763AB69A4C7F98E6276F32645AEDFD8888731 (MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * __this, const RuntimeMethod* method)
{
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_0 = AuthenticatedStream_get_InnerStream_mB7DF06B2F011B3F9F301D068438BBD01C24DCDDC(__this, /*hidden argument*/NULL);
NullCheck(L_0);
int64_t L_1 = VirtFuncInvoker0< int64_t >::Invoke(11 /* System.Int64 System.IO.Stream::get_Position() */, L_0);
return L_1;
}
}
// System.Void Mono.Net.Security.MobileAuthenticatedStream::set_Position(System.Int64)
extern "C" IL2CPP_METHOD_ATTR void MobileAuthenticatedStream_set_Position_m5A309FE43C490AA7C1D9AE181D269CCA12B26260 (MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * __this, int64_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MobileAuthenticatedStream_set_Position_m5A309FE43C490AA7C1D9AE181D269CCA12B26260_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * L_0 = (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 *)il2cpp_codegen_object_new(NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var);
NotSupportedException__ctor_mA121DE1CAC8F25277DEB489DC7771209D91CAE33(L_0, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, NULL, MobileAuthenticatedStream_set_Position_m5A309FE43C490AA7C1D9AE181D269CCA12B26260_RuntimeMethod_var);
}
}
// System.Void Mono.Net.Security.MobileAuthenticatedStream::.cctor()
extern "C" IL2CPP_METHOD_ATTR void MobileAuthenticatedStream__cctor_mCC74CDBC64394AA7D5FE8CA0EE03EC0F11D7FEB6 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MobileAuthenticatedStream__cctor_mCC74CDBC64394AA7D5FE8CA0EE03EC0F11D7FEB6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
((MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045_StaticFields*)il2cpp_codegen_static_fields_for(MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045_il2cpp_TypeInfo_var))->set_uniqueNameInteger_14(((int32_t)123));
return;
}
}
// System.Void Mono.Net.Security.MobileAuthenticatedStream::<InnerWrite>b__67_0()
extern "C" IL2CPP_METHOD_ATTR void MobileAuthenticatedStream_U3CInnerWriteU3Eb__67_0_mA67CDCE05B68516E41F5A6A8BF836B0AAE18D3B9 (MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * __this, const RuntimeMethod* method)
{
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_0 = AuthenticatedStream_get_InnerStream_mB7DF06B2F011B3F9F301D068438BBD01C24DCDDC(__this, /*hidden argument*/NULL);
BufferOffsetSize2_t2E9889F6FB134EF92FC0B930BF630243553F4E00 * L_1 = __this->get_writeBuffer_11();
NullCheck(L_1);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ((BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 *)L_1)->get_Buffer_0();
BufferOffsetSize2_t2E9889F6FB134EF92FC0B930BF630243553F4E00 * L_3 = __this->get_writeBuffer_11();
NullCheck(L_3);
int32_t L_4 = ((BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 *)L_3)->get_Offset_1();
BufferOffsetSize2_t2E9889F6FB134EF92FC0B930BF630243553F4E00 * L_5 = __this->get_writeBuffer_11();
NullCheck(L_5);
int32_t L_6 = ((BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 *)L_5)->get_Size_2();
NullCheck(L_0);
VirtActionInvoker3< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(25 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_0, L_2, L_4, L_6);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Net.Security.MobileAuthenticatedStream/<>c__DisplayClass66_0::.ctor()
extern "C" IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass66_0__ctor_m4ADA8611B27CC1C1BE9AFD1D22978A6621F720BE (U3CU3Ec__DisplayClass66_0_t57BA0EF5D295E67BF00C608A8D3AC8A83A7606CC * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
// System.Int32 Mono.Net.Security.MobileAuthenticatedStream/<>c__DisplayClass66_0::<InnerRead>b__0()
extern "C" IL2CPP_METHOD_ATTR int32_t U3CU3Ec__DisplayClass66_0_U3CInnerReadU3Eb__0_mF1C5674011A7F38D3AE4A911BE1E8E36E5CE0348 (U3CU3Ec__DisplayClass66_0_t57BA0EF5D295E67BF00C608A8D3AC8A83A7606CC * __this, const RuntimeMethod* method)
{
{
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * L_0 = __this->get_U3CU3E4__this_0();
NullCheck(L_0);
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_1 = AuthenticatedStream_get_InnerStream_mB7DF06B2F011B3F9F301D068438BBD01C24DCDDC(L_0, /*hidden argument*/NULL);
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * L_2 = __this->get_U3CU3E4__this_0();
NullCheck(L_2);
BufferOffsetSize2_t2E9889F6FB134EF92FC0B930BF630243553F4E00 * L_3 = L_2->get_readBuffer_10();
NullCheck(L_3);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = ((BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 *)L_3)->get_Buffer_0();
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * L_5 = __this->get_U3CU3E4__this_0();
NullCheck(L_5);
BufferOffsetSize2_t2E9889F6FB134EF92FC0B930BF630243553F4E00 * L_6 = L_5->get_readBuffer_10();
NullCheck(L_6);
int32_t L_7 = BufferOffsetSize_get_EndOffset_m3D0A21592979F5088101892843183FCFB8C9BF2A(L_6, /*hidden argument*/NULL);
int32_t L_8 = __this->get_len_1();
NullCheck(L_1);
int32_t L_9 = VirtFuncInvoker3< int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(23 /* System.Int32 System.IO.Stream::Read(System.Byte[],System.Int32,System.Int32) */, L_1, L_4, L_7, L_8);
return L_9;
}
}
#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 Mono.Net.Security.MobileAuthenticatedStream/<InnerRead>d__66::MoveNext()
extern "C" IL2CPP_METHOD_ATTR void U3CInnerReadU3Ed__66_MoveNext_mDF4D1A1689C7CC5B3E42580E12BA513E31959F96 (U3CInnerReadU3Ed__66_tA027A607C6D5A6367A04D2DCAF5FCBB66E6B5CAB * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CInnerReadU3Ed__66_MoveNext_mDF4D1A1689C7CC5B3E42580E12BA513E31959F96_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * V_1 = NULL;
int32_t V_2 = 0;
U3CU3Ec__DisplayClass66_0_t57BA0EF5D295E67BF00C608A8D3AC8A83A7606CC * V_3 = NULL;
Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * V_4 = NULL;
int32_t V_5 = 0;
ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E V_6;
memset(&V_6, 0, sizeof(V_6));
ConfiguredTaskAwaitable_1_t10E65A50D6EC08956E9F550CD64330F4DED0D38A V_7;
memset(&V_7, 0, sizeof(V_7));
Exception_t * V_8 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
int32_t L_0 = __this->get_U3CU3E1__state_0();
V_0 = L_0;
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * L_1 = __this->get_U3CU3E4__this_2();
V_1 = L_1;
}
IL_000e:
try
{ // begin try (depth: 1)
{
int32_t L_2 = V_0;
if (!L_2)
{
goto IL_00e7;
}
}
IL_0014:
{
U3CU3Ec__DisplayClass66_0_t57BA0EF5D295E67BF00C608A8D3AC8A83A7606CC * L_3 = (U3CU3Ec__DisplayClass66_0_t57BA0EF5D295E67BF00C608A8D3AC8A83A7606CC *)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass66_0_t57BA0EF5D295E67BF00C608A8D3AC8A83A7606CC_il2cpp_TypeInfo_var);
U3CU3Ec__DisplayClass66_0__ctor_m4ADA8611B27CC1C1BE9AFD1D22978A6621F720BE(L_3, /*hidden argument*/NULL);
V_3 = L_3;
U3CU3Ec__DisplayClass66_0_t57BA0EF5D295E67BF00C608A8D3AC8A83A7606CC * L_4 = V_3;
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * L_5 = __this->get_U3CU3E4__this_2();
NullCheck(L_4);
L_4->set_U3CU3E4__this_0(L_5);
CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB * L_6 = __this->get_address_of_cancellationToken_3();
CancellationToken_ThrowIfCancellationRequested_m13AB667F961F83D8ED759BA402325638F43B0938((CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB *)L_6, /*hidden argument*/NULL);
U3CU3Ec__DisplayClass66_0_t57BA0EF5D295E67BF00C608A8D3AC8A83A7606CC * L_7 = V_3;
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * L_8 = V_1;
NullCheck(L_8);
BufferOffsetSize2_t2E9889F6FB134EF92FC0B930BF630243553F4E00 * L_9 = L_8->get_readBuffer_10();
NullCheck(L_9);
int32_t L_10 = BufferOffsetSize_get_Remaining_mBD3EA6B0F643284A54FDCA2860FE0F65C5CAF054(L_9, /*hidden argument*/NULL);
int32_t L_11 = __this->get_requestedSize_4();
IL2CPP_RUNTIME_CLASS_INIT(Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var);
int32_t L_12 = Math_Min_mC950438198519FB2B0260FCB91220847EE4BB525(L_10, L_11, /*hidden argument*/NULL);
NullCheck(L_7);
L_7->set_len_1(L_12);
U3CU3Ec__DisplayClass66_0_t57BA0EF5D295E67BF00C608A8D3AC8A83A7606CC * L_13 = V_3;
NullCheck(L_13);
int32_t L_14 = L_13->get_len_1();
if (L_14)
{
goto IL_005b;
}
}
IL_0055:
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_15 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m1F94EA1226068BD1B7EAA1B836A59C99979F579E(L_15, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, NULL, U3CInnerReadU3Ed__66_MoveNext_mDF4D1A1689C7CC5B3E42580E12BA513E31959F96_RuntimeMethod_var);
}
IL_005b:
{
bool L_16 = __this->get_sync_5();
if (!L_16)
{
goto IL_0078;
}
}
IL_0063:
{
U3CU3Ec__DisplayClass66_0_t57BA0EF5D295E67BF00C608A8D3AC8A83A7606CC * L_17 = V_3;
Func_1_t30631A63BE46FE93700939B764202D360449FE30 * L_18 = (Func_1_t30631A63BE46FE93700939B764202D360449FE30 *)il2cpp_codegen_object_new(Func_1_t30631A63BE46FE93700939B764202D360449FE30_il2cpp_TypeInfo_var);
Func_1__ctor_m27E13FE1436758E3083686F1DC59AABC45F50527(L_18, L_17, (intptr_t)((intptr_t)U3CU3Ec__DisplayClass66_0_U3CInnerReadU3Eb__0_mF1C5674011A7F38D3AE4A911BE1E8E36E5CE0348_RuntimeMethod_var), /*hidden argument*/Func_1__ctor_m27E13FE1436758E3083686F1DC59AABC45F50527_RuntimeMethod_var);
IL2CPP_RUNTIME_CLASS_INIT(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var);
Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * L_19 = Task_Run_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m11A2B12F2DF2E9E71644C83D3A1601E8BCC4929A(L_18, /*hidden argument*/Task_Run_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m11A2B12F2DF2E9E71644C83D3A1601E8BCC4929A_RuntimeMethod_var);
V_4 = L_19;
goto IL_00a7;
}
IL_0078:
{
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * L_20 = V_1;
NullCheck(L_20);
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_21 = AuthenticatedStream_get_InnerStream_mB7DF06B2F011B3F9F301D068438BBD01C24DCDDC(L_20, /*hidden argument*/NULL);
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * L_22 = V_1;
NullCheck(L_22);
BufferOffsetSize2_t2E9889F6FB134EF92FC0B930BF630243553F4E00 * L_23 = L_22->get_readBuffer_10();
NullCheck(L_23);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_24 = ((BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 *)L_23)->get_Buffer_0();
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * L_25 = V_1;
NullCheck(L_25);
BufferOffsetSize2_t2E9889F6FB134EF92FC0B930BF630243553F4E00 * L_26 = L_25->get_readBuffer_10();
NullCheck(L_26);
int32_t L_27 = BufferOffsetSize_get_EndOffset_m3D0A21592979F5088101892843183FCFB8C9BF2A(L_26, /*hidden argument*/NULL);
U3CU3Ec__DisplayClass66_0_t57BA0EF5D295E67BF00C608A8D3AC8A83A7606CC * L_28 = V_3;
NullCheck(L_28);
int32_t L_29 = L_28->get_len_1();
CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_30 = __this->get_cancellationToken_3();
NullCheck(L_21);
Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * L_31 = VirtFuncInvoker4< Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB >::Invoke(18 /* System.Threading.Tasks.Task`1<System.Int32> System.IO.Stream::ReadAsync(System.Byte[],System.Int32,System.Int32,System.Threading.CancellationToken) */, L_21, L_24, L_27, L_29, L_30);
V_4 = L_31;
}
IL_00a7:
{
Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * L_32 = V_4;
NullCheck(L_32);
ConfiguredTaskAwaitable_1_t10E65A50D6EC08956E9F550CD64330F4DED0D38A L_33 = Task_1_ConfigureAwait_m88DF0C431456B72CA5CF2534AE96969FDB86F982(L_32, (bool)0, /*hidden argument*/Task_1_ConfigureAwait_m88DF0C431456B72CA5CF2534AE96969FDB86F982_RuntimeMethod_var);
V_7 = L_33;
ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E L_34 = ConfiguredTaskAwaitable_1_GetAwaiter_m10B0B84F72A27E623BD94882380E582459F8B8DE((ConfiguredTaskAwaitable_1_t10E65A50D6EC08956E9F550CD64330F4DED0D38A *)(&V_7), /*hidden argument*/ConfiguredTaskAwaitable_1_GetAwaiter_m10B0B84F72A27E623BD94882380E582459F8B8DE_RuntimeMethod_var);
V_6 = L_34;
bool L_35 = ConfiguredTaskAwaiter_get_IsCompleted_mCBD6C3EF024E1D7C538268F338BD0C4BA712FA92((ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E *)(&V_6), /*hidden argument*/ConfiguredTaskAwaiter_get_IsCompleted_mCBD6C3EF024E1D7C538268F338BD0C4BA712FA92_RuntimeMethod_var);
if (L_35)
{
goto IL_0104;
}
}
IL_00c3:
{
int32_t L_36 = 0;
V_0 = L_36;
__this->set_U3CU3E1__state_0(L_36);
ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E L_37 = V_6;
__this->set_U3CU3Eu__1_6(L_37);
AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 * L_38 = __this->get_address_of_U3CU3Et__builder_1();
AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E_TisU3CInnerReadU3Ed__66_tA027A607C6D5A6367A04D2DCAF5FCBB66E6B5CAB_m27EC0547CE146B1E82C108C283D1DAD2AEF81083((AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 *)L_38, (ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E *)(&V_6), (U3CInnerReadU3Ed__66_tA027A607C6D5A6367A04D2DCAF5FCBB66E6B5CAB *)__this, /*hidden argument*/AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E_TisU3CInnerReadU3Ed__66_tA027A607C6D5A6367A04D2DCAF5FCBB66E6B5CAB_m27EC0547CE146B1E82C108C283D1DAD2AEF81083_RuntimeMethod_var);
goto IL_018d;
}
IL_00e7:
{
ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E L_39 = __this->get_U3CU3Eu__1_6();
V_6 = L_39;
ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E * L_40 = __this->get_address_of_U3CU3Eu__1_6();
il2cpp_codegen_initobj(L_40, sizeof(ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E ));
int32_t L_41 = (-1);
V_0 = L_41;
__this->set_U3CU3E1__state_0(L_41);
}
IL_0104:
{
int32_t L_42 = ConfiguredTaskAwaiter_GetResult_m05FB789E6901C9496B94A722DF99239A979A2623((ConfiguredTaskAwaiter_t18D0589F789FFE82A30A223888FB7C5BED32C63E *)(&V_6), /*hidden argument*/ConfiguredTaskAwaiter_GetResult_m05FB789E6901C9496B94A722DF99239A979A2623_RuntimeMethod_var);
V_5 = L_42;
int32_t L_43 = V_5;
if ((((int32_t)L_43) < ((int32_t)0)))
{
goto IL_013a;
}
}
IL_0112:
{
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * L_44 = V_1;
NullCheck(L_44);
BufferOffsetSize2_t2E9889F6FB134EF92FC0B930BF630243553F4E00 * L_45 = L_44->get_readBuffer_10();
BufferOffsetSize2_t2E9889F6FB134EF92FC0B930BF630243553F4E00 * L_46 = L_45;
NullCheck(L_46);
int32_t L_47 = ((BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 *)L_46)->get_Size_2();
int32_t L_48 = V_5;
NullCheck(L_46);
((BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 *)L_46)->set_Size_2(((int32_t)il2cpp_codegen_add((int32_t)L_47, (int32_t)L_48)));
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * L_49 = V_1;
NullCheck(L_49);
BufferOffsetSize2_t2E9889F6FB134EF92FC0B930BF630243553F4E00 * L_50 = L_49->get_readBuffer_10();
BufferOffsetSize2_t2E9889F6FB134EF92FC0B930BF630243553F4E00 * L_51 = L_50;
NullCheck(L_51);
int32_t L_52 = ((BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 *)L_51)->get_TotalBytes_3();
int32_t L_53 = V_5;
NullCheck(L_51);
((BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 *)L_51)->set_TotalBytes_3(((int32_t)il2cpp_codegen_add((int32_t)L_52, (int32_t)L_53)));
}
IL_013a:
{
int32_t L_54 = V_5;
if (L_54)
{
goto IL_015b;
}
}
IL_013e:
{
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * L_55 = V_1;
NullCheck(L_55);
BufferOffsetSize2_t2E9889F6FB134EF92FC0B930BF630243553F4E00 * L_56 = L_55->get_readBuffer_10();
NullCheck(L_56);
((BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 *)L_56)->set_Complete_4((bool)1);
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * L_57 = V_1;
NullCheck(L_57);
BufferOffsetSize2_t2E9889F6FB134EF92FC0B930BF630243553F4E00 * L_58 = L_57->get_readBuffer_10();
NullCheck(L_58);
int32_t L_59 = ((BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 *)L_58)->get_TotalBytes_3();
if ((((int32_t)L_59) <= ((int32_t)0)))
{
goto IL_015b;
}
}
IL_0158:
{
V_5 = (-1);
}
IL_015b:
{
int32_t L_60 = V_5;
V_2 = L_60;
goto IL_0179;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0160;
throw e;
}
CATCH_0160:
{ // begin catch(System.Exception)
V_8 = ((Exception_t *)__exception_local);
__this->set_U3CU3E1__state_0(((int32_t)-2));
AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 * L_61 = __this->get_address_of_U3CU3Et__builder_1();
Exception_t * L_62 = V_8;
AsyncTaskMethodBuilder_1_SetException_mC6242DDCD4119CD73267E4B9888FF3474D795821((AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 *)L_61, L_62, /*hidden argument*/AsyncTaskMethodBuilder_1_SetException_mC6242DDCD4119CD73267E4B9888FF3474D795821_RuntimeMethod_var);
goto IL_018d;
} // end catch (depth: 1)
IL_0179:
{
__this->set_U3CU3E1__state_0(((int32_t)-2));
AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 * L_63 = __this->get_address_of_U3CU3Et__builder_1();
int32_t L_64 = V_2;
AsyncTaskMethodBuilder_1_SetResult_mAFB12C1766B74D412E293BA7AB711615A14C2230((AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 *)L_63, L_64, /*hidden argument*/AsyncTaskMethodBuilder_1_SetResult_mAFB12C1766B74D412E293BA7AB711615A14C2230_RuntimeMethod_var);
}
IL_018d:
{
return;
}
}
extern "C" void U3CInnerReadU3Ed__66_MoveNext_mDF4D1A1689C7CC5B3E42580E12BA513E31959F96_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
U3CInnerReadU3Ed__66_tA027A607C6D5A6367A04D2DCAF5FCBB66E6B5CAB * _thisAdjusted = reinterpret_cast<U3CInnerReadU3Ed__66_tA027A607C6D5A6367A04D2DCAF5FCBB66E6B5CAB *>(__this + 1);
U3CInnerReadU3Ed__66_MoveNext_mDF4D1A1689C7CC5B3E42580E12BA513E31959F96(_thisAdjusted, method);
}
// System.Void Mono.Net.Security.MobileAuthenticatedStream/<InnerRead>d__66::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
extern "C" IL2CPP_METHOD_ATTR void U3CInnerReadU3Ed__66_SetStateMachine_m27E2C20E7DC4AC988ADDF81E73A957C100424381 (U3CInnerReadU3Ed__66_tA027A607C6D5A6367A04D2DCAF5FCBB66E6B5CAB * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CInnerReadU3Ed__66_SetStateMachine_m27E2C20E7DC4AC988ADDF81E73A957C100424381_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 * L_0 = __this->get_address_of_U3CU3Et__builder_1();
RuntimeObject* L_1 = ___stateMachine0;
AsyncTaskMethodBuilder_1_SetStateMachine_mADB2F2ED219BD69EC85F7516C62FB23F840BB877((AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 *)L_0, L_1, /*hidden argument*/AsyncTaskMethodBuilder_1_SetStateMachine_mADB2F2ED219BD69EC85F7516C62FB23F840BB877_RuntimeMethod_var);
return;
}
}
extern "C" void U3CInnerReadU3Ed__66_SetStateMachine_m27E2C20E7DC4AC988ADDF81E73A957C100424381_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
U3CInnerReadU3Ed__66_tA027A607C6D5A6367A04D2DCAF5FCBB66E6B5CAB * _thisAdjusted = reinterpret_cast<U3CInnerReadU3Ed__66_tA027A607C6D5A6367A04D2DCAF5FCBB66E6B5CAB *>(__this + 1);
U3CInnerReadU3Ed__66_SetStateMachine_m27E2C20E7DC4AC988ADDF81E73A957C100424381(_thisAdjusted, ___stateMachine0, 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 Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67::MoveNext()
extern "C" IL2CPP_METHOD_ATTR void U3CInnerWriteU3Ed__67_MoveNext_mD7A964B6974275AD771AB15475A775E3393EE542 (U3CInnerWriteU3Ed__67_tCEBE4678B01EBC181A242F16C978B7A71367AF43 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CInnerWriteU3Ed__67_MoveNext_mD7A964B6974275AD771AB15475A775E3393EE542_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * V_1 = NULL;
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * V_2 = NULL;
ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 V_3;
memset(&V_3, 0, sizeof(V_3));
ConfiguredTaskAwaitable_t24DE1415466EE20060BE5AD528DC5C812CFA53A9 V_4;
memset(&V_4, 0, sizeof(V_4));
int32_t V_5 = 0;
Exception_t * V_6 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
int32_t L_0 = __this->get_U3CU3E1__state_0();
V_0 = L_0;
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * L_1 = __this->get_U3CU3E4__this_3();
V_1 = L_1;
}
IL_000e:
try
{ // begin try (depth: 1)
{
int32_t L_2 = V_0;
if (!L_2)
{
goto IL_00b7;
}
}
IL_0014:
{
CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB * L_3 = __this->get_address_of_cancellationToken_2();
CancellationToken_ThrowIfCancellationRequested_m13AB667F961F83D8ED759BA402325638F43B0938((CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB *)L_3, /*hidden argument*/NULL);
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * L_4 = V_1;
NullCheck(L_4);
BufferOffsetSize2_t2E9889F6FB134EF92FC0B930BF630243553F4E00 * L_5 = L_4->get_writeBuffer_11();
NullCheck(L_5);
int32_t L_6 = ((BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 *)L_5)->get_Size_2();
if (L_6)
{
goto IL_0031;
}
}
IL_002c:
{
goto IL_012e;
}
IL_0031:
{
bool L_7 = __this->get_sync_4();
if (!L_7)
{
goto IL_004d;
}
}
IL_0039:
{
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * L_8 = V_1;
Action_t591D2A86165F896B4B800BB5C25CE18672A55579 * L_9 = (Action_t591D2A86165F896B4B800BB5C25CE18672A55579 *)il2cpp_codegen_object_new(Action_t591D2A86165F896B4B800BB5C25CE18672A55579_il2cpp_TypeInfo_var);
Action__ctor_m570E96B2A0C48BC1DC6788460316191F24572760(L_9, L_8, (intptr_t)((intptr_t)MobileAuthenticatedStream_U3CInnerWriteU3Eb__67_0_mA67CDCE05B68516E41F5A6A8BF836B0AAE18D3B9_RuntimeMethod_var), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_il2cpp_TypeInfo_var);
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_10 = Task_Run_m201E4C04F97BCF541633AF913DF20C6FF7872E44(L_9, /*hidden argument*/NULL);
V_2 = L_10;
goto IL_007a;
}
IL_004d:
{
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * L_11 = V_1;
NullCheck(L_11);
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_12 = AuthenticatedStream_get_InnerStream_mB7DF06B2F011B3F9F301D068438BBD01C24DCDDC(L_11, /*hidden argument*/NULL);
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * L_13 = V_1;
NullCheck(L_13);
BufferOffsetSize2_t2E9889F6FB134EF92FC0B930BF630243553F4E00 * L_14 = L_13->get_writeBuffer_11();
NullCheck(L_14);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_15 = ((BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 *)L_14)->get_Buffer_0();
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * L_16 = V_1;
NullCheck(L_16);
BufferOffsetSize2_t2E9889F6FB134EF92FC0B930BF630243553F4E00 * L_17 = L_16->get_writeBuffer_11();
NullCheck(L_17);
int32_t L_18 = ((BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 *)L_17)->get_Offset_1();
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * L_19 = V_1;
NullCheck(L_19);
BufferOffsetSize2_t2E9889F6FB134EF92FC0B930BF630243553F4E00 * L_20 = L_19->get_writeBuffer_11();
NullCheck(L_20);
int32_t L_21 = ((BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 *)L_20)->get_Size_2();
NullCheck(L_12);
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_22 = Stream_WriteAsync_mCFD85AD4F5D46429304AD261776AD0B8CE5CEF84(L_12, L_15, L_18, L_21, /*hidden argument*/NULL);
V_2 = L_22;
}
IL_007a:
{
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * L_23 = V_2;
NullCheck(L_23);
ConfiguredTaskAwaitable_t24DE1415466EE20060BE5AD528DC5C812CFA53A9 L_24 = Task_ConfigureAwait_m2FB91172F9031B0CC520D9D09B658ACC5FD6CE02(L_23, (bool)0, /*hidden argument*/NULL);
V_4 = L_24;
ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 L_25 = ConfiguredTaskAwaitable_GetAwaiter_m1EF40F198D32924E2D0F41E20B99CADBF5DDD303((ConfiguredTaskAwaitable_t24DE1415466EE20060BE5AD528DC5C812CFA53A9 *)(&V_4), /*hidden argument*/NULL);
V_3 = L_25;
bool L_26 = ConfiguredTaskAwaiter_get_IsCompleted_mDD0292137E15882AF385AE9D2FB1C8B0BEE89BDD((ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 *)(&V_3), /*hidden argument*/NULL);
if (L_26)
{
goto IL_00d3;
}
}
IL_0094:
{
int32_t L_27 = 0;
V_0 = L_27;
__this->set_U3CU3E1__state_0(L_27);
ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 L_28 = V_3;
__this->set_U3CU3Eu__1_5(L_28);
AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 * L_29 = __this->get_address_of_U3CU3Et__builder_1();
AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874_TisU3CInnerWriteU3Ed__67_tCEBE4678B01EBC181A242F16C978B7A71367AF43_mFD398737DB235705CD93D5EBA8FF31DDF273D6A5((AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 *)L_29, (ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 *)(&V_3), (U3CInnerWriteU3Ed__67_tCEBE4678B01EBC181A242F16C978B7A71367AF43 *)__this, /*hidden argument*/AsyncTaskMethodBuilder_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874_TisU3CInnerWriteU3Ed__67_tCEBE4678B01EBC181A242F16C978B7A71367AF43_mFD398737DB235705CD93D5EBA8FF31DDF273D6A5_RuntimeMethod_var);
goto IL_0141;
}
IL_00b7:
{
ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 L_30 = __this->get_U3CU3Eu__1_5();
V_3 = L_30;
ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 * L_31 = __this->get_address_of_U3CU3Eu__1_5();
il2cpp_codegen_initobj(L_31, sizeof(ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 ));
int32_t L_32 = (-1);
V_0 = L_32;
__this->set_U3CU3E1__state_0(L_32);
}
IL_00d3:
{
ConfiguredTaskAwaiter_GetResult_m7DFE5EAFB3C1F70B40948EFF46E9B13F1E260062((ConfiguredTaskAwaiter_tF1AAA16B8A1250CA037E32157A3424CD2BA47874 *)(&V_3), /*hidden argument*/NULL);
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * L_33 = V_1;
NullCheck(L_33);
BufferOffsetSize2_t2E9889F6FB134EF92FC0B930BF630243553F4E00 * L_34 = L_33->get_writeBuffer_11();
BufferOffsetSize2_t2E9889F6FB134EF92FC0B930BF630243553F4E00 * L_35 = L_34;
NullCheck(L_35);
int32_t L_36 = ((BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 *)L_35)->get_TotalBytes_3();
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * L_37 = V_1;
NullCheck(L_37);
BufferOffsetSize2_t2E9889F6FB134EF92FC0B930BF630243553F4E00 * L_38 = L_37->get_writeBuffer_11();
NullCheck(L_38);
int32_t L_39 = ((BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 *)L_38)->get_Size_2();
NullCheck(L_35);
((BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 *)L_35)->set_TotalBytes_3(((int32_t)il2cpp_codegen_add((int32_t)L_36, (int32_t)L_39)));
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * L_40 = V_1;
NullCheck(L_40);
BufferOffsetSize2_t2E9889F6FB134EF92FC0B930BF630243553F4E00 * L_41 = L_40->get_writeBuffer_11();
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * L_42 = V_1;
NullCheck(L_42);
BufferOffsetSize2_t2E9889F6FB134EF92FC0B930BF630243553F4E00 * L_43 = L_42->get_writeBuffer_11();
int32_t L_44 = 0;
V_5 = L_44;
NullCheck(L_43);
((BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 *)L_43)->set_Size_2(L_44);
int32_t L_45 = V_5;
NullCheck(L_41);
((BufferOffsetSize_tE5F3806876A6484AE343C760B6E04195202A2CC9 *)L_41)->set_Offset_1(L_45);
goto IL_012e;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0115;
throw e;
}
CATCH_0115:
{ // begin catch(System.Exception)
V_6 = ((Exception_t *)__exception_local);
__this->set_U3CU3E1__state_0(((int32_t)-2));
AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 * L_46 = __this->get_address_of_U3CU3Et__builder_1();
Exception_t * L_47 = V_6;
AsyncTaskMethodBuilder_SetException_m370C484922A63A6EF96E241D1370B8814F1F2D6B((AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 *)L_46, L_47, /*hidden argument*/NULL);
goto IL_0141;
} // end catch (depth: 1)
IL_012e:
{
__this->set_U3CU3E1__state_0(((int32_t)-2));
AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 * L_48 = __this->get_address_of_U3CU3Et__builder_1();
AsyncTaskMethodBuilder_SetResult_m151016FB698F3BB34A73BAE693A97513A7E4C838((AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 *)L_48, /*hidden argument*/NULL);
}
IL_0141:
{
return;
}
}
extern "C" void U3CInnerWriteU3Ed__67_MoveNext_mD7A964B6974275AD771AB15475A775E3393EE542_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
U3CInnerWriteU3Ed__67_tCEBE4678B01EBC181A242F16C978B7A71367AF43 * _thisAdjusted = reinterpret_cast<U3CInnerWriteU3Ed__67_tCEBE4678B01EBC181A242F16C978B7A71367AF43 *>(__this + 1);
U3CInnerWriteU3Ed__67_MoveNext_mD7A964B6974275AD771AB15475A775E3393EE542(_thisAdjusted, method);
}
// System.Void Mono.Net.Security.MobileAuthenticatedStream/<InnerWrite>d__67::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
extern "C" IL2CPP_METHOD_ATTR void U3CInnerWriteU3Ed__67_SetStateMachine_mDEA51EA28DEE2587F5E63C6D535E4EDA8943C11A (U3CInnerWriteU3Ed__67_tCEBE4678B01EBC181A242F16C978B7A71367AF43 * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
{
AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 * L_0 = __this->get_address_of_U3CU3Et__builder_1();
RuntimeObject* L_1 = ___stateMachine0;
AsyncTaskMethodBuilder_SetStateMachine_mB5DD68F7C49EA6D452AEBA02B1B98AED898C3C25((AsyncTaskMethodBuilder_t0CD1893D670405BED201BE8CA6F2E811F2C0F487 *)L_0, L_1, /*hidden argument*/NULL);
return;
}
}
extern "C" void U3CInnerWriteU3Ed__67_SetStateMachine_mDEA51EA28DEE2587F5E63C6D535E4EDA8943C11A_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
U3CInnerWriteU3Ed__67_tCEBE4678B01EBC181A242F16C978B7A71367AF43 * _thisAdjusted = reinterpret_cast<U3CInnerWriteU3Ed__67_tCEBE4678B01EBC181A242F16C978B7A71367AF43 *>(__this + 1);
U3CInnerWriteU3Ed__67_SetStateMachine_mDEA51EA28DEE2587F5E63C6D535E4EDA8943C11A(_thisAdjusted, ___stateMachine0, 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 Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__58::MoveNext()
extern "C" IL2CPP_METHOD_ATTR void U3CStartOperationU3Ed__58_MoveNext_m8484CAD90FCBB0E2C0D16FFA928EF43362834466 (U3CStartOperationU3Ed__58_t9CFBEC306AEE875FF526F77EF660D0493F475BB1 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CStartOperationU3Ed__58_MoveNext_m8484CAD90FCBB0E2C0D16FFA928EF43362834466_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * V_1 = NULL;
int32_t V_2 = 0;
AsyncProtocolResult_t957DDFF1A4D0CC662F930F5C9E09E4FA1FBBFBC0 * V_3 = NULL;
RuntimeObject * V_4 = NULL;
bool V_5 = false;
ConfiguredTaskAwaiter_t688A02A53D1A4A883C7DDAFE0F07F17691C51E96 V_6;
memset(&V_6, 0, sizeof(V_6));
ConfiguredTaskAwaitable_1_t0A9F15BC9C9FD2CB00C9B0EB52DDEE933EC860A1 V_7;
memset(&V_7, 0, sizeof(V_7));
Exception_t * V_8 = NULL;
Exception_t * V_9 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
int32_t L_0 = __this->get_U3CU3E1__state_0();
V_0 = L_0;
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * L_1 = __this->get_U3CU3E4__this_2();
V_1 = L_1;
}
IL_000e:
try
{ // begin try (depth: 1)
{
int32_t L_2 = V_0;
if (!L_2)
{
goto IL_0067;
}
}
IL_0011:
{
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * L_3 = V_1;
int32_t L_4 = __this->get_type_3();
NullCheck(L_3);
MobileAuthenticatedStream_CheckThrow_m2AAEC9435176D4AA10890A896C5909330B23683E(L_3, (bool)1, (bool)((!(((uint32_t)L_4) <= ((uint32_t)0)))? 1 : 0), /*hidden argument*/NULL);
int32_t L_5 = __this->get_type_3();
if (L_5)
{
goto IL_0048;
}
}
IL_0029:
{
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * L_6 = V_1;
NullCheck(L_6);
AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 ** L_7 = L_6->get_address_of_asyncReadRequest_8();
AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * L_8 = __this->get_asyncRequest_4();
AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * L_9 = InterlockedCompareExchangeImpl<AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 *>((AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 **)L_7, L_8, (AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 *)NULL);
if (!L_9)
{
goto IL_0067;
}
}
IL_003d:
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_10 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_10, _stringLiteralCB2ABC02CAD8A6985A95FA2F4B860831B13EA387, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, NULL, U3CStartOperationU3Ed__58_MoveNext_m8484CAD90FCBB0E2C0D16FFA928EF43362834466_RuntimeMethod_var);
}
IL_0048:
{
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * L_11 = V_1;
NullCheck(L_11);
AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 ** L_12 = L_11->get_address_of_asyncWriteRequest_9();
AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * L_13 = __this->get_asyncRequest_4();
AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * L_14 = InterlockedCompareExchangeImpl<AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 *>((AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 **)L_12, L_13, (AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 *)NULL);
if (!L_14)
{
goto IL_0067;
}
}
IL_005c:
{
InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_15 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var);
InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_15, _stringLiteralCB2ABC02CAD8A6985A95FA2F4B860831B13EA387, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, NULL, U3CStartOperationU3Ed__58_MoveNext_m8484CAD90FCBB0E2C0D16FFA928EF43362834466_RuntimeMethod_var);
}
IL_0067:
{
}
IL_0068:
try
{ // begin try (depth: 2)
try
{ // begin try (depth: 3)
{
int32_t L_16 = V_0;
if (!L_16)
{
goto IL_0103;
}
}
IL_006e:
{
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * L_17 = V_1;
NullCheck(L_17);
RuntimeObject * L_18 = L_17->get_ioLock_12();
V_4 = L_18;
V_5 = (bool)0;
}
IL_0079:
try
{ // begin try (depth: 4)
{
RuntimeObject * L_19 = V_4;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_19, (bool*)(&V_5), /*hidden argument*/NULL);
int32_t L_20 = __this->get_type_3();
if (L_20)
{
goto IL_0097;
}
}
IL_008a:
{
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * L_21 = V_1;
NullCheck(L_21);
BufferOffsetSize2_t2E9889F6FB134EF92FC0B930BF630243553F4E00 * L_22 = L_21->get_readBuffer_10();
NullCheck(L_22);
BufferOffsetSize2_Reset_m4426212B4ECDC2D1487AE5B825918B747D947AB7(L_22, /*hidden argument*/NULL);
goto IL_00a2;
}
IL_0097:
{
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * L_23 = V_1;
NullCheck(L_23);
BufferOffsetSize2_t2E9889F6FB134EF92FC0B930BF630243553F4E00 * L_24 = L_23->get_writeBuffer_11();
NullCheck(L_24);
BufferOffsetSize2_Reset_m4426212B4ECDC2D1487AE5B825918B747D947AB7(L_24, /*hidden argument*/NULL);
}
IL_00a2:
{
IL2CPP_LEAVE(0xB4, FINALLY_00a4);
}
} // end try (depth: 4)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_00a4;
}
FINALLY_00a4:
{ // begin finally (depth: 4)
{
int32_t L_25 = V_0;
if ((((int32_t)L_25) >= ((int32_t)0)))
{
goto IL_00b3;
}
}
IL_00a8:
{
bool L_26 = V_5;
if (!L_26)
{
goto IL_00b3;
}
}
IL_00ac:
{
RuntimeObject * L_27 = V_4;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_27, /*hidden argument*/NULL);
}
IL_00b3:
{
IL2CPP_END_FINALLY(164)
}
} // end finally (depth: 4)
IL2CPP_CLEANUP(164)
{
IL2CPP_JUMP_TBL(0xB4, IL_00b4)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_00b4:
{
AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * L_28 = __this->get_asyncRequest_4();
CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_29 = __this->get_cancellationToken_5();
NullCheck(L_28);
Task_1_t6D67FA6126155FF2C2E227A859409D83DFAFA9BD * L_30 = AsyncProtocolRequest_StartOperation_mA13EA6B8ED143BC043F506815D05EB3F49F22682(L_28, L_29, /*hidden argument*/NULL);
NullCheck(L_30);
ConfiguredTaskAwaitable_1_t0A9F15BC9C9FD2CB00C9B0EB52DDEE933EC860A1 L_31 = Task_1_ConfigureAwait_m75E697C17E49CB06391311471AC0E4FAB9C08CC4(L_30, (bool)0, /*hidden argument*/Task_1_ConfigureAwait_m75E697C17E49CB06391311471AC0E4FAB9C08CC4_RuntimeMethod_var);
V_7 = L_31;
ConfiguredTaskAwaiter_t688A02A53D1A4A883C7DDAFE0F07F17691C51E96 L_32 = ConfiguredTaskAwaitable_1_GetAwaiter_m84063760B3748345CCC1C5EE19101346F0EBC3D5((ConfiguredTaskAwaitable_1_t0A9F15BC9C9FD2CB00C9B0EB52DDEE933EC860A1 *)(&V_7), /*hidden argument*/ConfiguredTaskAwaitable_1_GetAwaiter_m84063760B3748345CCC1C5EE19101346F0EBC3D5_RuntimeMethod_var);
V_6 = L_32;
bool L_33 = ConfiguredTaskAwaiter_get_IsCompleted_m49530C37AAFA1E0E489AF08AB80C56EE30ACAA80((ConfiguredTaskAwaiter_t688A02A53D1A4A883C7DDAFE0F07F17691C51E96 *)(&V_6), /*hidden argument*/ConfiguredTaskAwaiter_get_IsCompleted_m49530C37AAFA1E0E489AF08AB80C56EE30ACAA80_RuntimeMethod_var);
if (L_33)
{
goto IL_0120;
}
}
IL_00df:
{
int32_t L_34 = 0;
V_0 = L_34;
__this->set_U3CU3E1__state_0(L_34);
ConfiguredTaskAwaiter_t688A02A53D1A4A883C7DDAFE0F07F17691C51E96 L_35 = V_6;
__this->set_U3CU3Eu__1_6(L_35);
AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 * L_36 = __this->get_address_of_U3CU3Et__builder_1();
AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t688A02A53D1A4A883C7DDAFE0F07F17691C51E96_TisU3CStartOperationU3Ed__58_t9CFBEC306AEE875FF526F77EF660D0493F475BB1_m10F3A6CBD71592E7C6A8E694309C48D87D4E95AD((AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 *)L_36, (ConfiguredTaskAwaiter_t688A02A53D1A4A883C7DDAFE0F07F17691C51E96 *)(&V_6), (U3CStartOperationU3Ed__58_t9CFBEC306AEE875FF526F77EF660D0493F475BB1 *)__this, /*hidden argument*/AsyncTaskMethodBuilder_1_AwaitUnsafeOnCompleted_TisConfiguredTaskAwaiter_t688A02A53D1A4A883C7DDAFE0F07F17691C51E96_TisU3CStartOperationU3Ed__58_t9CFBEC306AEE875FF526F77EF660D0493F475BB1_m10F3A6CBD71592E7C6A8E694309C48D87D4E95AD_RuntimeMethod_var);
IL2CPP_LEAVE(0x1FA, FINALLY_0158);
}
IL_0103:
{
ConfiguredTaskAwaiter_t688A02A53D1A4A883C7DDAFE0F07F17691C51E96 L_37 = __this->get_U3CU3Eu__1_6();
V_6 = L_37;
ConfiguredTaskAwaiter_t688A02A53D1A4A883C7DDAFE0F07F17691C51E96 * L_38 = __this->get_address_of_U3CU3Eu__1_6();
il2cpp_codegen_initobj(L_38, sizeof(ConfiguredTaskAwaiter_t688A02A53D1A4A883C7DDAFE0F07F17691C51E96 ));
int32_t L_39 = (-1);
V_0 = L_39;
__this->set_U3CU3E1__state_0(L_39);
}
IL_0120:
{
AsyncProtocolResult_t957DDFF1A4D0CC662F930F5C9E09E4FA1FBBFBC0 * L_40 = ConfiguredTaskAwaiter_GetResult_mE3D98A933BFBF815C080F9C52674D4927E5C86FE((ConfiguredTaskAwaiter_t688A02A53D1A4A883C7DDAFE0F07F17691C51E96 *)(&V_6), /*hidden argument*/ConfiguredTaskAwaiter_GetResult_mE3D98A933BFBF815C080F9C52674D4927E5C86FE_RuntimeMethod_var);
V_3 = L_40;
goto IL_0156;
}
} // end try (depth: 3)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_012a;
throw e;
}
CATCH_012a:
{ // begin catch(System.Exception)
V_8 = ((Exception_t *)__exception_local);
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * L_41 = V_1;
Exception_t * L_42 = V_8;
AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 * L_43 = __this->get_asyncRequest_4();
NullCheck(L_43);
String_t* L_44 = AsyncProtocolRequest_get_Name_m1999BAB96B06DCB4DC11BF5F3B0BF4C6E2A26FF6(L_43, /*hidden argument*/NULL);
String_t* L_45 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_44, _stringLiteral524A7D520F53E851E22833ECB3358DA7F5B31A2D, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045_il2cpp_TypeInfo_var);
Exception_t * L_46 = MobileAuthenticatedStream_GetIOException_mE435E11E49448A2035BCABF04AA5F72F44DC26D4(L_42, L_45, /*hidden argument*/NULL);
NullCheck(L_41);
ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * L_47 = MobileAuthenticatedStream_SetException_mAFD628C4C8A54C4FE24BFB30C0F5863FDDFC8A7F(L_41, L_46, /*hidden argument*/NULL);
AsyncProtocolResult_t957DDFF1A4D0CC662F930F5C9E09E4FA1FBBFBC0 * L_48 = (AsyncProtocolResult_t957DDFF1A4D0CC662F930F5C9E09E4FA1FBBFBC0 *)il2cpp_codegen_object_new(AsyncProtocolResult_t957DDFF1A4D0CC662F930F5C9E09E4FA1FBBFBC0_il2cpp_TypeInfo_var);
AsyncProtocolResult__ctor_mD63EC8610596D4B15DB1325C58FF32A41DAD48CF(L_48, L_47, /*hidden argument*/NULL);
V_3 = L_48;
goto IL_0156;
} // end catch (depth: 3)
IL_0156:
{
IL2CPP_LEAVE(0x1B1, FINALLY_0158);
}
} // end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0158;
}
FINALLY_0158:
{ // begin finally (depth: 2)
{
int32_t L_49 = V_0;
if ((((int32_t)L_49) >= ((int32_t)0)))
{
goto IL_01b0;
}
}
IL_015c:
{
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * L_50 = V_1;
NullCheck(L_50);
RuntimeObject * L_51 = L_50->get_ioLock_12();
V_4 = L_51;
V_5 = (bool)0;
}
IL_0167:
try
{ // begin try (depth: 3)
{
RuntimeObject * L_52 = V_4;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_52, (bool*)(&V_5), /*hidden argument*/NULL);
int32_t L_53 = __this->get_type_3();
if (L_53)
{
goto IL_018c;
}
}
IL_0178:
{
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * L_54 = V_1;
NullCheck(L_54);
BufferOffsetSize2_t2E9889F6FB134EF92FC0B930BF630243553F4E00 * L_55 = L_54->get_readBuffer_10();
NullCheck(L_55);
BufferOffsetSize2_Reset_m4426212B4ECDC2D1487AE5B825918B747D947AB7(L_55, /*hidden argument*/NULL);
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * L_56 = V_1;
NullCheck(L_56);
L_56->set_asyncReadRequest_8((AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 *)NULL);
goto IL_019e;
}
IL_018c:
{
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * L_57 = V_1;
NullCheck(L_57);
BufferOffsetSize2_t2E9889F6FB134EF92FC0B930BF630243553F4E00 * L_58 = L_57->get_writeBuffer_11();
NullCheck(L_58);
BufferOffsetSize2_Reset_m4426212B4ECDC2D1487AE5B825918B747D947AB7(L_58, /*hidden argument*/NULL);
MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045 * L_59 = V_1;
NullCheck(L_59);
L_59->set_asyncWriteRequest_9((AsyncProtocolRequest_tC1F08D36027FBF2F0252CA11DD18AD0F3BE37027 *)NULL);
}
IL_019e:
{
IL2CPP_LEAVE(0x1B0, FINALLY_01a0);
}
} // end try (depth: 3)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_01a0;
}
FINALLY_01a0:
{ // begin finally (depth: 3)
{
int32_t L_60 = V_0;
if ((((int32_t)L_60) >= ((int32_t)0)))
{
goto IL_01af;
}
}
IL_01a4:
{
bool L_61 = V_5;
if (!L_61)
{
goto IL_01af;
}
}
IL_01a8:
{
RuntimeObject * L_62 = V_4;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_62, /*hidden argument*/NULL);
}
IL_01af:
{
IL2CPP_END_FINALLY(416)
}
} // end finally (depth: 3)
IL2CPP_CLEANUP(416)
{
IL2CPP_JUMP_TBL(0x1B0, IL_01b0)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_01b0:
{
IL2CPP_END_FINALLY(344)
}
} // end finally (depth: 2)
IL2CPP_CLEANUP(344)
{
IL2CPP_JUMP_TBL(0x1FA, IL_01fa)
IL2CPP_JUMP_TBL(0x1B1, IL_01b1)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_01b1:
{
AsyncProtocolResult_t957DDFF1A4D0CC662F930F5C9E09E4FA1FBBFBC0 * L_63 = V_3;
NullCheck(L_63);
ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * L_64 = AsyncProtocolResult_get_Error_m90252805C3FCD7277CD1CB01CB765183889E6E29(L_63, /*hidden argument*/NULL);
if (!L_64)
{
goto IL_01c4;
}
}
IL_01b9:
{
AsyncProtocolResult_t957DDFF1A4D0CC662F930F5C9E09E4FA1FBBFBC0 * L_65 = V_3;
NullCheck(L_65);
ExceptionDispatchInfo_t0C54083F3909DAF986A4DEAA7C047559531E0E2A * L_66 = AsyncProtocolResult_get_Error_m90252805C3FCD7277CD1CB01CB765183889E6E29(L_65, /*hidden argument*/NULL);
NullCheck(L_66);
ExceptionDispatchInfo_Throw_m9630C06EF8D7CDF5BD5DC76144CD98C4D9E8D26F(L_66, /*hidden argument*/NULL);
}
IL_01c4:
{
AsyncProtocolResult_t957DDFF1A4D0CC662F930F5C9E09E4FA1FBBFBC0 * L_67 = V_3;
NullCheck(L_67);
int32_t L_68 = AsyncProtocolResult_get_UserResult_mCCD14DC517D32C83AA61320D6D1D2E7F1430A3C8(L_67, /*hidden argument*/NULL);
V_2 = L_68;
goto IL_01e6;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (Exception_t_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_01cd;
throw e;
}
CATCH_01cd:
{ // begin catch(System.Exception)
V_9 = ((Exception_t *)__exception_local);
__this->set_U3CU3E1__state_0(((int32_t)-2));
AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 * L_69 = __this->get_address_of_U3CU3Et__builder_1();
Exception_t * L_70 = V_9;
AsyncTaskMethodBuilder_1_SetException_mC6242DDCD4119CD73267E4B9888FF3474D795821((AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 *)L_69, L_70, /*hidden argument*/AsyncTaskMethodBuilder_1_SetException_mC6242DDCD4119CD73267E4B9888FF3474D795821_RuntimeMethod_var);
goto IL_01fa;
} // end catch (depth: 1)
IL_01e6:
{
__this->set_U3CU3E1__state_0(((int32_t)-2));
AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 * L_71 = __this->get_address_of_U3CU3Et__builder_1();
int32_t L_72 = V_2;
AsyncTaskMethodBuilder_1_SetResult_mAFB12C1766B74D412E293BA7AB711615A14C2230((AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 *)L_71, L_72, /*hidden argument*/AsyncTaskMethodBuilder_1_SetResult_mAFB12C1766B74D412E293BA7AB711615A14C2230_RuntimeMethod_var);
}
IL_01fa:
{
return;
}
}
extern "C" void U3CStartOperationU3Ed__58_MoveNext_m8484CAD90FCBB0E2C0D16FFA928EF43362834466_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
U3CStartOperationU3Ed__58_t9CFBEC306AEE875FF526F77EF660D0493F475BB1 * _thisAdjusted = reinterpret_cast<U3CStartOperationU3Ed__58_t9CFBEC306AEE875FF526F77EF660D0493F475BB1 *>(__this + 1);
U3CStartOperationU3Ed__58_MoveNext_m8484CAD90FCBB0E2C0D16FFA928EF43362834466(_thisAdjusted, method);
}
// System.Void Mono.Net.Security.MobileAuthenticatedStream/<StartOperation>d__58::SetStateMachine(System.Runtime.CompilerServices.IAsyncStateMachine)
extern "C" IL2CPP_METHOD_ATTR void U3CStartOperationU3Ed__58_SetStateMachine_m2DAE3399BC870A25A88A99F04B5C36A1FECC47BC (U3CStartOperationU3Ed__58_t9CFBEC306AEE875FF526F77EF660D0493F475BB1 * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (U3CStartOperationU3Ed__58_SetStateMachine_m2DAE3399BC870A25A88A99F04B5C36A1FECC47BC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 * L_0 = __this->get_address_of_U3CU3Et__builder_1();
RuntimeObject* L_1 = ___stateMachine0;
AsyncTaskMethodBuilder_1_SetStateMachine_mADB2F2ED219BD69EC85F7516C62FB23F840BB877((AsyncTaskMethodBuilder_1_t822D24686214CB8B967C66DA507CD66A5C853079 *)L_0, L_1, /*hidden argument*/AsyncTaskMethodBuilder_1_SetStateMachine_mADB2F2ED219BD69EC85F7516C62FB23F840BB877_RuntimeMethod_var);
return;
}
}
extern "C" void U3CStartOperationU3Ed__58_SetStateMachine_m2DAE3399BC870A25A88A99F04B5C36A1FECC47BC_AdjustorThunk (RuntimeObject * __this, RuntimeObject* ___stateMachine0, const RuntimeMethod* method)
{
U3CStartOperationU3Ed__58_t9CFBEC306AEE875FF526F77EF660D0493F475BB1 * _thisAdjusted = reinterpret_cast<U3CStartOperationU3Ed__58_t9CFBEC306AEE875FF526F77EF660D0493F475BB1 *>(__this + 1);
U3CStartOperationU3Ed__58_SetStateMachine_m2DAE3399BC870A25A88A99F04B5C36A1FECC47BC(_thisAdjusted, ___stateMachine0, 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
#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 Mono.Net.Security.MobileTlsContext::Dispose()
extern "C" IL2CPP_METHOD_ATTR void MobileTlsContext_Dispose_m28EF01B1A0096B9A7820BAA0A77DB59C96A619DD (MobileTlsContext_tFC684CF3275DF6B898319625C4F3A4D537B8A127 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MobileTlsContext_Dispose_m28EF01B1A0096B9A7820BAA0A77DB59C96A619DD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
VirtActionInvoker1< bool >::Invoke(8 /* System.Void Mono.Net.Security.MobileTlsContext::Dispose(System.Boolean) */, __this, (bool)1);
IL2CPP_RUNTIME_CLASS_INIT(GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_il2cpp_TypeInfo_var);
GC_SuppressFinalize_m037319A9B95A5BA437E806DE592802225EE5B425(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void Mono.Net.Security.MobileTlsContext::Dispose(System.Boolean)
extern "C" IL2CPP_METHOD_ATTR void MobileTlsContext_Dispose_mA5A0EBCF3B159E9C83F76C00BA50FC67C360A7D1 (MobileTlsContext_tFC684CF3275DF6B898319625C4F3A4D537B8A127 * __this, bool ___disposing0, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void Mono.Net.Security.MobileTlsContext::Finalize()
extern "C" IL2CPP_METHOD_ATTR void MobileTlsContext_Finalize_m5751EFC24E645E0948C5ED11BD9C6C9E31170BA0 (MobileTlsContext_tFC684CF3275DF6B898319625C4F3A4D537B8A127 * __this, const RuntimeMethod* method)
{
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
IL_0000:
try
{ // begin try (depth: 1)
VirtActionInvoker1< bool >::Invoke(8 /* System.Void Mono.Net.Security.MobileTlsContext::Dispose(System.Boolean) */, __this, (bool)0);
IL2CPP_LEAVE(0x10, FINALLY_0009);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0009;
}
FINALLY_0009:
{ // begin finally (depth: 1)
Object_Finalize_m4015B7D3A44DE125C5FE34D7276CD4697C06F380(__this, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(9)
} // end finally (depth: 1)
IL2CPP_CLEANUP(9)
{
IL2CPP_JUMP_TBL(0x10, IL_0010)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0010:
{
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 Mono.Net.Security.MonoTlsProviderFactory::.cctor()
extern "C" IL2CPP_METHOD_ATTR void MonoTlsProviderFactory__cctor_mF95517B2A6920440ACFBE55DEA0EE9C1211BF26A (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (MonoTlsProviderFactory__cctor_mF95517B2A6920440ACFBE55DEA0EE9C1211BF26A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(L_0, /*hidden argument*/NULL);
((MonoTlsProviderFactory_t01773E7677E88B1202FB7770A3E9F53655BB2525_StaticFields*)il2cpp_codegen_static_fields_for(MonoTlsProviderFactory_t01773E7677E88B1202FB7770A3E9F53655BB2525_il2cpp_TypeInfo_var))->set_locker_0(L_0);
Guid_t L_1;
memset(&L_1, 0, sizeof(L_1));
Guid__ctor_mC668142577A40A77D13B78AADDEFFFC2E2705079((&L_1), _stringLiteral45C1FC38173A5FD1716A403B84531F2FC83623E0, /*hidden argument*/NULL);
((MonoTlsProviderFactory_t01773E7677E88B1202FB7770A3E9F53655BB2525_StaticFields*)il2cpp_codegen_static_fields_for(MonoTlsProviderFactory_t01773E7677E88B1202FB7770A3E9F53655BB2525_il2cpp_TypeInfo_var))->set_UnityTlsId_1(L_1);
Guid_t L_2;
memset(&L_2, 0, sizeof(L_2));
Guid__ctor_mC668142577A40A77D13B78AADDEFFFC2E2705079((&L_2), _stringLiteral194B7A0B1DCB2AC4E4CC31D4DB55A5FFB8EB8EA8, /*hidden argument*/NULL);
((MonoTlsProviderFactory_t01773E7677E88B1202FB7770A3E9F53655BB2525_StaticFields*)il2cpp_codegen_static_fields_for(MonoTlsProviderFactory_t01773E7677E88B1202FB7770A3E9F53655BB2525_il2cpp_TypeInfo_var))->set_AppleTlsId_2(L_2);
Guid_t L_3;
memset(&L_3, 0, sizeof(L_3));
Guid__ctor_mC668142577A40A77D13B78AADDEFFFC2E2705079((&L_3), _stringLiteral3441CDCE9FB0A67160E04A07051CB9E18BB0C2B3, /*hidden argument*/NULL);
((MonoTlsProviderFactory_t01773E7677E88B1202FB7770A3E9F53655BB2525_StaticFields*)il2cpp_codegen_static_fields_for(MonoTlsProviderFactory_t01773E7677E88B1202FB7770A3E9F53655BB2525_il2cpp_TypeInfo_var))->set_BtlsId_3(L_3);
Guid_t L_4;
memset(&L_4, 0, sizeof(L_4));
Guid__ctor_mC668142577A40A77D13B78AADDEFFFC2E2705079((&L_4), _stringLiteralDEA1E8F15CADFF2878E4222800A4D95D499E02E2, /*hidden argument*/NULL);
((MonoTlsProviderFactory_t01773E7677E88B1202FB7770A3E9F53655BB2525_StaticFields*)il2cpp_codegen_static_fields_for(MonoTlsProviderFactory_t01773E7677E88B1202FB7770A3E9F53655BB2525_il2cpp_TypeInfo_var))->set_LegacyId_4(L_4);
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 Mono.Net.Security.SystemCertificateValidator::.cctor()
extern "C" IL2CPP_METHOD_ATTR void SystemCertificateValidator__cctor_mBF04D8E389B7377FC07044B9CF044A966C572193 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SystemCertificateValidator__cctor_mBF04D8E389B7377FC07044B9CF044A966C572193_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t G_B3_0 = 0;
{
((SystemCertificateValidator_tEB00AC944EDDAA53F9A9FA7A316A23574985475F_StaticFields*)il2cpp_codegen_static_fields_for(SystemCertificateValidator_tEB00AC944EDDAA53F9A9FA7A316A23574985475F_il2cpp_TypeInfo_var))->set_s_flags_1(((int32_t)168));
OperatingSystem_tBB05846D5AA6960FFEB42C59E5FE359255C2BE83 * L_0 = Environment_get_OSVersion_mD6E99E279170E00D17F7D29F242EF65434812233(/*hidden argument*/NULL);
NullCheck(L_0);
int32_t L_1 = OperatingSystem_get_Platform_m36635DD0A3D5442E515AB8D2EA3C7092348A5181(L_0, /*hidden argument*/NULL);
if ((((int32_t)L_1) == ((int32_t)2)))
{
goto IL_0023;
}
}
{
bool L_2 = File_Exists_m6B9BDD8EEB33D744EB0590DD27BC0152FAFBD1FB(_stringLiteral6D4853D9C2696A98DA8096DCE674A11141FD8E3C, /*hidden argument*/NULL);
G_B3_0 = ((int32_t)(L_2));
goto IL_0024;
}
IL_0023:
{
G_B3_0 = 0;
}
IL_0024:
{
((SystemCertificateValidator_tEB00AC944EDDAA53F9A9FA7A316A23574985475F_StaticFields*)il2cpp_codegen_static_fields_for(SystemCertificateValidator_tEB00AC944EDDAA53F9A9FA7A316A23574985475F_il2cpp_TypeInfo_var))->set_is_macosx_0((bool)G_B3_0);
return;
}
}
// System.Security.Cryptography.X509Certificates.X509Chain Mono.Net.Security.SystemCertificateValidator::CreateX509Chain(System.Security.Cryptography.X509Certificates.X509CertificateCollection)
extern "C" IL2CPP_METHOD_ATTR X509Chain_t4A28E9A30CBB331C9B68AE4AFCB30625C6C8B538 * SystemCertificateValidator_CreateX509Chain_mB9965896005703ADC050BC1E6415D30FBDC42091 (X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 * ___certs0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SystemCertificateValidator_CreateX509Chain_mB9965896005703ADC050BC1E6415D30FBDC42091_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
X509Chain_t4A28E9A30CBB331C9B68AE4AFCB30625C6C8B538 * L_0 = (X509Chain_t4A28E9A30CBB331C9B68AE4AFCB30625C6C8B538 *)il2cpp_codegen_object_new(X509Chain_t4A28E9A30CBB331C9B68AE4AFCB30625C6C8B538_il2cpp_TypeInfo_var);
X509Chain__ctor_mC6F6E3F01D21638D909E13D151923EB4BF592CAB(L_0, /*hidden argument*/NULL);
X509Chain_t4A28E9A30CBB331C9B68AE4AFCB30625C6C8B538 * L_1 = L_0;
X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 * L_2 = ___certs0;
X509ChainPolicy_tCA1D9E9842A16ACD71D35E9C36659E3E861D74DD * L_3 = (X509ChainPolicy_tCA1D9E9842A16ACD71D35E9C36659E3E861D74DD *)il2cpp_codegen_object_new(X509ChainPolicy_tCA1D9E9842A16ACD71D35E9C36659E3E861D74DD_il2cpp_TypeInfo_var);
X509ChainPolicy__ctor_m53AB51FBA21115B866EB0AB6AEE039B6167F6A4D(L_3, ((X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 *)CastclassClass((RuntimeObject*)L_2, X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
NullCheck(L_1);
X509Chain_set_ChainPolicy_mFFC95743026B78C7B6DA33B51CEBD81FA2215EDD(L_1, L_3, /*hidden argument*/NULL);
return L_1;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void Mono.Unity.CertHelper::AddCertificatesToNativeChain(Mono.Unity.UnityTls/unitytls_x509list*,System.Security.Cryptography.X509Certificates.X509CertificateCollection,Mono.Unity.UnityTls/unitytls_errorstate*)
extern "C" IL2CPP_METHOD_ATTR void CertHelper_AddCertificatesToNativeChain_m1D22A9A50CA05E1F931B8B309E047092DDE01CFF (unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * ___nativeCertificateChain0, X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 * ___certificates1, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CertHelper_AddCertificatesToNativeChain_m1D22A9A50CA05E1F931B8B309E047092DDE01CFF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
X509CertificateEnumerator_t99AEDECD77BFC6083D8C98F9760BF7876D5B886B * V_0 = NULL;
X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 * V_1 = NULL;
RuntimeObject* V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 * L_0 = ___certificates1;
NullCheck(L_0);
X509CertificateEnumerator_t99AEDECD77BFC6083D8C98F9760BF7876D5B886B * L_1 = X509CertificateCollection_GetEnumerator_mD28E40E9104E833480FA012B1CE905AC08A7AD4F(L_0, /*hidden argument*/NULL);
V_0 = L_1;
}
IL_0007:
try
{ // begin try (depth: 1)
{
goto IL_0018;
}
IL_0009:
{
X509CertificateEnumerator_t99AEDECD77BFC6083D8C98F9760BF7876D5B886B * L_2 = V_0;
NullCheck(L_2);
X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 * L_3 = X509CertificateEnumerator_get_Current_mDA87DA5B1CD027E452E22112ED43423F95573BE0(L_2, /*hidden argument*/NULL);
V_1 = L_3;
unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * L_4 = ___nativeCertificateChain0;
X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 * L_5 = V_1;
unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * L_6 = ___errorState2;
CertHelper_AddCertificateToNativeChain_m223E545813937EC29B6EF428DAE3F45551728166((unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *)(unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *)L_4, L_5, (unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *)(unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *)L_6, /*hidden argument*/NULL);
}
IL_0018:
{
X509CertificateEnumerator_t99AEDECD77BFC6083D8C98F9760BF7876D5B886B * L_7 = V_0;
NullCheck(L_7);
bool L_8 = X509CertificateEnumerator_MoveNext_m472F420F968A52D970486D21BFFABCCE5329F714(L_7, /*hidden argument*/NULL);
if (L_8)
{
goto IL_0009;
}
}
IL_0020:
{
IL2CPP_LEAVE(0x33, FINALLY_0022);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0022;
}
FINALLY_0022:
{ // begin finally (depth: 1)
{
X509CertificateEnumerator_t99AEDECD77BFC6083D8C98F9760BF7876D5B886B * L_9 = V_0;
V_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_9, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var));
RuntimeObject* L_10 = V_2;
if (!L_10)
{
goto IL_0032;
}
}
IL_002c:
{
RuntimeObject* L_11 = V_2;
NullCheck(L_11);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_11);
}
IL_0032:
{
IL2CPP_END_FINALLY(34)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(34)
{
IL2CPP_JUMP_TBL(0x33, IL_0033)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0033:
{
return;
}
}
// System.Void Mono.Unity.CertHelper::AddCertificateToNativeChain(Mono.Unity.UnityTls/unitytls_x509list*,System.Security.Cryptography.X509Certificates.X509Certificate,Mono.Unity.UnityTls/unitytls_errorstate*)
extern "C" IL2CPP_METHOD_ATTR void CertHelper_AddCertificateToNativeChain_m223E545813937EC29B6EF428DAE3F45551728166 (unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * ___nativeCertificateChain0, X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 * ___certificate1, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CertHelper_AddCertificateToNativeChain_m223E545813937EC29B6EF428DAE3F45551728166_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL;
X509Certificate2Impl_t645108014422F6408EB87390317CD10710F129E7 * V_1 = NULL;
uint8_t* V_2 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_3 = NULL;
X509CertificateImplCollection_t2F7A6E9F160116CE64224D56187C92ECD7FA7242 * V_4 = NULL;
int32_t V_5 = 0;
{
X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 * L_0 = ___certificate1;
NullCheck(L_0);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = VirtFuncInvoker0< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(8 /* System.Byte[] System.Security.Cryptography.X509Certificates.X509Certificate::GetRawCertData() */, L_0);
V_0 = L_1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = L_2;
V_3 = L_3;
if (!L_3)
{
goto IL_0011;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = V_3;
NullCheck(L_4);
if ((((int32_t)((int32_t)(((RuntimeArray *)L_4)->max_length)))))
{
goto IL_0016;
}
}
IL_0011:
{
V_2 = (uint8_t*)(((uintptr_t)0));
goto IL_001f;
}
IL_0016:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = V_3;
NullCheck(L_5);
V_2 = (uint8_t*)(((uintptr_t)((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))));
}
IL_001f:
{
IL2CPP_RUNTIME_CLASS_INIT(UnityTls_tFD87351846C601F716262E015308C6BB66000DEC_il2cpp_TypeInfo_var);
unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF * L_6 = UnityTls_get_NativeInterface_mB7B44E93A89C271D6C65B44DE2EE9C4A5786E88E(/*hidden argument*/NULL);
NullCheck(L_6);
unitytls_x509list_append_der_t_tDA1C93A382058FB563F8772B119D5B598DC37A5C * L_7 = L_6->get_unitytls_x509list_append_der_13();
unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * L_8 = ___nativeCertificateChain0;
uint8_t* L_9 = V_2;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_10 = V_0;
NullCheck(L_10);
intptr_t L_11 = IntPtr_op_Explicit_m62A5ED7757661C8DB6AEF4816829ED92A1929F91((((int32_t)((int32_t)(((RuntimeArray *)L_10)->max_length)))), /*hidden argument*/NULL);
unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * L_12 = ___errorState2;
NullCheck(L_7);
unitytls_x509list_append_der_t_Invoke_m1606FADA7E902086F7AEE6D8F304867C7E0A434F(L_7, (unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *)(unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *)L_8, (uint8_t*)(uint8_t*)L_9, (intptr_t)L_11, (unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *)(unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *)L_12, /*hidden argument*/NULL);
V_3 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL;
X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 * L_13 = ___certificate1;
NullCheck(L_13);
X509CertificateImpl_t89610BFDE87B872143A4623CFC7F17275EB48313 * L_14 = X509Certificate_get_Impl_m2CFDB01127BFCE77F0FABDA64432CB20340EB26D(L_13, /*hidden argument*/NULL);
V_1 = ((X509Certificate2Impl_t645108014422F6408EB87390317CD10710F129E7 *)IsInstClass((RuntimeObject*)L_14, X509Certificate2Impl_t645108014422F6408EB87390317CD10710F129E7_il2cpp_TypeInfo_var));
X509Certificate2Impl_t645108014422F6408EB87390317CD10710F129E7 * L_15 = V_1;
if (!L_15)
{
goto IL_008b;
}
}
{
X509Certificate2Impl_t645108014422F6408EB87390317CD10710F129E7 * L_16 = V_1;
NullCheck(L_16);
X509CertificateImplCollection_t2F7A6E9F160116CE64224D56187C92ECD7FA7242 * L_17 = VirtFuncInvoker0< X509CertificateImplCollection_t2F7A6E9F160116CE64224D56187C92ECD7FA7242 * >::Invoke(11 /* System.Security.Cryptography.X509Certificates.X509CertificateImplCollection System.Security.Cryptography.X509Certificates.X509Certificate2Impl::get_IntermediateCertificates() */, L_16);
V_4 = L_17;
X509CertificateImplCollection_t2F7A6E9F160116CE64224D56187C92ECD7FA7242 * L_18 = V_4;
if (!L_18)
{
goto IL_008b;
}
}
{
X509CertificateImplCollection_t2F7A6E9F160116CE64224D56187C92ECD7FA7242 * L_19 = V_4;
NullCheck(L_19);
int32_t L_20 = X509CertificateImplCollection_get_Count_m1503CBCEDE4650173097C408898F1806582CC77E(L_19, /*hidden argument*/NULL);
if ((((int32_t)L_20) <= ((int32_t)0)))
{
goto IL_008b;
}
}
{
V_5 = 0;
goto IL_0080;
}
IL_0065:
{
unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * L_21 = ___nativeCertificateChain0;
X509CertificateImplCollection_t2F7A6E9F160116CE64224D56187C92ECD7FA7242 * L_22 = V_4;
int32_t L_23 = V_5;
NullCheck(L_22);
X509CertificateImpl_t89610BFDE87B872143A4623CFC7F17275EB48313 * L_24 = X509CertificateImplCollection_get_Item_m24CA14D68946B6E0006B162BA284EB51F826F276(L_22, L_23, /*hidden argument*/NULL);
X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 * L_25 = (X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2 *)il2cpp_codegen_object_new(X509Certificate_t6859B8914E252B6831D6F59A2A720CD23F7FA7B2_il2cpp_TypeInfo_var);
X509Certificate__ctor_m4CF4E6ECED8EF961E498F6D17166A23DF3CA05CF(L_25, L_24, /*hidden argument*/NULL);
unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * L_26 = ___errorState2;
CertHelper_AddCertificateToNativeChain_m223E545813937EC29B6EF428DAE3F45551728166((unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *)(unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *)L_21, L_25, (unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *)(unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *)L_26, /*hidden argument*/NULL);
int32_t L_27 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1));
}
IL_0080:
{
int32_t L_28 = V_5;
X509CertificateImplCollection_t2F7A6E9F160116CE64224D56187C92ECD7FA7242 * L_29 = V_4;
NullCheck(L_29);
int32_t L_30 = X509CertificateImplCollection_get_Count_m1503CBCEDE4650173097C408898F1806582CC77E(L_29, /*hidden argument*/NULL);
if ((((int32_t)L_28) < ((int32_t)L_30)))
{
goto IL_0065;
}
}
IL_008b:
{
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.IntPtr Mono.Unity.UnityTls::GetUnityTlsInterface()
extern "C" IL2CPP_METHOD_ATTR intptr_t UnityTls_GetUnityTlsInterface_mB672D3C985554FC0EDFAB68EB4A77BCB74FEE719 (const RuntimeMethod* method)
{
typedef intptr_t (*UnityTls_GetUnityTlsInterface_mB672D3C985554FC0EDFAB68EB4A77BCB74FEE719_ftn) ();
using namespace il2cpp::icalls;
return ((UnityTls_GetUnityTlsInterface_mB672D3C985554FC0EDFAB68EB4A77BCB74FEE719_ftn)mscorlib::Mono::Unity::UnityTls::GetUnityTlsInterface) ();
}
// Mono.Unity.UnityTls/unitytls_interface_struct Mono.Unity.UnityTls::get_NativeInterface()
extern "C" IL2CPP_METHOD_ATTR unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF * UnityTls_get_NativeInterface_mB7B44E93A89C271D6C65B44DE2EE9C4A5786E88E (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityTls_get_NativeInterface_mB7B44E93A89C271D6C65B44DE2EE9C4A5786E88E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
intptr_t V_0;
memset(&V_0, 0, sizeof(V_0));
{
IL2CPP_RUNTIME_CLASS_INIT(UnityTls_tFD87351846C601F716262E015308C6BB66000DEC_il2cpp_TypeInfo_var);
unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF * L_0 = ((UnityTls_tFD87351846C601F716262E015308C6BB66000DEC_StaticFields*)il2cpp_codegen_static_fields_for(UnityTls_tFD87351846C601F716262E015308C6BB66000DEC_il2cpp_TypeInfo_var))->get_marshalledInterface_0();
if (L_0)
{
goto IL_0027;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(UnityTls_tFD87351846C601F716262E015308C6BB66000DEC_il2cpp_TypeInfo_var);
intptr_t L_1 = UnityTls_GetUnityTlsInterface_mB672D3C985554FC0EDFAB68EB4A77BCB74FEE719(/*hidden argument*/NULL);
V_0 = (intptr_t)L_1;
intptr_t L_2 = V_0;
bool L_3 = IntPtr_op_Equality_mEE8D9FD2DFE312BBAA8B4ED3BF7976B3142A5934((intptr_t)L_2, (intptr_t)(0), /*hidden argument*/NULL);
if (!L_3)
{
goto IL_001c;
}
}
{
return (unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF *)NULL;
}
IL_001c:
{
intptr_t L_4 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(Marshal_tC795CE9CC2FFBA41EDB1AC1C0FEC04607DFA8A40_il2cpp_TypeInfo_var);
unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF * L_5 = Marshal_PtrToStructure_Tisunitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF_m7EDA997C9EC997C0EC8D05B1150DD34723490193((intptr_t)L_4, /*hidden argument*/Marshal_PtrToStructure_Tisunitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF_m7EDA997C9EC997C0EC8D05B1150DD34723490193_RuntimeMethod_var);
IL2CPP_RUNTIME_CLASS_INIT(UnityTls_tFD87351846C601F716262E015308C6BB66000DEC_il2cpp_TypeInfo_var);
((UnityTls_tFD87351846C601F716262E015308C6BB66000DEC_StaticFields*)il2cpp_codegen_static_fields_for(UnityTls_tFD87351846C601F716262E015308C6BB66000DEC_il2cpp_TypeInfo_var))->set_marshalledInterface_0(L_5);
}
IL_0027:
{
IL2CPP_RUNTIME_CLASS_INIT(UnityTls_tFD87351846C601F716262E015308C6BB66000DEC_il2cpp_TypeInfo_var);
unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF * L_6 = ((UnityTls_tFD87351846C601F716262E015308C6BB66000DEC_StaticFields*)il2cpp_codegen_static_fields_for(UnityTls_tFD87351846C601F716262E015308C6BB66000DEC_il2cpp_TypeInfo_var))->get_marshalledInterface_0();
return L_6;
}
}
// System.Void Mono.Unity.UnityTls::.cctor()
extern "C" IL2CPP_METHOD_ATTR void UnityTls__cctor_mAA0F0DEED209A955A0D0FF7AA444A2B3FFFDD73E (const RuntimeMethod* method)
{
{
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: Mono.Unity.UnityTls/unitytls_interface_struct
extern "C" void unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF_marshal_pinvoke(const unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF& unmarshaled, unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF_marshaled_pinvoke& marshaled)
{
marshaled.___UNITYTLS_INVALID_HANDLE_0 = unmarshaled.get_UNITYTLS_INVALID_HANDLE_0();
marshaled.___UNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT_1 = unmarshaled.get_UNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT_1();
marshaled.___unitytls_errorstate_create_2 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_errorstate_create_2()));
marshaled.___unitytls_errorstate_raise_error_3 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_errorstate_raise_error_3()));
marshaled.___unitytls_key_get_ref_4 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_key_get_ref_4()));
marshaled.___unitytls_key_parse_der_5 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_key_parse_der_5()));
marshaled.___unitytls_key_parse_pem_6 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_key_parse_pem_6()));
marshaled.___unitytls_key_free_7 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_key_free_7()));
marshaled.___unitytls_x509_export_der_8 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_x509_export_der_8()));
marshaled.___unitytls_x509list_get_ref_9 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_x509list_get_ref_9()));
marshaled.___unitytls_x509list_get_x509_10 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_x509list_get_x509_10()));
marshaled.___unitytls_x509list_create_11 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_x509list_create_11()));
marshaled.___unitytls_x509list_append_12 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_x509list_append_12()));
marshaled.___unitytls_x509list_append_der_13 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_x509list_append_der_13()));
marshaled.___unitytls_x509list_append_pem_14 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_x509list_append_pem_14()));
marshaled.___unitytls_x509list_free_15 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_x509list_free_15()));
marshaled.___unitytls_x509verify_default_ca_16 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_x509verify_default_ca_16()));
marshaled.___unitytls_x509verify_explicit_ca_17 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_x509verify_explicit_ca_17()));
marshaled.___unitytls_tlsctx_create_server_18 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_tlsctx_create_server_18()));
marshaled.___unitytls_tlsctx_create_client_19 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_tlsctx_create_client_19()));
marshaled.___unitytls_tlsctx_server_require_client_authentication_20 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_tlsctx_server_require_client_authentication_20()));
marshaled.___unitytls_tlsctx_set_certificate_callback_21 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_tlsctx_set_certificate_callback_21()));
marshaled.___unitytls_tlsctx_set_trace_callback_22 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_tlsctx_set_trace_callback_22()));
marshaled.___unitytls_tlsctx_set_x509verify_callback_23 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_tlsctx_set_x509verify_callback_23()));
marshaled.___unitytls_tlsctx_set_supported_ciphersuites_24 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_tlsctx_set_supported_ciphersuites_24()));
marshaled.___unitytls_tlsctx_get_ciphersuite_25 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_tlsctx_get_ciphersuite_25()));
marshaled.___unitytls_tlsctx_get_protocol_26 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_tlsctx_get_protocol_26()));
marshaled.___unitytls_tlsctx_process_handshake_27 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_tlsctx_process_handshake_27()));
marshaled.___unitytls_tlsctx_read_28 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_tlsctx_read_28()));
marshaled.___unitytls_tlsctx_write_29 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_tlsctx_write_29()));
marshaled.___unitytls_tlsctx_notify_close_30 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_tlsctx_notify_close_30()));
marshaled.___unitytls_tlsctx_free_31 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_tlsctx_free_31()));
marshaled.___unitytls_random_generate_bytes_32 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_random_generate_bytes_32()));
}
extern "C" void unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF_marshal_pinvoke_back(const unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF_marshaled_pinvoke& marshaled, unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF& unmarshaled)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF_pinvoke_FromNativeMethodDefinition_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint64_t unmarshaled_UNITYTLS_INVALID_HANDLE_temp_0 = 0;
unmarshaled_UNITYTLS_INVALID_HANDLE_temp_0 = marshaled.___UNITYTLS_INVALID_HANDLE_0;
unmarshaled.set_UNITYTLS_INVALID_HANDLE_0(unmarshaled_UNITYTLS_INVALID_HANDLE_temp_0);
unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47 unmarshaled_UNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT_temp_1;
memset(&unmarshaled_UNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT_temp_1, 0, sizeof(unmarshaled_UNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT_temp_1));
unmarshaled_UNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT_temp_1 = marshaled.___UNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT_1;
unmarshaled.set_UNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT_1(unmarshaled_UNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT_temp_1);
unmarshaled.set_unitytls_errorstate_create_2(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_errorstate_create_t_t104BADBBE1265BD1A3F84C153EB7A67CDDBF35A9>(marshaled.___unitytls_errorstate_create_2, unitytls_errorstate_create_t_t104BADBBE1265BD1A3F84C153EB7A67CDDBF35A9_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_errorstate_raise_error_3(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_errorstate_raise_error_t_tC441A37D4A6F1BAC1AFCA0108D4F7570EFF9E0D1>(marshaled.___unitytls_errorstate_raise_error_3, unitytls_errorstate_raise_error_t_tC441A37D4A6F1BAC1AFCA0108D4F7570EFF9E0D1_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_key_get_ref_4(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_key_get_ref_t_t2F4EF4CD2F6AFC4F2D166953E834C6F0A13382A7>(marshaled.___unitytls_key_get_ref_4, unitytls_key_get_ref_t_t2F4EF4CD2F6AFC4F2D166953E834C6F0A13382A7_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_key_parse_der_5(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_key_parse_der_t_t2ABD1C146C8B9405F6E5A78CD59A779EA607741B>(marshaled.___unitytls_key_parse_der_5, unitytls_key_parse_der_t_t2ABD1C146C8B9405F6E5A78CD59A779EA607741B_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_key_parse_pem_6(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_key_parse_pem_t_tB4BCEBA4194442C8C85FA19E80B808D0EDA462AB>(marshaled.___unitytls_key_parse_pem_6, unitytls_key_parse_pem_t_tB4BCEBA4194442C8C85FA19E80B808D0EDA462AB_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_key_free_7(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_key_free_t_tCC7AD95D3B758BB99785645E65EDCD65A1D243AB>(marshaled.___unitytls_key_free_7, unitytls_key_free_t_tCC7AD95D3B758BB99785645E65EDCD65A1D243AB_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_x509_export_der_8(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509_export_der_t_tB0D0A02DE7E75757AFCA780298BF95467BF82856>(marshaled.___unitytls_x509_export_der_8, unitytls_x509_export_der_t_tB0D0A02DE7E75757AFCA780298BF95467BF82856_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_x509list_get_ref_9(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509list_get_ref_t_t1FAB0CD82E536E0C9EB5255B145FC5AF434B3986>(marshaled.___unitytls_x509list_get_ref_9, unitytls_x509list_get_ref_t_t1FAB0CD82E536E0C9EB5255B145FC5AF434B3986_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_x509list_get_x509_10(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509list_get_x509_t_t028BB06EEB95E8F62511F2301B90D8181F4FFDB5>(marshaled.___unitytls_x509list_get_x509_10, unitytls_x509list_get_x509_t_t028BB06EEB95E8F62511F2301B90D8181F4FFDB5_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_x509list_create_11(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509list_create_t_tC040C2CF47D5426B7F6B1D6A2751507DC681CFF3>(marshaled.___unitytls_x509list_create_11, unitytls_x509list_create_t_tC040C2CF47D5426B7F6B1D6A2751507DC681CFF3_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_x509list_append_12(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509list_append_t_tAB1C185C77DFD6BD96DF7909370AA1FAD6BB90AF>(marshaled.___unitytls_x509list_append_12, unitytls_x509list_append_t_tAB1C185C77DFD6BD96DF7909370AA1FAD6BB90AF_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_x509list_append_der_13(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509list_append_der_t_tDA1C93A382058FB563F8772B119D5B598DC37A5C>(marshaled.___unitytls_x509list_append_der_13, unitytls_x509list_append_der_t_tDA1C93A382058FB563F8772B119D5B598DC37A5C_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_x509list_append_pem_14(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509list_append_der_t_tDA1C93A382058FB563F8772B119D5B598DC37A5C>(marshaled.___unitytls_x509list_append_pem_14, unitytls_x509list_append_der_t_tDA1C93A382058FB563F8772B119D5B598DC37A5C_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_x509list_free_15(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509list_free_t_tE3FC523507F07BD9901D84E9F6968CD8A583FF09>(marshaled.___unitytls_x509list_free_15, unitytls_x509list_free_t_tE3FC523507F07BD9901D84E9F6968CD8A583FF09_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_x509verify_default_ca_16(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509verify_default_ca_t_t4BACB6B49AA85C025AF9B18B3F30F63C9881DE2D>(marshaled.___unitytls_x509verify_default_ca_16, unitytls_x509verify_default_ca_t_t4BACB6B49AA85C025AF9B18B3F30F63C9881DE2D_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_x509verify_explicit_ca_17(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509verify_explicit_ca_t_t6C8BE964C5EE9B24D3734F028EFCD83F5893D2E6>(marshaled.___unitytls_x509verify_explicit_ca_17, unitytls_x509verify_explicit_ca_t_t6C8BE964C5EE9B24D3734F028EFCD83F5893D2E6_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_tlsctx_create_server_18(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_create_server_t_t6E7812D40DDD91958E3CFBB92B5F5748D477E19D>(marshaled.___unitytls_tlsctx_create_server_18, unitytls_tlsctx_create_server_t_t6E7812D40DDD91958E3CFBB92B5F5748D477E19D_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_tlsctx_create_client_19(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_create_client_t_tD9DFBDB5559983F0E11A67FA92E0F7182114C8F2>(marshaled.___unitytls_tlsctx_create_client_19, unitytls_tlsctx_create_client_t_tD9DFBDB5559983F0E11A67FA92E0F7182114C8F2_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_tlsctx_server_require_client_authentication_20(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_server_require_client_authentication_t_t77B3CAFF25690A45405E3C957E40CC4FF83B49C6>(marshaled.___unitytls_tlsctx_server_require_client_authentication_20, unitytls_tlsctx_server_require_client_authentication_t_t77B3CAFF25690A45405E3C957E40CC4FF83B49C6_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_tlsctx_set_certificate_callback_21(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_set_certificate_callback_t_tC4864FE0F6A3398A572F2511AA64C72126640937>(marshaled.___unitytls_tlsctx_set_certificate_callback_21, unitytls_tlsctx_set_certificate_callback_t_tC4864FE0F6A3398A572F2511AA64C72126640937_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_tlsctx_set_trace_callback_22(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_set_trace_callback_t_tA11F424F68D297B6FD2B2EA26C6764F80146662A>(marshaled.___unitytls_tlsctx_set_trace_callback_22, unitytls_tlsctx_set_trace_callback_t_tA11F424F68D297B6FD2B2EA26C6764F80146662A_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_tlsctx_set_x509verify_callback_23(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_set_x509verify_callback_t_t34EEB7BA38CA2C86F847416785ADB22BC4A04F4B>(marshaled.___unitytls_tlsctx_set_x509verify_callback_23, unitytls_tlsctx_set_x509verify_callback_t_t34EEB7BA38CA2C86F847416785ADB22BC4A04F4B_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_tlsctx_set_supported_ciphersuites_24(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_set_supported_ciphersuites_t_t6914054EA0F7A59C8A4ED4B9CDD5AF143F7D8BFE>(marshaled.___unitytls_tlsctx_set_supported_ciphersuites_24, unitytls_tlsctx_set_supported_ciphersuites_t_t6914054EA0F7A59C8A4ED4B9CDD5AF143F7D8BFE_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_tlsctx_get_ciphersuite_25(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_get_ciphersuite_t_t94A91CB42A2EBB2CC598EF3E278770AFD80696A0>(marshaled.___unitytls_tlsctx_get_ciphersuite_25, unitytls_tlsctx_get_ciphersuite_t_t94A91CB42A2EBB2CC598EF3E278770AFD80696A0_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_tlsctx_get_protocol_26(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_get_protocol_t_tB29092875D3CBD25E4461BFD165B5373FA54DB14>(marshaled.___unitytls_tlsctx_get_protocol_26, unitytls_tlsctx_get_protocol_t_tB29092875D3CBD25E4461BFD165B5373FA54DB14_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_tlsctx_process_handshake_27(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_process_handshake_t_tC8AAF317CBE4CA216F22BF031ECF89315B963C9D>(marshaled.___unitytls_tlsctx_process_handshake_27, unitytls_tlsctx_process_handshake_t_tC8AAF317CBE4CA216F22BF031ECF89315B963C9D_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_tlsctx_read_28(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_read_t_tA8D1209D5F488E02F826EE2362F5AA61C8FF2EE2>(marshaled.___unitytls_tlsctx_read_28, unitytls_tlsctx_read_t_tA8D1209D5F488E02F826EE2362F5AA61C8FF2EE2_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_tlsctx_write_29(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_write_t_t0B4A49BBA592FE4EC0630B490463AE116AF07C9C>(marshaled.___unitytls_tlsctx_write_29, unitytls_tlsctx_write_t_t0B4A49BBA592FE4EC0630B490463AE116AF07C9C_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_tlsctx_notify_close_30(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_notify_close_t_t2FC4C08BACF1AEA509ABCAF3B22475E196E74A0D>(marshaled.___unitytls_tlsctx_notify_close_30, unitytls_tlsctx_notify_close_t_t2FC4C08BACF1AEA509ABCAF3B22475E196E74A0D_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_tlsctx_free_31(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_free_t_tB27A3B6F9D1B784ABE082849EAB6B81F51FAC8E2>(marshaled.___unitytls_tlsctx_free_31, unitytls_tlsctx_free_t_tB27A3B6F9D1B784ABE082849EAB6B81F51FAC8E2_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_random_generate_bytes_32(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_random_generate_bytes_t_t494B8599A6D4247BB0C8AB7341DDC73BE42623F7>(marshaled.___unitytls_random_generate_bytes_32, unitytls_random_generate_bytes_t_t494B8599A6D4247BB0C8AB7341DDC73BE42623F7_il2cpp_TypeInfo_var));
}
// Conversion method for clean up from marshalling of: Mono.Unity.UnityTls/unitytls_interface_struct
extern "C" void unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF_marshal_pinvoke_cleanup(unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: Mono.Unity.UnityTls/unitytls_interface_struct
extern "C" void unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF_marshal_com(const unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF& unmarshaled, unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF_marshaled_com& marshaled)
{
marshaled.___UNITYTLS_INVALID_HANDLE_0 = unmarshaled.get_UNITYTLS_INVALID_HANDLE_0();
marshaled.___UNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT_1 = unmarshaled.get_UNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT_1();
marshaled.___unitytls_errorstate_create_2 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_errorstate_create_2()));
marshaled.___unitytls_errorstate_raise_error_3 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_errorstate_raise_error_3()));
marshaled.___unitytls_key_get_ref_4 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_key_get_ref_4()));
marshaled.___unitytls_key_parse_der_5 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_key_parse_der_5()));
marshaled.___unitytls_key_parse_pem_6 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_key_parse_pem_6()));
marshaled.___unitytls_key_free_7 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_key_free_7()));
marshaled.___unitytls_x509_export_der_8 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_x509_export_der_8()));
marshaled.___unitytls_x509list_get_ref_9 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_x509list_get_ref_9()));
marshaled.___unitytls_x509list_get_x509_10 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_x509list_get_x509_10()));
marshaled.___unitytls_x509list_create_11 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_x509list_create_11()));
marshaled.___unitytls_x509list_append_12 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_x509list_append_12()));
marshaled.___unitytls_x509list_append_der_13 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_x509list_append_der_13()));
marshaled.___unitytls_x509list_append_pem_14 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_x509list_append_pem_14()));
marshaled.___unitytls_x509list_free_15 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_x509list_free_15()));
marshaled.___unitytls_x509verify_default_ca_16 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_x509verify_default_ca_16()));
marshaled.___unitytls_x509verify_explicit_ca_17 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_x509verify_explicit_ca_17()));
marshaled.___unitytls_tlsctx_create_server_18 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_tlsctx_create_server_18()));
marshaled.___unitytls_tlsctx_create_client_19 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_tlsctx_create_client_19()));
marshaled.___unitytls_tlsctx_server_require_client_authentication_20 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_tlsctx_server_require_client_authentication_20()));
marshaled.___unitytls_tlsctx_set_certificate_callback_21 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_tlsctx_set_certificate_callback_21()));
marshaled.___unitytls_tlsctx_set_trace_callback_22 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_tlsctx_set_trace_callback_22()));
marshaled.___unitytls_tlsctx_set_x509verify_callback_23 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_tlsctx_set_x509verify_callback_23()));
marshaled.___unitytls_tlsctx_set_supported_ciphersuites_24 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_tlsctx_set_supported_ciphersuites_24()));
marshaled.___unitytls_tlsctx_get_ciphersuite_25 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_tlsctx_get_ciphersuite_25()));
marshaled.___unitytls_tlsctx_get_protocol_26 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_tlsctx_get_protocol_26()));
marshaled.___unitytls_tlsctx_process_handshake_27 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_tlsctx_process_handshake_27()));
marshaled.___unitytls_tlsctx_read_28 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_tlsctx_read_28()));
marshaled.___unitytls_tlsctx_write_29 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_tlsctx_write_29()));
marshaled.___unitytls_tlsctx_notify_close_30 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_tlsctx_notify_close_30()));
marshaled.___unitytls_tlsctx_free_31 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_tlsctx_free_31()));
marshaled.___unitytls_random_generate_bytes_32 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_unitytls_random_generate_bytes_32()));
}
extern "C" void unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF_marshal_com_back(const unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF_marshaled_com& marshaled, unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF& unmarshaled)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF_com_FromNativeMethodDefinition_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint64_t unmarshaled_UNITYTLS_INVALID_HANDLE_temp_0 = 0;
unmarshaled_UNITYTLS_INVALID_HANDLE_temp_0 = marshaled.___UNITYTLS_INVALID_HANDLE_0;
unmarshaled.set_UNITYTLS_INVALID_HANDLE_0(unmarshaled_UNITYTLS_INVALID_HANDLE_temp_0);
unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47 unmarshaled_UNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT_temp_1;
memset(&unmarshaled_UNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT_temp_1, 0, sizeof(unmarshaled_UNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT_temp_1));
unmarshaled_UNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT_temp_1 = marshaled.___UNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT_1;
unmarshaled.set_UNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT_1(unmarshaled_UNITYTLS_TLSCTX_PROTOCOLRANGE_DEFAULT_temp_1);
unmarshaled.set_unitytls_errorstate_create_2(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_errorstate_create_t_t104BADBBE1265BD1A3F84C153EB7A67CDDBF35A9>(marshaled.___unitytls_errorstate_create_2, unitytls_errorstate_create_t_t104BADBBE1265BD1A3F84C153EB7A67CDDBF35A9_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_errorstate_raise_error_3(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_errorstate_raise_error_t_tC441A37D4A6F1BAC1AFCA0108D4F7570EFF9E0D1>(marshaled.___unitytls_errorstate_raise_error_3, unitytls_errorstate_raise_error_t_tC441A37D4A6F1BAC1AFCA0108D4F7570EFF9E0D1_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_key_get_ref_4(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_key_get_ref_t_t2F4EF4CD2F6AFC4F2D166953E834C6F0A13382A7>(marshaled.___unitytls_key_get_ref_4, unitytls_key_get_ref_t_t2F4EF4CD2F6AFC4F2D166953E834C6F0A13382A7_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_key_parse_der_5(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_key_parse_der_t_t2ABD1C146C8B9405F6E5A78CD59A779EA607741B>(marshaled.___unitytls_key_parse_der_5, unitytls_key_parse_der_t_t2ABD1C146C8B9405F6E5A78CD59A779EA607741B_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_key_parse_pem_6(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_key_parse_pem_t_tB4BCEBA4194442C8C85FA19E80B808D0EDA462AB>(marshaled.___unitytls_key_parse_pem_6, unitytls_key_parse_pem_t_tB4BCEBA4194442C8C85FA19E80B808D0EDA462AB_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_key_free_7(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_key_free_t_tCC7AD95D3B758BB99785645E65EDCD65A1D243AB>(marshaled.___unitytls_key_free_7, unitytls_key_free_t_tCC7AD95D3B758BB99785645E65EDCD65A1D243AB_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_x509_export_der_8(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509_export_der_t_tB0D0A02DE7E75757AFCA780298BF95467BF82856>(marshaled.___unitytls_x509_export_der_8, unitytls_x509_export_der_t_tB0D0A02DE7E75757AFCA780298BF95467BF82856_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_x509list_get_ref_9(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509list_get_ref_t_t1FAB0CD82E536E0C9EB5255B145FC5AF434B3986>(marshaled.___unitytls_x509list_get_ref_9, unitytls_x509list_get_ref_t_t1FAB0CD82E536E0C9EB5255B145FC5AF434B3986_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_x509list_get_x509_10(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509list_get_x509_t_t028BB06EEB95E8F62511F2301B90D8181F4FFDB5>(marshaled.___unitytls_x509list_get_x509_10, unitytls_x509list_get_x509_t_t028BB06EEB95E8F62511F2301B90D8181F4FFDB5_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_x509list_create_11(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509list_create_t_tC040C2CF47D5426B7F6B1D6A2751507DC681CFF3>(marshaled.___unitytls_x509list_create_11, unitytls_x509list_create_t_tC040C2CF47D5426B7F6B1D6A2751507DC681CFF3_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_x509list_append_12(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509list_append_t_tAB1C185C77DFD6BD96DF7909370AA1FAD6BB90AF>(marshaled.___unitytls_x509list_append_12, unitytls_x509list_append_t_tAB1C185C77DFD6BD96DF7909370AA1FAD6BB90AF_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_x509list_append_der_13(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509list_append_der_t_tDA1C93A382058FB563F8772B119D5B598DC37A5C>(marshaled.___unitytls_x509list_append_der_13, unitytls_x509list_append_der_t_tDA1C93A382058FB563F8772B119D5B598DC37A5C_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_x509list_append_pem_14(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509list_append_der_t_tDA1C93A382058FB563F8772B119D5B598DC37A5C>(marshaled.___unitytls_x509list_append_pem_14, unitytls_x509list_append_der_t_tDA1C93A382058FB563F8772B119D5B598DC37A5C_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_x509list_free_15(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509list_free_t_tE3FC523507F07BD9901D84E9F6968CD8A583FF09>(marshaled.___unitytls_x509list_free_15, unitytls_x509list_free_t_tE3FC523507F07BD9901D84E9F6968CD8A583FF09_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_x509verify_default_ca_16(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509verify_default_ca_t_t4BACB6B49AA85C025AF9B18B3F30F63C9881DE2D>(marshaled.___unitytls_x509verify_default_ca_16, unitytls_x509verify_default_ca_t_t4BACB6B49AA85C025AF9B18B3F30F63C9881DE2D_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_x509verify_explicit_ca_17(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_x509verify_explicit_ca_t_t6C8BE964C5EE9B24D3734F028EFCD83F5893D2E6>(marshaled.___unitytls_x509verify_explicit_ca_17, unitytls_x509verify_explicit_ca_t_t6C8BE964C5EE9B24D3734F028EFCD83F5893D2E6_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_tlsctx_create_server_18(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_create_server_t_t6E7812D40DDD91958E3CFBB92B5F5748D477E19D>(marshaled.___unitytls_tlsctx_create_server_18, unitytls_tlsctx_create_server_t_t6E7812D40DDD91958E3CFBB92B5F5748D477E19D_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_tlsctx_create_client_19(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_create_client_t_tD9DFBDB5559983F0E11A67FA92E0F7182114C8F2>(marshaled.___unitytls_tlsctx_create_client_19, unitytls_tlsctx_create_client_t_tD9DFBDB5559983F0E11A67FA92E0F7182114C8F2_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_tlsctx_server_require_client_authentication_20(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_server_require_client_authentication_t_t77B3CAFF25690A45405E3C957E40CC4FF83B49C6>(marshaled.___unitytls_tlsctx_server_require_client_authentication_20, unitytls_tlsctx_server_require_client_authentication_t_t77B3CAFF25690A45405E3C957E40CC4FF83B49C6_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_tlsctx_set_certificate_callback_21(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_set_certificate_callback_t_tC4864FE0F6A3398A572F2511AA64C72126640937>(marshaled.___unitytls_tlsctx_set_certificate_callback_21, unitytls_tlsctx_set_certificate_callback_t_tC4864FE0F6A3398A572F2511AA64C72126640937_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_tlsctx_set_trace_callback_22(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_set_trace_callback_t_tA11F424F68D297B6FD2B2EA26C6764F80146662A>(marshaled.___unitytls_tlsctx_set_trace_callback_22, unitytls_tlsctx_set_trace_callback_t_tA11F424F68D297B6FD2B2EA26C6764F80146662A_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_tlsctx_set_x509verify_callback_23(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_set_x509verify_callback_t_t34EEB7BA38CA2C86F847416785ADB22BC4A04F4B>(marshaled.___unitytls_tlsctx_set_x509verify_callback_23, unitytls_tlsctx_set_x509verify_callback_t_t34EEB7BA38CA2C86F847416785ADB22BC4A04F4B_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_tlsctx_set_supported_ciphersuites_24(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_set_supported_ciphersuites_t_t6914054EA0F7A59C8A4ED4B9CDD5AF143F7D8BFE>(marshaled.___unitytls_tlsctx_set_supported_ciphersuites_24, unitytls_tlsctx_set_supported_ciphersuites_t_t6914054EA0F7A59C8A4ED4B9CDD5AF143F7D8BFE_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_tlsctx_get_ciphersuite_25(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_get_ciphersuite_t_t94A91CB42A2EBB2CC598EF3E278770AFD80696A0>(marshaled.___unitytls_tlsctx_get_ciphersuite_25, unitytls_tlsctx_get_ciphersuite_t_t94A91CB42A2EBB2CC598EF3E278770AFD80696A0_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_tlsctx_get_protocol_26(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_get_protocol_t_tB29092875D3CBD25E4461BFD165B5373FA54DB14>(marshaled.___unitytls_tlsctx_get_protocol_26, unitytls_tlsctx_get_protocol_t_tB29092875D3CBD25E4461BFD165B5373FA54DB14_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_tlsctx_process_handshake_27(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_process_handshake_t_tC8AAF317CBE4CA216F22BF031ECF89315B963C9D>(marshaled.___unitytls_tlsctx_process_handshake_27, unitytls_tlsctx_process_handshake_t_tC8AAF317CBE4CA216F22BF031ECF89315B963C9D_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_tlsctx_read_28(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_read_t_tA8D1209D5F488E02F826EE2362F5AA61C8FF2EE2>(marshaled.___unitytls_tlsctx_read_28, unitytls_tlsctx_read_t_tA8D1209D5F488E02F826EE2362F5AA61C8FF2EE2_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_tlsctx_write_29(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_write_t_t0B4A49BBA592FE4EC0630B490463AE116AF07C9C>(marshaled.___unitytls_tlsctx_write_29, unitytls_tlsctx_write_t_t0B4A49BBA592FE4EC0630B490463AE116AF07C9C_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_tlsctx_notify_close_30(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_notify_close_t_t2FC4C08BACF1AEA509ABCAF3B22475E196E74A0D>(marshaled.___unitytls_tlsctx_notify_close_30, unitytls_tlsctx_notify_close_t_t2FC4C08BACF1AEA509ABCAF3B22475E196E74A0D_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_tlsctx_free_31(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_free_t_tB27A3B6F9D1B784ABE082849EAB6B81F51FAC8E2>(marshaled.___unitytls_tlsctx_free_31, unitytls_tlsctx_free_t_tB27A3B6F9D1B784ABE082849EAB6B81F51FAC8E2_il2cpp_TypeInfo_var));
unmarshaled.set_unitytls_random_generate_bytes_32(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_random_generate_bytes_t_t494B8599A6D4247BB0C8AB7341DDC73BE42623F7>(marshaled.___unitytls_random_generate_bytes_32, unitytls_random_generate_bytes_t_t494B8599A6D4247BB0C8AB7341DDC73BE42623F7_il2cpp_TypeInfo_var));
}
// Conversion method for clean up from marshalling of: Mono.Unity.UnityTls/unitytls_interface_struct
extern "C" void unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF_marshal_com_cleanup(unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF_marshaled_com& marshaled)
{
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct::.ctor()
extern "C" IL2CPP_METHOD_ATTR void unitytls_interface_struct__ctor_m91CA935D822B8FA1057010680A22A0AC9D70E381 (unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*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
extern "C" unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 DelegatePInvokeWrapper_unitytls_errorstate_create_t_t104BADBBE1265BD1A3F84C153EB7A67CDDBF35A9 (unitytls_errorstate_create_t_t104BADBBE1265BD1A3F84C153EB7A67CDDBF35A9 * __this, const RuntimeMethod* method)
{
typedef unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 (CDECL *PInvokeFunc)();
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method));
// Native function invocation
unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 returnValue = il2cppPInvokeFunc();
return returnValue;
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_errorstate_create_t::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void unitytls_errorstate_create_t__ctor_mDB5F7A125825A4EADEFE51E41161ECF671659474 (unitytls_errorstate_create_t_t104BADBBE1265BD1A3F84C153EB7A67CDDBF35A9 * __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);
}
// Mono.Unity.UnityTls/unitytls_errorstate Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_errorstate_create_t::Invoke()
extern "C" IL2CPP_METHOD_ATTR unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 unitytls_errorstate_create_t_Invoke_m2A913757D4713362254BE457E8792AD299677D42 (unitytls_errorstate_create_t_t104BADBBE1265BD1A3F84C153EB7A67CDDBF35A9 * __this, const RuntimeMethod* method)
{
unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 result;
memset(&result, 0, sizeof(result));
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
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 == 0)
{
// open
typedef unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 (*FunctionPointerType) (const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetMethod);
}
else
{
// closed
typedef unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 (*FunctionPointerType) (void*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, 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 (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))
result = GenericInterfaceFuncInvoker0< unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 >::Invoke(targetMethod, targetThis);
else
result = GenericVirtFuncInvoker0< unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 >::Invoke(targetMethod, targetThis);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker0< unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis);
else
result = VirtFuncInvoker0< unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis);
}
}
}
else
{
typedef unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 (*FunctionPointerType) (void*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, targetMethod);
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
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 == 0)
{
// open
typedef unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 (*FunctionPointerType) (const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetMethod);
}
else
{
// closed
typedef unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 (*FunctionPointerType) (void*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, 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 (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))
result = GenericInterfaceFuncInvoker0< unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 >::Invoke(targetMethod, targetThis);
else
result = GenericVirtFuncInvoker0< unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 >::Invoke(targetMethod, targetThis);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker0< unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis);
else
result = VirtFuncInvoker0< unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis);
}
}
}
else
{
typedef unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 (*FunctionPointerType) (void*, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, targetMethod);
}
}
}
return result;
}
// System.IAsyncResult Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_errorstate_create_t::BeginInvoke(System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* unitytls_errorstate_create_t_BeginInvoke_m21B464EA6F62C9C4916A69F411D0261B058E3E06 (unitytls_errorstate_create_t_t104BADBBE1265BD1A3F84C153EB7A67CDDBF35A9 * __this, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback0, RuntimeObject * ___object1, const RuntimeMethod* method)
{
void *__d_args[1] = {0};
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback0, (RuntimeObject*)___object1);
}
// Mono.Unity.UnityTls/unitytls_errorstate Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_errorstate_create_t::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 unitytls_errorstate_create_t_EndInvoke_m8DC3659FB8AACD5CD163A95D55D72E4337AC8F37 (unitytls_errorstate_create_t_t104BADBBE1265BD1A3F84C153EB7A67CDDBF35A9 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *)UnBox ((RuntimeObject*)__result);
}
#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
extern "C" void DelegatePInvokeWrapper_unitytls_errorstate_raise_error_t_tC441A37D4A6F1BAC1AFCA0108D4F7570EFF9E0D1 (unitytls_errorstate_raise_error_t_tC441A37D4A6F1BAC1AFCA0108D4F7570EFF9E0D1 * __this, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState0, uint32_t ___errorCode1, const RuntimeMethod* method)
{
typedef void (CDECL *PInvokeFunc)(unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, uint32_t);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method));
// Native function invocation
il2cppPInvokeFunc(___errorState0, ___errorCode1);
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_errorstate_raise_error_t::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void unitytls_errorstate_raise_error_t__ctor_m5F148689FFD962A73C93824087B04547B3AEE99B (unitytls_errorstate_raise_error_t_tC441A37D4A6F1BAC1AFCA0108D4F7570EFF9E0D1 * __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 Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_errorstate_raise_error_t::Invoke(Mono.Unity.UnityTls/unitytls_errorstate*,Mono.Unity.UnityTls/unitytls_error_code)
extern "C" IL2CPP_METHOD_ATTR void unitytls_errorstate_raise_error_t_Invoke_m319B51663970217C195467C18E5928B5C2B68441 (unitytls_errorstate_raise_error_t_tC441A37D4A6F1BAC1AFCA0108D4F7570EFF9E0D1 * __this, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState0, uint32_t ___errorCode1, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
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) (unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, uint32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___errorState0, ___errorCode1, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, uint32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___errorState0, ___errorCode1, 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 (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) (unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, uint32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___errorState0, ___errorCode1, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker2< unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, uint32_t >::Invoke(targetMethod, targetThis, ___errorState0, ___errorCode1);
else
GenericVirtActionInvoker2< unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, uint32_t >::Invoke(targetMethod, targetThis, ___errorState0, ___errorCode1);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker2< unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, uint32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___errorState0, ___errorCode1);
else
VirtActionInvoker2< unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, uint32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___errorState0, ___errorCode1);
}
}
}
else
{
typedef void (*FunctionPointerType) (void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, uint32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___errorState0, ___errorCode1, targetMethod);
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
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) (unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, uint32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___errorState0, ___errorCode1, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, uint32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___errorState0, ___errorCode1, 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 (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) (unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, uint32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___errorState0, ___errorCode1, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker2< unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, uint32_t >::Invoke(targetMethod, targetThis, ___errorState0, ___errorCode1);
else
GenericVirtActionInvoker2< unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, uint32_t >::Invoke(targetMethod, targetThis, ___errorState0, ___errorCode1);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker2< unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, uint32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___errorState0, ___errorCode1);
else
VirtActionInvoker2< unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, uint32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___errorState0, ___errorCode1);
}
}
}
else
{
typedef void (*FunctionPointerType) (void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, uint32_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___errorState0, ___errorCode1, targetMethod);
}
}
}
}
// System.IAsyncResult Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_errorstate_raise_error_t::BeginInvoke(Mono.Unity.UnityTls/unitytls_errorstate*,Mono.Unity.UnityTls/unitytls_error_code,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* unitytls_errorstate_raise_error_t_BeginInvoke_m430EC23CE6C0A221B234161D965EF48FDE1FE3D8 (unitytls_errorstate_raise_error_t_tC441A37D4A6F1BAC1AFCA0108D4F7570EFF9E0D1 * __this, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState0, uint32_t ___errorCode1, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (unitytls_errorstate_raise_error_t_BeginInvoke_m430EC23CE6C0A221B234161D965EF48FDE1FE3D8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[3] = {0};
__d_args[0] = ___errorState0;
__d_args[1] = Box(unitytls_error_code_tA9272A71D51F7FE555C03185AE244FB01EAF998F_il2cpp_TypeInfo_var, &___errorCode1);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_errorstate_raise_error_t::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR void unitytls_errorstate_raise_error_t_EndInvoke_m713725CCC70FA48D9A9BFE1770EB0406853DF1E7 (unitytls_errorstate_raise_error_t_tC441A37D4A6F1BAC1AFCA0108D4F7570EFF9E0D1 * __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
extern "C" void DelegatePInvokeWrapper_unitytls_key_free_t_tCC7AD95D3B758BB99785645E65EDCD65A1D243AB (unitytls_key_free_t_tCC7AD95D3B758BB99785645E65EDCD65A1D243AB * __this, unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 * ___key0, const RuntimeMethod* method)
{
typedef void (CDECL *PInvokeFunc)(unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 *);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method));
// Native function invocation
il2cppPInvokeFunc(___key0);
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_key_free_t::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void unitytls_key_free_t__ctor_m6FB9CB25BA5BE0723AE199CE1F502A955DD356E3 (unitytls_key_free_t_tCC7AD95D3B758BB99785645E65EDCD65A1D243AB * __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 Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_key_free_t::Invoke(Mono.Unity.UnityTls/unitytls_key*)
extern "C" IL2CPP_METHOD_ATTR void unitytls_key_free_t_Invoke_m80E23E79440054744237B5BAA88AAAAB0D4E2F4B (unitytls_key_free_t_tCC7AD95D3B758BB99785645E65EDCD65A1D243AB * __this, unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 * ___key0, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
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) (unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___key0, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___key0, 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 (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) (unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___key0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 * >::Invoke(targetMethod, targetThis, ___key0);
else
GenericVirtActionInvoker1< unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 * >::Invoke(targetMethod, targetThis, ___key0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___key0);
else
VirtActionInvoker1< unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___key0);
}
}
}
else
{
typedef void (*FunctionPointerType) (void*, unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___key0, targetMethod);
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
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) (unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___key0, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___key0, 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 (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) (unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___key0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 * >::Invoke(targetMethod, targetThis, ___key0);
else
GenericVirtActionInvoker1< unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 * >::Invoke(targetMethod, targetThis, ___key0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___key0);
else
VirtActionInvoker1< unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___key0);
}
}
}
else
{
typedef void (*FunctionPointerType) (void*, unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___key0, targetMethod);
}
}
}
}
// System.IAsyncResult Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_key_free_t::BeginInvoke(Mono.Unity.UnityTls/unitytls_key*,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* unitytls_key_free_t_BeginInvoke_m9187223C9B5085D282144EC1175FA24D76AEBEE3 (unitytls_key_free_t_tCC7AD95D3B758BB99785645E65EDCD65A1D243AB * __this, unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 * ___key0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
void *__d_args[2] = {0};
__d_args[0] = ___key0;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_key_free_t::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR void unitytls_key_free_t_EndInvoke_m152FC113C7C311F262DC6B29F0E44ED27D4A4FBB (unitytls_key_free_t_tCC7AD95D3B758BB99785645E65EDCD65A1D243AB * __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
extern "C" unitytls_key_ref_tE908606656A7C49CA1EB734722E4C3DED7CE6E5B DelegatePInvokeWrapper_unitytls_key_get_ref_t_t2F4EF4CD2F6AFC4F2D166953E834C6F0A13382A7 (unitytls_key_get_ref_t_t2F4EF4CD2F6AFC4F2D166953E834C6F0A13382A7 * __this, unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 * ___key0, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState1, const RuntimeMethod* method)
{
typedef unitytls_key_ref_tE908606656A7C49CA1EB734722E4C3DED7CE6E5B (CDECL *PInvokeFunc)(unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method));
// Native function invocation
unitytls_key_ref_tE908606656A7C49CA1EB734722E4C3DED7CE6E5B returnValue = il2cppPInvokeFunc(___key0, ___errorState1);
return returnValue;
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_key_get_ref_t::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void unitytls_key_get_ref_t__ctor_m8B6688D0222A54335156F76C42D335A999C620ED (unitytls_key_get_ref_t_t2F4EF4CD2F6AFC4F2D166953E834C6F0A13382A7 * __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);
}
// Mono.Unity.UnityTls/unitytls_key_ref Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_key_get_ref_t::Invoke(Mono.Unity.UnityTls/unitytls_key*,Mono.Unity.UnityTls/unitytls_errorstate*)
extern "C" IL2CPP_METHOD_ATTR unitytls_key_ref_tE908606656A7C49CA1EB734722E4C3DED7CE6E5B unitytls_key_get_ref_t_Invoke_mA8C5F2D239F4B74885F37C9671012F1136BF0BE2 (unitytls_key_get_ref_t_t2F4EF4CD2F6AFC4F2D166953E834C6F0A13382A7 * __this, unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 * ___key0, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState1, const RuntimeMethod* method)
{
unitytls_key_ref_tE908606656A7C49CA1EB734722E4C3DED7CE6E5B result;
memset(&result, 0, sizeof(result));
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
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 unitytls_key_ref_tE908606656A7C49CA1EB734722E4C3DED7CE6E5B (*FunctionPointerType) (unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___key0, ___errorState1, targetMethod);
}
else
{
// closed
typedef unitytls_key_ref_tE908606656A7C49CA1EB734722E4C3DED7CE6E5B (*FunctionPointerType) (void*, unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___key0, ___errorState1, 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 (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 unitytls_key_ref_tE908606656A7C49CA1EB734722E4C3DED7CE6E5B (*FunctionPointerType) (unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___key0, ___errorState1, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker2< unitytls_key_ref_tE908606656A7C49CA1EB734722E4C3DED7CE6E5B , unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___key0, ___errorState1);
else
result = GenericVirtFuncInvoker2< unitytls_key_ref_tE908606656A7C49CA1EB734722E4C3DED7CE6E5B , unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___key0, ___errorState1);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker2< unitytls_key_ref_tE908606656A7C49CA1EB734722E4C3DED7CE6E5B , unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___key0, ___errorState1);
else
result = VirtFuncInvoker2< unitytls_key_ref_tE908606656A7C49CA1EB734722E4C3DED7CE6E5B , unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___key0, ___errorState1);
}
}
}
else
{
typedef unitytls_key_ref_tE908606656A7C49CA1EB734722E4C3DED7CE6E5B (*FunctionPointerType) (void*, unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___key0, ___errorState1, targetMethod);
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
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 unitytls_key_ref_tE908606656A7C49CA1EB734722E4C3DED7CE6E5B (*FunctionPointerType) (unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___key0, ___errorState1, targetMethod);
}
else
{
// closed
typedef unitytls_key_ref_tE908606656A7C49CA1EB734722E4C3DED7CE6E5B (*FunctionPointerType) (void*, unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___key0, ___errorState1, 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 (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 unitytls_key_ref_tE908606656A7C49CA1EB734722E4C3DED7CE6E5B (*FunctionPointerType) (unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___key0, ___errorState1, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker2< unitytls_key_ref_tE908606656A7C49CA1EB734722E4C3DED7CE6E5B , unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___key0, ___errorState1);
else
result = GenericVirtFuncInvoker2< unitytls_key_ref_tE908606656A7C49CA1EB734722E4C3DED7CE6E5B , unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___key0, ___errorState1);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker2< unitytls_key_ref_tE908606656A7C49CA1EB734722E4C3DED7CE6E5B , unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___key0, ___errorState1);
else
result = VirtFuncInvoker2< unitytls_key_ref_tE908606656A7C49CA1EB734722E4C3DED7CE6E5B , unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___key0, ___errorState1);
}
}
}
else
{
typedef unitytls_key_ref_tE908606656A7C49CA1EB734722E4C3DED7CE6E5B (*FunctionPointerType) (void*, unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___key0, ___errorState1, targetMethod);
}
}
}
return result;
}
// System.IAsyncResult Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_key_get_ref_t::BeginInvoke(Mono.Unity.UnityTls/unitytls_key*,Mono.Unity.UnityTls/unitytls_errorstate*,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* unitytls_key_get_ref_t_BeginInvoke_m93BE7A42624E9987FC901D883E06683C90046D89 (unitytls_key_get_ref_t_t2F4EF4CD2F6AFC4F2D166953E834C6F0A13382A7 * __this, unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 * ___key0, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState1, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method)
{
void *__d_args[3] = {0};
__d_args[0] = ___key0;
__d_args[1] = ___errorState1;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);
}
// Mono.Unity.UnityTls/unitytls_key_ref Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_key_get_ref_t::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR unitytls_key_ref_tE908606656A7C49CA1EB734722E4C3DED7CE6E5B unitytls_key_get_ref_t_EndInvoke_m3158742DC98834DFC0519765F4E88A8C581B54F2 (unitytls_key_get_ref_t_t2F4EF4CD2F6AFC4F2D166953E834C6F0A13382A7 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(unitytls_key_ref_tE908606656A7C49CA1EB734722E4C3DED7CE6E5B *)UnBox ((RuntimeObject*)__result);
}
#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
extern "C" unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 * DelegatePInvokeWrapper_unitytls_key_parse_der_t_t2ABD1C146C8B9405F6E5A78CD59A779EA607741B (unitytls_key_parse_der_t_t2ABD1C146C8B9405F6E5A78CD59A779EA607741B * __this, uint8_t* ___buffer0, intptr_t ___bufferLen1, uint8_t* ___password2, intptr_t ___passwordLen3, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState4, const RuntimeMethod* method)
{
typedef unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 * (CDECL *PInvokeFunc)(uint8_t*, intptr_t, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method));
// Native function invocation
unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 * returnValue = il2cppPInvokeFunc(___buffer0, ___bufferLen1, ___password2, ___passwordLen3, ___errorState4);
return returnValue;
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_key_parse_der_t::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void unitytls_key_parse_der_t__ctor_m702A41D29AFA524EFDF148673041B507C9538C4F (unitytls_key_parse_der_t_t2ABD1C146C8B9405F6E5A78CD59A779EA607741B * __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);
}
// Mono.Unity.UnityTls/unitytls_key* Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_key_parse_der_t::Invoke(System.Byte*,System.IntPtr,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*)
extern "C" IL2CPP_METHOD_ATTR unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 * unitytls_key_parse_der_t_Invoke_m8CF4A1CFD7B385B3091215030E7EC2CB5B6823ED (unitytls_key_parse_der_t_t2ABD1C146C8B9405F6E5A78CD59A779EA607741B * __this, uint8_t* ___buffer0, intptr_t ___bufferLen1, uint8_t* ___password2, intptr_t ___passwordLen3, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState4, const RuntimeMethod* method)
{
unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 * result = NULL;
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
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 == 5)
{
// open
typedef unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 * (*FunctionPointerType) (uint8_t*, intptr_t, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___buffer0, ___bufferLen1, ___password2, ___passwordLen3, ___errorState4, targetMethod);
}
else
{
// closed
typedef unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 * (*FunctionPointerType) (void*, uint8_t*, intptr_t, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___buffer0, ___bufferLen1, ___password2, ___passwordLen3, ___errorState4, 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 (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 unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 * (*FunctionPointerType) (uint8_t*, intptr_t, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___buffer0, ___bufferLen1, ___password2, ___passwordLen3, ___errorState4, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker5< unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 *, uint8_t*, intptr_t, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___buffer0, ___bufferLen1, ___password2, ___passwordLen3, ___errorState4);
else
result = GenericVirtFuncInvoker5< unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 *, uint8_t*, intptr_t, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___buffer0, ___bufferLen1, ___password2, ___passwordLen3, ___errorState4);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker5< unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 *, uint8_t*, intptr_t, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___buffer0, ___bufferLen1, ___password2, ___passwordLen3, ___errorState4);
else
result = VirtFuncInvoker5< unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 *, uint8_t*, intptr_t, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___buffer0, ___bufferLen1, ___password2, ___passwordLen3, ___errorState4);
}
}
}
else
{
typedef unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 * (*FunctionPointerType) (void*, uint8_t*, intptr_t, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___buffer0, ___bufferLen1, ___password2, ___passwordLen3, ___errorState4, targetMethod);
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
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 == 5)
{
// open
typedef unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 * (*FunctionPointerType) (uint8_t*, intptr_t, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___buffer0, ___bufferLen1, ___password2, ___passwordLen3, ___errorState4, targetMethod);
}
else
{
// closed
typedef unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 * (*FunctionPointerType) (void*, uint8_t*, intptr_t, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___buffer0, ___bufferLen1, ___password2, ___passwordLen3, ___errorState4, 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 (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 unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 * (*FunctionPointerType) (uint8_t*, intptr_t, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___buffer0, ___bufferLen1, ___password2, ___passwordLen3, ___errorState4, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker5< unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 *, uint8_t*, intptr_t, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___buffer0, ___bufferLen1, ___password2, ___passwordLen3, ___errorState4);
else
result = GenericVirtFuncInvoker5< unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 *, uint8_t*, intptr_t, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___buffer0, ___bufferLen1, ___password2, ___passwordLen3, ___errorState4);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker5< unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 *, uint8_t*, intptr_t, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___buffer0, ___bufferLen1, ___password2, ___passwordLen3, ___errorState4);
else
result = VirtFuncInvoker5< unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 *, uint8_t*, intptr_t, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___buffer0, ___bufferLen1, ___password2, ___passwordLen3, ___errorState4);
}
}
}
else
{
typedef unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 * (*FunctionPointerType) (void*, uint8_t*, intptr_t, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___buffer0, ___bufferLen1, ___password2, ___passwordLen3, ___errorState4, targetMethod);
}
}
}
return result;
}
// System.IAsyncResult Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_key_parse_der_t::BeginInvoke(System.Byte*,System.IntPtr,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* unitytls_key_parse_der_t_BeginInvoke_mDD3872296FB3905F2F22D5859F4521DF44C9F19B (unitytls_key_parse_der_t_t2ABD1C146C8B9405F6E5A78CD59A779EA607741B * __this, uint8_t* ___buffer0, intptr_t ___bufferLen1, uint8_t* ___password2, intptr_t ___passwordLen3, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState4, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback5, RuntimeObject * ___object6, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (unitytls_key_parse_der_t_BeginInvoke_mDD3872296FB3905F2F22D5859F4521DF44C9F19B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[6] = {0};
__d_args[0] = ___buffer0;
__d_args[1] = Box(IntPtr_t_il2cpp_TypeInfo_var, &___bufferLen1);
__d_args[2] = ___password2;
__d_args[3] = Box(IntPtr_t_il2cpp_TypeInfo_var, &___passwordLen3);
__d_args[4] = ___errorState4;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback5, (RuntimeObject*)___object6);
}
// Mono.Unity.UnityTls/unitytls_key* Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_key_parse_der_t::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 * unitytls_key_parse_der_t_EndInvoke_m6ED100AAACFF6462B42B0D9804BBA5E34487808A (unitytls_key_parse_der_t_t2ABD1C146C8B9405F6E5A78CD59A779EA607741B * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return (unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 *)__result;
}
#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
extern "C" unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 * DelegatePInvokeWrapper_unitytls_key_parse_pem_t_tB4BCEBA4194442C8C85FA19E80B808D0EDA462AB (unitytls_key_parse_pem_t_tB4BCEBA4194442C8C85FA19E80B808D0EDA462AB * __this, uint8_t* ___buffer0, intptr_t ___bufferLen1, uint8_t* ___password2, intptr_t ___passwordLen3, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState4, const RuntimeMethod* method)
{
typedef unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 * (CDECL *PInvokeFunc)(uint8_t*, intptr_t, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method));
// Native function invocation
unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 * returnValue = il2cppPInvokeFunc(___buffer0, ___bufferLen1, ___password2, ___passwordLen3, ___errorState4);
return returnValue;
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_key_parse_pem_t::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void unitytls_key_parse_pem_t__ctor_mE18922EC14AD6EDA780D819DB1469A99242F5C82 (unitytls_key_parse_pem_t_tB4BCEBA4194442C8C85FA19E80B808D0EDA462AB * __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);
}
// Mono.Unity.UnityTls/unitytls_key* Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_key_parse_pem_t::Invoke(System.Byte*,System.IntPtr,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*)
extern "C" IL2CPP_METHOD_ATTR unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 * unitytls_key_parse_pem_t_Invoke_m38F6D75BFC2A80778454B43E5C76B4704EFF75F1 (unitytls_key_parse_pem_t_tB4BCEBA4194442C8C85FA19E80B808D0EDA462AB * __this, uint8_t* ___buffer0, intptr_t ___bufferLen1, uint8_t* ___password2, intptr_t ___passwordLen3, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState4, const RuntimeMethod* method)
{
unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 * result = NULL;
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
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 == 5)
{
// open
typedef unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 * (*FunctionPointerType) (uint8_t*, intptr_t, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___buffer0, ___bufferLen1, ___password2, ___passwordLen3, ___errorState4, targetMethod);
}
else
{
// closed
typedef unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 * (*FunctionPointerType) (void*, uint8_t*, intptr_t, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___buffer0, ___bufferLen1, ___password2, ___passwordLen3, ___errorState4, 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 (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 unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 * (*FunctionPointerType) (uint8_t*, intptr_t, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___buffer0, ___bufferLen1, ___password2, ___passwordLen3, ___errorState4, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker5< unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 *, uint8_t*, intptr_t, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___buffer0, ___bufferLen1, ___password2, ___passwordLen3, ___errorState4);
else
result = GenericVirtFuncInvoker5< unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 *, uint8_t*, intptr_t, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___buffer0, ___bufferLen1, ___password2, ___passwordLen3, ___errorState4);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker5< unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 *, uint8_t*, intptr_t, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___buffer0, ___bufferLen1, ___password2, ___passwordLen3, ___errorState4);
else
result = VirtFuncInvoker5< unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 *, uint8_t*, intptr_t, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___buffer0, ___bufferLen1, ___password2, ___passwordLen3, ___errorState4);
}
}
}
else
{
typedef unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 * (*FunctionPointerType) (void*, uint8_t*, intptr_t, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___buffer0, ___bufferLen1, ___password2, ___passwordLen3, ___errorState4, targetMethod);
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
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 == 5)
{
// open
typedef unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 * (*FunctionPointerType) (uint8_t*, intptr_t, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___buffer0, ___bufferLen1, ___password2, ___passwordLen3, ___errorState4, targetMethod);
}
else
{
// closed
typedef unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 * (*FunctionPointerType) (void*, uint8_t*, intptr_t, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___buffer0, ___bufferLen1, ___password2, ___passwordLen3, ___errorState4, 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 (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 unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 * (*FunctionPointerType) (uint8_t*, intptr_t, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___buffer0, ___bufferLen1, ___password2, ___passwordLen3, ___errorState4, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker5< unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 *, uint8_t*, intptr_t, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___buffer0, ___bufferLen1, ___password2, ___passwordLen3, ___errorState4);
else
result = GenericVirtFuncInvoker5< unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 *, uint8_t*, intptr_t, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___buffer0, ___bufferLen1, ___password2, ___passwordLen3, ___errorState4);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker5< unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 *, uint8_t*, intptr_t, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___buffer0, ___bufferLen1, ___password2, ___passwordLen3, ___errorState4);
else
result = VirtFuncInvoker5< unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 *, uint8_t*, intptr_t, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___buffer0, ___bufferLen1, ___password2, ___passwordLen3, ___errorState4);
}
}
}
else
{
typedef unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 * (*FunctionPointerType) (void*, uint8_t*, intptr_t, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___buffer0, ___bufferLen1, ___password2, ___passwordLen3, ___errorState4, targetMethod);
}
}
}
return result;
}
// System.IAsyncResult Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_key_parse_pem_t::BeginInvoke(System.Byte*,System.IntPtr,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* unitytls_key_parse_pem_t_BeginInvoke_mE7922F635446EF1A040AEE37DD9CEA8694A7F771 (unitytls_key_parse_pem_t_tB4BCEBA4194442C8C85FA19E80B808D0EDA462AB * __this, uint8_t* ___buffer0, intptr_t ___bufferLen1, uint8_t* ___password2, intptr_t ___passwordLen3, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState4, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback5, RuntimeObject * ___object6, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (unitytls_key_parse_pem_t_BeginInvoke_mE7922F635446EF1A040AEE37DD9CEA8694A7F771_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[6] = {0};
__d_args[0] = ___buffer0;
__d_args[1] = Box(IntPtr_t_il2cpp_TypeInfo_var, &___bufferLen1);
__d_args[2] = ___password2;
__d_args[3] = Box(IntPtr_t_il2cpp_TypeInfo_var, &___passwordLen3);
__d_args[4] = ___errorState4;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback5, (RuntimeObject*)___object6);
}
// Mono.Unity.UnityTls/unitytls_key* Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_key_parse_pem_t::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 * unitytls_key_parse_pem_t_EndInvoke_mA547C0BB7666F5F1953F14BC46AAE90537850C77 (unitytls_key_parse_pem_t_tB4BCEBA4194442C8C85FA19E80B808D0EDA462AB * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return (unitytls_key_tABB3A1A923B658DC99FFDB3ED633FBBA64EF1BB9 *)__result;
}
#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
extern "C" void DelegatePInvokeWrapper_unitytls_random_generate_bytes_t_t494B8599A6D4247BB0C8AB7341DDC73BE42623F7 (unitytls_random_generate_bytes_t_t494B8599A6D4247BB0C8AB7341DDC73BE42623F7 * __this, uint8_t* ___buffer0, intptr_t ___bufferLen1, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState2, const RuntimeMethod* method)
{
typedef void (CDECL *PInvokeFunc)(uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method));
// Native function invocation
il2cppPInvokeFunc(___buffer0, ___bufferLen1, ___errorState2);
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_random_generate_bytes_t::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void unitytls_random_generate_bytes_t__ctor_m651B0D872AA98DCBDF99B8CBB48616F9877D28C5 (unitytls_random_generate_bytes_t_t494B8599A6D4247BB0C8AB7341DDC73BE42623F7 * __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 Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_random_generate_bytes_t::Invoke(System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*)
extern "C" IL2CPP_METHOD_ATTR void unitytls_random_generate_bytes_t_Invoke_mDF4C16458D2779B58E4C66ACB9A197DD3C61085F (unitytls_random_generate_bytes_t_t494B8599A6D4247BB0C8AB7341DDC73BE42623F7 * __this, uint8_t* ___buffer0, intptr_t ___bufferLen1, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState2, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
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) (uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___buffer0, ___bufferLen1, ___errorState2, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___buffer0, ___bufferLen1, ___errorState2, 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 (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*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___buffer0, ___bufferLen1, ___errorState2, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker3< uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___buffer0, ___bufferLen1, ___errorState2);
else
GenericVirtActionInvoker3< uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___buffer0, ___bufferLen1, ___errorState2);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker3< uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___buffer0, ___bufferLen1, ___errorState2);
else
VirtActionInvoker3< uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___buffer0, ___bufferLen1, ___errorState2);
}
}
}
else
{
typedef void (*FunctionPointerType) (void*, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___buffer0, ___bufferLen1, ___errorState2, targetMethod);
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
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) (uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___buffer0, ___bufferLen1, ___errorState2, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___buffer0, ___bufferLen1, ___errorState2, 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 (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*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___buffer0, ___bufferLen1, ___errorState2, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker3< uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___buffer0, ___bufferLen1, ___errorState2);
else
GenericVirtActionInvoker3< uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___buffer0, ___bufferLen1, ___errorState2);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker3< uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___buffer0, ___bufferLen1, ___errorState2);
else
VirtActionInvoker3< uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___buffer0, ___bufferLen1, ___errorState2);
}
}
}
else
{
typedef void (*FunctionPointerType) (void*, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___buffer0, ___bufferLen1, ___errorState2, targetMethod);
}
}
}
}
// System.IAsyncResult Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_random_generate_bytes_t::BeginInvoke(System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* unitytls_random_generate_bytes_t_BeginInvoke_m15487ED3C5CACFB6E0D760F7307847F531F1C3A4 (unitytls_random_generate_bytes_t_t494B8599A6D4247BB0C8AB7341DDC73BE42623F7 * __this, uint8_t* ___buffer0, intptr_t ___bufferLen1, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState2, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback3, RuntimeObject * ___object4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (unitytls_random_generate_bytes_t_BeginInvoke_m15487ED3C5CACFB6E0D760F7307847F531F1C3A4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[4] = {0};
__d_args[0] = ___buffer0;
__d_args[1] = Box(IntPtr_t_il2cpp_TypeInfo_var, &___bufferLen1);
__d_args[2] = ___errorState2;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback3, (RuntimeObject*)___object4);
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_random_generate_bytes_t::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR void unitytls_random_generate_bytes_t_EndInvoke_m3C6F54483F3AF797648AC5E311AB1976FFAFF61B (unitytls_random_generate_bytes_t_t494B8599A6D4247BB0C8AB7341DDC73BE42623F7 * __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
extern "C" unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * DelegatePInvokeWrapper_unitytls_tlsctx_create_client_t_tD9DFBDB5559983F0E11A67FA92E0F7182114C8F2 (unitytls_tlsctx_create_client_t_tD9DFBDB5559983F0E11A67FA92E0F7182114C8F2 * __this, unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47 ___supportedProtocols0, unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2 ___callbacks1, uint8_t* ___cn2, intptr_t ___cnLen3, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState4, const RuntimeMethod* method)
{
typedef unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * (CDECL *PInvokeFunc)(unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47 , unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2_marshaled_pinvoke, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method));
// Marshaling of parameter '___callbacks1' to native representation
unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2_marshaled_pinvoke ____callbacks1_marshaled = {};
unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2_marshal_pinvoke(___callbacks1, ____callbacks1_marshaled);
// Native function invocation
unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * returnValue = il2cppPInvokeFunc(___supportedProtocols0, ____callbacks1_marshaled, ___cn2, ___cnLen3, ___errorState4);
// Marshaling cleanup of parameter '___callbacks1' native representation
unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2_marshal_pinvoke_cleanup(____callbacks1_marshaled);
return returnValue;
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_create_client_t::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void unitytls_tlsctx_create_client_t__ctor_m1E56411D4E929CCB07D6050690CA2284FCB8647D (unitytls_tlsctx_create_client_t_tD9DFBDB5559983F0E11A67FA92E0F7182114C8F2 * __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);
}
// Mono.Unity.UnityTls/unitytls_tlsctx* Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_create_client_t::Invoke(Mono.Unity.UnityTls/unitytls_tlsctx_protocolrange,Mono.Unity.UnityTls/unitytls_tlsctx_callbacks,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*)
extern "C" IL2CPP_METHOD_ATTR unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * unitytls_tlsctx_create_client_t_Invoke_m1DF5F05CEC35949278BEA867FA923CA399855D20 (unitytls_tlsctx_create_client_t_tD9DFBDB5559983F0E11A67FA92E0F7182114C8F2 * __this, unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47 ___supportedProtocols0, unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2 ___callbacks1, uint8_t* ___cn2, intptr_t ___cnLen3, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState4, const RuntimeMethod* method)
{
unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * result = NULL;
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
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 == 5)
{
// open
typedef unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * (*FunctionPointerType) (unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47 , unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2 , uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___supportedProtocols0, ___callbacks1, ___cn2, ___cnLen3, ___errorState4, targetMethod);
}
else
{
// closed
typedef unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * (*FunctionPointerType) (void*, unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47 , unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2 , uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___supportedProtocols0, ___callbacks1, ___cn2, ___cnLen3, ___errorState4, 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 (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 unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * (*FunctionPointerType) (unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47 , unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2 , uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___supportedProtocols0, ___callbacks1, ___cn2, ___cnLen3, ___errorState4, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker5< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47 , unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2 , uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___supportedProtocols0, ___callbacks1, ___cn2, ___cnLen3, ___errorState4);
else
result = GenericVirtFuncInvoker5< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47 , unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2 , uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___supportedProtocols0, ___callbacks1, ___cn2, ___cnLen3, ___errorState4);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker5< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47 , unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2 , uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___supportedProtocols0, ___callbacks1, ___cn2, ___cnLen3, ___errorState4);
else
result = VirtFuncInvoker5< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47 , unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2 , uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___supportedProtocols0, ___callbacks1, ___cn2, ___cnLen3, ___errorState4);
}
}
}
else
{
typedef unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * (*FunctionPointerType) (void*, unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47 , unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2 , uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___supportedProtocols0, ___callbacks1, ___cn2, ___cnLen3, ___errorState4, targetMethod);
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
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 == 5)
{
// open
typedef unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * (*FunctionPointerType) (unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47 , unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2 , uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___supportedProtocols0, ___callbacks1, ___cn2, ___cnLen3, ___errorState4, targetMethod);
}
else
{
// closed
typedef unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * (*FunctionPointerType) (void*, unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47 , unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2 , uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___supportedProtocols0, ___callbacks1, ___cn2, ___cnLen3, ___errorState4, 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 (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 unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * (*FunctionPointerType) (unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47 , unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2 , uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___supportedProtocols0, ___callbacks1, ___cn2, ___cnLen3, ___errorState4, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker5< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47 , unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2 , uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___supportedProtocols0, ___callbacks1, ___cn2, ___cnLen3, ___errorState4);
else
result = GenericVirtFuncInvoker5< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47 , unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2 , uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___supportedProtocols0, ___callbacks1, ___cn2, ___cnLen3, ___errorState4);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker5< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47 , unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2 , uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___supportedProtocols0, ___callbacks1, ___cn2, ___cnLen3, ___errorState4);
else
result = VirtFuncInvoker5< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47 , unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2 , uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___supportedProtocols0, ___callbacks1, ___cn2, ___cnLen3, ___errorState4);
}
}
}
else
{
typedef unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * (*FunctionPointerType) (void*, unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47 , unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2 , uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___supportedProtocols0, ___callbacks1, ___cn2, ___cnLen3, ___errorState4, targetMethod);
}
}
}
return result;
}
// System.IAsyncResult Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_create_client_t::BeginInvoke(Mono.Unity.UnityTls/unitytls_tlsctx_protocolrange,Mono.Unity.UnityTls/unitytls_tlsctx_callbacks,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* unitytls_tlsctx_create_client_t_BeginInvoke_m7D9286CDD8953A99DC3DAF42531E08EC2921DF9D (unitytls_tlsctx_create_client_t_tD9DFBDB5559983F0E11A67FA92E0F7182114C8F2 * __this, unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47 ___supportedProtocols0, unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2 ___callbacks1, uint8_t* ___cn2, intptr_t ___cnLen3, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState4, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback5, RuntimeObject * ___object6, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (unitytls_tlsctx_create_client_t_BeginInvoke_m7D9286CDD8953A99DC3DAF42531E08EC2921DF9D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[6] = {0};
__d_args[0] = Box(unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47_il2cpp_TypeInfo_var, &___supportedProtocols0);
__d_args[1] = Box(unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2_il2cpp_TypeInfo_var, &___callbacks1);
__d_args[2] = ___cn2;
__d_args[3] = Box(IntPtr_t_il2cpp_TypeInfo_var, &___cnLen3);
__d_args[4] = ___errorState4;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback5, (RuntimeObject*)___object6);
}
// Mono.Unity.UnityTls/unitytls_tlsctx* Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_create_client_t::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * unitytls_tlsctx_create_client_t_EndInvoke_mD4C6A3C3AEB5444A52D5096080347CC4119CE729 (unitytls_tlsctx_create_client_t_tD9DFBDB5559983F0E11A67FA92E0F7182114C8F2 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return (unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *)__result;
}
#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
extern "C" unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * DelegatePInvokeWrapper_unitytls_tlsctx_create_server_t_t6E7812D40DDD91958E3CFBB92B5F5748D477E19D (unitytls_tlsctx_create_server_t_t6E7812D40DDD91958E3CFBB92B5F5748D477E19D * __this, unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47 ___supportedProtocols0, unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2 ___callbacks1, uint64_t ___certChain2, uint64_t ___leafCertificateKey3, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState4, const RuntimeMethod* method)
{
typedef unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * (CDECL *PInvokeFunc)(unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47 , unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2_marshaled_pinvoke, uint64_t, uint64_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method));
// Marshaling of parameter '___callbacks1' to native representation
unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2_marshaled_pinvoke ____callbacks1_marshaled = {};
unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2_marshal_pinvoke(___callbacks1, ____callbacks1_marshaled);
// Native function invocation
unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * returnValue = il2cppPInvokeFunc(___supportedProtocols0, ____callbacks1_marshaled, ___certChain2, ___leafCertificateKey3, ___errorState4);
// Marshaling cleanup of parameter '___callbacks1' native representation
unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2_marshal_pinvoke_cleanup(____callbacks1_marshaled);
return returnValue;
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_create_server_t::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void unitytls_tlsctx_create_server_t__ctor_m5CDD5F7909C922C45FDFFD8E94DDFFB1279C7368 (unitytls_tlsctx_create_server_t_t6E7812D40DDD91958E3CFBB92B5F5748D477E19D * __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);
}
// Mono.Unity.UnityTls/unitytls_tlsctx* Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_create_server_t::Invoke(Mono.Unity.UnityTls/unitytls_tlsctx_protocolrange,Mono.Unity.UnityTls/unitytls_tlsctx_callbacks,System.UInt64,System.UInt64,Mono.Unity.UnityTls/unitytls_errorstate*)
extern "C" IL2CPP_METHOD_ATTR unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * unitytls_tlsctx_create_server_t_Invoke_m6C7288544450304884E239BA3ACED930AAC040DF (unitytls_tlsctx_create_server_t_t6E7812D40DDD91958E3CFBB92B5F5748D477E19D * __this, unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47 ___supportedProtocols0, unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2 ___callbacks1, uint64_t ___certChain2, uint64_t ___leafCertificateKey3, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState4, const RuntimeMethod* method)
{
unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * result = NULL;
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
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 == 5)
{
// open
typedef unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * (*FunctionPointerType) (unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47 , unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2 , uint64_t, uint64_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___supportedProtocols0, ___callbacks1, ___certChain2, ___leafCertificateKey3, ___errorState4, targetMethod);
}
else
{
// closed
typedef unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * (*FunctionPointerType) (void*, unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47 , unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2 , uint64_t, uint64_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___supportedProtocols0, ___callbacks1, ___certChain2, ___leafCertificateKey3, ___errorState4, 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 (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 unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * (*FunctionPointerType) (unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47 , unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2 , uint64_t, uint64_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___supportedProtocols0, ___callbacks1, ___certChain2, ___leafCertificateKey3, ___errorState4, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker5< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47 , unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2 , uint64_t, uint64_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___supportedProtocols0, ___callbacks1, ___certChain2, ___leafCertificateKey3, ___errorState4);
else
result = GenericVirtFuncInvoker5< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47 , unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2 , uint64_t, uint64_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___supportedProtocols0, ___callbacks1, ___certChain2, ___leafCertificateKey3, ___errorState4);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker5< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47 , unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2 , uint64_t, uint64_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___supportedProtocols0, ___callbacks1, ___certChain2, ___leafCertificateKey3, ___errorState4);
else
result = VirtFuncInvoker5< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47 , unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2 , uint64_t, uint64_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___supportedProtocols0, ___callbacks1, ___certChain2, ___leafCertificateKey3, ___errorState4);
}
}
}
else
{
typedef unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * (*FunctionPointerType) (void*, unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47 , unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2 , uint64_t, uint64_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___supportedProtocols0, ___callbacks1, ___certChain2, ___leafCertificateKey3, ___errorState4, targetMethod);
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
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 == 5)
{
// open
typedef unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * (*FunctionPointerType) (unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47 , unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2 , uint64_t, uint64_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___supportedProtocols0, ___callbacks1, ___certChain2, ___leafCertificateKey3, ___errorState4, targetMethod);
}
else
{
// closed
typedef unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * (*FunctionPointerType) (void*, unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47 , unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2 , uint64_t, uint64_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___supportedProtocols0, ___callbacks1, ___certChain2, ___leafCertificateKey3, ___errorState4, 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 (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 unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * (*FunctionPointerType) (unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47 , unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2 , uint64_t, uint64_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___supportedProtocols0, ___callbacks1, ___certChain2, ___leafCertificateKey3, ___errorState4, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker5< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47 , unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2 , uint64_t, uint64_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___supportedProtocols0, ___callbacks1, ___certChain2, ___leafCertificateKey3, ___errorState4);
else
result = GenericVirtFuncInvoker5< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47 , unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2 , uint64_t, uint64_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___supportedProtocols0, ___callbacks1, ___certChain2, ___leafCertificateKey3, ___errorState4);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker5< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47 , unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2 , uint64_t, uint64_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___supportedProtocols0, ___callbacks1, ___certChain2, ___leafCertificateKey3, ___errorState4);
else
result = VirtFuncInvoker5< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47 , unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2 , uint64_t, uint64_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___supportedProtocols0, ___callbacks1, ___certChain2, ___leafCertificateKey3, ___errorState4);
}
}
}
else
{
typedef unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * (*FunctionPointerType) (void*, unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47 , unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2 , uint64_t, uint64_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___supportedProtocols0, ___callbacks1, ___certChain2, ___leafCertificateKey3, ___errorState4, targetMethod);
}
}
}
return result;
}
// System.IAsyncResult Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_create_server_t::BeginInvoke(Mono.Unity.UnityTls/unitytls_tlsctx_protocolrange,Mono.Unity.UnityTls/unitytls_tlsctx_callbacks,System.UInt64,System.UInt64,Mono.Unity.UnityTls/unitytls_errorstate*,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* unitytls_tlsctx_create_server_t_BeginInvoke_m7E60A8576D5C6BE7D9A61EBB5800D7FD402BF60D (unitytls_tlsctx_create_server_t_t6E7812D40DDD91958E3CFBB92B5F5748D477E19D * __this, unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47 ___supportedProtocols0, unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2 ___callbacks1, uint64_t ___certChain2, uint64_t ___leafCertificateKey3, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState4, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback5, RuntimeObject * ___object6, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (unitytls_tlsctx_create_server_t_BeginInvoke_m7E60A8576D5C6BE7D9A61EBB5800D7FD402BF60D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[6] = {0};
__d_args[0] = Box(unitytls_tlsctx_protocolrange_t36243D72F83DAD47C95928314F58026DE8D38F47_il2cpp_TypeInfo_var, &___supportedProtocols0);
__d_args[1] = Box(unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2_il2cpp_TypeInfo_var, &___callbacks1);
__d_args[2] = Box(UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_il2cpp_TypeInfo_var, &___certChain2);
__d_args[3] = Box(UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_il2cpp_TypeInfo_var, &___leafCertificateKey3);
__d_args[4] = ___errorState4;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback5, (RuntimeObject*)___object6);
}
// Mono.Unity.UnityTls/unitytls_tlsctx* Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_create_server_t::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * unitytls_tlsctx_create_server_t_EndInvoke_mFC81040ECF1EF8D630C93F04FC8086A0F0288F6F (unitytls_tlsctx_create_server_t_t6E7812D40DDD91958E3CFBB92B5F5748D477E19D * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return (unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *)__result;
}
#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
extern "C" void DelegatePInvokeWrapper_unitytls_tlsctx_free_t_tB27A3B6F9D1B784ABE082849EAB6B81F51FAC8E2 (unitytls_tlsctx_free_t_tB27A3B6F9D1B784ABE082849EAB6B81F51FAC8E2 * __this, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * ___ctx0, const RuntimeMethod* method)
{
typedef void (CDECL *PInvokeFunc)(unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method));
// Native function invocation
il2cppPInvokeFunc(___ctx0);
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_free_t::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void unitytls_tlsctx_free_t__ctor_m0445C80DC50302FB1F416ED7AA8B1E2DD66529EA (unitytls_tlsctx_free_t_tB27A3B6F9D1B784ABE082849EAB6B81F51FAC8E2 * __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 Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_free_t::Invoke(Mono.Unity.UnityTls/unitytls_tlsctx*)
extern "C" IL2CPP_METHOD_ATTR void unitytls_tlsctx_free_t_Invoke_m34DFBB044037052F67FEA5A579A5AC004E01AEC8 (unitytls_tlsctx_free_t_tB27A3B6F9D1B784ABE082849EAB6B81F51FAC8E2 * __this, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * ___ctx0, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
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) (unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___ctx0, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___ctx0, 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 (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) (unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___ctx0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * >::Invoke(targetMethod, targetThis, ___ctx0);
else
GenericVirtActionInvoker1< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * >::Invoke(targetMethod, targetThis, ___ctx0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___ctx0);
else
VirtActionInvoker1< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___ctx0);
}
}
}
else
{
typedef void (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___ctx0, targetMethod);
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
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) (unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___ctx0, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___ctx0, 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 (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) (unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___ctx0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * >::Invoke(targetMethod, targetThis, ___ctx0);
else
GenericVirtActionInvoker1< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * >::Invoke(targetMethod, targetThis, ___ctx0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___ctx0);
else
VirtActionInvoker1< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___ctx0);
}
}
}
else
{
typedef void (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___ctx0, targetMethod);
}
}
}
}
// System.IAsyncResult Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_free_t::BeginInvoke(Mono.Unity.UnityTls/unitytls_tlsctx*,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* unitytls_tlsctx_free_t_BeginInvoke_m7887C3F9C1F87DCD3807A2797D7525F108CBA926 (unitytls_tlsctx_free_t_tB27A3B6F9D1B784ABE082849EAB6B81F51FAC8E2 * __this, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * ___ctx0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
void *__d_args[2] = {0};
__d_args[0] = ___ctx0;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_free_t::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR void unitytls_tlsctx_free_t_EndInvoke_mED032427E108FD9D858A2B752544CC76CCCF647D (unitytls_tlsctx_free_t_tB27A3B6F9D1B784ABE082849EAB6B81F51FAC8E2 * __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
extern "C" uint32_t DelegatePInvokeWrapper_unitytls_tlsctx_get_ciphersuite_t_t94A91CB42A2EBB2CC598EF3E278770AFD80696A0 (unitytls_tlsctx_get_ciphersuite_t_t94A91CB42A2EBB2CC598EF3E278770AFD80696A0 * __this, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * ___ctx0, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState1, const RuntimeMethod* method)
{
typedef uint32_t (CDECL *PInvokeFunc)(unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method));
// Native function invocation
uint32_t returnValue = il2cppPInvokeFunc(___ctx0, ___errorState1);
return returnValue;
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_get_ciphersuite_t::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void unitytls_tlsctx_get_ciphersuite_t__ctor_mD59D1727FCCD2F1485FC87677C593BAA0D19FD69 (unitytls_tlsctx_get_ciphersuite_t_t94A91CB42A2EBB2CC598EF3E278770AFD80696A0 * __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);
}
// Mono.Unity.UnityTls/unitytls_ciphersuite Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_get_ciphersuite_t::Invoke(Mono.Unity.UnityTls/unitytls_tlsctx*,Mono.Unity.UnityTls/unitytls_errorstate*)
extern "C" IL2CPP_METHOD_ATTR uint32_t unitytls_tlsctx_get_ciphersuite_t_Invoke_m28D027E6306B1F2188E64245FBA01268CC329442 (unitytls_tlsctx_get_ciphersuite_t_t94A91CB42A2EBB2CC598EF3E278770AFD80696A0 * __this, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * ___ctx0, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState1, const RuntimeMethod* method)
{
uint32_t result = 0;
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
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 uint32_t (*FunctionPointerType) (unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___ctx0, ___errorState1, targetMethod);
}
else
{
// closed
typedef uint32_t (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___ctx0, ___errorState1, 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 (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 uint32_t (*FunctionPointerType) (unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___ctx0, ___errorState1, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker2< uint32_t, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___ctx0, ___errorState1);
else
result = GenericVirtFuncInvoker2< uint32_t, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___ctx0, ___errorState1);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker2< uint32_t, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___ctx0, ___errorState1);
else
result = VirtFuncInvoker2< uint32_t, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___ctx0, ___errorState1);
}
}
}
else
{
typedef uint32_t (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___ctx0, ___errorState1, targetMethod);
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
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 uint32_t (*FunctionPointerType) (unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___ctx0, ___errorState1, targetMethod);
}
else
{
// closed
typedef uint32_t (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___ctx0, ___errorState1, 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 (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 uint32_t (*FunctionPointerType) (unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___ctx0, ___errorState1, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker2< uint32_t, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___ctx0, ___errorState1);
else
result = GenericVirtFuncInvoker2< uint32_t, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___ctx0, ___errorState1);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker2< uint32_t, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___ctx0, ___errorState1);
else
result = VirtFuncInvoker2< uint32_t, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___ctx0, ___errorState1);
}
}
}
else
{
typedef uint32_t (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___ctx0, ___errorState1, targetMethod);
}
}
}
return result;
}
// System.IAsyncResult Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_get_ciphersuite_t::BeginInvoke(Mono.Unity.UnityTls/unitytls_tlsctx*,Mono.Unity.UnityTls/unitytls_errorstate*,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* unitytls_tlsctx_get_ciphersuite_t_BeginInvoke_m8BA17B437B22A3109CD7AA513F11B99A6010B215 (unitytls_tlsctx_get_ciphersuite_t_t94A91CB42A2EBB2CC598EF3E278770AFD80696A0 * __this, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * ___ctx0, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState1, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method)
{
void *__d_args[3] = {0};
__d_args[0] = ___ctx0;
__d_args[1] = ___errorState1;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);
}
// Mono.Unity.UnityTls/unitytls_ciphersuite Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_get_ciphersuite_t::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR uint32_t unitytls_tlsctx_get_ciphersuite_t_EndInvoke_m37132AD00EA6C15F18185B76F883D690BC9330EF (unitytls_tlsctx_get_ciphersuite_t_t94A91CB42A2EBB2CC598EF3E278770AFD80696A0 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint32_t*)UnBox ((RuntimeObject*)__result);
}
#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
extern "C" uint32_t DelegatePInvokeWrapper_unitytls_tlsctx_get_protocol_t_tB29092875D3CBD25E4461BFD165B5373FA54DB14 (unitytls_tlsctx_get_protocol_t_tB29092875D3CBD25E4461BFD165B5373FA54DB14 * __this, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * ___ctx0, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState1, const RuntimeMethod* method)
{
typedef uint32_t (CDECL *PInvokeFunc)(unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method));
// Native function invocation
uint32_t returnValue = il2cppPInvokeFunc(___ctx0, ___errorState1);
return returnValue;
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_get_protocol_t::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void unitytls_tlsctx_get_protocol_t__ctor_m57AA61C6CC144AC851EF8A1BCDE1FE8A6A7CE4E3 (unitytls_tlsctx_get_protocol_t_tB29092875D3CBD25E4461BFD165B5373FA54DB14 * __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);
}
// Mono.Unity.UnityTls/unitytls_protocol Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_get_protocol_t::Invoke(Mono.Unity.UnityTls/unitytls_tlsctx*,Mono.Unity.UnityTls/unitytls_errorstate*)
extern "C" IL2CPP_METHOD_ATTR uint32_t unitytls_tlsctx_get_protocol_t_Invoke_m533A624ECEB2AC0E43052CE6A234D04E4E9C70AB (unitytls_tlsctx_get_protocol_t_tB29092875D3CBD25E4461BFD165B5373FA54DB14 * __this, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * ___ctx0, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState1, const RuntimeMethod* method)
{
uint32_t result = 0;
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
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 uint32_t (*FunctionPointerType) (unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___ctx0, ___errorState1, targetMethod);
}
else
{
// closed
typedef uint32_t (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___ctx0, ___errorState1, 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 (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 uint32_t (*FunctionPointerType) (unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___ctx0, ___errorState1, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker2< uint32_t, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___ctx0, ___errorState1);
else
result = GenericVirtFuncInvoker2< uint32_t, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___ctx0, ___errorState1);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker2< uint32_t, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___ctx0, ___errorState1);
else
result = VirtFuncInvoker2< uint32_t, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___ctx0, ___errorState1);
}
}
}
else
{
typedef uint32_t (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___ctx0, ___errorState1, targetMethod);
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
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 uint32_t (*FunctionPointerType) (unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___ctx0, ___errorState1, targetMethod);
}
else
{
// closed
typedef uint32_t (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___ctx0, ___errorState1, 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 (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 uint32_t (*FunctionPointerType) (unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___ctx0, ___errorState1, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker2< uint32_t, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___ctx0, ___errorState1);
else
result = GenericVirtFuncInvoker2< uint32_t, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___ctx0, ___errorState1);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker2< uint32_t, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___ctx0, ___errorState1);
else
result = VirtFuncInvoker2< uint32_t, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___ctx0, ___errorState1);
}
}
}
else
{
typedef uint32_t (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___ctx0, ___errorState1, targetMethod);
}
}
}
return result;
}
// System.IAsyncResult Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_get_protocol_t::BeginInvoke(Mono.Unity.UnityTls/unitytls_tlsctx*,Mono.Unity.UnityTls/unitytls_errorstate*,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* unitytls_tlsctx_get_protocol_t_BeginInvoke_m633A813CF097D32A46D0AF9B4BA62675D446E476 (unitytls_tlsctx_get_protocol_t_tB29092875D3CBD25E4461BFD165B5373FA54DB14 * __this, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * ___ctx0, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState1, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method)
{
void *__d_args[3] = {0};
__d_args[0] = ___ctx0;
__d_args[1] = ___errorState1;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);
}
// Mono.Unity.UnityTls/unitytls_protocol Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_get_protocol_t::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR uint32_t unitytls_tlsctx_get_protocol_t_EndInvoke_m31A4CD4E5918466D87B8EFED896BF0DF487FF061 (unitytls_tlsctx_get_protocol_t_tB29092875D3CBD25E4461BFD165B5373FA54DB14 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint32_t*)UnBox ((RuntimeObject*)__result);
}
#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
extern "C" void DelegatePInvokeWrapper_unitytls_tlsctx_notify_close_t_t2FC4C08BACF1AEA509ABCAF3B22475E196E74A0D (unitytls_tlsctx_notify_close_t_t2FC4C08BACF1AEA509ABCAF3B22475E196E74A0D * __this, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * ___ctx0, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState1, const RuntimeMethod* method)
{
typedef void (CDECL *PInvokeFunc)(unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method));
// Native function invocation
il2cppPInvokeFunc(___ctx0, ___errorState1);
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_notify_close_t::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void unitytls_tlsctx_notify_close_t__ctor_mD372DA8B81430D8E41B7372722D5D327CF438951 (unitytls_tlsctx_notify_close_t_t2FC4C08BACF1AEA509ABCAF3B22475E196E74A0D * __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 Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_notify_close_t::Invoke(Mono.Unity.UnityTls/unitytls_tlsctx*,Mono.Unity.UnityTls/unitytls_errorstate*)
extern "C" IL2CPP_METHOD_ATTR void unitytls_tlsctx_notify_close_t_Invoke_mC3B57340B3CA22EA7EB0EBFA5C941C487DE6B015 (unitytls_tlsctx_notify_close_t_t2FC4C08BACF1AEA509ABCAF3B22475E196E74A0D * __this, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * ___ctx0, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState1, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
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) (unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___ctx0, ___errorState1, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___ctx0, ___errorState1, 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 (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) (unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___ctx0, ___errorState1, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker2< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___ctx0, ___errorState1);
else
GenericVirtActionInvoker2< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___ctx0, ___errorState1);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker2< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___ctx0, ___errorState1);
else
VirtActionInvoker2< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___ctx0, ___errorState1);
}
}
}
else
{
typedef void (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___ctx0, ___errorState1, targetMethod);
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
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) (unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___ctx0, ___errorState1, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___ctx0, ___errorState1, 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 (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) (unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___ctx0, ___errorState1, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker2< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___ctx0, ___errorState1);
else
GenericVirtActionInvoker2< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___ctx0, ___errorState1);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker2< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___ctx0, ___errorState1);
else
VirtActionInvoker2< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___ctx0, ___errorState1);
}
}
}
else
{
typedef void (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___ctx0, ___errorState1, targetMethod);
}
}
}
}
// System.IAsyncResult Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_notify_close_t::BeginInvoke(Mono.Unity.UnityTls/unitytls_tlsctx*,Mono.Unity.UnityTls/unitytls_errorstate*,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* unitytls_tlsctx_notify_close_t_BeginInvoke_mDB587D9039A414DC2127613B9E477379FF119E14 (unitytls_tlsctx_notify_close_t_t2FC4C08BACF1AEA509ABCAF3B22475E196E74A0D * __this, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * ___ctx0, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState1, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method)
{
void *__d_args[3] = {0};
__d_args[0] = ___ctx0;
__d_args[1] = ___errorState1;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_notify_close_t::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR void unitytls_tlsctx_notify_close_t_EndInvoke_m5D323428785A814E43CA41E4244ECAF0F96EE668 (unitytls_tlsctx_notify_close_t_t2FC4C08BACF1AEA509ABCAF3B22475E196E74A0D * __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
extern "C" uint32_t DelegatePInvokeWrapper_unitytls_tlsctx_process_handshake_t_tC8AAF317CBE4CA216F22BF031ECF89315B963C9D (unitytls_tlsctx_process_handshake_t_tC8AAF317CBE4CA216F22BF031ECF89315B963C9D * __this, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * ___ctx0, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState1, const RuntimeMethod* method)
{
typedef uint32_t (CDECL *PInvokeFunc)(unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method));
// Native function invocation
uint32_t returnValue = il2cppPInvokeFunc(___ctx0, ___errorState1);
return returnValue;
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_process_handshake_t::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void unitytls_tlsctx_process_handshake_t__ctor_m3C5790369EFE12F841C4EDA676DABCC833BF23DE (unitytls_tlsctx_process_handshake_t_tC8AAF317CBE4CA216F22BF031ECF89315B963C9D * __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);
}
// Mono.Unity.UnityTls/unitytls_x509verify_result Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_process_handshake_t::Invoke(Mono.Unity.UnityTls/unitytls_tlsctx*,Mono.Unity.UnityTls/unitytls_errorstate*)
extern "C" IL2CPP_METHOD_ATTR uint32_t unitytls_tlsctx_process_handshake_t_Invoke_mE17E62D2159809BC847BEB1D6B40C23C017ED3E8 (unitytls_tlsctx_process_handshake_t_tC8AAF317CBE4CA216F22BF031ECF89315B963C9D * __this, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * ___ctx0, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState1, const RuntimeMethod* method)
{
uint32_t result = 0;
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
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 uint32_t (*FunctionPointerType) (unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___ctx0, ___errorState1, targetMethod);
}
else
{
// closed
typedef uint32_t (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___ctx0, ___errorState1, 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 (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 uint32_t (*FunctionPointerType) (unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___ctx0, ___errorState1, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker2< uint32_t, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___ctx0, ___errorState1);
else
result = GenericVirtFuncInvoker2< uint32_t, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___ctx0, ___errorState1);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker2< uint32_t, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___ctx0, ___errorState1);
else
result = VirtFuncInvoker2< uint32_t, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___ctx0, ___errorState1);
}
}
}
else
{
typedef uint32_t (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___ctx0, ___errorState1, targetMethod);
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
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 uint32_t (*FunctionPointerType) (unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___ctx0, ___errorState1, targetMethod);
}
else
{
// closed
typedef uint32_t (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___ctx0, ___errorState1, 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 (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 uint32_t (*FunctionPointerType) (unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___ctx0, ___errorState1, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker2< uint32_t, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___ctx0, ___errorState1);
else
result = GenericVirtFuncInvoker2< uint32_t, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___ctx0, ___errorState1);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker2< uint32_t, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___ctx0, ___errorState1);
else
result = VirtFuncInvoker2< uint32_t, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___ctx0, ___errorState1);
}
}
}
else
{
typedef uint32_t (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___ctx0, ___errorState1, targetMethod);
}
}
}
return result;
}
// System.IAsyncResult Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_process_handshake_t::BeginInvoke(Mono.Unity.UnityTls/unitytls_tlsctx*,Mono.Unity.UnityTls/unitytls_errorstate*,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* unitytls_tlsctx_process_handshake_t_BeginInvoke_mDE4541085A795D1286E90FE82D1802A4A2C861BF (unitytls_tlsctx_process_handshake_t_tC8AAF317CBE4CA216F22BF031ECF89315B963C9D * __this, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * ___ctx0, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState1, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method)
{
void *__d_args[3] = {0};
__d_args[0] = ___ctx0;
__d_args[1] = ___errorState1;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);
}
// Mono.Unity.UnityTls/unitytls_x509verify_result Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_process_handshake_t::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR uint32_t unitytls_tlsctx_process_handshake_t_EndInvoke_mDE68FC780902D4DDC02B55D01C3F5B1F2D5165CD (unitytls_tlsctx_process_handshake_t_tC8AAF317CBE4CA216F22BF031ECF89315B963C9D * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint32_t*)UnBox ((RuntimeObject*)__result);
}
#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
extern "C" intptr_t DelegatePInvokeWrapper_unitytls_tlsctx_read_t_tA8D1209D5F488E02F826EE2362F5AA61C8FF2EE2 (unitytls_tlsctx_read_t_tA8D1209D5F488E02F826EE2362F5AA61C8FF2EE2 * __this, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * ___ctx0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState3, const RuntimeMethod* method)
{
typedef intptr_t (CDECL *PInvokeFunc)(unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method));
// Native function invocation
intptr_t returnValue = il2cppPInvokeFunc(___ctx0, ___buffer1, ___bufferLen2, ___errorState3);
return returnValue;
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_read_t::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void unitytls_tlsctx_read_t__ctor_m3A54D3DC95D93F41585AAC5E0CBB09E7E21C6A88 (unitytls_tlsctx_read_t_tA8D1209D5F488E02F826EE2362F5AA61C8FF2EE2 * __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.IntPtr Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_read_t::Invoke(Mono.Unity.UnityTls/unitytls_tlsctx*,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*)
extern "C" IL2CPP_METHOD_ATTR intptr_t unitytls_tlsctx_read_t_Invoke_mAFFB3FA39F79B2BE4FFA182239DE94ED5570D803 (unitytls_tlsctx_read_t_tA8D1209D5F488E02F826EE2362F5AA61C8FF2EE2 * __this, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * ___ctx0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState3, const RuntimeMethod* method)
{
intptr_t result;
memset(&result, 0, sizeof(result));
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
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 == 4)
{
// open
typedef intptr_t (*FunctionPointerType) (unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___ctx0, ___buffer1, ___bufferLen2, ___errorState3, targetMethod);
}
else
{
// closed
typedef intptr_t (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___ctx0, ___buffer1, ___bufferLen2, ___errorState3, 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 (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 intptr_t (*FunctionPointerType) (unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___ctx0, ___buffer1, ___bufferLen2, ___errorState3, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker4< intptr_t, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___ctx0, ___buffer1, ___bufferLen2, ___errorState3);
else
result = GenericVirtFuncInvoker4< intptr_t, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___ctx0, ___buffer1, ___bufferLen2, ___errorState3);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker4< intptr_t, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___ctx0, ___buffer1, ___bufferLen2, ___errorState3);
else
result = VirtFuncInvoker4< intptr_t, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___ctx0, ___buffer1, ___bufferLen2, ___errorState3);
}
}
}
else
{
typedef intptr_t (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___ctx0, ___buffer1, ___bufferLen2, ___errorState3, targetMethod);
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
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 == 4)
{
// open
typedef intptr_t (*FunctionPointerType) (unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___ctx0, ___buffer1, ___bufferLen2, ___errorState3, targetMethod);
}
else
{
// closed
typedef intptr_t (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___ctx0, ___buffer1, ___bufferLen2, ___errorState3, 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 (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 intptr_t (*FunctionPointerType) (unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___ctx0, ___buffer1, ___bufferLen2, ___errorState3, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker4< intptr_t, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___ctx0, ___buffer1, ___bufferLen2, ___errorState3);
else
result = GenericVirtFuncInvoker4< intptr_t, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___ctx0, ___buffer1, ___bufferLen2, ___errorState3);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker4< intptr_t, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___ctx0, ___buffer1, ___bufferLen2, ___errorState3);
else
result = VirtFuncInvoker4< intptr_t, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___ctx0, ___buffer1, ___bufferLen2, ___errorState3);
}
}
}
else
{
typedef intptr_t (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___ctx0, ___buffer1, ___bufferLen2, ___errorState3, targetMethod);
}
}
}
return result;
}
// System.IAsyncResult Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_read_t::BeginInvoke(Mono.Unity.UnityTls/unitytls_tlsctx*,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* unitytls_tlsctx_read_t_BeginInvoke_mC8AA0588732E45F9402F7EC9319099ECFC5AFF8C (unitytls_tlsctx_read_t_tA8D1209D5F488E02F826EE2362F5AA61C8FF2EE2 * __this, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * ___ctx0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState3, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback4, RuntimeObject * ___object5, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (unitytls_tlsctx_read_t_BeginInvoke_mC8AA0588732E45F9402F7EC9319099ECFC5AFF8C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[5] = {0};
__d_args[0] = ___ctx0;
__d_args[1] = ___buffer1;
__d_args[2] = Box(IntPtr_t_il2cpp_TypeInfo_var, &___bufferLen2);
__d_args[3] = ___errorState3;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback4, (RuntimeObject*)___object5);
}
// System.IntPtr Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_read_t::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR intptr_t unitytls_tlsctx_read_t_EndInvoke_m94A70CCFA5F55842BBB3DEC7B89D19BCBA37937A (unitytls_tlsctx_read_t_tA8D1209D5F488E02F826EE2362F5AA61C8FF2EE2 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(intptr_t*)UnBox ((RuntimeObject*)__result);
}
#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
extern "C" void DelegatePInvokeWrapper_unitytls_tlsctx_server_require_client_authentication_t_t77B3CAFF25690A45405E3C957E40CC4FF83B49C6 (unitytls_tlsctx_server_require_client_authentication_t_t77B3CAFF25690A45405E3C957E40CC4FF83B49C6 * __this, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * ___ctx0, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 ___clientAuthCAList1, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState2, const RuntimeMethod* method)
{
typedef void (CDECL *PInvokeFunc)(unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method));
// Native function invocation
il2cppPInvokeFunc(___ctx0, ___clientAuthCAList1, ___errorState2);
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_server_require_client_authentication_t::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void unitytls_tlsctx_server_require_client_authentication_t__ctor_m9AFB7DDE9F07B0C20E932B26CF5F7CC5A34EF2EE (unitytls_tlsctx_server_require_client_authentication_t_t77B3CAFF25690A45405E3C957E40CC4FF83B49C6 * __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 Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_server_require_client_authentication_t::Invoke(Mono.Unity.UnityTls/unitytls_tlsctx*,Mono.Unity.UnityTls/unitytls_x509list_ref,Mono.Unity.UnityTls/unitytls_errorstate*)
extern "C" IL2CPP_METHOD_ATTR void unitytls_tlsctx_server_require_client_authentication_t_Invoke_mAD3C2DC8E2407F47BCCDB9CCD03FAEF5C3C61FB4 (unitytls_tlsctx_server_require_client_authentication_t_t77B3CAFF25690A45405E3C957E40CC4FF83B49C6 * __this, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * ___ctx0, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 ___clientAuthCAList1, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState2, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
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) (unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___ctx0, ___clientAuthCAList1, ___errorState2, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___ctx0, ___clientAuthCAList1, ___errorState2, 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 (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) (unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___ctx0, ___clientAuthCAList1, ___errorState2, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker3< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___ctx0, ___clientAuthCAList1, ___errorState2);
else
GenericVirtActionInvoker3< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___ctx0, ___clientAuthCAList1, ___errorState2);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker3< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___ctx0, ___clientAuthCAList1, ___errorState2);
else
VirtActionInvoker3< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___ctx0, ___clientAuthCAList1, ___errorState2);
}
}
}
else
{
typedef void (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___ctx0, ___clientAuthCAList1, ___errorState2, targetMethod);
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
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) (unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___ctx0, ___clientAuthCAList1, ___errorState2, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___ctx0, ___clientAuthCAList1, ___errorState2, 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 (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) (unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___ctx0, ___clientAuthCAList1, ___errorState2, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker3< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___ctx0, ___clientAuthCAList1, ___errorState2);
else
GenericVirtActionInvoker3< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___ctx0, ___clientAuthCAList1, ___errorState2);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker3< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___ctx0, ___clientAuthCAList1, ___errorState2);
else
VirtActionInvoker3< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___ctx0, ___clientAuthCAList1, ___errorState2);
}
}
}
else
{
typedef void (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___ctx0, ___clientAuthCAList1, ___errorState2, targetMethod);
}
}
}
}
// System.IAsyncResult Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_server_require_client_authentication_t::BeginInvoke(Mono.Unity.UnityTls/unitytls_tlsctx*,Mono.Unity.UnityTls/unitytls_x509list_ref,Mono.Unity.UnityTls/unitytls_errorstate*,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* unitytls_tlsctx_server_require_client_authentication_t_BeginInvoke_m34DF29BAAD16625619D9BACCAE0916CCB1EE3814 (unitytls_tlsctx_server_require_client_authentication_t_t77B3CAFF25690A45405E3C957E40CC4FF83B49C6 * __this, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * ___ctx0, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 ___clientAuthCAList1, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState2, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback3, RuntimeObject * ___object4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (unitytls_tlsctx_server_require_client_authentication_t_BeginInvoke_m34DF29BAAD16625619D9BACCAE0916CCB1EE3814_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[4] = {0};
__d_args[0] = ___ctx0;
__d_args[1] = Box(unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6_il2cpp_TypeInfo_var, &___clientAuthCAList1);
__d_args[2] = ___errorState2;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback3, (RuntimeObject*)___object4);
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_server_require_client_authentication_t::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR void unitytls_tlsctx_server_require_client_authentication_t_EndInvoke_mD90E6FDE627752E1398D872EF076990B46A0D0C4 (unitytls_tlsctx_server_require_client_authentication_t_t77B3CAFF25690A45405E3C957E40CC4FF83B49C6 * __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
extern "C" void DelegatePInvokeWrapper_unitytls_tlsctx_set_certificate_callback_t_tC4864FE0F6A3398A572F2511AA64C72126640937 (unitytls_tlsctx_set_certificate_callback_t_tC4864FE0F6A3398A572F2511AA64C72126640937 * __this, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * ___ctx0, unitytls_tlsctx_certificate_callback_t55149A988CA1CE32772ACAC0031DAF4DC0F6D740 * ___cb1, void* ___userData2, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState3, const RuntimeMethod* method)
{
typedef void (CDECL *PInvokeFunc)(unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, Il2CppMethodPointer, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method));
// Marshaling of parameter '___cb1' to native representation
Il2CppMethodPointer ____cb1_marshaled = NULL;
____cb1_marshaled = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(___cb1));
// Native function invocation
il2cppPInvokeFunc(___ctx0, ____cb1_marshaled, ___userData2, ___errorState3);
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_set_certificate_callback_t::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void unitytls_tlsctx_set_certificate_callback_t__ctor_mEE1D60229825001CFA228CAB36712F5911CA94F1 (unitytls_tlsctx_set_certificate_callback_t_tC4864FE0F6A3398A572F2511AA64C72126640937 * __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 Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_set_certificate_callback_t::Invoke(Mono.Unity.UnityTls/unitytls_tlsctx*,Mono.Unity.UnityTls/unitytls_tlsctx_certificate_callback,System.Void*,Mono.Unity.UnityTls/unitytls_errorstate*)
extern "C" IL2CPP_METHOD_ATTR void unitytls_tlsctx_set_certificate_callback_t_Invoke_mD72A24F7BEB100ECBFE6A02447D07EB392F8416B (unitytls_tlsctx_set_certificate_callback_t_tC4864FE0F6A3398A572F2511AA64C72126640937 * __this, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * ___ctx0, unitytls_tlsctx_certificate_callback_t55149A988CA1CE32772ACAC0031DAF4DC0F6D740 * ___cb1, void* ___userData2, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState3, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
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 == 4)
{
// open
typedef void (*FunctionPointerType) (unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_certificate_callback_t55149A988CA1CE32772ACAC0031DAF4DC0F6D740 *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___ctx0, ___cb1, ___userData2, ___errorState3, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_certificate_callback_t55149A988CA1CE32772ACAC0031DAF4DC0F6D740 *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___ctx0, ___cb1, ___userData2, ___errorState3, 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 (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) (unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_certificate_callback_t55149A988CA1CE32772ACAC0031DAF4DC0F6D740 *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___ctx0, ___cb1, ___userData2, ___errorState3, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker4< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_certificate_callback_t55149A988CA1CE32772ACAC0031DAF4DC0F6D740 *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___ctx0, ___cb1, ___userData2, ___errorState3);
else
GenericVirtActionInvoker4< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_certificate_callback_t55149A988CA1CE32772ACAC0031DAF4DC0F6D740 *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___ctx0, ___cb1, ___userData2, ___errorState3);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker4< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_certificate_callback_t55149A988CA1CE32772ACAC0031DAF4DC0F6D740 *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___ctx0, ___cb1, ___userData2, ___errorState3);
else
VirtActionInvoker4< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_certificate_callback_t55149A988CA1CE32772ACAC0031DAF4DC0F6D740 *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___ctx0, ___cb1, ___userData2, ___errorState3);
}
}
}
else
{
typedef void (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_certificate_callback_t55149A988CA1CE32772ACAC0031DAF4DC0F6D740 *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___ctx0, ___cb1, ___userData2, ___errorState3, targetMethod);
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
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 == 4)
{
// open
typedef void (*FunctionPointerType) (unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_certificate_callback_t55149A988CA1CE32772ACAC0031DAF4DC0F6D740 *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___ctx0, ___cb1, ___userData2, ___errorState3, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_certificate_callback_t55149A988CA1CE32772ACAC0031DAF4DC0F6D740 *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___ctx0, ___cb1, ___userData2, ___errorState3, 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 (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) (unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_certificate_callback_t55149A988CA1CE32772ACAC0031DAF4DC0F6D740 *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___ctx0, ___cb1, ___userData2, ___errorState3, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker4< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_certificate_callback_t55149A988CA1CE32772ACAC0031DAF4DC0F6D740 *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___ctx0, ___cb1, ___userData2, ___errorState3);
else
GenericVirtActionInvoker4< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_certificate_callback_t55149A988CA1CE32772ACAC0031DAF4DC0F6D740 *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___ctx0, ___cb1, ___userData2, ___errorState3);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker4< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_certificate_callback_t55149A988CA1CE32772ACAC0031DAF4DC0F6D740 *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___ctx0, ___cb1, ___userData2, ___errorState3);
else
VirtActionInvoker4< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_certificate_callback_t55149A988CA1CE32772ACAC0031DAF4DC0F6D740 *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___ctx0, ___cb1, ___userData2, ___errorState3);
}
}
}
else
{
typedef void (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_certificate_callback_t55149A988CA1CE32772ACAC0031DAF4DC0F6D740 *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___ctx0, ___cb1, ___userData2, ___errorState3, targetMethod);
}
}
}
}
// System.IAsyncResult Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_set_certificate_callback_t::BeginInvoke(Mono.Unity.UnityTls/unitytls_tlsctx*,Mono.Unity.UnityTls/unitytls_tlsctx_certificate_callback,System.Void*,Mono.Unity.UnityTls/unitytls_errorstate*,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* unitytls_tlsctx_set_certificate_callback_t_BeginInvoke_mC558DC3F79919F6336501ED0EE6E258D40ABF0E6 (unitytls_tlsctx_set_certificate_callback_t_tC4864FE0F6A3398A572F2511AA64C72126640937 * __this, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * ___ctx0, unitytls_tlsctx_certificate_callback_t55149A988CA1CE32772ACAC0031DAF4DC0F6D740 * ___cb1, void* ___userData2, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState3, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback4, RuntimeObject * ___object5, const RuntimeMethod* method)
{
void *__d_args[5] = {0};
__d_args[0] = ___ctx0;
__d_args[1] = ___cb1;
__d_args[2] = ___userData2;
__d_args[3] = ___errorState3;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback4, (RuntimeObject*)___object5);
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_set_certificate_callback_t::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR void unitytls_tlsctx_set_certificate_callback_t_EndInvoke_m4A733262D24FD2ADD4A0807F5B70ACC4833E71DF (unitytls_tlsctx_set_certificate_callback_t_tC4864FE0F6A3398A572F2511AA64C72126640937 * __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
extern "C" void DelegatePInvokeWrapper_unitytls_tlsctx_set_supported_ciphersuites_t_t6914054EA0F7A59C8A4ED4B9CDD5AF143F7D8BFE (unitytls_tlsctx_set_supported_ciphersuites_t_t6914054EA0F7A59C8A4ED4B9CDD5AF143F7D8BFE * __this, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * ___ctx0, uint32_t* ___supportedCiphersuites1, intptr_t ___supportedCiphersuitesLen2, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState3, const RuntimeMethod* method)
{
typedef void (CDECL *PInvokeFunc)(unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint32_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method));
// Native function invocation
il2cppPInvokeFunc(___ctx0, ___supportedCiphersuites1, ___supportedCiphersuitesLen2, ___errorState3);
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_set_supported_ciphersuites_t::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void unitytls_tlsctx_set_supported_ciphersuites_t__ctor_mF8B2A46DCE03527B87EE1EB40F18EEB186591A58 (unitytls_tlsctx_set_supported_ciphersuites_t_t6914054EA0F7A59C8A4ED4B9CDD5AF143F7D8BFE * __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 Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_set_supported_ciphersuites_t::Invoke(Mono.Unity.UnityTls/unitytls_tlsctx*,Mono.Unity.UnityTls/unitytls_ciphersuite*,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*)
extern "C" IL2CPP_METHOD_ATTR void unitytls_tlsctx_set_supported_ciphersuites_t_Invoke_m9091B6D204D7611E2741CC2B3166616F8C19E594 (unitytls_tlsctx_set_supported_ciphersuites_t_t6914054EA0F7A59C8A4ED4B9CDD5AF143F7D8BFE * __this, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * ___ctx0, uint32_t* ___supportedCiphersuites1, intptr_t ___supportedCiphersuitesLen2, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState3, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
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 == 4)
{
// open
typedef void (*FunctionPointerType) (unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint32_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___ctx0, ___supportedCiphersuites1, ___supportedCiphersuitesLen2, ___errorState3, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint32_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___ctx0, ___supportedCiphersuites1, ___supportedCiphersuitesLen2, ___errorState3, 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 (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) (unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint32_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___ctx0, ___supportedCiphersuites1, ___supportedCiphersuitesLen2, ___errorState3, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker4< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint32_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___ctx0, ___supportedCiphersuites1, ___supportedCiphersuitesLen2, ___errorState3);
else
GenericVirtActionInvoker4< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint32_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___ctx0, ___supportedCiphersuites1, ___supportedCiphersuitesLen2, ___errorState3);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker4< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint32_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___ctx0, ___supportedCiphersuites1, ___supportedCiphersuitesLen2, ___errorState3);
else
VirtActionInvoker4< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint32_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___ctx0, ___supportedCiphersuites1, ___supportedCiphersuitesLen2, ___errorState3);
}
}
}
else
{
typedef void (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint32_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___ctx0, ___supportedCiphersuites1, ___supportedCiphersuitesLen2, ___errorState3, targetMethod);
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
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 == 4)
{
// open
typedef void (*FunctionPointerType) (unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint32_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___ctx0, ___supportedCiphersuites1, ___supportedCiphersuitesLen2, ___errorState3, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint32_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___ctx0, ___supportedCiphersuites1, ___supportedCiphersuitesLen2, ___errorState3, 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 (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) (unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint32_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___ctx0, ___supportedCiphersuites1, ___supportedCiphersuitesLen2, ___errorState3, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker4< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint32_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___ctx0, ___supportedCiphersuites1, ___supportedCiphersuitesLen2, ___errorState3);
else
GenericVirtActionInvoker4< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint32_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___ctx0, ___supportedCiphersuites1, ___supportedCiphersuitesLen2, ___errorState3);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker4< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint32_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___ctx0, ___supportedCiphersuites1, ___supportedCiphersuitesLen2, ___errorState3);
else
VirtActionInvoker4< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint32_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___ctx0, ___supportedCiphersuites1, ___supportedCiphersuitesLen2, ___errorState3);
}
}
}
else
{
typedef void (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint32_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___ctx0, ___supportedCiphersuites1, ___supportedCiphersuitesLen2, ___errorState3, targetMethod);
}
}
}
}
// System.IAsyncResult Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_set_supported_ciphersuites_t::BeginInvoke(Mono.Unity.UnityTls/unitytls_tlsctx*,Mono.Unity.UnityTls/unitytls_ciphersuite*,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* unitytls_tlsctx_set_supported_ciphersuites_t_BeginInvoke_mAD583F841F317705AA1F100D5188AEBC4B997C1D (unitytls_tlsctx_set_supported_ciphersuites_t_t6914054EA0F7A59C8A4ED4B9CDD5AF143F7D8BFE * __this, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * ___ctx0, uint32_t* ___supportedCiphersuites1, intptr_t ___supportedCiphersuitesLen2, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState3, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback4, RuntimeObject * ___object5, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (unitytls_tlsctx_set_supported_ciphersuites_t_BeginInvoke_mAD583F841F317705AA1F100D5188AEBC4B997C1D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[5] = {0};
__d_args[0] = ___ctx0;
__d_args[1] = ___supportedCiphersuites1;
__d_args[2] = Box(IntPtr_t_il2cpp_TypeInfo_var, &___supportedCiphersuitesLen2);
__d_args[3] = ___errorState3;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback4, (RuntimeObject*)___object5);
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_set_supported_ciphersuites_t::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR void unitytls_tlsctx_set_supported_ciphersuites_t_EndInvoke_mFFC257704501E21B54877E6A937BEDAB526184E8 (unitytls_tlsctx_set_supported_ciphersuites_t_t6914054EA0F7A59C8A4ED4B9CDD5AF143F7D8BFE * __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
extern "C" void DelegatePInvokeWrapper_unitytls_tlsctx_set_trace_callback_t_tA11F424F68D297B6FD2B2EA26C6764F80146662A (unitytls_tlsctx_set_trace_callback_t_tA11F424F68D297B6FD2B2EA26C6764F80146662A * __this, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * ___ctx0, unitytls_tlsctx_trace_callback_t2C8F0895EF17ECAC042835D68A6BFDB9CBC7F2AA * ___cb1, void* ___userData2, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState3, const RuntimeMethod* method)
{
typedef void (CDECL *PInvokeFunc)(unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, Il2CppMethodPointer, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method));
// Marshaling of parameter '___cb1' to native representation
Il2CppMethodPointer ____cb1_marshaled = NULL;
____cb1_marshaled = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(___cb1));
// Native function invocation
il2cppPInvokeFunc(___ctx0, ____cb1_marshaled, ___userData2, ___errorState3);
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_set_trace_callback_t::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void unitytls_tlsctx_set_trace_callback_t__ctor_m698EE0E5FA09113DDBBE2BFD5EB4FE1A4E0F97A1 (unitytls_tlsctx_set_trace_callback_t_tA11F424F68D297B6FD2B2EA26C6764F80146662A * __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 Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_set_trace_callback_t::Invoke(Mono.Unity.UnityTls/unitytls_tlsctx*,Mono.Unity.UnityTls/unitytls_tlsctx_trace_callback,System.Void*,Mono.Unity.UnityTls/unitytls_errorstate*)
extern "C" IL2CPP_METHOD_ATTR void unitytls_tlsctx_set_trace_callback_t_Invoke_m3563168D645C5A9128E07DBDFC7B5512764B2E11 (unitytls_tlsctx_set_trace_callback_t_tA11F424F68D297B6FD2B2EA26C6764F80146662A * __this, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * ___ctx0, unitytls_tlsctx_trace_callback_t2C8F0895EF17ECAC042835D68A6BFDB9CBC7F2AA * ___cb1, void* ___userData2, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState3, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
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 == 4)
{
// open
typedef void (*FunctionPointerType) (unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_trace_callback_t2C8F0895EF17ECAC042835D68A6BFDB9CBC7F2AA *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___ctx0, ___cb1, ___userData2, ___errorState3, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_trace_callback_t2C8F0895EF17ECAC042835D68A6BFDB9CBC7F2AA *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___ctx0, ___cb1, ___userData2, ___errorState3, 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 (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) (unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_trace_callback_t2C8F0895EF17ECAC042835D68A6BFDB9CBC7F2AA *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___ctx0, ___cb1, ___userData2, ___errorState3, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker4< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_trace_callback_t2C8F0895EF17ECAC042835D68A6BFDB9CBC7F2AA *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___ctx0, ___cb1, ___userData2, ___errorState3);
else
GenericVirtActionInvoker4< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_trace_callback_t2C8F0895EF17ECAC042835D68A6BFDB9CBC7F2AA *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___ctx0, ___cb1, ___userData2, ___errorState3);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker4< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_trace_callback_t2C8F0895EF17ECAC042835D68A6BFDB9CBC7F2AA *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___ctx0, ___cb1, ___userData2, ___errorState3);
else
VirtActionInvoker4< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_trace_callback_t2C8F0895EF17ECAC042835D68A6BFDB9CBC7F2AA *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___ctx0, ___cb1, ___userData2, ___errorState3);
}
}
}
else
{
typedef void (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_trace_callback_t2C8F0895EF17ECAC042835D68A6BFDB9CBC7F2AA *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___ctx0, ___cb1, ___userData2, ___errorState3, targetMethod);
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
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 == 4)
{
// open
typedef void (*FunctionPointerType) (unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_trace_callback_t2C8F0895EF17ECAC042835D68A6BFDB9CBC7F2AA *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___ctx0, ___cb1, ___userData2, ___errorState3, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_trace_callback_t2C8F0895EF17ECAC042835D68A6BFDB9CBC7F2AA *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___ctx0, ___cb1, ___userData2, ___errorState3, 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 (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) (unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_trace_callback_t2C8F0895EF17ECAC042835D68A6BFDB9CBC7F2AA *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___ctx0, ___cb1, ___userData2, ___errorState3, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker4< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_trace_callback_t2C8F0895EF17ECAC042835D68A6BFDB9CBC7F2AA *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___ctx0, ___cb1, ___userData2, ___errorState3);
else
GenericVirtActionInvoker4< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_trace_callback_t2C8F0895EF17ECAC042835D68A6BFDB9CBC7F2AA *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___ctx0, ___cb1, ___userData2, ___errorState3);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker4< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_trace_callback_t2C8F0895EF17ECAC042835D68A6BFDB9CBC7F2AA *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___ctx0, ___cb1, ___userData2, ___errorState3);
else
VirtActionInvoker4< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_trace_callback_t2C8F0895EF17ECAC042835D68A6BFDB9CBC7F2AA *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___ctx0, ___cb1, ___userData2, ___errorState3);
}
}
}
else
{
typedef void (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_trace_callback_t2C8F0895EF17ECAC042835D68A6BFDB9CBC7F2AA *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___ctx0, ___cb1, ___userData2, ___errorState3, targetMethod);
}
}
}
}
// System.IAsyncResult Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_set_trace_callback_t::BeginInvoke(Mono.Unity.UnityTls/unitytls_tlsctx*,Mono.Unity.UnityTls/unitytls_tlsctx_trace_callback,System.Void*,Mono.Unity.UnityTls/unitytls_errorstate*,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* unitytls_tlsctx_set_trace_callback_t_BeginInvoke_m32846D6C60BEC0829F3478DB7AAB125D13B7F547 (unitytls_tlsctx_set_trace_callback_t_tA11F424F68D297B6FD2B2EA26C6764F80146662A * __this, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * ___ctx0, unitytls_tlsctx_trace_callback_t2C8F0895EF17ECAC042835D68A6BFDB9CBC7F2AA * ___cb1, void* ___userData2, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState3, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback4, RuntimeObject * ___object5, const RuntimeMethod* method)
{
void *__d_args[5] = {0};
__d_args[0] = ___ctx0;
__d_args[1] = ___cb1;
__d_args[2] = ___userData2;
__d_args[3] = ___errorState3;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback4, (RuntimeObject*)___object5);
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_set_trace_callback_t::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR void unitytls_tlsctx_set_trace_callback_t_EndInvoke_mEAF3A5C422616242581287326BDAD6C5515F5DC1 (unitytls_tlsctx_set_trace_callback_t_tA11F424F68D297B6FD2B2EA26C6764F80146662A * __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
extern "C" void DelegatePInvokeWrapper_unitytls_tlsctx_set_x509verify_callback_t_t34EEB7BA38CA2C86F847416785ADB22BC4A04F4B (unitytls_tlsctx_set_x509verify_callback_t_t34EEB7BA38CA2C86F847416785ADB22BC4A04F4B * __this, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * ___ctx0, unitytls_tlsctx_x509verify_callback_t5FCF0307C4AB263BC611FE396EC4D2B9CF93528A * ___cb1, void* ___userData2, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState3, const RuntimeMethod* method)
{
typedef void (CDECL *PInvokeFunc)(unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, Il2CppMethodPointer, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method));
// Marshaling of parameter '___cb1' to native representation
Il2CppMethodPointer ____cb1_marshaled = NULL;
____cb1_marshaled = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(___cb1));
// Native function invocation
il2cppPInvokeFunc(___ctx0, ____cb1_marshaled, ___userData2, ___errorState3);
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_set_x509verify_callback_t::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void unitytls_tlsctx_set_x509verify_callback_t__ctor_m1900B77A4679CBF3A7F107114F9444A193F9B3B2 (unitytls_tlsctx_set_x509verify_callback_t_t34EEB7BA38CA2C86F847416785ADB22BC4A04F4B * __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 Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_set_x509verify_callback_t::Invoke(Mono.Unity.UnityTls/unitytls_tlsctx*,Mono.Unity.UnityTls/unitytls_tlsctx_x509verify_callback,System.Void*,Mono.Unity.UnityTls/unitytls_errorstate*)
extern "C" IL2CPP_METHOD_ATTR void unitytls_tlsctx_set_x509verify_callback_t_Invoke_mB4B699E9A75AD84590634AA66243AE8BE8DE9F09 (unitytls_tlsctx_set_x509verify_callback_t_t34EEB7BA38CA2C86F847416785ADB22BC4A04F4B * __this, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * ___ctx0, unitytls_tlsctx_x509verify_callback_t5FCF0307C4AB263BC611FE396EC4D2B9CF93528A * ___cb1, void* ___userData2, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState3, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
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 == 4)
{
// open
typedef void (*FunctionPointerType) (unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_x509verify_callback_t5FCF0307C4AB263BC611FE396EC4D2B9CF93528A *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___ctx0, ___cb1, ___userData2, ___errorState3, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_x509verify_callback_t5FCF0307C4AB263BC611FE396EC4D2B9CF93528A *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___ctx0, ___cb1, ___userData2, ___errorState3, 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 (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) (unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_x509verify_callback_t5FCF0307C4AB263BC611FE396EC4D2B9CF93528A *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___ctx0, ___cb1, ___userData2, ___errorState3, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker4< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_x509verify_callback_t5FCF0307C4AB263BC611FE396EC4D2B9CF93528A *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___ctx0, ___cb1, ___userData2, ___errorState3);
else
GenericVirtActionInvoker4< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_x509verify_callback_t5FCF0307C4AB263BC611FE396EC4D2B9CF93528A *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___ctx0, ___cb1, ___userData2, ___errorState3);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker4< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_x509verify_callback_t5FCF0307C4AB263BC611FE396EC4D2B9CF93528A *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___ctx0, ___cb1, ___userData2, ___errorState3);
else
VirtActionInvoker4< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_x509verify_callback_t5FCF0307C4AB263BC611FE396EC4D2B9CF93528A *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___ctx0, ___cb1, ___userData2, ___errorState3);
}
}
}
else
{
typedef void (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_x509verify_callback_t5FCF0307C4AB263BC611FE396EC4D2B9CF93528A *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___ctx0, ___cb1, ___userData2, ___errorState3, targetMethod);
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
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 == 4)
{
// open
typedef void (*FunctionPointerType) (unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_x509verify_callback_t5FCF0307C4AB263BC611FE396EC4D2B9CF93528A *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___ctx0, ___cb1, ___userData2, ___errorState3, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_x509verify_callback_t5FCF0307C4AB263BC611FE396EC4D2B9CF93528A *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___ctx0, ___cb1, ___userData2, ___errorState3, 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 (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) (unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_x509verify_callback_t5FCF0307C4AB263BC611FE396EC4D2B9CF93528A *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___ctx0, ___cb1, ___userData2, ___errorState3, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker4< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_x509verify_callback_t5FCF0307C4AB263BC611FE396EC4D2B9CF93528A *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___ctx0, ___cb1, ___userData2, ___errorState3);
else
GenericVirtActionInvoker4< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_x509verify_callback_t5FCF0307C4AB263BC611FE396EC4D2B9CF93528A *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___ctx0, ___cb1, ___userData2, ___errorState3);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker4< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_x509verify_callback_t5FCF0307C4AB263BC611FE396EC4D2B9CF93528A *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___ctx0, ___cb1, ___userData2, ___errorState3);
else
VirtActionInvoker4< unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_x509verify_callback_t5FCF0307C4AB263BC611FE396EC4D2B9CF93528A *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___ctx0, ___cb1, ___userData2, ___errorState3);
}
}
}
else
{
typedef void (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, unitytls_tlsctx_x509verify_callback_t5FCF0307C4AB263BC611FE396EC4D2B9CF93528A *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___ctx0, ___cb1, ___userData2, ___errorState3, targetMethod);
}
}
}
}
// System.IAsyncResult Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_set_x509verify_callback_t::BeginInvoke(Mono.Unity.UnityTls/unitytls_tlsctx*,Mono.Unity.UnityTls/unitytls_tlsctx_x509verify_callback,System.Void*,Mono.Unity.UnityTls/unitytls_errorstate*,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* unitytls_tlsctx_set_x509verify_callback_t_BeginInvoke_mF1D785074322CB5DD7BB67E54C6C2140C5BCE73C (unitytls_tlsctx_set_x509verify_callback_t_t34EEB7BA38CA2C86F847416785ADB22BC4A04F4B * __this, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * ___ctx0, unitytls_tlsctx_x509verify_callback_t5FCF0307C4AB263BC611FE396EC4D2B9CF93528A * ___cb1, void* ___userData2, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState3, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback4, RuntimeObject * ___object5, const RuntimeMethod* method)
{
void *__d_args[5] = {0};
__d_args[0] = ___ctx0;
__d_args[1] = ___cb1;
__d_args[2] = ___userData2;
__d_args[3] = ___errorState3;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback4, (RuntimeObject*)___object5);
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_set_x509verify_callback_t::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR void unitytls_tlsctx_set_x509verify_callback_t_EndInvoke_mA320598F201D2E1ECAA3595355C93B3BDD13B031 (unitytls_tlsctx_set_x509verify_callback_t_t34EEB7BA38CA2C86F847416785ADB22BC4A04F4B * __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
extern "C" intptr_t DelegatePInvokeWrapper_unitytls_tlsctx_write_t_t0B4A49BBA592FE4EC0630B490463AE116AF07C9C (unitytls_tlsctx_write_t_t0B4A49BBA592FE4EC0630B490463AE116AF07C9C * __this, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * ___ctx0, uint8_t* ___data1, intptr_t ___bufferLen2, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState3, const RuntimeMethod* method)
{
typedef intptr_t (CDECL *PInvokeFunc)(unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method));
// Native function invocation
intptr_t returnValue = il2cppPInvokeFunc(___ctx0, ___data1, ___bufferLen2, ___errorState3);
return returnValue;
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_write_t::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void unitytls_tlsctx_write_t__ctor_m99DA58D77CC21DEAA77D8332FB1F4226BCBC3317 (unitytls_tlsctx_write_t_t0B4A49BBA592FE4EC0630B490463AE116AF07C9C * __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.IntPtr Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_write_t::Invoke(Mono.Unity.UnityTls/unitytls_tlsctx*,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*)
extern "C" IL2CPP_METHOD_ATTR intptr_t unitytls_tlsctx_write_t_Invoke_mF9413F9C6DD887B3B0DA87CE25824CED940EEFC1 (unitytls_tlsctx_write_t_t0B4A49BBA592FE4EC0630B490463AE116AF07C9C * __this, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * ___ctx0, uint8_t* ___data1, intptr_t ___bufferLen2, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState3, const RuntimeMethod* method)
{
intptr_t result;
memset(&result, 0, sizeof(result));
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
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 == 4)
{
// open
typedef intptr_t (*FunctionPointerType) (unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___ctx0, ___data1, ___bufferLen2, ___errorState3, targetMethod);
}
else
{
// closed
typedef intptr_t (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___ctx0, ___data1, ___bufferLen2, ___errorState3, 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 (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 intptr_t (*FunctionPointerType) (unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___ctx0, ___data1, ___bufferLen2, ___errorState3, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker4< intptr_t, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___ctx0, ___data1, ___bufferLen2, ___errorState3);
else
result = GenericVirtFuncInvoker4< intptr_t, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___ctx0, ___data1, ___bufferLen2, ___errorState3);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker4< intptr_t, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___ctx0, ___data1, ___bufferLen2, ___errorState3);
else
result = VirtFuncInvoker4< intptr_t, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___ctx0, ___data1, ___bufferLen2, ___errorState3);
}
}
}
else
{
typedef intptr_t (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___ctx0, ___data1, ___bufferLen2, ___errorState3, targetMethod);
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
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 == 4)
{
// open
typedef intptr_t (*FunctionPointerType) (unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___ctx0, ___data1, ___bufferLen2, ___errorState3, targetMethod);
}
else
{
// closed
typedef intptr_t (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___ctx0, ___data1, ___bufferLen2, ___errorState3, 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 (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 intptr_t (*FunctionPointerType) (unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___ctx0, ___data1, ___bufferLen2, ___errorState3, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker4< intptr_t, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___ctx0, ___data1, ___bufferLen2, ___errorState3);
else
result = GenericVirtFuncInvoker4< intptr_t, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___ctx0, ___data1, ___bufferLen2, ___errorState3);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker4< intptr_t, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___ctx0, ___data1, ___bufferLen2, ___errorState3);
else
result = VirtFuncInvoker4< intptr_t, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___ctx0, ___data1, ___bufferLen2, ___errorState3);
}
}
}
else
{
typedef intptr_t (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___ctx0, ___data1, ___bufferLen2, ___errorState3, targetMethod);
}
}
}
return result;
}
// System.IAsyncResult Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_write_t::BeginInvoke(Mono.Unity.UnityTls/unitytls_tlsctx*,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* unitytls_tlsctx_write_t_BeginInvoke_mC17344DDFE83AF7AA95CE8EC00A0FD27ADBF1A9F (unitytls_tlsctx_write_t_t0B4A49BBA592FE4EC0630B490463AE116AF07C9C * __this, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * ___ctx0, uint8_t* ___data1, intptr_t ___bufferLen2, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState3, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback4, RuntimeObject * ___object5, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (unitytls_tlsctx_write_t_BeginInvoke_mC17344DDFE83AF7AA95CE8EC00A0FD27ADBF1A9F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[5] = {0};
__d_args[0] = ___ctx0;
__d_args[1] = ___data1;
__d_args[2] = Box(IntPtr_t_il2cpp_TypeInfo_var, &___bufferLen2);
__d_args[3] = ___errorState3;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback4, (RuntimeObject*)___object5);
}
// System.IntPtr Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_tlsctx_write_t::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR intptr_t unitytls_tlsctx_write_t_EndInvoke_m6D59052A9AACE1E87DEBB2B6800B47FDAE09A524 (unitytls_tlsctx_write_t_t0B4A49BBA592FE4EC0630B490463AE116AF07C9C * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(intptr_t*)UnBox ((RuntimeObject*)__result);
}
#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
extern "C" intptr_t DelegatePInvokeWrapper_unitytls_x509_export_der_t_tB0D0A02DE7E75757AFCA780298BF95467BF82856 (unitytls_x509_export_der_t_tB0D0A02DE7E75757AFCA780298BF95467BF82856 * __this, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 ___cert0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState3, const RuntimeMethod* method)
{
typedef intptr_t (CDECL *PInvokeFunc)(unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method));
// Native function invocation
intptr_t returnValue = il2cppPInvokeFunc(___cert0, ___buffer1, ___bufferLen2, ___errorState3);
return returnValue;
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509_export_der_t::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void unitytls_x509_export_der_t__ctor_m2FA861176B1706988B234296EC1E5C2C2385C5A5 (unitytls_x509_export_der_t_tB0D0A02DE7E75757AFCA780298BF95467BF82856 * __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.IntPtr Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509_export_der_t::Invoke(Mono.Unity.UnityTls/unitytls_x509_ref,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*)
extern "C" IL2CPP_METHOD_ATTR intptr_t unitytls_x509_export_der_t_Invoke_m90FDB333B2076F06444B096E1E1D1A42C8EEF8A0 (unitytls_x509_export_der_t_tB0D0A02DE7E75757AFCA780298BF95467BF82856 * __this, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 ___cert0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState3, const RuntimeMethod* method)
{
intptr_t result;
memset(&result, 0, sizeof(result));
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
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 == 4)
{
// open
typedef intptr_t (*FunctionPointerType) (unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___cert0, ___buffer1, ___bufferLen2, ___errorState3, targetMethod);
}
else
{
// closed
typedef intptr_t (*FunctionPointerType) (void*, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___cert0, ___buffer1, ___bufferLen2, ___errorState3, 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 (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 intptr_t (*FunctionPointerType) (unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___cert0, ___buffer1, ___bufferLen2, ___errorState3, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker4< intptr_t, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___cert0, ___buffer1, ___bufferLen2, ___errorState3);
else
result = GenericVirtFuncInvoker4< intptr_t, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___cert0, ___buffer1, ___bufferLen2, ___errorState3);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker4< intptr_t, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___cert0, ___buffer1, ___bufferLen2, ___errorState3);
else
result = VirtFuncInvoker4< intptr_t, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___cert0, ___buffer1, ___bufferLen2, ___errorState3);
}
}
}
else
{
typedef intptr_t (*FunctionPointerType) (void*, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___cert0, ___buffer1, ___bufferLen2, ___errorState3, targetMethod);
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
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 == 4)
{
// open
typedef intptr_t (*FunctionPointerType) (unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___cert0, ___buffer1, ___bufferLen2, ___errorState3, targetMethod);
}
else
{
// closed
typedef intptr_t (*FunctionPointerType) (void*, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___cert0, ___buffer1, ___bufferLen2, ___errorState3, 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 (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 intptr_t (*FunctionPointerType) (unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___cert0, ___buffer1, ___bufferLen2, ___errorState3, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker4< intptr_t, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___cert0, ___buffer1, ___bufferLen2, ___errorState3);
else
result = GenericVirtFuncInvoker4< intptr_t, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___cert0, ___buffer1, ___bufferLen2, ___errorState3);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker4< intptr_t, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___cert0, ___buffer1, ___bufferLen2, ___errorState3);
else
result = VirtFuncInvoker4< intptr_t, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___cert0, ___buffer1, ___bufferLen2, ___errorState3);
}
}
}
else
{
typedef intptr_t (*FunctionPointerType) (void*, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___cert0, ___buffer1, ___bufferLen2, ___errorState3, targetMethod);
}
}
}
return result;
}
// System.IAsyncResult Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509_export_der_t::BeginInvoke(Mono.Unity.UnityTls/unitytls_x509_ref,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* unitytls_x509_export_der_t_BeginInvoke_m33E6F88E2448002C8B74EC67E172034CCD11E4D5 (unitytls_x509_export_der_t_tB0D0A02DE7E75757AFCA780298BF95467BF82856 * __this, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 ___cert0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState3, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback4, RuntimeObject * ___object5, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (unitytls_x509_export_der_t_BeginInvoke_m33E6F88E2448002C8B74EC67E172034CCD11E4D5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[5] = {0};
__d_args[0] = Box(unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7_il2cpp_TypeInfo_var, &___cert0);
__d_args[1] = ___buffer1;
__d_args[2] = Box(IntPtr_t_il2cpp_TypeInfo_var, &___bufferLen2);
__d_args[3] = ___errorState3;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback4, (RuntimeObject*)___object5);
}
// System.IntPtr Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509_export_der_t::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR intptr_t unitytls_x509_export_der_t_EndInvoke_m18AAF57D64EC364FF2312620E964F4D615E594CD (unitytls_x509_export_der_t_tB0D0A02DE7E75757AFCA780298BF95467BF82856 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(intptr_t*)UnBox ((RuntimeObject*)__result);
}
#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
extern "C" void DelegatePInvokeWrapper_unitytls_x509list_append_der_t_tDA1C93A382058FB563F8772B119D5B598DC37A5C (unitytls_x509list_append_der_t_tDA1C93A382058FB563F8772B119D5B598DC37A5C * __this, unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * ___list0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState3, const RuntimeMethod* method)
{
typedef void (CDECL *PInvokeFunc)(unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method));
// Native function invocation
il2cppPInvokeFunc(___list0, ___buffer1, ___bufferLen2, ___errorState3);
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_append_der_t::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void unitytls_x509list_append_der_t__ctor_m841BFC2DC8D5C6BA893192D3318C89CB1CBA5093 (unitytls_x509list_append_der_t_tDA1C93A382058FB563F8772B119D5B598DC37A5C * __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 Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_append_der_t::Invoke(Mono.Unity.UnityTls/unitytls_x509list*,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*)
extern "C" IL2CPP_METHOD_ATTR void unitytls_x509list_append_der_t_Invoke_m1606FADA7E902086F7AEE6D8F304867C7E0A434F (unitytls_x509list_append_der_t_tDA1C93A382058FB563F8772B119D5B598DC37A5C * __this, unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * ___list0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState3, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
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 == 4)
{
// open
typedef void (*FunctionPointerType) (unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___list0, ___buffer1, ___bufferLen2, ___errorState3, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___list0, ___buffer1, ___bufferLen2, ___errorState3, 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 (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) (unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___list0, ___buffer1, ___bufferLen2, ___errorState3, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker4< unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___list0, ___buffer1, ___bufferLen2, ___errorState3);
else
GenericVirtActionInvoker4< unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___list0, ___buffer1, ___bufferLen2, ___errorState3);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker4< unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___list0, ___buffer1, ___bufferLen2, ___errorState3);
else
VirtActionInvoker4< unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___list0, ___buffer1, ___bufferLen2, ___errorState3);
}
}
}
else
{
typedef void (*FunctionPointerType) (void*, unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___list0, ___buffer1, ___bufferLen2, ___errorState3, targetMethod);
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
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 == 4)
{
// open
typedef void (*FunctionPointerType) (unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___list0, ___buffer1, ___bufferLen2, ___errorState3, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___list0, ___buffer1, ___bufferLen2, ___errorState3, 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 (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) (unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___list0, ___buffer1, ___bufferLen2, ___errorState3, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker4< unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___list0, ___buffer1, ___bufferLen2, ___errorState3);
else
GenericVirtActionInvoker4< unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___list0, ___buffer1, ___bufferLen2, ___errorState3);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker4< unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___list0, ___buffer1, ___bufferLen2, ___errorState3);
else
VirtActionInvoker4< unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___list0, ___buffer1, ___bufferLen2, ___errorState3);
}
}
}
else
{
typedef void (*FunctionPointerType) (void*, unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___list0, ___buffer1, ___bufferLen2, ___errorState3, targetMethod);
}
}
}
}
// System.IAsyncResult Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_append_der_t::BeginInvoke(Mono.Unity.UnityTls/unitytls_x509list*,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* unitytls_x509list_append_der_t_BeginInvoke_m68B8C0940627CA1AA436E080A70BE1F622A820E7 (unitytls_x509list_append_der_t_tDA1C93A382058FB563F8772B119D5B598DC37A5C * __this, unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * ___list0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState3, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback4, RuntimeObject * ___object5, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (unitytls_x509list_append_der_t_BeginInvoke_m68B8C0940627CA1AA436E080A70BE1F622A820E7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[5] = {0};
__d_args[0] = ___list0;
__d_args[1] = ___buffer1;
__d_args[2] = Box(IntPtr_t_il2cpp_TypeInfo_var, &___bufferLen2);
__d_args[3] = ___errorState3;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback4, (RuntimeObject*)___object5);
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_append_der_t::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR void unitytls_x509list_append_der_t_EndInvoke_m96AFB602A6FB94D99E6AB65CE1D3C8B0B636CC6C (unitytls_x509list_append_der_t_tDA1C93A382058FB563F8772B119D5B598DC37A5C * __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
extern "C" void DelegatePInvokeWrapper_unitytls_x509list_append_t_tAB1C185C77DFD6BD96DF7909370AA1FAD6BB90AF (unitytls_x509list_append_t_tAB1C185C77DFD6BD96DF7909370AA1FAD6BB90AF * __this, unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * ___list0, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 ___cert1, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState2, const RuntimeMethod* method)
{
typedef void (CDECL *PInvokeFunc)(unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method));
// Native function invocation
il2cppPInvokeFunc(___list0, ___cert1, ___errorState2);
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_append_t::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void unitytls_x509list_append_t__ctor_m5389B48F2C2EFE1E6FDAE6FEE1FF176F28F0D02C (unitytls_x509list_append_t_tAB1C185C77DFD6BD96DF7909370AA1FAD6BB90AF * __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 Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_append_t::Invoke(Mono.Unity.UnityTls/unitytls_x509list*,Mono.Unity.UnityTls/unitytls_x509_ref,Mono.Unity.UnityTls/unitytls_errorstate*)
extern "C" IL2CPP_METHOD_ATTR void unitytls_x509list_append_t_Invoke_m172237A64036BDE6C197DA0AE6A5A08010D4F361 (unitytls_x509list_append_t_tAB1C185C77DFD6BD96DF7909370AA1FAD6BB90AF * __this, unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * ___list0, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 ___cert1, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState2, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
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) (unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___list0, ___cert1, ___errorState2, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___list0, ___cert1, ___errorState2, 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 (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) (unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___list0, ___cert1, ___errorState2, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker3< unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___list0, ___cert1, ___errorState2);
else
GenericVirtActionInvoker3< unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___list0, ___cert1, ___errorState2);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker3< unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___list0, ___cert1, ___errorState2);
else
VirtActionInvoker3< unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___list0, ___cert1, ___errorState2);
}
}
}
else
{
typedef void (*FunctionPointerType) (void*, unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___list0, ___cert1, ___errorState2, targetMethod);
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
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) (unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___list0, ___cert1, ___errorState2, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___list0, ___cert1, ___errorState2, 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 (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) (unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___list0, ___cert1, ___errorState2, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker3< unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___list0, ___cert1, ___errorState2);
else
GenericVirtActionInvoker3< unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___list0, ___cert1, ___errorState2);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker3< unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___list0, ___cert1, ___errorState2);
else
VirtActionInvoker3< unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___list0, ___cert1, ___errorState2);
}
}
}
else
{
typedef void (*FunctionPointerType) (void*, unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___list0, ___cert1, ___errorState2, targetMethod);
}
}
}
}
// System.IAsyncResult Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_append_t::BeginInvoke(Mono.Unity.UnityTls/unitytls_x509list*,Mono.Unity.UnityTls/unitytls_x509_ref,Mono.Unity.UnityTls/unitytls_errorstate*,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* unitytls_x509list_append_t_BeginInvoke_mD3FEDD5F023253232CC8C48EF5CF2120ABD7147B (unitytls_x509list_append_t_tAB1C185C77DFD6BD96DF7909370AA1FAD6BB90AF * __this, unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * ___list0, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 ___cert1, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState2, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback3, RuntimeObject * ___object4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (unitytls_x509list_append_t_BeginInvoke_mD3FEDD5F023253232CC8C48EF5CF2120ABD7147B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[4] = {0};
__d_args[0] = ___list0;
__d_args[1] = Box(unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7_il2cpp_TypeInfo_var, &___cert1);
__d_args[2] = ___errorState2;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback3, (RuntimeObject*)___object4);
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_append_t::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR void unitytls_x509list_append_t_EndInvoke_m2DE3744B3B3919E5ABED5661FC2FA2445B933EF3 (unitytls_x509list_append_t_tAB1C185C77DFD6BD96DF7909370AA1FAD6BB90AF * __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
extern "C" unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * DelegatePInvokeWrapper_unitytls_x509list_create_t_tC040C2CF47D5426B7F6B1D6A2751507DC681CFF3 (unitytls_x509list_create_t_tC040C2CF47D5426B7F6B1D6A2751507DC681CFF3 * __this, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState0, const RuntimeMethod* method)
{
typedef unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * (CDECL *PInvokeFunc)(unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method));
// Native function invocation
unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * returnValue = il2cppPInvokeFunc(___errorState0);
return returnValue;
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_create_t::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void unitytls_x509list_create_t__ctor_m35027CAFF58C468A07D199EA8E760FA83ECC1497 (unitytls_x509list_create_t_tC040C2CF47D5426B7F6B1D6A2751507DC681CFF3 * __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);
}
// Mono.Unity.UnityTls/unitytls_x509list* Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_create_t::Invoke(Mono.Unity.UnityTls/unitytls_errorstate*)
extern "C" IL2CPP_METHOD_ATTR unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * unitytls_x509list_create_t_Invoke_m45B75F9286D2C1DC14AECFA258F419C3A1989A79 (unitytls_x509list_create_t_tC040C2CF47D5426B7F6B1D6A2751507DC681CFF3 * __this, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState0, const RuntimeMethod* method)
{
unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * result = NULL;
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
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 unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * (*FunctionPointerType) (unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___errorState0, targetMethod);
}
else
{
// closed
typedef unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * (*FunctionPointerType) (void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___errorState0, 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 (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 unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * (*FunctionPointerType) (unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___errorState0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___errorState0);
else
result = GenericVirtFuncInvoker1< unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___errorState0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___errorState0);
else
result = VirtFuncInvoker1< unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___errorState0);
}
}
}
else
{
typedef unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * (*FunctionPointerType) (void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___errorState0, targetMethod);
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
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 unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * (*FunctionPointerType) (unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___errorState0, targetMethod);
}
else
{
// closed
typedef unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * (*FunctionPointerType) (void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___errorState0, 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 (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 unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * (*FunctionPointerType) (unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___errorState0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker1< unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___errorState0);
else
result = GenericVirtFuncInvoker1< unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___errorState0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker1< unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___errorState0);
else
result = VirtFuncInvoker1< unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___errorState0);
}
}
}
else
{
typedef unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * (*FunctionPointerType) (void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___errorState0, targetMethod);
}
}
}
return result;
}
// System.IAsyncResult Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_create_t::BeginInvoke(Mono.Unity.UnityTls/unitytls_errorstate*,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* unitytls_x509list_create_t_BeginInvoke_mE85F1C402447D1CC543B2609C2BFD081F2954DC5 (unitytls_x509list_create_t_tC040C2CF47D5426B7F6B1D6A2751507DC681CFF3 * __this, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
void *__d_args[2] = {0};
__d_args[0] = ___errorState0;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// Mono.Unity.UnityTls/unitytls_x509list* Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_create_t::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * unitytls_x509list_create_t_EndInvoke_m2D64E81EA9962E8269292F49D86CBA9A45D8021F (unitytls_x509list_create_t_tC040C2CF47D5426B7F6B1D6A2751507DC681CFF3 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return (unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *)__result;
}
#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
extern "C" void DelegatePInvokeWrapper_unitytls_x509list_free_t_tE3FC523507F07BD9901D84E9F6968CD8A583FF09 (unitytls_x509list_free_t_tE3FC523507F07BD9901D84E9F6968CD8A583FF09 * __this, unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * ___list0, const RuntimeMethod* method)
{
typedef void (CDECL *PInvokeFunc)(unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method));
// Native function invocation
il2cppPInvokeFunc(___list0);
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_free_t::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void unitytls_x509list_free_t__ctor_mE08ED3D0B7810758779C72A6882354D36E51F126 (unitytls_x509list_free_t_tE3FC523507F07BD9901D84E9F6968CD8A583FF09 * __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 Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_free_t::Invoke(Mono.Unity.UnityTls/unitytls_x509list*)
extern "C" IL2CPP_METHOD_ATTR void unitytls_x509list_free_t_Invoke_m733759A5A94705388D233DB23FDFECAE2ADACDF0 (unitytls_x509list_free_t_tE3FC523507F07BD9901D84E9F6968CD8A583FF09 * __this, unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * ___list0, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
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) (unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___list0, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___list0, 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 (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) (unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___list0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * >::Invoke(targetMethod, targetThis, ___list0);
else
GenericVirtActionInvoker1< unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * >::Invoke(targetMethod, targetThis, ___list0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___list0);
else
VirtActionInvoker1< unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___list0);
}
}
}
else
{
typedef void (*FunctionPointerType) (void*, unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___list0, targetMethod);
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
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) (unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___list0, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___list0, 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 (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) (unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___list0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * >::Invoke(targetMethod, targetThis, ___list0);
else
GenericVirtActionInvoker1< unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * >::Invoke(targetMethod, targetThis, ___list0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___list0);
else
VirtActionInvoker1< unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___list0);
}
}
}
else
{
typedef void (*FunctionPointerType) (void*, unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___list0, targetMethod);
}
}
}
}
// System.IAsyncResult Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_free_t::BeginInvoke(Mono.Unity.UnityTls/unitytls_x509list*,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* unitytls_x509list_free_t_BeginInvoke_m1A31DC10E7A495BCB31B46F413FCB7431E408CD7 (unitytls_x509list_free_t_tE3FC523507F07BD9901D84E9F6968CD8A583FF09 * __this, unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * ___list0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
void *__d_args[2] = {0};
__d_args[0] = ___list0;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_free_t::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR void unitytls_x509list_free_t_EndInvoke_m4BD735662CB6AC985D4AC833288191948ABD9182 (unitytls_x509list_free_t_tE3FC523507F07BD9901D84E9F6968CD8A583FF09 * __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
extern "C" unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 DelegatePInvokeWrapper_unitytls_x509list_get_ref_t_t1FAB0CD82E536E0C9EB5255B145FC5AF434B3986 (unitytls_x509list_get_ref_t_t1FAB0CD82E536E0C9EB5255B145FC5AF434B3986 * __this, unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * ___list0, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState1, const RuntimeMethod* method)
{
typedef unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 (CDECL *PInvokeFunc)(unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method));
// Native function invocation
unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 returnValue = il2cppPInvokeFunc(___list0, ___errorState1);
return returnValue;
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_get_ref_t::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void unitytls_x509list_get_ref_t__ctor_m2E1FC1BBC79EB53428998A9DC5299F1DCDF6BBE8 (unitytls_x509list_get_ref_t_t1FAB0CD82E536E0C9EB5255B145FC5AF434B3986 * __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);
}
// Mono.Unity.UnityTls/unitytls_x509list_ref Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_get_ref_t::Invoke(Mono.Unity.UnityTls/unitytls_x509list*,Mono.Unity.UnityTls/unitytls_errorstate*)
extern "C" IL2CPP_METHOD_ATTR unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 unitytls_x509list_get_ref_t_Invoke_mDCA9357333DA8B614E6C0F68922B3E5306A6534C (unitytls_x509list_get_ref_t_t1FAB0CD82E536E0C9EB5255B145FC5AF434B3986 * __this, unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * ___list0, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState1, const RuntimeMethod* method)
{
unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 result;
memset(&result, 0, sizeof(result));
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
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 unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 (*FunctionPointerType) (unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___list0, ___errorState1, targetMethod);
}
else
{
// closed
typedef unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 (*FunctionPointerType) (void*, unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___list0, ___errorState1, 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 (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 unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 (*FunctionPointerType) (unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___list0, ___errorState1, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker2< unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___list0, ___errorState1);
else
result = GenericVirtFuncInvoker2< unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___list0, ___errorState1);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker2< unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___list0, ___errorState1);
else
result = VirtFuncInvoker2< unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___list0, ___errorState1);
}
}
}
else
{
typedef unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 (*FunctionPointerType) (void*, unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___list0, ___errorState1, targetMethod);
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
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 unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 (*FunctionPointerType) (unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___list0, ___errorState1, targetMethod);
}
else
{
// closed
typedef unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 (*FunctionPointerType) (void*, unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___list0, ___errorState1, 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 (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 unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 (*FunctionPointerType) (unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___list0, ___errorState1, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker2< unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___list0, ___errorState1);
else
result = GenericVirtFuncInvoker2< unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___list0, ___errorState1);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker2< unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___list0, ___errorState1);
else
result = VirtFuncInvoker2< unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___list0, ___errorState1);
}
}
}
else
{
typedef unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 (*FunctionPointerType) (void*, unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___list0, ___errorState1, targetMethod);
}
}
}
return result;
}
// System.IAsyncResult Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_get_ref_t::BeginInvoke(Mono.Unity.UnityTls/unitytls_x509list*,Mono.Unity.UnityTls/unitytls_errorstate*,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* unitytls_x509list_get_ref_t_BeginInvoke_mCF97569A8246EA8445ADA1DE245B36DFAFB91446 (unitytls_x509list_get_ref_t_t1FAB0CD82E536E0C9EB5255B145FC5AF434B3986 * __this, unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * ___list0, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState1, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method)
{
void *__d_args[3] = {0};
__d_args[0] = ___list0;
__d_args[1] = ___errorState1;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);
}
// Mono.Unity.UnityTls/unitytls_x509list_ref Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_get_ref_t::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 unitytls_x509list_get_ref_t_EndInvoke_m3E4E37BCCAE29768A633C69FA2CE74EC67945A98 (unitytls_x509list_get_ref_t_t1FAB0CD82E536E0C9EB5255B145FC5AF434B3986 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 *)UnBox ((RuntimeObject*)__result);
}
#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
extern "C" unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 DelegatePInvokeWrapper_unitytls_x509list_get_x509_t_t028BB06EEB95E8F62511F2301B90D8181F4FFDB5 (unitytls_x509list_get_x509_t_t028BB06EEB95E8F62511F2301B90D8181F4FFDB5 * __this, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 ___list0, intptr_t ___index1, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState2, const RuntimeMethod* method)
{
typedef unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 (CDECL *PInvokeFunc)(unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method));
// Native function invocation
unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 returnValue = il2cppPInvokeFunc(___list0, ___index1, ___errorState2);
return returnValue;
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_get_x509_t::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void unitytls_x509list_get_x509_t__ctor_m8AF5F946C60F4AD11DCF53EB103FAB5556828421 (unitytls_x509list_get_x509_t_t028BB06EEB95E8F62511F2301B90D8181F4FFDB5 * __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);
}
// Mono.Unity.UnityTls/unitytls_x509_ref Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_get_x509_t::Invoke(Mono.Unity.UnityTls/unitytls_x509list_ref,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*)
extern "C" IL2CPP_METHOD_ATTR unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 unitytls_x509list_get_x509_t_Invoke_m25FDF33A713C330AF882B49E05C79B77B5CF7A22 (unitytls_x509list_get_x509_t_t028BB06EEB95E8F62511F2301B90D8181F4FFDB5 * __this, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 ___list0, intptr_t ___index1, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState2, const RuntimeMethod* method)
{
unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 result;
memset(&result, 0, sizeof(result));
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
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 unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 (*FunctionPointerType) (unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___list0, ___index1, ___errorState2, targetMethod);
}
else
{
// closed
typedef unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 (*FunctionPointerType) (void*, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___list0, ___index1, ___errorState2, 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 (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 unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 (*FunctionPointerType) (unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___list0, ___index1, ___errorState2, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker3< unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___list0, ___index1, ___errorState2);
else
result = GenericVirtFuncInvoker3< unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___list0, ___index1, ___errorState2);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker3< unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___list0, ___index1, ___errorState2);
else
result = VirtFuncInvoker3< unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___list0, ___index1, ___errorState2);
}
}
}
else
{
typedef unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 (*FunctionPointerType) (void*, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___list0, ___index1, ___errorState2, targetMethod);
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
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 unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 (*FunctionPointerType) (unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___list0, ___index1, ___errorState2, targetMethod);
}
else
{
// closed
typedef unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 (*FunctionPointerType) (void*, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___list0, ___index1, ___errorState2, 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 (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 unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 (*FunctionPointerType) (unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___list0, ___index1, ___errorState2, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker3< unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___list0, ___index1, ___errorState2);
else
result = GenericVirtFuncInvoker3< unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___list0, ___index1, ___errorState2);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker3< unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___list0, ___index1, ___errorState2);
else
result = VirtFuncInvoker3< unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___list0, ___index1, ___errorState2);
}
}
}
else
{
typedef unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 (*FunctionPointerType) (void*, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___list0, ___index1, ___errorState2, targetMethod);
}
}
}
return result;
}
// System.IAsyncResult Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_get_x509_t::BeginInvoke(Mono.Unity.UnityTls/unitytls_x509list_ref,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* unitytls_x509list_get_x509_t_BeginInvoke_m5F1D80B8C015B87B91AE11A27A01ED586E9BFFEF (unitytls_x509list_get_x509_t_t028BB06EEB95E8F62511F2301B90D8181F4FFDB5 * __this, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 ___list0, intptr_t ___index1, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState2, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback3, RuntimeObject * ___object4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (unitytls_x509list_get_x509_t_BeginInvoke_m5F1D80B8C015B87B91AE11A27A01ED586E9BFFEF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[4] = {0};
__d_args[0] = Box(unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6_il2cpp_TypeInfo_var, &___list0);
__d_args[1] = Box(IntPtr_t_il2cpp_TypeInfo_var, &___index1);
__d_args[2] = ___errorState2;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback3, (RuntimeObject*)___object4);
}
// Mono.Unity.UnityTls/unitytls_x509_ref Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509list_get_x509_t::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 unitytls_x509list_get_x509_t_EndInvoke_m32FF88756C519F7C7F53E36198C352B2DE96FECF (unitytls_x509list_get_x509_t_t028BB06EEB95E8F62511F2301B90D8181F4FFDB5 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 *)UnBox ((RuntimeObject*)__result);
}
#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
extern "C" uint32_t DelegatePInvokeWrapper_unitytls_x509verify_default_ca_t_t4BACB6B49AA85C025AF9B18B3F30F63C9881DE2D (unitytls_x509verify_default_ca_t_t4BACB6B49AA85C025AF9B18B3F30F63C9881DE2D * __this, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 ___chain0, uint8_t* ___cn1, intptr_t ___cnLen2, unitytls_x509verify_callback_t90C02C529DB2B9F434C18797BACC456BCB5400A9 * ___cb3, void* ___userData4, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState5, const RuntimeMethod* method)
{
typedef uint32_t (CDECL *PInvokeFunc)(unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , uint8_t*, intptr_t, Il2CppMethodPointer, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method));
// Marshaling of parameter '___cb3' to native representation
Il2CppMethodPointer ____cb3_marshaled = NULL;
____cb3_marshaled = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(___cb3));
// Native function invocation
uint32_t returnValue = il2cppPInvokeFunc(___chain0, ___cn1, ___cnLen2, ____cb3_marshaled, ___userData4, ___errorState5);
return returnValue;
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509verify_default_ca_t::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void unitytls_x509verify_default_ca_t__ctor_m9030DF501A2B0AE32F059AF6838EAF2A5897C8E0 (unitytls_x509verify_default_ca_t_t4BACB6B49AA85C025AF9B18B3F30F63C9881DE2D * __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);
}
// Mono.Unity.UnityTls/unitytls_x509verify_result Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509verify_default_ca_t::Invoke(Mono.Unity.UnityTls/unitytls_x509list_ref,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_x509verify_callback,System.Void*,Mono.Unity.UnityTls/unitytls_errorstate*)
extern "C" IL2CPP_METHOD_ATTR uint32_t unitytls_x509verify_default_ca_t_Invoke_mE5D523AFD08CCE9A427389F17611D56C6D905B98 (unitytls_x509verify_default_ca_t_t4BACB6B49AA85C025AF9B18B3F30F63C9881DE2D * __this, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 ___chain0, uint8_t* ___cn1, intptr_t ___cnLen2, unitytls_x509verify_callback_t90C02C529DB2B9F434C18797BACC456BCB5400A9 * ___cb3, void* ___userData4, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState5, const RuntimeMethod* method)
{
uint32_t result = 0;
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
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 == 6)
{
// open
typedef uint32_t (*FunctionPointerType) (unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , uint8_t*, intptr_t, unitytls_x509verify_callback_t90C02C529DB2B9F434C18797BACC456BCB5400A9 *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___chain0, ___cn1, ___cnLen2, ___cb3, ___userData4, ___errorState5, targetMethod);
}
else
{
// closed
typedef uint32_t (*FunctionPointerType) (void*, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , uint8_t*, intptr_t, unitytls_x509verify_callback_t90C02C529DB2B9F434C18797BACC456BCB5400A9 *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___chain0, ___cn1, ___cnLen2, ___cb3, ___userData4, ___errorState5, 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 (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 uint32_t (*FunctionPointerType) (unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , uint8_t*, intptr_t, unitytls_x509verify_callback_t90C02C529DB2B9F434C18797BACC456BCB5400A9 *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___chain0, ___cn1, ___cnLen2, ___cb3, ___userData4, ___errorState5, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker6< uint32_t, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , uint8_t*, intptr_t, unitytls_x509verify_callback_t90C02C529DB2B9F434C18797BACC456BCB5400A9 *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___chain0, ___cn1, ___cnLen2, ___cb3, ___userData4, ___errorState5);
else
result = GenericVirtFuncInvoker6< uint32_t, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , uint8_t*, intptr_t, unitytls_x509verify_callback_t90C02C529DB2B9F434C18797BACC456BCB5400A9 *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___chain0, ___cn1, ___cnLen2, ___cb3, ___userData4, ___errorState5);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker6< uint32_t, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , uint8_t*, intptr_t, unitytls_x509verify_callback_t90C02C529DB2B9F434C18797BACC456BCB5400A9 *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___chain0, ___cn1, ___cnLen2, ___cb3, ___userData4, ___errorState5);
else
result = VirtFuncInvoker6< uint32_t, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , uint8_t*, intptr_t, unitytls_x509verify_callback_t90C02C529DB2B9F434C18797BACC456BCB5400A9 *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___chain0, ___cn1, ___cnLen2, ___cb3, ___userData4, ___errorState5);
}
}
}
else
{
typedef uint32_t (*FunctionPointerType) (void*, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , uint8_t*, intptr_t, unitytls_x509verify_callback_t90C02C529DB2B9F434C18797BACC456BCB5400A9 *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___chain0, ___cn1, ___cnLen2, ___cb3, ___userData4, ___errorState5, targetMethod);
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
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 == 6)
{
// open
typedef uint32_t (*FunctionPointerType) (unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , uint8_t*, intptr_t, unitytls_x509verify_callback_t90C02C529DB2B9F434C18797BACC456BCB5400A9 *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___chain0, ___cn1, ___cnLen2, ___cb3, ___userData4, ___errorState5, targetMethod);
}
else
{
// closed
typedef uint32_t (*FunctionPointerType) (void*, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , uint8_t*, intptr_t, unitytls_x509verify_callback_t90C02C529DB2B9F434C18797BACC456BCB5400A9 *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___chain0, ___cn1, ___cnLen2, ___cb3, ___userData4, ___errorState5, 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 (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 uint32_t (*FunctionPointerType) (unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , uint8_t*, intptr_t, unitytls_x509verify_callback_t90C02C529DB2B9F434C18797BACC456BCB5400A9 *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___chain0, ___cn1, ___cnLen2, ___cb3, ___userData4, ___errorState5, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker6< uint32_t, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , uint8_t*, intptr_t, unitytls_x509verify_callback_t90C02C529DB2B9F434C18797BACC456BCB5400A9 *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___chain0, ___cn1, ___cnLen2, ___cb3, ___userData4, ___errorState5);
else
result = GenericVirtFuncInvoker6< uint32_t, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , uint8_t*, intptr_t, unitytls_x509verify_callback_t90C02C529DB2B9F434C18797BACC456BCB5400A9 *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___chain0, ___cn1, ___cnLen2, ___cb3, ___userData4, ___errorState5);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker6< uint32_t, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , uint8_t*, intptr_t, unitytls_x509verify_callback_t90C02C529DB2B9F434C18797BACC456BCB5400A9 *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___chain0, ___cn1, ___cnLen2, ___cb3, ___userData4, ___errorState5);
else
result = VirtFuncInvoker6< uint32_t, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , uint8_t*, intptr_t, unitytls_x509verify_callback_t90C02C529DB2B9F434C18797BACC456BCB5400A9 *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___chain0, ___cn1, ___cnLen2, ___cb3, ___userData4, ___errorState5);
}
}
}
else
{
typedef uint32_t (*FunctionPointerType) (void*, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , uint8_t*, intptr_t, unitytls_x509verify_callback_t90C02C529DB2B9F434C18797BACC456BCB5400A9 *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___chain0, ___cn1, ___cnLen2, ___cb3, ___userData4, ___errorState5, targetMethod);
}
}
}
return result;
}
// System.IAsyncResult Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509verify_default_ca_t::BeginInvoke(Mono.Unity.UnityTls/unitytls_x509list_ref,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_x509verify_callback,System.Void*,Mono.Unity.UnityTls/unitytls_errorstate*,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* unitytls_x509verify_default_ca_t_BeginInvoke_m732CB4DFD706DEA2D1AFDD66A25C7A0A4F59641C (unitytls_x509verify_default_ca_t_t4BACB6B49AA85C025AF9B18B3F30F63C9881DE2D * __this, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 ___chain0, uint8_t* ___cn1, intptr_t ___cnLen2, unitytls_x509verify_callback_t90C02C529DB2B9F434C18797BACC456BCB5400A9 * ___cb3, void* ___userData4, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState5, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback6, RuntimeObject * ___object7, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (unitytls_x509verify_default_ca_t_BeginInvoke_m732CB4DFD706DEA2D1AFDD66A25C7A0A4F59641C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[7] = {0};
__d_args[0] = Box(unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6_il2cpp_TypeInfo_var, &___chain0);
__d_args[1] = ___cn1;
__d_args[2] = Box(IntPtr_t_il2cpp_TypeInfo_var, &___cnLen2);
__d_args[3] = ___cb3;
__d_args[4] = ___userData4;
__d_args[5] = ___errorState5;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback6, (RuntimeObject*)___object7);
}
// Mono.Unity.UnityTls/unitytls_x509verify_result Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509verify_default_ca_t::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR uint32_t unitytls_x509verify_default_ca_t_EndInvoke_m65702493A38FA3F2598DD0D5F41A2849C4EE532D (unitytls_x509verify_default_ca_t_t4BACB6B49AA85C025AF9B18B3F30F63C9881DE2D * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint32_t*)UnBox ((RuntimeObject*)__result);
}
#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
extern "C" uint32_t DelegatePInvokeWrapper_unitytls_x509verify_explicit_ca_t_t6C8BE964C5EE9B24D3734F028EFCD83F5893D2E6 (unitytls_x509verify_explicit_ca_t_t6C8BE964C5EE9B24D3734F028EFCD83F5893D2E6 * __this, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 ___chain0, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 ___trustCA1, uint8_t* ___cn2, intptr_t ___cnLen3, unitytls_x509verify_callback_t90C02C529DB2B9F434C18797BACC456BCB5400A9 * ___cb4, void* ___userData5, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState6, const RuntimeMethod* method)
{
typedef uint32_t (CDECL *PInvokeFunc)(unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , uint8_t*, intptr_t, Il2CppMethodPointer, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method));
// Marshaling of parameter '___cb4' to native representation
Il2CppMethodPointer ____cb4_marshaled = NULL;
____cb4_marshaled = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(___cb4));
// Native function invocation
uint32_t returnValue = il2cppPInvokeFunc(___chain0, ___trustCA1, ___cn2, ___cnLen3, ____cb4_marshaled, ___userData5, ___errorState6);
return returnValue;
}
// System.Void Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509verify_explicit_ca_t::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void unitytls_x509verify_explicit_ca_t__ctor_m4008497F04CFD72DB70FC203A50B023CD8F17864 (unitytls_x509verify_explicit_ca_t_t6C8BE964C5EE9B24D3734F028EFCD83F5893D2E6 * __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);
}
// Mono.Unity.UnityTls/unitytls_x509verify_result Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509verify_explicit_ca_t::Invoke(Mono.Unity.UnityTls/unitytls_x509list_ref,Mono.Unity.UnityTls/unitytls_x509list_ref,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_x509verify_callback,System.Void*,Mono.Unity.UnityTls/unitytls_errorstate*)
extern "C" IL2CPP_METHOD_ATTR uint32_t unitytls_x509verify_explicit_ca_t_Invoke_mCC06B1AF3BCD90C24E3CA05A785528588C7CCEB5 (unitytls_x509verify_explicit_ca_t_t6C8BE964C5EE9B24D3734F028EFCD83F5893D2E6 * __this, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 ___chain0, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 ___trustCA1, uint8_t* ___cn2, intptr_t ___cnLen3, unitytls_x509verify_callback_t90C02C529DB2B9F434C18797BACC456BCB5400A9 * ___cb4, void* ___userData5, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState6, const RuntimeMethod* method)
{
uint32_t result = 0;
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
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 == 7)
{
// open
typedef uint32_t (*FunctionPointerType) (unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , uint8_t*, intptr_t, unitytls_x509verify_callback_t90C02C529DB2B9F434C18797BACC456BCB5400A9 *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___chain0, ___trustCA1, ___cn2, ___cnLen3, ___cb4, ___userData5, ___errorState6, targetMethod);
}
else
{
// closed
typedef uint32_t (*FunctionPointerType) (void*, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , uint8_t*, intptr_t, unitytls_x509verify_callback_t90C02C529DB2B9F434C18797BACC456BCB5400A9 *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___chain0, ___trustCA1, ___cn2, ___cnLen3, ___cb4, ___userData5, ___errorState6, 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 (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 uint32_t (*FunctionPointerType) (unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , uint8_t*, intptr_t, unitytls_x509verify_callback_t90C02C529DB2B9F434C18797BACC456BCB5400A9 *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___chain0, ___trustCA1, ___cn2, ___cnLen3, ___cb4, ___userData5, ___errorState6, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker7< uint32_t, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , uint8_t*, intptr_t, unitytls_x509verify_callback_t90C02C529DB2B9F434C18797BACC456BCB5400A9 *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___chain0, ___trustCA1, ___cn2, ___cnLen3, ___cb4, ___userData5, ___errorState6);
else
result = GenericVirtFuncInvoker7< uint32_t, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , uint8_t*, intptr_t, unitytls_x509verify_callback_t90C02C529DB2B9F434C18797BACC456BCB5400A9 *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___chain0, ___trustCA1, ___cn2, ___cnLen3, ___cb4, ___userData5, ___errorState6);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker7< uint32_t, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , uint8_t*, intptr_t, unitytls_x509verify_callback_t90C02C529DB2B9F434C18797BACC456BCB5400A9 *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___chain0, ___trustCA1, ___cn2, ___cnLen3, ___cb4, ___userData5, ___errorState6);
else
result = VirtFuncInvoker7< uint32_t, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , uint8_t*, intptr_t, unitytls_x509verify_callback_t90C02C529DB2B9F434C18797BACC456BCB5400A9 *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___chain0, ___trustCA1, ___cn2, ___cnLen3, ___cb4, ___userData5, ___errorState6);
}
}
}
else
{
typedef uint32_t (*FunctionPointerType) (void*, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , uint8_t*, intptr_t, unitytls_x509verify_callback_t90C02C529DB2B9F434C18797BACC456BCB5400A9 *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___chain0, ___trustCA1, ___cn2, ___cnLen3, ___cb4, ___userData5, ___errorState6, targetMethod);
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
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 == 7)
{
// open
typedef uint32_t (*FunctionPointerType) (unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , uint8_t*, intptr_t, unitytls_x509verify_callback_t90C02C529DB2B9F434C18797BACC456BCB5400A9 *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___chain0, ___trustCA1, ___cn2, ___cnLen3, ___cb4, ___userData5, ___errorState6, targetMethod);
}
else
{
// closed
typedef uint32_t (*FunctionPointerType) (void*, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , uint8_t*, intptr_t, unitytls_x509verify_callback_t90C02C529DB2B9F434C18797BACC456BCB5400A9 *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___chain0, ___trustCA1, ___cn2, ___cnLen3, ___cb4, ___userData5, ___errorState6, 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 (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 uint32_t (*FunctionPointerType) (unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , uint8_t*, intptr_t, unitytls_x509verify_callback_t90C02C529DB2B9F434C18797BACC456BCB5400A9 *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___chain0, ___trustCA1, ___cn2, ___cnLen3, ___cb4, ___userData5, ___errorState6, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker7< uint32_t, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , uint8_t*, intptr_t, unitytls_x509verify_callback_t90C02C529DB2B9F434C18797BACC456BCB5400A9 *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___chain0, ___trustCA1, ___cn2, ___cnLen3, ___cb4, ___userData5, ___errorState6);
else
result = GenericVirtFuncInvoker7< uint32_t, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , uint8_t*, intptr_t, unitytls_x509verify_callback_t90C02C529DB2B9F434C18797BACC456BCB5400A9 *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___chain0, ___trustCA1, ___cn2, ___cnLen3, ___cb4, ___userData5, ___errorState6);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker7< uint32_t, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , uint8_t*, intptr_t, unitytls_x509verify_callback_t90C02C529DB2B9F434C18797BACC456BCB5400A9 *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___chain0, ___trustCA1, ___cn2, ___cnLen3, ___cb4, ___userData5, ___errorState6);
else
result = VirtFuncInvoker7< uint32_t, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , uint8_t*, intptr_t, unitytls_x509verify_callback_t90C02C529DB2B9F434C18797BACC456BCB5400A9 *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___chain0, ___trustCA1, ___cn2, ___cnLen3, ___cb4, ___userData5, ___errorState6);
}
}
}
else
{
typedef uint32_t (*FunctionPointerType) (void*, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , uint8_t*, intptr_t, unitytls_x509verify_callback_t90C02C529DB2B9F434C18797BACC456BCB5400A9 *, void*, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___chain0, ___trustCA1, ___cn2, ___cnLen3, ___cb4, ___userData5, ___errorState6, targetMethod);
}
}
}
return result;
}
// System.IAsyncResult Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509verify_explicit_ca_t::BeginInvoke(Mono.Unity.UnityTls/unitytls_x509list_ref,Mono.Unity.UnityTls/unitytls_x509list_ref,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_x509verify_callback,System.Void*,Mono.Unity.UnityTls/unitytls_errorstate*,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* unitytls_x509verify_explicit_ca_t_BeginInvoke_m5A0BBE08CCACF01F690B9919087359A9FF7CF468 (unitytls_x509verify_explicit_ca_t_t6C8BE964C5EE9B24D3734F028EFCD83F5893D2E6 * __this, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 ___chain0, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 ___trustCA1, uint8_t* ___cn2, intptr_t ___cnLen3, unitytls_x509verify_callback_t90C02C529DB2B9F434C18797BACC456BCB5400A9 * ___cb4, void* ___userData5, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState6, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback7, RuntimeObject * ___object8, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (unitytls_x509verify_explicit_ca_t_BeginInvoke_m5A0BBE08CCACF01F690B9919087359A9FF7CF468_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[8] = {0};
__d_args[0] = Box(unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6_il2cpp_TypeInfo_var, &___chain0);
__d_args[1] = Box(unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6_il2cpp_TypeInfo_var, &___trustCA1);
__d_args[2] = ___cn2;
__d_args[3] = Box(IntPtr_t_il2cpp_TypeInfo_var, &___cnLen3);
__d_args[4] = ___cb4;
__d_args[5] = ___userData5;
__d_args[6] = ___errorState6;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback7, (RuntimeObject*)___object8);
}
// Mono.Unity.UnityTls/unitytls_x509verify_result Mono.Unity.UnityTls/unitytls_interface_struct/unitytls_x509verify_explicit_ca_t::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR uint32_t unitytls_x509verify_explicit_ca_t_EndInvoke_m8EE4AE05BF8B13E7CD9A5818E3BA682F951584A4 (unitytls_x509verify_explicit_ca_t_t6C8BE964C5EE9B24D3734F028EFCD83F5893D2E6 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint32_t*)UnBox ((RuntimeObject*)__result);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: Mono.Unity.UnityTls/unitytls_tlsctx_callbacks
extern "C" void unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2_marshal_pinvoke(const unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2& unmarshaled, unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2_marshaled_pinvoke& marshaled)
{
marshaled.___read_0 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_read_0()));
marshaled.___write_1 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_write_1()));
marshaled.___data_2 = unmarshaled.get_data_2();
}
extern "C" void unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2_marshal_pinvoke_back(const unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2_marshaled_pinvoke& marshaled, unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2& unmarshaled)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2_pinvoke_FromNativeMethodDefinition_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
unmarshaled.set_read_0(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_read_callback_tD85E7923018681355C1D851137CEC527F04093F5>(marshaled.___read_0, unitytls_tlsctx_read_callback_tD85E7923018681355C1D851137CEC527F04093F5_il2cpp_TypeInfo_var));
unmarshaled.set_write_1(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_write_callback_tBDF40F27E011F577C3E834B14788491861F870D6>(marshaled.___write_1, unitytls_tlsctx_write_callback_tBDF40F27E011F577C3E834B14788491861F870D6_il2cpp_TypeInfo_var));
unmarshaled.set_data_2(marshaled.___data_2);
}
// Conversion method for clean up from marshalling of: Mono.Unity.UnityTls/unitytls_tlsctx_callbacks
extern "C" void unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2_marshal_pinvoke_cleanup(unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: Mono.Unity.UnityTls/unitytls_tlsctx_callbacks
extern "C" void unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2_marshal_com(const unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2& unmarshaled, unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2_marshaled_com& marshaled)
{
marshaled.___read_0 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_read_0()));
marshaled.___write_1 = il2cpp_codegen_marshal_delegate(reinterpret_cast<MulticastDelegate_t*>(unmarshaled.get_write_1()));
marshaled.___data_2 = unmarshaled.get_data_2();
}
extern "C" void unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2_marshal_com_back(const unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2_marshaled_com& marshaled, unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2& unmarshaled)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2_com_FromNativeMethodDefinition_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
unmarshaled.set_read_0(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_read_callback_tD85E7923018681355C1D851137CEC527F04093F5>(marshaled.___read_0, unitytls_tlsctx_read_callback_tD85E7923018681355C1D851137CEC527F04093F5_il2cpp_TypeInfo_var));
unmarshaled.set_write_1(il2cpp_codegen_marshal_function_ptr_to_delegate<unitytls_tlsctx_write_callback_tBDF40F27E011F577C3E834B14788491861F870D6>(marshaled.___write_1, unitytls_tlsctx_write_callback_tBDF40F27E011F577C3E834B14788491861F870D6_il2cpp_TypeInfo_var));
unmarshaled.set_data_2(marshaled.___data_2);
}
// Conversion method for clean up from marshalling of: Mono.Unity.UnityTls/unitytls_tlsctx_callbacks
extern "C" void unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2_marshal_com_cleanup(unitytls_tlsctx_callbacks_t7BB5F622E014A8EC300C578657E2B0550DA828B2_marshaled_com& marshaled)
{
}
#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
extern "C" void DelegatePInvokeWrapper_unitytls_tlsctx_certificate_callback_t55149A988CA1CE32772ACAC0031DAF4DC0F6D740 (unitytls_tlsctx_certificate_callback_t55149A988CA1CE32772ACAC0031DAF4DC0F6D740 * __this, void* ___userData0, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * ___ctx1, uint8_t* ___cn2, intptr_t ___cnLen3, unitytls_x509name_t551F433869F1BAA39C78962C7ACA1BAB9A4D6337 * ___caList4, intptr_t ___caListLen5, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 * ___chain6, unitytls_key_ref_tE908606656A7C49CA1EB734722E4C3DED7CE6E5B * ___key7, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState8, const RuntimeMethod* method)
{
typedef void (CDECL *PInvokeFunc)(void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, unitytls_x509name_t551F433869F1BAA39C78962C7ACA1BAB9A4D6337 *, intptr_t, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 *, unitytls_key_ref_tE908606656A7C49CA1EB734722E4C3DED7CE6E5B *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method));
// Native function invocation
il2cppPInvokeFunc(___userData0, ___ctx1, ___cn2, ___cnLen3, ___caList4, ___caListLen5, ___chain6, ___key7, ___errorState8);
}
// System.Void Mono.Unity.UnityTls/unitytls_tlsctx_certificate_callback::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void unitytls_tlsctx_certificate_callback__ctor_m14C613364636EF10ECCD413A6F49E975A4F4A6A2 (unitytls_tlsctx_certificate_callback_t55149A988CA1CE32772ACAC0031DAF4DC0F6D740 * __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 Mono.Unity.UnityTls/unitytls_tlsctx_certificate_callback::Invoke(System.Void*,Mono.Unity.UnityTls/unitytls_tlsctx*,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_x509name*,System.IntPtr,Mono.Unity.UnityTls/unitytls_x509list_ref*,Mono.Unity.UnityTls/unitytls_key_ref*,Mono.Unity.UnityTls/unitytls_errorstate*)
extern "C" IL2CPP_METHOD_ATTR void unitytls_tlsctx_certificate_callback_Invoke_mA90DE4AD701A89C12AECBE415FBAB506DCF66C12 (unitytls_tlsctx_certificate_callback_t55149A988CA1CE32772ACAC0031DAF4DC0F6D740 * __this, void* ___userData0, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * ___ctx1, uint8_t* ___cn2, intptr_t ___cnLen3, unitytls_x509name_t551F433869F1BAA39C78962C7ACA1BAB9A4D6337 * ___caList4, intptr_t ___caListLen5, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 * ___chain6, unitytls_key_ref_tE908606656A7C49CA1EB734722E4C3DED7CE6E5B * ___key7, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState8, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
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 == 9)
{
// open
typedef void (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, unitytls_x509name_t551F433869F1BAA39C78962C7ACA1BAB9A4D6337 *, intptr_t, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 *, unitytls_key_ref_tE908606656A7C49CA1EB734722E4C3DED7CE6E5B *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___userData0, ___ctx1, ___cn2, ___cnLen3, ___caList4, ___caListLen5, ___chain6, ___key7, ___errorState8, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, unitytls_x509name_t551F433869F1BAA39C78962C7ACA1BAB9A4D6337 *, intptr_t, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 *, unitytls_key_ref_tE908606656A7C49CA1EB734722E4C3DED7CE6E5B *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___userData0, ___ctx1, ___cn2, ___cnLen3, ___caList4, ___caListLen5, ___chain6, ___key7, ___errorState8, 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 (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) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, unitytls_x509name_t551F433869F1BAA39C78962C7ACA1BAB9A4D6337 *, intptr_t, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 *, unitytls_key_ref_tE908606656A7C49CA1EB734722E4C3DED7CE6E5B *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___userData0, ___ctx1, ___cn2, ___cnLen3, ___caList4, ___caListLen5, ___chain6, ___key7, ___errorState8, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker9< void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, unitytls_x509name_t551F433869F1BAA39C78962C7ACA1BAB9A4D6337 *, intptr_t, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 *, unitytls_key_ref_tE908606656A7C49CA1EB734722E4C3DED7CE6E5B *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___userData0, ___ctx1, ___cn2, ___cnLen3, ___caList4, ___caListLen5, ___chain6, ___key7, ___errorState8);
else
GenericVirtActionInvoker9< void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, unitytls_x509name_t551F433869F1BAA39C78962C7ACA1BAB9A4D6337 *, intptr_t, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 *, unitytls_key_ref_tE908606656A7C49CA1EB734722E4C3DED7CE6E5B *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___userData0, ___ctx1, ___cn2, ___cnLen3, ___caList4, ___caListLen5, ___chain6, ___key7, ___errorState8);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker9< void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, unitytls_x509name_t551F433869F1BAA39C78962C7ACA1BAB9A4D6337 *, intptr_t, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 *, unitytls_key_ref_tE908606656A7C49CA1EB734722E4C3DED7CE6E5B *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___userData0, ___ctx1, ___cn2, ___cnLen3, ___caList4, ___caListLen5, ___chain6, ___key7, ___errorState8);
else
VirtActionInvoker9< void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, unitytls_x509name_t551F433869F1BAA39C78962C7ACA1BAB9A4D6337 *, intptr_t, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 *, unitytls_key_ref_tE908606656A7C49CA1EB734722E4C3DED7CE6E5B *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___userData0, ___ctx1, ___cn2, ___cnLen3, ___caList4, ___caListLen5, ___chain6, ___key7, ___errorState8);
}
}
}
else
{
typedef void (*FunctionPointerType) (void*, void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, unitytls_x509name_t551F433869F1BAA39C78962C7ACA1BAB9A4D6337 *, intptr_t, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 *, unitytls_key_ref_tE908606656A7C49CA1EB734722E4C3DED7CE6E5B *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___userData0, ___ctx1, ___cn2, ___cnLen3, ___caList4, ___caListLen5, ___chain6, ___key7, ___errorState8, targetMethod);
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
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 == 9)
{
// open
typedef void (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, unitytls_x509name_t551F433869F1BAA39C78962C7ACA1BAB9A4D6337 *, intptr_t, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 *, unitytls_key_ref_tE908606656A7C49CA1EB734722E4C3DED7CE6E5B *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___userData0, ___ctx1, ___cn2, ___cnLen3, ___caList4, ___caListLen5, ___chain6, ___key7, ___errorState8, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, unitytls_x509name_t551F433869F1BAA39C78962C7ACA1BAB9A4D6337 *, intptr_t, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 *, unitytls_key_ref_tE908606656A7C49CA1EB734722E4C3DED7CE6E5B *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___userData0, ___ctx1, ___cn2, ___cnLen3, ___caList4, ___caListLen5, ___chain6, ___key7, ___errorState8, 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 (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) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, unitytls_x509name_t551F433869F1BAA39C78962C7ACA1BAB9A4D6337 *, intptr_t, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 *, unitytls_key_ref_tE908606656A7C49CA1EB734722E4C3DED7CE6E5B *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___userData0, ___ctx1, ___cn2, ___cnLen3, ___caList4, ___caListLen5, ___chain6, ___key7, ___errorState8, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker9< void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, unitytls_x509name_t551F433869F1BAA39C78962C7ACA1BAB9A4D6337 *, intptr_t, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 *, unitytls_key_ref_tE908606656A7C49CA1EB734722E4C3DED7CE6E5B *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___userData0, ___ctx1, ___cn2, ___cnLen3, ___caList4, ___caListLen5, ___chain6, ___key7, ___errorState8);
else
GenericVirtActionInvoker9< void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, unitytls_x509name_t551F433869F1BAA39C78962C7ACA1BAB9A4D6337 *, intptr_t, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 *, unitytls_key_ref_tE908606656A7C49CA1EB734722E4C3DED7CE6E5B *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___userData0, ___ctx1, ___cn2, ___cnLen3, ___caList4, ___caListLen5, ___chain6, ___key7, ___errorState8);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker9< void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, unitytls_x509name_t551F433869F1BAA39C78962C7ACA1BAB9A4D6337 *, intptr_t, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 *, unitytls_key_ref_tE908606656A7C49CA1EB734722E4C3DED7CE6E5B *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___userData0, ___ctx1, ___cn2, ___cnLen3, ___caList4, ___caListLen5, ___chain6, ___key7, ___errorState8);
else
VirtActionInvoker9< void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, unitytls_x509name_t551F433869F1BAA39C78962C7ACA1BAB9A4D6337 *, intptr_t, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 *, unitytls_key_ref_tE908606656A7C49CA1EB734722E4C3DED7CE6E5B *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___userData0, ___ctx1, ___cn2, ___cnLen3, ___caList4, ___caListLen5, ___chain6, ___key7, ___errorState8);
}
}
}
else
{
typedef void (*FunctionPointerType) (void*, void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, unitytls_x509name_t551F433869F1BAA39C78962C7ACA1BAB9A4D6337 *, intptr_t, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 *, unitytls_key_ref_tE908606656A7C49CA1EB734722E4C3DED7CE6E5B *, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___userData0, ___ctx1, ___cn2, ___cnLen3, ___caList4, ___caListLen5, ___chain6, ___key7, ___errorState8, targetMethod);
}
}
}
}
// System.IAsyncResult Mono.Unity.UnityTls/unitytls_tlsctx_certificate_callback::BeginInvoke(System.Void*,Mono.Unity.UnityTls/unitytls_tlsctx*,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_x509name*,System.IntPtr,Mono.Unity.UnityTls/unitytls_x509list_ref*,Mono.Unity.UnityTls/unitytls_key_ref*,Mono.Unity.UnityTls/unitytls_errorstate*,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* unitytls_tlsctx_certificate_callback_BeginInvoke_m1D0AF1A60BC715B76CD3866BF3D555E5A6BFDD3E (unitytls_tlsctx_certificate_callback_t55149A988CA1CE32772ACAC0031DAF4DC0F6D740 * __this, void* ___userData0, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * ___ctx1, uint8_t* ___cn2, intptr_t ___cnLen3, unitytls_x509name_t551F433869F1BAA39C78962C7ACA1BAB9A4D6337 * ___caList4, intptr_t ___caListLen5, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 * ___chain6, unitytls_key_ref_tE908606656A7C49CA1EB734722E4C3DED7CE6E5B * ___key7, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState8, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback9, RuntimeObject * ___object10, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (unitytls_tlsctx_certificate_callback_BeginInvoke_m1D0AF1A60BC715B76CD3866BF3D555E5A6BFDD3E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[10] = {0};
__d_args[0] = ___userData0;
__d_args[1] = ___ctx1;
__d_args[2] = ___cn2;
__d_args[3] = Box(IntPtr_t_il2cpp_TypeInfo_var, &___cnLen3);
__d_args[4] = ___caList4;
__d_args[5] = Box(IntPtr_t_il2cpp_TypeInfo_var, &___caListLen5);
__d_args[6] = ___chain6;
__d_args[7] = ___key7;
__d_args[8] = ___errorState8;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback9, (RuntimeObject*)___object10);
}
// System.Void Mono.Unity.UnityTls/unitytls_tlsctx_certificate_callback::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR void unitytls_tlsctx_certificate_callback_EndInvoke_m0485EC4825ED1374DA2C0925A2F48D7F7567E21B (unitytls_tlsctx_certificate_callback_t55149A988CA1CE32772ACAC0031DAF4DC0F6D740 * __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
#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
extern "C" intptr_t DelegatePInvokeWrapper_unitytls_tlsctx_read_callback_tD85E7923018681355C1D851137CEC527F04093F5 (unitytls_tlsctx_read_callback_tD85E7923018681355C1D851137CEC527F04093F5 * __this, void* ___userData0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState3, const RuntimeMethod* method)
{
typedef intptr_t (CDECL *PInvokeFunc)(void*, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method));
// Native function invocation
intptr_t returnValue = il2cppPInvokeFunc(___userData0, ___buffer1, ___bufferLen2, ___errorState3);
return returnValue;
}
// System.Void Mono.Unity.UnityTls/unitytls_tlsctx_read_callback::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void unitytls_tlsctx_read_callback__ctor_m52F2060B467B61401384C7E3693C6C8CDC3E46B7 (unitytls_tlsctx_read_callback_tD85E7923018681355C1D851137CEC527F04093F5 * __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.IntPtr Mono.Unity.UnityTls/unitytls_tlsctx_read_callback::Invoke(System.Void*,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*)
extern "C" IL2CPP_METHOD_ATTR intptr_t unitytls_tlsctx_read_callback_Invoke_m9C045DAC27E3496B2FA429755CFF48E11A751D29 (unitytls_tlsctx_read_callback_tD85E7923018681355C1D851137CEC527F04093F5 * __this, void* ___userData0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState3, const RuntimeMethod* method)
{
intptr_t result;
memset(&result, 0, sizeof(result));
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
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 == 4)
{
// open
typedef intptr_t (*FunctionPointerType) (void*, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___userData0, ___buffer1, ___bufferLen2, ___errorState3, targetMethod);
}
else
{
// closed
typedef intptr_t (*FunctionPointerType) (void*, void*, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___userData0, ___buffer1, ___bufferLen2, ___errorState3, 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 (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 intptr_t (*FunctionPointerType) (void*, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___userData0, ___buffer1, ___bufferLen2, ___errorState3, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker4< intptr_t, void*, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___userData0, ___buffer1, ___bufferLen2, ___errorState3);
else
result = GenericVirtFuncInvoker4< intptr_t, void*, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___userData0, ___buffer1, ___bufferLen2, ___errorState3);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker4< intptr_t, void*, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___userData0, ___buffer1, ___bufferLen2, ___errorState3);
else
result = VirtFuncInvoker4< intptr_t, void*, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___userData0, ___buffer1, ___bufferLen2, ___errorState3);
}
}
}
else
{
typedef intptr_t (*FunctionPointerType) (void*, void*, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___userData0, ___buffer1, ___bufferLen2, ___errorState3, targetMethod);
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
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 == 4)
{
// open
typedef intptr_t (*FunctionPointerType) (void*, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___userData0, ___buffer1, ___bufferLen2, ___errorState3, targetMethod);
}
else
{
// closed
typedef intptr_t (*FunctionPointerType) (void*, void*, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___userData0, ___buffer1, ___bufferLen2, ___errorState3, 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 (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 intptr_t (*FunctionPointerType) (void*, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___userData0, ___buffer1, ___bufferLen2, ___errorState3, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker4< intptr_t, void*, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___userData0, ___buffer1, ___bufferLen2, ___errorState3);
else
result = GenericVirtFuncInvoker4< intptr_t, void*, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___userData0, ___buffer1, ___bufferLen2, ___errorState3);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker4< intptr_t, void*, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___userData0, ___buffer1, ___bufferLen2, ___errorState3);
else
result = VirtFuncInvoker4< intptr_t, void*, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___userData0, ___buffer1, ___bufferLen2, ___errorState3);
}
}
}
else
{
typedef intptr_t (*FunctionPointerType) (void*, void*, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___userData0, ___buffer1, ___bufferLen2, ___errorState3, targetMethod);
}
}
}
return result;
}
// System.IAsyncResult Mono.Unity.UnityTls/unitytls_tlsctx_read_callback::BeginInvoke(System.Void*,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* unitytls_tlsctx_read_callback_BeginInvoke_mFDE9382397C181E07D075AA3FDE12B10ABC2C602 (unitytls_tlsctx_read_callback_tD85E7923018681355C1D851137CEC527F04093F5 * __this, void* ___userData0, uint8_t* ___buffer1, intptr_t ___bufferLen2, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState3, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback4, RuntimeObject * ___object5, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (unitytls_tlsctx_read_callback_BeginInvoke_mFDE9382397C181E07D075AA3FDE12B10ABC2C602_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[5] = {0};
__d_args[0] = ___userData0;
__d_args[1] = ___buffer1;
__d_args[2] = Box(IntPtr_t_il2cpp_TypeInfo_var, &___bufferLen2);
__d_args[3] = ___errorState3;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback4, (RuntimeObject*)___object5);
}
// System.IntPtr Mono.Unity.UnityTls/unitytls_tlsctx_read_callback::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR intptr_t unitytls_tlsctx_read_callback_EndInvoke_m2D814DC4681EFC9E4B0D495E8E5BBB0DCD3B62D1 (unitytls_tlsctx_read_callback_tD85E7923018681355C1D851137CEC527F04093F5 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(intptr_t*)UnBox ((RuntimeObject*)__result);
}
#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
extern "C" void DelegatePInvokeWrapper_unitytls_tlsctx_trace_callback_t2C8F0895EF17ECAC042835D68A6BFDB9CBC7F2AA (unitytls_tlsctx_trace_callback_t2C8F0895EF17ECAC042835D68A6BFDB9CBC7F2AA * __this, void* ___userData0, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * ___ctx1, uint8_t* ___traceMessage2, intptr_t ___traceMessageLen3, const RuntimeMethod* method)
{
typedef void (CDECL *PInvokeFunc)(void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method));
// Native function invocation
il2cppPInvokeFunc(___userData0, ___ctx1, ___traceMessage2, ___traceMessageLen3);
}
// System.Void Mono.Unity.UnityTls/unitytls_tlsctx_trace_callback::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void unitytls_tlsctx_trace_callback__ctor_m4C0C53E1C112C8A363A1C1AC15B5F6B7E4CD2443 (unitytls_tlsctx_trace_callback_t2C8F0895EF17ECAC042835D68A6BFDB9CBC7F2AA * __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 Mono.Unity.UnityTls/unitytls_tlsctx_trace_callback::Invoke(System.Void*,Mono.Unity.UnityTls/unitytls_tlsctx*,System.Byte*,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void unitytls_tlsctx_trace_callback_Invoke_mC657E7F4F1C6F530662F48BE16D2621029846344 (unitytls_tlsctx_trace_callback_t2C8F0895EF17ECAC042835D68A6BFDB9CBC7F2AA * __this, void* ___userData0, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * ___ctx1, uint8_t* ___traceMessage2, intptr_t ___traceMessageLen3, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
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 == 4)
{
// open
typedef void (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___userData0, ___ctx1, ___traceMessage2, ___traceMessageLen3, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___userData0, ___ctx1, ___traceMessage2, ___traceMessageLen3, 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 (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) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___userData0, ___ctx1, ___traceMessage2, ___traceMessageLen3, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker4< void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t >::Invoke(targetMethod, targetThis, ___userData0, ___ctx1, ___traceMessage2, ___traceMessageLen3);
else
GenericVirtActionInvoker4< void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t >::Invoke(targetMethod, targetThis, ___userData0, ___ctx1, ___traceMessage2, ___traceMessageLen3);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker4< void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___userData0, ___ctx1, ___traceMessage2, ___traceMessageLen3);
else
VirtActionInvoker4< void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___userData0, ___ctx1, ___traceMessage2, ___traceMessageLen3);
}
}
}
else
{
typedef void (*FunctionPointerType) (void*, void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___userData0, ___ctx1, ___traceMessage2, ___traceMessageLen3, targetMethod);
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
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 == 4)
{
// open
typedef void (*FunctionPointerType) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___userData0, ___ctx1, ___traceMessage2, ___traceMessageLen3, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___userData0, ___ctx1, ___traceMessage2, ___traceMessageLen3, 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 (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) (void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___userData0, ___ctx1, ___traceMessage2, ___traceMessageLen3, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker4< void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t >::Invoke(targetMethod, targetThis, ___userData0, ___ctx1, ___traceMessage2, ___traceMessageLen3);
else
GenericVirtActionInvoker4< void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t >::Invoke(targetMethod, targetThis, ___userData0, ___ctx1, ___traceMessage2, ___traceMessageLen3);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker4< void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___userData0, ___ctx1, ___traceMessage2, ___traceMessageLen3);
else
VirtActionInvoker4< void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___userData0, ___ctx1, ___traceMessage2, ___traceMessageLen3);
}
}
}
else
{
typedef void (*FunctionPointerType) (void*, void*, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 *, uint8_t*, intptr_t, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___userData0, ___ctx1, ___traceMessage2, ___traceMessageLen3, targetMethod);
}
}
}
}
// System.IAsyncResult Mono.Unity.UnityTls/unitytls_tlsctx_trace_callback::BeginInvoke(System.Void*,Mono.Unity.UnityTls/unitytls_tlsctx*,System.Byte*,System.IntPtr,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* unitytls_tlsctx_trace_callback_BeginInvoke_mE23C8513E935C278BCC120731072893E86729CAA (unitytls_tlsctx_trace_callback_t2C8F0895EF17ECAC042835D68A6BFDB9CBC7F2AA * __this, void* ___userData0, unitytls_tlsctx_t6B948536BDFA3AAC0135FF136ABD7779A0B96A74 * ___ctx1, uint8_t* ___traceMessage2, intptr_t ___traceMessageLen3, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback4, RuntimeObject * ___object5, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (unitytls_tlsctx_trace_callback_BeginInvoke_mE23C8513E935C278BCC120731072893E86729CAA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[5] = {0};
__d_args[0] = ___userData0;
__d_args[1] = ___ctx1;
__d_args[2] = ___traceMessage2;
__d_args[3] = Box(IntPtr_t_il2cpp_TypeInfo_var, &___traceMessageLen3);
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback4, (RuntimeObject*)___object5);
}
// System.Void Mono.Unity.UnityTls/unitytls_tlsctx_trace_callback::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR void unitytls_tlsctx_trace_callback_EndInvoke_m33865B83D223342F078061A59F8DF41311D20C94 (unitytls_tlsctx_trace_callback_t2C8F0895EF17ECAC042835D68A6BFDB9CBC7F2AA * __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
extern "C" intptr_t DelegatePInvokeWrapper_unitytls_tlsctx_write_callback_tBDF40F27E011F577C3E834B14788491861F870D6 (unitytls_tlsctx_write_callback_tBDF40F27E011F577C3E834B14788491861F870D6 * __this, void* ___userData0, uint8_t* ___data1, intptr_t ___bufferLen2, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState3, const RuntimeMethod* method)
{
typedef intptr_t (CDECL *PInvokeFunc)(void*, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method));
// Native function invocation
intptr_t returnValue = il2cppPInvokeFunc(___userData0, ___data1, ___bufferLen2, ___errorState3);
return returnValue;
}
// System.Void Mono.Unity.UnityTls/unitytls_tlsctx_write_callback::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void unitytls_tlsctx_write_callback__ctor_mC7F821EB4597E74CFC9DE7A1EA50F86CFAC2F411 (unitytls_tlsctx_write_callback_tBDF40F27E011F577C3E834B14788491861F870D6 * __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.IntPtr Mono.Unity.UnityTls/unitytls_tlsctx_write_callback::Invoke(System.Void*,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*)
extern "C" IL2CPP_METHOD_ATTR intptr_t unitytls_tlsctx_write_callback_Invoke_m9E758A0D65A39C61209306CDAB781357D956F36E (unitytls_tlsctx_write_callback_tBDF40F27E011F577C3E834B14788491861F870D6 * __this, void* ___userData0, uint8_t* ___data1, intptr_t ___bufferLen2, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState3, const RuntimeMethod* method)
{
intptr_t result;
memset(&result, 0, sizeof(result));
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
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 == 4)
{
// open
typedef intptr_t (*FunctionPointerType) (void*, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___userData0, ___data1, ___bufferLen2, ___errorState3, targetMethod);
}
else
{
// closed
typedef intptr_t (*FunctionPointerType) (void*, void*, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___userData0, ___data1, ___bufferLen2, ___errorState3, 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 (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 intptr_t (*FunctionPointerType) (void*, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___userData0, ___data1, ___bufferLen2, ___errorState3, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker4< intptr_t, void*, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___userData0, ___data1, ___bufferLen2, ___errorState3);
else
result = GenericVirtFuncInvoker4< intptr_t, void*, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___userData0, ___data1, ___bufferLen2, ___errorState3);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker4< intptr_t, void*, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___userData0, ___data1, ___bufferLen2, ___errorState3);
else
result = VirtFuncInvoker4< intptr_t, void*, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___userData0, ___data1, ___bufferLen2, ___errorState3);
}
}
}
else
{
typedef intptr_t (*FunctionPointerType) (void*, void*, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___userData0, ___data1, ___bufferLen2, ___errorState3, targetMethod);
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
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 == 4)
{
// open
typedef intptr_t (*FunctionPointerType) (void*, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___userData0, ___data1, ___bufferLen2, ___errorState3, targetMethod);
}
else
{
// closed
typedef intptr_t (*FunctionPointerType) (void*, void*, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___userData0, ___data1, ___bufferLen2, ___errorState3, 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 (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 intptr_t (*FunctionPointerType) (void*, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___userData0, ___data1, ___bufferLen2, ___errorState3, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker4< intptr_t, void*, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___userData0, ___data1, ___bufferLen2, ___errorState3);
else
result = GenericVirtFuncInvoker4< intptr_t, void*, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___userData0, ___data1, ___bufferLen2, ___errorState3);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker4< intptr_t, void*, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___userData0, ___data1, ___bufferLen2, ___errorState3);
else
result = VirtFuncInvoker4< intptr_t, void*, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___userData0, ___data1, ___bufferLen2, ___errorState3);
}
}
}
else
{
typedef intptr_t (*FunctionPointerType) (void*, void*, uint8_t*, intptr_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___userData0, ___data1, ___bufferLen2, ___errorState3, targetMethod);
}
}
}
return result;
}
// System.IAsyncResult Mono.Unity.UnityTls/unitytls_tlsctx_write_callback::BeginInvoke(System.Void*,System.Byte*,System.IntPtr,Mono.Unity.UnityTls/unitytls_errorstate*,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* unitytls_tlsctx_write_callback_BeginInvoke_m9FA442F88C3483A74C56938DD30BF36505666EDD (unitytls_tlsctx_write_callback_tBDF40F27E011F577C3E834B14788491861F870D6 * __this, void* ___userData0, uint8_t* ___data1, intptr_t ___bufferLen2, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState3, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback4, RuntimeObject * ___object5, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (unitytls_tlsctx_write_callback_BeginInvoke_m9FA442F88C3483A74C56938DD30BF36505666EDD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[5] = {0};
__d_args[0] = ___userData0;
__d_args[1] = ___data1;
__d_args[2] = Box(IntPtr_t_il2cpp_TypeInfo_var, &___bufferLen2);
__d_args[3] = ___errorState3;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback4, (RuntimeObject*)___object5);
}
// System.IntPtr Mono.Unity.UnityTls/unitytls_tlsctx_write_callback::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR intptr_t unitytls_tlsctx_write_callback_EndInvoke_m4615F5985BBDB75F9DBDE0398A854CE2315DF925 (unitytls_tlsctx_write_callback_tBDF40F27E011F577C3E834B14788491861F870D6 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(intptr_t*)UnBox ((RuntimeObject*)__result);
}
#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
extern "C" uint32_t DelegatePInvokeWrapper_unitytls_tlsctx_x509verify_callback_t5FCF0307C4AB263BC611FE396EC4D2B9CF93528A (unitytls_tlsctx_x509verify_callback_t5FCF0307C4AB263BC611FE396EC4D2B9CF93528A * __this, void* ___userData0, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 ___chain1, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState2, const RuntimeMethod* method)
{
typedef uint32_t (CDECL *PInvokeFunc)(void*, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method));
// Native function invocation
uint32_t returnValue = il2cppPInvokeFunc(___userData0, ___chain1, ___errorState2);
return returnValue;
}
// System.Void Mono.Unity.UnityTls/unitytls_tlsctx_x509verify_callback::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void unitytls_tlsctx_x509verify_callback__ctor_m50C4160D42681A80BEAD13F18294437BD96C3D0B (unitytls_tlsctx_x509verify_callback_t5FCF0307C4AB263BC611FE396EC4D2B9CF93528A * __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);
}
// Mono.Unity.UnityTls/unitytls_x509verify_result Mono.Unity.UnityTls/unitytls_tlsctx_x509verify_callback::Invoke(System.Void*,Mono.Unity.UnityTls/unitytls_x509list_ref,Mono.Unity.UnityTls/unitytls_errorstate*)
extern "C" IL2CPP_METHOD_ATTR uint32_t unitytls_tlsctx_x509verify_callback_Invoke_m63FDAF56E6D0F50E1E21DB4E3515967596071CE6 (unitytls_tlsctx_x509verify_callback_t5FCF0307C4AB263BC611FE396EC4D2B9CF93528A * __this, void* ___userData0, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 ___chain1, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState2, const RuntimeMethod* method)
{
uint32_t result = 0;
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
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 uint32_t (*FunctionPointerType) (void*, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___userData0, ___chain1, ___errorState2, targetMethod);
}
else
{
// closed
typedef uint32_t (*FunctionPointerType) (void*, void*, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___userData0, ___chain1, ___errorState2, 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 (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 uint32_t (*FunctionPointerType) (void*, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___userData0, ___chain1, ___errorState2, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker3< uint32_t, void*, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___userData0, ___chain1, ___errorState2);
else
result = GenericVirtFuncInvoker3< uint32_t, void*, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___userData0, ___chain1, ___errorState2);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker3< uint32_t, void*, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___userData0, ___chain1, ___errorState2);
else
result = VirtFuncInvoker3< uint32_t, void*, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___userData0, ___chain1, ___errorState2);
}
}
}
else
{
typedef uint32_t (*FunctionPointerType) (void*, void*, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___userData0, ___chain1, ___errorState2, targetMethod);
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
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 uint32_t (*FunctionPointerType) (void*, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___userData0, ___chain1, ___errorState2, targetMethod);
}
else
{
// closed
typedef uint32_t (*FunctionPointerType) (void*, void*, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___userData0, ___chain1, ___errorState2, 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 (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 uint32_t (*FunctionPointerType) (void*, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___userData0, ___chain1, ___errorState2, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker3< uint32_t, void*, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___userData0, ___chain1, ___errorState2);
else
result = GenericVirtFuncInvoker3< uint32_t, void*, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___userData0, ___chain1, ___errorState2);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker3< uint32_t, void*, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___userData0, ___chain1, ___errorState2);
else
result = VirtFuncInvoker3< uint32_t, void*, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___userData0, ___chain1, ___errorState2);
}
}
}
else
{
typedef uint32_t (*FunctionPointerType) (void*, void*, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 , unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___userData0, ___chain1, ___errorState2, targetMethod);
}
}
}
return result;
}
// System.IAsyncResult Mono.Unity.UnityTls/unitytls_tlsctx_x509verify_callback::BeginInvoke(System.Void*,Mono.Unity.UnityTls/unitytls_x509list_ref,Mono.Unity.UnityTls/unitytls_errorstate*,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* unitytls_tlsctx_x509verify_callback_BeginInvoke_m84DAB124121532AF9AECBA6E706A0914C4EA22F4 (unitytls_tlsctx_x509verify_callback_t5FCF0307C4AB263BC611FE396EC4D2B9CF93528A * __this, void* ___userData0, unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 ___chain1, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState2, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback3, RuntimeObject * ___object4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (unitytls_tlsctx_x509verify_callback_BeginInvoke_m84DAB124121532AF9AECBA6E706A0914C4EA22F4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[4] = {0};
__d_args[0] = ___userData0;
__d_args[1] = Box(unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6_il2cpp_TypeInfo_var, &___chain1);
__d_args[2] = ___errorState2;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback3, (RuntimeObject*)___object4);
}
// Mono.Unity.UnityTls/unitytls_x509verify_result Mono.Unity.UnityTls/unitytls_tlsctx_x509verify_callback::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR uint32_t unitytls_tlsctx_x509verify_callback_EndInvoke_mD0321EDEC2FCF98ACB6497F796021DC65DA0DEEC (unitytls_tlsctx_x509verify_callback_t5FCF0307C4AB263BC611FE396EC4D2B9CF93528A * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint32_t*)UnBox ((RuntimeObject*)__result);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
extern "C" uint32_t DelegatePInvokeWrapper_unitytls_x509verify_callback_t90C02C529DB2B9F434C18797BACC456BCB5400A9 (unitytls_x509verify_callback_t90C02C529DB2B9F434C18797BACC456BCB5400A9 * __this, void* ___userData0, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 ___cert1, uint32_t ___result2, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState3, const RuntimeMethod* method)
{
typedef uint32_t (CDECL *PInvokeFunc)(void*, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , uint32_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method));
// Native function invocation
uint32_t returnValue = il2cppPInvokeFunc(___userData0, ___cert1, ___result2, ___errorState3);
return returnValue;
}
// System.Void Mono.Unity.UnityTls/unitytls_x509verify_callback::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void unitytls_x509verify_callback__ctor_m9D04862B333145C9F179B31F08C390E0DEA4D1B0 (unitytls_x509verify_callback_t90C02C529DB2B9F434C18797BACC456BCB5400A9 * __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);
}
// Mono.Unity.UnityTls/unitytls_x509verify_result Mono.Unity.UnityTls/unitytls_x509verify_callback::Invoke(System.Void*,Mono.Unity.UnityTls/unitytls_x509_ref,Mono.Unity.UnityTls/unitytls_x509verify_result,Mono.Unity.UnityTls/unitytls_errorstate*)
extern "C" IL2CPP_METHOD_ATTR uint32_t unitytls_x509verify_callback_Invoke_m4DDE358F87398FA2F51CDD551E6F1D4CB5B48159 (unitytls_x509verify_callback_t90C02C529DB2B9F434C18797BACC456BCB5400A9 * __this, void* ___userData0, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 ___cert1, uint32_t ___result2, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState3, const RuntimeMethod* method)
{
uint32_t result = 0;
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
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 == 4)
{
// open
typedef uint32_t (*FunctionPointerType) (void*, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , uint32_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___userData0, ___cert1, ___result2, ___errorState3, targetMethod);
}
else
{
// closed
typedef uint32_t (*FunctionPointerType) (void*, void*, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , uint32_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___userData0, ___cert1, ___result2, ___errorState3, 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 (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 uint32_t (*FunctionPointerType) (void*, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , uint32_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___userData0, ___cert1, ___result2, ___errorState3, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker4< uint32_t, void*, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , uint32_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___userData0, ___cert1, ___result2, ___errorState3);
else
result = GenericVirtFuncInvoker4< uint32_t, void*, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , uint32_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___userData0, ___cert1, ___result2, ___errorState3);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker4< uint32_t, void*, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , uint32_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___userData0, ___cert1, ___result2, ___errorState3);
else
result = VirtFuncInvoker4< uint32_t, void*, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , uint32_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___userData0, ___cert1, ___result2, ___errorState3);
}
}
}
else
{
typedef uint32_t (*FunctionPointerType) (void*, void*, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , uint32_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___userData0, ___cert1, ___result2, ___errorState3, targetMethod);
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
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 == 4)
{
// open
typedef uint32_t (*FunctionPointerType) (void*, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , uint32_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___userData0, ___cert1, ___result2, ___errorState3, targetMethod);
}
else
{
// closed
typedef uint32_t (*FunctionPointerType) (void*, void*, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , uint32_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___userData0, ___cert1, ___result2, ___errorState3, 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 (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 uint32_t (*FunctionPointerType) (void*, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , uint32_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(___userData0, ___cert1, ___result2, ___errorState3, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = GenericInterfaceFuncInvoker4< uint32_t, void*, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , uint32_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___userData0, ___cert1, ___result2, ___errorState3);
else
result = GenericVirtFuncInvoker4< uint32_t, void*, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , uint32_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(targetMethod, targetThis, ___userData0, ___cert1, ___result2, ___errorState3);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
result = InterfaceFuncInvoker4< uint32_t, void*, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , uint32_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___userData0, ___cert1, ___result2, ___errorState3);
else
result = VirtFuncInvoker4< uint32_t, void*, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , uint32_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___userData0, ___cert1, ___result2, ___errorState3);
}
}
}
else
{
typedef uint32_t (*FunctionPointerType) (void*, void*, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 , uint32_t, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *, const RuntimeMethod*);
result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___userData0, ___cert1, ___result2, ___errorState3, targetMethod);
}
}
}
return result;
}
// System.IAsyncResult Mono.Unity.UnityTls/unitytls_x509verify_callback::BeginInvoke(System.Void*,Mono.Unity.UnityTls/unitytls_x509_ref,Mono.Unity.UnityTls/unitytls_x509verify_result,Mono.Unity.UnityTls/unitytls_errorstate*,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* unitytls_x509verify_callback_BeginInvoke_m34DFF04B0DD733860B3BAE73885A90C6A936E26F (unitytls_x509verify_callback_t90C02C529DB2B9F434C18797BACC456BCB5400A9 * __this, void* ___userData0, unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7 ___cert1, uint32_t ___result2, unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 * ___errorState3, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback4, RuntimeObject * ___object5, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (unitytls_x509verify_callback_BeginInvoke_m34DFF04B0DD733860B3BAE73885A90C6A936E26F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
void *__d_args[5] = {0};
__d_args[0] = ___userData0;
__d_args[1] = Box(unitytls_x509_ref_tE1ED17887226610A1328A57FF787396C9457E7B7_il2cpp_TypeInfo_var, &___cert1);
__d_args[2] = Box(unitytls_x509verify_result_t835FEA0265EFD70F0762B220C663474E03402278_il2cpp_TypeInfo_var, &___result2);
__d_args[3] = ___errorState3;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback4, (RuntimeObject*)___object5);
}
// Mono.Unity.UnityTls/unitytls_x509verify_result Mono.Unity.UnityTls/unitytls_x509verify_callback::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR uint32_t unitytls_x509verify_callback_EndInvoke_m17AC8D1886D2624D4E3E041E6931DC942C117FAB (unitytls_x509verify_callback_t90C02C529DB2B9F434C18797BACC456BCB5400A9 * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
return *(uint32_t*)UnBox ((RuntimeObject*)__result);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Mono.Security.Interface.MonoSslPolicyErrors Mono.Unity.UnityTlsConversions::VerifyResultToPolicyErrror(Mono.Unity.UnityTls/unitytls_x509verify_result)
extern "C" IL2CPP_METHOD_ATTR int32_t UnityTlsConversions_VerifyResultToPolicyErrror_m0F695E9B6732F71E1719D642E28A569B39A56BB7 (uint32_t ___verifyResult0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityTlsConversions_VerifyResultToPolicyErrror_m0F695E9B6732F71E1719D642E28A569B39A56BB7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
uint32_t L_0 = ___verifyResult0;
if (L_0)
{
goto IL_0005;
}
}
{
return (int32_t)(0);
}
IL_0005:
{
uint32_t L_1 = ___verifyResult0;
if ((!(((uint32_t)L_1) == ((uint32_t)(-1)))))
{
goto IL_000b;
}
}
{
return (int32_t)(4);
}
IL_000b:
{
V_0 = 0;
uint32_t L_2 = ___verifyResult0;
uint32_t L_3 = L_2;
RuntimeObject * L_4 = Box(unitytls_x509verify_result_t835FEA0265EFD70F0762B220C663474E03402278_il2cpp_TypeInfo_var, &L_3);
uint32_t L_5 = ((uint32_t)4);
RuntimeObject * L_6 = Box(unitytls_x509verify_result_t835FEA0265EFD70F0762B220C663474E03402278_il2cpp_TypeInfo_var, &L_5);
NullCheck((Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 *)L_4);
bool L_7 = Enum_HasFlag_m5D934A541DEEF44DBF3415EE47F8CCED9370C173((Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 *)L_4, (Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 *)L_6, /*hidden argument*/NULL);
if (!L_7)
{
goto IL_0024;
}
}
{
int32_t L_8 = V_0;
V_0 = ((int32_t)((int32_t)L_8|(int32_t)2));
}
IL_0024:
{
uint32_t L_9 = ___verifyResult0;
if ((((int32_t)L_9) == ((int32_t)4)))
{
goto IL_002c;
}
}
{
int32_t L_10 = V_0;
V_0 = ((int32_t)((int32_t)L_10|(int32_t)4));
}
IL_002c:
{
int32_t L_11 = V_0;
return L_11;
}
}
#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.String Mono.Unity.UnityTlsProvider::get_Name()
extern "C" IL2CPP_METHOD_ATTR String_t* UnityTlsProvider_get_Name_mD97B0783E337EF392796C2B54B2893132AE3CE6E (UnityTlsProvider_t38A61346F4CF37E18E390610CF6092AEFCA65965 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityTlsProvider_get_Name_mD97B0783E337EF392796C2B54B2893132AE3CE6E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
return _stringLiteral8D49852F94B6B049DB87721DD00F949FF76F466B;
}
}
// System.Guid Mono.Unity.UnityTlsProvider::get_ID()
extern "C" IL2CPP_METHOD_ATTR Guid_t UnityTlsProvider_get_ID_m69F15693799E92CF740F1632C811ABBDD9501CE3 (UnityTlsProvider_t38A61346F4CF37E18E390610CF6092AEFCA65965 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityTlsProvider_get_ID_m69F15693799E92CF740F1632C811ABBDD9501CE3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(MonoTlsProviderFactory_t01773E7677E88B1202FB7770A3E9F53655BB2525_il2cpp_TypeInfo_var);
Guid_t L_0 = ((MonoTlsProviderFactory_t01773E7677E88B1202FB7770A3E9F53655BB2525_StaticFields*)il2cpp_codegen_static_fields_for(MonoTlsProviderFactory_t01773E7677E88B1202FB7770A3E9F53655BB2525_il2cpp_TypeInfo_var))->get_UnityTlsId_1();
return L_0;
}
}
// System.Boolean Mono.Unity.UnityTlsProvider::get_SupportsSslStream()
extern "C" IL2CPP_METHOD_ATTR bool UnityTlsProvider_get_SupportsSslStream_m75C37BCDD5970564FF33FC734CE1E53066C310F5 (UnityTlsProvider_t38A61346F4CF37E18E390610CF6092AEFCA65965 * __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Boolean Mono.Unity.UnityTlsProvider::get_SupportsMonoExtensions()
extern "C" IL2CPP_METHOD_ATTR bool UnityTlsProvider_get_SupportsMonoExtensions_m937D906F958817CF7AF4BF3C0F6CB7FCFB271C34 (UnityTlsProvider_t38A61346F4CF37E18E390610CF6092AEFCA65965 * __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Boolean Mono.Unity.UnityTlsProvider::get_SupportsConnectionInfo()
extern "C" IL2CPP_METHOD_ATTR bool UnityTlsProvider_get_SupportsConnectionInfo_m2F1C9B6C649675ACE3F96A80EBAC9FF44655D004 (UnityTlsProvider_t38A61346F4CF37E18E390610CF6092AEFCA65965 * __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Boolean Mono.Unity.UnityTlsProvider::get_SupportsCleanShutdown()
extern "C" IL2CPP_METHOD_ATTR bool UnityTlsProvider_get_SupportsCleanShutdown_m0C0EDA9937BDF53475680A2892B937316D450B5C (UnityTlsProvider_t38A61346F4CF37E18E390610CF6092AEFCA65965 * __this, const RuntimeMethod* method)
{
{
return (bool)1;
}
}
// System.Security.Authentication.SslProtocols Mono.Unity.UnityTlsProvider::get_SupportedProtocols()
extern "C" IL2CPP_METHOD_ATTR int32_t UnityTlsProvider_get_SupportedProtocols_mB92C5F264ADEADACCE52A31D1DA9937777C5BC04 (UnityTlsProvider_t38A61346F4CF37E18E390610CF6092AEFCA65965 * __this, const RuntimeMethod* method)
{
{
return (int32_t)(((int32_t)4032));
}
}
// Mono.Security.Interface.IMonoSslStream Mono.Unity.UnityTlsProvider::CreateSslStream(System.IO.Stream,System.Boolean,Mono.Security.Interface.MonoTlsSettings)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* UnityTlsProvider_CreateSslStream_m7395FB4BBD905D89772F5157FDD254E5CF1F83DC (UnityTlsProvider_t38A61346F4CF37E18E390610CF6092AEFCA65965 * __this, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___innerStream0, bool ___leaveInnerStreamOpen1, MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * ___settings2, const RuntimeMethod* method)
{
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_0 = ___innerStream0;
bool L_1 = ___leaveInnerStreamOpen1;
MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * L_2 = ___settings2;
RuntimeObject* L_3 = SslStream_CreateMonoSslStream_m2DA6B0A589490351B37010F5BCF2DA3D734FF266(L_0, L_1, __this, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// Mono.Security.Interface.IMonoSslStream Mono.Unity.UnityTlsProvider::CreateSslStreamInternal(System.Net.Security.SslStream,System.IO.Stream,System.Boolean,Mono.Security.Interface.MonoTlsSettings)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* UnityTlsProvider_CreateSslStreamInternal_mA8AD037F184BD564ACD9945D6EA3961971030F7E (UnityTlsProvider_t38A61346F4CF37E18E390610CF6092AEFCA65965 * __this, SslStream_t9CEE8F6E125C734DD807D9289C86860FFEE81087 * ___sslStream0, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___innerStream1, bool ___leaveInnerStreamOpen2, MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * ___settings3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityTlsProvider_CreateSslStreamInternal_mA8AD037F184BD564ACD9945D6EA3961971030F7E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_0 = ___innerStream1;
bool L_1 = ___leaveInnerStreamOpen2;
SslStream_t9CEE8F6E125C734DD807D9289C86860FFEE81087 * L_2 = ___sslStream0;
MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * L_3 = ___settings3;
UnityTlsStream_tE8613CD306315DCC3E00A7B1036E20E280F83166 * L_4 = (UnityTlsStream_tE8613CD306315DCC3E00A7B1036E20E280F83166 *)il2cpp_codegen_object_new(UnityTlsStream_tE8613CD306315DCC3E00A7B1036E20E280F83166_il2cpp_TypeInfo_var);
UnityTlsStream__ctor_mCFCFF6B6CCEB2BEBB904E26AB3BF22E888C75C3F(L_4, L_0, L_1, L_2, L_3, __this, /*hidden argument*/NULL);
return L_4;
}
}
// System.Boolean Mono.Unity.UnityTlsProvider::ValidateCertificate(Mono.Security.Interface.ICertificateValidator2,System.String,System.Boolean,System.Security.Cryptography.X509Certificates.X509CertificateCollection,System.Boolean,System.Security.Cryptography.X509Certificates.X509Chain&,Mono.Security.Interface.MonoSslPolicyErrors&,System.Int32&)
extern "C" IL2CPP_METHOD_ATTR bool UnityTlsProvider_ValidateCertificate_mB131CB7451246C50BC4F3612C768E09C1DF59AAF (UnityTlsProvider_t38A61346F4CF37E18E390610CF6092AEFCA65965 * __this, RuntimeObject* ___validator0, String_t* ___targetHost1, bool ___serverMode2, X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 * ___certificates3, bool ___wantsChain4, X509Chain_t4A28E9A30CBB331C9B68AE4AFCB30625C6C8B538 ** ___chain5, int32_t* ___errors6, int32_t* ___status117, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityTlsProvider_ValidateCertificate_mB131CB7451246C50BC4F3612C768E09C1DF59AAF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 V_0;
memset(&V_0, 0, sizeof(V_0));
unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * V_1 = NULL;
uint32_t V_2 = 0;
int32_t V_3 = 0;
unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 V_4;
memset(&V_4, 0, sizeof(V_4));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_5 = NULL;
unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * V_6 = NULL;
unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 V_7;
memset(&V_7, 0, sizeof(V_7));
uint8_t* V_8 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_9 = NULL;
uint8_t* V_10 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 * L_0 = ___certificates3;
if (L_0)
{
goto IL_000e;
}
}
{
int32_t* L_1 = ___errors6;
int32_t* L_2 = ___errors6;
int32_t L_3 = *((int32_t*)L_2);
*((int32_t*)L_1) = (int32_t)((int32_t)((int32_t)L_3|(int32_t)1));
return (bool)0;
}
IL_000e:
{
bool L_4 = ___wantsChain4;
if (!L_4)
{
goto IL_001c;
}
}
{
X509Chain_t4A28E9A30CBB331C9B68AE4AFCB30625C6C8B538 ** L_5 = ___chain5;
X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 * L_6 = ___certificates3;
IL2CPP_RUNTIME_CLASS_INIT(SystemCertificateValidator_tEB00AC944EDDAA53F9A9FA7A316A23574985475F_il2cpp_TypeInfo_var);
X509Chain_t4A28E9A30CBB331C9B68AE4AFCB30625C6C8B538 * L_7 = SystemCertificateValidator_CreateX509Chain_mB9965896005703ADC050BC1E6415D30FBDC42091(L_6, /*hidden argument*/NULL);
*((RuntimeObject **)L_5) = (RuntimeObject *)L_7;
Il2CppCodeGenWriteBarrier((RuntimeObject **)L_5, (RuntimeObject *)L_7);
}
IL_001c:
{
X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 * L_8 = ___certificates3;
if (!L_8)
{
goto IL_0029;
}
}
{
X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 * L_9 = ___certificates3;
NullCheck(L_9);
int32_t L_10 = CollectionBase_get_Count_mFB8B3BCCCE581FEFA96FF5A6C1629E7EC092D92C(L_9, /*hidden argument*/NULL);
if (L_10)
{
goto IL_0033;
}
}
IL_0029:
{
int32_t* L_11 = ___errors6;
int32_t* L_12 = ___errors6;
int32_t L_13 = *((int32_t*)L_12);
*((int32_t*)L_11) = (int32_t)((int32_t)((int32_t)L_13|(int32_t)1));
return (bool)0;
}
IL_0033:
{
String_t* L_14 = ___targetHost1;
bool L_15 = String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229(L_14, /*hidden argument*/NULL);
if (L_15)
{
goto IL_0052;
}
}
{
String_t* L_16 = ___targetHost1;
NullCheck(L_16);
int32_t L_17 = String_IndexOf_m2909B8CF585E1BD0C81E11ACA2F48012156FD5BD(L_16, ((int32_t)58), /*hidden argument*/NULL);
V_3 = L_17;
int32_t L_18 = V_3;
if ((((int32_t)L_18) <= ((int32_t)0)))
{
goto IL_0052;
}
}
{
String_t* L_19 = ___targetHost1;
int32_t L_20 = V_3;
NullCheck(L_19);
String_t* L_21 = String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB(L_19, 0, L_20, /*hidden argument*/NULL);
___targetHost1 = L_21;
}
IL_0052:
{
IL2CPP_RUNTIME_CLASS_INIT(UnityTls_tFD87351846C601F716262E015308C6BB66000DEC_il2cpp_TypeInfo_var);
unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF * L_22 = UnityTls_get_NativeInterface_mB7B44E93A89C271D6C65B44DE2EE9C4A5786E88E(/*hidden argument*/NULL);
NullCheck(L_22);
unitytls_errorstate_create_t_t104BADBBE1265BD1A3F84C153EB7A67CDDBF35A9 * L_23 = L_22->get_unitytls_errorstate_create_2();
NullCheck(L_23);
unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 L_24 = unitytls_errorstate_create_t_Invoke_m2A913757D4713362254BE457E8792AD299677D42(L_23, /*hidden argument*/NULL);
V_0 = L_24;
unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF * L_25 = UnityTls_get_NativeInterface_mB7B44E93A89C271D6C65B44DE2EE9C4A5786E88E(/*hidden argument*/NULL);
NullCheck(L_25);
unitytls_x509list_create_t_tC040C2CF47D5426B7F6B1D6A2751507DC681CFF3 * L_26 = L_25->get_unitytls_x509list_create_11();
NullCheck(L_26);
unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * L_27 = unitytls_x509list_create_t_Invoke_m45B75F9286D2C1DC14AECFA258F419C3A1989A79(L_26, (unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *)(unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *)(((uintptr_t)(&V_0))), /*hidden argument*/NULL);
V_1 = (unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *)L_27;
V_2 = ((int32_t)-2147483648LL);
}
IL_007b:
try
{ // begin try (depth: 1)
{
unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * L_28 = V_1;
X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 * L_29 = ___certificates3;
CertHelper_AddCertificatesToNativeChain_m1D22A9A50CA05E1F931B8B309E047092DDE01CFF((unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *)(unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *)L_28, L_29, (unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *)(unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *)(((uintptr_t)(&V_0))), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(UnityTls_tFD87351846C601F716262E015308C6BB66000DEC_il2cpp_TypeInfo_var);
unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF * L_30 = UnityTls_get_NativeInterface_mB7B44E93A89C271D6C65B44DE2EE9C4A5786E88E(/*hidden argument*/NULL);
NullCheck(L_30);
unitytls_x509list_get_ref_t_t1FAB0CD82E536E0C9EB5255B145FC5AF434B3986 * L_31 = L_30->get_unitytls_x509list_get_ref_9();
unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * L_32 = V_1;
NullCheck(L_31);
unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 L_33 = unitytls_x509list_get_ref_t_Invoke_mDCA9357333DA8B614E6C0F68922B3E5306A6534C(L_31, (unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *)(unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *)L_32, (unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *)(unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *)(((uintptr_t)(&V_0))), /*hidden argument*/NULL);
V_4 = L_33;
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_34 = Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9(/*hidden argument*/NULL);
String_t* L_35 = ___targetHost1;
NullCheck(L_34);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_36 = VirtFuncInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, String_t* >::Invoke(15 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_34, L_35);
V_5 = L_36;
RuntimeObject* L_37 = ___validator0;
NullCheck(L_37);
MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * L_38 = InterfaceFuncInvoker0< MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * >::Invoke(0 /* Mono.Security.Interface.MonoTlsSettings Mono.Security.Interface.ICertificateValidator::get_Settings() */, ICertificateValidator_t0C1A54E00D408ADCBA27E600BFAA216E7E7D31A3_il2cpp_TypeInfo_var, L_37);
NullCheck(L_38);
X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 * L_39 = MonoTlsSettings_get_TrustAnchors_mD6ADD8546ED8D9C0BA58A25F0ADA0BBB5127F28F(L_38, /*hidden argument*/NULL);
if (!L_39)
{
goto IL_0152;
}
}
IL_00b8:
{
IL2CPP_RUNTIME_CLASS_INIT(UnityTls_tFD87351846C601F716262E015308C6BB66000DEC_il2cpp_TypeInfo_var);
unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF * L_40 = UnityTls_get_NativeInterface_mB7B44E93A89C271D6C65B44DE2EE9C4A5786E88E(/*hidden argument*/NULL);
NullCheck(L_40);
unitytls_x509list_create_t_tC040C2CF47D5426B7F6B1D6A2751507DC681CFF3 * L_41 = L_40->get_unitytls_x509list_create_11();
NullCheck(L_41);
unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * L_42 = unitytls_x509list_create_t_Invoke_m45B75F9286D2C1DC14AECFA258F419C3A1989A79(L_41, (unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *)(unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *)(((uintptr_t)(&V_0))), /*hidden argument*/NULL);
V_6 = (unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *)L_42;
unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * L_43 = V_6;
RuntimeObject* L_44 = ___validator0;
NullCheck(L_44);
MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * L_45 = InterfaceFuncInvoker0< MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * >::Invoke(0 /* Mono.Security.Interface.MonoTlsSettings Mono.Security.Interface.ICertificateValidator::get_Settings() */, ICertificateValidator_t0C1A54E00D408ADCBA27E600BFAA216E7E7D31A3_il2cpp_TypeInfo_var, L_44);
NullCheck(L_45);
X509CertificateCollection_t824A6C58D0D1B4A7CAE30F26CE8EE4B23A8A1833 * L_46 = MonoTlsSettings_get_TrustAnchors_mD6ADD8546ED8D9C0BA58A25F0ADA0BBB5127F28F(L_45, /*hidden argument*/NULL);
CertHelper_AddCertificatesToNativeChain_m1D22A9A50CA05E1F931B8B309E047092DDE01CFF((unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *)(unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *)L_43, L_46, (unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *)(unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *)(((uintptr_t)(&V_0))), /*hidden argument*/NULL);
unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF * L_47 = UnityTls_get_NativeInterface_mB7B44E93A89C271D6C65B44DE2EE9C4A5786E88E(/*hidden argument*/NULL);
NullCheck(L_47);
unitytls_x509list_get_ref_t_t1FAB0CD82E536E0C9EB5255B145FC5AF434B3986 * L_48 = L_47->get_unitytls_x509list_get_ref_9();
unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * L_49 = V_1;
NullCheck(L_48);
unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 L_50 = unitytls_x509list_get_ref_t_Invoke_mDCA9357333DA8B614E6C0F68922B3E5306A6534C(L_48, (unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *)(unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *)L_49, (unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *)(unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *)(((uintptr_t)(&V_0))), /*hidden argument*/NULL);
V_7 = L_50;
}
IL_00f6:
try
{ // begin try (depth: 2)
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_51 = V_5;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_52 = L_51;
V_9 = L_52;
if (!L_52)
{
goto IL_0103;
}
}
IL_00fd:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_53 = V_9;
NullCheck(L_53);
if ((((int32_t)((int32_t)(((RuntimeArray *)L_53)->max_length)))))
{
goto IL_0109;
}
}
IL_0103:
{
V_8 = (uint8_t*)(((uintptr_t)0));
goto IL_0114;
}
IL_0109:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_54 = V_9;
NullCheck(L_54);
V_8 = (uint8_t*)(((uintptr_t)((L_54)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))));
}
IL_0114:
{
IL2CPP_RUNTIME_CLASS_INIT(UnityTls_tFD87351846C601F716262E015308C6BB66000DEC_il2cpp_TypeInfo_var);
unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF * L_55 = UnityTls_get_NativeInterface_mB7B44E93A89C271D6C65B44DE2EE9C4A5786E88E(/*hidden argument*/NULL);
NullCheck(L_55);
unitytls_x509verify_explicit_ca_t_t6C8BE964C5EE9B24D3734F028EFCD83F5893D2E6 * L_56 = L_55->get_unitytls_x509verify_explicit_ca_17();
unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 L_57 = V_4;
unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 L_58 = V_7;
uint8_t* L_59 = V_8;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_60 = V_5;
NullCheck(L_60);
intptr_t L_61 = IntPtr_op_Explicit_m62A5ED7757661C8DB6AEF4816829ED92A1929F91((((int32_t)((int32_t)(((RuntimeArray *)L_60)->max_length)))), /*hidden argument*/NULL);
NullCheck(L_56);
uint32_t L_62 = unitytls_x509verify_explicit_ca_t_Invoke_mCC06B1AF3BCD90C24E3CA05A785528588C7CCEB5(L_56, L_57, L_58, (uint8_t*)(uint8_t*)L_59, (intptr_t)L_61, (unitytls_x509verify_callback_t90C02C529DB2B9F434C18797BACC456BCB5400A9 *)NULL, (void*)(void*)(((uintptr_t)0)), (unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *)(unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *)(((uintptr_t)(&V_0))), /*hidden argument*/NULL);
V_2 = L_62;
IL2CPP_LEAVE(0x13F, FINALLY_013b);
}
} // end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_013b;
}
FINALLY_013b:
{ // begin finally (depth: 2)
V_9 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL;
IL2CPP_END_FINALLY(315)
} // end finally (depth: 2)
IL2CPP_CLEANUP(315)
{
IL2CPP_JUMP_TBL(0x13F, IL_013f)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_013f:
{
IL2CPP_RUNTIME_CLASS_INIT(UnityTls_tFD87351846C601F716262E015308C6BB66000DEC_il2cpp_TypeInfo_var);
unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF * L_63 = UnityTls_get_NativeInterface_mB7B44E93A89C271D6C65B44DE2EE9C4A5786E88E(/*hidden argument*/NULL);
NullCheck(L_63);
unitytls_x509list_free_t_tE3FC523507F07BD9901D84E9F6968CD8A583FF09 * L_64 = L_63->get_unitytls_x509list_free_15();
unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * L_65 = V_6;
NullCheck(L_64);
unitytls_x509list_free_t_Invoke_m733759A5A94705388D233DB23FDFECAE2ADACDF0(L_64, (unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *)(unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *)L_65, /*hidden argument*/NULL);
IL2CPP_LEAVE(0x1AB, FINALLY_019a);
}
IL_0152:
{
}
IL_0153:
try
{ // begin try (depth: 2)
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_66 = V_5;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_67 = L_66;
V_9 = L_67;
if (!L_67)
{
goto IL_0160;
}
}
IL_015a:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_68 = V_9;
NullCheck(L_68);
if ((((int32_t)((int32_t)(((RuntimeArray *)L_68)->max_length)))))
{
goto IL_0166;
}
}
IL_0160:
{
V_10 = (uint8_t*)(((uintptr_t)0));
goto IL_0171;
}
IL_0166:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_69 = V_9;
NullCheck(L_69);
V_10 = (uint8_t*)(((uintptr_t)((L_69)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))));
}
IL_0171:
{
IL2CPP_RUNTIME_CLASS_INIT(UnityTls_tFD87351846C601F716262E015308C6BB66000DEC_il2cpp_TypeInfo_var);
unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF * L_70 = UnityTls_get_NativeInterface_mB7B44E93A89C271D6C65B44DE2EE9C4A5786E88E(/*hidden argument*/NULL);
NullCheck(L_70);
unitytls_x509verify_default_ca_t_t4BACB6B49AA85C025AF9B18B3F30F63C9881DE2D * L_71 = L_70->get_unitytls_x509verify_default_ca_16();
unitytls_x509list_ref_tF01A6BF5ADA9C454E6B975D2669AF22D27555BF6 L_72 = V_4;
uint8_t* L_73 = V_10;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_74 = V_5;
NullCheck(L_74);
intptr_t L_75 = IntPtr_op_Explicit_m62A5ED7757661C8DB6AEF4816829ED92A1929F91((((int32_t)((int32_t)(((RuntimeArray *)L_74)->max_length)))), /*hidden argument*/NULL);
NullCheck(L_71);
uint32_t L_76 = unitytls_x509verify_default_ca_t_Invoke_mE5D523AFD08CCE9A427389F17611D56C6D905B98(L_71, L_72, (uint8_t*)(uint8_t*)L_73, (intptr_t)L_75, (unitytls_x509verify_callback_t90C02C529DB2B9F434C18797BACC456BCB5400A9 *)NULL, (void*)(void*)(((uintptr_t)0)), (unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *)(unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 *)(((uintptr_t)(&V_0))), /*hidden argument*/NULL);
V_2 = L_76;
IL2CPP_LEAVE(0x1AB, FINALLY_0196);
}
} // end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0196;
}
FINALLY_0196:
{ // begin finally (depth: 2)
V_9 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL;
IL2CPP_END_FINALLY(406)
} // end finally (depth: 2)
IL2CPP_CLEANUP(406)
{
IL2CPP_END_CLEANUP(0x1AB, FINALLY_019a);
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_019a;
}
FINALLY_019a:
{ // begin finally (depth: 1)
IL2CPP_RUNTIME_CLASS_INIT(UnityTls_tFD87351846C601F716262E015308C6BB66000DEC_il2cpp_TypeInfo_var);
unitytls_interface_struct_t0AD7ED5EDF9F15F1879FC9140A7D40C8D95A1BAF * L_77 = UnityTls_get_NativeInterface_mB7B44E93A89C271D6C65B44DE2EE9C4A5786E88E(/*hidden argument*/NULL);
NullCheck(L_77);
unitytls_x509list_free_t_tE3FC523507F07BD9901D84E9F6968CD8A583FF09 * L_78 = L_77->get_unitytls_x509list_free_15();
unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 * L_79 = V_1;
NullCheck(L_78);
unitytls_x509list_free_t_Invoke_m733759A5A94705388D233DB23FDFECAE2ADACDF0(L_78, (unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *)(unitytls_x509list_tDFEEABB4254CDE9475890D0F2AE361B45EC357C7 *)L_79, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(410)
} // end finally (depth: 1)
IL2CPP_CLEANUP(410)
{
IL2CPP_JUMP_TBL(0x1AB, IL_01ab)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_01ab:
{
int32_t* L_80 = ___errors6;
uint32_t L_81 = V_2;
int32_t L_82 = UnityTlsConversions_VerifyResultToPolicyErrror_m0F695E9B6732F71E1719D642E28A569B39A56BB7(L_81, /*hidden argument*/NULL);
*((int32_t*)L_80) = (int32_t)L_82;
uint32_t L_83 = V_2;
if (L_83)
{
goto IL_01c1;
}
}
{
unitytls_errorstate_t64FA817A583B1CD3CB1AFCFF9606F1F2782ABBE6 L_84 = V_0;
uint32_t L_85 = L_84.get_code_1();
return (bool)((((int32_t)L_85) == ((int32_t)0))? 1 : 0);
}
IL_01c1:
{
return (bool)0;
}
}
// System.Void Mono.Unity.UnityTlsProvider::.ctor()
extern "C" IL2CPP_METHOD_ATTR void UnityTlsProvider__ctor_m84BDC7485DA3C2B3A2153CA4B0AC695FD65AF493 (UnityTlsProvider_t38A61346F4CF37E18E390610CF6092AEFCA65965 * __this, const RuntimeMethod* method)
{
{
MonoTlsProvider__ctor_m627444C019C32E18FC68ABF1AF33577E54A9705B(__this, /*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 Mono.Unity.UnityTlsStream::.ctor(System.IO.Stream,System.Boolean,System.Net.Security.SslStream,Mono.Security.Interface.MonoTlsSettings,Mono.Security.Interface.MonoTlsProvider)
extern "C" IL2CPP_METHOD_ATTR void UnityTlsStream__ctor_mCFCFF6B6CCEB2BEBB904E26AB3BF22E888C75C3F (UnityTlsStream_tE8613CD306315DCC3E00A7B1036E20E280F83166 * __this, Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___innerStream0, bool ___leaveInnerStreamOpen1, SslStream_t9CEE8F6E125C734DD807D9289C86860FFEE81087 * ___owner2, MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * ___settings3, MonoTlsProvider_tDCD056C5BBBE59ED6BAF63F25952B406C1143C27 * ___provider4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (UnityTlsStream__ctor_mCFCFF6B6CCEB2BEBB904E26AB3BF22E888C75C3F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * L_0 = ___innerStream0;
bool L_1 = ___leaveInnerStreamOpen1;
SslStream_t9CEE8F6E125C734DD807D9289C86860FFEE81087 * L_2 = ___owner2;
MonoTlsSettings_t5905C7532C92A87F88C8F3440165DF8AA49A1BBF * L_3 = ___settings3;
MonoTlsProvider_tDCD056C5BBBE59ED6BAF63F25952B406C1143C27 * L_4 = ___provider4;
IL2CPP_RUNTIME_CLASS_INIT(MobileAuthenticatedStream_tB6E77FB644434B5B525191DC671462A6461B9045_il2cpp_TypeInfo_var);
MobileAuthenticatedStream__ctor_mF6BF50D6BFDEF283FF8036F5170281D29FDD7628(__this, L_0, L_1, L_2, L_3, L_4, /*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.String SR::GetString(System.String,System.Object[])
extern "C" IL2CPP_METHOD_ATTR String_t* SR_GetString_m9548BD6DD52DFDB46372F211078AE57FA2401E39 (String_t* ___name0, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SR_GetString_m9548BD6DD52DFDB46372F211078AE57FA2401E39_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
String_t* L_1 = ___name0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___args1;
String_t* L_3 = SR_GetString_m9D671CBA422B18D15B8FF59B22DCCEB32E3D16E2(L_0, L_1, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.String SR::GetString(System.Globalization.CultureInfo,System.String,System.Object[])
extern "C" IL2CPP_METHOD_ATTR String_t* SR_GetString_m9D671CBA422B18D15B8FF59B22DCCEB32E3D16E2 (CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * ___culture0, String_t* ___name1, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args2, const RuntimeMethod* method)
{
{
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_0 = ___culture0;
String_t* L_1 = ___name1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___args2;
String_t* L_3 = String_Format_mF68EE0DEC1AA5ADE9DFEF9AE0508E428FBB10EFD(L_0, L_1, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.String SR::GetString(System.String)
extern "C" IL2CPP_METHOD_ATTR String_t* SR_GetString_m3FC710B15474A9B651DA02B303241B6D8B87E2A7 (String_t* ___name0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___name0;
return L_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.ComponentModel.ArrayConverter::.ctor()
extern "C" IL2CPP_METHOD_ATTR void ArrayConverter__ctor_m831D145364A55A155BC896935367961A476D53B7 (ArrayConverter_tAAD8F39711C6ECD39D31226FA1D140DD38752B57 * __this, const RuntimeMethod* method)
{
{
CollectionConverter__ctor_m86DBE477F4462418329C5CFB45C86A9420F852E7(__this, /*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 System.ComponentModel.BaseNumberConverter::.ctor()
extern "C" IL2CPP_METHOD_ATTR void BaseNumberConverter__ctor_mD78E1C7E1F8A977BC7AD33DB0C1E5E32C60E8E83 (BaseNumberConverter_t6AF36A2503E7BABF7FB9A8EC05DF8B828491AC63 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BaseNumberConverter__ctor_mD78E1C7E1F8A977BC7AD33DB0C1E5E32C60E8E83_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB_il2cpp_TypeInfo_var);
TypeConverter__ctor_m7F8A006E775CCB83A8ACB042B296E48B0AE501CD(__this, /*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 System.ComponentModel.BooleanConverter::.ctor()
extern "C" IL2CPP_METHOD_ATTR void BooleanConverter__ctor_m8293C29BCB7B90516FFE978C6295C0378C1BFEE4 (BooleanConverter_tD0D177A9F577915FAA9F6749229672CE8EBAA94C * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BooleanConverter__ctor_m8293C29BCB7B90516FFE978C6295C0378C1BFEE4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB_il2cpp_TypeInfo_var);
TypeConverter__ctor_m7F8A006E775CCB83A8ACB042B296E48B0AE501CD(__this, /*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 System.ComponentModel.CollectionConverter::.ctor()
extern "C" IL2CPP_METHOD_ATTR void CollectionConverter__ctor_m86DBE477F4462418329C5CFB45C86A9420F852E7 (CollectionConverter_t039E15C433996B0F0F0EB78BEE81F6DE0705F184 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CollectionConverter__ctor_m86DBE477F4462418329C5CFB45C86A9420F852E7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB_il2cpp_TypeInfo_var);
TypeConverter__ctor_m7F8A006E775CCB83A8ACB042B296E48B0AE501CD(__this, /*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 System.ComponentModel.DecimalConverter::.ctor()
extern "C" IL2CPP_METHOD_ATTR void DecimalConverter__ctor_mB015B3871CF834D0C5D8290C9FD15509249921E7 (DecimalConverter_t10232B897580B6DE599BB375BE8C0F4E1C30B0C1 * __this, const RuntimeMethod* method)
{
{
BaseNumberConverter__ctor_mD78E1C7E1F8A977BC7AD33DB0C1E5E32C60E8E83(__this, /*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 System.ComponentModel.DefaultValueAttribute::.ctor(System.String)
extern "C" IL2CPP_METHOD_ATTR void DefaultValueAttribute__ctor_m1BC9CBB38A9314A5513B910C942861DA122A852A (DefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
String_t* L_0 = ___value0;
__this->set_value_0(L_0);
return;
}
}
// System.Object System.ComponentModel.DefaultValueAttribute::get_Value()
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * DefaultValueAttribute_get_Value_m4C07236B56BD114C38BA7DA8C94605A174EEC005 (DefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = __this->get_value_0();
return L_0;
}
}
// System.Boolean System.ComponentModel.DefaultValueAttribute::Equals(System.Object)
extern "C" IL2CPP_METHOD_ATTR bool DefaultValueAttribute_Equals_m337FB64F797F188E4815CF051E5DAB44E6E555D3 (DefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultValueAttribute_Equals_m337FB64F797F188E4815CF051E5DAB44E6E555D3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
DefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC * V_0 = NULL;
{
RuntimeObject * L_0 = ___obj0;
if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(DefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC *)__this))))
{
goto IL_0006;
}
}
{
return (bool)1;
}
IL_0006:
{
RuntimeObject * L_1 = ___obj0;
V_0 = ((DefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC *)IsInstClass((RuntimeObject*)L_1, DefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC_il2cpp_TypeInfo_var));
DefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC * L_2 = V_0;
if (!L_2)
{
goto IL_0034;
}
}
{
RuntimeObject * L_3 = VirtFuncInvoker0< RuntimeObject * >::Invoke(4 /* System.Object System.ComponentModel.DefaultValueAttribute::get_Value() */, __this);
if (!L_3)
{
goto IL_002a;
}
}
{
RuntimeObject * L_4 = VirtFuncInvoker0< RuntimeObject * >::Invoke(4 /* System.Object System.ComponentModel.DefaultValueAttribute::get_Value() */, __this);
DefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC * L_5 = V_0;
NullCheck(L_5);
RuntimeObject * L_6 = VirtFuncInvoker0< RuntimeObject * >::Invoke(4 /* System.Object System.ComponentModel.DefaultValueAttribute::get_Value() */, L_5);
NullCheck(L_4);
bool L_7 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, L_4, L_6);
return L_7;
}
IL_002a:
{
DefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC * L_8 = V_0;
NullCheck(L_8);
RuntimeObject * L_9 = VirtFuncInvoker0< RuntimeObject * >::Invoke(4 /* System.Object System.ComponentModel.DefaultValueAttribute::get_Value() */, L_8);
return (bool)((((RuntimeObject*)(RuntimeObject *)L_9) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
}
IL_0034:
{
return (bool)0;
}
}
// System.Int32 System.ComponentModel.DefaultValueAttribute::GetHashCode()
extern "C" IL2CPP_METHOD_ATTR int32_t DefaultValueAttribute_GetHashCode_m890451093F442C83A29160FD8B39A32559F2C7A9 (DefaultValueAttribute_t03B1F51B35271D50779D31234C9C6845BC9626EC * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = Attribute_GetHashCode_mEA741DA9A7D5E2BF980C11EB942F5C67F3142C7B(__this, /*hidden argument*/NULL);
return L_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.ComponentModel.DoubleConverter::.ctor()
extern "C" IL2CPP_METHOD_ATTR void DoubleConverter__ctor_m419F1E782FFBC765D22792D76E56D54FC94E6AEB (DoubleConverter_t65A5D8B0C2736FC5469CE5DFA468D371DD5F9F75 * __this, const RuntimeMethod* method)
{
{
BaseNumberConverter__ctor_mD78E1C7E1F8A977BC7AD33DB0C1E5E32C60E8E83(__this, /*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 System.ComponentModel.EditorBrowsableAttribute::.ctor(System.ComponentModel.EditorBrowsableState)
extern "C" IL2CPP_METHOD_ATTR void EditorBrowsableAttribute__ctor_mACDE45DF0DCAA6E923120D6AEC45422AEF958C2E (EditorBrowsableAttribute_tF3507DF0AB82A8D54C70D6F7FB4D363DF729D516 * __this, int32_t ___state0, const RuntimeMethod* method)
{
{
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
int32_t L_0 = ___state0;
__this->set_browsableState_0(L_0);
return;
}
}
// System.Boolean System.ComponentModel.EditorBrowsableAttribute::Equals(System.Object)
extern "C" IL2CPP_METHOD_ATTR bool EditorBrowsableAttribute_Equals_m6F5EF9CC298CBDC862CBCA5187379A79635726FA (EditorBrowsableAttribute_tF3507DF0AB82A8D54C70D6F7FB4D363DF729D516 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EditorBrowsableAttribute_Equals_m6F5EF9CC298CBDC862CBCA5187379A79635726FA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
EditorBrowsableAttribute_tF3507DF0AB82A8D54C70D6F7FB4D363DF729D516 * V_0 = NULL;
{
RuntimeObject * L_0 = ___obj0;
if ((!(((RuntimeObject*)(RuntimeObject *)L_0) == ((RuntimeObject*)(EditorBrowsableAttribute_tF3507DF0AB82A8D54C70D6F7FB4D363DF729D516 *)__this))))
{
goto IL_0006;
}
}
{
return (bool)1;
}
IL_0006:
{
RuntimeObject * L_1 = ___obj0;
V_0 = ((EditorBrowsableAttribute_tF3507DF0AB82A8D54C70D6F7FB4D363DF729D516 *)IsInstSealed((RuntimeObject*)L_1, EditorBrowsableAttribute_tF3507DF0AB82A8D54C70D6F7FB4D363DF729D516_il2cpp_TypeInfo_var));
EditorBrowsableAttribute_tF3507DF0AB82A8D54C70D6F7FB4D363DF729D516 * L_2 = V_0;
if (!L_2)
{
goto IL_001f;
}
}
{
EditorBrowsableAttribute_tF3507DF0AB82A8D54C70D6F7FB4D363DF729D516 * L_3 = V_0;
NullCheck(L_3);
int32_t L_4 = L_3->get_browsableState_0();
int32_t L_5 = __this->get_browsableState_0();
return (bool)((((int32_t)L_4) == ((int32_t)L_5))? 1 : 0);
}
IL_001f:
{
return (bool)0;
}
}
// System.Int32 System.ComponentModel.EditorBrowsableAttribute::GetHashCode()
extern "C" IL2CPP_METHOD_ATTR int32_t EditorBrowsableAttribute_GetHashCode_m74229847CE44E771F282E2E73FFC4DE55771A1B6 (EditorBrowsableAttribute_tF3507DF0AB82A8D54C70D6F7FB4D363DF729D516 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = Attribute_GetHashCode_mEA741DA9A7D5E2BF980C11EB942F5C67F3142C7B(__this, /*hidden argument*/NULL);
return L_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
#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.ComponentModel.EnumConverter::.ctor(System.Type)
extern "C" IL2CPP_METHOD_ATTR void EnumConverter__ctor_mBA8B2E210D061A3CF86950F6D797E911A2E3C774 (EnumConverter_t5DA4CB27C27A8C37C31B2A4DE0C4C37820638E12 * __this, Type_t * ___type0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (EnumConverter__ctor_mBA8B2E210D061A3CF86950F6D797E911A2E3C774_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB_il2cpp_TypeInfo_var);
TypeConverter__ctor_m7F8A006E775CCB83A8ACB042B296E48B0AE501CD(__this, /*hidden argument*/NULL);
Type_t * L_0 = ___type0;
__this->set_type_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 System.ComponentModel.Int16Converter::.ctor()
extern "C" IL2CPP_METHOD_ATTR void Int16Converter__ctor_mD4D022096E6FB9FFDB84D879E31177A892DD072D (Int16Converter_tA2223DDF2BE99AD79AD836FCEC90F2C12705433B * __this, const RuntimeMethod* method)
{
{
BaseNumberConverter__ctor_mD78E1C7E1F8A977BC7AD33DB0C1E5E32C60E8E83(__this, /*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 System.ComponentModel.Int32Converter::.ctor()
extern "C" IL2CPP_METHOD_ATTR void Int32Converter__ctor_m1CD79AE5880FDE2EC91F1D67E567AAA3618D19B9 (Int32Converter_t73A6E403EBE01B56528CB227509954397A46BA22 * __this, const RuntimeMethod* method)
{
{
BaseNumberConverter__ctor_mD78E1C7E1F8A977BC7AD33DB0C1E5E32C60E8E83(__this, /*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 System.ComponentModel.Int64Converter::.ctor()
extern "C" IL2CPP_METHOD_ATTR void Int64Converter__ctor_mE4DC71A97EF110B854F22A48AB0F0D3792B53A74 (Int64Converter_tED09C98C409F894484943F8D4F9C6468A97F1447 * __this, const RuntimeMethod* method)
{
{
BaseNumberConverter__ctor_mD78E1C7E1F8A977BC7AD33DB0C1E5E32C60E8E83(__this, /*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 System.ComponentModel.SingleConverter::.ctor()
extern "C" IL2CPP_METHOD_ATTR void SingleConverter__ctor_m8EA7D412C3EE9A9522E7592774DD46EBC6118AA8 (SingleConverter_t86A24FBD46D753B99344470E9566584F15538902 * __this, const RuntimeMethod* method)
{
{
BaseNumberConverter__ctor_mD78E1C7E1F8A977BC7AD33DB0C1E5E32C60E8E83(__this, /*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 System.ComponentModel.StringConverter::.ctor()
extern "C" IL2CPP_METHOD_ATTR void StringConverter__ctor_m2718AC00691AF4A3AF8A8D64896BE3B5D58658B2 (StringConverter_t054FA0796F4C8E951208AFA052D99BCB8E68BED7 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StringConverter__ctor_m2718AC00691AF4A3AF8A8D64896BE3B5D58658B2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB_il2cpp_TypeInfo_var);
TypeConverter__ctor_m7F8A006E775CCB83A8ACB042B296E48B0AE501CD(__this, /*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 System.ComponentModel.TimeSpanConverter::.ctor()
extern "C" IL2CPP_METHOD_ATTR void TimeSpanConverter__ctor_m28E7294174F979EF86FEF9511474B0AB9431217B (TimeSpanConverter_t4025A0861C52420BC73D837729E5EFA6ECDE07C7 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TimeSpanConverter__ctor_m28E7294174F979EF86FEF9511474B0AB9431217B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB_il2cpp_TypeInfo_var);
TypeConverter__ctor_m7F8A006E775CCB83A8ACB042B296E48B0AE501CD(__this, /*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 System.ComponentModel.TypeConverter::.ctor()
extern "C" IL2CPP_METHOD_ATTR void TypeConverter__ctor_m7F8A006E775CCB83A8ACB042B296E48B0AE501CD (TypeConverter_t8306AE03734853B551DDF089C1F17836A7764DBB * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void System.ComponentModel.TypeConverter::.cctor()
extern "C" IL2CPP_METHOD_ATTR void TypeConverter__cctor_mC99D8D0F3AA6CCB3E21123CFA7BAB73800CC38DC (const RuntimeMethod* method)
{
{
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.Int32 System.ComponentModel.TypeConverter/StandardValuesCollection::get_Count()
extern "C" IL2CPP_METHOD_ATTR int32_t StandardValuesCollection_get_Count_mD0531EA777492E88EBEA8C6B8E8A12C4AFE5103A (StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StandardValuesCollection_get_Count_mD0531EA777492E88EBEA8C6B8E8A12C4AFE5103A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeArray * L_0 = __this->get_valueArray_1();
if (!L_0)
{
goto IL_0014;
}
}
{
RuntimeArray * L_1 = __this->get_valueArray_1();
NullCheck(L_1);
int32_t L_2 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D(L_1, /*hidden argument*/NULL);
return L_2;
}
IL_0014:
{
RuntimeObject* L_3 = __this->get_values_0();
NullCheck(L_3);
int32_t L_4 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* System.Int32 System.Collections.ICollection::get_Count() */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_3);
return L_4;
}
}
// System.Void System.ComponentModel.TypeConverter/StandardValuesCollection::CopyTo(System.Array,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void StandardValuesCollection_CopyTo_mA319F11A11360C258FCEEF3C9EFA53D504BD7C3E (StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StandardValuesCollection_CopyTo_mA319F11A11360C258FCEEF3C9EFA53D504BD7C3E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = __this->get_values_0();
RuntimeArray * L_1 = ___array0;
int32_t L_2 = ___index1;
NullCheck(L_0);
InterfaceActionInvoker2< RuntimeArray *, int32_t >::Invoke(0 /* System.Void System.Collections.ICollection::CopyTo(System.Array,System.Int32) */, ICollection_tA3BAB2482E28132A7CA9E0E21393027353C28B54_il2cpp_TypeInfo_var, L_0, L_1, L_2);
return;
}
}
// System.Collections.IEnumerator System.ComponentModel.TypeConverter/StandardValuesCollection::GetEnumerator()
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* StandardValuesCollection_GetEnumerator_m40E0D69CDEDD7EDE2D9454C4A18AA4C91A96B95F (StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StandardValuesCollection_GetEnumerator_m40E0D69CDEDD7EDE2D9454C4A18AA4C91A96B95F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = __this->get_values_0();
NullCheck(L_0);
RuntimeObject* L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.IEnumerator System.Collections.IEnumerable::GetEnumerator() */, IEnumerable_tD74549CEA1AA48E768382B94FEACBB07E2E3FA2C_il2cpp_TypeInfo_var, L_0);
return L_1;
}
}
// System.Int32 System.ComponentModel.TypeConverter/StandardValuesCollection::System.Collections.ICollection.get_Count()
extern "C" IL2CPP_METHOD_ATTR int32_t StandardValuesCollection_System_Collections_ICollection_get_Count_m3B04852950AC738A4E8AF41974DA6AFB1CC2BAD6 (StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = StandardValuesCollection_get_Count_mD0531EA777492E88EBEA8C6B8E8A12C4AFE5103A(__this, /*hidden argument*/NULL);
return L_0;
}
}
// System.Boolean System.ComponentModel.TypeConverter/StandardValuesCollection::System.Collections.ICollection.get_IsSynchronized()
extern "C" IL2CPP_METHOD_ATTR bool StandardValuesCollection_System_Collections_ICollection_get_IsSynchronized_m9A74F835BFD37AA9DC9458A0B7D3FE739612F9EA (StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * __this, const RuntimeMethod* method)
{
{
return (bool)0;
}
}
// System.Object System.ComponentModel.TypeConverter/StandardValuesCollection::System.Collections.ICollection.get_SyncRoot()
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * StandardValuesCollection_System_Collections_ICollection_get_SyncRoot_mF42D50E0E5A77DD85C897C37352834E2D4023810 (StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * __this, const RuntimeMethod* method)
{
{
return NULL;
}
}
// System.Void System.ComponentModel.TypeConverter/StandardValuesCollection::System.Collections.ICollection.CopyTo(System.Array,System.Int32)
extern "C" IL2CPP_METHOD_ATTR void StandardValuesCollection_System_Collections_ICollection_CopyTo_m27D62D0B27B9151F55B3F3069E72B1B8ABEC5447 (StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method)
{
{
RuntimeArray * L_0 = ___array0;
int32_t L_1 = ___index1;
StandardValuesCollection_CopyTo_mA319F11A11360C258FCEEF3C9EFA53D504BD7C3E(__this, L_0, L_1, /*hidden argument*/NULL);
return;
}
}
// System.Collections.IEnumerator System.ComponentModel.TypeConverter/StandardValuesCollection::System.Collections.IEnumerable.GetEnumerator()
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* StandardValuesCollection_System_Collections_IEnumerable_GetEnumerator_m017DACA9E9C081C4964887FF9E1F7D8A36B7BD8F (StandardValuesCollection_t929677712574EF02F5C4CF4C38E070841C20BDA3 * __this, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = StandardValuesCollection_GetEnumerator_m40E0D69CDEDD7EDE2D9454C4A18AA4C91A96B95F(__this, /*hidden argument*/NULL);
return L_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.ComponentModel.TypeConverterAttribute::.ctor()
extern "C" IL2CPP_METHOD_ATTR void TypeConverterAttribute__ctor_mD0795A29B6FD59978CAAC6DAF3AC7EC564C519A5 (TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeConverterAttribute__ctor_mD0795A29B6FD59978CAAC6DAF3AC7EC564C519A5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->get_Empty_5();
__this->set_typeName_0(L_0);
return;
}
}
// System.Void System.ComponentModel.TypeConverterAttribute::.ctor(System.Type)
extern "C" IL2CPP_METHOD_ATTR void TypeConverterAttribute__ctor_m52D4E66A914F1A04F2F10A7131A701670225D41C (TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 * __this, Type_t * ___type0, const RuntimeMethod* method)
{
{
Attribute__ctor_m45CAD4B01265CC84CC5A84F62EE2DBE85DE89EC0(__this, /*hidden argument*/NULL);
Type_t * L_0 = ___type0;
NullCheck(L_0);
String_t* L_1 = VirtFuncInvoker0< String_t* >::Invoke(27 /* System.String System.Type::get_AssemblyQualifiedName() */, L_0);
__this->set_typeName_0(L_1);
return;
}
}
// System.String System.ComponentModel.TypeConverterAttribute::get_ConverterTypeName()
extern "C" IL2CPP_METHOD_ATTR String_t* TypeConverterAttribute_get_ConverterTypeName_m883941C77E14FC5B4A3E32DD8F59F11739D5D6D8 (TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_typeName_0();
return L_0;
}
}
// System.Boolean System.ComponentModel.TypeConverterAttribute::Equals(System.Object)
extern "C" IL2CPP_METHOD_ATTR bool TypeConverterAttribute_Equals_mDA74DFC28CC7ABC315407EDD1AAC14531C5F6AC4 (TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeConverterAttribute_Equals_mDA74DFC28CC7ABC315407EDD1AAC14531C5F6AC4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 * V_0 = NULL;
{
RuntimeObject * L_0 = ___obj0;
V_0 = ((TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 *)IsInstSealed((RuntimeObject*)L_0, TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8_il2cpp_TypeInfo_var));
TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 * L_1 = V_0;
if (!L_1)
{
goto IL_001c;
}
}
{
TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 * L_2 = V_0;
NullCheck(L_2);
String_t* L_3 = TypeConverterAttribute_get_ConverterTypeName_m883941C77E14FC5B4A3E32DD8F59F11739D5D6D8(L_2, /*hidden argument*/NULL);
String_t* L_4 = __this->get_typeName_0();
bool L_5 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_3, L_4, /*hidden argument*/NULL);
return L_5;
}
IL_001c:
{
return (bool)0;
}
}
// System.Int32 System.ComponentModel.TypeConverterAttribute::GetHashCode()
extern "C" IL2CPP_METHOD_ATTR int32_t TypeConverterAttribute_GetHashCode_m35874D49724DA3F72C6C2575FD595A711A659DAA (TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_typeName_0();
NullCheck(L_0);
int32_t L_1 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_0);
return L_1;
}
}
// System.Void System.ComponentModel.TypeConverterAttribute::.cctor()
extern "C" IL2CPP_METHOD_ATTR void TypeConverterAttribute__cctor_mB1A775F56A5933A17CF349BD466B0CCE66B1078A (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (TypeConverterAttribute__cctor_mB1A775F56A5933A17CF349BD466B0CCE66B1078A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 * L_0 = (TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8 *)il2cpp_codegen_object_new(TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8_il2cpp_TypeInfo_var);
TypeConverterAttribute__ctor_mD0795A29B6FD59978CAAC6DAF3AC7EC564C519A5(L_0, /*hidden argument*/NULL);
((TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8_StaticFields*)il2cpp_codegen_static_fields_for(TypeConverterAttribute_tA0B22E1BE9471741D2CD2A078A2C9A5FF882C2F8_il2cpp_TypeInfo_var))->set_Default_1(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.ComponentModel.Win32Exception::.ctor()
extern "C" IL2CPP_METHOD_ATTR void Win32Exception__ctor_mC03E215A1695ED64DDC50F4BE9F59966974DF759 (Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Win32Exception__ctor_mC03E215A1695ED64DDC50F4BE9F59966974DF759_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Marshal_tC795CE9CC2FFBA41EDB1AC1C0FEC04607DFA8A40_il2cpp_TypeInfo_var);
int32_t L_0 = Marshal_GetLastWin32Error_mE1A714E69515F70001BA6714077880530257AEC7(/*hidden argument*/NULL);
Win32Exception__ctor_m2BEA755F6AA536ADDDF07D83BD8297F02584F714(__this, L_0, /*hidden argument*/NULL);
return;
}
}
// System.Void System.ComponentModel.Win32Exception::.ctor(System.Int32)
extern "C" IL2CPP_METHOD_ATTR void Win32Exception__ctor_m2BEA755F6AA536ADDDF07D83BD8297F02584F714 (Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668 * __this, int32_t ___error0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Win32Exception__ctor_m2BEA755F6AA536ADDDF07D83BD8297F02584F714_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___error0;
int32_t L_1 = ___error0;
IL2CPP_RUNTIME_CLASS_INIT(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var);
String_t* L_2 = Win32Exception_GetErrorMessage_m6085687D868718B45289CB6AF6EDCB7F89D7350D(L_1, /*hidden argument*/NULL);
Win32Exception__ctor_m94A043EE26097BBFE0ED22FD4EBEA357F142EFE6(__this, L_0, L_2, /*hidden argument*/NULL);
return;
}
}
// System.Void System.ComponentModel.Win32Exception::.ctor(System.Int32,System.String)
extern "C" IL2CPP_METHOD_ATTR void Win32Exception__ctor_m94A043EE26097BBFE0ED22FD4EBEA357F142EFE6 (Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668 * __this, int32_t ___error0, String_t* ___message1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___message1;
ExternalException__ctor_mD032EC4BD5C633D675C6AA458C584FB810EF70CC(__this, L_0, /*hidden argument*/NULL);
int32_t L_1 = ___error0;
__this->set_nativeErrorCode_17(L_1);
return;
}
}
// System.Void System.ComponentModel.Win32Exception::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
extern "C" IL2CPP_METHOD_ATTR void Win32Exception__ctor_mC7ADDE9D2FEE4E17432F63C24EF1D872380094DB (Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Win32Exception__ctor_mC7ADDE9D2FEE4E17432F63C24EF1D872380094DB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_1 = ___context1;
ExternalException__ctor_mFEC5FB15E763D381775B80255162202A3F961FCC(__this, L_0, L_1, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0;
NullCheck(L_2);
int32_t L_3 = SerializationInfo_GetInt32_mB47BD46A0BDBBAF5B47BB62E6EFF8E092E3F3656(L_2, _stringLiteral94195DF0921914B5E59813F0CF42420D7DEA99E7, /*hidden argument*/NULL);
__this->set_nativeErrorCode_17(L_3);
return;
}
}
// System.Void System.ComponentModel.Win32Exception::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
extern "C" IL2CPP_METHOD_ATTR void Win32Exception_GetObjectData_m7CD0D7A0806E4A9D8E78ADCBC616700379AB79E8 (Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668 * __this, SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * ___info0, StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 ___context1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Win32Exception_GetObjectData_m7CD0D7A0806E4A9D8E78ADCBC616700379AB79E8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_0 = ___info0;
if (L_0)
{
goto IL_000e;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, _stringLiteral59BD0A3FF43B32849B319E645D4798D8A5D1E889, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, Win32Exception_GetObjectData_m7CD0D7A0806E4A9D8E78ADCBC616700379AB79E8_RuntimeMethod_var);
}
IL_000e:
{
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_2 = ___info0;
int32_t L_3 = __this->get_nativeErrorCode_17();
NullCheck(L_2);
SerializationInfo_AddValue_m7C73917D9DC4B8FE4AFEF4BA8EBEDAB046A8D0BD(L_2, _stringLiteral94195DF0921914B5E59813F0CF42420D7DEA99E7, L_3, /*hidden argument*/NULL);
SerializationInfo_t1BB80E9C9DEA52DBF464487234B045E2930ADA26 * L_4 = ___info0;
StreamingContext_t2CCDC54E0E8D078AF4A50E3A8B921B828A900034 L_5 = ___context1;
Exception_GetObjectData_m76F759ED00FA218FFC522C32626B851FDE849AD6(__this, L_4, L_5, /*hidden argument*/NULL);
return;
}
}
// System.String System.ComponentModel.Win32Exception::GetErrorMessage(System.Int32)
extern "C" IL2CPP_METHOD_ATTR String_t* Win32Exception_GetErrorMessage_m6085687D868718B45289CB6AF6EDCB7F89D7350D (int32_t ___error0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Win32Exception_GetErrorMessage_m6085687D868718B45289CB6AF6EDCB7F89D7350D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
IL2CPP_RUNTIME_CLASS_INIT(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var);
bool L_0 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessagesInitialized_18();
if (L_0)
{
goto IL_000c;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var);
Win32Exception_InitializeErrorMessages_m4FE6F56C1C2CCB3F6468F0F9F5AD6E1B08673438(/*hidden argument*/NULL);
}
IL_000c:
{
IL2CPP_RUNTIME_CLASS_INIT(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_1 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
int32_t L_2 = ___error0;
NullCheck(L_1);
bool L_3 = Dictionary_2_TryGetValue_m581BE284F430A27B34743D8438ADB091C70000FD(L_1, L_2, (String_t**)(&V_0), /*hidden argument*/Dictionary_2_TryGetValue_m581BE284F430A27B34743D8438ADB091C70000FD_RuntimeMethod_var);
if (!L_3)
{
goto IL_001d;
}
}
{
String_t* L_4 = V_0;
return L_4;
}
IL_001d:
{
int32_t L_5 = ___error0;
int32_t L_6 = L_5;
RuntimeObject * L_7 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_6);
String_t* L_8 = String_Format_m0ACDD8B34764E4040AED0B3EEB753567E4576BFA(_stringLiteral206975CE40BF2190E1EBE832CBFB91DBAEB66EB0, L_7, /*hidden argument*/NULL);
return L_8;
}
}
// System.Void System.ComponentModel.Win32Exception::InitializeErrorMessages()
extern "C" IL2CPP_METHOD_ATTR void Win32Exception_InitializeErrorMessages_m4FE6F56C1C2CCB3F6468F0F9F5AD6E1B08673438 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Win32Exception_InitializeErrorMessages_m4FE6F56C1C2CCB3F6468F0F9F5AD6E1B08673438_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * V_0 = NULL;
bool V_1 = false;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
IL2CPP_RUNTIME_CLASS_INIT(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var);
bool L_0 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessagesInitialized_18();
if (!L_0)
{
goto IL_0008;
}
}
{
return;
}
IL_0008:
{
IL2CPP_RUNTIME_CLASS_INIT(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_1 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
V_0 = L_1;
V_1 = (bool)0;
}
IL_0010:
try
{ // begin try (depth: 1)
{
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_2 = V_0;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_2, (bool*)(&V_1), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var);
bool L_3 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessagesInitialized_18();
if (!L_3)
{
goto IL_0024;
}
}
IL_001f:
{
IL2CPP_LEAVE(0x684, FINALLY_067a);
}
IL_0024:
{
IL2CPP_RUNTIME_CLASS_INIT(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_4 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_4);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_4, 0, _stringLiteral42A8F651D79FD005EEAC0612DF6442B983A01184, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_5 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_5);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_5, 2, _stringLiteral60C04606224708CFBFEF6AC5E778E815A3740AE8, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_6 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_6);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_6, 3, _stringLiteral60C04606224708CFBFEF6AC5E778E815A3740AE8, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_7 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_7);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_7, 4, _stringLiteralC8452B0C049E050B8A8D8E298315154B410BB14F, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_8 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_8);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_8, 5, _stringLiteral64343A83AD8C0B8E2789C32CA5AB1EB6ABB614E0, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_9 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_9);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_9, 6, _stringLiteral5480F96B6833A4CB8F0AEF4EEA9FB153DB5B842E, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_10 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_10);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_10, ((int32_t)13), _stringLiteral0DE700C837994DEAC0F71DB131BE20824AEC05EA, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_11 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_11);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_11, ((int32_t)14), _stringLiteral0BE297B561141A6A2D82A7108DDDC36E1CC22DBA, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_12 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_12);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_12, ((int32_t)17), _stringLiteralBF399D891C479024714F066225B388058E8B6849, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_13 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_13);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_13, ((int32_t)18), _stringLiteral5798F18876C067AB053B1D0EB12BDAED73FA0392, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_14 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_14);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_14, ((int32_t)24), _stringLiteral8D87BE91452AF30ABCE041C075C797BDD216F3FA, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_15 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_15);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_15, ((int32_t)31), _stringLiteral1E591794DE2646B62ACB030C04B0F93927302891, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_16 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_16);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_16, ((int32_t)32), _stringLiteral63D3C5CDB8796B255DDB829AB1BAEE8CD898BC1F, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_17 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_17);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_17, ((int32_t)33), _stringLiteralF708D88AFD78292E96A07D5E880E7275E2C367D7, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_18 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_18);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_18, ((int32_t)50), _stringLiteral7D8C0F713241893544D6B281037E9209E24B3C3B, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_19 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_19);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_19, ((int32_t)55), _stringLiteral1A54038B0AA8D7F2DA83479B361076A9F2836D51, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_20 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_20);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_20, ((int32_t)87), _stringLiteralE60557A7E9CC6FEAF2F8FC5499C450D6D82D6923, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_21 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_21);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_21, ((int32_t)120), _stringLiteral906E86556DAA261FF5DABB90A37D2280B3901D37, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_22 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_22);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_22, ((int32_t)123), _stringLiteralBB1826EE4D8EF405A91381FAED170939609CF604, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_23 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_23);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_23, ((int32_t)127), _stringLiteralDFD6DF0631E85C741695FD36D45900F792B48FFD, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_24 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_24);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_24, ((int32_t)183), _stringLiteral3D24273BE458535CEFB4BAB63B3547DA87C24AA4, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_25 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_25);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_25, ((int32_t)267), _stringLiteralD82B06ADF1A876D702B6A3905D8D56B51827E40E, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_26 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_26);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_26, ((int32_t)995), _stringLiteral8004417B5F89CE52D6415C773647383F0A9302FF, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_27 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_27);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_27, ((int32_t)6000), _stringLiteralF5F3C7170FE5CED284547289C97FCF640CC3F7BB, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_28 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_28);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_28, ((int32_t)10004), _stringLiteralD897BF481C6D3038F32CD50B3A8B5F6CF56B6348, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_29 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_29);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_29, ((int32_t)10009), _stringLiteralA9AC5297B2F804CDAFA5D88F5E271E340BA5CF37, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_30 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_30);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_30, ((int32_t)10013), _stringLiteral64343A83AD8C0B8E2789C32CA5AB1EB6ABB614E0, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_31 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_31);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_31, ((int32_t)10014), _stringLiteral1AFEFDAD8F394C65ED6D000A865D699A38489C6F, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_32 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_32);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_32, ((int32_t)10022), _stringLiteralF8D3E8E47EDE7D1E1D63B90ADAC4163F137F5FBD, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_33 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_33);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_33, ((int32_t)10024), _stringLiteralC8452B0C049E050B8A8D8E298315154B410BB14F, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_34 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_34);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_34, ((int32_t)10035), _stringLiteral701DF7684DBD9D56FD9124002994696024429442, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_35 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_35);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_35, ((int32_t)10036), _stringLiteralBEBD2907CA9295D99796EA50EE317A1FC881504C, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_36 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_36);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_36, ((int32_t)10037), _stringLiteral0FC51A5C314382C855158EDA38FF5409A7E69535, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_37 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_37);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_37, ((int32_t)10038), _stringLiteral5F6C62FD921546F22A503EC993323335977C5BA0, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_38 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_38);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_38, ((int32_t)10039), _stringLiteralF6F646066BDF4B1EC66764F189EA43F9555404F9, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_39 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_39);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_39, ((int32_t)10040), _stringLiteral6BF991E7854ED942E57F7A8AE958526D710E4851, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_40 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_40);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_40, ((int32_t)10041), _stringLiteral3FF5F085A157B60CB28DBA0860F39CD3E12B11E1, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_41 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_41);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_41, ((int32_t)10042), _stringLiteral42D7307C56A3147C3F9B4B8A6CB6810CBDF8B65D, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_42 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_42);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_42, ((int32_t)10043), _stringLiteral05BA63FF22FFFA946A6C1E3E8B9D184A5A911E55, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_43 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_43);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_43, ((int32_t)10044), _stringLiteral389AADC179870858E615E7F86494CF9F12A7BC2B, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_44 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_44);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_44, ((int32_t)10045), _stringLiteral7D8C0F713241893544D6B281037E9209E24B3C3B, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_45 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_45);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_45, ((int32_t)10046), _stringLiteral677789471BFC26B9BAA2DCB7BDC1E90F13C9BEAC, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_46 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_46);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_46, ((int32_t)10047), _stringLiteral2749AD9B5C66B69071CBC7465E913B18000BE671, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_47 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_47);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_47, ((int32_t)10048), _stringLiteral53CCE0631F5BA4546493E150CC5EF970434EEF7F, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_48 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_48);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_48, ((int32_t)10049), _stringLiteral3E62E9B46156D196C1AAC718944419216D75E346, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_49 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_49);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_49, ((int32_t)10050), _stringLiteral1443CEC241FC8F0E9A22F01A964EE87B171C42C6, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_50 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_50);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_50, ((int32_t)10051), _stringLiteralD34A1412DD6535CEABE7960D72728113A96B875C, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_51 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_51);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_51, ((int32_t)10052), _stringLiteral3BEAE53F6712B7D394747CBA061465E3234815F3, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_52 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_52);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_52, ((int32_t)10053), _stringLiteral143E44BFE7FFA9CB39899B153BDB83E618D5F841, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_53 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_53);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_53, ((int32_t)10054), _stringLiteral2986A51D253E6221052722AAB2EFBC181246B417, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_54 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_54);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_54, ((int32_t)10055), _stringLiteral310BB6BA9118A5AE4CDF6A127D791325B95AFC7F, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_55 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_55);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_55, ((int32_t)10056), _stringLiteral2E98A4ED23C4C749F9FC8167CD3BDE6181CD3DDB, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_56 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_56);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_56, ((int32_t)10057), _stringLiteral6019AA352C36BF78F73A83E660E2DA74F2E4C2CE, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_57 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_57);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_57, ((int32_t)10058), _stringLiteral12B2131443E6187C800986B84AA53B32E1ADCB28, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_58 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_58);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_58, ((int32_t)10059), _stringLiteral81E6C84235179BEF6A424ADE0379CDB4A2F8F2B6, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_59 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_59);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_59, ((int32_t)10060), _stringLiteral52C871EA22DADA6554A1363EE61F9567C44EFD80, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_60 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_60);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_60, ((int32_t)10061), _stringLiteral96F7E671B1E48DA4A2700769F8225126847B97CF, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_61 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_61);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_61, ((int32_t)10062), _stringLiteral9370B2A9A4016E2EAC0B29188FD6198E7257FCBE, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_62 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_62);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_62, ((int32_t)10063), _stringLiteral8A87B64CAE5A39A0265ADA62F19E089C25FA123C, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_63 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_63);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_63, ((int32_t)10064), _stringLiteralA5A7E131A5CB8762553101BDA765297974113FA2, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_64 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_64);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_64, ((int32_t)10065), _stringLiteral62C6526007299CA03F778B5B7CE0D726354CAE0D, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_65 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_65);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_65, ((int32_t)10066), _stringLiteralCA827528D6904965FCEBBBCAD976A987F5F845B3, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_66 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_66);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_66, ((int32_t)10067), _stringLiteral66613814024EB80FC065BCD43B8BF07ED9297053, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_67 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_67);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_67, ((int32_t)10068), _stringLiteral21B53B1F02559D44A4E57D2971766159EBF6282F, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_68 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_68);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_68, ((int32_t)10069), _stringLiteralE9A049DD51F6F6165F82600419D9408A49973EBC, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_69 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_69);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_69, ((int32_t)10070), _stringLiteral8697064C54272EC190E9B70FFF08FEAF084EC16D, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_70 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_70);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_70, ((int32_t)10071), _stringLiteralBA195D654D6092A3E9DA8DDD541DD8C15779615B, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_71 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_71);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_71, ((int32_t)10091), _stringLiteral9649AD78D66FC282E7E49B63BEB51E52744030AC, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_72 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_72);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_72, ((int32_t)10092), _stringLiteral46C08613317C97DBB3017F710E4CE7C132854E87, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_73 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_73);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_73, ((int32_t)10093), _stringLiteralD6829BEAA0331951621D5601098DC271C792014A, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_74 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_74);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_74, ((int32_t)10101), _stringLiteral4F4E2E165630EEF5C6A1AE8670F28F4DDB7A7949, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_75 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_75);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_75, ((int32_t)10102), _stringLiteral532041BFE7809558509909668AB1E9ACD74F3380, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_76 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_76);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_76, ((int32_t)10103), _stringLiteralA2DAD54D8BCE08503C34ABC283C6FE74BD2E9FFC, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_77 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_77);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_77, ((int32_t)10104), _stringLiteral3E66AEB02C4E4C2A2B3A431EBF1731473D567D14, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_78 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_78);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_78, ((int32_t)10105), _stringLiteral5C96F9E08C71D3D17CA63CB49B810BC60238D399, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_79 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_79);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_79, ((int32_t)10106), _stringLiteralDE36C4365F53A75F4F2CE6CC742B8EDA0EE14E5D, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_80 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_80);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_80, ((int32_t)10107), _stringLiteral00F0B04BE2DDD54416CDF6724BEAC175AA9DEB01, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_81 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_81);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_81, ((int32_t)10108), _stringLiteral603C063F0A9F2922CA12D357A484E790CD9035BC, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_82 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_82);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_82, ((int32_t)10109), _stringLiteral7D9B4FAC07BFCAAA0E413BDE05E8E61039C6F7A3, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_83 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_83);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_83, ((int32_t)10112), _stringLiteral4091FC8C86D49636BCFA1F50F31C77CFA32263AF, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_84 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_84);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_84, ((int32_t)11001), _stringLiteral1382875027AD2421A9833D7063B819DB401FAD94, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_85 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_85);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_85, ((int32_t)11002), _stringLiteralCFE2562AB6327C20761CA6C5FC56D6DA277279E9, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_86 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_86);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_86, ((int32_t)11003), _stringLiteral2D21C9BFEF23327E8608E29D3F6008951F788E42, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_87 = ((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->get_s_ErrorMessage_19();
NullCheck(L_87);
Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA(L_87, ((int32_t)11004), _stringLiteralD802D232A85B790C06A7F0815C75D27016580682, /*hidden argument*/Dictionary_2_Add_m6B1FA5F9A77897E38E9B0CF95D11032066B98CCA_RuntimeMethod_var);
((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->set_s_ErrorMessagesInitialized_18((bool)1);
IL2CPP_LEAVE(0x684, FINALLY_067a);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_067a;
}
FINALLY_067a:
{ // begin finally (depth: 1)
{
bool L_88 = V_1;
if (!L_88)
{
goto IL_0683;
}
}
IL_067d:
{
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_89 = V_0;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_89, /*hidden argument*/NULL);
}
IL_0683:
{
IL2CPP_END_FINALLY(1658)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(1658)
{
IL2CPP_JUMP_TBL(0x684, IL_0684)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0684:
{
return;
}
}
// System.Void System.ComponentModel.Win32Exception::.cctor()
extern "C" IL2CPP_METHOD_ATTR void Win32Exception__cctor_m800CD9D0B3E3253B79A19B6646A7D28B29C3FC52 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Win32Exception__cctor_m800CD9D0B3E3253B79A19B6646A7D28B29C3FC52_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->set_s_ErrorMessagesInitialized_18((bool)0);
Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C * L_0 = (Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C *)il2cpp_codegen_object_new(Dictionary_2_t4EFE6A1D6502662B911688316C6920444A18CF0C_il2cpp_TypeInfo_var);
Dictionary_2__ctor_m6C6B59C12BD62E890CCF5AF0366E3DA0F29ADE6C(L_0, /*hidden argument*/Dictionary_2__ctor_m6C6B59C12BD62E890CCF5AF0366E3DA0F29ADE6C_RuntimeMethod_var);
((Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_StaticFields*)il2cpp_codegen_static_fields_for(Win32Exception_tB05BE97AB4CADD54DF96C0109689F0ECA7517668_il2cpp_TypeInfo_var))->set_s_ErrorMessage_19(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Diagnostics.DiagnosticsConfigurationHandler::.ctor()
extern "C" IL2CPP_METHOD_ATTR void DiagnosticsConfigurationHandler__ctor_m185BC74B0225A3E16EEB4164923931B79AAA0CF0 (DiagnosticsConfigurationHandler_t885EAAD2DCF9678F16E3BB296E307868ECE68239 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DiagnosticsConfigurationHandler__ctor_m185BC74B0225A3E16EEB4164923931B79AAA0CF0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_raise_profile_exception(DiagnosticsConfigurationHandler__ctor_m185BC74B0225A3E16EEB4164923931B79AAA0CF0_RuntimeMethod_var);
return;
}
}
// System.Object System.Diagnostics.DiagnosticsConfigurationHandler::Create(System.Object,System.Object,System.Xml.XmlNode)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * DiagnosticsConfigurationHandler_Create_mCC7EF5B43B6913E2429B37EC5923202EBB20AA96 (DiagnosticsConfigurationHandler_t885EAAD2DCF9678F16E3BB296E307868ECE68239 * __this, RuntimeObject * ___parent0, RuntimeObject * ___configContext1, XmlNode_t07D70045D843753E4FE8AFE40FD36244E6B6D7FB * ___section2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DiagnosticsConfigurationHandler_Create_mCC7EF5B43B6913E2429B37EC5923202EBB20AA96_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_raise_profile_exception(DiagnosticsConfigurationHandler_Create_mCC7EF5B43B6913E2429B37EC5923202EBB20AA96_RuntimeMethod_var);
return NULL;
}
}
#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.String System.DomainNameHelper::ParseCanonicalName(System.String,System.Int32,System.Int32,System.Boolean&)
extern "C" IL2CPP_METHOD_ATTR String_t* DomainNameHelper_ParseCanonicalName_mFE738FD1237E2D9D9A1B27BA73F58B1689D451E4 (String_t* ___str0, int32_t ___start1, int32_t ___end2, bool* ___loopback3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DomainNameHelper_ParseCanonicalName_mFE738FD1237E2D9D9A1B27BA73F58B1689D451E4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
int32_t V_1 = 0;
{
V_0 = (String_t*)NULL;
int32_t L_0 = ___end2;
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)1));
goto IL_0047;
}
IL_0008:
{
String_t* L_1 = ___str0;
int32_t L_2 = V_1;
NullCheck(L_1);
Il2CppChar L_3 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_1, L_2, /*hidden argument*/NULL);
if ((((int32_t)L_3) < ((int32_t)((int32_t)65))))
{
goto IL_0035;
}
}
{
String_t* L_4 = ___str0;
int32_t L_5 = V_1;
NullCheck(L_4);
Il2CppChar L_6 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_4, L_5, /*hidden argument*/NULL);
if ((((int32_t)L_6) > ((int32_t)((int32_t)90))))
{
goto IL_0035;
}
}
{
String_t* L_7 = ___str0;
int32_t L_8 = ___start1;
int32_t L_9 = ___end2;
int32_t L_10 = ___start1;
NullCheck(L_7);
String_t* L_11 = String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB(L_7, L_8, ((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)L_10)), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_12 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
NullCheck(L_11);
String_t* L_13 = String_ToLower_m91732DBE4AE31B77EA3BB2C185E66513919968A5(L_11, L_12, /*hidden argument*/NULL);
V_0 = L_13;
goto IL_004b;
}
IL_0035:
{
String_t* L_14 = ___str0;
int32_t L_15 = V_1;
NullCheck(L_14);
Il2CppChar L_16 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_14, L_15, /*hidden argument*/NULL);
if ((!(((uint32_t)L_16) == ((uint32_t)((int32_t)58)))))
{
goto IL_0043;
}
}
{
int32_t L_17 = V_1;
___end2 = L_17;
}
IL_0043:
{
int32_t L_18 = V_1;
V_1 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1));
}
IL_0047:
{
int32_t L_19 = V_1;
int32_t L_20 = ___start1;
if ((((int32_t)L_19) >= ((int32_t)L_20)))
{
goto IL_0008;
}
}
IL_004b:
{
String_t* L_21 = V_0;
if (L_21)
{
goto IL_0059;
}
}
{
String_t* L_22 = ___str0;
int32_t L_23 = ___start1;
int32_t L_24 = ___end2;
int32_t L_25 = ___start1;
NullCheck(L_22);
String_t* L_26 = String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB(L_22, L_23, ((int32_t)il2cpp_codegen_subtract((int32_t)L_24, (int32_t)L_25)), /*hidden argument*/NULL);
V_0 = L_26;
}
IL_0059:
{
String_t* L_27 = V_0;
bool L_28 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_27, _stringLiteral334389048B872A533002B34D73F8C29FD09EFC50, /*hidden argument*/NULL);
if (L_28)
{
goto IL_0073;
}
}
{
String_t* L_29 = V_0;
bool L_30 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_29, _stringLiteral3C7ECD7A063AD7AE0D2B9AB87B11F63CCC96C8F7, /*hidden argument*/NULL);
if (!L_30)
{
goto IL_007c;
}
}
IL_0073:
{
bool* L_31 = ___loopback3;
*((int8_t*)L_31) = (int8_t)1;
return _stringLiteral334389048B872A533002B34D73F8C29FD09EFC50;
}
IL_007c:
{
String_t* L_32 = V_0;
return L_32;
}
}
// System.Boolean System.DomainNameHelper::IsValid(System.Char*,System.UInt16,System.Int32&,System.Boolean&,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR bool DomainNameHelper_IsValid_mE9672A824F71E32116358C5FA029789855A4B461 (Il2CppChar* ___name0, uint16_t ___pos1, int32_t* ___returnedEnd2, bool* ___notCanonical3, bool ___notImplicitFile4, const RuntimeMethod* method)
{
Il2CppChar* V_0 = NULL;
Il2CppChar* V_1 = NULL;
Il2CppChar* V_2 = NULL;
Il2CppChar V_3 = 0x0;
{
Il2CppChar* L_0 = ___name0;
uint16_t L_1 = ___pos1;
V_0 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_1)), (int32_t)2))));
Il2CppChar* L_2 = V_0;
V_1 = (Il2CppChar*)L_2;
Il2CppChar* L_3 = ___name0;
int32_t* L_4 = ___returnedEnd2;
int32_t L_5 = *((int32_t*)L_4);
V_2 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_3, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_5)), (int32_t)2))));
goto IL_0042;
}
IL_0013:
{
Il2CppChar* L_6 = V_1;
int32_t L_7 = *((uint16_t*)L_6);
V_3 = L_7;
Il2CppChar L_8 = V_3;
if ((((int32_t)L_8) <= ((int32_t)((int32_t)127))))
{
goto IL_001d;
}
}
{
return (bool)0;
}
IL_001d:
{
Il2CppChar L_9 = V_3;
if ((((int32_t)L_9) == ((int32_t)((int32_t)47))))
{
goto IL_003a;
}
}
{
Il2CppChar L_10 = V_3;
if ((((int32_t)L_10) == ((int32_t)((int32_t)92))))
{
goto IL_003a;
}
}
{
bool L_11 = ___notImplicitFile4;
if (!L_11)
{
goto IL_003e;
}
}
{
Il2CppChar L_12 = V_3;
if ((((int32_t)L_12) == ((int32_t)((int32_t)58))))
{
goto IL_003a;
}
}
{
Il2CppChar L_13 = V_3;
if ((((int32_t)L_13) == ((int32_t)((int32_t)63))))
{
goto IL_003a;
}
}
{
Il2CppChar L_14 = V_3;
if ((!(((uint32_t)L_14) == ((uint32_t)((int32_t)35)))))
{
goto IL_003e;
}
}
IL_003a:
{
Il2CppChar* L_15 = V_1;
V_2 = (Il2CppChar*)L_15;
goto IL_0046;
}
IL_003e:
{
Il2CppChar* L_16 = V_1;
V_1 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_16, (int32_t)2));
}
IL_0042:
{
Il2CppChar* L_17 = V_1;
Il2CppChar* L_18 = V_2;
if ((!(((uintptr_t)L_17) >= ((uintptr_t)L_18))))
{
goto IL_0013;
}
}
IL_0046:
{
Il2CppChar* L_19 = V_2;
Il2CppChar* L_20 = V_0;
if ((!(((uintptr_t)L_19) == ((uintptr_t)L_20))))
{
goto IL_004c;
}
}
{
return (bool)0;
}
IL_004c:
{
Il2CppChar* L_21 = V_0;
V_1 = (Il2CppChar*)L_21;
goto IL_005a;
}
IL_0050:
{
Il2CppChar* L_22 = V_1;
int32_t L_23 = *((uint16_t*)L_22);
if ((((int32_t)L_23) == ((int32_t)((int32_t)46))))
{
goto IL_005e;
}
}
{
Il2CppChar* L_24 = V_1;
V_1 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_24, (int32_t)2));
}
IL_005a:
{
Il2CppChar* L_25 = V_1;
Il2CppChar* L_26 = V_2;
if ((!(((uintptr_t)L_25) >= ((uintptr_t)L_26))))
{
goto IL_0050;
}
}
IL_005e:
{
Il2CppChar* L_27 = V_0;
Il2CppChar* L_28 = V_1;
if ((((intptr_t)L_27) == ((intptr_t)L_28)))
{
goto IL_007b;
}
}
{
Il2CppChar* L_29 = V_1;
Il2CppChar* L_30 = V_0;
if ((((int64_t)(((int64_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_29, (intptr_t)L_30))/(int32_t)2)))))) > ((int64_t)(((int64_t)((int64_t)((int32_t)63)))))))
{
goto IL_007b;
}
}
{
Il2CppChar* L_31 = V_0;
Il2CppChar* L_32 = (Il2CppChar*)L_31;
V_0 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_32, (int32_t)2));
int32_t L_33 = *((uint16_t*)L_32);
bool* L_34 = ___notCanonical3;
bool L_35 = DomainNameHelper_IsASCIILetterOrDigit_mD3B0B9BD4573FADEF6AC7330A5EC58C220455F01(L_33, (bool*)L_34, /*hidden argument*/NULL);
if (L_35)
{
goto IL_008d;
}
}
IL_007b:
{
return (bool)0;
}
IL_007d:
{
Il2CppChar* L_36 = V_0;
Il2CppChar* L_37 = (Il2CppChar*)L_36;
V_0 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_37, (int32_t)2));
int32_t L_38 = *((uint16_t*)L_37);
bool* L_39 = ___notCanonical3;
bool L_40 = DomainNameHelper_IsValidDomainLabelCharacter_mF6DEB20D9D03A8728B1C58006C40D6603B7D61D1(L_38, (bool*)L_39, /*hidden argument*/NULL);
if (L_40)
{
goto IL_008d;
}
}
{
return (bool)0;
}
IL_008d:
{
Il2CppChar* L_41 = V_0;
Il2CppChar* L_42 = V_1;
if ((!(((uintptr_t)L_41) >= ((uintptr_t)L_42))))
{
goto IL_007d;
}
}
{
Il2CppChar* L_43 = V_0;
V_0 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_43, (int32_t)2));
Il2CppChar* L_44 = V_0;
Il2CppChar* L_45 = V_2;
if ((!(((uintptr_t)L_44) >= ((uintptr_t)L_45))))
{
goto IL_004c;
}
}
{
int32_t* L_46 = ___returnedEnd2;
Il2CppChar* L_47 = V_2;
Il2CppChar* L_48 = ___name0;
*((int32_t*)L_46) = (int32_t)(((int32_t)((uint16_t)(((int64_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_47, (intptr_t)L_48))/(int32_t)2))))))));
return (bool)1;
}
}
// System.Boolean System.DomainNameHelper::IsValidByIri(System.Char*,System.UInt16,System.Int32&,System.Boolean&,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR bool DomainNameHelper_IsValidByIri_m13E2A6D9EBD42326C096F2423DBB0014763D47BF (Il2CppChar* ___name0, uint16_t ___pos1, int32_t* ___returnedEnd2, bool* ___notCanonical3, bool ___notImplicitFile4, const RuntimeMethod* method)
{
Il2CppChar* V_0 = NULL;
Il2CppChar* V_1 = NULL;
Il2CppChar* V_2 = NULL;
int32_t V_3 = 0;
Il2CppChar V_4 = 0x0;
bool V_5 = false;
int32_t G_B27_0 = 0;
{
Il2CppChar* L_0 = ___name0;
uint16_t L_1 = ___pos1;
V_0 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_1)), (int32_t)2))));
Il2CppChar* L_2 = V_0;
V_1 = (Il2CppChar*)L_2;
Il2CppChar* L_3 = ___name0;
int32_t* L_4 = ___returnedEnd2;
int32_t L_5 = *((int32_t*)L_4);
V_2 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_3, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_5)), (int32_t)2))));
V_3 = 0;
goto IL_0043;
}
IL_0015:
{
Il2CppChar* L_6 = V_1;
int32_t L_7 = *((uint16_t*)L_6);
V_4 = L_7;
Il2CppChar L_8 = V_4;
if ((((int32_t)L_8) == ((int32_t)((int32_t)47))))
{
goto IL_003b;
}
}
{
Il2CppChar L_9 = V_4;
if ((((int32_t)L_9) == ((int32_t)((int32_t)92))))
{
goto IL_003b;
}
}
{
bool L_10 = ___notImplicitFile4;
if (!L_10)
{
goto IL_003f;
}
}
{
Il2CppChar L_11 = V_4;
if ((((int32_t)L_11) == ((int32_t)((int32_t)58))))
{
goto IL_003b;
}
}
{
Il2CppChar L_12 = V_4;
if ((((int32_t)L_12) == ((int32_t)((int32_t)63))))
{
goto IL_003b;
}
}
{
Il2CppChar L_13 = V_4;
if ((!(((uint32_t)L_13) == ((uint32_t)((int32_t)35)))))
{
goto IL_003f;
}
}
IL_003b:
{
Il2CppChar* L_14 = V_1;
V_2 = (Il2CppChar*)L_14;
goto IL_0047;
}
IL_003f:
{
Il2CppChar* L_15 = V_1;
V_1 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_15, (int32_t)2));
}
IL_0043:
{
Il2CppChar* L_16 = V_1;
Il2CppChar* L_17 = V_2;
if ((!(((uintptr_t)L_16) >= ((uintptr_t)L_17))))
{
goto IL_0015;
}
}
IL_0047:
{
Il2CppChar* L_18 = V_2;
Il2CppChar* L_19 = V_0;
if ((!(((uintptr_t)L_18) == ((uintptr_t)L_19))))
{
goto IL_004d;
}
}
{
return (bool)0;
}
IL_004d:
{
Il2CppChar* L_20 = V_0;
V_1 = (Il2CppChar*)L_20;
V_3 = 0;
V_5 = (bool)0;
goto IL_0098;
}
IL_0056:
{
Il2CppChar* L_21 = V_1;
int32_t L_22 = *((uint16_t*)L_21);
if ((((int32_t)L_22) == ((int32_t)((int32_t)46))))
{
goto IL_009c;
}
}
{
Il2CppChar* L_23 = V_1;
int32_t L_24 = *((uint16_t*)L_23);
if ((((int32_t)L_24) == ((int32_t)((int32_t)12290))))
{
goto IL_009c;
}
}
{
Il2CppChar* L_25 = V_1;
int32_t L_26 = *((uint16_t*)L_25);
if ((((int32_t)L_26) == ((int32_t)((int32_t)65294))))
{
goto IL_009c;
}
}
{
Il2CppChar* L_27 = V_1;
int32_t L_28 = *((uint16_t*)L_27);
if ((((int32_t)L_28) == ((int32_t)((int32_t)65377))))
{
goto IL_009c;
}
}
{
int32_t L_29 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_29, (int32_t)1));
Il2CppChar* L_30 = V_1;
int32_t L_31 = *((uint16_t*)L_30);
if ((((int32_t)L_31) <= ((int32_t)((int32_t)255))))
{
goto IL_0088;
}
}
{
int32_t L_32 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_32, (int32_t)1));
}
IL_0088:
{
Il2CppChar* L_33 = V_1;
int32_t L_34 = *((uint16_t*)L_33);
if ((((int32_t)L_34) < ((int32_t)((int32_t)160))))
{
goto IL_0094;
}
}
{
V_5 = (bool)1;
}
IL_0094:
{
Il2CppChar* L_35 = V_1;
V_1 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_35, (int32_t)2));
}
IL_0098:
{
Il2CppChar* L_36 = V_1;
Il2CppChar* L_37 = V_2;
if ((!(((uintptr_t)L_36) >= ((uintptr_t)L_37))))
{
goto IL_0056;
}
}
IL_009c:
{
Il2CppChar* L_38 = V_0;
Il2CppChar* L_39 = V_1;
if ((((intptr_t)L_38) == ((intptr_t)L_39)))
{
goto IL_00c7;
}
}
{
bool L_40 = V_5;
if (L_40)
{
goto IL_00a7;
}
}
{
int32_t L_41 = V_3;
G_B27_0 = L_41;
goto IL_00aa;
}
IL_00a7:
{
int32_t L_42 = V_3;
G_B27_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_42, (int32_t)4));
}
IL_00aa:
{
if ((((int32_t)G_B27_0) > ((int32_t)((int32_t)63))))
{
goto IL_00c7;
}
}
{
Il2CppChar* L_43 = V_0;
Il2CppChar* L_44 = (Il2CppChar*)L_43;
V_0 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_44, (int32_t)2));
int32_t L_45 = *((uint16_t*)L_44);
if ((((int32_t)L_45) >= ((int32_t)((int32_t)160))))
{
goto IL_00e4;
}
}
{
Il2CppChar* L_46 = V_0;
int32_t L_47 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_46, (int32_t)2)));
bool* L_48 = ___notCanonical3;
bool L_49 = DomainNameHelper_IsASCIILetterOrDigit_mD3B0B9BD4573FADEF6AC7330A5EC58C220455F01(L_47, (bool*)L_48, /*hidden argument*/NULL);
if (L_49)
{
goto IL_00e4;
}
}
IL_00c7:
{
return (bool)0;
}
IL_00c9:
{
Il2CppChar* L_50 = V_0;
Il2CppChar* L_51 = (Il2CppChar*)L_50;
V_0 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_51, (int32_t)2));
int32_t L_52 = *((uint16_t*)L_51);
if ((((int32_t)L_52) >= ((int32_t)((int32_t)160))))
{
goto IL_00e4;
}
}
{
Il2CppChar* L_53 = V_0;
int32_t L_54 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_53, (int32_t)2)));
bool* L_55 = ___notCanonical3;
bool L_56 = DomainNameHelper_IsValidDomainLabelCharacter_mF6DEB20D9D03A8728B1C58006C40D6603B7D61D1(L_54, (bool*)L_55, /*hidden argument*/NULL);
if (L_56)
{
goto IL_00e4;
}
}
{
return (bool)0;
}
IL_00e4:
{
Il2CppChar* L_57 = V_0;
Il2CppChar* L_58 = V_1;
if ((!(((uintptr_t)L_57) >= ((uintptr_t)L_58))))
{
goto IL_00c9;
}
}
{
Il2CppChar* L_59 = V_0;
V_0 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_59, (int32_t)2));
Il2CppChar* L_60 = V_0;
Il2CppChar* L_61 = V_2;
if ((!(((uintptr_t)L_60) >= ((uintptr_t)L_61))))
{
goto IL_004d;
}
}
{
int32_t* L_62 = ___returnedEnd2;
Il2CppChar* L_63 = V_2;
Il2CppChar* L_64 = ___name0;
*((int32_t*)L_62) = (int32_t)(((int32_t)((uint16_t)(((int64_t)((int64_t)(intptr_t)((Il2CppChar*)((intptr_t)((Il2CppChar*)il2cpp_codegen_subtract((intptr_t)L_63, (intptr_t)L_64))/(int32_t)2))))))));
return (bool)1;
}
}
// System.String System.DomainNameHelper::IdnEquivalent(System.Char*,System.Int32,System.Int32,System.Boolean&,System.Boolean&)
extern "C" IL2CPP_METHOD_ATTR String_t* DomainNameHelper_IdnEquivalent_m439593BAF7C6C801F577E7C27B0C4FBB1772E49F (Il2CppChar* ___hostname0, int32_t ___start1, int32_t ___end2, bool* ___allAscii3, bool* ___atLeastOneValidIdn4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DomainNameHelper_IdnEquivalent_m439593BAF7C6C801F577E7C27B0C4FBB1772E49F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* V_1 = NULL;
Il2CppChar* V_2 = NULL;
String_t* V_3 = NULL;
int32_t V_4 = 0;
int32_t V_5 = 0;
int32_t V_6 = 0;
bool V_7 = false;
bool V_8 = false;
bool V_9 = false;
Il2CppChar V_10 = 0x0;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
String_t* G_B4_0 = NULL;
String_t* G_B6_0 = NULL;
String_t* G_B5_0 = NULL;
int32_t G_B24_0 = 0;
int32_t G_B23_0 = 0;
int32_t G_B25_0 = 0;
int32_t G_B25_1 = 0;
{
V_0 = (String_t*)NULL;
Il2CppChar* L_0 = ___hostname0;
int32_t L_1 = ___start1;
int32_t L_2 = ___end2;
bool* L_3 = ___allAscii3;
String_t* L_4 = DomainNameHelper_IdnEquivalent_m459BFF3040F8E6BFE1CE1C6432A1343A2ECF2F57((Il2CppChar*)(Il2CppChar*)L_0, L_1, L_2, (bool*)L_3, (String_t**)(&V_0), /*hidden argument*/NULL);
V_1 = L_4;
String_t* L_5 = V_1;
if (!L_5)
{
goto IL_00f0;
}
}
{
bool* L_6 = ___allAscii3;
int32_t L_7 = *((uint8_t*)L_6);
if (L_7)
{
goto IL_001b;
}
}
{
String_t* L_8 = V_0;
G_B4_0 = L_8;
goto IL_001c;
}
IL_001b:
{
String_t* L_9 = V_1;
G_B4_0 = L_9;
}
IL_001c:
{
String_t* L_10 = G_B4_0;
V_3 = L_10;
String_t* L_11 = V_3;
V_2 = (Il2CppChar*)(((uintptr_t)L_11));
Il2CppChar* L_12 = V_2;
G_B5_0 = L_10;
if (!L_12)
{
G_B6_0 = L_10;
goto IL_002c;
}
}
{
Il2CppChar* L_13 = V_2;
int32_t L_14 = RuntimeHelpers_get_OffsetToStringData_mF3B79A906181F1A2734590DA161E2AF183853F8B(/*hidden argument*/NULL);
V_2 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_13, (int32_t)L_14));
G_B6_0 = G_B5_0;
}
IL_002c:
{
NullCheck(G_B6_0);
int32_t L_15 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(G_B6_0, /*hidden argument*/NULL);
V_4 = L_15;
V_5 = 0;
V_6 = 0;
V_7 = (bool)0;
V_8 = (bool)0;
V_9 = (bool)0;
}
IL_0042:
{
V_7 = (bool)0;
V_8 = (bool)0;
V_9 = (bool)0;
int32_t L_16 = V_6;
V_5 = L_16;
goto IL_00ab;
}
IL_0051:
{
Il2CppChar* L_17 = V_2;
int32_t L_18 = V_5;
int32_t L_19 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_17, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_18)), (int32_t)2)))));
V_10 = L_19;
bool L_20 = V_8;
if (L_20)
{
goto IL_007f;
}
}
{
V_8 = (bool)1;
int32_t L_21 = V_5;
int32_t L_22 = V_4;
if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)3))) >= ((int32_t)L_22)))
{
goto IL_007f;
}
}
{
Il2CppChar* L_23 = V_2;
int32_t L_24 = V_5;
bool L_25 = DomainNameHelper_IsIdnAce_m9193B7D824FC6965820FCE980FEE3E0B40EA94B8((Il2CppChar*)(Il2CppChar*)L_23, L_24, /*hidden argument*/NULL);
if (!L_25)
{
goto IL_007f;
}
}
{
int32_t L_26 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_26, (int32_t)4));
V_7 = (bool)1;
goto IL_00ab;
}
IL_007f:
{
Il2CppChar L_27 = V_10;
if ((((int32_t)L_27) == ((int32_t)((int32_t)46))))
{
goto IL_00a0;
}
}
{
Il2CppChar L_28 = V_10;
if ((((int32_t)L_28) == ((int32_t)((int32_t)12290))))
{
goto IL_00a0;
}
}
{
Il2CppChar L_29 = V_10;
if ((((int32_t)L_29) == ((int32_t)((int32_t)65294))))
{
goto IL_00a0;
}
}
{
Il2CppChar L_30 = V_10;
if ((!(((uint32_t)L_30) == ((uint32_t)((int32_t)65377)))))
{
goto IL_00a5;
}
}
IL_00a0:
{
V_9 = (bool)1;
goto IL_00b1;
}
IL_00a5:
{
int32_t L_31 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_31, (int32_t)1));
}
IL_00ab:
{
int32_t L_32 = V_5;
int32_t L_33 = V_4;
if ((((int32_t)L_32) < ((int32_t)L_33)))
{
goto IL_0051;
}
}
IL_00b1:
{
bool L_34 = V_7;
if (!L_34)
{
goto IL_00d6;
}
}
IL_00b5:
try
{ // begin try (depth: 1)
IdnMapping_tAF779B2798D263F30F4F4DAF1F21363201256EDC * L_35 = (IdnMapping_tAF779B2798D263F30F4F4DAF1F21363201256EDC *)il2cpp_codegen_object_new(IdnMapping_tAF779B2798D263F30F4F4DAF1F21363201256EDC_il2cpp_TypeInfo_var);
IdnMapping__ctor_mE5F38CE30977917F9B755D45A6AA80BE1D9324A7(L_35, /*hidden argument*/NULL);
Il2CppChar* L_36 = V_2;
int32_t L_37 = V_6;
int32_t L_38 = V_5;
int32_t L_39 = V_6;
String_t* L_40 = String_CreateString_mC16F6AD7A921B1AD038C1EB215D7F055C5676590(NULL, (Il2CppChar*)(Il2CppChar*)L_36, L_37, ((int32_t)il2cpp_codegen_subtract((int32_t)L_38, (int32_t)L_39)), /*hidden argument*/NULL);
NullCheck(L_35);
IdnMapping_GetUnicode_mBC420EB51831F695AC79B1AD9B18535658C3E16A(L_35, L_40, /*hidden argument*/NULL);
bool* L_41 = ___atLeastOneValidIdn4;
*((int8_t*)L_41) = (int8_t)1;
goto IL_00ec;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_00d3;
throw e;
}
CATCH_00d3:
{ // begin catch(System.ArgumentException)
goto IL_00d6;
} // end catch (depth: 1)
IL_00d6:
{
int32_t L_42 = V_5;
bool L_43 = V_9;
G_B23_0 = L_42;
if (L_43)
{
G_B24_0 = L_42;
goto IL_00df;
}
}
{
G_B25_0 = 0;
G_B25_1 = G_B23_0;
goto IL_00e0;
}
IL_00df:
{
G_B25_0 = 1;
G_B25_1 = G_B24_0;
}
IL_00e0:
{
V_6 = ((int32_t)il2cpp_codegen_add((int32_t)G_B25_1, (int32_t)G_B25_0));
int32_t L_44 = V_6;
int32_t L_45 = V_4;
if ((((int32_t)L_44) < ((int32_t)L_45)))
{
goto IL_0042;
}
}
IL_00ec:
{
V_3 = (String_t*)NULL;
goto IL_00f4;
}
IL_00f0:
{
bool* L_46 = ___atLeastOneValidIdn4;
*((int8_t*)L_46) = (int8_t)0;
}
IL_00f4:
{
String_t* L_47 = V_1;
return L_47;
}
}
// System.String System.DomainNameHelper::IdnEquivalent(System.Char*,System.Int32,System.Int32,System.Boolean&,System.String&)
extern "C" IL2CPP_METHOD_ATTR String_t* DomainNameHelper_IdnEquivalent_m459BFF3040F8E6BFE1CE1C6432A1343A2ECF2F57 (Il2CppChar* ___hostname0, int32_t ___start1, int32_t ___end2, bool* ___allAscii3, String_t** ___bidiStrippedHost4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DomainNameHelper_IdnEquivalent_m459BFF3040F8E6BFE1CE1C6432A1343A2ECF2F57_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
int32_t V_1 = 0;
String_t* V_2 = NULL;
IdnMapping_tAF779B2798D263F30F4F4DAF1F21363201256EDC * V_3 = NULL;
String_t* V_4 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
V_0 = (String_t*)NULL;
int32_t L_0 = ___end2;
int32_t L_1 = ___start1;
if ((((int32_t)L_0) > ((int32_t)L_1)))
{
goto IL_0008;
}
}
{
String_t* L_2 = V_0;
return L_2;
}
IL_0008:
{
int32_t L_3 = ___start1;
V_1 = L_3;
bool* L_4 = ___allAscii3;
*((int8_t*)L_4) = (int8_t)1;
goto IL_0023;
}
IL_000f:
{
Il2CppChar* L_5 = ___hostname0;
int32_t L_6 = V_1;
int32_t L_7 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_5, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_6)), (int32_t)2)))));
if ((((int32_t)L_7) <= ((int32_t)((int32_t)127))))
{
goto IL_001f;
}
}
{
bool* L_8 = ___allAscii3;
*((int8_t*)L_8) = (int8_t)0;
goto IL_0027;
}
IL_001f:
{
int32_t L_9 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0023:
{
int32_t L_10 = V_1;
int32_t L_11 = ___end2;
if ((((int32_t)L_10) < ((int32_t)L_11)))
{
goto IL_000f;
}
}
IL_0027:
{
bool* L_12 = ___allAscii3;
int32_t L_13 = *((uint8_t*)L_12);
if (!L_13)
{
goto IL_0042;
}
}
{
Il2CppChar* L_14 = ___hostname0;
int32_t L_15 = ___start1;
int32_t L_16 = ___end2;
int32_t L_17 = ___start1;
String_t* L_18 = String_CreateString_mC16F6AD7A921B1AD038C1EB215D7F055C5676590(NULL, (Il2CppChar*)(Il2CppChar*)L_14, L_15, ((int32_t)il2cpp_codegen_subtract((int32_t)L_16, (int32_t)L_17)), /*hidden argument*/NULL);
V_2 = L_18;
String_t* L_19 = V_2;
if (L_19)
{
goto IL_003b;
}
}
{
return (String_t*)NULL;
}
IL_003b:
{
String_t* L_20 = V_2;
NullCheck(L_20);
String_t* L_21 = String_ToLowerInvariant_m197BD65B6582DC546FF1BC398161EEFA708F799E(L_20, /*hidden argument*/NULL);
return L_21;
}
IL_0042:
{
IdnMapping_tAF779B2798D263F30F4F4DAF1F21363201256EDC * L_22 = (IdnMapping_tAF779B2798D263F30F4F4DAF1F21363201256EDC *)il2cpp_codegen_object_new(IdnMapping_tAF779B2798D263F30F4F4DAF1F21363201256EDC_il2cpp_TypeInfo_var);
IdnMapping__ctor_mE5F38CE30977917F9B755D45A6AA80BE1D9324A7(L_22, /*hidden argument*/NULL);
V_3 = L_22;
String_t** L_23 = ___bidiStrippedHost4;
Il2CppChar* L_24 = ___hostname0;
int32_t L_25 = ___start1;
int32_t L_26 = ___end2;
int32_t L_27 = ___start1;
IL2CPP_RUNTIME_CLASS_INIT(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_il2cpp_TypeInfo_var);
String_t* L_28 = Uri_StripBidiControlCharacter_m49D782826401F99D943C1AD76A75125879FF332F((Il2CppChar*)(Il2CppChar*)L_24, L_25, ((int32_t)il2cpp_codegen_subtract((int32_t)L_26, (int32_t)L_27)), /*hidden argument*/NULL);
*((RuntimeObject **)L_23) = (RuntimeObject *)L_28;
Il2CppCodeGenWriteBarrier((RuntimeObject **)L_23, (RuntimeObject *)L_28);
}
IL_0055:
try
{ // begin try (depth: 1)
IdnMapping_tAF779B2798D263F30F4F4DAF1F21363201256EDC * L_29 = V_3;
String_t** L_30 = ___bidiStrippedHost4;
String_t* L_31 = *((String_t**)L_30);
NullCheck(L_29);
String_t* L_32 = IdnMapping_GetAscii_mE829EDA54A82515593FE6EF29E624E0FA78DAA71(L_29, L_31, /*hidden argument*/NULL);
V_4 = L_32;
goto IL_0073;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0062;
throw e;
}
CATCH_0062:
{ // begin catch(System.ArgumentException)
String_t* L_33 = SR_GetString_m3FC710B15474A9B651DA02B303241B6D8B87E2A7(_stringLiteral36CA0BFCBC1963A66664AE75C501AF9D8B728C7C, /*hidden argument*/NULL);
UriFormatException_t86B375C9E56DBEE5BD4CC9D71C4C40AE5141808A * L_34 = (UriFormatException_t86B375C9E56DBEE5BD4CC9D71C4C40AE5141808A *)il2cpp_codegen_object_new(UriFormatException_t86B375C9E56DBEE5BD4CC9D71C4C40AE5141808A_il2cpp_TypeInfo_var);
UriFormatException__ctor_mE1D46962CC168EB07B59D1265F5734A8F587567D(L_34, L_33, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_34, NULL, DomainNameHelper_IdnEquivalent_m459BFF3040F8E6BFE1CE1C6432A1343A2ECF2F57_RuntimeMethod_var);
} // end catch (depth: 1)
IL_0073:
{
String_t* L_35 = V_4;
return L_35;
}
}
// System.Boolean System.DomainNameHelper::IsIdnAce(System.String,System.Int32)
extern "C" IL2CPP_METHOD_ATTR bool DomainNameHelper_IsIdnAce_m2231C778C4CCE141ACDC412737642CC365307445 (String_t* ___input0, int32_t ___index1, const RuntimeMethod* method)
{
{
String_t* L_0 = ___input0;
int32_t L_1 = ___index1;
NullCheck(L_0);
Il2CppChar L_2 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_0, L_1, /*hidden argument*/NULL);
if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)120)))))
{
goto IL_0034;
}
}
{
String_t* L_3 = ___input0;
int32_t L_4 = ___index1;
NullCheck(L_3);
Il2CppChar L_5 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_3, ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)), /*hidden argument*/NULL);
if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)110)))))
{
goto IL_0034;
}
}
{
String_t* L_6 = ___input0;
int32_t L_7 = ___index1;
NullCheck(L_6);
Il2CppChar L_8 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_6, ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)2)), /*hidden argument*/NULL);
if ((!(((uint32_t)L_8) == ((uint32_t)((int32_t)45)))))
{
goto IL_0034;
}
}
{
String_t* L_9 = ___input0;
int32_t L_10 = ___index1;
NullCheck(L_9);
Il2CppChar L_11 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_9, ((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)3)), /*hidden argument*/NULL);
if ((!(((uint32_t)L_11) == ((uint32_t)((int32_t)45)))))
{
goto IL_0034;
}
}
{
return (bool)1;
}
IL_0034:
{
return (bool)0;
}
}
// System.Boolean System.DomainNameHelper::IsIdnAce(System.Char*,System.Int32)
extern "C" IL2CPP_METHOD_ATTR bool DomainNameHelper_IsIdnAce_m9193B7D824FC6965820FCE980FEE3E0B40EA94B8 (Il2CppChar* ___input0, int32_t ___index1, const RuntimeMethod* method)
{
{
Il2CppChar* L_0 = ___input0;
int32_t L_1 = ___index1;
int32_t L_2 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_1)), (int32_t)2)))));
if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)120)))))
{
goto IL_0034;
}
}
{
Il2CppChar* L_3 = ___input0;
int32_t L_4 = ___index1;
int32_t L_5 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_3, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)1)))), (int32_t)2)))));
if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)110)))))
{
goto IL_0034;
}
}
{
Il2CppChar* L_6 = ___input0;
int32_t L_7 = ___index1;
int32_t L_8 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_6, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)2)))), (int32_t)2)))));
if ((!(((uint32_t)L_8) == ((uint32_t)((int32_t)45)))))
{
goto IL_0034;
}
}
{
Il2CppChar* L_9 = ___input0;
int32_t L_10 = ___index1;
int32_t L_11 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_9, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)3)))), (int32_t)2)))));
if ((!(((uint32_t)L_11) == ((uint32_t)((int32_t)45)))))
{
goto IL_0034;
}
}
{
return (bool)1;
}
IL_0034:
{
return (bool)0;
}
}
// System.String System.DomainNameHelper::UnicodeEquivalent(System.String,System.Char*,System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR String_t* DomainNameHelper_UnicodeEquivalent_mA80E5FF3AD6AFBB9FC257ED1C4F0D31C8F0EFEC3 (String_t* ___idnHost0, Il2CppChar* ___hostname1, int32_t ___start2, int32_t ___end3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DomainNameHelper_UnicodeEquivalent_mA80E5FF3AD6AFBB9FC257ED1C4F0D31C8F0EFEC3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
IdnMapping_tAF779B2798D263F30F4F4DAF1F21363201256EDC * V_0 = NULL;
bool V_1 = false;
String_t* V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
IdnMapping_tAF779B2798D263F30F4F4DAF1F21363201256EDC * L_0 = (IdnMapping_tAF779B2798D263F30F4F4DAF1F21363201256EDC *)il2cpp_codegen_object_new(IdnMapping_tAF779B2798D263F30F4F4DAF1F21363201256EDC_il2cpp_TypeInfo_var);
IdnMapping__ctor_mE5F38CE30977917F9B755D45A6AA80BE1D9324A7(L_0, /*hidden argument*/NULL);
V_0 = L_0;
}
IL_0006:
try
{ // begin try (depth: 1)
IdnMapping_tAF779B2798D263F30F4F4DAF1F21363201256EDC * L_1 = V_0;
String_t* L_2 = ___idnHost0;
NullCheck(L_1);
String_t* L_3 = IdnMapping_GetUnicode_mBC420EB51831F695AC79B1AD9B18535658C3E16A(L_1, L_2, /*hidden argument*/NULL);
V_2 = L_3;
goto IL_0022;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0010;
throw e;
}
CATCH_0010:
{ // begin catch(System.ArgumentException)
goto IL_0013;
} // end catch (depth: 1)
IL_0013:
{
V_1 = (bool)1;
Il2CppChar* L_4 = ___hostname1;
int32_t L_5 = ___start2;
int32_t L_6 = ___end3;
String_t* L_7 = DomainNameHelper_UnicodeEquivalent_mD5A7A659B82F1FBF7ABF30009117CFBF8BC4D55F((Il2CppChar*)(Il2CppChar*)L_4, L_5, L_6, (bool*)(&V_1), (bool*)(&V_1), /*hidden argument*/NULL);
return L_7;
}
IL_0022:
{
String_t* L_8 = V_2;
return L_8;
}
}
// System.String System.DomainNameHelper::UnicodeEquivalent(System.Char*,System.Int32,System.Int32,System.Boolean&,System.Boolean&)
extern "C" IL2CPP_METHOD_ATTR String_t* DomainNameHelper_UnicodeEquivalent_mD5A7A659B82F1FBF7ABF30009117CFBF8BC4D55F (Il2CppChar* ___hostname0, int32_t ___start1, int32_t ___end2, bool* ___allAscii3, bool* ___atLeastOneValidIdn4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DomainNameHelper_UnicodeEquivalent_mD5A7A659B82F1FBF7ABF30009117CFBF8BC4D55F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
IdnMapping_tAF779B2798D263F30F4F4DAF1F21363201256EDC * V_0 = NULL;
String_t* V_1 = NULL;
String_t* V_2 = NULL;
String_t* V_3 = NULL;
int32_t V_4 = 0;
int32_t V_5 = 0;
int32_t V_6 = 0;
bool V_7 = false;
bool V_8 = false;
bool V_9 = false;
bool V_10 = false;
Il2CppChar V_11 = 0x0;
String_t* V_12 = NULL;
bool V_13 = false;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
int32_t G_B35_0 = 0;
int32_t G_B34_0 = 0;
int32_t G_B36_0 = 0;
int32_t G_B36_1 = 0;
{
IdnMapping_tAF779B2798D263F30F4F4DAF1F21363201256EDC * L_0 = (IdnMapping_tAF779B2798D263F30F4F4DAF1F21363201256EDC *)il2cpp_codegen_object_new(IdnMapping_tAF779B2798D263F30F4F4DAF1F21363201256EDC_il2cpp_TypeInfo_var);
IdnMapping__ctor_mE5F38CE30977917F9B755D45A6AA80BE1D9324A7(L_0, /*hidden argument*/NULL);
V_0 = L_0;
bool* L_1 = ___allAscii3;
*((int8_t*)L_1) = (int8_t)1;
bool* L_2 = ___atLeastOneValidIdn4;
*((int8_t*)L_2) = (int8_t)0;
V_1 = (String_t*)NULL;
int32_t L_3 = ___end2;
int32_t L_4 = ___start1;
if ((((int32_t)L_3) > ((int32_t)L_4)))
{
goto IL_0015;
}
}
{
String_t* L_5 = V_1;
return L_5;
}
IL_0015:
{
Il2CppChar* L_6 = ___hostname0;
int32_t L_7 = ___start1;
int32_t L_8 = ___end2;
int32_t L_9 = ___start1;
IL2CPP_RUNTIME_CLASS_INIT(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_il2cpp_TypeInfo_var);
String_t* L_10 = Uri_StripBidiControlCharacter_m49D782826401F99D943C1AD76A75125879FF332F((Il2CppChar*)(Il2CppChar*)L_6, L_7, ((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)L_9)), /*hidden argument*/NULL);
V_2 = L_10;
V_3 = (String_t*)NULL;
V_4 = 0;
V_5 = 0;
String_t* L_11 = V_2;
NullCheck(L_11);
int32_t L_12 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_11, /*hidden argument*/NULL);
V_6 = L_12;
V_7 = (bool)1;
V_8 = (bool)0;
V_9 = (bool)0;
V_10 = (bool)0;
}
IL_003c:
{
V_7 = (bool)1;
V_8 = (bool)0;
V_9 = (bool)0;
V_10 = (bool)0;
int32_t L_13 = V_4;
V_5 = L_13;
goto IL_00b6;
}
IL_004e:
{
String_t* L_14 = V_2;
int32_t L_15 = V_5;
NullCheck(L_14);
Il2CppChar L_16 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_14, L_15, /*hidden argument*/NULL);
V_11 = L_16;
bool L_17 = V_9;
if (L_17)
{
goto IL_007a;
}
}
{
V_9 = (bool)1;
int32_t L_18 = V_5;
int32_t L_19 = V_6;
if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)3))) >= ((int32_t)L_19)))
{
goto IL_007a;
}
}
{
Il2CppChar L_20 = V_11;
if ((!(((uint32_t)L_20) == ((uint32_t)((int32_t)120)))))
{
goto IL_007a;
}
}
{
String_t* L_21 = V_2;
int32_t L_22 = V_5;
bool L_23 = DomainNameHelper_IsIdnAce_m2231C778C4CCE141ACDC412737642CC365307445(L_21, L_22, /*hidden argument*/NULL);
if (!L_23)
{
goto IL_007a;
}
}
{
V_8 = (bool)1;
}
IL_007a:
{
bool L_24 = V_7;
if (!L_24)
{
goto IL_008a;
}
}
{
Il2CppChar L_25 = V_11;
if ((((int32_t)L_25) <= ((int32_t)((int32_t)127))))
{
goto IL_008a;
}
}
{
V_7 = (bool)0;
bool* L_26 = ___allAscii3;
*((int8_t*)L_26) = (int8_t)0;
}
IL_008a:
{
Il2CppChar L_27 = V_11;
if ((((int32_t)L_27) == ((int32_t)((int32_t)46))))
{
goto IL_00ab;
}
}
{
Il2CppChar L_28 = V_11;
if ((((int32_t)L_28) == ((int32_t)((int32_t)12290))))
{
goto IL_00ab;
}
}
{
Il2CppChar L_29 = V_11;
if ((((int32_t)L_29) == ((int32_t)((int32_t)65294))))
{
goto IL_00ab;
}
}
{
Il2CppChar L_30 = V_11;
if ((!(((uint32_t)L_30) == ((uint32_t)((int32_t)65377)))))
{
goto IL_00b0;
}
}
IL_00ab:
{
V_10 = (bool)1;
goto IL_00bc;
}
IL_00b0:
{
int32_t L_31 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_31, (int32_t)1));
}
IL_00b6:
{
int32_t L_32 = V_5;
int32_t L_33 = V_6;
if ((((int32_t)L_32) < ((int32_t)L_33)))
{
goto IL_004e;
}
}
IL_00bc:
{
bool L_34 = V_7;
if (L_34)
{
goto IL_010d;
}
}
{
String_t* L_35 = V_2;
int32_t L_36 = V_4;
int32_t L_37 = V_5;
int32_t L_38 = V_4;
NullCheck(L_35);
String_t* L_39 = String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB(L_35, L_36, ((int32_t)il2cpp_codegen_subtract((int32_t)L_37, (int32_t)L_38)), /*hidden argument*/NULL);
V_12 = L_39;
}
IL_00cf:
try
{ // begin try (depth: 1)
IdnMapping_tAF779B2798D263F30F4F4DAF1F21363201256EDC * L_40 = V_0;
String_t* L_41 = V_12;
NullCheck(L_40);
String_t* L_42 = IdnMapping_GetAscii_mE829EDA54A82515593FE6EF29E624E0FA78DAA71(L_40, L_41, /*hidden argument*/NULL);
V_12 = L_42;
goto IL_00ec;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_00db;
throw e;
}
CATCH_00db:
{ // begin catch(System.ArgumentException)
String_t* L_43 = SR_GetString_m3FC710B15474A9B651DA02B303241B6D8B87E2A7(_stringLiteral36CA0BFCBC1963A66664AE75C501AF9D8B728C7C, /*hidden argument*/NULL);
UriFormatException_t86B375C9E56DBEE5BD4CC9D71C4C40AE5141808A * L_44 = (UriFormatException_t86B375C9E56DBEE5BD4CC9D71C4C40AE5141808A *)il2cpp_codegen_object_new(UriFormatException_t86B375C9E56DBEE5BD4CC9D71C4C40AE5141808A_il2cpp_TypeInfo_var);
UriFormatException__ctor_mE1D46962CC168EB07B59D1265F5734A8F587567D(L_44, L_43, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_44, NULL, DomainNameHelper_UnicodeEquivalent_mD5A7A659B82F1FBF7ABF30009117CFBF8BC4D55F_RuntimeMethod_var);
} // end catch (depth: 1)
IL_00ec:
{
String_t* L_45 = V_3;
IdnMapping_tAF779B2798D263F30F4F4DAF1F21363201256EDC * L_46 = V_0;
String_t* L_47 = V_12;
NullCheck(L_46);
String_t* L_48 = IdnMapping_GetUnicode_mBC420EB51831F695AC79B1AD9B18535658C3E16A(L_46, L_47, /*hidden argument*/NULL);
String_t* L_49 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_45, L_48, /*hidden argument*/NULL);
V_3 = L_49;
bool L_50 = V_10;
if (!L_50)
{
goto IL_0177;
}
}
{
String_t* L_51 = V_3;
String_t* L_52 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_51, _stringLiteral3A52CE780950D4D969792A2559CD519D7EE8C727, /*hidden argument*/NULL);
V_3 = L_52;
goto IL_0177;
}
IL_010d:
{
V_13 = (bool)0;
bool L_53 = V_8;
if (!L_53)
{
goto IL_014a;
}
}
IL_0114:
try
{ // begin try (depth: 1)
{
String_t* L_54 = V_3;
IdnMapping_tAF779B2798D263F30F4F4DAF1F21363201256EDC * L_55 = V_0;
String_t* L_56 = V_2;
int32_t L_57 = V_4;
int32_t L_58 = V_5;
int32_t L_59 = V_4;
NullCheck(L_56);
String_t* L_60 = String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB(L_56, L_57, ((int32_t)il2cpp_codegen_subtract((int32_t)L_58, (int32_t)L_59)), /*hidden argument*/NULL);
NullCheck(L_55);
String_t* L_61 = IdnMapping_GetUnicode_mBC420EB51831F695AC79B1AD9B18535658C3E16A(L_55, L_60, /*hidden argument*/NULL);
String_t* L_62 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_54, L_61, /*hidden argument*/NULL);
V_3 = L_62;
bool L_63 = V_10;
if (!L_63)
{
goto IL_013e;
}
}
IL_0132:
{
String_t* L_64 = V_3;
String_t* L_65 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_64, _stringLiteral3A52CE780950D4D969792A2559CD519D7EE8C727, /*hidden argument*/NULL);
V_3 = L_65;
}
IL_013e:
{
V_13 = (bool)1;
bool* L_66 = ___atLeastOneValidIdn4;
*((int8_t*)L_66) = (int8_t)1;
goto IL_014a;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__exception_local = (Exception_t *)e.ex;
if(il2cpp_codegen_class_is_assignable_from (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex)))
goto CATCH_0147;
throw e;
}
CATCH_0147:
{ // begin catch(System.ArgumentException)
goto IL_014a;
} // end catch (depth: 1)
IL_014a:
{
bool L_67 = V_13;
if (L_67)
{
goto IL_0177;
}
}
{
String_t* L_68 = V_3;
String_t* L_69 = V_2;
int32_t L_70 = V_4;
int32_t L_71 = V_5;
int32_t L_72 = V_4;
NullCheck(L_69);
String_t* L_73 = String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB(L_69, L_70, ((int32_t)il2cpp_codegen_subtract((int32_t)L_71, (int32_t)L_72)), /*hidden argument*/NULL);
NullCheck(L_73);
String_t* L_74 = String_ToLowerInvariant_m197BD65B6582DC546FF1BC398161EEFA708F799E(L_73, /*hidden argument*/NULL);
String_t* L_75 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_68, L_74, /*hidden argument*/NULL);
V_3 = L_75;
bool L_76 = V_10;
if (!L_76)
{
goto IL_0177;
}
}
{
String_t* L_77 = V_3;
String_t* L_78 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(L_77, _stringLiteral3A52CE780950D4D969792A2559CD519D7EE8C727, /*hidden argument*/NULL);
V_3 = L_78;
}
IL_0177:
{
int32_t L_79 = V_5;
bool L_80 = V_10;
G_B34_0 = L_79;
if (L_80)
{
G_B35_0 = L_79;
goto IL_0180;
}
}
{
G_B36_0 = 0;
G_B36_1 = G_B34_0;
goto IL_0181;
}
IL_0180:
{
G_B36_0 = 1;
G_B36_1 = G_B35_0;
}
IL_0181:
{
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)G_B36_1, (int32_t)G_B36_0));
int32_t L_81 = V_4;
int32_t L_82 = V_6;
if ((((int32_t)L_81) < ((int32_t)L_82)))
{
goto IL_003c;
}
}
{
String_t* L_83 = V_3;
return L_83;
}
}
// System.Boolean System.DomainNameHelper::IsASCIILetterOrDigit(System.Char,System.Boolean&)
extern "C" IL2CPP_METHOD_ATTR bool DomainNameHelper_IsASCIILetterOrDigit_mD3B0B9BD4573FADEF6AC7330A5EC58C220455F01 (Il2CppChar ___character0, bool* ___notCanonical1, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = ___character0;
if ((((int32_t)L_0) < ((int32_t)((int32_t)97))))
{
goto IL_000a;
}
}
{
Il2CppChar L_1 = ___character0;
if ((((int32_t)L_1) <= ((int32_t)((int32_t)122))))
{
goto IL_0014;
}
}
IL_000a:
{
Il2CppChar L_2 = ___character0;
if ((((int32_t)L_2) < ((int32_t)((int32_t)48))))
{
goto IL_0016;
}
}
{
Il2CppChar L_3 = ___character0;
if ((((int32_t)L_3) > ((int32_t)((int32_t)57))))
{
goto IL_0016;
}
}
IL_0014:
{
return (bool)1;
}
IL_0016:
{
Il2CppChar L_4 = ___character0;
if ((((int32_t)L_4) < ((int32_t)((int32_t)65))))
{
goto IL_0025;
}
}
{
Il2CppChar L_5 = ___character0;
if ((((int32_t)L_5) > ((int32_t)((int32_t)90))))
{
goto IL_0025;
}
}
{
bool* L_6 = ___notCanonical1;
*((int8_t*)L_6) = (int8_t)1;
return (bool)1;
}
IL_0025:
{
return (bool)0;
}
}
// System.Boolean System.DomainNameHelper::IsValidDomainLabelCharacter(System.Char,System.Boolean&)
extern "C" IL2CPP_METHOD_ATTR bool DomainNameHelper_IsValidDomainLabelCharacter_mF6DEB20D9D03A8728B1C58006C40D6603B7D61D1 (Il2CppChar ___character0, bool* ___notCanonical1, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = ___character0;
if ((((int32_t)L_0) < ((int32_t)((int32_t)97))))
{
goto IL_000a;
}
}
{
Il2CppChar L_1 = ___character0;
if ((((int32_t)L_1) <= ((int32_t)((int32_t)122))))
{
goto IL_001e;
}
}
IL_000a:
{
Il2CppChar L_2 = ___character0;
if ((((int32_t)L_2) < ((int32_t)((int32_t)48))))
{
goto IL_0014;
}
}
{
Il2CppChar L_3 = ___character0;
if ((((int32_t)L_3) <= ((int32_t)((int32_t)57))))
{
goto IL_001e;
}
}
IL_0014:
{
Il2CppChar L_4 = ___character0;
if ((((int32_t)L_4) == ((int32_t)((int32_t)45))))
{
goto IL_001e;
}
}
{
Il2CppChar L_5 = ___character0;
if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)95)))))
{
goto IL_0020;
}
}
IL_001e:
{
return (bool)1;
}
IL_0020:
{
Il2CppChar L_6 = ___character0;
if ((((int32_t)L_6) < ((int32_t)((int32_t)65))))
{
goto IL_002f;
}
}
{
Il2CppChar L_7 = ___character0;
if ((((int32_t)L_7) > ((int32_t)((int32_t)90))))
{
goto IL_002f;
}
}
{
bool* L_8 = ___notCanonical1;
*((int8_t*)L_8) = (int8_t)1;
return (bool)1;
}
IL_002f:
{
return (bool)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.IOAsyncCallback::.ctor(System.Object,System.IntPtr)
extern "C" IL2CPP_METHOD_ATTR void IOAsyncCallback__ctor_m1010BF5234B0ECC2FEB54105BA15B313633C1985 (IOAsyncCallback_tEAEB626A6DAC959F4C365B12136A80EE9AA17547 * __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.IOAsyncCallback::Invoke(System.IOAsyncResult)
extern "C" IL2CPP_METHOD_ATTR void IOAsyncCallback_Invoke_mB95F7E7F0E8326CE5364A30F42FC1073B0AB2D8B (IOAsyncCallback_tEAEB626A6DAC959F4C365B12136A80EE9AA17547 * __this, IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD * ___ioares0, const RuntimeMethod* method)
{
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* delegatesToInvoke = __this->get_delegates_11();
if (delegatesToInvoke != NULL)
{
il2cpp_array_size_t length = delegatesToInvoke->max_length;
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = (delegatesToInvoke)->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
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) (IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___ioares0, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___ioares0, 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_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, ___ioares0);
else
GenericVirtActionInvoker0::Invoke(targetMethod, ___ioares0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___ioares0);
else
VirtActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___ioares0);
}
}
}
else
{
typedef void (*FunctionPointerType) (IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___ioares0, 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 (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) (IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___ioares0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD * >::Invoke(targetMethod, targetThis, ___ioares0);
else
GenericVirtActionInvoker1< IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD * >::Invoke(targetMethod, targetThis, ___ioares0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___ioares0);
else
VirtActionInvoker1< IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___ioares0);
}
}
}
else
{
typedef void (*FunctionPointerType) (void*, IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___ioares0, targetMethod);
}
}
}
}
else
{
Il2CppMethodPointer targetMethodPointer = __this->get_method_ptr_0();
RuntimeMethod* targetMethod = (RuntimeMethod*)(__this->get_method_3());
RuntimeObject* targetThis = __this->get_m_target_2();
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) (IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___ioares0, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___ioares0, 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_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, ___ioares0);
else
GenericVirtActionInvoker0::Invoke(targetMethod, ___ioares0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___ioares0);
else
VirtActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___ioares0);
}
}
}
else
{
typedef void (*FunctionPointerType) (IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___ioares0, 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 (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) (IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___ioares0, targetMethod);
}
else if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker1< IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD * >::Invoke(targetMethod, targetThis, ___ioares0);
else
GenericVirtActionInvoker1< IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD * >::Invoke(targetMethod, targetThis, ___ioares0);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker1< IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___ioares0);
else
VirtActionInvoker1< IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD * >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___ioares0);
}
}
}
else
{
typedef void (*FunctionPointerType) (void*, IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD *, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___ioares0, targetMethod);
}
}
}
}
// System.IAsyncResult System.IOAsyncCallback::BeginInvoke(System.IOAsyncResult,System.AsyncCallback,System.Object)
extern "C" IL2CPP_METHOD_ATTR RuntimeObject* IOAsyncCallback_BeginInvoke_mB8CACF8990B91DF4A695E597CEBE4BA09354C32C (IOAsyncCallback_tEAEB626A6DAC959F4C365B12136A80EE9AA17547 * __this, IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD * ___ioares0, AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4 * ___callback1, RuntimeObject * ___object2, const RuntimeMethod* method)
{
void *__d_args[2] = {0};
__d_args[0] = ___ioares0;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback1, (RuntimeObject*)___object2);
}
// System.Void System.IOAsyncCallback::EndInvoke(System.IAsyncResult)
extern "C" IL2CPP_METHOD_ATTR void IOAsyncCallback_EndInvoke_m397237D5497A9029CC3FACE692D11BDC1558A727 (IOAsyncCallback_tEAEB626A6DAC959F4C365B12136A80EE9AA17547 * __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
// Conversion methods for marshalling of: System.IOAsyncResult
extern "C" void IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD_marshal_pinvoke(const IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD& unmarshaled, IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD_marshaled_pinvoke& marshaled)
{
Exception_t* ___wait_handle_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'wait_handle' of type 'IOAsyncResult': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___wait_handle_2Exception, NULL, NULL);
}
extern "C" void IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD_marshal_pinvoke_back(const IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD_marshaled_pinvoke& marshaled, IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD& unmarshaled)
{
Exception_t* ___wait_handle_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'wait_handle' of type 'IOAsyncResult': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___wait_handle_2Exception, NULL, NULL);
}
// Conversion method for clean up from marshalling of: System.IOAsyncResult
extern "C" void IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD_marshal_pinvoke_cleanup(IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: System.IOAsyncResult
extern "C" void IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD_marshal_com(const IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD& unmarshaled, IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD_marshaled_com& marshaled)
{
Exception_t* ___wait_handle_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'wait_handle' of type 'IOAsyncResult': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___wait_handle_2Exception, NULL, NULL);
}
extern "C" void IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD_marshal_com_back(const IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD_marshaled_com& marshaled, IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD& unmarshaled)
{
Exception_t* ___wait_handle_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'wait_handle' of type 'IOAsyncResult': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___wait_handle_2Exception, NULL, NULL);
}
// Conversion method for clean up from marshalling of: System.IOAsyncResult
extern "C" void IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD_marshal_com_cleanup(IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD_marshaled_com& marshaled)
{
}
// System.Object System.IOAsyncResult::get_AsyncState()
extern "C" IL2CPP_METHOD_ATTR RuntimeObject * IOAsyncResult_get_AsyncState_m9D507541D18B17FFF72F90D8DBB3F301213EA4A7 (IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = __this->get_async_state_1();
return L_0;
}
}
// System.Threading.WaitHandle System.IOAsyncResult::get_AsyncWaitHandle()
extern "C" IL2CPP_METHOD_ATTR WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * IOAsyncResult_get_AsyncWaitHandle_mBB8E187CEE0D781E6CC1C0E4576A82D02936B9C5 (IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IOAsyncResult_get_AsyncWaitHandle_mBB8E187CEE0D781E6CC1C0E4576A82D02936B9C5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD * V_0 = NULL;
bool V_1 = false;
WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
int32_t __leave_target = -1;
NO_UNUSED_WARNING (__leave_target);
{
V_0 = __this;
V_1 = (bool)0;
}
IL_0004:
try
{ // begin try (depth: 1)
{
IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD * L_0 = V_0;
Monitor_Enter_mC5B353DD83A0B0155DF6FBCC4DF5A580C25534C5(L_0, (bool*)(&V_1), /*hidden argument*/NULL);
ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * L_1 = __this->get_wait_handle_2();
if (L_1)
{
goto IL_0025;
}
}
IL_0014:
{
bool L_2 = __this->get_completed_4();
ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * L_3 = (ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 *)il2cpp_codegen_object_new(ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408_il2cpp_TypeInfo_var);
ManualResetEvent__ctor_m8973D9E3C622B9602641C017A33870F51D0311E1(L_3, L_2, /*hidden argument*/NULL);
__this->set_wait_handle_2(L_3);
}
IL_0025:
{
ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * L_4 = __this->get_wait_handle_2();
V_2 = L_4;
IL2CPP_LEAVE(0x38, FINALLY_002e);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_002e;
}
FINALLY_002e:
{ // begin finally (depth: 1)
{
bool L_5 = V_1;
if (!L_5)
{
goto IL_0037;
}
}
IL_0031:
{
IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD * L_6 = V_0;
Monitor_Exit_m49A1E5356D984D0B934BB97A305E2E5E207225C2(L_6, /*hidden argument*/NULL);
}
IL_0037:
{
IL2CPP_END_FINALLY(46)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(46)
{
IL2CPP_JUMP_TBL(0x38, IL_0038)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0038:
{
WaitHandle_tFD46B5B45A6BB296EA3A104C91DF2A7C03C10AC6 * L_7 = V_2;
return L_7;
}
}
// System.Boolean System.IOAsyncResult::get_CompletedSynchronously()
extern "C" IL2CPP_METHOD_ATTR bool IOAsyncResult_get_CompletedSynchronously_m55D4C57A46BF019D4FAF05ABE30E6EEEA6A78277 (IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_completed_synchronously_3();
return L_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
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: System.IOSelectorJob
extern "C" void IOSelectorJob_t2B03604D19B81660C4C1C06590C76BC8630DDE99_marshal_pinvoke(const IOSelectorJob_t2B03604D19B81660C4C1C06590C76BC8630DDE99& unmarshaled, IOSelectorJob_t2B03604D19B81660C4C1C06590C76BC8630DDE99_marshaled_pinvoke& marshaled)
{
Exception_t* ___state_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'state' of type 'IOSelectorJob': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___state_2Exception, NULL, NULL);
}
extern "C" void IOSelectorJob_t2B03604D19B81660C4C1C06590C76BC8630DDE99_marshal_pinvoke_back(const IOSelectorJob_t2B03604D19B81660C4C1C06590C76BC8630DDE99_marshaled_pinvoke& marshaled, IOSelectorJob_t2B03604D19B81660C4C1C06590C76BC8630DDE99& unmarshaled)
{
Exception_t* ___state_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'state' of type 'IOSelectorJob': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___state_2Exception, NULL, NULL);
}
// Conversion method for clean up from marshalling of: System.IOSelectorJob
extern "C" void IOSelectorJob_t2B03604D19B81660C4C1C06590C76BC8630DDE99_marshal_pinvoke_cleanup(IOSelectorJob_t2B03604D19B81660C4C1C06590C76BC8630DDE99_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: System.IOSelectorJob
extern "C" void IOSelectorJob_t2B03604D19B81660C4C1C06590C76BC8630DDE99_marshal_com(const IOSelectorJob_t2B03604D19B81660C4C1C06590C76BC8630DDE99& unmarshaled, IOSelectorJob_t2B03604D19B81660C4C1C06590C76BC8630DDE99_marshaled_com& marshaled)
{
Exception_t* ___state_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'state' of type 'IOSelectorJob': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___state_2Exception, NULL, NULL);
}
extern "C" void IOSelectorJob_t2B03604D19B81660C4C1C06590C76BC8630DDE99_marshal_com_back(const IOSelectorJob_t2B03604D19B81660C4C1C06590C76BC8630DDE99_marshaled_com& marshaled, IOSelectorJob_t2B03604D19B81660C4C1C06590C76BC8630DDE99& unmarshaled)
{
Exception_t* ___state_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'state' of type 'IOSelectorJob': Reference type field marshaling is not supported.");
IL2CPP_RAISE_MANAGED_EXCEPTION(___state_2Exception, NULL, NULL);
}
// Conversion method for clean up from marshalling of: System.IOSelectorJob
extern "C" void IOSelectorJob_t2B03604D19B81660C4C1C06590C76BC8630DDE99_marshal_com_cleanup(IOSelectorJob_t2B03604D19B81660C4C1C06590C76BC8630DDE99_marshaled_com& marshaled)
{
}
// System.Void System.IOSelectorJob::System.Threading.IThreadPoolWorkItem.ExecuteWorkItem()
extern "C" IL2CPP_METHOD_ATTR void IOSelectorJob_System_Threading_IThreadPoolWorkItem_ExecuteWorkItem_mF6591C2577197BFD98B2423F8696E5816191FF3F (IOSelectorJob_t2B03604D19B81660C4C1C06590C76BC8630DDE99 * __this, const RuntimeMethod* method)
{
{
IOAsyncCallback_tEAEB626A6DAC959F4C365B12136A80EE9AA17547 * L_0 = __this->get_callback_1();
IOAsyncResult_tB02ABC485035B18A731F1B61FB27EE17F4B792AD * L_1 = __this->get_state_2();
NullCheck(L_0);
IOAsyncCallback_Invoke_mB95F7E7F0E8326CE5364A30F42FC1073B0AB2D8B(L_0, L_1, /*hidden argument*/NULL);
return;
}
}
// System.Void System.IOSelectorJob::System.Threading.IThreadPoolWorkItem.MarkAborted(System.Threading.ThreadAbortException)
extern "C" IL2CPP_METHOD_ATTR void IOSelectorJob_System_Threading_IThreadPoolWorkItem_MarkAborted_m3BB2FE95A7033F6994973BF8814C16F4B163A0D6 (IOSelectorJob_t2B03604D19B81660C4C1C06590C76BC8630DDE99 * __this, ThreadAbortException_t0B7CFB34B2901B695FBCFF84E0A1EBDFC8177468 * ___tae0, const RuntimeMethod* method)
{
{
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.String System.IPv4AddressHelper::ParseCanonicalName(System.String,System.Int32,System.Int32,System.Boolean&)
extern "C" IL2CPP_METHOD_ATTR String_t* IPv4AddressHelper_ParseCanonicalName_m2A8C35045CE02D6FC2C4251F239D1C0074E0E813 (String_t* ___str0, int32_t ___start1, int32_t ___end2, bool* ___isLoopback3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IPv4AddressHelper_ParseCanonicalName_m2A8C35045CE02D6FC2C4251F239D1C0074E0E813_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint8_t* V_0 = NULL;
{
int8_t* L_0 = (int8_t*) alloca((((uintptr_t)4)));
memset(L_0,0,(((uintptr_t)4)));
V_0 = (uint8_t*)(L_0);
bool* L_1 = ___isLoopback3;
String_t* L_2 = ___str0;
uint8_t* L_3 = V_0;
int32_t L_4 = ___start1;
int32_t L_5 = ___end2;
bool L_6 = IPv4AddressHelper_Parse_m08110623FAC14806376148D7C16AB95A428EA6CF(L_2, (uint8_t*)(uint8_t*)L_3, L_4, L_5, /*hidden argument*/NULL);
*((int8_t*)L_1) = (int8_t)L_6;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_7 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)7);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = L_7;
uint8_t* L_9 = V_0;
int32_t L_10 = *((uint8_t*)L_9);
uint8_t L_11 = ((uint8_t)L_10);
RuntimeObject * L_12 = Box(Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_il2cpp_TypeInfo_var, &L_11);
NullCheck(L_8);
ArrayElementTypeCheck (L_8, L_12);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_12);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_13 = L_8;
NullCheck(L_13);
ArrayElementTypeCheck (L_13, _stringLiteral3A52CE780950D4D969792A2559CD519D7EE8C727);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)_stringLiteral3A52CE780950D4D969792A2559CD519D7EE8C727);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_14 = L_13;
uint8_t* L_15 = V_0;
int32_t L_16 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_15, (int32_t)1)));
uint8_t L_17 = ((uint8_t)L_16);
RuntimeObject * L_18 = Box(Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_il2cpp_TypeInfo_var, &L_17);
NullCheck(L_14);
ArrayElementTypeCheck (L_14, L_18);
(L_14)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_18);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_19 = L_14;
NullCheck(L_19);
ArrayElementTypeCheck (L_19, _stringLiteral3A52CE780950D4D969792A2559CD519D7EE8C727);
(L_19)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)_stringLiteral3A52CE780950D4D969792A2559CD519D7EE8C727);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_20 = L_19;
uint8_t* L_21 = V_0;
int32_t L_22 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_21, (int32_t)2)));
uint8_t L_23 = ((uint8_t)L_22);
RuntimeObject * L_24 = Box(Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_il2cpp_TypeInfo_var, &L_23);
NullCheck(L_20);
ArrayElementTypeCheck (L_20, L_24);
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(4), (RuntimeObject *)L_24);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_25 = L_20;
NullCheck(L_25);
ArrayElementTypeCheck (L_25, _stringLiteral3A52CE780950D4D969792A2559CD519D7EE8C727);
(L_25)->SetAt(static_cast<il2cpp_array_size_t>(5), (RuntimeObject *)_stringLiteral3A52CE780950D4D969792A2559CD519D7EE8C727);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_26 = L_25;
uint8_t* L_27 = V_0;
int32_t L_28 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_27, (int32_t)3)));
uint8_t L_29 = ((uint8_t)L_28);
RuntimeObject * L_30 = Box(Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_il2cpp_TypeInfo_var, &L_29);
NullCheck(L_26);
ArrayElementTypeCheck (L_26, L_30);
(L_26)->SetAt(static_cast<il2cpp_array_size_t>(6), (RuntimeObject *)L_30);
String_t* L_31 = String_Concat_mB7BA84F13912303B2E5E40FBF0109E1A328ACA07(L_26, /*hidden argument*/NULL);
return L_31;
}
}
// System.Int32 System.IPv4AddressHelper::ParseHostNumber(System.String,System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR int32_t IPv4AddressHelper_ParseHostNumber_m798FB6828971F70775D1125565A1D1025C897F14 (String_t* ___str0, int32_t ___start1, int32_t ___end2, const RuntimeMethod* method)
{
uint8_t* V_0 = NULL;
{
int8_t* L_0 = (int8_t*) alloca((((uintptr_t)4)));
memset(L_0,0,(((uintptr_t)4)));
V_0 = (uint8_t*)(L_0);
String_t* L_1 = ___str0;
uint8_t* L_2 = V_0;
int32_t L_3 = ___start1;
int32_t L_4 = ___end2;
IPv4AddressHelper_ParseCanonical_m9D4552558C934E373D188DDA0BC1D1DEF5A62C33(L_1, (uint8_t*)(uint8_t*)L_2, L_3, L_4, /*hidden argument*/NULL);
uint8_t* L_5 = V_0;
int32_t L_6 = *((uint8_t*)L_5);
uint8_t* L_7 = V_0;
int32_t L_8 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_7, (int32_t)1)));
uint8_t* L_9 = V_0;
int32_t L_10 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_9, (int32_t)2)));
uint8_t* L_11 = V_0;
int32_t L_12 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_11, (int32_t)3)));
return ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((int32_t)L_6<<(int32_t)((int32_t)24))), (int32_t)((int32_t)((int32_t)L_8<<(int32_t)((int32_t)16))))), (int32_t)((int32_t)((int32_t)L_10<<(int32_t)8)))), (int32_t)L_12));
}
}
// System.Boolean System.IPv4AddressHelper::IsValid(System.Char*,System.Int32,System.Int32&,System.Boolean,System.Boolean,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR bool IPv4AddressHelper_IsValid_mD96D91E0F3830414F4601A4521E71DE832A45843 (Il2CppChar* ___name0, int32_t ___start1, int32_t* ___end2, bool ___allowIPv63, bool ___notImplicitFile4, bool ___unknownScheme5, const RuntimeMethod* method)
{
{
bool L_0 = ___allowIPv63;
bool L_1 = ___unknownScheme5;
if (!((int32_t)((int32_t)L_0|(int32_t)L_1)))
{
goto IL_0012;
}
}
{
Il2CppChar* L_2 = ___name0;
int32_t L_3 = ___start1;
int32_t* L_4 = ___end2;
bool L_5 = ___allowIPv63;
bool L_6 = ___notImplicitFile4;
bool L_7 = IPv4AddressHelper_IsValidCanonical_mC27E31F1F043D68BC52719892D34EDDC7851B120((Il2CppChar*)(Il2CppChar*)L_2, L_3, (int32_t*)L_4, L_5, L_6, /*hidden argument*/NULL);
return L_7;
}
IL_0012:
{
Il2CppChar* L_8 = ___name0;
int32_t L_9 = ___start1;
int32_t* L_10 = ___end2;
bool L_11 = ___notImplicitFile4;
int64_t L_12 = IPv4AddressHelper_ParseNonCanonical_mDCD1CD7FB85C4FFBF3070B1435A0D632C1A7B97E((Il2CppChar*)(Il2CppChar*)L_8, L_9, (int32_t*)L_10, L_11, /*hidden argument*/NULL);
return (bool)((((int32_t)((((int64_t)L_12) == ((int64_t)(((int64_t)((int64_t)(-1))))))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
}
// System.Boolean System.IPv4AddressHelper::IsValidCanonical(System.Char*,System.Int32,System.Int32&,System.Boolean,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR bool IPv4AddressHelper_IsValidCanonical_mC27E31F1F043D68BC52719892D34EDDC7851B120 (Il2CppChar* ___name0, int32_t ___start1, int32_t* ___end2, bool ___allowIPv63, bool ___notImplicitFile4, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
bool V_2 = false;
bool V_3 = false;
Il2CppChar V_4 = 0x0;
int32_t G_B32_0 = 0;
int32_t G_B31_0 = 0;
{
V_0 = 0;
V_1 = 0;
V_2 = (bool)0;
V_3 = (bool)0;
goto IL_00d0;
}
IL_000d:
{
Il2CppChar* L_0 = ___name0;
int32_t L_1 = ___start1;
int32_t L_2 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_1)), (int32_t)2)))));
V_4 = L_2;
bool L_3 = ___allowIPv63;
if (!L_3)
{
goto IL_0036;
}
}
{
Il2CppChar L_4 = V_4;
if ((((int32_t)L_4) == ((int32_t)((int32_t)93))))
{
goto IL_00d8;
}
}
{
Il2CppChar L_5 = V_4;
if ((((int32_t)L_5) == ((int32_t)((int32_t)47))))
{
goto IL_00d8;
}
}
{
Il2CppChar L_6 = V_4;
if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)37)))))
{
goto IL_0061;
}
}
{
goto IL_00d8;
}
IL_0036:
{
Il2CppChar L_7 = V_4;
if ((((int32_t)L_7) == ((int32_t)((int32_t)47))))
{
goto IL_00d8;
}
}
{
Il2CppChar L_8 = V_4;
if ((((int32_t)L_8) == ((int32_t)((int32_t)92))))
{
goto IL_00d8;
}
}
{
bool L_9 = ___notImplicitFile4;
if (!L_9)
{
goto IL_0061;
}
}
{
Il2CppChar L_10 = V_4;
if ((((int32_t)L_10) == ((int32_t)((int32_t)58))))
{
goto IL_00d8;
}
}
{
Il2CppChar L_11 = V_4;
if ((((int32_t)L_11) == ((int32_t)((int32_t)63))))
{
goto IL_00d8;
}
}
{
Il2CppChar L_12 = V_4;
if ((((int32_t)L_12) == ((int32_t)((int32_t)35))))
{
goto IL_00d8;
}
}
IL_0061:
{
Il2CppChar L_13 = V_4;
if ((((int32_t)L_13) > ((int32_t)((int32_t)57))))
{
goto IL_00aa;
}
}
{
Il2CppChar L_14 = V_4;
if ((((int32_t)L_14) < ((int32_t)((int32_t)48))))
{
goto IL_00aa;
}
}
{
bool L_15 = V_2;
if (L_15)
{
goto IL_008e;
}
}
{
Il2CppChar L_16 = V_4;
if ((!(((uint32_t)L_16) == ((uint32_t)((int32_t)48)))))
{
goto IL_008e;
}
}
{
int32_t L_17 = ___start1;
int32_t* L_18 = ___end2;
int32_t L_19 = *((int32_t*)L_18);
if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))) >= ((int32_t)L_19)))
{
goto IL_008c;
}
}
{
Il2CppChar* L_20 = ___name0;
int32_t L_21 = ___start1;
int32_t L_22 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_20, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)1)))), (int32_t)2)))));
if ((!(((uint32_t)L_22) == ((uint32_t)((int32_t)48)))))
{
goto IL_008c;
}
}
{
return (bool)0;
}
IL_008c:
{
V_3 = (bool)1;
}
IL_008e:
{
V_2 = (bool)1;
int32_t L_23 = V_1;
Il2CppChar* L_24 = ___name0;
int32_t L_25 = ___start1;
int32_t L_26 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_24, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_25)), (int32_t)2)))));
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_23, (int32_t)((int32_t)10))), (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_26, (int32_t)((int32_t)48)))));
int32_t L_27 = V_1;
if ((((int32_t)L_27) <= ((int32_t)((int32_t)255))))
{
goto IL_00cb;
}
}
{
return (bool)0;
}
IL_00aa:
{
Il2CppChar L_28 = V_4;
if ((!(((uint32_t)L_28) == ((uint32_t)((int32_t)46)))))
{
goto IL_00c9;
}
}
{
bool L_29 = V_2;
if (!L_29)
{
goto IL_00bb;
}
}
{
int32_t L_30 = V_1;
bool L_31 = V_3;
if (!((int32_t)((int32_t)((((int32_t)L_30) > ((int32_t)0))? 1 : 0)&(int32_t)L_31)))
{
goto IL_00bd;
}
}
IL_00bb:
{
return (bool)0;
}
IL_00bd:
{
int32_t L_32 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_32, (int32_t)1));
V_2 = (bool)0;
V_1 = 0;
V_3 = (bool)0;
goto IL_00cb;
}
IL_00c9:
{
return (bool)0;
}
IL_00cb:
{
int32_t L_33 = ___start1;
___start1 = ((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)1));
}
IL_00d0:
{
int32_t L_34 = ___start1;
int32_t* L_35 = ___end2;
int32_t L_36 = *((int32_t*)L_35);
if ((((int32_t)L_34) < ((int32_t)L_36)))
{
goto IL_000d;
}
}
IL_00d8:
{
int32_t L_37 = V_0;
bool L_38 = V_2;
int32_t L_39 = ((int32_t)((int32_t)((((int32_t)L_37) == ((int32_t)3))? 1 : 0)&(int32_t)L_38));
G_B31_0 = L_39;
if (!L_39)
{
G_B32_0 = L_39;
goto IL_00e4;
}
}
{
int32_t* L_40 = ___end2;
int32_t L_41 = ___start1;
*((int32_t*)L_40) = (int32_t)L_41;
G_B32_0 = G_B31_0;
}
IL_00e4:
{
return (bool)G_B32_0;
}
}
// System.Int64 System.IPv4AddressHelper::ParseNonCanonical(System.Char*,System.Int32,System.Int32&,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR int64_t IPv4AddressHelper_ParseNonCanonical_mDCD1CD7FB85C4FFBF3070B1435A0D632C1A7B97E (Il2CppChar* ___name0, int32_t ___start1, int32_t* ___end2, bool ___notImplicitFile3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IPv4AddressHelper_ParseNonCanonical_mDCD1CD7FB85C4FFBF3070B1435A0D632C1A7B97E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
Il2CppChar V_1 = 0x0;
Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* V_2 = NULL;
int64_t V_3 = 0;
bool V_4 = false;
int32_t V_5 = 0;
int32_t V_6 = 0;
int32_t V_7 = 0;
{
V_0 = ((int32_t)10);
Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_0 = (Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F*)SZArrayNew(Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F_il2cpp_TypeInfo_var, (uint32_t)4);
V_2 = L_0;
V_3 = (((int64_t)((int64_t)0)));
V_4 = (bool)0;
V_5 = 0;
int32_t L_1 = ___start1;
V_6 = L_1;
goto IL_0138;
}
IL_001b:
{
Il2CppChar* L_2 = ___name0;
int32_t L_3 = V_6;
int32_t L_4 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_2, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_3)), (int32_t)2)))));
V_1 = L_4;
V_3 = (((int64_t)((int64_t)0)));
V_0 = ((int32_t)10);
Il2CppChar L_5 = V_1;
if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)48)))))
{
goto IL_00f4;
}
}
{
V_0 = 8;
int32_t L_6 = V_6;
V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1));
V_4 = (bool)1;
int32_t L_7 = V_6;
int32_t* L_8 = ___end2;
int32_t L_9 = *((int32_t*)L_8);
if ((((int32_t)L_7) >= ((int32_t)L_9)))
{
goto IL_00f4;
}
}
{
Il2CppChar* L_10 = ___name0;
int32_t L_11 = V_6;
int32_t L_12 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_10, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_11)), (int32_t)2)))));
V_1 = L_12;
Il2CppChar L_13 = V_1;
if ((((int32_t)L_13) == ((int32_t)((int32_t)120))))
{
goto IL_005c;
}
}
{
Il2CppChar L_14 = V_1;
if ((!(((uint32_t)L_14) == ((uint32_t)((int32_t)88)))))
{
goto IL_00f4;
}
}
IL_005c:
{
V_0 = ((int32_t)16);
int32_t L_15 = V_6;
V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
V_4 = (bool)0;
goto IL_00f4;
}
IL_006d:
{
Il2CppChar* L_16 = ___name0;
int32_t L_17 = V_6;
int32_t L_18 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_16, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_17)), (int32_t)2)))));
V_1 = L_18;
int32_t L_19 = V_0;
if ((((int32_t)L_19) == ((int32_t)((int32_t)10))))
{
goto IL_0080;
}
}
{
int32_t L_20 = V_0;
if ((!(((uint32_t)L_20) == ((uint32_t)((int32_t)16)))))
{
goto IL_0092;
}
}
IL_0080:
{
Il2CppChar L_21 = V_1;
if ((((int32_t)((int32_t)48)) > ((int32_t)L_21)))
{
goto IL_0092;
}
}
{
Il2CppChar L_22 = V_1;
if ((((int32_t)L_22) > ((int32_t)((int32_t)57))))
{
goto IL_0092;
}
}
{
Il2CppChar L_23 = V_1;
V_7 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_23, (int32_t)((int32_t)48)));
goto IL_00da;
}
IL_0092:
{
int32_t L_24 = V_0;
if ((!(((uint32_t)L_24) == ((uint32_t)8))))
{
goto IL_00a8;
}
}
{
Il2CppChar L_25 = V_1;
if ((((int32_t)((int32_t)48)) > ((int32_t)L_25)))
{
goto IL_00a8;
}
}
{
Il2CppChar L_26 = V_1;
if ((((int32_t)L_26) > ((int32_t)((int32_t)55))))
{
goto IL_00a8;
}
}
{
Il2CppChar L_27 = V_1;
V_7 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_27, (int32_t)((int32_t)48)));
goto IL_00da;
}
IL_00a8:
{
int32_t L_28 = V_0;
if ((!(((uint32_t)L_28) == ((uint32_t)((int32_t)16)))))
{
goto IL_00c2;
}
}
{
Il2CppChar L_29 = V_1;
if ((((int32_t)((int32_t)97)) > ((int32_t)L_29)))
{
goto IL_00c2;
}
}
{
Il2CppChar L_30 = V_1;
if ((((int32_t)L_30) > ((int32_t)((int32_t)102))))
{
goto IL_00c2;
}
}
{
Il2CppChar L_31 = V_1;
V_7 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_31, (int32_t)((int32_t)10))), (int32_t)((int32_t)97)));
goto IL_00da;
}
IL_00c2:
{
int32_t L_32 = V_0;
if ((!(((uint32_t)L_32) == ((uint32_t)((int32_t)16)))))
{
goto IL_00fd;
}
}
{
Il2CppChar L_33 = V_1;
if ((((int32_t)((int32_t)65)) > ((int32_t)L_33)))
{
goto IL_00fd;
}
}
{
Il2CppChar L_34 = V_1;
if ((((int32_t)L_34) > ((int32_t)((int32_t)70))))
{
goto IL_00fd;
}
}
{
Il2CppChar L_35 = V_1;
V_7 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_35, (int32_t)((int32_t)10))), (int32_t)((int32_t)65)));
}
IL_00da:
{
int64_t L_36 = V_3;
int32_t L_37 = V_0;
int32_t L_38 = V_7;
V_3 = ((int64_t)il2cpp_codegen_add((int64_t)((int64_t)il2cpp_codegen_multiply((int64_t)L_36, (int64_t)(((int64_t)((int64_t)L_37))))), (int64_t)(((int64_t)((int64_t)L_38)))));
int64_t L_39 = V_3;
if ((((int64_t)L_39) <= ((int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)(-1))))))))))
{
goto IL_00eb;
}
}
{
return (((int64_t)((int64_t)(-1))));
}
IL_00eb:
{
V_4 = (bool)1;
int32_t L_40 = V_6;
V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_40, (int32_t)1));
}
IL_00f4:
{
int32_t L_41 = V_6;
int32_t* L_42 = ___end2;
int32_t L_43 = *((int32_t*)L_42);
if ((((int32_t)L_41) < ((int32_t)L_43)))
{
goto IL_006d;
}
}
IL_00fd:
{
int32_t L_44 = V_6;
int32_t* L_45 = ___end2;
int32_t L_46 = *((int32_t*)L_45);
if ((((int32_t)L_44) >= ((int32_t)L_46)))
{
goto IL_0141;
}
}
{
Il2CppChar* L_47 = ___name0;
int32_t L_48 = V_6;
int32_t L_49 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_47, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_48)), (int32_t)2)))));
if ((!(((uint32_t)L_49) == ((uint32_t)((int32_t)46)))))
{
goto IL_0141;
}
}
{
int32_t L_50 = V_5;
if ((((int32_t)L_50) >= ((int32_t)3)))
{
goto IL_0121;
}
}
{
bool L_51 = V_4;
if (!L_51)
{
goto IL_0121;
}
}
{
int64_t L_52 = V_3;
if ((((int64_t)L_52) <= ((int64_t)(((int64_t)((int64_t)((int32_t)255)))))))
{
goto IL_0124;
}
}
IL_0121:
{
return (((int64_t)((int64_t)(-1))));
}
IL_0124:
{
Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_53 = V_2;
int32_t L_54 = V_5;
int64_t L_55 = V_3;
NullCheck(L_53);
(L_53)->SetAt(static_cast<il2cpp_array_size_t>(L_54), (int64_t)L_55);
int32_t L_56 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_56, (int32_t)1));
V_4 = (bool)0;
int32_t L_57 = V_6;
V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_57, (int32_t)1));
}
IL_0138:
{
int32_t L_58 = V_6;
int32_t* L_59 = ___end2;
int32_t L_60 = *((int32_t*)L_59);
if ((((int32_t)L_58) < ((int32_t)L_60)))
{
goto IL_001b;
}
}
IL_0141:
{
bool L_61 = V_4;
if (L_61)
{
goto IL_0148;
}
}
{
return (((int64_t)((int64_t)(-1))));
}
IL_0148:
{
int32_t L_62 = V_6;
int32_t* L_63 = ___end2;
int32_t L_64 = *((int32_t*)L_63);
if ((((int32_t)L_62) >= ((int32_t)L_64)))
{
goto IL_017c;
}
}
{
Il2CppChar* L_65 = ___name0;
int32_t L_66 = V_6;
int32_t L_67 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_65, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_66)), (int32_t)2)))));
int32_t L_68 = L_67;
V_1 = L_68;
if ((((int32_t)L_68) == ((int32_t)((int32_t)47))))
{
goto IL_0173;
}
}
{
Il2CppChar L_69 = V_1;
if ((((int32_t)L_69) == ((int32_t)((int32_t)92))))
{
goto IL_0173;
}
}
{
bool L_70 = ___notImplicitFile3;
if (!L_70)
{
goto IL_0179;
}
}
{
Il2CppChar L_71 = V_1;
if ((((int32_t)L_71) == ((int32_t)((int32_t)58))))
{
goto IL_0173;
}
}
{
Il2CppChar L_72 = V_1;
if ((((int32_t)L_72) == ((int32_t)((int32_t)63))))
{
goto IL_0173;
}
}
{
Il2CppChar L_73 = V_1;
if ((!(((uint32_t)L_73) == ((uint32_t)((int32_t)35)))))
{
goto IL_0179;
}
}
IL_0173:
{
int32_t* L_74 = ___end2;
int32_t L_75 = V_6;
*((int32_t*)L_74) = (int32_t)L_75;
goto IL_017c;
}
IL_0179:
{
return (((int64_t)((int64_t)(-1))));
}
IL_017c:
{
Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_76 = V_2;
int32_t L_77 = V_5;
int64_t L_78 = V_3;
NullCheck(L_76);
(L_76)->SetAt(static_cast<il2cpp_array_size_t>(L_77), (int64_t)L_78);
int32_t L_79 = V_5;
switch (L_79)
{
case 0:
{
goto IL_019d;
}
case 1:
{
goto IL_01ab;
}
case 2:
{
goto IL_01cb;
}
case 3:
{
goto IL_01f9;
}
}
}
{
goto IL_0234;
}
IL_019d:
{
Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_80 = V_2;
NullCheck(L_80);
int32_t L_81 = 0;
int64_t L_82 = (L_80)->GetAt(static_cast<il2cpp_array_size_t>(L_81));
if ((((int64_t)L_82) <= ((int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)(-1))))))))))
{
goto IL_01a7;
}
}
{
return (((int64_t)((int64_t)(-1))));
}
IL_01a7:
{
Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_83 = V_2;
NullCheck(L_83);
int32_t L_84 = 0;
int64_t L_85 = (L_83)->GetAt(static_cast<il2cpp_array_size_t>(L_84));
return L_85;
}
IL_01ab:
{
Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_86 = V_2;
NullCheck(L_86);
int32_t L_87 = 1;
int64_t L_88 = (L_86)->GetAt(static_cast<il2cpp_array_size_t>(L_87));
if ((((int64_t)L_88) <= ((int64_t)(((int64_t)((int64_t)((int32_t)16777215)))))))
{
goto IL_01b9;
}
}
{
return (((int64_t)((int64_t)(-1))));
}
IL_01b9:
{
Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_89 = V_2;
NullCheck(L_89);
int32_t L_90 = 0;
int64_t L_91 = (L_89)->GetAt(static_cast<il2cpp_array_size_t>(L_90));
Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_92 = V_2;
NullCheck(L_92);
int32_t L_93 = 1;
int64_t L_94 = (L_92)->GetAt(static_cast<il2cpp_array_size_t>(L_93));
return ((int64_t)((int64_t)((int64_t)((int64_t)L_91<<(int32_t)((int32_t)24)))|(int64_t)((int64_t)((int64_t)L_94&(int64_t)(((int64_t)((int64_t)((int32_t)16777215))))))));
}
IL_01cb:
{
Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_95 = V_2;
NullCheck(L_95);
int32_t L_96 = 2;
int64_t L_97 = (L_95)->GetAt(static_cast<il2cpp_array_size_t>(L_96));
if ((((int64_t)L_97) <= ((int64_t)(((int64_t)((int64_t)((int32_t)65535)))))))
{
goto IL_01d9;
}
}
{
return (((int64_t)((int64_t)(-1))));
}
IL_01d9:
{
Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_98 = V_2;
NullCheck(L_98);
int32_t L_99 = 0;
int64_t L_100 = (L_98)->GetAt(static_cast<il2cpp_array_size_t>(L_99));
Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_101 = V_2;
NullCheck(L_101);
int32_t L_102 = 1;
int64_t L_103 = (L_101)->GetAt(static_cast<il2cpp_array_size_t>(L_102));
Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_104 = V_2;
NullCheck(L_104);
int32_t L_105 = 2;
int64_t L_106 = (L_104)->GetAt(static_cast<il2cpp_array_size_t>(L_105));
return ((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)L_100<<(int32_t)((int32_t)24)))|(int64_t)((int64_t)((int64_t)((int64_t)((int64_t)L_103&(int64_t)(((int64_t)((int64_t)((int32_t)255))))))<<(int32_t)((int32_t)16)))))|(int64_t)((int64_t)((int64_t)L_106&(int64_t)(((int64_t)((int64_t)((int32_t)65535))))))));
}
IL_01f9:
{
Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_107 = V_2;
NullCheck(L_107);
int32_t L_108 = 3;
int64_t L_109 = (L_107)->GetAt(static_cast<il2cpp_array_size_t>(L_108));
if ((((int64_t)L_109) <= ((int64_t)(((int64_t)((int64_t)((int32_t)255)))))))
{
goto IL_0207;
}
}
{
return (((int64_t)((int64_t)(-1))));
}
IL_0207:
{
Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_110 = V_2;
NullCheck(L_110);
int32_t L_111 = 0;
int64_t L_112 = (L_110)->GetAt(static_cast<il2cpp_array_size_t>(L_111));
Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_113 = V_2;
NullCheck(L_113);
int32_t L_114 = 1;
int64_t L_115 = (L_113)->GetAt(static_cast<il2cpp_array_size_t>(L_114));
Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_116 = V_2;
NullCheck(L_116);
int32_t L_117 = 2;
int64_t L_118 = (L_116)->GetAt(static_cast<il2cpp_array_size_t>(L_117));
Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_119 = V_2;
NullCheck(L_119);
int32_t L_120 = 3;
int64_t L_121 = (L_119)->GetAt(static_cast<il2cpp_array_size_t>(L_120));
return ((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)((int64_t)L_112<<(int32_t)((int32_t)24)))|(int64_t)((int64_t)((int64_t)((int64_t)((int64_t)L_115&(int64_t)(((int64_t)((int64_t)((int32_t)255))))))<<(int32_t)((int32_t)16)))))|(int64_t)((int64_t)((int64_t)((int64_t)((int64_t)L_118&(int64_t)(((int64_t)((int64_t)((int32_t)255))))))<<(int32_t)8))))|(int64_t)((int64_t)((int64_t)L_121&(int64_t)(((int64_t)((int64_t)((int32_t)255))))))));
}
IL_0234:
{
return (((int64_t)((int64_t)(-1))));
}
}
// System.Boolean System.IPv4AddressHelper::Parse(System.String,System.Byte*,System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR bool IPv4AddressHelper_Parse_m08110623FAC14806376148D7C16AB95A428EA6CF (String_t* ___name0, uint8_t* ___numbers1, int32_t ___start2, int32_t ___end3, const RuntimeMethod* method)
{
Il2CppChar* V_0 = NULL;
String_t* V_1 = NULL;
int32_t V_2 = 0;
int64_t V_3 = 0;
{
String_t* L_0 = ___name0;
V_1 = L_0;
String_t* L_1 = V_1;
V_0 = (Il2CppChar*)(((uintptr_t)L_1));
Il2CppChar* L_2 = V_0;
if (!L_2)
{
goto IL_0010;
}
}
{
Il2CppChar* L_3 = V_0;
int32_t L_4 = RuntimeHelpers_get_OffsetToStringData_mF3B79A906181F1A2734590DA161E2AF183853F8B(/*hidden argument*/NULL);
V_0 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_3, (int32_t)L_4));
}
IL_0010:
{
int32_t L_5 = ___end3;
V_2 = L_5;
Il2CppChar* L_6 = V_0;
int32_t L_7 = ___start2;
int64_t L_8 = IPv4AddressHelper_ParseNonCanonical_mDCD1CD7FB85C4FFBF3070B1435A0D632C1A7B97E((Il2CppChar*)(Il2CppChar*)L_6, L_7, (int32_t*)(&V_2), (bool)1, /*hidden argument*/NULL);
V_3 = L_8;
uint8_t* L_9 = ___numbers1;
int64_t L_10 = V_3;
*((int8_t*)L_9) = (int8_t)(((int32_t)((uint8_t)((int64_t)((int64_t)L_10>>(int32_t)((int32_t)24))))));
uint8_t* L_11 = ___numbers1;
int64_t L_12 = V_3;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_11, (int32_t)1))) = (int8_t)(((int32_t)((uint8_t)((int64_t)((int64_t)L_12>>(int32_t)((int32_t)16))))));
uint8_t* L_13 = ___numbers1;
int64_t L_14 = V_3;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_13, (int32_t)2))) = (int8_t)(((int32_t)((uint8_t)((int64_t)((int64_t)L_14>>(int32_t)8)))));
uint8_t* L_15 = ___numbers1;
int64_t L_16 = V_3;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_15, (int32_t)3))) = (int8_t)(((int32_t)((uint8_t)L_16)));
V_1 = (String_t*)NULL;
uint8_t* L_17 = ___numbers1;
int32_t L_18 = *((uint8_t*)L_17);
return (bool)((((int32_t)L_18) == ((int32_t)((int32_t)127)))? 1 : 0);
}
}
// System.Boolean System.IPv4AddressHelper::ParseCanonical(System.String,System.Byte*,System.Int32,System.Int32)
extern "C" IL2CPP_METHOD_ATTR bool IPv4AddressHelper_ParseCanonical_m9D4552558C934E373D188DDA0BC1D1DEF5A62C33 (String_t* ___name0, uint8_t* ___numbers1, int32_t ___start2, int32_t ___end3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
uint8_t V_1 = 0x0;
Il2CppChar V_2 = 0x0;
{
V_0 = 0;
goto IL_003d;
}
IL_0004:
{
V_1 = (uint8_t)0;
goto IL_0019;
}
IL_0008:
{
uint8_t L_0 = V_1;
Il2CppChar L_1 = V_2;
V_1 = (uint8_t)(((int32_t)((uint8_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_0, (int32_t)((int32_t)10))), (int32_t)(((int32_t)((uint8_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_1, (int32_t)((int32_t)48)))))))))));
int32_t L_2 = ___start2;
___start2 = ((int32_t)il2cpp_codegen_add((int32_t)L_2, (int32_t)1));
}
IL_0019:
{
int32_t L_3 = ___start2;
int32_t L_4 = ___end3;
if ((((int32_t)L_3) >= ((int32_t)L_4)))
{
goto IL_002f;
}
}
{
String_t* L_5 = ___name0;
int32_t L_6 = ___start2;
NullCheck(L_5);
Il2CppChar L_7 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_5, L_6, /*hidden argument*/NULL);
Il2CppChar L_8 = L_7;
V_2 = L_8;
if ((((int32_t)L_8) == ((int32_t)((int32_t)46))))
{
goto IL_002f;
}
}
{
Il2CppChar L_9 = V_2;
if ((!(((uint32_t)L_9) == ((uint32_t)((int32_t)58)))))
{
goto IL_0008;
}
}
IL_002f:
{
uint8_t* L_10 = ___numbers1;
int32_t L_11 = V_0;
uint8_t L_12 = V_1;
*((int8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_10, (int32_t)L_11))) = (int8_t)L_12;
int32_t L_13 = ___start2;
___start2 = ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1));
int32_t L_14 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1));
}
IL_003d:
{
int32_t L_15 = V_0;
if ((((int32_t)L_15) < ((int32_t)4)))
{
goto IL_0004;
}
}
{
uint8_t* L_16 = ___numbers1;
int32_t L_17 = *((uint8_t*)L_16);
return (bool)((((int32_t)L_17) == ((int32_t)((int32_t)127)))? 1 : 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.String System.IPv6AddressHelper::ParseCanonicalName(System.String,System.Int32,System.Boolean&,System.String&)
extern "C" IL2CPP_METHOD_ATTR String_t* IPv6AddressHelper_ParseCanonicalName_m3944530A7B686031653F97824EF712424E0BEE14 (String_t* ___str0, int32_t ___start1, bool* ___isLoopback2, String_t** ___scopeId3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IPv6AddressHelper_ParseCanonicalName_m3944530A7B686031653F97824EF712424E0BEE14_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
uint16_t* V_0 = NULL;
{
int8_t* L_0 = (int8_t*) alloca((((uintptr_t)((int32_t)16))));
memset(L_0,0,(((uintptr_t)((int32_t)16))));
V_0 = (uint16_t*)(L_0);
uint16_t* L_1 = V_0;
*((int64_t*)L_1) = (int64_t)(((int64_t)((int64_t)0)));
uint16_t* L_2 = V_0;
*((int64_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_2, (int32_t)8))) = (int64_t)(((int64_t)((int64_t)0)));
bool* L_3 = ___isLoopback2;
String_t* L_4 = ___str0;
uint16_t* L_5 = V_0;
int32_t L_6 = ___start1;
String_t** L_7 = ___scopeId3;
bool L_8 = IPv6AddressHelper_Parse_m36CE2F56465C4F9F7791E80E954C7C0ECBD16DFB(L_4, (uint16_t*)(uint16_t*)L_5, L_6, (String_t**)L_7, /*hidden argument*/NULL);
*((int8_t*)L_3) = (int8_t)L_8;
uint16_t* L_9 = V_0;
String_t* L_10 = IPv6AddressHelper_CreateCanonicalName_m0B1C201DFADBEB58869E0BE8BFA967EEE64B096A((uint16_t*)(uint16_t*)L_9, /*hidden argument*/NULL);
String_t* L_11 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(_stringLiteral1E5C2F367F02E47A8C160CDA1CD9D91DECBAC441, L_10, _stringLiteral4FF447B8EF42CA51FA6FB287BED8D40F49BE58F1, /*hidden argument*/NULL);
return L_11;
}
}
// System.String System.IPv6AddressHelper::CreateCanonicalName(System.UInt16*)
extern "C" IL2CPP_METHOD_ATTR String_t* IPv6AddressHelper_CreateCanonicalName_m0B1C201DFADBEB58869E0BE8BFA967EEE64B096A (uint16_t* ___numbers0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IPv6AddressHelper_CreateCanonicalName_m0B1C201DFADBEB58869E0BE8BFA967EEE64B096A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 V_0;
memset(&V_0, 0, sizeof(V_0));
bool V_1 = false;
StringBuilder_t * V_2 = NULL;
int32_t V_3 = 0;
{
IL2CPP_RUNTIME_CLASS_INIT(UriParser_t07C77D673CCE8D2DA253B8A7ACCB010147F1A4AC_il2cpp_TypeInfo_var);
bool L_0 = UriParser_get_ShouldUseLegacyV2Quirks_mD4C8DF67677ACCCC3B5E026099ECC0BDA24D96DD(/*hidden argument*/NULL);
if (!L_0)
{
goto IL_0090;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_1 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)8);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = L_2;
uint16_t* L_4 = ___numbers0;
int32_t L_5 = *((uint16_t*)L_4);
uint16_t L_6 = ((uint16_t)L_5);
RuntimeObject * L_7 = Box(UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_il2cpp_TypeInfo_var, &L_6);
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_7);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_7);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = L_3;
uint16_t* L_9 = ___numbers0;
int32_t L_10 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_9, (int32_t)2)));
uint16_t L_11 = ((uint16_t)L_10);
RuntimeObject * L_12 = Box(UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_il2cpp_TypeInfo_var, &L_11);
NullCheck(L_8);
ArrayElementTypeCheck (L_8, L_12);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_12);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_13 = L_8;
uint16_t* L_14 = ___numbers0;
int32_t L_15 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_14, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)2)), (int32_t)2)))));
uint16_t L_16 = ((uint16_t)L_15);
RuntimeObject * L_17 = Box(UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_il2cpp_TypeInfo_var, &L_16);
NullCheck(L_13);
ArrayElementTypeCheck (L_13, L_17);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_17);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_18 = L_13;
uint16_t* L_19 = ___numbers0;
int32_t L_20 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_19, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)3)), (int32_t)2)))));
uint16_t L_21 = ((uint16_t)L_20);
RuntimeObject * L_22 = Box(UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_il2cpp_TypeInfo_var, &L_21);
NullCheck(L_18);
ArrayElementTypeCheck (L_18, L_22);
(L_18)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_22);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_23 = L_18;
uint16_t* L_24 = ___numbers0;
int32_t L_25 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_24, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)4)), (int32_t)2)))));
uint16_t L_26 = ((uint16_t)L_25);
RuntimeObject * L_27 = Box(UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_il2cpp_TypeInfo_var, &L_26);
NullCheck(L_23);
ArrayElementTypeCheck (L_23, L_27);
(L_23)->SetAt(static_cast<il2cpp_array_size_t>(4), (RuntimeObject *)L_27);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_28 = L_23;
uint16_t* L_29 = ___numbers0;
int32_t L_30 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_29, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)5)), (int32_t)2)))));
uint16_t L_31 = ((uint16_t)L_30);
RuntimeObject * L_32 = Box(UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_il2cpp_TypeInfo_var, &L_31);
NullCheck(L_28);
ArrayElementTypeCheck (L_28, L_32);
(L_28)->SetAt(static_cast<il2cpp_array_size_t>(5), (RuntimeObject *)L_32);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_33 = L_28;
uint16_t* L_34 = ___numbers0;
int32_t L_35 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_34, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)6)), (int32_t)2)))));
uint16_t L_36 = ((uint16_t)L_35);
RuntimeObject * L_37 = Box(UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_il2cpp_TypeInfo_var, &L_36);
NullCheck(L_33);
ArrayElementTypeCheck (L_33, L_37);
(L_33)->SetAt(static_cast<il2cpp_array_size_t>(6), (RuntimeObject *)L_37);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_38 = L_33;
uint16_t* L_39 = ___numbers0;
int32_t L_40 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_39, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)7)), (int32_t)2)))));
uint16_t L_41 = ((uint16_t)L_40);
RuntimeObject * L_42 = Box(UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_il2cpp_TypeInfo_var, &L_41);
NullCheck(L_38);
ArrayElementTypeCheck (L_38, L_42);
(L_38)->SetAt(static_cast<il2cpp_array_size_t>(7), (RuntimeObject *)L_42);
String_t* L_43 = String_Format_mF68EE0DEC1AA5ADE9DFEF9AE0508E428FBB10EFD(L_1, _stringLiteralA5B40FBDEF80156114E062A34FA25675588A0524, L_38, /*hidden argument*/NULL);
return L_43;
}
IL_0090:
{
uint16_t* L_44 = ___numbers0;
KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 L_45 = IPv6AddressHelper_FindCompressionRange_mE70B131DDA05D3059325246A5AB7F6029B6EF6BD((uint16_t*)(uint16_t*)L_44, /*hidden argument*/NULL);
V_0 = L_45;
uint16_t* L_46 = ___numbers0;
bool L_47 = IPv6AddressHelper_ShouldHaveIpv4Embedded_m262634E9099141536C00213C1CFC123665A641DE((uint16_t*)(uint16_t*)L_46, /*hidden argument*/NULL);
V_1 = L_47;
StringBuilder_t * L_48 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_48, /*hidden argument*/NULL);
V_2 = L_48;
V_3 = 0;
goto IL_01a4;
}
IL_00ab:
{
bool L_49 = V_1;
if (!L_49)
{
goto IL_0123;
}
}
{
int32_t L_50 = V_3;
if ((!(((uint32_t)L_50) == ((uint32_t)6))))
{
goto IL_0123;
}
}
{
StringBuilder_t * L_51 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_52 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_53 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)SZArrayNew(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A_il2cpp_TypeInfo_var, (uint32_t)4);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_54 = L_53;
uint16_t* L_55 = ___numbers0;
int32_t L_56 = V_3;
int32_t L_57 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_55, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_56)), (int32_t)2)))));
int32_t L_58 = ((int32_t)((int32_t)L_57>>(int32_t)8));
RuntimeObject * L_59 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_58);
NullCheck(L_54);
ArrayElementTypeCheck (L_54, L_59);
(L_54)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_59);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_60 = L_54;
uint16_t* L_61 = ___numbers0;
int32_t L_62 = V_3;
int32_t L_63 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_61, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_62)), (int32_t)2)))));
int32_t L_64 = ((int32_t)((int32_t)L_63&(int32_t)((int32_t)255)));
RuntimeObject * L_65 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_64);
NullCheck(L_60);
ArrayElementTypeCheck (L_60, L_65);
(L_60)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_65);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_66 = L_60;
uint16_t* L_67 = ___numbers0;
int32_t L_68 = V_3;
int32_t L_69 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_67, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_68, (int32_t)1)))), (int32_t)2)))));
int32_t L_70 = ((int32_t)((int32_t)L_69>>(int32_t)8));
RuntimeObject * L_71 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_70);
NullCheck(L_66);
ArrayElementTypeCheck (L_66, L_71);
(L_66)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_71);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_72 = L_66;
uint16_t* L_73 = ___numbers0;
int32_t L_74 = V_3;
int32_t L_75 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_73, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_74, (int32_t)1)))), (int32_t)2)))));
int32_t L_76 = ((int32_t)((int32_t)L_75&(int32_t)((int32_t)255)));
RuntimeObject * L_77 = Box(Int32_t585191389E07734F19F3156FF88FB3EF4800D102_il2cpp_TypeInfo_var, &L_76);
NullCheck(L_72);
ArrayElementTypeCheck (L_72, L_77);
(L_72)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_77);
String_t* L_78 = String_Format_mF68EE0DEC1AA5ADE9DFEF9AE0508E428FBB10EFD(L_52, _stringLiteral1E3210AAC5A12A7D539A355ABFDC49D749AF3849, L_72, /*hidden argument*/NULL);
NullCheck(L_51);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_51, L_78, /*hidden argument*/NULL);
goto IL_01ab;
}
IL_0123:
{
int32_t L_79 = KeyValuePair_2_get_Key_mB735BC2D7232A3B45D667D28C17BA51AAAFFB4A1((KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 *)(&V_0), /*hidden argument*/KeyValuePair_2_get_Key_mB735BC2D7232A3B45D667D28C17BA51AAAFFB4A1_RuntimeMethod_var);
int32_t L_80 = V_3;
if ((!(((uint32_t)L_79) == ((uint32_t)L_80))))
{
goto IL_0139;
}
}
{
StringBuilder_t * L_81 = V_2;
NullCheck(L_81);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_81, _stringLiteral05A79F06CF3F67F726DAE68D18A2290F6C9A50C9, /*hidden argument*/NULL);
}
IL_0139:
{
int32_t L_82 = KeyValuePair_2_get_Key_mB735BC2D7232A3B45D667D28C17BA51AAAFFB4A1((KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 *)(&V_0), /*hidden argument*/KeyValuePair_2_get_Key_mB735BC2D7232A3B45D667D28C17BA51AAAFFB4A1_RuntimeMethod_var);
int32_t L_83 = V_3;
if ((((int32_t)L_82) > ((int32_t)L_83)))
{
goto IL_015b;
}
}
{
int32_t L_84 = KeyValuePair_2_get_Value_mF7293AF44DA0B8EB7B455A6227F7C36EEE9CF508((KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 *)(&V_0), /*hidden argument*/KeyValuePair_2_get_Value_mF7293AF44DA0B8EB7B455A6227F7C36EEE9CF508_RuntimeMethod_var);
if ((!(((uint32_t)L_84) == ((uint32_t)7))))
{
goto IL_015b;
}
}
{
StringBuilder_t * L_85 = V_2;
NullCheck(L_85);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_85, _stringLiteral05A79F06CF3F67F726DAE68D18A2290F6C9A50C9, /*hidden argument*/NULL);
goto IL_01ab;
}
IL_015b:
{
int32_t L_86 = KeyValuePair_2_get_Key_mB735BC2D7232A3B45D667D28C17BA51AAAFFB4A1((KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 *)(&V_0), /*hidden argument*/KeyValuePair_2_get_Key_mB735BC2D7232A3B45D667D28C17BA51AAAFFB4A1_RuntimeMethod_var);
int32_t L_87 = V_3;
if ((((int32_t)L_86) > ((int32_t)L_87)))
{
goto IL_016f;
}
}
{
int32_t L_88 = V_3;
int32_t L_89 = KeyValuePair_2_get_Value_mF7293AF44DA0B8EB7B455A6227F7C36EEE9CF508((KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 *)(&V_0), /*hidden argument*/KeyValuePair_2_get_Value_mF7293AF44DA0B8EB7B455A6227F7C36EEE9CF508_RuntimeMethod_var);
if ((((int32_t)L_88) <= ((int32_t)L_89)))
{
goto IL_01a0;
}
}
IL_016f:
{
int32_t L_90 = V_3;
if (!L_90)
{
goto IL_017e;
}
}
{
StringBuilder_t * L_91 = V_2;
NullCheck(L_91);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_91, _stringLiteral05A79F06CF3F67F726DAE68D18A2290F6C9A50C9, /*hidden argument*/NULL);
}
IL_017e:
{
StringBuilder_t * L_92 = V_2;
IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F_il2cpp_TypeInfo_var);
CultureInfo_t345AC6924134F039ED9A11F3E03F8E91B6A3225F * L_93 = CultureInfo_get_InvariantCulture_mF13B47F8A763CE6A9C8A8BB2EED33FF8F7A63A72(/*hidden argument*/NULL);
uint16_t* L_94 = ___numbers0;
int32_t L_95 = V_3;
int32_t L_96 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_94, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_95)), (int32_t)2)))));
uint16_t L_97 = ((uint16_t)L_96);
RuntimeObject * L_98 = Box(UInt16_tAE45CEF73BF720100519F6867F32145D075F928E_il2cpp_TypeInfo_var, &L_97);
String_t* L_99 = String_Format_m30892041DA5F50D7B8CFD82FFC0F55B5B97A2B7F(L_93, _stringLiteralFF29395A7A1A8881F7149A9507B91A51D420AC0A, L_98, /*hidden argument*/NULL);
NullCheck(L_92);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_92, L_99, /*hidden argument*/NULL);
}
IL_01a0:
{
int32_t L_100 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_100, (int32_t)1));
}
IL_01a4:
{
int32_t L_101 = V_3;
if ((((int32_t)L_101) < ((int32_t)8)))
{
goto IL_00ab;
}
}
IL_01ab:
{
StringBuilder_t * L_102 = V_2;
NullCheck(L_102);
String_t* L_103 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_102);
return L_103;
}
}
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32> System.IPv6AddressHelper::FindCompressionRange(System.UInt16*)
extern "C" IL2CPP_METHOD_ATTR KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 IPv6AddressHelper_FindCompressionRange_mE70B131DDA05D3059325246A5AB7F6029B6EF6BD (uint16_t* ___numbers0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IPv6AddressHelper_FindCompressionRange_mE70B131DDA05D3059325246A5AB7F6029B6EF6BD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
int32_t V_3 = 0;
{
V_0 = 0;
V_1 = (-1);
V_2 = 0;
V_3 = 0;
goto IL_002b;
}
IL_000a:
{
uint16_t* L_0 = ___numbers0;
int32_t L_1 = V_3;
int32_t L_2 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_0, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_1)), (int32_t)2)))));
if (L_2)
{
goto IL_0025;
}
}
{
int32_t L_3 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1));
int32_t L_4 = V_2;
int32_t L_5 = V_0;
if ((((int32_t)L_4) <= ((int32_t)L_5)))
{
goto IL_0027;
}
}
{
int32_t L_6 = V_2;
V_0 = L_6;
int32_t L_7 = V_3;
int32_t L_8 = V_2;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)L_8)), (int32_t)1));
goto IL_0027;
}
IL_0025:
{
V_2 = 0;
}
IL_0027:
{
int32_t L_9 = V_3;
V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_002b:
{
int32_t L_10 = V_3;
if ((((int32_t)L_10) < ((int32_t)8)))
{
goto IL_000a;
}
}
{
int32_t L_11 = V_0;
if ((((int32_t)L_11) < ((int32_t)2)))
{
goto IL_003f;
}
}
{
int32_t L_12 = V_1;
int32_t L_13 = V_1;
int32_t L_14 = V_0;
KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 L_15;
memset(&L_15, 0, sizeof(L_15));
KeyValuePair_2__ctor_m87D429E0B3923A6CF37A52F6F8C56B8FFFBE06D0((&L_15), L_12, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14)), (int32_t)1)), /*hidden argument*/KeyValuePair_2__ctor_m87D429E0B3923A6CF37A52F6F8C56B8FFFBE06D0_RuntimeMethod_var);
return L_15;
}
IL_003f:
{
KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 L_16;
memset(&L_16, 0, sizeof(L_16));
KeyValuePair_2__ctor_m87D429E0B3923A6CF37A52F6F8C56B8FFFBE06D0((&L_16), (-1), (-1), /*hidden argument*/KeyValuePair_2__ctor_m87D429E0B3923A6CF37A52F6F8C56B8FFFBE06D0_RuntimeMethod_var);
return L_16;
}
}
// System.Boolean System.IPv6AddressHelper::ShouldHaveIpv4Embedded(System.UInt16*)
extern "C" IL2CPP_METHOD_ATTR bool IPv6AddressHelper_ShouldHaveIpv4Embedded_m262634E9099141536C00213C1CFC123665A641DE (uint16_t* ___numbers0, const RuntimeMethod* method)
{
{
uint16_t* L_0 = ___numbers0;
int32_t L_1 = *((uint16_t*)L_0);
if (L_1)
{
goto IL_0060;
}
}
{
uint16_t* L_2 = ___numbers0;
int32_t L_3 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_2, (int32_t)2)));
if (L_3)
{
goto IL_0060;
}
}
{
uint16_t* L_4 = ___numbers0;
int32_t L_5 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_4, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)2)), (int32_t)2)))));
if (L_5)
{
goto IL_0060;
}
}
{
uint16_t* L_6 = ___numbers0;
int32_t L_7 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_6, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)3)), (int32_t)2)))));
if (L_7)
{
goto IL_0060;
}
}
{
uint16_t* L_8 = ___numbers0;
int32_t L_9 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_8, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)6)), (int32_t)2)))));
if (!L_9)
{
goto IL_0060;
}
}
{
uint16_t* L_10 = ___numbers0;
int32_t L_11 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_10, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)4)), (int32_t)2)))));
if (L_11)
{
goto IL_0047;
}
}
{
uint16_t* L_12 = ___numbers0;
int32_t L_13 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_12, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)5)), (int32_t)2)))));
if (!L_13)
{
goto IL_0045;
}
}
{
uint16_t* L_14 = ___numbers0;
int32_t L_15 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_14, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)5)), (int32_t)2)))));
if ((!(((uint32_t)L_15) == ((uint32_t)((int32_t)65535)))))
{
goto IL_0047;
}
}
IL_0045:
{
return (bool)1;
}
IL_0047:
{
uint16_t* L_16 = ___numbers0;
int32_t L_17 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_16, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)4)), (int32_t)2)))));
if ((!(((uint32_t)L_17) == ((uint32_t)((int32_t)65535)))))
{
goto IL_0060;
}
}
{
uint16_t* L_18 = ___numbers0;
int32_t L_19 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_18, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)5)), (int32_t)2)))));
if (L_19)
{
goto IL_0060;
}
}
{
return (bool)1;
}
IL_0060:
{
uint16_t* L_20 = ___numbers0;
int32_t L_21 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_20, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)4)), (int32_t)2)))));
if (L_21)
{
goto IL_0079;
}
}
{
uint16_t* L_22 = ___numbers0;
int32_t L_23 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_22, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)5)), (int32_t)2)))));
if ((!(((uint32_t)L_23) == ((uint32_t)((int32_t)24318)))))
{
goto IL_0079;
}
}
{
return (bool)1;
}
IL_0079:
{
return (bool)0;
}
}
// System.Boolean System.IPv6AddressHelper::InternalIsValid(System.Char*,System.Int32,System.Int32&,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR bool IPv6AddressHelper_InternalIsValid_m3BD7E7524455146D4464037DA3B65530E547AB7A (Il2CppChar* ___name0, int32_t ___start1, int32_t* ___end2, bool ___validateStrictAddress3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IPv6AddressHelper_InternalIsValid_m3BD7E7524455146D4464037DA3B65530E547AB7A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
bool V_2 = false;
bool V_3 = false;
bool V_4 = false;
bool V_5 = false;
int32_t V_6 = 0;
int32_t V_7 = 0;
int32_t V_8 = 0;
Il2CppChar V_9 = 0x0;
int32_t G_B6_0 = 0;
int32_t G_B52_0 = 0;
int32_t G_B51_0 = 0;
int32_t G_B53_0 = 0;
int32_t G_B53_1 = 0;
int32_t G_B58_0 = 0;
{
V_0 = 0;
V_1 = 0;
V_2 = (bool)0;
V_3 = (bool)0;
V_4 = (bool)0;
V_5 = (bool)1;
V_6 = 1;
int32_t L_0 = ___start1;
V_7 = L_0;
goto IL_0145;
}
IL_0019:
{
bool L_1 = V_4;
if (L_1)
{
goto IL_002c;
}
}
{
Il2CppChar* L_2 = ___name0;
int32_t L_3 = V_7;
int32_t L_4 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_2, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_3)), (int32_t)2)))));
IL2CPP_RUNTIME_CLASS_INIT(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_il2cpp_TypeInfo_var);
bool L_5 = Uri_IsHexDigit_m3B2881FA99F0B2197F8017E70C3AE6EBF9849836(L_4, /*hidden argument*/NULL);
G_B6_0 = ((int32_t)(L_5));
goto IL_004a;
}
IL_002c:
{
Il2CppChar* L_6 = ___name0;
int32_t L_7 = V_7;
int32_t L_8 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_6, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_7)), (int32_t)2)))));
if ((((int32_t)L_8) < ((int32_t)((int32_t)48))))
{
goto IL_0049;
}
}
{
Il2CppChar* L_9 = ___name0;
int32_t L_10 = V_7;
int32_t L_11 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_9, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_10)), (int32_t)2)))));
G_B6_0 = ((((int32_t)((((int32_t)L_11) > ((int32_t)((int32_t)57)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_004a;
}
IL_0049:
{
G_B6_0 = 0;
}
IL_004a:
{
if (!G_B6_0)
{
goto IL_0058;
}
}
{
int32_t L_12 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1));
V_5 = (bool)0;
goto IL_013f;
}
IL_0058:
{
int32_t L_13 = V_1;
if ((((int32_t)L_13) <= ((int32_t)4)))
{
goto IL_005e;
}
}
{
return (bool)0;
}
IL_005e:
{
int32_t L_14 = V_1;
if (!L_14)
{
goto IL_006b;
}
}
{
int32_t L_15 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
int32_t L_16 = V_7;
int32_t L_17 = V_1;
V_6 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_16, (int32_t)L_17));
}
IL_006b:
{
Il2CppChar* L_18 = ___name0;
int32_t L_19 = V_7;
int32_t L_20 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_18, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_19)), (int32_t)2)))));
V_9 = L_20;
Il2CppChar L_21 = V_9;
if ((!(((uint32_t)L_21) <= ((uint32_t)((int32_t)46)))))
{
goto IL_008f;
}
}
{
Il2CppChar L_22 = V_9;
if ((((int32_t)L_22) == ((int32_t)((int32_t)37))))
{
goto IL_00a6;
}
}
{
Il2CppChar L_23 = V_9;
if ((((int32_t)L_23) == ((int32_t)((int32_t)46))))
{
goto IL_0113;
}
}
{
goto IL_013b;
}
IL_008f:
{
Il2CppChar L_24 = V_9;
if ((((int32_t)L_24) == ((int32_t)((int32_t)47))))
{
goto IL_00fb;
}
}
{
Il2CppChar L_25 = V_9;
if ((((int32_t)L_25) == ((int32_t)((int32_t)58))))
{
goto IL_00d7;
}
}
{
Il2CppChar L_26 = V_9;
if ((((int32_t)L_26) == ((int32_t)((int32_t)93))))
{
goto IL_00cd;
}
}
{
goto IL_013b;
}
IL_00a6:
{
int32_t L_27 = V_7;
int32_t L_28 = ((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1));
V_7 = L_28;
int32_t* L_29 = ___end2;
int32_t L_30 = *((int32_t*)L_29);
if ((!(((uint32_t)L_28) == ((uint32_t)L_30))))
{
goto IL_00b3;
}
}
{
return (bool)0;
}
IL_00b3:
{
Il2CppChar* L_31 = ___name0;
int32_t L_32 = V_7;
int32_t L_33 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_31, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_32)), (int32_t)2)))));
if ((((int32_t)L_33) == ((int32_t)((int32_t)93))))
{
goto IL_00cd;
}
}
{
Il2CppChar* L_34 = ___name0;
int32_t L_35 = V_7;
int32_t L_36 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_34, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_35)), (int32_t)2)))));
if ((!(((uint32_t)L_36) == ((uint32_t)((int32_t)47)))))
{
goto IL_00a6;
}
}
{
goto IL_00fb;
}
IL_00cd:
{
int32_t L_37 = V_7;
___start1 = L_37;
int32_t* L_38 = ___end2;
int32_t L_39 = *((int32_t*)L_38);
V_7 = L_39;
goto IL_013f;
}
IL_00d7:
{
int32_t L_40 = V_7;
if ((((int32_t)L_40) <= ((int32_t)0)))
{
goto IL_00f6;
}
}
{
Il2CppChar* L_41 = ___name0;
int32_t L_42 = V_7;
int32_t L_43 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_41, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_42, (int32_t)1)))), (int32_t)2)))));
if ((!(((uint32_t)L_43) == ((uint32_t)((int32_t)58)))))
{
goto IL_00f6;
}
}
{
bool L_44 = V_2;
if (!L_44)
{
goto IL_00ef;
}
}
{
return (bool)0;
}
IL_00ef:
{
V_2 = (bool)1;
V_5 = (bool)0;
goto IL_013d;
}
IL_00f6:
{
V_5 = (bool)1;
goto IL_013d;
}
IL_00fb:
{
bool L_45 = ___validateStrictAddress3;
if (!L_45)
{
goto IL_0100;
}
}
{
return (bool)0;
}
IL_0100:
{
int32_t L_46 = V_0;
bool L_47 = V_4;
if (!((int32_t)((int32_t)((((int32_t)L_46) == ((int32_t)0))? 1 : 0)|(int32_t)L_47)))
{
goto IL_010b;
}
}
{
return (bool)0;
}
IL_010b:
{
V_4 = (bool)1;
V_5 = (bool)1;
goto IL_013d;
}
IL_0113:
{
bool L_48 = V_3;
if (!L_48)
{
goto IL_0118;
}
}
{
return (bool)0;
}
IL_0118:
{
int32_t* L_49 = ___end2;
int32_t L_50 = *((int32_t*)L_49);
V_7 = L_50;
Il2CppChar* L_51 = ___name0;
int32_t L_52 = V_6;
bool L_53 = IPv4AddressHelper_IsValid_mD96D91E0F3830414F4601A4521E71DE832A45843((Il2CppChar*)(Il2CppChar*)L_51, L_52, (int32_t*)(&V_7), (bool)1, (bool)0, (bool)0, /*hidden argument*/NULL);
if (L_53)
{
goto IL_012d;
}
}
{
return (bool)0;
}
IL_012d:
{
int32_t L_54 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_54, (int32_t)1));
V_3 = (bool)1;
int32_t L_55 = V_7;
V_7 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_55, (int32_t)1));
goto IL_013d;
}
IL_013b:
{
return (bool)0;
}
IL_013d:
{
V_1 = 0;
}
IL_013f:
{
int32_t L_56 = V_7;
V_7 = ((int32_t)il2cpp_codegen_add((int32_t)L_56, (int32_t)1));
}
IL_0145:
{
int32_t L_57 = V_7;
int32_t* L_58 = ___end2;
int32_t L_59 = *((int32_t*)L_58);
if ((((int32_t)L_57) < ((int32_t)L_59)))
{
goto IL_0019;
}
}
{
bool L_60 = V_4;
if (!L_60)
{
goto IL_015c;
}
}
{
int32_t L_61 = V_1;
if ((((int32_t)L_61) < ((int32_t)1)))
{
goto IL_015a;
}
}
{
int32_t L_62 = V_1;
if ((((int32_t)L_62) <= ((int32_t)2)))
{
goto IL_015c;
}
}
IL_015a:
{
return (bool)0;
}
IL_015c:
{
bool L_63 = V_4;
G_B51_0 = 8;
if (L_63)
{
G_B52_0 = 8;
goto IL_0164;
}
}
{
G_B53_0 = 0;
G_B53_1 = G_B51_0;
goto IL_0165;
}
IL_0164:
{
G_B53_0 = 1;
G_B53_1 = G_B52_0;
}
IL_0165:
{
V_8 = ((int32_t)il2cpp_codegen_add((int32_t)G_B53_1, (int32_t)G_B53_0));
bool L_64 = V_5;
if (L_64)
{
goto IL_0192;
}
}
{
int32_t L_65 = V_1;
if ((((int32_t)L_65) > ((int32_t)4)))
{
goto IL_0192;
}
}
{
bool L_66 = V_2;
if (L_66)
{
goto IL_017a;
}
}
{
int32_t L_67 = V_0;
int32_t L_68 = V_8;
G_B58_0 = ((((int32_t)L_67) == ((int32_t)L_68))? 1 : 0);
goto IL_017f;
}
IL_017a:
{
int32_t L_69 = V_0;
int32_t L_70 = V_8;
G_B58_0 = ((((int32_t)L_69) < ((int32_t)L_70))? 1 : 0);
}
IL_017f:
{
if (!G_B58_0)
{
goto IL_0192;
}
}
{
int32_t L_71 = V_7;
int32_t* L_72 = ___end2;
int32_t L_73 = *((int32_t*)L_72);
if ((!(((uint32_t)L_71) == ((uint32_t)((int32_t)il2cpp_codegen_add((int32_t)L_73, (int32_t)1))))))
{
goto IL_0190;
}
}
{
int32_t* L_74 = ___end2;
int32_t L_75 = ___start1;
*((int32_t*)L_74) = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_75, (int32_t)1));
return (bool)1;
}
IL_0190:
{
return (bool)0;
}
IL_0192:
{
return (bool)0;
}
}
// System.Boolean System.IPv6AddressHelper::IsValid(System.Char*,System.Int32,System.Int32&)
extern "C" IL2CPP_METHOD_ATTR bool IPv6AddressHelper_IsValid_m2383F1A867665B04A4F2B8D82FF2B62BE51C2289 (Il2CppChar* ___name0, int32_t ___start1, int32_t* ___end2, const RuntimeMethod* method)
{
{
Il2CppChar* L_0 = ___name0;
int32_t L_1 = ___start1;
int32_t* L_2 = ___end2;
bool L_3 = IPv6AddressHelper_InternalIsValid_m3BD7E7524455146D4464037DA3B65530E547AB7A((Il2CppChar*)(Il2CppChar*)L_0, L_1, (int32_t*)L_2, (bool)0, /*hidden argument*/NULL);
return L_3;
}
}
// System.Boolean System.IPv6AddressHelper::Parse(System.String,System.UInt16*,System.Int32,System.String&)
extern "C" IL2CPP_METHOD_ATTR bool IPv6AddressHelper_Parse_m36CE2F56465C4F9F7791E80E954C7C0ECBD16DFB (String_t* ___address0, uint16_t* ___numbers1, int32_t ___start2, String_t** ___scopeId3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IPv6AddressHelper_Parse_m36CE2F56465C4F9F7791E80E954C7C0ECBD16DFB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
bool V_3 = false;
int32_t V_4 = 0;
int32_t V_5 = 0;
Il2CppChar V_6 = 0x0;
int32_t V_7 = 0;
int32_t V_8 = 0;
int32_t V_9 = 0;
int32_t V_10 = 0;
{
V_0 = 0;
V_1 = 0;
V_2 = (-1);
V_3 = (bool)1;
V_4 = 0;
String_t* L_0 = ___address0;
int32_t L_1 = ___start2;
NullCheck(L_0);
Il2CppChar L_2 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_0, L_1, /*hidden argument*/NULL);
if ((!(((uint32_t)L_2) == ((uint32_t)((int32_t)91)))))
{
goto IL_001b;
}
}
{
int32_t L_3 = ___start2;
___start2 = ((int32_t)il2cpp_codegen_add((int32_t)L_3, (int32_t)1));
}
IL_001b:
{
int32_t L_4 = ___start2;
V_5 = L_4;
goto IL_01f1;
}
IL_0023:
{
String_t* L_5 = ___address0;
int32_t L_6 = V_5;
NullCheck(L_5);
Il2CppChar L_7 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_5, L_6, /*hidden argument*/NULL);
V_6 = L_7;
Il2CppChar L_8 = V_6;
if ((((int32_t)L_8) == ((int32_t)((int32_t)37))))
{
goto IL_0047;
}
}
{
Il2CppChar L_9 = V_6;
if ((((int32_t)L_9) == ((int32_t)((int32_t)47))))
{
goto IL_0198;
}
}
{
Il2CppChar L_10 = V_6;
if ((((int32_t)L_10) == ((int32_t)((int32_t)58))))
{
goto IL_00a9;
}
}
{
goto IL_01d9;
}
IL_0047:
{
bool L_11 = V_3;
if (!L_11)
{
goto IL_0059;
}
}
{
uint16_t* L_12 = ___numbers1;
int32_t L_13 = V_1;
int32_t L_14 = L_13;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1));
int32_t L_15 = V_0;
*((int16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_12, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_14)), (int32_t)2))))) = (int16_t)(((int32_t)((uint16_t)L_15)));
V_3 = (bool)0;
}
IL_0059:
{
int32_t L_16 = V_5;
___start2 = L_16;
int32_t L_17 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1));
goto IL_006b;
}
IL_0065:
{
int32_t L_18 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1));
}
IL_006b:
{
String_t* L_19 = ___address0;
int32_t L_20 = V_5;
NullCheck(L_19);
Il2CppChar L_21 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_19, L_20, /*hidden argument*/NULL);
if ((((int32_t)L_21) == ((int32_t)((int32_t)93))))
{
goto IL_0083;
}
}
{
String_t* L_22 = ___address0;
int32_t L_23 = V_5;
NullCheck(L_22);
Il2CppChar L_24 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_22, L_23, /*hidden argument*/NULL);
if ((!(((uint32_t)L_24) == ((uint32_t)((int32_t)47)))))
{
goto IL_0065;
}
}
IL_0083:
{
String_t** L_25 = ___scopeId3;
String_t* L_26 = ___address0;
int32_t L_27 = ___start2;
int32_t L_28 = V_5;
int32_t L_29 = ___start2;
NullCheck(L_26);
String_t* L_30 = String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB(L_26, L_27, ((int32_t)il2cpp_codegen_subtract((int32_t)L_28, (int32_t)L_29)), /*hidden argument*/NULL);
*((RuntimeObject **)L_25) = (RuntimeObject *)L_30;
Il2CppCodeGenWriteBarrier((RuntimeObject **)L_25, (RuntimeObject *)L_30);
goto IL_0098;
}
IL_0092:
{
int32_t L_31 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_31, (int32_t)1));
}
IL_0098:
{
String_t* L_32 = ___address0;
int32_t L_33 = V_5;
NullCheck(L_32);
Il2CppChar L_34 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_32, L_33, /*hidden argument*/NULL);
if ((!(((uint32_t)L_34) == ((uint32_t)((int32_t)93)))))
{
goto IL_0092;
}
}
{
goto IL_01f1;
}
IL_00a9:
{
uint16_t* L_35 = ___numbers1;
int32_t L_36 = V_1;
int32_t L_37 = L_36;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_37, (int32_t)1));
int32_t L_38 = V_0;
*((int16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_35, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_37)), (int32_t)2))))) = (int16_t)(((int32_t)((uint16_t)L_38)));
V_0 = 0;
int32_t L_39 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_39, (int32_t)1));
String_t* L_40 = ___address0;
int32_t L_41 = V_5;
NullCheck(L_40);
Il2CppChar L_42 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_40, L_41, /*hidden argument*/NULL);
if ((!(((uint32_t)L_42) == ((uint32_t)((int32_t)58)))))
{
goto IL_00d4;
}
}
{
int32_t L_43 = V_1;
V_2 = L_43;
int32_t L_44 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_44, (int32_t)1));
goto IL_00df;
}
IL_00d4:
{
int32_t L_45 = V_2;
if ((((int32_t)L_45) >= ((int32_t)0)))
{
goto IL_00df;
}
}
{
int32_t L_46 = V_1;
if ((((int32_t)L_46) < ((int32_t)6)))
{
goto IL_01f1;
}
}
IL_00df:
{
int32_t L_47 = V_5;
V_7 = L_47;
goto IL_0158;
}
IL_00e5:
{
String_t* L_48 = ___address0;
int32_t L_49 = V_7;
NullCheck(L_48);
Il2CppChar L_50 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_48, L_49, /*hidden argument*/NULL);
if ((!(((uint32_t)L_50) == ((uint32_t)((int32_t)46)))))
{
goto IL_0152;
}
}
{
goto IL_00f9;
}
IL_00f3:
{
int32_t L_51 = V_7;
V_7 = ((int32_t)il2cpp_codegen_add((int32_t)L_51, (int32_t)1));
}
IL_00f9:
{
String_t* L_52 = ___address0;
int32_t L_53 = V_7;
NullCheck(L_52);
Il2CppChar L_54 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_52, L_53, /*hidden argument*/NULL);
if ((((int32_t)L_54) == ((int32_t)((int32_t)93))))
{
goto IL_011d;
}
}
{
String_t* L_55 = ___address0;
int32_t L_56 = V_7;
NullCheck(L_55);
Il2CppChar L_57 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_55, L_56, /*hidden argument*/NULL);
if ((((int32_t)L_57) == ((int32_t)((int32_t)47))))
{
goto IL_011d;
}
}
{
String_t* L_58 = ___address0;
int32_t L_59 = V_7;
NullCheck(L_58);
Il2CppChar L_60 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_58, L_59, /*hidden argument*/NULL);
if ((!(((uint32_t)L_60) == ((uint32_t)((int32_t)37)))))
{
goto IL_00f3;
}
}
IL_011d:
{
String_t* L_61 = ___address0;
int32_t L_62 = V_5;
int32_t L_63 = V_7;
int32_t L_64 = IPv4AddressHelper_ParseHostNumber_m798FB6828971F70775D1125565A1D1025C897F14(L_61, L_62, L_63, /*hidden argument*/NULL);
V_0 = L_64;
uint16_t* L_65 = ___numbers1;
int32_t L_66 = V_1;
int32_t L_67 = L_66;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_67, (int32_t)1));
int32_t L_68 = V_0;
*((int16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_65, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_67)), (int32_t)2))))) = (int16_t)(((int32_t)((uint16_t)((int32_t)((int32_t)L_68>>(int32_t)((int32_t)16))))));
uint16_t* L_69 = ___numbers1;
int32_t L_70 = V_1;
int32_t L_71 = L_70;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_71, (int32_t)1));
int32_t L_72 = V_0;
*((int16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_69, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_71)), (int32_t)2))))) = (int16_t)(((int32_t)((uint16_t)L_72)));
int32_t L_73 = V_7;
V_5 = L_73;
V_0 = 0;
V_3 = (bool)0;
goto IL_01f1;
}
IL_0152:
{
int32_t L_74 = V_7;
V_7 = ((int32_t)il2cpp_codegen_add((int32_t)L_74, (int32_t)1));
}
IL_0158:
{
String_t* L_75 = ___address0;
int32_t L_76 = V_7;
NullCheck(L_75);
Il2CppChar L_77 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_75, L_76, /*hidden argument*/NULL);
if ((((int32_t)L_77) == ((int32_t)((int32_t)93))))
{
goto IL_01f1;
}
}
{
String_t* L_78 = ___address0;
int32_t L_79 = V_7;
NullCheck(L_78);
Il2CppChar L_80 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_78, L_79, /*hidden argument*/NULL);
if ((((int32_t)L_80) == ((int32_t)((int32_t)58))))
{
goto IL_01f1;
}
}
{
String_t* L_81 = ___address0;
int32_t L_82 = V_7;
NullCheck(L_81);
Il2CppChar L_83 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_81, L_82, /*hidden argument*/NULL);
if ((((int32_t)L_83) == ((int32_t)((int32_t)37))))
{
goto IL_01f1;
}
}
{
String_t* L_84 = ___address0;
int32_t L_85 = V_7;
NullCheck(L_84);
Il2CppChar L_86 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_84, L_85, /*hidden argument*/NULL);
if ((((int32_t)L_86) == ((int32_t)((int32_t)47))))
{
goto IL_01f1;
}
}
{
int32_t L_87 = V_7;
int32_t L_88 = V_5;
if ((((int32_t)L_87) < ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_88, (int32_t)4)))))
{
goto IL_00e5;
}
}
{
goto IL_01f1;
}
IL_0198:
{
bool L_89 = V_3;
if (!L_89)
{
goto IL_01aa;
}
}
{
uint16_t* L_90 = ___numbers1;
int32_t L_91 = V_1;
int32_t L_92 = L_91;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_92, (int32_t)1));
int32_t L_93 = V_0;
*((int16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_90, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_92)), (int32_t)2))))) = (int16_t)(((int32_t)((uint16_t)L_93)));
V_3 = (bool)0;
}
IL_01aa:
{
int32_t L_94 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_94, (int32_t)1));
goto IL_01cb;
}
IL_01b2:
{
int32_t L_95 = V_4;
String_t* L_96 = ___address0;
int32_t L_97 = V_5;
NullCheck(L_96);
Il2CppChar L_98 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_96, L_97, /*hidden argument*/NULL);
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_95, (int32_t)((int32_t)10))), (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_98, (int32_t)((int32_t)48)))));
int32_t L_99 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_99, (int32_t)1));
}
IL_01cb:
{
String_t* L_100 = ___address0;
int32_t L_101 = V_5;
NullCheck(L_100);
Il2CppChar L_102 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_100, L_101, /*hidden argument*/NULL);
if ((!(((uint32_t)L_102) == ((uint32_t)((int32_t)93)))))
{
goto IL_01b2;
}
}
{
goto IL_01f1;
}
IL_01d9:
{
int32_t L_103 = V_0;
String_t* L_104 = ___address0;
int32_t L_105 = V_5;
int32_t L_106 = L_105;
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_106, (int32_t)1));
NullCheck(L_104);
Il2CppChar L_107 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_104, L_106, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_il2cpp_TypeInfo_var);
int32_t L_108 = Uri_FromHex_m9EAC76A5DBFED86532FF7E1BBD809176337A227B(L_107, /*hidden argument*/NULL);
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_103, (int32_t)((int32_t)16))), (int32_t)L_108));
}
IL_01f1:
{
int32_t L_109 = V_5;
String_t* L_110 = ___address0;
NullCheck(L_110);
int32_t L_111 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_110, /*hidden argument*/NULL);
if ((((int32_t)L_109) >= ((int32_t)L_111)))
{
goto IL_020a;
}
}
{
String_t* L_112 = ___address0;
int32_t L_113 = V_5;
NullCheck(L_112);
Il2CppChar L_114 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_112, L_113, /*hidden argument*/NULL);
if ((!(((uint32_t)L_114) == ((uint32_t)((int32_t)93)))))
{
goto IL_0023;
}
}
IL_020a:
{
bool L_115 = V_3;
if (!L_115)
{
goto IL_021a;
}
}
{
uint16_t* L_116 = ___numbers1;
int32_t L_117 = V_1;
int32_t L_118 = L_117;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_118, (int32_t)1));
int32_t L_119 = V_0;
*((int16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_116, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_118)), (int32_t)2))))) = (int16_t)(((int32_t)((uint16_t)L_119)));
}
IL_021a:
{
int32_t L_120 = V_2;
if ((((int32_t)L_120) <= ((int32_t)0)))
{
goto IL_025b;
}
}
{
V_8 = 7;
int32_t L_121 = V_1;
V_9 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_121, (int32_t)1));
int32_t L_122 = V_1;
int32_t L_123 = V_2;
V_10 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_122, (int32_t)L_123));
goto IL_0256;
}
IL_022d:
{
uint16_t* L_124 = ___numbers1;
int32_t L_125 = V_8;
int32_t L_126 = L_125;
V_8 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_126, (int32_t)1));
uint16_t* L_127 = ___numbers1;
int32_t L_128 = V_9;
int32_t L_129 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_127, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_128)), (int32_t)2)))));
*((int16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_124, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_126)), (int32_t)2))))) = (int16_t)L_129;
uint16_t* L_130 = ___numbers1;
int32_t L_131 = V_9;
int32_t L_132 = L_131;
V_9 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_132, (int32_t)1));
*((int16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_130, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_132)), (int32_t)2))))) = (int16_t)0;
int32_t L_133 = V_10;
V_10 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_133, (int32_t)1));
}
IL_0256:
{
int32_t L_134 = V_10;
if ((((int32_t)L_134) > ((int32_t)0)))
{
goto IL_022d;
}
}
IL_025b:
{
uint16_t* L_135 = ___numbers1;
int32_t L_136 = *((uint16_t*)L_135);
if (L_136)
{
goto IL_02d2;
}
}
{
uint16_t* L_137 = ___numbers1;
int32_t L_138 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_137, (int32_t)2)));
if (L_138)
{
goto IL_02d2;
}
}
{
uint16_t* L_139 = ___numbers1;
int32_t L_140 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_139, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)2)), (int32_t)2)))));
if (L_140)
{
goto IL_02d2;
}
}
{
uint16_t* L_141 = ___numbers1;
int32_t L_142 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_141, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)3)), (int32_t)2)))));
if (L_142)
{
goto IL_02d2;
}
}
{
uint16_t* L_143 = ___numbers1;
int32_t L_144 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_143, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)4)), (int32_t)2)))));
if (L_144)
{
goto IL_02d2;
}
}
{
uint16_t* L_145 = ___numbers1;
int32_t L_146 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_145, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)5)), (int32_t)2)))));
if (L_146)
{
goto IL_029c;
}
}
{
uint16_t* L_147 = ___numbers1;
int32_t L_148 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_147, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)6)), (int32_t)2)))));
if (L_148)
{
goto IL_029c;
}
}
{
uint16_t* L_149 = ___numbers1;
int32_t L_150 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_149, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)7)), (int32_t)2)))));
if ((((int32_t)L_150) == ((int32_t)1)))
{
goto IL_02d0;
}
}
IL_029c:
{
uint16_t* L_151 = ___numbers1;
int32_t L_152 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_151, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)6)), (int32_t)2)))));
if ((!(((uint32_t)L_152) == ((uint32_t)((int32_t)32512)))))
{
goto IL_02ce;
}
}
{
uint16_t* L_153 = ___numbers1;
int32_t L_154 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_153, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)7)), (int32_t)2)))));
if ((!(((uint32_t)L_154) == ((uint32_t)1))))
{
goto IL_02ce;
}
}
{
uint16_t* L_155 = ___numbers1;
int32_t L_156 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_155, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)5)), (int32_t)2)))));
if (!L_156)
{
goto IL_02cc;
}
}
{
uint16_t* L_157 = ___numbers1;
int32_t L_158 = *((uint16_t*)((uint16_t*)il2cpp_codegen_add((intptr_t)L_157, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)5)), (int32_t)2)))));
return (bool)((((int32_t)L_158) == ((int32_t)((int32_t)65535)))? 1 : 0);
}
IL_02cc:
{
return (bool)1;
}
IL_02ce:
{
return (bool)0;
}
IL_02d0:
{
return (bool)1;
}
IL_02d2:
{
return (bool)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.Boolean System.IriHelper::CheckIriUnicodeRange(System.Char,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR bool IriHelper_CheckIriUnicodeRange_mA9BAAD6D244ADEE8986FDC0DFB3DFDA90C093A6C (Il2CppChar ___unicode0, bool ___isQuery1, const RuntimeMethod* method)
{
{
Il2CppChar L_0 = ___unicode0;
if ((((int32_t)L_0) < ((int32_t)((int32_t)160))))
{
goto IL_0010;
}
}
{
Il2CppChar L_1 = ___unicode0;
if ((((int32_t)L_1) <= ((int32_t)((int32_t)55295))))
{
goto IL_0049;
}
}
IL_0010:
{
Il2CppChar L_2 = ___unicode0;
if ((((int32_t)L_2) < ((int32_t)((int32_t)63744))))
{
goto IL_0020;
}
}
{
Il2CppChar L_3 = ___unicode0;
if ((((int32_t)L_3) <= ((int32_t)((int32_t)64975))))
{
goto IL_0049;
}
}
IL_0020:
{
Il2CppChar L_4 = ___unicode0;
if ((((int32_t)L_4) < ((int32_t)((int32_t)65008))))
{
goto IL_0030;
}
}
{
Il2CppChar L_5 = ___unicode0;
if ((((int32_t)L_5) <= ((int32_t)((int32_t)65519))))
{
goto IL_0049;
}
}
IL_0030:
{
bool L_6 = ___isQuery1;
if (!L_6)
{
goto IL_0047;
}
}
{
Il2CppChar L_7 = ___unicode0;
if ((((int32_t)L_7) < ((int32_t)((int32_t)57344))))
{
goto IL_0047;
}
}
{
Il2CppChar L_8 = ___unicode0;
return (bool)((((int32_t)((((int32_t)L_8) > ((int32_t)((int32_t)63743)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
}
IL_0047:
{
return (bool)0;
}
IL_0049:
{
return (bool)1;
}
}
// System.Boolean System.IriHelper::CheckIriUnicodeRange(System.Char,System.Char,System.Boolean&,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR bool IriHelper_CheckIriUnicodeRange_m5ED29083C22062AEAB8B5787C9A27CFEEC397AD9 (Il2CppChar ___highSurr0, Il2CppChar ___lowSurr1, bool* ___surrogatePair2, bool ___isQuery3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IriHelper_CheckIriUnicodeRange_m5ED29083C22062AEAB8B5787C9A27CFEEC397AD9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
String_t* V_1 = NULL;
{
V_0 = (bool)0;
bool* L_0 = ___surrogatePair2;
*((int8_t*)L_0) = (int8_t)0;
Il2CppChar L_1 = ___highSurr0;
Il2CppChar L_2 = ___lowSurr1;
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
bool L_3 = Char_IsSurrogatePair_m186784A2523D247DD43AC669D29A140AE0E992CF(L_1, L_2, /*hidden argument*/NULL);
if (!L_3)
{
goto IL_020e;
}
}
{
bool* L_4 = ___surrogatePair2;
*((int8_t*)L_4) = (int8_t)1;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_5 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)2);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_6 = L_5;
Il2CppChar L_7 = ___highSurr0;
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppChar)L_7);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_8 = L_6;
Il2CppChar L_9 = ___lowSurr1;
NullCheck(L_8);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(1), (Il2CppChar)L_9);
String_t* L_10 = String_CreateString_m394C06654854ADD4C51FF957BE0CC72EF52BAA96(NULL, L_8, /*hidden argument*/NULL);
V_1 = L_10;
String_t* L_11 = V_1;
int32_t L_12 = String_CompareOrdinal_m172D84EDDE0823F53EAB60857C07EA7F85600068(L_11, _stringLiteral65E574DF4C26A5034E26490200EF9040B9AD3A26, /*hidden argument*/NULL);
if ((((int32_t)L_12) < ((int32_t)0)))
{
goto IL_0047;
}
}
{
String_t* L_13 = V_1;
int32_t L_14 = String_CompareOrdinal_m172D84EDDE0823F53EAB60857C07EA7F85600068(L_13, _stringLiteral138AE1291D0FDD2939737A605784ED08E78A9737, /*hidden argument*/NULL);
if ((((int32_t)L_14) <= ((int32_t)0)))
{
goto IL_020c;
}
}
IL_0047:
{
String_t* L_15 = V_1;
int32_t L_16 = String_CompareOrdinal_m172D84EDDE0823F53EAB60857C07EA7F85600068(L_15, _stringLiteral7DF115C7517A2274DDEA5B68BAC5337B387D957F, /*hidden argument*/NULL);
if ((((int32_t)L_16) < ((int32_t)0)))
{
goto IL_0066;
}
}
{
String_t* L_17 = V_1;
int32_t L_18 = String_CompareOrdinal_m172D84EDDE0823F53EAB60857C07EA7F85600068(L_17, _stringLiteral2E8D21C998F75805B9367B60DD8A3B85620ACACC, /*hidden argument*/NULL);
if ((((int32_t)L_18) <= ((int32_t)0)))
{
goto IL_020c;
}
}
IL_0066:
{
String_t* L_19 = V_1;
int32_t L_20 = String_CompareOrdinal_m172D84EDDE0823F53EAB60857C07EA7F85600068(L_19, _stringLiteral7C1881B48BC394F86F2C5B88C9C0D564876D2822, /*hidden argument*/NULL);
if ((((int32_t)L_20) < ((int32_t)0)))
{
goto IL_0085;
}
}
{
String_t* L_21 = V_1;
int32_t L_22 = String_CompareOrdinal_m172D84EDDE0823F53EAB60857C07EA7F85600068(L_21, _stringLiteral2051DA5902A321BE45FD27292CD8E8397E1CBC8A, /*hidden argument*/NULL);
if ((((int32_t)L_22) <= ((int32_t)0)))
{
goto IL_020c;
}
}
IL_0085:
{
String_t* L_23 = V_1;
int32_t L_24 = String_CompareOrdinal_m172D84EDDE0823F53EAB60857C07EA7F85600068(L_23, _stringLiteral403658E687068FB4134ECC254ECAF3136CDC3FE6, /*hidden argument*/NULL);
if ((((int32_t)L_24) < ((int32_t)0)))
{
goto IL_00a4;
}
}
{
String_t* L_25 = V_1;
int32_t L_26 = String_CompareOrdinal_m172D84EDDE0823F53EAB60857C07EA7F85600068(L_25, _stringLiteralBB94D38BBC3E55D3BB9ED775E3926427237C5BB4, /*hidden argument*/NULL);
if ((((int32_t)L_26) <= ((int32_t)0)))
{
goto IL_020c;
}
}
IL_00a4:
{
String_t* L_27 = V_1;
int32_t L_28 = String_CompareOrdinal_m172D84EDDE0823F53EAB60857C07EA7F85600068(L_27, _stringLiteral46751B390D92C344617E7490A91616F7DAE87A4D, /*hidden argument*/NULL);
if ((((int32_t)L_28) < ((int32_t)0)))
{
goto IL_00c3;
}
}
{
String_t* L_29 = V_1;
int32_t L_30 = String_CompareOrdinal_m172D84EDDE0823F53EAB60857C07EA7F85600068(L_29, _stringLiteral5567A4280B56B93887A3411B9BA889553B427D9C, /*hidden argument*/NULL);
if ((((int32_t)L_30) <= ((int32_t)0)))
{
goto IL_020c;
}
}
IL_00c3:
{
String_t* L_31 = V_1;
int32_t L_32 = String_CompareOrdinal_m172D84EDDE0823F53EAB60857C07EA7F85600068(L_31, _stringLiteral84F802341A80D8821928A6BF042018F28F6BD6BC, /*hidden argument*/NULL);
if ((((int32_t)L_32) < ((int32_t)0)))
{
goto IL_00e2;
}
}
{
String_t* L_33 = V_1;
int32_t L_34 = String_CompareOrdinal_m172D84EDDE0823F53EAB60857C07EA7F85600068(L_33, _stringLiteral8D5280EE3B031DC560AA00396A9D537BC0401F97, /*hidden argument*/NULL);
if ((((int32_t)L_34) <= ((int32_t)0)))
{
goto IL_020c;
}
}
IL_00e2:
{
String_t* L_35 = V_1;
int32_t L_36 = String_CompareOrdinal_m172D84EDDE0823F53EAB60857C07EA7F85600068(L_35, _stringLiteralA1F04E6EFD522730470A7511DBE3EBF9FD0108A4, /*hidden argument*/NULL);
if ((((int32_t)L_36) < ((int32_t)0)))
{
goto IL_0101;
}
}
{
String_t* L_37 = V_1;
int32_t L_38 = String_CompareOrdinal_m172D84EDDE0823F53EAB60857C07EA7F85600068(L_37, _stringLiteralFE7B8C6038A1A74D80BFF5F23FB9B41209B3A58B, /*hidden argument*/NULL);
if ((((int32_t)L_38) <= ((int32_t)0)))
{
goto IL_020c;
}
}
IL_0101:
{
String_t* L_39 = V_1;
int32_t L_40 = String_CompareOrdinal_m172D84EDDE0823F53EAB60857C07EA7F85600068(L_39, _stringLiteral1C1B3D6FF94B2A59F3278B9591692B9DE73EE437, /*hidden argument*/NULL);
if ((((int32_t)L_40) < ((int32_t)0)))
{
goto IL_0120;
}
}
{
String_t* L_41 = V_1;
int32_t L_42 = String_CompareOrdinal_m172D84EDDE0823F53EAB60857C07EA7F85600068(L_41, _stringLiteralEBF4DF063AA788A23C3FE2ADCA2B6C0525339B9A, /*hidden argument*/NULL);
if ((((int32_t)L_42) <= ((int32_t)0)))
{
goto IL_020c;
}
}
IL_0120:
{
String_t* L_43 = V_1;
int32_t L_44 = String_CompareOrdinal_m172D84EDDE0823F53EAB60857C07EA7F85600068(L_43, _stringLiteral9929BD76BB6A479BD748D213279338B8145D9D00, /*hidden argument*/NULL);
if ((((int32_t)L_44) < ((int32_t)0)))
{
goto IL_013f;
}
}
{
String_t* L_45 = V_1;
int32_t L_46 = String_CompareOrdinal_m172D84EDDE0823F53EAB60857C07EA7F85600068(L_45, _stringLiteralE462BF1A8BF1155E522ABAE519222876450BA43D, /*hidden argument*/NULL);
if ((((int32_t)L_46) <= ((int32_t)0)))
{
goto IL_020c;
}
}
IL_013f:
{
String_t* L_47 = V_1;
int32_t L_48 = String_CompareOrdinal_m172D84EDDE0823F53EAB60857C07EA7F85600068(L_47, _stringLiteralE31A30F4BF98EB850A9819DC3447D918FC18090C, /*hidden argument*/NULL);
if ((((int32_t)L_48) < ((int32_t)0)))
{
goto IL_015e;
}
}
{
String_t* L_49 = V_1;
int32_t L_50 = String_CompareOrdinal_m172D84EDDE0823F53EAB60857C07EA7F85600068(L_49, _stringLiteral02A1DE7D81235D0F3D7F59638AB990CC581D9A3B, /*hidden argument*/NULL);
if ((((int32_t)L_50) <= ((int32_t)0)))
{
goto IL_020c;
}
}
IL_015e:
{
String_t* L_51 = V_1;
int32_t L_52 = String_CompareOrdinal_m172D84EDDE0823F53EAB60857C07EA7F85600068(L_51, _stringLiteral4AC5B82C2DA6F96723218DFF7504C664E1F80881, /*hidden argument*/NULL);
if ((((int32_t)L_52) < ((int32_t)0)))
{
goto IL_017d;
}
}
{
String_t* L_53 = V_1;
int32_t L_54 = String_CompareOrdinal_m172D84EDDE0823F53EAB60857C07EA7F85600068(L_53, _stringLiteral5768A067F71F301CCE9ED7360D139F45BA6D4727, /*hidden argument*/NULL);
if ((((int32_t)L_54) <= ((int32_t)0)))
{
goto IL_020c;
}
}
IL_017d:
{
String_t* L_55 = V_1;
int32_t L_56 = String_CompareOrdinal_m172D84EDDE0823F53EAB60857C07EA7F85600068(L_55, _stringLiteral3E5093C51691F5F09D01B272E203376795391CF1, /*hidden argument*/NULL);
if ((((int32_t)L_56) < ((int32_t)0)))
{
goto IL_0199;
}
}
{
String_t* L_57 = V_1;
int32_t L_58 = String_CompareOrdinal_m172D84EDDE0823F53EAB60857C07EA7F85600068(L_57, _stringLiteralEB3A4B5CCA54F76C5610D00E036890D02D084AA6, /*hidden argument*/NULL);
if ((((int32_t)L_58) <= ((int32_t)0)))
{
goto IL_020c;
}
}
IL_0199:
{
String_t* L_59 = V_1;
int32_t L_60 = String_CompareOrdinal_m172D84EDDE0823F53EAB60857C07EA7F85600068(L_59, _stringLiteral4E4A483ED626825D63C2302304176521EFF9ECBD, /*hidden argument*/NULL);
if ((((int32_t)L_60) < ((int32_t)0)))
{
goto IL_01b5;
}
}
{
String_t* L_61 = V_1;
int32_t L_62 = String_CompareOrdinal_m172D84EDDE0823F53EAB60857C07EA7F85600068(L_61, _stringLiteralEA702382708DA683ABF93965F8A5B28FEA3E28DE, /*hidden argument*/NULL);
if ((((int32_t)L_62) <= ((int32_t)0)))
{
goto IL_020c;
}
}
IL_01b5:
{
String_t* L_63 = V_1;
int32_t L_64 = String_CompareOrdinal_m172D84EDDE0823F53EAB60857C07EA7F85600068(L_63, _stringLiteral497DA240B99C0C1C3CD67AFDEED37F94AD9AE2D8, /*hidden argument*/NULL);
if ((((int32_t)L_64) < ((int32_t)0)))
{
goto IL_01d1;
}
}
{
String_t* L_65 = V_1;
int32_t L_66 = String_CompareOrdinal_m172D84EDDE0823F53EAB60857C07EA7F85600068(L_65, _stringLiteral25B6294BE206F89D782E1DECFE2B11C7BCF92979, /*hidden argument*/NULL);
if ((((int32_t)L_66) <= ((int32_t)0)))
{
goto IL_020c;
}
}
IL_01d1:
{
bool L_67 = ___isQuery3;
if (!L_67)
{
goto IL_020e;
}
}
{
String_t* L_68 = V_1;
int32_t L_69 = String_CompareOrdinal_m172D84EDDE0823F53EAB60857C07EA7F85600068(L_68, _stringLiteral7A15E3C35643EC9CE81F0D068C0058ED00FE6913, /*hidden argument*/NULL);
if ((((int32_t)L_69) < ((int32_t)0)))
{
goto IL_01f0;
}
}
{
String_t* L_70 = V_1;
int32_t L_71 = String_CompareOrdinal_m172D84EDDE0823F53EAB60857C07EA7F85600068(L_70, _stringLiteralF8A984849A4EAB9B84E59C9F56576501E362F093, /*hidden argument*/NULL);
if ((((int32_t)L_71) <= ((int32_t)0)))
{
goto IL_020c;
}
}
IL_01f0:
{
String_t* L_72 = V_1;
int32_t L_73 = String_CompareOrdinal_m172D84EDDE0823F53EAB60857C07EA7F85600068(L_72, _stringLiteralBDB82E3AC7750DEFC34C5182BAFD1520C70F6BA0, /*hidden argument*/NULL);
if ((((int32_t)L_73) < ((int32_t)0)))
{
goto IL_020e;
}
}
{
String_t* L_74 = V_1;
int32_t L_75 = String_CompareOrdinal_m172D84EDDE0823F53EAB60857C07EA7F85600068(L_74, _stringLiteralFBD638320493F35A0D0672A1D87CDDFCCFB9BADD, /*hidden argument*/NULL);
if ((((int32_t)L_75) > ((int32_t)0)))
{
goto IL_020e;
}
}
IL_020c:
{
V_0 = (bool)1;
}
IL_020e:
{
bool L_76 = V_0;
return L_76;
}
}
// System.Boolean System.IriHelper::CheckIsReserved(System.Char,System.UriComponents)
extern "C" IL2CPP_METHOD_ATTR bool IriHelper_CheckIsReserved_m5C0A35BF0890852A3FC564618DB0836BBB6C0F1C (Il2CppChar ___ch0, int32_t ___component1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IriHelper_CheckIsReserved_m5C0A35BF0890852A3FC564618DB0836BBB6C0F1C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___component1;
if ((((int32_t)L_0) == ((int32_t)1)))
{
goto IL_002b;
}
}
{
int32_t L_1 = ___component1;
if ((((int32_t)L_1) == ((int32_t)2)))
{
goto IL_002b;
}
}
{
int32_t L_2 = ___component1;
if ((((int32_t)L_2) == ((int32_t)4)))
{
goto IL_002b;
}
}
{
int32_t L_3 = ___component1;
if ((((int32_t)L_3) == ((int32_t)8)))
{
goto IL_002b;
}
}
{
int32_t L_4 = ___component1;
if ((((int32_t)L_4) == ((int32_t)((int32_t)16))))
{
goto IL_002b;
}
}
{
int32_t L_5 = ___component1;
if ((((int32_t)L_5) == ((int32_t)((int32_t)32))))
{
goto IL_002b;
}
}
{
int32_t L_6 = ___component1;
if ((((int32_t)L_6) == ((int32_t)((int32_t)64))))
{
goto IL_002b;
}
}
{
int32_t L_7 = ___component1;
if (!L_7)
{
goto IL_0024;
}
}
{
return (bool)0;
}
IL_0024:
{
Il2CppChar L_8 = ___ch0;
IL2CPP_RUNTIME_CLASS_INIT(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_il2cpp_TypeInfo_var);
bool L_9 = Uri_IsGenDelim_m376CCA5D00D019A69FD746C57D236A54EB9D3CF3(L_8, /*hidden argument*/NULL);
return L_9;
}
IL_002b:
{
int32_t L_10 = ___component1;
if ((((int32_t)L_10) > ((int32_t)4)))
{
goto IL_003c;
}
}
{
int32_t L_11 = ___component1;
if ((((int32_t)L_11) == ((int32_t)2)))
{
goto IL_0050;
}
}
{
int32_t L_12 = ___component1;
if ((((int32_t)L_12) == ((int32_t)4)))
{
goto IL_0070;
}
}
{
goto IL_00d2;
}
IL_003c:
{
int32_t L_13 = ___component1;
if ((((int32_t)L_13) == ((int32_t)((int32_t)16))))
{
goto IL_0095;
}
}
{
int32_t L_14 = ___component1;
if ((((int32_t)L_14) == ((int32_t)((int32_t)32))))
{
goto IL_00b0;
}
}
{
int32_t L_15 = ___component1;
if ((((int32_t)L_15) == ((int32_t)((int32_t)64))))
{
goto IL_00c1;
}
}
{
goto IL_00d2;
}
IL_0050:
{
Il2CppChar L_16 = ___ch0;
if ((((int32_t)L_16) == ((int32_t)((int32_t)47))))
{
goto IL_006e;
}
}
{
Il2CppChar L_17 = ___ch0;
if ((((int32_t)L_17) == ((int32_t)((int32_t)63))))
{
goto IL_006e;
}
}
{
Il2CppChar L_18 = ___ch0;
if ((((int32_t)L_18) == ((int32_t)((int32_t)35))))
{
goto IL_006e;
}
}
{
Il2CppChar L_19 = ___ch0;
if ((((int32_t)L_19) == ((int32_t)((int32_t)91))))
{
goto IL_006e;
}
}
{
Il2CppChar L_20 = ___ch0;
if ((((int32_t)L_20) == ((int32_t)((int32_t)93))))
{
goto IL_006e;
}
}
{
Il2CppChar L_21 = ___ch0;
if ((!(((uint32_t)L_21) == ((uint32_t)((int32_t)64)))))
{
goto IL_00d2;
}
}
IL_006e:
{
return (bool)1;
}
IL_0070:
{
Il2CppChar L_22 = ___ch0;
if ((((int32_t)L_22) == ((int32_t)((int32_t)58))))
{
goto IL_0093;
}
}
{
Il2CppChar L_23 = ___ch0;
if ((((int32_t)L_23) == ((int32_t)((int32_t)47))))
{
goto IL_0093;
}
}
{
Il2CppChar L_24 = ___ch0;
if ((((int32_t)L_24) == ((int32_t)((int32_t)63))))
{
goto IL_0093;
}
}
{
Il2CppChar L_25 = ___ch0;
if ((((int32_t)L_25) == ((int32_t)((int32_t)35))))
{
goto IL_0093;
}
}
{
Il2CppChar L_26 = ___ch0;
if ((((int32_t)L_26) == ((int32_t)((int32_t)91))))
{
goto IL_0093;
}
}
{
Il2CppChar L_27 = ___ch0;
if ((((int32_t)L_27) == ((int32_t)((int32_t)93))))
{
goto IL_0093;
}
}
{
Il2CppChar L_28 = ___ch0;
if ((!(((uint32_t)L_28) == ((uint32_t)((int32_t)64)))))
{
goto IL_00d2;
}
}
IL_0093:
{
return (bool)1;
}
IL_0095:
{
Il2CppChar L_29 = ___ch0;
if ((((int32_t)L_29) == ((int32_t)((int32_t)47))))
{
goto IL_00ae;
}
}
{
Il2CppChar L_30 = ___ch0;
if ((((int32_t)L_30) == ((int32_t)((int32_t)63))))
{
goto IL_00ae;
}
}
{
Il2CppChar L_31 = ___ch0;
if ((((int32_t)L_31) == ((int32_t)((int32_t)35))))
{
goto IL_00ae;
}
}
{
Il2CppChar L_32 = ___ch0;
if ((((int32_t)L_32) == ((int32_t)((int32_t)91))))
{
goto IL_00ae;
}
}
{
Il2CppChar L_33 = ___ch0;
if ((!(((uint32_t)L_33) == ((uint32_t)((int32_t)93)))))
{
goto IL_00d2;
}
}
IL_00ae:
{
return (bool)1;
}
IL_00b0:
{
Il2CppChar L_34 = ___ch0;
if ((((int32_t)L_34) == ((int32_t)((int32_t)35))))
{
goto IL_00bf;
}
}
{
Il2CppChar L_35 = ___ch0;
if ((((int32_t)L_35) == ((int32_t)((int32_t)91))))
{
goto IL_00bf;
}
}
{
Il2CppChar L_36 = ___ch0;
if ((!(((uint32_t)L_36) == ((uint32_t)((int32_t)93)))))
{
goto IL_00d2;
}
}
IL_00bf:
{
return (bool)1;
}
IL_00c1:
{
Il2CppChar L_37 = ___ch0;
if ((((int32_t)L_37) == ((int32_t)((int32_t)35))))
{
goto IL_00d0;
}
}
{
Il2CppChar L_38 = ___ch0;
if ((((int32_t)L_38) == ((int32_t)((int32_t)91))))
{
goto IL_00d0;
}
}
{
Il2CppChar L_39 = ___ch0;
if ((!(((uint32_t)L_39) == ((uint32_t)((int32_t)93)))))
{
goto IL_00d2;
}
}
IL_00d0:
{
return (bool)1;
}
IL_00d2:
{
return (bool)0;
}
}
// System.String System.IriHelper::EscapeUnescapeIri(System.Char*,System.Int32,System.Int32,System.UriComponents)
extern "C" IL2CPP_METHOD_ATTR String_t* IriHelper_EscapeUnescapeIri_m6DE347247CE35DB4CE3129BEC2179F0095D69239 (Il2CppChar* ___pInput0, int32_t ___start1, int32_t ___end2, int32_t ___component3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IriHelper_EscapeUnescapeIri_m6DE347247CE35DB4CE3129BEC2179F0095D69239_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* V_0 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_1 = NULL;
GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 V_2;
memset(&V_2, 0, sizeof(V_2));
Il2CppChar* V_3 = NULL;
int32_t V_4 = 0;
int32_t V_5 = 0;
int32_t V_6 = 0;
Il2CppChar V_7 = 0x0;
bool V_8 = false;
bool V_9 = false;
int32_t V_10 = 0;
int32_t V_11 = 0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* V_12 = NULL;
int32_t V_13 = 0;
int32_t V_14 = 0;
Il2CppChar V_15 = 0x0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_16 = NULL;
Il2CppChar* V_17 = NULL;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* V_18 = NULL;
uint8_t* V_19 = NULL;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_20 = NULL;
int32_t V_21 = 0;
int32_t V_22 = 0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* G_B40_0 = NULL;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* G_B39_0 = NULL;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* G_B41_0 = NULL;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* G_B42_0 = NULL;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* G_B44_0 = NULL;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* G_B43_0 = NULL;
Il2CppChar* G_B51_0 = NULL;
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * G_B51_1 = NULL;
Il2CppChar* G_B50_0 = NULL;
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * G_B50_1 = NULL;
int32_t G_B52_0 = 0;
Il2CppChar* G_B52_1 = NULL;
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * G_B52_2 = NULL;
{
int32_t L_0 = ___end2;
int32_t L_1 = ___start1;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_2 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_0, (int32_t)L_1)));
V_0 = L_2;
V_1 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_3 = V_0;
GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 L_4 = GCHandle_Alloc_m30DAF14F75E3A692C594965CE6724E2454DE9A2E((RuntimeObject *)(RuntimeObject *)L_3, 3, /*hidden argument*/NULL);
V_2 = L_4;
intptr_t L_5 = GCHandle_AddrOfPinnedObject_mA20090CB8274F28D087A6E8AD36D3230B6741EA5((GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 *)(&V_2), /*hidden argument*/NULL);
void* L_6 = IntPtr_op_Explicit_mB8A512095BCE1A23B2840310C8A27C928ADAD027((intptr_t)L_5, /*hidden argument*/NULL);
V_3 = (Il2CppChar*)L_6;
V_4 = 0;
int32_t L_7 = ___start1;
V_5 = L_7;
V_6 = 0;
V_8 = (bool)0;
V_9 = (bool)0;
goto IL_03cb;
}
IL_0034:
{
V_8 = (bool)0;
V_9 = (bool)0;
Il2CppChar* L_8 = ___pInput0;
int32_t L_9 = V_5;
int32_t L_10 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_8, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_9)), (int32_t)2)))));
int32_t L_11 = L_10;
V_7 = L_11;
if ((!(((uint32_t)L_11) == ((uint32_t)((int32_t)37)))))
{
goto IL_022f;
}
}
{
int32_t L_12 = V_5;
int32_t L_13 = ___end2;
if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)2))) >= ((int32_t)L_13)))
{
goto IL_0215;
}
}
{
Il2CppChar* L_14 = ___pInput0;
int32_t L_15 = V_5;
int32_t L_16 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_14, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)))), (int32_t)2)))));
Il2CppChar* L_17 = ___pInput0;
int32_t L_18 = V_5;
int32_t L_19 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_17, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)2)))), (int32_t)2)))));
IL2CPP_RUNTIME_CLASS_INIT(UriHelper_tA44F3057604BAA4E6EF06A8EE4E6825D471592DF_il2cpp_TypeInfo_var);
Il2CppChar L_20 = UriHelper_EscapedAscii_m06D556717795E649EBBB30E4CBCF3D221C1FEB78(L_16, L_19, /*hidden argument*/NULL);
V_7 = L_20;
Il2CppChar L_21 = V_7;
if ((((int32_t)L_21) == ((int32_t)((int32_t)65535))))
{
goto IL_0093;
}
}
{
Il2CppChar L_22 = V_7;
if ((((int32_t)L_22) == ((int32_t)((int32_t)37))))
{
goto IL_0093;
}
}
{
Il2CppChar L_23 = V_7;
int32_t L_24 = ___component3;
bool L_25 = IriHelper_CheckIsReserved_m5C0A35BF0890852A3FC564618DB0836BBB6C0F1C(L_23, L_24, /*hidden argument*/NULL);
if (L_25)
{
goto IL_0093;
}
}
{
Il2CppChar L_26 = V_7;
IL2CPP_RUNTIME_CLASS_INIT(UriHelper_tA44F3057604BAA4E6EF06A8EE4E6825D471592DF_il2cpp_TypeInfo_var);
bool L_27 = UriHelper_IsNotSafeForUnescape_m1D0461E7C5A3CFBD7A2A7F7322B66BC68CCE741D(L_26, /*hidden argument*/NULL);
if (!L_27)
{
goto IL_00e1;
}
}
IL_0093:
{
Il2CppChar* L_28 = V_3;
int32_t L_29 = V_6;
int32_t L_30 = L_29;
V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_30, (int32_t)1));
Il2CppChar* L_31 = ___pInput0;
int32_t L_32 = V_5;
int32_t L_33 = L_32;
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)1));
int32_t L_34 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_31, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_33)), (int32_t)2)))));
*((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_28, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_30)), (int32_t)2))))) = (int16_t)L_34;
Il2CppChar* L_35 = V_3;
int32_t L_36 = V_6;
int32_t L_37 = L_36;
V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_37, (int32_t)1));
Il2CppChar* L_38 = ___pInput0;
int32_t L_39 = V_5;
int32_t L_40 = L_39;
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_40, (int32_t)1));
int32_t L_41 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_38, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_40)), (int32_t)2)))));
*((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_35, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_37)), (int32_t)2))))) = (int16_t)L_41;
Il2CppChar* L_42 = V_3;
int32_t L_43 = V_6;
int32_t L_44 = L_43;
V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_44, (int32_t)1));
Il2CppChar* L_45 = ___pInput0;
int32_t L_46 = V_5;
int32_t L_47 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_45, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_46)), (int32_t)2)))));
*((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_42, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_44)), (int32_t)2))))) = (int16_t)L_47;
goto IL_03c5;
}
IL_00e1:
{
Il2CppChar L_48 = V_7;
if ((((int32_t)L_48) > ((int32_t)((int32_t)127))))
{
goto IL_0101;
}
}
{
Il2CppChar* L_49 = V_3;
int32_t L_50 = V_6;
int32_t L_51 = L_50;
V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_51, (int32_t)1));
Il2CppChar L_52 = V_7;
*((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_49, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_51)), (int32_t)2))))) = (int16_t)L_52;
int32_t L_53 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_53, (int32_t)2));
goto IL_03c5;
}
IL_0101:
{
int32_t L_54 = V_5;
V_10 = L_54;
V_11 = 1;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_55 = V_1;
if (L_55)
{
goto IL_0115;
}
}
{
int32_t L_56 = ___end2;
int32_t L_57 = V_5;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_58 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_56, (int32_t)L_57)));
V_1 = L_58;
}
IL_0115:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_59 = V_1;
Il2CppChar L_60 = V_7;
NullCheck(L_59);
(L_59)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)(((int32_t)((uint8_t)L_60))));
int32_t L_61 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_61, (int32_t)3));
goto IL_0178;
}
IL_0123:
{
Il2CppChar* L_62 = ___pInput0;
int32_t L_63 = V_5;
int32_t L_64 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_62, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_63)), (int32_t)2)))));
int32_t L_65 = L_64;
V_7 = L_65;
if ((!(((uint32_t)L_65) == ((uint32_t)((int32_t)37)))))
{
goto IL_017d;
}
}
{
int32_t L_66 = V_5;
int32_t L_67 = ___end2;
if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_66, (int32_t)2))) >= ((int32_t)L_67)))
{
goto IL_017d;
}
}
{
Il2CppChar* L_68 = ___pInput0;
int32_t L_69 = V_5;
int32_t L_70 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_68, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_69, (int32_t)1)))), (int32_t)2)))));
Il2CppChar* L_71 = ___pInput0;
int32_t L_72 = V_5;
int32_t L_73 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_71, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_72, (int32_t)2)))), (int32_t)2)))));
IL2CPP_RUNTIME_CLASS_INIT(UriHelper_tA44F3057604BAA4E6EF06A8EE4E6825D471592DF_il2cpp_TypeInfo_var);
Il2CppChar L_74 = UriHelper_EscapedAscii_m06D556717795E649EBBB30E4CBCF3D221C1FEB78(L_70, L_73, /*hidden argument*/NULL);
V_7 = L_74;
Il2CppChar L_75 = V_7;
if ((((int32_t)L_75) == ((int32_t)((int32_t)65535))))
{
goto IL_017d;
}
}
{
Il2CppChar L_76 = V_7;
if ((((int32_t)L_76) < ((int32_t)((int32_t)128))))
{
goto IL_017d;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_77 = V_1;
int32_t L_78 = V_11;
int32_t L_79 = L_78;
V_11 = ((int32_t)il2cpp_codegen_add((int32_t)L_79, (int32_t)1));
Il2CppChar L_80 = V_7;
NullCheck(L_77);
(L_77)->SetAt(static_cast<il2cpp_array_size_t>(L_79), (uint8_t)(((int32_t)((uint8_t)L_80))));
int32_t L_81 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_81, (int32_t)3));
}
IL_0178:
{
int32_t L_82 = V_5;
int32_t L_83 = ___end2;
if ((((int32_t)L_82) < ((int32_t)L_83)))
{
goto IL_0123;
}
}
IL_017d:
{
int32_t L_84 = V_5;
V_5 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_84, (int32_t)1));
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_85 = Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9(/*hidden argument*/NULL);
NullCheck(L_85);
RuntimeObject * L_86 = VirtFuncInvoker0< RuntimeObject * >::Invoke(8 /* System.Object System.Text.Encoding::Clone() */, L_85);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_87 = ((Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 *)CastclassClass((RuntimeObject*)L_86, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_il2cpp_TypeInfo_var));
EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998 * L_88 = (EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998 *)il2cpp_codegen_object_new(EncoderReplacementFallback_tC2E8A94C82BBF7A4CFC8E3FDBA8A381DCF29F998_il2cpp_TypeInfo_var);
EncoderReplacementFallback__ctor_mAE97C6B5EF9A81A90315A21E68271FAE87A738FD(L_88, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, /*hidden argument*/NULL);
NullCheck(L_87);
Encoding_set_EncoderFallback_m24306F093457AE12D59A36AB84F1E03C840BD10A(L_87, L_88, /*hidden argument*/NULL);
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_89 = L_87;
DecoderReplacementFallback_t8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742 * L_90 = (DecoderReplacementFallback_t8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742 *)il2cpp_codegen_object_new(DecoderReplacementFallback_t8CF74B2DAE2A08AEA7DF6366778D2E3EA75FC742_il2cpp_TypeInfo_var);
DecoderReplacementFallback__ctor_m9D82FC93423AD9B954F28E30B20BF14DAFB01A5B(L_90, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, /*hidden argument*/NULL);
NullCheck(L_89);
Encoding_set_DecoderFallback_mB321EB8D6C34B8935A169C0E4FAC7A4E0A99FACC(L_89, L_90, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_91 = V_1;
NullCheck(L_91);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_92 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_91)->max_length)))));
V_12 = L_92;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_93 = V_1;
int32_t L_94 = V_11;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_95 = V_12;
NullCheck(L_89);
int32_t L_96 = VirtFuncInvoker5< int32_t, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*, int32_t >::Invoke(23 /* System.Int32 System.Text.Encoding::GetChars(System.Byte[],System.Int32,System.Int32,System.Char[],System.Int32) */, L_89, L_93, 0, L_94, L_95, 0);
V_13 = L_96;
int32_t L_97 = V_13;
if (!L_97)
{
goto IL_01e9;
}
}
{
Il2CppChar* L_98 = V_3;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_99 = V_0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_100 = V_12;
int32_t L_101 = V_13;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_102 = V_1;
int32_t L_103 = V_11;
int32_t L_104 = ___component3;
IL2CPP_RUNTIME_CLASS_INIT(UriHelper_tA44F3057604BAA4E6EF06A8EE4E6825D471592DF_il2cpp_TypeInfo_var);
UriHelper_MatchUTF8Sequence_m4835D9BB77C2701643B14D6FFD3D7057F8C9007F((Il2CppChar*)(Il2CppChar*)L_98, L_99, (int32_t*)(&V_6), L_100, L_101, L_102, L_103, (bool)((((int32_t)L_104) == ((int32_t)((int32_t)32)))? 1 : 0), (bool)1, /*hidden argument*/NULL);
goto IL_02e6;
}
IL_01e9:
{
int32_t L_105 = V_10;
V_14 = L_105;
goto IL_020a;
}
IL_01ef:
{
Il2CppChar* L_106 = V_3;
int32_t L_107 = V_6;
int32_t L_108 = L_107;
V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_108, (int32_t)1));
Il2CppChar* L_109 = ___pInput0;
int32_t L_110 = V_14;
int32_t L_111 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_109, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_110)), (int32_t)2)))));
*((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_106, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_108)), (int32_t)2))))) = (int16_t)L_111;
int32_t L_112 = V_14;
V_14 = ((int32_t)il2cpp_codegen_add((int32_t)L_112, (int32_t)1));
}
IL_020a:
{
int32_t L_113 = V_14;
int32_t L_114 = V_5;
if ((((int32_t)L_113) <= ((int32_t)L_114)))
{
goto IL_01ef;
}
}
{
goto IL_02e6;
}
IL_0215:
{
Il2CppChar* L_115 = V_3;
int32_t L_116 = V_6;
int32_t L_117 = L_116;
V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_117, (int32_t)1));
Il2CppChar* L_118 = ___pInput0;
int32_t L_119 = V_5;
int32_t L_120 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_118, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_119)), (int32_t)2)))));
*((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_115, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_117)), (int32_t)2))))) = (int16_t)L_120;
goto IL_02e6;
}
IL_022f:
{
Il2CppChar L_121 = V_7;
if ((((int32_t)L_121) <= ((int32_t)((int32_t)127))))
{
goto IL_02d1;
}
}
{
Il2CppChar L_122 = V_7;
IL2CPP_RUNTIME_CLASS_INIT(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var);
bool L_123 = Char_IsHighSurrogate_m64C60C09A8561520E43C8527D3DC38FF97E6274D(L_122, /*hidden argument*/NULL);
if (!L_123)
{
goto IL_029e;
}
}
{
int32_t L_124 = V_5;
int32_t L_125 = ___end2;
if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_124, (int32_t)1))) >= ((int32_t)L_125)))
{
goto IL_029e;
}
}
{
Il2CppChar* L_126 = ___pInput0;
int32_t L_127 = V_5;
int32_t L_128 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_126, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)((int32_t)il2cpp_codegen_add((int32_t)L_127, (int32_t)1)))), (int32_t)2)))));
V_15 = L_128;
Il2CppChar L_129 = V_7;
Il2CppChar L_130 = V_15;
int32_t L_131 = ___component3;
bool L_132 = IriHelper_CheckIriUnicodeRange_m5ED29083C22062AEAB8B5787C9A27CFEEC397AD9(L_129, L_130, (bool*)(&V_9), (bool)((((int32_t)L_131) == ((int32_t)((int32_t)32)))? 1 : 0), /*hidden argument*/NULL);
V_8 = (bool)((((int32_t)L_132) == ((int32_t)0))? 1 : 0);
bool L_133 = V_8;
if (L_133)
{
goto IL_02e6;
}
}
{
Il2CppChar* L_134 = V_3;
int32_t L_135 = V_6;
int32_t L_136 = L_135;
V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_136, (int32_t)1));
Il2CppChar* L_137 = ___pInput0;
int32_t L_138 = V_5;
int32_t L_139 = L_138;
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_139, (int32_t)1));
int32_t L_140 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_137, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_139)), (int32_t)2)))));
*((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_134, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_136)), (int32_t)2))))) = (int16_t)L_140;
Il2CppChar* L_141 = V_3;
int32_t L_142 = V_6;
int32_t L_143 = L_142;
V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_143, (int32_t)1));
Il2CppChar* L_144 = ___pInput0;
int32_t L_145 = V_5;
int32_t L_146 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_144, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_145)), (int32_t)2)))));
*((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_141, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_143)), (int32_t)2))))) = (int16_t)L_146;
goto IL_02e6;
}
IL_029e:
{
Il2CppChar L_147 = V_7;
int32_t L_148 = ___component3;
bool L_149 = IriHelper_CheckIriUnicodeRange_mA9BAAD6D244ADEE8986FDC0DFB3DFDA90C093A6C(L_147, (bool)((((int32_t)L_148) == ((int32_t)((int32_t)32)))? 1 : 0), /*hidden argument*/NULL);
if (!L_149)
{
goto IL_02cc;
}
}
{
Il2CppChar L_150 = V_7;
IL2CPP_RUNTIME_CLASS_INIT(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_il2cpp_TypeInfo_var);
bool L_151 = Uri_IsBidiControlCharacter_mB14EA5816A434B7CE382EB9ACBD1432916EC341D(L_150, /*hidden argument*/NULL);
if (L_151)
{
goto IL_02e6;
}
}
{
Il2CppChar* L_152 = V_3;
int32_t L_153 = V_6;
int32_t L_154 = L_153;
V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_154, (int32_t)1));
Il2CppChar* L_155 = ___pInput0;
int32_t L_156 = V_5;
int32_t L_157 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_155, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_156)), (int32_t)2)))));
*((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_152, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_154)), (int32_t)2))))) = (int16_t)L_157;
goto IL_02e6;
}
IL_02cc:
{
V_8 = (bool)1;
goto IL_02e6;
}
IL_02d1:
{
Il2CppChar* L_158 = V_3;
int32_t L_159 = V_6;
int32_t L_160 = L_159;
V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_160, (int32_t)1));
Il2CppChar* L_161 = ___pInput0;
int32_t L_162 = V_5;
int32_t L_163 = *((uint16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_161, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_162)), (int32_t)2)))));
*((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_158, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_160)), (int32_t)2))))) = (int16_t)L_163;
}
IL_02e6:
{
bool L_164 = V_8;
if (!L_164)
{
goto IL_03c5;
}
}
{
int32_t L_165 = V_4;
if ((((int32_t)L_165) >= ((int32_t)((int32_t)12))))
{
goto IL_0357;
}
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_166 = V_0;
NullCheck(L_166);
if (((int64_t)(((int32_t)((int32_t)(((RuntimeArray *)L_166)->max_length)))) + (int64_t)((int32_t)90) < (int64_t)kIl2CppInt32Min) || ((int64_t)(((int32_t)((int32_t)(((RuntimeArray *)L_166)->max_length)))) + (int64_t)((int32_t)90) > (int64_t)kIl2CppInt32Max))
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, IriHelper_EscapeUnescapeIri_m6DE347247CE35DB4CE3129BEC2179F0095D69239_RuntimeMethod_var);
int32_t L_167 = V_4;
if (((int64_t)L_167 + (int64_t)((int32_t)90) < (int64_t)kIl2CppInt32Min) || ((int64_t)L_167 + (int64_t)((int32_t)90) > (int64_t)kIl2CppInt32Max))
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), NULL, IriHelper_EscapeUnescapeIri_m6DE347247CE35DB4CE3129BEC2179F0095D69239_RuntimeMethod_var);
V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_167, (int32_t)((int32_t)90)));
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_168 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_166)->max_length)))), (int32_t)((int32_t)90))));
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_169 = L_168;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_170 = L_169;
V_18 = L_170;
G_B39_0 = L_169;
if (!L_170)
{
G_B40_0 = L_169;
goto IL_0311;
}
}
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_171 = V_18;
NullCheck(L_171);
G_B40_0 = G_B39_0;
if ((((int32_t)((int32_t)(((RuntimeArray *)L_171)->max_length)))))
{
G_B41_0 = G_B39_0;
goto IL_0317;
}
}
IL_0311:
{
V_17 = (Il2CppChar*)(((uintptr_t)0));
G_B42_0 = G_B40_0;
goto IL_0322;
}
IL_0317:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_172 = V_18;
NullCheck(L_172);
V_17 = (Il2CppChar*)(((uintptr_t)((L_172)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))));
G_B42_0 = G_B41_0;
}
IL_0322:
{
Il2CppChar* L_173 = V_17;
Il2CppChar* L_174 = V_3;
int32_t L_175 = V_6;
Buffer_Memcpy_m4D475106A101E5ED38EB22776EAAFB6D02F63678((uint8_t*)(uint8_t*)L_173, (uint8_t*)(uint8_t*)L_174, ((int32_t)il2cpp_codegen_multiply((int32_t)L_175, (int32_t)2)), /*hidden argument*/NULL);
V_18 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)NULL;
bool L_176 = GCHandle_get_IsAllocated_m91323BCB568B1150F90515EF862B00F193E77808((GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 *)(&V_2), /*hidden argument*/NULL);
G_B43_0 = G_B42_0;
if (!L_176)
{
G_B44_0 = G_B42_0;
goto IL_0341;
}
}
{
GCHandle_Free_m392ECC9B1058E35A0FD5CF21A65F212873FC26F0((GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 *)(&V_2), /*hidden argument*/NULL);
G_B44_0 = G_B43_0;
}
IL_0341:
{
V_0 = G_B44_0;
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_177 = V_0;
GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 L_178 = GCHandle_Alloc_m30DAF14F75E3A692C594965CE6724E2454DE9A2E((RuntimeObject *)(RuntimeObject *)L_177, 3, /*hidden argument*/NULL);
V_2 = L_178;
intptr_t L_179 = GCHandle_AddrOfPinnedObject_mA20090CB8274F28D087A6E8AD36D3230B6741EA5((GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 *)(&V_2), /*hidden argument*/NULL);
void* L_180 = IntPtr_op_Explicit_mB8A512095BCE1A23B2840310C8A27C928ADAD027((intptr_t)L_179, /*hidden argument*/NULL);
V_3 = (Il2CppChar*)L_180;
}
IL_0357:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_181 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)4);
V_16 = L_181;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_182 = V_16;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_183 = L_182;
V_20 = L_183;
if (!L_183)
{
goto IL_036c;
}
}
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_184 = V_20;
NullCheck(L_184);
if ((((int32_t)((int32_t)(((RuntimeArray *)L_184)->max_length)))))
{
goto IL_0372;
}
}
IL_036c:
{
V_19 = (uint8_t*)(((uintptr_t)0));
goto IL_037d;
}
IL_0372:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_185 = V_20;
NullCheck(L_185);
V_19 = (uint8_t*)(((uintptr_t)((L_185)->GetAddressAt(static_cast<il2cpp_array_size_t>(0)))));
}
IL_037d:
{
Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_186 = Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9(/*hidden argument*/NULL);
Il2CppChar* L_187 = ___pInput0;
int32_t L_188 = V_5;
bool L_189 = V_9;
G_B50_0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_187, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_188)), (int32_t)2))));
G_B50_1 = L_186;
if (L_189)
{
G_B51_0 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_187, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_188)), (int32_t)2))));
G_B51_1 = L_186;
goto IL_0390;
}
}
{
G_B52_0 = 1;
G_B52_1 = G_B50_0;
G_B52_2 = G_B50_1;
goto IL_0391;
}
IL_0390:
{
G_B52_0 = 2;
G_B52_1 = G_B51_0;
G_B52_2 = G_B51_1;
}
IL_0391:
{
uint8_t* L_190 = V_19;
NullCheck(G_B52_2);
int32_t L_191 = VirtFuncInvoker4< int32_t, Il2CppChar*, int32_t, uint8_t*, int32_t >::Invoke(18 /* System.Int32 System.Text.Encoding::GetBytes(System.Char*,System.Int32,System.Byte*,System.Int32) */, G_B52_2, (Il2CppChar*)(Il2CppChar*)G_B52_1, G_B52_0, (uint8_t*)(uint8_t*)L_190, 4);
V_21 = L_191;
int32_t L_192 = V_4;
int32_t L_193 = V_21;
V_4 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_192, (int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_193, (int32_t)3))));
V_22 = 0;
goto IL_03bc;
}
IL_03a9:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_194 = V_16;
int32_t L_195 = V_22;
NullCheck(L_194);
int32_t L_196 = L_195;
uint8_t L_197 = (L_194)->GetAt(static_cast<il2cpp_array_size_t>(L_196));
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_198 = V_0;
IL2CPP_RUNTIME_CLASS_INIT(UriHelper_tA44F3057604BAA4E6EF06A8EE4E6825D471592DF_il2cpp_TypeInfo_var);
UriHelper_EscapeAsciiChar_mFD7DE796BD53CBD2B1E73080FE0346D37F358902(L_197, L_198, (int32_t*)(&V_6), /*hidden argument*/NULL);
int32_t L_199 = V_22;
V_22 = ((int32_t)il2cpp_codegen_add((int32_t)L_199, (int32_t)1));
}
IL_03bc:
{
int32_t L_200 = V_22;
int32_t L_201 = V_21;
if ((((int32_t)L_200) < ((int32_t)L_201)))
{
goto IL_03a9;
}
}
{
V_20 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL;
}
IL_03c5:
{
int32_t L_202 = V_5;
V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_202, (int32_t)1));
}
IL_03cb:
{
int32_t L_203 = V_5;
int32_t L_204 = ___end2;
if ((((int32_t)L_203) < ((int32_t)L_204)))
{
goto IL_0034;
}
}
{
bool L_205 = GCHandle_get_IsAllocated_m91323BCB568B1150F90515EF862B00F193E77808((GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 *)(&V_2), /*hidden argument*/NULL);
if (!L_205)
{
goto IL_03e3;
}
}
{
GCHandle_Free_m392ECC9B1058E35A0FD5CF21A65F212873FC26F0((GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 *)(&V_2), /*hidden argument*/NULL);
}
IL_03e3:
{
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_206 = V_0;
int32_t L_207 = V_6;
String_t* L_208 = String_CreateString_mC7FB167C0D5B97F7EF502AF54399C61DD5B87509(NULL, L_206, 0, L_207, /*hidden argument*/NULL);
return L_208;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Net.Configuration.BypassElementCollection::.ctor()
extern "C" IL2CPP_METHOD_ATTR void BypassElementCollection__ctor_m867AF1FE6DBB2768AA199F45039C3E2641A9627A (BypassElementCollection_t5CCE032F76311FCEFC3128DA5A88D25568A234A7 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (BypassElementCollection__ctor_m867AF1FE6DBB2768AA199F45039C3E2641A9627A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_raise_profile_exception(BypassElementCollection__ctor_m867AF1FE6DBB2768AA199F45039C3E2641A9627A_RuntimeMethod_var);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Net.Configuration.ConnectionManagementElementCollection::.ctor()
extern "C" IL2CPP_METHOD_ATTR void ConnectionManagementElementCollection__ctor_mA29AB3A62411F032C5EF86B16E7633A386000C7B (ConnectionManagementElementCollection_t83F843AEC2D2354836CC863E346FE2ECFEED2572 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ConnectionManagementElementCollection__ctor_mA29AB3A62411F032C5EF86B16E7633A386000C7B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_raise_profile_exception(ConnectionManagementElementCollection__ctor_mA29AB3A62411F032C5EF86B16E7633A386000C7B_RuntimeMethod_var);
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.Net.Configuration.ConnectionManagementSection::.ctor()
extern "C" IL2CPP_METHOD_ATTR void ConnectionManagementSection__ctor_m1112C1BE1A9466BBCDD5C2ED20E80CDE03B46CA4 (ConnectionManagementSection_tA88F9BAD144E401AB524A9579B50050140592447 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ConnectionManagementSection__ctor_m1112C1BE1A9466BBCDD5C2ED20E80CDE03B46CA4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_raise_profile_exception(ConnectionManagementSection__ctor_m1112C1BE1A9466BBCDD5C2ED20E80CDE03B46CA4_RuntimeMethod_var);
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.Net.Configuration.DefaultProxySection::.ctor()
extern "C" IL2CPP_METHOD_ATTR void DefaultProxySection__ctor_m41EADE87065B61EDF32F67D2E62F04946886DAF6 (DefaultProxySection_tB752851846FC0CEBA83C36C2BF6553211029AA3B * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (DefaultProxySection__ctor_m41EADE87065B61EDF32F67D2E62F04946886DAF6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_raise_profile_exception(DefaultProxySection__ctor_m41EADE87065B61EDF32F67D2E62F04946886DAF6_RuntimeMethod_var);
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.Net.Configuration.HttpWebRequestElement::.ctor()
extern "C" IL2CPP_METHOD_ATTR void HttpWebRequestElement__ctor_mE3A4CA43FCC72E10B6C7B4920F429C028765E233 (HttpWebRequestElement_t3E2FC0EB83C362CC92300949AF90A0B0BE01EA3D * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (HttpWebRequestElement__ctor_mE3A4CA43FCC72E10B6C7B4920F429C028765E233_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_raise_profile_exception(HttpWebRequestElement__ctor_mE3A4CA43FCC72E10B6C7B4920F429C028765E233_RuntimeMethod_var);
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.Net.Configuration.Ipv6Element::.ctor()
extern "C" IL2CPP_METHOD_ATTR void Ipv6Element__ctor_m3F7DF39E6E51517E1429BAE43FA782BF3AF17965 (Ipv6Element_tCA869DC79FE3740DBDECC47877F1676294DB4A23 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Ipv6Element__ctor_m3F7DF39E6E51517E1429BAE43FA782BF3AF17965_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_raise_profile_exception(Ipv6Element__ctor_m3F7DF39E6E51517E1429BAE43FA782BF3AF17965_RuntimeMethod_var);
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.Net.Configuration.NetSectionGroup::.ctor()
extern "C" IL2CPP_METHOD_ATTR void NetSectionGroup__ctor_m566D7C9466957BCE3B8FE2D0EA2582CC2F95F269 (NetSectionGroup_tA4ACD82AFE8B5C11E509FA8623D554BB5B4DB591 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (NetSectionGroup__ctor_m566D7C9466957BCE3B8FE2D0EA2582CC2F95F269_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_raise_profile_exception(NetSectionGroup__ctor_m566D7C9466957BCE3B8FE2D0EA2582CC2F95F269_RuntimeMethod_var);
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.Net.Configuration.PerformanceCountersElement::.ctor()
extern "C" IL2CPP_METHOD_ATTR void PerformanceCountersElement__ctor_m5A090222699B48BEB5FCC743198613FA8D081083 (PerformanceCountersElement_tCE4CFF0A3503E44D7B8EC6E85FD3C50EB1A1B570 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (PerformanceCountersElement__ctor_m5A090222699B48BEB5FCC743198613FA8D081083_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_raise_profile_exception(PerformanceCountersElement__ctor_m5A090222699B48BEB5FCC743198613FA8D081083_RuntimeMethod_var);
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.Net.Configuration.ProxyElement::.ctor()
extern "C" IL2CPP_METHOD_ATTR void ProxyElement__ctor_mAFD852231DF0231726E41911409CB2725BE990AC (ProxyElement_tBD5D75620576BA5BB5521C11D09E0A6E996F9449 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ProxyElement__ctor_mAFD852231DF0231726E41911409CB2725BE990AC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_raise_profile_exception(ProxyElement__ctor_mAFD852231DF0231726E41911409CB2725BE990AC_RuntimeMethod_var);
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.Net.Configuration.ServicePointManagerElement::.ctor()
extern "C" IL2CPP_METHOD_ATTR void ServicePointManagerElement__ctor_m61B031714F8498D467B5A0958EE62F73E0C58EB7 (ServicePointManagerElement_tD8D1491569C963460C14DF4D42ED05DF34428CFC * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ServicePointManagerElement__ctor_m61B031714F8498D467B5A0958EE62F73E0C58EB7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_raise_profile_exception(ServicePointManagerElement__ctor_m61B031714F8498D467B5A0958EE62F73E0C58EB7_RuntimeMethod_var);
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.Net.Configuration.SettingsSection::.ctor()
extern "C" IL2CPP_METHOD_ATTR void SettingsSection__ctor_mC5F3D29EDC94D87B0B0542DE3702795441AC3005 (SettingsSection_t8BECD0EB76F1865B33D072DD368676A8D51840B3 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SettingsSection__ctor_mC5F3D29EDC94D87B0B0542DE3702795441AC3005_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_raise_profile_exception(SettingsSection__ctor_mC5F3D29EDC94D87B0B0542DE3702795441AC3005_RuntimeMethod_var);
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.Net.Configuration.SocketElement::.ctor()
extern "C" IL2CPP_METHOD_ATTR void SocketElement__ctor_m428B7094399223FFB9A5B62BF9D8CEA18A00A4C3 (SocketElement_t32F016077CBED287B80063811E80BCCC7E8B1BF9 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (SocketElement__ctor_m428B7094399223FFB9A5B62BF9D8CEA18A00A4C3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_raise_profile_exception(SocketElement__ctor_m428B7094399223FFB9A5B62BF9D8CEA18A00A4C3_RuntimeMethod_var);
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.Net.Configuration.WebProxyScriptElement::.ctor()
extern "C" IL2CPP_METHOD_ATTR void WebProxyScriptElement__ctor_mC8AF875E80D96B18AA387148009AE1C630D83591 (WebProxyScriptElement_t4302A26A6D4E02146662B30E3452A5167966E6B3 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (WebProxyScriptElement__ctor_mC8AF875E80D96B18AA387148009AE1C630D83591_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_raise_profile_exception(WebProxyScriptElement__ctor_mC8AF875E80D96B18AA387148009AE1C630D83591_RuntimeMethod_var);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void System.Net.Configuration.WebRequestModuleElementCollection::.ctor()
extern "C" IL2CPP_METHOD_ATTR void WebRequestModuleElementCollection__ctor_m8B880B0EAE7CEF1CB79CD264A9B6D62AB6A22961 (WebRequestModuleElementCollection_t2A993B681E96AAF6A96CCB0458F0F0B99BFF51BE * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (WebRequestModuleElementCollection__ctor_m8B880B0EAE7CEF1CB79CD264A9B6D62AB6A22961_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_raise_profile_exception(WebRequestModuleElementCollection__ctor_m8B880B0EAE7CEF1CB79CD264A9B6D62AB6A22961_RuntimeMethod_var);
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.Net.Configuration.WebRequestModulesSection::.ctor()
extern "C" IL2CPP_METHOD_ATTR void WebRequestModulesSection__ctor_m0CAB6F207E3B29D65AEA38A6AC191873E3000F02 (WebRequestModulesSection_t5E031F632797D2C7F0D394BCEE4BD0DF0ECA81BC * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (WebRequestModulesSection__ctor_m0CAB6F207E3B29D65AEA38A6AC191873E3000F02_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
il2cpp_codegen_raise_profile_exception(WebRequestModulesSection__ctor_m0CAB6F207E3B29D65AEA38A6AC191873E3000F02_RuntimeMethod_var);
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.Net.EndPoint::.ctor()
extern "C" IL2CPP_METHOD_ATTR void EndPoint__ctor_mFCD3A4BB994F59D40A3A94A6F1DEC4A731CC8776 (EndPoint_tD87FCEF2780A951E8CE8D808C345FBF2C088D980 * __this, const RuntimeMethod* method)
{
{
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*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 System.Net.IPAddress::.ctor(System.Int64)
extern "C" IL2CPP_METHOD_ATTR void IPAddress__ctor_mFD0AF2F6A282D1158DF3C34EF2E63B73814E7748 (IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE * __this, int64_t ___newAddress0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IPAddress__ctor_mFD0AF2F6A282D1158DF3C34EF2E63B73814E7748_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
__this->set_m_Family_10(2);
UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* L_0 = (UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E*)SZArrayNew(UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E_il2cpp_TypeInfo_var, (uint32_t)8);
__this->set_m_Numbers_11(L_0);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
int64_t L_1 = ___newAddress0;
if ((((int64_t)L_1) < ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_0023;
}
}
{
int64_t L_2 = ___newAddress0;
if ((((int64_t)L_2) <= ((int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)(-1))))))))))
{
goto IL_002e;
}
}
IL_0023:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_3 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_3, _stringLiteralDDB2E1F8117F0FEE60A6A70634647D6FEFBF57BB, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, NULL, IPAddress__ctor_mFD0AF2F6A282D1158DF3C34EF2E63B73814E7748_RuntimeMethod_var);
}
IL_002e:
{
int64_t L_4 = ___newAddress0;
__this->set_m_Address_5(L_4);
return;
}
}
// System.Void System.Net.IPAddress::.ctor(System.Byte[],System.Int64)
extern "C" IL2CPP_METHOD_ATTR void IPAddress__ctor_m373D3930BEEA00EC628E98C5A13AE9BE2B2CEC84 (IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___address0, int64_t ___scopeid1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IPAddress__ctor_m373D3930BEEA00EC628E98C5A13AE9BE2B2CEC84_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
__this->set_m_Family_10(2);
UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* L_0 = (UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E*)SZArrayNew(UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E_il2cpp_TypeInfo_var, (uint32_t)8);
__this->set_m_Numbers_11(L_0);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___address0;
if (L_1)
{
goto IL_0027;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_2 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_2, _stringLiteralC662180230CAD14787D4AB7E77AA08681CE783FA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, IPAddress__ctor_m373D3930BEEA00EC628E98C5A13AE9BE2B2CEC84_RuntimeMethod_var);
}
IL_0027:
{
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = ___address0;
NullCheck(L_3);
if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_3)->max_length))))) == ((int32_t)((int32_t)16))))
{
goto IL_0043;
}
}
{
String_t* L_4 = SR_GetString_m3FC710B15474A9B651DA02B303241B6D8B87E2A7(_stringLiteralAF60BB13CAE4FB7DF464BEF84985F785909AE5A5, /*hidden argument*/NULL);
ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_5 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var);
ArgumentException__ctor_m26DC3463C6F3C98BF33EA39598DD2B32F0249CA8(L_5, L_4, _stringLiteralC662180230CAD14787D4AB7E77AA08681CE783FA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, NULL, IPAddress__ctor_m373D3930BEEA00EC628E98C5A13AE9BE2B2CEC84_RuntimeMethod_var);
}
IL_0043:
{
__this->set_m_Family_10(((int32_t)23));
V_0 = 0;
goto IL_006f;
}
IL_004f:
{
UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* L_6 = __this->get_m_Numbers_11();
int32_t L_7 = V_0;
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = ___address0;
int32_t L_9 = V_0;
NullCheck(L_8);
int32_t L_10 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_9, (int32_t)2));
uint8_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_12 = ___address0;
int32_t L_13 = V_0;
NullCheck(L_12);
int32_t L_14 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_13, (int32_t)2)), (int32_t)1));
uint8_t L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
NullCheck(L_6);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (uint16_t)(((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_11, (int32_t)((int32_t)256))), (int32_t)L_15))))));
int32_t L_16 = V_0;
V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006f:
{
int32_t L_17 = V_0;
if ((((int32_t)L_17) < ((int32_t)8)))
{
goto IL_004f;
}
}
{
int64_t L_18 = ___scopeid1;
if ((((int64_t)L_18) < ((int64_t)(((int64_t)((int64_t)0))))))
{
goto IL_007d;
}
}
{
int64_t L_19 = ___scopeid1;
if ((((int64_t)L_19) <= ((int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)(-1))))))))))
{
goto IL_0088;
}
}
IL_007d:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_20 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_20, _stringLiteral05457DB2EFBDC6E2FF96BA5A97208381A8343AB2, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, NULL, IPAddress__ctor_m373D3930BEEA00EC628E98C5A13AE9BE2B2CEC84_RuntimeMethod_var);
}
IL_0088:
{
int64_t L_21 = ___scopeid1;
__this->set_m_ScopeId_12(L_21);
return;
}
}
// System.Void System.Net.IPAddress::.ctor(System.Int32)
extern "C" IL2CPP_METHOD_ATTR void IPAddress__ctor_mCC321EEDA0750DA97447EB60529BCBCB4EA0249D (IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE * __this, int32_t ___newAddress0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IPAddress__ctor_mCC321EEDA0750DA97447EB60529BCBCB4EA0249D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
__this->set_m_Family_10(2);
UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* L_0 = (UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E*)SZArrayNew(UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E_il2cpp_TypeInfo_var, (uint32_t)8);
__this->set_m_Numbers_11(L_0);
Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL);
int32_t L_1 = ___newAddress0;
__this->set_m_Address_5(((int64_t)((int64_t)(((int64_t)((int64_t)L_1)))&(int64_t)(((int64_t)((uint64_t)(((uint32_t)((uint32_t)(-1))))))))));
return;
}
}
// System.Int64 System.Net.IPAddress::get_ScopeId()
extern "C" IL2CPP_METHOD_ATTR int64_t IPAddress_get_ScopeId_m941461DEBDECCD858F8D3165F3CA366A318064D9 (IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IPAddress_get_ScopeId_m941461DEBDECCD858F8D3165F3CA366A318064D9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = __this->get_m_Family_10();
if ((!(((uint32_t)L_0) == ((uint32_t)2))))
{
goto IL_0014;
}
}
{
SocketException_t75481CF49BCAF5685A5A9E6933909E0B65E7E0A5 * L_1 = (SocketException_t75481CF49BCAF5685A5A9E6933909E0B65E7E0A5 *)il2cpp_codegen_object_new(SocketException_t75481CF49BCAF5685A5A9E6933909E0B65E7E0A5_il2cpp_TypeInfo_var);
SocketException__ctor_m2687C4EFA4D012280C5D19B89D8D01F97B6A2F1A(L_1, ((int32_t)10045), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, IPAddress_get_ScopeId_m941461DEBDECCD858F8D3165F3CA366A318064D9_RuntimeMethod_var);
}
IL_0014:
{
int64_t L_2 = __this->get_m_ScopeId_12();
return L_2;
}
}
// System.String System.Net.IPAddress::ToString()
extern "C" IL2CPP_METHOD_ATTR String_t* IPAddress_ToString_m0CAEDDAF2A42F23EB1BE3BB353ABE741486710BF (IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE * __this, const RuntimeMethod* method)
{
IPv6AddressFormatter_t451290B1C6FD64B6C59F95D99EDB4A9CC703BA90 V_0;
memset(&V_0, 0, sizeof(V_0));
int32_t V_1 = 0;
Il2CppChar* V_2 = NULL;
int32_t V_3 = 0;
{
String_t* L_0 = __this->get_m_ToString_6();
if (L_0)
{
goto IL_0135;
}
}
{
int32_t L_1 = __this->get_m_Family_10();
if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)23)))))
{
goto IL_0040;
}
}
{
UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* L_2 = __this->get_m_Numbers_11();
int64_t L_3 = IPAddress_get_ScopeId_m941461DEBDECCD858F8D3165F3CA366A318064D9(__this, /*hidden argument*/NULL);
IPv6AddressFormatter__ctor_m94725668992E78AA0D75E1C072E8A567E9C34497((IPv6AddressFormatter_t451290B1C6FD64B6C59F95D99EDB4A9CC703BA90 *)(&V_0), L_2, L_3, /*hidden argument*/NULL);
String_t* L_4 = IPv6AddressFormatter_ToString_mBBBF9A3ABB56F52589BD211DD827015066076C8F((IPv6AddressFormatter_t451290B1C6FD64B6C59F95D99EDB4A9CC703BA90 *)(&V_0), /*hidden argument*/NULL);
__this->set_m_ToString_6(L_4);
goto IL_0135;
}
IL_0040:
{
V_1 = ((int32_t)15);
int8_t* L_5 = (int8_t*) alloca((((uintptr_t)((int32_t)30))));
memset(L_5,0,(((uintptr_t)((int32_t)30))));
V_2 = (Il2CppChar*)(L_5);
int64_t L_6 = __this->get_m_Address_5();
V_3 = (((int32_t)((int32_t)((int64_t)((int64_t)((int64_t)((int64_t)L_6>>(int32_t)((int32_t)24)))&(int64_t)(((int64_t)((int64_t)((int32_t)255)))))))));
}
IL_005b:
{
Il2CppChar* L_7 = V_2;
int32_t L_8 = V_1;
int32_t L_9 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)1));
V_1 = L_9;
int32_t L_10 = V_3;
*((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_7, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_9)), (int32_t)2))))) = (int16_t)(((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)48), (int32_t)((int32_t)((int32_t)L_10%(int32_t)((int32_t)10))))))));
int32_t L_11 = V_3;
V_3 = ((int32_t)((int32_t)L_11/(int32_t)((int32_t)10)));
int32_t L_12 = V_3;
if ((((int32_t)L_12) > ((int32_t)0)))
{
goto IL_005b;
}
}
{
Il2CppChar* L_13 = V_2;
int32_t L_14 = V_1;
int32_t L_15 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_14, (int32_t)1));
V_1 = L_15;
*((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_13, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_15)), (int32_t)2))))) = (int16_t)((int32_t)46);
int64_t L_16 = __this->get_m_Address_5();
V_3 = (((int32_t)((int32_t)((int64_t)((int64_t)((int64_t)((int64_t)L_16>>(int32_t)((int32_t)16)))&(int64_t)(((int64_t)((int64_t)((int32_t)255)))))))));
}
IL_0096:
{
Il2CppChar* L_17 = V_2;
int32_t L_18 = V_1;
int32_t L_19 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1));
V_1 = L_19;
int32_t L_20 = V_3;
*((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_17, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_19)), (int32_t)2))))) = (int16_t)(((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)48), (int32_t)((int32_t)((int32_t)L_20%(int32_t)((int32_t)10))))))));
int32_t L_21 = V_3;
V_3 = ((int32_t)((int32_t)L_21/(int32_t)((int32_t)10)));
int32_t L_22 = V_3;
if ((((int32_t)L_22) > ((int32_t)0)))
{
goto IL_0096;
}
}
{
Il2CppChar* L_23 = V_2;
int32_t L_24 = V_1;
int32_t L_25 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_24, (int32_t)1));
V_1 = L_25;
*((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_23, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_25)), (int32_t)2))))) = (int16_t)((int32_t)46);
int64_t L_26 = __this->get_m_Address_5();
V_3 = (((int32_t)((int32_t)((int64_t)((int64_t)((int64_t)((int64_t)L_26>>(int32_t)8))&(int64_t)(((int64_t)((int64_t)((int32_t)255)))))))));
}
IL_00d0:
{
Il2CppChar* L_27 = V_2;
int32_t L_28 = V_1;
int32_t L_29 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_28, (int32_t)1));
V_1 = L_29;
int32_t L_30 = V_3;
*((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_27, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_29)), (int32_t)2))))) = (int16_t)(((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)48), (int32_t)((int32_t)((int32_t)L_30%(int32_t)((int32_t)10))))))));
int32_t L_31 = V_3;
V_3 = ((int32_t)((int32_t)L_31/(int32_t)((int32_t)10)));
int32_t L_32 = V_3;
if ((((int32_t)L_32) > ((int32_t)0)))
{
goto IL_00d0;
}
}
{
Il2CppChar* L_33 = V_2;
int32_t L_34 = V_1;
int32_t L_35 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_34, (int32_t)1));
V_1 = L_35;
*((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_33, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_35)), (int32_t)2))))) = (int16_t)((int32_t)46);
int64_t L_36 = __this->get_m_Address_5();
V_3 = (((int32_t)((int32_t)((int64_t)((int64_t)L_36&(int64_t)(((int64_t)((int64_t)((int32_t)255)))))))));
}
IL_0108:
{
Il2CppChar* L_37 = V_2;
int32_t L_38 = V_1;
int32_t L_39 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_38, (int32_t)1));
V_1 = L_39;
int32_t L_40 = V_3;
*((int16_t*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_37, (intptr_t)((intptr_t)il2cpp_codegen_multiply((intptr_t)(((intptr_t)L_39)), (int32_t)2))))) = (int16_t)(((int32_t)((uint16_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)48), (int32_t)((int32_t)((int32_t)L_40%(int32_t)((int32_t)10))))))));
int32_t L_41 = V_3;
V_3 = ((int32_t)((int32_t)L_41/(int32_t)((int32_t)10)));
int32_t L_42 = V_3;
if ((((int32_t)L_42) > ((int32_t)0)))
{
goto IL_0108;
}
}
{
Il2CppChar* L_43 = V_2;
int32_t L_44 = V_1;
int32_t L_45 = V_1;
String_t* L_46 = String_CreateString_mC16F6AD7A921B1AD038C1EB215D7F055C5676590(NULL, (Il2CppChar*)(Il2CppChar*)L_43, L_44, ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)15), (int32_t)L_45)), /*hidden argument*/NULL);
__this->set_m_ToString_6(L_46);
}
IL_0135:
{
String_t* L_47 = __this->get_m_ToString_6();
return L_47;
}
}
// System.Boolean System.Net.IPAddress::Equals(System.Object,System.Boolean)
extern "C" IL2CPP_METHOD_ATTR bool IPAddress_Equals_mADA54686760DE75E2C31B8651224FFEB019316D6 (IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE * __this, RuntimeObject * ___comparandObj0, bool ___compareScopeId1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IPAddress_Equals_mADA54686760DE75E2C31B8651224FFEB019316D6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE * V_0 = NULL;
int32_t V_1 = 0;
{
RuntimeObject * L_0 = ___comparandObj0;
V_0 = ((IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE *)IsInstClass((RuntimeObject*)L_0, IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE_il2cpp_TypeInfo_var));
IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE * L_1 = V_0;
if (L_1)
{
goto IL_000c;
}
}
{
return (bool)0;
}
IL_000c:
{
int32_t L_2 = __this->get_m_Family_10();
IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE * L_3 = V_0;
NullCheck(L_3);
int32_t L_4 = L_3->get_m_Family_10();
if ((((int32_t)L_2) == ((int32_t)L_4)))
{
goto IL_001c;
}
}
{
return (bool)0;
}
IL_001c:
{
int32_t L_5 = __this->get_m_Family_10();
if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)23)))))
{
goto IL_005d;
}
}
{
V_1 = 0;
goto IL_0042;
}
IL_002a:
{
IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE * L_6 = V_0;
NullCheck(L_6);
UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* L_7 = L_6->get_m_Numbers_11();
int32_t L_8 = V_1;
NullCheck(L_7);
int32_t L_9 = L_8;
uint16_t L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* L_11 = __this->get_m_Numbers_11();
int32_t L_12 = V_1;
NullCheck(L_11);
int32_t L_13 = L_12;
uint16_t L_14 = (L_11)->GetAt(static_cast<il2cpp_array_size_t>(L_13));
if ((((int32_t)L_10) == ((int32_t)L_14)))
{
goto IL_003e;
}
}
{
return (bool)0;
}
IL_003e:
{
int32_t L_15 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_0042:
{
int32_t L_16 = V_1;
if ((((int32_t)L_16) < ((int32_t)8)))
{
goto IL_002a;
}
}
{
IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE * L_17 = V_0;
NullCheck(L_17);
int64_t L_18 = L_17->get_m_ScopeId_12();
int64_t L_19 = __this->get_m_ScopeId_12();
if ((!(((uint64_t)L_18) == ((uint64_t)L_19))))
{
goto IL_0056;
}
}
{
return (bool)1;
}
IL_0056:
{
bool L_20 = ___compareScopeId1;
if (L_20)
{
goto IL_005b;
}
}
{
return (bool)1;
}
IL_005b:
{
return (bool)0;
}
IL_005d:
{
IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE * L_21 = V_0;
NullCheck(L_21);
int64_t L_22 = L_21->get_m_Address_5();
int64_t L_23 = __this->get_m_Address_5();
return (bool)((((int64_t)L_22) == ((int64_t)L_23))? 1 : 0);
}
}
// System.Boolean System.Net.IPAddress::Equals(System.Object)
extern "C" IL2CPP_METHOD_ATTR bool IPAddress_Equals_mB38BAC1A15885A3181507BC9FD4E8F5765FA6678 (IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE * __this, RuntimeObject * ___comparand0, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___comparand0;
bool L_1 = IPAddress_Equals_mADA54686760DE75E2C31B8651224FFEB019316D6(__this, L_0, (bool)1, /*hidden argument*/NULL);
return L_1;
}
}
// System.Int32 System.Net.IPAddress::GetHashCode()
extern "C" IL2CPP_METHOD_ATTR int32_t IPAddress_GetHashCode_m36CE850AFAAD382A29B7D72844989A3105565D7C (IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IPAddress_GetHashCode_m36CE850AFAAD382A29B7D72844989A3105565D7C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = __this->get_m_Family_10();
if ((!(((uint32_t)L_0) == ((uint32_t)((int32_t)23)))))
{
goto IL_002f;
}
}
{
int32_t L_1 = __this->get_m_HashCode_13();
if (L_1)
{
goto IL_0028;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_il2cpp_TypeInfo_var);
StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * L_2 = StringComparer_get_InvariantCultureIgnoreCase_mC6DA70EBD0C00B02EC4BB5C24882F99984028DFC(/*hidden argument*/NULL);
String_t* L_3 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, __this);
NullCheck(L_2);
int32_t L_4 = VirtFuncInvoker1< int32_t, String_t* >::Invoke(12 /* System.Int32 System.StringComparer::GetHashCode(System.String) */, L_2, L_3);
__this->set_m_HashCode_13(L_4);
}
IL_0028:
{
int32_t L_5 = __this->get_m_HashCode_13();
return L_5;
}
IL_002f:
{
int64_t L_6 = __this->get_m_Address_5();
return (((int32_t)((int32_t)L_6)));
}
}
// System.Void System.Net.IPAddress::.cctor()
extern "C" IL2CPP_METHOD_ATTR void IPAddress__cctor_m4DF372012DF900E7BB489931296D0BFE4EBD4AEA (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (IPAddress__cctor_m4DF372012DF900E7BB489931296D0BFE4EBD4AEA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE * L_0 = (IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE *)il2cpp_codegen_object_new(IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE_il2cpp_TypeInfo_var);
IPAddress__ctor_mCC321EEDA0750DA97447EB60529BCBCB4EA0249D(L_0, 0, /*hidden argument*/NULL);
((IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE_StaticFields*)il2cpp_codegen_static_fields_for(IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE_il2cpp_TypeInfo_var))->set_Any_0(L_0);
IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE * L_1 = (IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE *)il2cpp_codegen_object_new(IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE_il2cpp_TypeInfo_var);
IPAddress__ctor_mCC321EEDA0750DA97447EB60529BCBCB4EA0249D(L_1, ((int32_t)16777343), /*hidden argument*/NULL);
((IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE_StaticFields*)il2cpp_codegen_static_fields_for(IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE_il2cpp_TypeInfo_var))->set_Loopback_1(L_1);
IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE * L_2 = (IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE *)il2cpp_codegen_object_new(IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE_il2cpp_TypeInfo_var);
IPAddress__ctor_mFD0AF2F6A282D1158DF3C34EF2E63B73814E7748(L_2, (((int64_t)((uint64_t)(((uint32_t)((uint32_t)(-1))))))), /*hidden argument*/NULL);
((IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE_StaticFields*)il2cpp_codegen_static_fields_for(IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE_il2cpp_TypeInfo_var))->set_Broadcast_2(L_2);
IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE * L_3 = ((IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE_StaticFields*)il2cpp_codegen_static_fields_for(IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE_il2cpp_TypeInfo_var))->get_Broadcast_2();
((IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE_StaticFields*)il2cpp_codegen_static_fields_for(IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE_il2cpp_TypeInfo_var))->set_None_3(L_3);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)16));
IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE * L_5 = (IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE *)il2cpp_codegen_object_new(IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE_il2cpp_TypeInfo_var);
IPAddress__ctor_m373D3930BEEA00EC628E98C5A13AE9BE2B2CEC84(L_5, L_4, (((int64_t)((int64_t)0))), /*hidden argument*/NULL);
((IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE_StaticFields*)il2cpp_codegen_static_fields_for(IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE_il2cpp_TypeInfo_var))->set_IPv6Any_7(L_5);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)16));
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = L_6;
NullCheck(L_7);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)15)), (uint8_t)1);
IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE * L_8 = (IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE *)il2cpp_codegen_object_new(IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE_il2cpp_TypeInfo_var);
IPAddress__ctor_m373D3930BEEA00EC628E98C5A13AE9BE2B2CEC84(L_8, L_7, (((int64_t)((int64_t)0))), /*hidden argument*/NULL);
((IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE_StaticFields*)il2cpp_codegen_static_fields_for(IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE_il2cpp_TypeInfo_var))->set_IPv6Loopback_8(L_8);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)16));
IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE * L_10 = (IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE *)il2cpp_codegen_object_new(IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE_il2cpp_TypeInfo_var);
IPAddress__ctor_m373D3930BEEA00EC628E98C5A13AE9BE2B2CEC84(L_10, L_9, (((int64_t)((int64_t)0))), /*hidden argument*/NULL);
((IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE_StaticFields*)il2cpp_codegen_static_fields_for(IPAddress_t77F35D21A3027F0CE7B38EA9B56BFD31B28952CE_il2cpp_TypeInfo_var))->set_IPv6None_9(L_10);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
| [
"Hamed@hameds-mbp.lan"
] | Hamed@hameds-mbp.lan |
9c0177690db742f76c2aee04ab091be2b7c220d2 | 260e5dec446d12a7dd3f32e331c1fde8157e5cea | /Indi/SDK/Indi_ConversationLighting_EV_functions.cpp | 4bc1473e8f2981aa99a409f3c9be42c17a011004 | [] | no_license | jfmherokiller/TheOuterWorldsSdkDump | 6e140fde4fcd1cade94ce0d7ea69f8a3f769e1c0 | 18a8c6b1f5d87bb1ad4334be4a9f22c52897f640 | refs/heads/main | 2023-08-30T09:27:17.723265 | 2021-09-17T00:24:52 | 2021-09-17T00:24:52 | 407,437,218 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,000 | cpp | // TheOuterWorlds SDK
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
#include "Indi_ConversationLighting_EV_parameters.hpp"
namespace SDK
{
//---------------------------------------------------------------------------
//Functions
//---------------------------------------------------------------------------
// Function ConversationLighting_EV.ConversationLighting_EV_C.UserConstructionScript
// (Final, RequiredAPI, BlueprintAuthorityOnly, BlueprintCosmetic, Net, NetReliable, NetRequest, Exec, Native, Event, NetResponse, Static, NetMulticast)
void AConversationLighting_EV_C::STATIC_UserConstructionScript()
{
static auto fn = UObject::FindObject<UFunction>("Function ConversationLighting_EV.ConversationLighting_EV_C.UserConstructionScript");
AConversationLighting_EV_C_UserConstructionScript_Params params;
auto flags = fn->FunctionFlags;
fn->FunctionFlags |= 0x400;
UObject::ProcessEvent(fn, ¶ms);
fn->FunctionFlags = flags;
}
}
#ifdef _MSC_VER
#pragma pack(pop)
#endif
| [
"peterpan0413@live.com"
] | peterpan0413@live.com |
b80436a3ce1ad7b92a87e776f76683cdc87e8cd8 | 090243cf699213f32f870baf2902eb4211f825d6 | /cf/631/E.cpp | eb582c2d86294c2b904441e489ef575b3c5446d1 | [] | no_license | zhu-he/ACM-Source | 0d4d0ac0668b569846b12297e7ed4abbb1c16571 | 02e3322e50336063d0d2dad37b2761ecb3d4e380 | refs/heads/master | 2021-06-07T18:27:19.702607 | 2016-07-10T09:20:48 | 2016-07-10T09:20:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 110 | cpp | #include <cstdio>
double
int main()
{
int n;
scanf("%d", &n);
for (int i = 0; i < n; ++i)
return 0;
}
| [
"hezhu1688@gmail.com"
] | hezhu1688@gmail.com |
b1266fdeb801f474c6b90dd4a3e7cdc39d5b285e | 4953a950f530f9a765b835e76909bc38c6e70efe | /Macam-macam algoritma/inverse matrix 4x4.cpp | 84ce76b2a4857c0c78b283d91a23a21cee9770f2 | [] | no_license | galacticor/cpp | 54a208a9c4379075eeb1838b25cd04321b73a9b1 | 03c2dcdc04ff32fa512fc7865e72b41143b35702 | refs/heads/main | 2023-08-27T21:37:35.648341 | 2021-10-22T14:56:36 | 2021-10-22T14:56:36 | 400,924,261 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,325 | cpp | #include <bits/stdc++.h>
using namespace std;
double m[16],invOut[16];
int x,y;
bool gluInvertMatrix(const double m[16], double invOut[16])
{
double inv[16], det;
int i;
inv[0] = m[5] * m[10] * m[15] -
m[5] * m[11] * m[14] -
m[9] * m[6] * m[15] +
m[9] * m[7] * m[14] +
m[13] * m[6] * m[11] -
m[13] * m[7] * m[10];
inv[4] = -m[4] * m[10] * m[15] +
m[4] * m[11] * m[14] +
m[8] * m[6] * m[15] -
m[8] * m[7] * m[14] -
m[12] * m[6] * m[11] +
m[12] * m[7] * m[10];
inv[8] = m[4] * m[9] * m[15] -
m[4] * m[11] * m[13] -
m[8] * m[5] * m[15] +
m[8] * m[7] * m[13] +
m[12] * m[5] * m[11] -
m[12] * m[7] * m[9];
inv[12] = -m[4] * m[9] * m[14] +
m[4] * m[10] * m[13] +
m[8] * m[5] * m[14] -
m[8] * m[6] * m[13] -
m[12] * m[5] * m[10] +
m[12] * m[6] * m[9];
inv[1] = -m[1] * m[10] * m[15] +
m[1] * m[11] * m[14] +
m[9] * m[2] * m[15] -
m[9] * m[3] * m[14] -
m[13] * m[2] * m[11] +
m[13] * m[3] * m[10];
inv[5] = m[0] * m[10] * m[15] -
m[0] * m[11] * m[14] -
m[8] * m[2] * m[15] +
m[8] * m[3] * m[14] +
m[12] * m[2] * m[11] -
m[12] * m[3] * m[10];
inv[9] = -m[0] * m[9] * m[15] +
m[0] * m[11] * m[13] +
m[8] * m[1] * m[15] -
m[8] * m[3] * m[13] -
m[12] * m[1] * m[11] +
m[12] * m[3] * m[9];
inv[13] = m[0] * m[9] * m[14] -
m[0] * m[10] * m[13] -
m[8] * m[1] * m[14] +
m[8] * m[2] * m[13] +
m[12] * m[1] * m[10] -
m[12] * m[2] * m[9];
inv[2] = m[1] * m[6] * m[15] -
m[1] * m[7] * m[14] -
m[5] * m[2] * m[15] +
m[5] * m[3] * m[14] +
m[13] * m[2] * m[7] -
m[13] * m[3] * m[6];
inv[6] = -m[0] * m[6] * m[15] +
m[0] * m[7] * m[14] +
m[4] * m[2] * m[15] -
m[4] * m[3] * m[14] -
m[12] * m[2] * m[7] +
m[12] * m[3] * m[6];
inv[10] = m[0] * m[5] * m[15] -
m[0] * m[7] * m[13] -
m[4] * m[1] * m[15] +
m[4] * m[3] * m[13] +
m[12] * m[1] * m[7] -
m[12] * m[3] * m[5];
inv[14] = -m[0] * m[5] * m[14] +
m[0] * m[6] * m[13] +
m[4] * m[1] * m[14] -
m[4] * m[2] * m[13] -
m[12] * m[1] * m[6] +
m[12] * m[2] * m[5];
inv[3] = -m[1] * m[6] * m[11] +
m[1] * m[7] * m[10] +
m[5] * m[2] * m[11] -
m[5] * m[3] * m[10] -
m[9] * m[2] * m[7] +
m[9] * m[3] * m[6];
inv[7] = m[0] * m[6] * m[11] -
m[0] * m[7] * m[10] -
m[4] * m[2] * m[11] +
m[4] * m[3] * m[10] +
m[8] * m[2] * m[7] -
m[8] * m[3] * m[6];
inv[11] = -m[0] * m[5] * m[11] +
m[0] * m[7] * m[9] +
m[4] * m[1] * m[11] -
m[4] * m[3] * m[9] -
m[8] * m[1] * m[7] +
m[8] * m[3] * m[5];
inv[15] = m[0] * m[5] * m[10] -
m[0] * m[6] * m[9] -
m[4] * m[1] * m[10] +
m[4] * m[2] * m[9] +
m[8] * m[1] * m[6] -
m[8] * m[2] * m[5];
det = m[0] * inv[0] + m[1] * inv[4] + m[2] * inv[8] + m[3] * inv[12];
if (det == 0)
return false;
det = 1.0 / det;
for (i = 0; i < 16; i++)
invOut[i] = inv[i] * det;
return true;
}
int main(){
for(int i=0;i<=15;i++){
cin>>m[i];
}
gluInvertMatrix(m,invOut);
for(int i=0;i<=15;i++){
cout<<invOut[i]<<" ";
if((i+1)%4==0){
cout<<endl;
}
}
return 0;
} | [
"widyantohadi@gmail.com"
] | widyantohadi@gmail.com |
61010d160ea0f26ba70701a2710ba76f2a48db06 | 44ab57520bb1a9b48045cb1ee9baee8816b44a5b | /EngineTesting/Code/CoreTools/CoreToolsTesting/BaseSuite/Detail/StaticSingletonSubclass.h | c52ceb2a7d344a3505fa7b4c1f1a8c5b1e8a0197 | [
"BSD-3-Clause"
] | permissive | WuyangPeng/Engine | d5d81fd4ec18795679ce99552ab9809f3b205409 | 738fde5660449e87ccd4f4878f7bf2a443ae9f1f | refs/heads/master | 2023-08-17T17:01:41.765963 | 2023-08-16T07:27:05 | 2023-08-16T07:27:05 | 246,266,843 | 10 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,020 | h | /// Copyright (c) 2010-2023
/// Threading Core Render Engine
///
/// 作者:彭武阳,彭晔恩,彭晔泽
/// 联系作者:94458936@qq.com
///
/// 标准:std:c++20
/// 引擎测试版本:0.9.0.6 (2023/04/10 18:16)
#ifndef CORE_TOOLS_BASE_SUITE_STATIC_SINGLETON_SUBCLASS_TESTING_H
#define CORE_TOOLS_BASE_SUITE_STATIC_SINGLETON_SUBCLASS_TESTING_H
#include "CoreTools/Base/StaticSingletonDetail.h"
#include "CoreTools/Threading/Mutex.h"
namespace CoreTools
{
class StaticSingletonSubclass final : public StaticSingleton<StaticSingletonSubclass, MutexCreate::UseCriticalSection>
{
public:
using ClassType = StaticSingletonSubclass;
using ParentType = StaticSingleton<StaticSingletonSubclass, MutexCreate::UseCriticalSection>;
public:
explicit StaticSingletonSubclass(SingletonCreate singletonCreate) noexcept;
public:
CLASS_INVARIANT_DECLARE;
void DoNothing() const;
};
}
#endif // CORE_TOOLS_BASE_SUITE_STATIC_SINGLETON_SUBCLASS_TESTING_H | [
"94458936@qq.com"
] | 94458936@qq.com |
a773d02ce4875ddcad93ce09ab09ee7575edf893 | 47609d52e8a740fc3d8e27623b72fcd61886cf75 | /code/linux/day01/environ/get_env.cc | 1c310d77b5c2bba0479a10f534852c723963bc7c | [] | no_license | blalalt/cpp_language | 3cf68e84d14ab53d7161085c1f056c9b4095dedf | 8ec2bf98fa10d8b2b6125eda22c3aa2fc0199d7b | refs/heads/master | 2020-08-08T01:20:04.737657 | 2020-02-12T07:37:17 | 2020-02-12T07:37:17 | 213,656,311 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 560 | cc | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <string>
using namespace std;
extern char** environ;
string get_env(string key)
{
int key_len = key.size();
int i;
for (i=0; environ[i]; i++) {
string _key = string(environ[i]);
if (!key.compare(0, key_len, _key, 0, key_len))
{
string ret = _key.substr(key_len+1);
return ret;
}
}
return "Not found!";
}
int main(int argc, char* argv[])
{
string key = string(argv[1]);
// char* key = argv[1];
printf("%s\n", get_env(key).c_str());
return 0;
}
| [
"blalalt@163.com"
] | blalalt@163.com |
0a78d3abbe8c42281917b5b615f6770d1c74d29d | 9ebfdb48b9a599d4c344e1662a7bb0c6fa680b09 | /TLibCommon/TComDataCU.cpp | 55e3641f8e1e97fc5a2df7fbadad4535df3000c3 | [] | no_license | XimingCheng/HEVCAnalyzer | 956a2242ba98d5489c7aa1b3869d3b18aa37e8ee | b23c9a5b46cc72c3095f19a2d1a0ce85098b17e8 | refs/heads/develop | 2020-12-24T16:32:50.614655 | 2016-05-15T16:19:50 | 2016-05-15T16:19:50 | 10,314,680 | 96 | 40 | null | 2016-05-15T16:19:52 | 2013-05-27T12:48:39 | C++ | UTF-8 | C++ | false | false | 156,936 | cpp | /* The copyright in this software is being made available under the BSD
* License, included below. This software may be subject to other third party
* and contributor rights, including patent rights, and no such rights are
* granted under this license.
*
* Copyright (c) 2010-2013, ITU/ISO/IEC
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* * 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.
* * Neither the name of the ITU/ISO/IEC 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.
*/
/** \file TComDataCU.cpp
\brief CU data structure
\todo not all entities are documented
*/
#include "TComDataCU.h"
#include "TComPic.h"
//! \ingroup TLibCommon
//! \{
#if ADAPTIVE_QP_SELECTION
Int *TComDataCU::m_pcGlbArlCoeffY = NULL;
Int *TComDataCU::m_pcGlbArlCoeffCb = NULL;
Int *TComDataCU::m_pcGlbArlCoeffCr = NULL;
#endif
// ====================================================================================================================
// Constructor / destructor / create / destroy
// ====================================================================================================================
TComDataCU::TComDataCU()
{
m_pcPic = NULL;
m_pcSlice = NULL;
m_puhDepth = NULL;
m_skipFlag = NULL;
m_pePartSize = NULL;
m_pePredMode = NULL;
m_CUTransquantBypass = NULL;
m_puhWidth = NULL;
m_puhHeight = NULL;
m_phQP = NULL;
m_pbMergeFlag = NULL;
m_puhMergeIndex = NULL;
m_puhLumaIntraDir = NULL;
m_puhChromaIntraDir = NULL;
m_puhInterDir = NULL;
m_puhTrIdx = NULL;
m_puhTransformSkip[0] = NULL;
m_puhTransformSkip[1] = NULL;
m_puhTransformSkip[2] = NULL;
m_puhCbf[0] = NULL;
m_puhCbf[1] = NULL;
m_puhCbf[2] = NULL;
m_pcTrCoeffY = NULL;
m_pcTrCoeffCb = NULL;
m_pcTrCoeffCr = NULL;
#if ADAPTIVE_QP_SELECTION
m_ArlCoeffIsAliasedAllocation = false;
m_pcArlCoeffY = NULL;
m_pcArlCoeffCb = NULL;
m_pcArlCoeffCr = NULL;
#endif
m_pbIPCMFlag = NULL;
m_pcIPCMSampleY = NULL;
m_pcIPCMSampleCb = NULL;
m_pcIPCMSampleCr = NULL;
m_pcPattern = NULL;
m_pcCUAboveLeft = NULL;
m_pcCUAboveRight = NULL;
m_pcCUAbove = NULL;
m_pcCULeft = NULL;
m_apcCUColocated[0] = NULL;
m_apcCUColocated[1] = NULL;
m_apiMVPIdx[0] = NULL;
m_apiMVPIdx[1] = NULL;
m_apiMVPNum[0] = NULL;
m_apiMVPNum[1] = NULL;
m_bDecSubCu = false;
m_sliceStartCU = 0;
m_sliceSegmentStartCU = 0;
}
TComDataCU::~TComDataCU()
{
}
Void TComDataCU::create(UInt uiNumPartition, UInt uiWidth, UInt uiHeight, Bool bDecSubCu, Int unitSize
#if ADAPTIVE_QP_SELECTION
, Bool bGlobalRMARLBuffer
#endif
)
{
m_bDecSubCu = bDecSubCu;
m_pcPic = NULL;
m_pcSlice = NULL;
m_uiNumPartition = uiNumPartition;
m_unitSize = unitSize;
if ( !bDecSubCu )
{
m_phQP = (Char * )xMalloc(Char, uiNumPartition);
m_puhDepth = (UChar * )xMalloc(UChar, uiNumPartition);
m_puhWidth = (UChar * )xMalloc(UChar, uiNumPartition);
m_puhHeight = (UChar * )xMalloc(UChar, uiNumPartition);
m_skipFlag = new Bool[ uiNumPartition ];
m_pePartSize = new Char[ uiNumPartition ];
memset( m_pePartSize, SIZE_NONE, uiNumPartition * sizeof( *m_pePartSize ) );
m_pePredMode = new Char[ uiNumPartition ];
m_CUTransquantBypass = new Bool[ uiNumPartition ];
m_pbMergeFlag = (Bool * )xMalloc(Bool, uiNumPartition);
m_puhMergeIndex = (UChar * )xMalloc(UChar, uiNumPartition);
m_puhLumaIntraDir = (UChar * )xMalloc(UChar, uiNumPartition);
m_puhChromaIntraDir = (UChar * )xMalloc(UChar, uiNumPartition);
m_puhInterDir = (UChar * )xMalloc(UChar, uiNumPartition);
m_puhTrIdx = (UChar * )xMalloc(UChar, uiNumPartition);
m_puhTransformSkip[0] = (UChar * )xMalloc(UChar, uiNumPartition);
m_puhTransformSkip[1] = (UChar * )xMalloc(UChar, uiNumPartition);
m_puhTransformSkip[2] = (UChar * )xMalloc(UChar, uiNumPartition);
m_puhCbf[0] = (UChar * )xMalloc(UChar, uiNumPartition);
m_puhCbf[1] = (UChar * )xMalloc(UChar, uiNumPartition);
m_puhCbf[2] = (UChar * )xMalloc(UChar, uiNumPartition);
m_apiMVPIdx[0] = new Char[ uiNumPartition ];
m_apiMVPIdx[1] = new Char[ uiNumPartition ];
m_apiMVPNum[0] = new Char[ uiNumPartition ];
m_apiMVPNum[1] = new Char[ uiNumPartition ];
memset( m_apiMVPIdx[0], -1, uiNumPartition * sizeof( Char ) );
memset( m_apiMVPIdx[1], -1, uiNumPartition * sizeof( Char ) );
m_pcTrCoeffY = (TCoeff *)xMalloc(TCoeff, uiWidth * uiHeight);
m_pcTrCoeffCb = (TCoeff *)xMalloc(TCoeff, uiWidth * uiHeight / 4);
m_pcTrCoeffCr = (TCoeff *)xMalloc(TCoeff, uiWidth * uiHeight / 4);
memset( m_pcTrCoeffY, 0, uiWidth * uiHeight * sizeof( TCoeff ) );
memset( m_pcTrCoeffCb, 0, uiWidth * uiHeight / 4 * sizeof( TCoeff ) );
memset( m_pcTrCoeffCr, 0, uiWidth * uiHeight / 4 * sizeof( TCoeff ) );
#if ADAPTIVE_QP_SELECTION
if( bGlobalRMARLBuffer )
{
if( m_pcGlbArlCoeffY == NULL )
{
m_pcGlbArlCoeffY = (Int *)xMalloc(Int, uiWidth * uiHeight);
m_pcGlbArlCoeffCb = (Int *)xMalloc(Int, uiWidth * uiHeight / 4);
m_pcGlbArlCoeffCr = (Int *)xMalloc(Int, uiWidth * uiHeight / 4);
}
m_pcArlCoeffY = m_pcGlbArlCoeffY;
m_pcArlCoeffCb = m_pcGlbArlCoeffCb;
m_pcArlCoeffCr = m_pcGlbArlCoeffCr;
m_ArlCoeffIsAliasedAllocation = true;
}
else
{
m_pcArlCoeffY = (Int *)xMalloc(Int, uiWidth * uiHeight);
m_pcArlCoeffCb = (Int *)xMalloc(Int, uiWidth * uiHeight / 4);
m_pcArlCoeffCr = (Int *)xMalloc(Int, uiWidth * uiHeight / 4);
}
#endif
m_pbIPCMFlag = (Bool * )xMalloc(Bool, uiNumPartition);
m_pcIPCMSampleY = (Pel * )xMalloc(Pel , uiWidth * uiHeight);
m_pcIPCMSampleCb = (Pel * )xMalloc(Pel , uiWidth * uiHeight / 4);
m_pcIPCMSampleCr = (Pel * )xMalloc(Pel , uiWidth * uiHeight / 4);
m_acCUMvField[0].create( uiNumPartition );
m_acCUMvField[1].create( uiNumPartition );
}
else
{
m_acCUMvField[0].setNumPartition(uiNumPartition );
m_acCUMvField[1].setNumPartition(uiNumPartition );
}
m_sliceStartCU = (UInt * )xMalloc(UInt, uiNumPartition);
m_sliceSegmentStartCU = (UInt * )xMalloc(UInt, uiNumPartition);
// create pattern memory
m_pcPattern = (TComPattern *)xMalloc(TComPattern, 1);
// create motion vector fields
m_pcCUAboveLeft = NULL;
m_pcCUAboveRight = NULL;
m_pcCUAbove = NULL;
m_pcCULeft = NULL;
m_apcCUColocated[0] = NULL;
m_apcCUColocated[1] = NULL;
}
Void TComDataCU::destroy()
{
m_pcPic = NULL;
m_pcSlice = NULL;
if ( m_pcPattern )
{
xFree(m_pcPattern);
m_pcPattern = NULL;
}
// encoder-side buffer free
if ( !m_bDecSubCu )
{
if ( m_phQP )
{
xFree(m_phQP);
m_phQP = NULL;
}
if ( m_puhDepth )
{
xFree(m_puhDepth);
m_puhDepth = NULL;
}
if ( m_puhWidth )
{
xFree(m_puhWidth);
m_puhWidth = NULL;
}
if ( m_puhHeight )
{
xFree(m_puhHeight);
m_puhHeight = NULL;
}
if ( m_skipFlag )
{
delete[] m_skipFlag;
m_skipFlag = NULL;
}
if ( m_pePartSize )
{
delete[] m_pePartSize;
m_pePartSize = NULL;
}
if ( m_pePredMode )
{
delete[] m_pePredMode;
m_pePredMode = NULL;
}
if ( m_CUTransquantBypass )
{
delete[] m_CUTransquantBypass;
m_CUTransquantBypass = NULL;
}
if ( m_puhCbf[0] )
{
xFree(m_puhCbf[0]);
m_puhCbf[0] = NULL;
}
if ( m_puhCbf[1] )
{
xFree(m_puhCbf[1]);
m_puhCbf[1] = NULL;
}
if ( m_puhCbf[2] )
{
xFree(m_puhCbf[2]);
m_puhCbf[2] = NULL;
}
if ( m_puhInterDir )
{
xFree(m_puhInterDir);
m_puhInterDir = NULL;
}
if ( m_pbMergeFlag )
{
xFree(m_pbMergeFlag);
m_pbMergeFlag = NULL;
}
if ( m_puhMergeIndex )
{
xFree(m_puhMergeIndex);
m_puhMergeIndex = NULL;
}
if ( m_puhLumaIntraDir )
{
xFree(m_puhLumaIntraDir);
m_puhLumaIntraDir = NULL;
}
if ( m_puhChromaIntraDir )
{
xFree(m_puhChromaIntraDir);
m_puhChromaIntraDir = NULL;
}
if ( m_puhTrIdx )
{
xFree(m_puhTrIdx);
m_puhTrIdx = NULL;
}
if ( m_puhTransformSkip[0])
{
xFree(m_puhTransformSkip[0]);
m_puhTransformSkip[0] = NULL;
}
if ( m_puhTransformSkip[1])
{
xFree(m_puhTransformSkip[1]);
m_puhTransformSkip[1] = NULL;
}
if ( m_puhTransformSkip[2])
{
xFree(m_puhTransformSkip[2]);
m_puhTransformSkip[2] = NULL;
}
if ( m_pcTrCoeffY )
{
xFree(m_pcTrCoeffY);
m_pcTrCoeffY = NULL;
}
if ( m_pcTrCoeffCb )
{
xFree(m_pcTrCoeffCb);
m_pcTrCoeffCb = NULL;
}
if ( m_pcTrCoeffCr )
{
xFree(m_pcTrCoeffCr);
m_pcTrCoeffCr = NULL;
}
#if ADAPTIVE_QP_SELECTION
if (!m_ArlCoeffIsAliasedAllocation)
{
xFree(m_pcArlCoeffY);
m_pcArlCoeffY = 0;
xFree(m_pcArlCoeffCb);
m_pcArlCoeffCb = 0;
xFree(m_pcArlCoeffCr);
m_pcArlCoeffCr = 0;
}
if ( m_pcGlbArlCoeffY )
{
xFree(m_pcGlbArlCoeffY);
m_pcGlbArlCoeffY = NULL;
}
if ( m_pcGlbArlCoeffCb )
{
xFree(m_pcGlbArlCoeffCb);
m_pcGlbArlCoeffCb = NULL;
}
if ( m_pcGlbArlCoeffCr )
{
xFree(m_pcGlbArlCoeffCr);
m_pcGlbArlCoeffCr = NULL;
}
#endif
if ( m_pbIPCMFlag )
{
xFree(m_pbIPCMFlag );
m_pbIPCMFlag = NULL;
}
if ( m_pcIPCMSampleY )
{
xFree(m_pcIPCMSampleY);
m_pcIPCMSampleY = NULL;
}
if ( m_pcIPCMSampleCb )
{
xFree(m_pcIPCMSampleCb);
m_pcIPCMSampleCb = NULL;
}
if ( m_pcIPCMSampleCr )
{
xFree(m_pcIPCMSampleCr);
m_pcIPCMSampleCr = NULL;
}
if ( m_apiMVPIdx[0] )
{
delete[] m_apiMVPIdx[0];
m_apiMVPIdx[0] = NULL;
}
if ( m_apiMVPIdx[1] )
{
delete[] m_apiMVPIdx[1];
m_apiMVPIdx[1] = NULL;
}
if ( m_apiMVPNum[0] )
{
delete[] m_apiMVPNum[0];
m_apiMVPNum[0] = NULL;
}
if ( m_apiMVPNum[1] )
{
delete[] m_apiMVPNum[1];
m_apiMVPNum[1] = NULL;
}
m_acCUMvField[0].destroy();
m_acCUMvField[1].destroy();
}
m_pcCUAboveLeft = NULL;
m_pcCUAboveRight = NULL;
m_pcCUAbove = NULL;
m_pcCULeft = NULL;
m_apcCUColocated[0] = NULL;
m_apcCUColocated[1] = NULL;
if( m_sliceStartCU )
{
xFree(m_sliceStartCU);
m_sliceStartCU = NULL;
}
if(m_sliceSegmentStartCU )
{
xFree(m_sliceSegmentStartCU);
m_sliceSegmentStartCU = NULL;
}
}
const NDBFBlockInfo &NDBFBlockInfo::operator= (const NDBFBlockInfo &src)
{
this->tileID = src.tileID;
this->sliceID = src.sliceID;
this->startSU = src.startSU;
this->endSU = src.endSU;
this->widthSU = src.widthSU;
this->heightSU = src.heightSU;
this->posX = src.posX;
this->posY = src.posY;
this->width = src.width;
this->height = src.height;
::memcpy(this->isBorderAvailable, src.isBorderAvailable, sizeof(Bool) * ((Int)NUM_SGU_BORDER));
this->allBordersAvailable = src.allBordersAvailable;
return *this;
}
// ====================================================================================================================
// Public member functions
// ====================================================================================================================
// --------------------------------------------------------------------------------------------------------------------
// Initialization
// --------------------------------------------------------------------------------------------------------------------
/**
- initialize top-level CU
- internal buffers are already created
- set values before encoding a CU
.
\param pcPic picture (TComPic) class pointer
\param iCUAddr CU address
*/
Void TComDataCU::initCU( TComPic *pcPic, UInt iCUAddr )
{
m_pcPic = pcPic;
m_pcSlice = pcPic->getSlice(pcPic->getCurrSliceIdx());
m_uiCUAddr = iCUAddr;
m_uiCUPelX = ( iCUAddr % pcPic->getFrameWidthInCU() ) * g_uiMaxCUWidth;
m_uiCUPelY = ( iCUAddr / pcPic->getFrameWidthInCU() ) * g_uiMaxCUHeight;
m_uiAbsIdxInLCU = 0;
m_dTotalCost = MAX_DOUBLE;
m_uiTotalDistortion = 0;
m_uiTotalBits = 0;
m_uiTotalBins = 0;
m_uiNumPartition = pcPic->getNumPartInCU();
for(Int i = 0; i < pcPic->getNumPartInCU(); i++)
{
if(pcPic->getPicSym()->getInverseCUOrderMap(iCUAddr)*pcPic->getNumPartInCU() + i >= getSlice()->getSliceCurStartCUAddr())
{
m_sliceStartCU[i] = getSlice()->getSliceCurStartCUAddr();
}
else
{
m_sliceStartCU[i] = pcPic->getCU(getAddr())->m_sliceStartCU[i];
}
}
for(Int i = 0; i < pcPic->getNumPartInCU(); i++)
{
if(pcPic->getPicSym()->getInverseCUOrderMap(iCUAddr)*pcPic->getNumPartInCU() + i >= getSlice()->getSliceSegmentCurStartCUAddr())
{
m_sliceSegmentStartCU[i] = getSlice()->getSliceSegmentCurStartCUAddr();
}
else
{
m_sliceSegmentStartCU[i] = pcPic->getCU(getAddr())->m_sliceSegmentStartCU[i];
}
}
Int partStartIdx = getSlice()->getSliceSegmentCurStartCUAddr() - pcPic->getPicSym()->getInverseCUOrderMap(iCUAddr) * pcPic->getNumPartInCU();
Int numElements = min<Int>( partStartIdx, m_uiNumPartition );
for ( Int ui = 0; ui < numElements; ui++ )
{
TComDataCU *pcFrom = pcPic->getCU(getAddr());
m_skipFlag[ui] = pcFrom->getSkipFlag(ui);
m_pePartSize[ui] = pcFrom->getPartitionSize(ui);
m_pePredMode[ui] = pcFrom->getPredictionMode(ui);
m_CUTransquantBypass[ui] = pcFrom->getCUTransquantBypass(ui);
m_puhDepth[ui] = pcFrom->getDepth(ui);
m_puhWidth [ui] = pcFrom->getWidth(ui);
m_puhHeight [ui] = pcFrom->getHeight(ui);
m_puhTrIdx [ui] = pcFrom->getTransformIdx(ui);
m_puhTransformSkip[0][ui] = pcFrom->getTransformSkip(ui, TEXT_LUMA);
m_puhTransformSkip[1][ui] = pcFrom->getTransformSkip(ui, TEXT_CHROMA_U);
m_puhTransformSkip[2][ui] = pcFrom->getTransformSkip(ui, TEXT_CHROMA_V);
m_apiMVPIdx[0][ui] = pcFrom->m_apiMVPIdx[0][ui];;
m_apiMVPIdx[1][ui] = pcFrom->m_apiMVPIdx[1][ui];
m_apiMVPNum[0][ui] = pcFrom->m_apiMVPNum[0][ui];
m_apiMVPNum[1][ui] = pcFrom->m_apiMVPNum[1][ui];
m_phQP[ui] = pcFrom->m_phQP[ui];
m_pbMergeFlag[ui] = pcFrom->m_pbMergeFlag[ui];
m_puhMergeIndex[ui] = pcFrom->m_puhMergeIndex[ui];
m_puhLumaIntraDir[ui] = pcFrom->m_puhLumaIntraDir[ui];
m_puhChromaIntraDir[ui] = pcFrom->m_puhChromaIntraDir[ui];
m_puhInterDir[ui] = pcFrom->m_puhInterDir[ui];
m_puhCbf[0][ui] = pcFrom->m_puhCbf[0][ui];
m_puhCbf[1][ui] = pcFrom->m_puhCbf[1][ui];
m_puhCbf[2][ui] = pcFrom->m_puhCbf[2][ui];
m_pbIPCMFlag[ui] = pcFrom->m_pbIPCMFlag[ui];
}
Int firstElement = max<Int>( partStartIdx, 0 );
numElements = m_uiNumPartition - firstElement;
if ( numElements > 0 )
{
memset( m_skipFlag + firstElement, false, numElements * sizeof( *m_skipFlag ) );
memset( m_pePartSize + firstElement, SIZE_NONE, numElements * sizeof( *m_pePartSize ) );
memset( m_pePredMode + firstElement, MODE_NONE, numElements * sizeof( *m_pePredMode ) );
memset( m_CUTransquantBypass + firstElement, false, numElements * sizeof( *m_CUTransquantBypass) );
memset( m_puhDepth + firstElement, 0, numElements * sizeof( *m_puhDepth ) );
memset( m_puhTrIdx + firstElement, 0, numElements * sizeof( *m_puhTrIdx ) );
memset( m_puhTransformSkip[0] + firstElement, 0, numElements * sizeof( *m_puhTransformSkip[0]) );
memset( m_puhTransformSkip[1] + firstElement, 0, numElements * sizeof( *m_puhTransformSkip[1]) );
memset( m_puhTransformSkip[2] + firstElement, 0, numElements * sizeof( *m_puhTransformSkip[2]) );
memset( m_puhWidth + firstElement, g_uiMaxCUWidth, numElements * sizeof( *m_puhWidth ) );
memset( m_puhHeight + firstElement, g_uiMaxCUHeight, numElements * sizeof( *m_puhHeight ) );
memset( m_apiMVPIdx[0] + firstElement, -1, numElements * sizeof( *m_apiMVPIdx[0] ) );
memset( m_apiMVPIdx[1] + firstElement, -1, numElements * sizeof( *m_apiMVPIdx[1] ) );
memset( m_apiMVPNum[0] + firstElement, -1, numElements * sizeof( *m_apiMVPNum[0] ) );
memset( m_apiMVPNum[1] + firstElement, -1, numElements * sizeof( *m_apiMVPNum[1] ) );
memset( m_phQP + firstElement, getSlice()->getSliceQp(), numElements * sizeof( *m_phQP ) );
memset( m_pbMergeFlag + firstElement, false, numElements * sizeof( *m_pbMergeFlag ) );
memset( m_puhMergeIndex + firstElement, 0, numElements * sizeof( *m_puhMergeIndex ) );
memset( m_puhLumaIntraDir + firstElement, DC_IDX, numElements * sizeof( *m_puhLumaIntraDir ) );
memset( m_puhChromaIntraDir + firstElement, 0, numElements * sizeof( *m_puhChromaIntraDir ) );
memset( m_puhInterDir + firstElement, 0, numElements * sizeof( *m_puhInterDir ) );
memset( m_puhCbf[0] + firstElement, 0, numElements * sizeof( *m_puhCbf[0] ) );
memset( m_puhCbf[1] + firstElement, 0, numElements * sizeof( *m_puhCbf[1] ) );
memset( m_puhCbf[2] + firstElement, 0, numElements * sizeof( *m_puhCbf[2] ) );
memset( m_pbIPCMFlag + firstElement, false, numElements * sizeof( *m_pbIPCMFlag ) );
}
UInt uiTmp = g_uiMaxCUWidth * g_uiMaxCUHeight;
if ( 0 >= partStartIdx )
{
m_acCUMvField[0].clearMvField();
m_acCUMvField[1].clearMvField();
memset( m_pcTrCoeffY , 0, sizeof( TCoeff ) * uiTmp );
#if ADAPTIVE_QP_SELECTION
memset( m_pcArlCoeffY , 0, sizeof( Int ) * uiTmp );
#endif
memset( m_pcIPCMSampleY , 0, sizeof( Pel ) * uiTmp );
uiTmp >>= 2;
memset( m_pcTrCoeffCb, 0, sizeof( TCoeff ) * uiTmp );
memset( m_pcTrCoeffCr, 0, sizeof( TCoeff ) * uiTmp );
#if ADAPTIVE_QP_SELECTION
memset( m_pcArlCoeffCb, 0, sizeof( Int ) * uiTmp );
memset( m_pcArlCoeffCr, 0, sizeof( Int ) * uiTmp );
#endif
memset( m_pcIPCMSampleCb , 0, sizeof( Pel ) * uiTmp );
memset( m_pcIPCMSampleCr , 0, sizeof( Pel ) * uiTmp );
}
else
{
TComDataCU *pcFrom = pcPic->getCU(getAddr());
m_acCUMvField[0].copyFrom(&pcFrom->m_acCUMvField[0], m_uiNumPartition, 0);
m_acCUMvField[1].copyFrom(&pcFrom->m_acCUMvField[1], m_uiNumPartition, 0);
for(Int i = 0; i < uiTmp; i++)
{
m_pcTrCoeffY[i] = pcFrom->m_pcTrCoeffY[i];
#if ADAPTIVE_QP_SELECTION
m_pcArlCoeffY[i] = pcFrom->m_pcArlCoeffY[i];
#endif
m_pcIPCMSampleY[i] = pcFrom->m_pcIPCMSampleY[i];
}
for(Int i = 0; i < (uiTmp >> 2); i++)
{
m_pcTrCoeffCb[i] = pcFrom->m_pcTrCoeffCb[i];
m_pcTrCoeffCr[i] = pcFrom->m_pcTrCoeffCr[i];
#if ADAPTIVE_QP_SELECTION
m_pcArlCoeffCb[i] = pcFrom->m_pcArlCoeffCb[i];
m_pcArlCoeffCr[i] = pcFrom->m_pcArlCoeffCr[i];
#endif
m_pcIPCMSampleCb[i] = pcFrom->m_pcIPCMSampleCb[i];
m_pcIPCMSampleCr[i] = pcFrom->m_pcIPCMSampleCr[i];
}
}
// Setting neighbor CU
m_pcCULeft = NULL;
m_pcCUAbove = NULL;
m_pcCUAboveLeft = NULL;
m_pcCUAboveRight = NULL;
m_apcCUColocated[0] = NULL;
m_apcCUColocated[1] = NULL;
UInt uiWidthInCU = pcPic->getFrameWidthInCU();
if ( m_uiCUAddr % uiWidthInCU )
{
m_pcCULeft = pcPic->getCU( m_uiCUAddr - 1 );
}
if ( m_uiCUAddr / uiWidthInCU )
{
m_pcCUAbove = pcPic->getCU( m_uiCUAddr - uiWidthInCU );
}
if ( m_pcCULeft && m_pcCUAbove )
{
m_pcCUAboveLeft = pcPic->getCU( m_uiCUAddr - uiWidthInCU - 1 );
}
if ( m_pcCUAbove && ( (m_uiCUAddr % uiWidthInCU) < (uiWidthInCU - 1) ) )
{
m_pcCUAboveRight = pcPic->getCU( m_uiCUAddr - uiWidthInCU + 1 );
}
if ( getSlice()->getNumRefIdx( REF_PIC_LIST_0 ) > 0 )
{
m_apcCUColocated[0] = getSlice()->getRefPic( REF_PIC_LIST_0, 0)->getCU( m_uiCUAddr );
}
if ( getSlice()->getNumRefIdx( REF_PIC_LIST_1 ) > 0 )
{
m_apcCUColocated[1] = getSlice()->getRefPic( REF_PIC_LIST_1, 0)->getCU( m_uiCUAddr );
}
}
/** initialize prediction data with enabling sub-LCU-level delta QP
*\param uiDepth depth of the current CU
*\param qp qp for the current CU
*- set CU width and CU height according to depth
*- set qp value according to input qp
*- set last-coded qp value according to input last-coded qp
*/
Void TComDataCU::initEstData( UInt uiDepth, Int qp )
{
m_dTotalCost = MAX_DOUBLE;
m_uiTotalDistortion = 0;
m_uiTotalBits = 0;
m_uiTotalBins = 0;
UChar uhWidth = g_uiMaxCUWidth >> uiDepth;
UChar uhHeight = g_uiMaxCUHeight >> uiDepth;
for (UInt ui = 0; ui < m_uiNumPartition; ui++)
{
if(getPic()->getPicSym()->getInverseCUOrderMap(getAddr())*m_pcPic->getNumPartInCU() + m_uiAbsIdxInLCU + ui >= getSlice()->getSliceSegmentCurStartCUAddr())
{
m_apiMVPIdx[0][ui] = -1;
m_apiMVPIdx[1][ui] = -1;
m_apiMVPNum[0][ui] = -1;
m_apiMVPNum[1][ui] = -1;
m_puhDepth [ui] = uiDepth;
m_puhWidth [ui] = uhWidth;
m_puhHeight [ui] = uhHeight;
m_puhTrIdx [ui] = 0;
m_puhTransformSkip[0][ui] = 0;
m_puhTransformSkip[1][ui] = 0;
m_puhTransformSkip[2][ui] = 0;
m_skipFlag[ui] = false;
m_pePartSize[ui] = SIZE_NONE;
m_pePredMode[ui] = MODE_NONE;
m_CUTransquantBypass[ui] = false;
m_pbIPCMFlag[ui] = 0;
m_phQP[ui] = qp;
m_pbMergeFlag[ui] = 0;
m_puhMergeIndex[ui] = 0;
m_puhLumaIntraDir[ui] = DC_IDX;
m_puhChromaIntraDir[ui] = 0;
m_puhInterDir[ui] = 0;
m_puhCbf[0][ui] = 0;
m_puhCbf[1][ui] = 0;
m_puhCbf[2][ui] = 0;
}
}
UInt uiTmp = uhWidth * uhHeight;
if(getPic()->getPicSym()->getInverseCUOrderMap(getAddr())*m_pcPic->getNumPartInCU() + m_uiAbsIdxInLCU >= getSlice()->getSliceSegmentCurStartCUAddr())
{
m_acCUMvField[0].clearMvField();
m_acCUMvField[1].clearMvField();
uiTmp = uhWidth * uhHeight;
memset( m_pcTrCoeffY, 0, uiTmp * sizeof( *m_pcTrCoeffY ) );
#if ADAPTIVE_QP_SELECTION
memset( m_pcArlCoeffY , 0, uiTmp * sizeof( *m_pcArlCoeffY ) );
#endif
memset( m_pcIPCMSampleY, 0, uiTmp * sizeof( *m_pcIPCMSampleY ) );
uiTmp >>= 2;
memset( m_pcTrCoeffCb, 0, uiTmp * sizeof( *m_pcTrCoeffCb ) );
memset( m_pcTrCoeffCr, 0, uiTmp * sizeof( *m_pcTrCoeffCr ) );
#if ADAPTIVE_QP_SELECTION
memset( m_pcArlCoeffCb, 0, uiTmp * sizeof( *m_pcArlCoeffCb ) );
memset( m_pcArlCoeffCr, 0, uiTmp * sizeof( *m_pcArlCoeffCr ) );
#endif
memset( m_pcIPCMSampleCb, 0, uiTmp * sizeof( *m_pcIPCMSampleCb ) );
memset( m_pcIPCMSampleCr, 0, uiTmp * sizeof( *m_pcIPCMSampleCr ) );
}
}
// initialize Sub partition
Void TComDataCU::initSubCU( TComDataCU *pcCU, UInt uiPartUnitIdx, UInt uiDepth, Int qp )
{
assert( uiPartUnitIdx < 4 );
UInt uiPartOffset = ( pcCU->getTotalNumPart() >> 2 ) * uiPartUnitIdx;
m_pcPic = pcCU->getPic();
m_pcSlice = m_pcPic->getSlice(m_pcPic->getCurrSliceIdx());
m_uiCUAddr = pcCU->getAddr();
m_uiAbsIdxInLCU = pcCU->getZorderIdxInCU() + uiPartOffset;
m_uiCUPelX = pcCU->getCUPelX() + ( g_uiMaxCUWidth >> uiDepth ) * ( uiPartUnitIdx & 1 );
m_uiCUPelY = pcCU->getCUPelY() + ( g_uiMaxCUHeight >> uiDepth ) * ( uiPartUnitIdx >> 1 );
m_dTotalCost = MAX_DOUBLE;
m_uiTotalDistortion = 0;
m_uiTotalBits = 0;
m_uiTotalBins = 0;
m_uiNumPartition = pcCU->getTotalNumPart() >> 2;
Int iSizeInUchar = sizeof( UChar ) * m_uiNumPartition;
Int iSizeInBool = sizeof( Bool ) * m_uiNumPartition;
Int sizeInChar = sizeof( Char ) * m_uiNumPartition;
memset( m_phQP, qp, sizeInChar );
memset( m_pbMergeFlag, 0, iSizeInBool );
memset( m_puhMergeIndex, 0, iSizeInUchar );
memset( m_puhLumaIntraDir, DC_IDX, iSizeInUchar );
memset( m_puhChromaIntraDir, 0, iSizeInUchar );
memset( m_puhInterDir, 0, iSizeInUchar );
memset( m_puhTrIdx, 0, iSizeInUchar );
memset( m_puhTransformSkip[0], 0, iSizeInUchar );
memset( m_puhTransformSkip[1], 0, iSizeInUchar );
memset( m_puhTransformSkip[2], 0, iSizeInUchar );
memset( m_puhCbf[0], 0, iSizeInUchar );
memset( m_puhCbf[1], 0, iSizeInUchar );
memset( m_puhCbf[2], 0, iSizeInUchar );
memset( m_puhDepth, uiDepth, iSizeInUchar );
UChar uhWidth = g_uiMaxCUWidth >> uiDepth;
UChar uhHeight = g_uiMaxCUHeight >> uiDepth;
memset( m_puhWidth, uhWidth, iSizeInUchar );
memset( m_puhHeight, uhHeight, iSizeInUchar );
memset( m_pbIPCMFlag, 0, iSizeInBool );
for (UInt ui = 0; ui < m_uiNumPartition; ui++)
{
m_skipFlag[ui] = false;
m_pePartSize[ui] = SIZE_NONE;
m_pePredMode[ui] = MODE_NONE;
m_CUTransquantBypass[ui] = false;
m_apiMVPIdx[0][ui] = -1;
m_apiMVPIdx[1][ui] = -1;
m_apiMVPNum[0][ui] = -1;
m_apiMVPNum[1][ui] = -1;
if(m_pcPic->getPicSym()->getInverseCUOrderMap(getAddr())*m_pcPic->getNumPartInCU() + m_uiAbsIdxInLCU + ui < getSlice()->getSliceSegmentCurStartCUAddr())
{
m_apiMVPIdx[0][ui] = pcCU->m_apiMVPIdx[0][uiPartOffset + ui];
m_apiMVPIdx[1][ui] = pcCU->m_apiMVPIdx[1][uiPartOffset + ui];;
m_apiMVPNum[0][ui] = pcCU->m_apiMVPNum[0][uiPartOffset + ui];;
m_apiMVPNum[1][ui] = pcCU->m_apiMVPNum[1][uiPartOffset + ui];;
m_puhDepth [ui] = pcCU->getDepth(uiPartOffset + ui);
m_puhWidth [ui] = pcCU->getWidth(uiPartOffset + ui);
m_puhHeight [ui] = pcCU->getHeight(uiPartOffset + ui);
m_puhTrIdx [ui] = pcCU->getTransformIdx(uiPartOffset + ui);
m_puhTransformSkip[0][ui] = pcCU->getTransformSkip(uiPartOffset + ui, TEXT_LUMA);
m_puhTransformSkip[1][ui] = pcCU->getTransformSkip(uiPartOffset + ui, TEXT_CHROMA_U);
m_puhTransformSkip[2][ui] = pcCU->getTransformSkip(uiPartOffset + ui, TEXT_CHROMA_V);
m_skipFlag[ui] = pcCU->getSkipFlag(uiPartOffset + ui);
m_pePartSize[ui] = pcCU->getPartitionSize(uiPartOffset + ui);
m_pePredMode[ui] = pcCU->getPredictionMode(uiPartOffset + ui);
m_CUTransquantBypass[ui] = pcCU->getCUTransquantBypass(uiPartOffset + ui);
m_pbIPCMFlag[ui] = pcCU->m_pbIPCMFlag[uiPartOffset + ui];
m_phQP[ui] = pcCU->m_phQP[uiPartOffset + ui];
m_pbMergeFlag[ui] = pcCU->m_pbMergeFlag[uiPartOffset + ui];
m_puhMergeIndex[ui] = pcCU->m_puhMergeIndex[uiPartOffset + ui];
m_puhLumaIntraDir[ui] = pcCU->m_puhLumaIntraDir[uiPartOffset + ui];
m_puhChromaIntraDir[ui] = pcCU->m_puhChromaIntraDir[uiPartOffset + ui];
m_puhInterDir[ui] = pcCU->m_puhInterDir[uiPartOffset + ui];
m_puhCbf[0][ui] = pcCU->m_puhCbf[0][uiPartOffset + ui];
m_puhCbf[1][ui] = pcCU->m_puhCbf[1][uiPartOffset + ui];
m_puhCbf[2][ui] = pcCU->m_puhCbf[2][uiPartOffset + ui];
}
}
UInt uiTmp = uhWidth * uhHeight;
memset( m_pcTrCoeffY , 0, sizeof(TCoeff)*uiTmp );
#if ADAPTIVE_QP_SELECTION
memset( m_pcArlCoeffY , 0, sizeof(Int)*uiTmp );
#endif
memset( m_pcIPCMSampleY , 0, sizeof( Pel ) * uiTmp );
uiTmp >>= 2;
memset( m_pcTrCoeffCb, 0, sizeof(TCoeff)*uiTmp );
memset( m_pcTrCoeffCr, 0, sizeof(TCoeff)*uiTmp );
#if ADAPTIVE_QP_SELECTION
memset( m_pcArlCoeffCb, 0, sizeof(Int)*uiTmp );
memset( m_pcArlCoeffCr, 0, sizeof(Int)*uiTmp );
#endif
memset( m_pcIPCMSampleCb , 0, sizeof( Pel ) * uiTmp );
memset( m_pcIPCMSampleCr , 0, sizeof( Pel ) * uiTmp );
m_acCUMvField[0].clearMvField();
m_acCUMvField[1].clearMvField();
if(m_pcPic->getPicSym()->getInverseCUOrderMap(getAddr())*m_pcPic->getNumPartInCU() + m_uiAbsIdxInLCU < getSlice()->getSliceSegmentCurStartCUAddr())
{
// Part of this CU contains data from an older slice. Now copy in that data.
UInt uiMaxCuWidth = pcCU->getSlice()->getSPS()->getMaxCUWidth();
UInt uiMaxCuHeight = pcCU->getSlice()->getSPS()->getMaxCUHeight();
TComDataCU *bigCU = getPic()->getCU(getAddr());
Int minui = uiPartOffset;
minui = -minui;
pcCU->m_acCUMvField[0].copyTo(&m_acCUMvField[0], minui, uiPartOffset, m_uiNumPartition);
pcCU->m_acCUMvField[1].copyTo(&m_acCUMvField[1], minui, uiPartOffset, m_uiNumPartition);
UInt uiCoffOffset = uiMaxCuWidth * uiMaxCuHeight * m_uiAbsIdxInLCU / pcCU->getPic()->getNumPartInCU();
uiTmp = uhWidth * uhHeight;
for(Int i = 0; i < uiTmp; i++)
{
m_pcTrCoeffY[i] = bigCU->m_pcTrCoeffY[uiCoffOffset + i];
#if ADAPTIVE_QP_SELECTION
m_pcArlCoeffY[i] = bigCU->m_pcArlCoeffY[uiCoffOffset + i];
#endif
m_pcIPCMSampleY[i] = bigCU->m_pcIPCMSampleY[uiCoffOffset + i];
}
uiTmp >>= 2;
uiCoffOffset >>= 2;
for(Int i = 0; i < uiTmp; i++)
{
m_pcTrCoeffCr[i] = bigCU->m_pcTrCoeffCr[uiCoffOffset + i];
m_pcTrCoeffCb[i] = bigCU->m_pcTrCoeffCb[uiCoffOffset + i];
#if ADAPTIVE_QP_SELECTION
m_pcArlCoeffCr[i] = bigCU->m_pcArlCoeffCr[uiCoffOffset + i];
m_pcArlCoeffCb[i] = bigCU->m_pcArlCoeffCb[uiCoffOffset + i];
#endif
m_pcIPCMSampleCb[i] = bigCU->m_pcIPCMSampleCb[uiCoffOffset + i];
m_pcIPCMSampleCr[i] = bigCU->m_pcIPCMSampleCr[uiCoffOffset + i];
}
}
m_pcCULeft = pcCU->getCULeft();
m_pcCUAbove = pcCU->getCUAbove();
m_pcCUAboveLeft = pcCU->getCUAboveLeft();
m_pcCUAboveRight = pcCU->getCUAboveRight();
m_apcCUColocated[0] = pcCU->getCUColocated(REF_PIC_LIST_0);
m_apcCUColocated[1] = pcCU->getCUColocated(REF_PIC_LIST_1);
memcpy(m_sliceStartCU, pcCU->m_sliceStartCU + uiPartOffset, sizeof(UInt)*m_uiNumPartition);
memcpy(m_sliceSegmentStartCU, pcCU->m_sliceSegmentStartCU + uiPartOffset, sizeof(UInt)*m_uiNumPartition);
}
Void TComDataCU::setOutsideCUPart( UInt uiAbsPartIdx, UInt uiDepth )
{
UInt uiNumPartition = m_uiNumPartition >> (uiDepth << 1);
UInt uiSizeInUchar = sizeof( UChar ) * uiNumPartition;
UChar uhWidth = g_uiMaxCUWidth >> uiDepth;
UChar uhHeight = g_uiMaxCUHeight >> uiDepth;
memset( m_puhDepth + uiAbsPartIdx, uiDepth, uiSizeInUchar );
memset( m_puhWidth + uiAbsPartIdx, uhWidth, uiSizeInUchar );
memset( m_puhHeight + uiAbsPartIdx, uhHeight, uiSizeInUchar );
}
// --------------------------------------------------------------------------------------------------------------------
// Copy
// --------------------------------------------------------------------------------------------------------------------
Void TComDataCU::copySubCU( TComDataCU *pcCU, UInt uiAbsPartIdx, UInt uiDepth )
{
UInt uiPart = uiAbsPartIdx;
m_pcPic = pcCU->getPic();
m_pcSlice = pcCU->getSlice();
m_uiCUAddr = pcCU->getAddr();
m_uiAbsIdxInLCU = uiAbsPartIdx;
m_uiCUPelX = pcCU->getCUPelX() + g_auiRasterToPelX[ g_auiZscanToRaster[uiAbsPartIdx] ];
m_uiCUPelY = pcCU->getCUPelY() + g_auiRasterToPelY[ g_auiZscanToRaster[uiAbsPartIdx] ];
UInt uiWidth = g_uiMaxCUWidth >> uiDepth;
UInt uiHeight = g_uiMaxCUHeight >> uiDepth;
m_skipFlag = pcCU->getSkipFlag() + uiPart;
m_phQP = pcCU->getQP() + uiPart;
m_pePartSize = pcCU->getPartitionSize() + uiPart;
m_pePredMode = pcCU->getPredictionMode() + uiPart;
m_CUTransquantBypass = pcCU->getCUTransquantBypass() + uiPart;
m_pbMergeFlag = pcCU->getMergeFlag() + uiPart;
m_puhMergeIndex = pcCU->getMergeIndex() + uiPart;
m_puhLumaIntraDir = pcCU->getLumaIntraDir() + uiPart;
m_puhChromaIntraDir = pcCU->getChromaIntraDir() + uiPart;
m_puhInterDir = pcCU->getInterDir() + uiPart;
m_puhTrIdx = pcCU->getTransformIdx() + uiPart;
m_puhTransformSkip[0] = pcCU->getTransformSkip(TEXT_LUMA) + uiPart;
m_puhTransformSkip[1] = pcCU->getTransformSkip(TEXT_CHROMA_U) + uiPart;
m_puhTransformSkip[2] = pcCU->getTransformSkip(TEXT_CHROMA_V) + uiPart;
m_puhCbf[0] = pcCU->getCbf(TEXT_LUMA) + uiPart;
m_puhCbf[1] = pcCU->getCbf(TEXT_CHROMA_U) + uiPart;
m_puhCbf[2] = pcCU->getCbf(TEXT_CHROMA_V) + uiPart;
m_puhDepth = pcCU->getDepth() + uiPart;
m_puhWidth = pcCU->getWidth() + uiPart;
m_puhHeight = pcCU->getHeight() + uiPart;
m_apiMVPIdx[0] = pcCU->getMVPIdx(REF_PIC_LIST_0) + uiPart;
m_apiMVPIdx[1] = pcCU->getMVPIdx(REF_PIC_LIST_1) + uiPart;
m_apiMVPNum[0] = pcCU->getMVPNum(REF_PIC_LIST_0) + uiPart;
m_apiMVPNum[1] = pcCU->getMVPNum(REF_PIC_LIST_1) + uiPart;
m_pbIPCMFlag = pcCU->getIPCMFlag() + uiPart;
m_pcCUAboveLeft = pcCU->getCUAboveLeft();
m_pcCUAboveRight = pcCU->getCUAboveRight();
m_pcCUAbove = pcCU->getCUAbove();
m_pcCULeft = pcCU->getCULeft();
m_apcCUColocated[0] = pcCU->getCUColocated(REF_PIC_LIST_0);
m_apcCUColocated[1] = pcCU->getCUColocated(REF_PIC_LIST_1);
UInt uiTmp = uiWidth * uiHeight;
UInt uiMaxCuWidth = pcCU->getSlice()->getSPS()->getMaxCUWidth();
UInt uiMaxCuHeight = pcCU->getSlice()->getSPS()->getMaxCUHeight();
UInt uiCoffOffset = uiMaxCuWidth * uiMaxCuHeight * uiAbsPartIdx / pcCU->getPic()->getNumPartInCU();
m_pcTrCoeffY = pcCU->getCoeffY() + uiCoffOffset;
#if ADAPTIVE_QP_SELECTION
m_pcArlCoeffY = pcCU->getArlCoeffY() + uiCoffOffset;
#endif
m_pcIPCMSampleY = pcCU->getPCMSampleY() + uiCoffOffset;
uiTmp >>= 2;
uiCoffOffset >>= 2;
m_pcTrCoeffCb = pcCU->getCoeffCb() + uiCoffOffset;
m_pcTrCoeffCr = pcCU->getCoeffCr() + uiCoffOffset;
#if ADAPTIVE_QP_SELECTION
m_pcArlCoeffCb = pcCU->getArlCoeffCb() + uiCoffOffset;
m_pcArlCoeffCr = pcCU->getArlCoeffCr() + uiCoffOffset;
#endif
m_pcIPCMSampleCb = pcCU->getPCMSampleCb() + uiCoffOffset;
m_pcIPCMSampleCr = pcCU->getPCMSampleCr() + uiCoffOffset;
m_acCUMvField[0].linkToWithOffset( pcCU->getCUMvField(REF_PIC_LIST_0), uiPart );
m_acCUMvField[1].linkToWithOffset( pcCU->getCUMvField(REF_PIC_LIST_1), uiPart );
memcpy(m_sliceStartCU, pcCU->m_sliceStartCU + uiPart, sizeof(UInt)*m_uiNumPartition);
memcpy(m_sliceSegmentStartCU, pcCU->m_sliceSegmentStartCU + uiPart, sizeof(UInt)*m_uiNumPartition);
}
// Copy inter prediction info from the biggest CU
Void TComDataCU::copyInterPredInfoFrom ( TComDataCU *pcCU, UInt uiAbsPartIdx, RefPicList eRefPicList )
{
m_pcPic = pcCU->getPic();
m_pcSlice = pcCU->getSlice();
m_uiCUAddr = pcCU->getAddr();
m_uiAbsIdxInLCU = uiAbsPartIdx;
Int iRastPartIdx = g_auiZscanToRaster[uiAbsPartIdx];
m_uiCUPelX = pcCU->getCUPelX() + m_pcPic->getMinCUWidth () * ( iRastPartIdx % m_pcPic->getNumPartInWidth() );
m_uiCUPelY = pcCU->getCUPelY() + m_pcPic->getMinCUHeight() * ( iRastPartIdx / m_pcPic->getNumPartInWidth() );
m_pcCUAboveLeft = pcCU->getCUAboveLeft();
m_pcCUAboveRight = pcCU->getCUAboveRight();
m_pcCUAbove = pcCU->getCUAbove();
m_pcCULeft = pcCU->getCULeft();
m_apcCUColocated[0] = pcCU->getCUColocated(REF_PIC_LIST_0);
m_apcCUColocated[1] = pcCU->getCUColocated(REF_PIC_LIST_1);
m_skipFlag = pcCU->getSkipFlag () + uiAbsPartIdx;
m_pePartSize = pcCU->getPartitionSize () + uiAbsPartIdx;
m_pePredMode = pcCU->getPredictionMode() + uiAbsPartIdx;
m_CUTransquantBypass = pcCU->getCUTransquantBypass() + uiAbsPartIdx;
m_puhInterDir = pcCU->getInterDir () + uiAbsPartIdx;
m_puhDepth = pcCU->getDepth () + uiAbsPartIdx;
m_puhWidth = pcCU->getWidth () + uiAbsPartIdx;
m_puhHeight = pcCU->getHeight() + uiAbsPartIdx;
m_pbMergeFlag = pcCU->getMergeFlag() + uiAbsPartIdx;
m_puhMergeIndex = pcCU->getMergeIndex() + uiAbsPartIdx;
m_apiMVPIdx[eRefPicList] = pcCU->getMVPIdx(eRefPicList) + uiAbsPartIdx;
m_apiMVPNum[eRefPicList] = pcCU->getMVPNum(eRefPicList) + uiAbsPartIdx;
m_acCUMvField[ eRefPicList ].linkToWithOffset( pcCU->getCUMvField(eRefPicList), uiAbsPartIdx );
memcpy(m_sliceStartCU, pcCU->m_sliceStartCU + uiAbsPartIdx, sizeof(UInt)*m_uiNumPartition);
memcpy(m_sliceSegmentStartCU, pcCU->m_sliceSegmentStartCU + uiAbsPartIdx, sizeof(UInt)*m_uiNumPartition);
}
// Copy small CU to bigger CU.
// One of quarter parts overwritten by predicted sub part.
Void TComDataCU::copyPartFrom( TComDataCU *pcCU, UInt uiPartUnitIdx, UInt uiDepth )
{
assert( uiPartUnitIdx < 4 );
m_dTotalCost += pcCU->getTotalCost();
m_uiTotalDistortion += pcCU->getTotalDistortion();
m_uiTotalBits += pcCU->getTotalBits();
UInt uiOffset = pcCU->getTotalNumPart() * uiPartUnitIdx;
UInt uiNumPartition = pcCU->getTotalNumPart();
Int iSizeInUchar = sizeof( UChar ) * uiNumPartition;
Int iSizeInBool = sizeof( Bool ) * uiNumPartition;
Int sizeInChar = sizeof( Char ) * uiNumPartition;
memcpy( m_skipFlag + uiOffset, pcCU->getSkipFlag(), sizeof( *m_skipFlag ) * uiNumPartition );
memcpy( m_phQP + uiOffset, pcCU->getQP(), sizeInChar );
memcpy( m_pePartSize + uiOffset, pcCU->getPartitionSize(), sizeof( *m_pePartSize ) * uiNumPartition );
memcpy( m_pePredMode + uiOffset, pcCU->getPredictionMode(), sizeof( *m_pePredMode ) * uiNumPartition );
memcpy( m_CUTransquantBypass + uiOffset, pcCU->getCUTransquantBypass(), sizeof( *m_CUTransquantBypass ) * uiNumPartition );
memcpy( m_pbMergeFlag + uiOffset, pcCU->getMergeFlag(), iSizeInBool );
memcpy( m_puhMergeIndex + uiOffset, pcCU->getMergeIndex(), iSizeInUchar );
memcpy( m_puhLumaIntraDir + uiOffset, pcCU->getLumaIntraDir(), iSizeInUchar );
memcpy( m_puhChromaIntraDir + uiOffset, pcCU->getChromaIntraDir(), iSizeInUchar );
memcpy( m_puhInterDir + uiOffset, pcCU->getInterDir(), iSizeInUchar );
memcpy( m_puhTrIdx + uiOffset, pcCU->getTransformIdx(), iSizeInUchar );
memcpy( m_puhTransformSkip[0] + uiOffset, pcCU->getTransformSkip(TEXT_LUMA), iSizeInUchar );
memcpy( m_puhTransformSkip[1] + uiOffset, pcCU->getTransformSkip(TEXT_CHROMA_U), iSizeInUchar );
memcpy( m_puhTransformSkip[2] + uiOffset, pcCU->getTransformSkip(TEXT_CHROMA_V), iSizeInUchar );
memcpy( m_puhCbf[0] + uiOffset, pcCU->getCbf(TEXT_LUMA) , iSizeInUchar );
memcpy( m_puhCbf[1] + uiOffset, pcCU->getCbf(TEXT_CHROMA_U), iSizeInUchar );
memcpy( m_puhCbf[2] + uiOffset, pcCU->getCbf(TEXT_CHROMA_V), iSizeInUchar );
memcpy( m_puhDepth + uiOffset, pcCU->getDepth(), iSizeInUchar );
memcpy( m_puhWidth + uiOffset, pcCU->getWidth(), iSizeInUchar );
memcpy( m_puhHeight + uiOffset, pcCU->getHeight(), iSizeInUchar );
memcpy( m_apiMVPIdx[0] + uiOffset, pcCU->getMVPIdx(REF_PIC_LIST_0), iSizeInUchar );
memcpy( m_apiMVPIdx[1] + uiOffset, pcCU->getMVPIdx(REF_PIC_LIST_1), iSizeInUchar );
memcpy( m_apiMVPNum[0] + uiOffset, pcCU->getMVPNum(REF_PIC_LIST_0), iSizeInUchar );
memcpy( m_apiMVPNum[1] + uiOffset, pcCU->getMVPNum(REF_PIC_LIST_1), iSizeInUchar );
memcpy( m_pbIPCMFlag + uiOffset, pcCU->getIPCMFlag(), iSizeInBool );
m_pcCUAboveLeft = pcCU->getCUAboveLeft();
m_pcCUAboveRight = pcCU->getCUAboveRight();
m_pcCUAbove = pcCU->getCUAbove();
m_pcCULeft = pcCU->getCULeft();
m_apcCUColocated[0] = pcCU->getCUColocated(REF_PIC_LIST_0);
m_apcCUColocated[1] = pcCU->getCUColocated(REF_PIC_LIST_1);
m_acCUMvField[0].copyFrom( pcCU->getCUMvField( REF_PIC_LIST_0 ), pcCU->getTotalNumPart(), uiOffset );
m_acCUMvField[1].copyFrom( pcCU->getCUMvField( REF_PIC_LIST_1 ), pcCU->getTotalNumPart(), uiOffset );
UInt uiTmp = g_uiMaxCUWidth * g_uiMaxCUHeight >> (uiDepth << 1);
UInt uiTmp2 = uiPartUnitIdx * uiTmp;
memcpy( m_pcTrCoeffY + uiTmp2, pcCU->getCoeffY(), sizeof(TCoeff)*uiTmp );
#if ADAPTIVE_QP_SELECTION
memcpy( m_pcArlCoeffY + uiTmp2, pcCU->getArlCoeffY(), sizeof(Int)*uiTmp );
#endif
memcpy( m_pcIPCMSampleY + uiTmp2 , pcCU->getPCMSampleY(), sizeof(Pel) * uiTmp );
uiTmp >>= 2;
uiTmp2 >>= 2;
memcpy( m_pcTrCoeffCb + uiTmp2, pcCU->getCoeffCb(), sizeof(TCoeff)*uiTmp );
memcpy( m_pcTrCoeffCr + uiTmp2, pcCU->getCoeffCr(), sizeof(TCoeff)*uiTmp );
#if ADAPTIVE_QP_SELECTION
memcpy( m_pcArlCoeffCb + uiTmp2, pcCU->getArlCoeffCb(), sizeof(Int)*uiTmp );
memcpy( m_pcArlCoeffCr + uiTmp2, pcCU->getArlCoeffCr(), sizeof(Int)*uiTmp );
#endif
memcpy( m_pcIPCMSampleCb + uiTmp2 , pcCU->getPCMSampleCb(), sizeof(Pel) * uiTmp );
memcpy( m_pcIPCMSampleCr + uiTmp2 , pcCU->getPCMSampleCr(), sizeof(Pel) * uiTmp );
m_uiTotalBins += pcCU->getTotalBins();
memcpy( m_sliceStartCU + uiOffset, pcCU->m_sliceStartCU, sizeof( UInt ) * uiNumPartition );
memcpy( m_sliceSegmentStartCU + uiOffset, pcCU->m_sliceSegmentStartCU, sizeof( UInt ) * uiNumPartition );
}
// Copy current predicted part to a CU in picture.
// It is used to predict for next part
Void TComDataCU::copyToPic( UChar uhDepth )
{
TComDataCU *&rpcCU = m_pcPic->getCU( m_uiCUAddr );
rpcCU->getTotalCost() = m_dTotalCost;
rpcCU->getTotalDistortion() = m_uiTotalDistortion;
rpcCU->getTotalBits() = m_uiTotalBits;
Int iSizeInUchar = sizeof( UChar ) * m_uiNumPartition;
Int iSizeInBool = sizeof( Bool ) * m_uiNumPartition;
Int sizeInChar = sizeof( Char ) * m_uiNumPartition;
memcpy( rpcCU->getSkipFlag() + m_uiAbsIdxInLCU, m_skipFlag, sizeof( *m_skipFlag ) * m_uiNumPartition );
memcpy( rpcCU->getQP() + m_uiAbsIdxInLCU, m_phQP, sizeInChar );
memcpy( rpcCU->getPartitionSize() + m_uiAbsIdxInLCU, m_pePartSize, sizeof( *m_pePartSize ) * m_uiNumPartition );
memcpy( rpcCU->getPredictionMode() + m_uiAbsIdxInLCU, m_pePredMode, sizeof( *m_pePredMode ) * m_uiNumPartition );
memcpy( rpcCU->getCUTransquantBypass() + m_uiAbsIdxInLCU, m_CUTransquantBypass, sizeof( *m_CUTransquantBypass ) * m_uiNumPartition );
memcpy( rpcCU->getMergeFlag() + m_uiAbsIdxInLCU, m_pbMergeFlag, iSizeInBool );
memcpy( rpcCU->getMergeIndex() + m_uiAbsIdxInLCU, m_puhMergeIndex, iSizeInUchar );
memcpy( rpcCU->getLumaIntraDir() + m_uiAbsIdxInLCU, m_puhLumaIntraDir, iSizeInUchar );
memcpy( rpcCU->getChromaIntraDir() + m_uiAbsIdxInLCU, m_puhChromaIntraDir, iSizeInUchar );
memcpy( rpcCU->getInterDir() + m_uiAbsIdxInLCU, m_puhInterDir, iSizeInUchar );
memcpy( rpcCU->getTransformIdx() + m_uiAbsIdxInLCU, m_puhTrIdx, iSizeInUchar );
memcpy( rpcCU->getTransformSkip(TEXT_LUMA) + m_uiAbsIdxInLCU, m_puhTransformSkip[0], iSizeInUchar );
memcpy( rpcCU->getTransformSkip(TEXT_CHROMA_U) + m_uiAbsIdxInLCU, m_puhTransformSkip[1], iSizeInUchar );
memcpy( rpcCU->getTransformSkip(TEXT_CHROMA_V) + m_uiAbsIdxInLCU, m_puhTransformSkip[2], iSizeInUchar );
memcpy( rpcCU->getCbf(TEXT_LUMA) + m_uiAbsIdxInLCU, m_puhCbf[0], iSizeInUchar );
memcpy( rpcCU->getCbf(TEXT_CHROMA_U) + m_uiAbsIdxInLCU, m_puhCbf[1], iSizeInUchar );
memcpy( rpcCU->getCbf(TEXT_CHROMA_V) + m_uiAbsIdxInLCU, m_puhCbf[2], iSizeInUchar );
memcpy( rpcCU->getDepth() + m_uiAbsIdxInLCU, m_puhDepth, iSizeInUchar );
memcpy( rpcCU->getWidth() + m_uiAbsIdxInLCU, m_puhWidth, iSizeInUchar );
memcpy( rpcCU->getHeight() + m_uiAbsIdxInLCU, m_puhHeight, iSizeInUchar );
memcpy( rpcCU->getMVPIdx(REF_PIC_LIST_0) + m_uiAbsIdxInLCU, m_apiMVPIdx[0], iSizeInUchar );
memcpy( rpcCU->getMVPIdx(REF_PIC_LIST_1) + m_uiAbsIdxInLCU, m_apiMVPIdx[1], iSizeInUchar );
memcpy( rpcCU->getMVPNum(REF_PIC_LIST_0) + m_uiAbsIdxInLCU, m_apiMVPNum[0], iSizeInUchar );
memcpy( rpcCU->getMVPNum(REF_PIC_LIST_1) + m_uiAbsIdxInLCU, m_apiMVPNum[1], iSizeInUchar );
m_acCUMvField[0].copyTo( rpcCU->getCUMvField( REF_PIC_LIST_0 ), m_uiAbsIdxInLCU );
m_acCUMvField[1].copyTo( rpcCU->getCUMvField( REF_PIC_LIST_1 ), m_uiAbsIdxInLCU );
memcpy( rpcCU->getIPCMFlag() + m_uiAbsIdxInLCU, m_pbIPCMFlag, iSizeInBool );
UInt uiTmp = (g_uiMaxCUWidth * g_uiMaxCUHeight) >> (uhDepth << 1);
UInt uiTmp2 = m_uiAbsIdxInLCU * m_pcPic->getMinCUWidth() * m_pcPic->getMinCUHeight();
memcpy( rpcCU->getCoeffY() + uiTmp2, m_pcTrCoeffY, sizeof(TCoeff)*uiTmp );
#if ADAPTIVE_QP_SELECTION
memcpy( rpcCU->getArlCoeffY() + uiTmp2, m_pcArlCoeffY, sizeof(Int)*uiTmp );
#endif
memcpy( rpcCU->getPCMSampleY() + uiTmp2 , m_pcIPCMSampleY, sizeof(Pel)*uiTmp );
uiTmp >>= 2;
uiTmp2 >>= 2;
memcpy( rpcCU->getCoeffCb() + uiTmp2, m_pcTrCoeffCb, sizeof(TCoeff)*uiTmp );
memcpy( rpcCU->getCoeffCr() + uiTmp2, m_pcTrCoeffCr, sizeof(TCoeff)*uiTmp );
#if ADAPTIVE_QP_SELECTION
memcpy( rpcCU->getArlCoeffCb() + uiTmp2, m_pcArlCoeffCb, sizeof(Int)*uiTmp );
memcpy( rpcCU->getArlCoeffCr() + uiTmp2, m_pcArlCoeffCr, sizeof(Int)*uiTmp );
#endif
memcpy( rpcCU->getPCMSampleCb() + uiTmp2 , m_pcIPCMSampleCb, sizeof( Pel ) * uiTmp );
memcpy( rpcCU->getPCMSampleCr() + uiTmp2 , m_pcIPCMSampleCr, sizeof( Pel ) * uiTmp );
rpcCU->getTotalBins() = m_uiTotalBins;
memcpy( rpcCU->m_sliceStartCU + m_uiAbsIdxInLCU, m_sliceStartCU, sizeof( UInt ) * m_uiNumPartition );
memcpy( rpcCU->m_sliceSegmentStartCU + m_uiAbsIdxInLCU, m_sliceSegmentStartCU, sizeof( UInt ) * m_uiNumPartition );
}
Void TComDataCU::copyToPic( UChar uhDepth, UInt uiPartIdx, UInt uiPartDepth )
{
TComDataCU *&rpcCU = m_pcPic->getCU( m_uiCUAddr );
UInt uiQNumPart = m_uiNumPartition >> (uiPartDepth << 1);
UInt uiPartStart = uiPartIdx * uiQNumPart;
UInt uiPartOffset = m_uiAbsIdxInLCU + uiPartStart;
rpcCU->getTotalCost() = m_dTotalCost;
rpcCU->getTotalDistortion() = m_uiTotalDistortion;
rpcCU->getTotalBits() = m_uiTotalBits;
Int iSizeInUchar = sizeof( UChar ) * uiQNumPart;
Int iSizeInBool = sizeof( Bool ) * uiQNumPart;
Int sizeInChar = sizeof( Char ) * uiQNumPart;
memcpy( rpcCU->getSkipFlag() + uiPartOffset, m_skipFlag, sizeof( *m_skipFlag ) * uiQNumPart );
memcpy( rpcCU->getQP() + uiPartOffset, m_phQP, sizeInChar );
memcpy( rpcCU->getPartitionSize() + uiPartOffset, m_pePartSize, sizeof( *m_pePartSize ) * uiQNumPart );
memcpy( rpcCU->getPredictionMode() + uiPartOffset, m_pePredMode, sizeof( *m_pePredMode ) * uiQNumPart );
memcpy( rpcCU->getCUTransquantBypass() + uiPartOffset, m_CUTransquantBypass, sizeof( *m_CUTransquantBypass ) * uiQNumPart );
memcpy( rpcCU->getMergeFlag() + uiPartOffset, m_pbMergeFlag, iSizeInBool );
memcpy( rpcCU->getMergeIndex() + uiPartOffset, m_puhMergeIndex, iSizeInUchar );
memcpy( rpcCU->getLumaIntraDir() + uiPartOffset, m_puhLumaIntraDir, iSizeInUchar );
memcpy( rpcCU->getChromaIntraDir() + uiPartOffset, m_puhChromaIntraDir, iSizeInUchar );
memcpy( rpcCU->getInterDir() + uiPartOffset, m_puhInterDir, iSizeInUchar );
memcpy( rpcCU->getTransformIdx() + uiPartOffset, m_puhTrIdx, iSizeInUchar );
memcpy( rpcCU->getTransformSkip(TEXT_LUMA) + uiPartOffset, m_puhTransformSkip[0], iSizeInUchar );
memcpy( rpcCU->getTransformSkip(TEXT_CHROMA_U) + uiPartOffset, m_puhTransformSkip[1], iSizeInUchar );
memcpy( rpcCU->getTransformSkip(TEXT_CHROMA_V) + uiPartOffset, m_puhTransformSkip[2], iSizeInUchar );
memcpy( rpcCU->getCbf(TEXT_LUMA) + uiPartOffset, m_puhCbf[0], iSizeInUchar );
memcpy( rpcCU->getCbf(TEXT_CHROMA_U) + uiPartOffset, m_puhCbf[1], iSizeInUchar );
memcpy( rpcCU->getCbf(TEXT_CHROMA_V) + uiPartOffset, m_puhCbf[2], iSizeInUchar );
memcpy( rpcCU->getDepth() + uiPartOffset, m_puhDepth, iSizeInUchar );
memcpy( rpcCU->getWidth() + uiPartOffset, m_puhWidth, iSizeInUchar );
memcpy( rpcCU->getHeight() + uiPartOffset, m_puhHeight, iSizeInUchar );
memcpy( rpcCU->getMVPIdx(REF_PIC_LIST_0) + uiPartOffset, m_apiMVPIdx[0], iSizeInUchar );
memcpy( rpcCU->getMVPIdx(REF_PIC_LIST_1) + uiPartOffset, m_apiMVPIdx[1], iSizeInUchar );
memcpy( rpcCU->getMVPNum(REF_PIC_LIST_0) + uiPartOffset, m_apiMVPNum[0], iSizeInUchar );
memcpy( rpcCU->getMVPNum(REF_PIC_LIST_1) + uiPartOffset, m_apiMVPNum[1], iSizeInUchar );
m_acCUMvField[0].copyTo( rpcCU->getCUMvField( REF_PIC_LIST_0 ), m_uiAbsIdxInLCU, uiPartStart, uiQNumPart );
m_acCUMvField[1].copyTo( rpcCU->getCUMvField( REF_PIC_LIST_1 ), m_uiAbsIdxInLCU, uiPartStart, uiQNumPart );
memcpy( rpcCU->getIPCMFlag() + uiPartOffset, m_pbIPCMFlag, iSizeInBool );
UInt uiTmp = (g_uiMaxCUWidth * g_uiMaxCUHeight) >> ((uhDepth + uiPartDepth) << 1);
UInt uiTmp2 = uiPartOffset * m_pcPic->getMinCUWidth() * m_pcPic->getMinCUHeight();
memcpy( rpcCU->getCoeffY() + uiTmp2, m_pcTrCoeffY, sizeof(TCoeff)*uiTmp );
#if ADAPTIVE_QP_SELECTION
memcpy( rpcCU->getArlCoeffY() + uiTmp2, m_pcArlCoeffY, sizeof(Int)*uiTmp );
#endif
memcpy( rpcCU->getPCMSampleY() + uiTmp2 , m_pcIPCMSampleY, sizeof( Pel ) * uiTmp );
uiTmp >>= 2;
uiTmp2 >>= 2;
memcpy( rpcCU->getCoeffCb() + uiTmp2, m_pcTrCoeffCb, sizeof(TCoeff)*uiTmp );
memcpy( rpcCU->getCoeffCr() + uiTmp2, m_pcTrCoeffCr, sizeof(TCoeff)*uiTmp );
#if ADAPTIVE_QP_SELECTION
memcpy( rpcCU->getArlCoeffCb() + uiTmp2, m_pcArlCoeffCb, sizeof(Int)*uiTmp );
memcpy( rpcCU->getArlCoeffCr() + uiTmp2, m_pcArlCoeffCr, sizeof(Int)*uiTmp );
#endif
memcpy( rpcCU->getPCMSampleCb() + uiTmp2 , m_pcIPCMSampleCb, sizeof( Pel ) * uiTmp );
memcpy( rpcCU->getPCMSampleCr() + uiTmp2 , m_pcIPCMSampleCr, sizeof( Pel ) * uiTmp );
rpcCU->getTotalBins() = m_uiTotalBins;
memcpy( rpcCU->m_sliceStartCU + uiPartOffset, m_sliceStartCU, sizeof( UInt ) * uiQNumPart );
memcpy( rpcCU->m_sliceSegmentStartCU + uiPartOffset, m_sliceSegmentStartCU, sizeof( UInt ) * uiQNumPart );
}
// --------------------------------------------------------------------------------------------------------------------
// Other public functions
// --------------------------------------------------------------------------------------------------------------------
TComDataCU *TComDataCU::getPULeft( UInt &uiLPartUnitIdx,
UInt uiCurrPartUnitIdx,
Bool bEnforceSliceRestriction,
Bool bEnforceTileRestriction )
{
UInt uiAbsPartIdx = g_auiZscanToRaster[uiCurrPartUnitIdx];
UInt uiAbsZorderCUIdx = g_auiZscanToRaster[m_uiAbsIdxInLCU];
UInt uiNumPartInCUWidth = m_pcPic->getNumPartInWidth();
if ( !RasterAddress::isZeroCol( uiAbsPartIdx, uiNumPartInCUWidth ) )
{
uiLPartUnitIdx = g_auiRasterToZscan[ uiAbsPartIdx - 1 ];
if ( RasterAddress::isEqualCol( uiAbsPartIdx, uiAbsZorderCUIdx, uiNumPartInCUWidth ) )
{
return m_pcPic->getCU( getAddr() );
}
else
{
uiLPartUnitIdx -= m_uiAbsIdxInLCU;
return this;
}
}
uiLPartUnitIdx = g_auiRasterToZscan[ uiAbsPartIdx + uiNumPartInCUWidth - 1 ];
if ( (bEnforceSliceRestriction && (m_pcCULeft == NULL || m_pcCULeft->getSlice() == NULL || m_pcCULeft->getSCUAddr() + uiLPartUnitIdx < m_pcPic->getCU( getAddr() )->getSliceStartCU(uiCurrPartUnitIdx)))
||
(bEnforceTileRestriction && ( m_pcCULeft == NULL || m_pcCULeft->getSlice() == NULL || (m_pcPic->getPicSym()->getTileIdxMap( m_pcCULeft->getAddr() ) != m_pcPic->getPicSym()->getTileIdxMap(getAddr())) ) )
)
{
return NULL;
}
return m_pcCULeft;
}
TComDataCU *TComDataCU::getPUAbove( UInt &uiAPartUnitIdx,
UInt uiCurrPartUnitIdx,
Bool bEnforceSliceRestriction,
Bool planarAtLCUBoundary ,
Bool bEnforceTileRestriction )
{
UInt uiAbsPartIdx = g_auiZscanToRaster[uiCurrPartUnitIdx];
UInt uiAbsZorderCUIdx = g_auiZscanToRaster[m_uiAbsIdxInLCU];
UInt uiNumPartInCUWidth = m_pcPic->getNumPartInWidth();
if ( !RasterAddress::isZeroRow( uiAbsPartIdx, uiNumPartInCUWidth ) )
{
uiAPartUnitIdx = g_auiRasterToZscan[ uiAbsPartIdx - uiNumPartInCUWidth ];
if ( RasterAddress::isEqualRow( uiAbsPartIdx, uiAbsZorderCUIdx, uiNumPartInCUWidth ) )
{
return m_pcPic->getCU( getAddr() );
}
else
{
uiAPartUnitIdx -= m_uiAbsIdxInLCU;
return this;
}
}
if(planarAtLCUBoundary)
{
return NULL;
}
uiAPartUnitIdx = g_auiRasterToZscan[ uiAbsPartIdx + m_pcPic->getNumPartInCU() - uiNumPartInCUWidth ];
if ( (bEnforceSliceRestriction && (m_pcCUAbove == NULL || m_pcCUAbove->getSlice() == NULL || m_pcCUAbove->getSCUAddr() + uiAPartUnitIdx < m_pcPic->getCU( getAddr() )->getSliceStartCU(uiCurrPartUnitIdx)))
||
(bEnforceTileRestriction && (m_pcCUAbove == NULL || m_pcCUAbove->getSlice() == NULL || (m_pcPic->getPicSym()->getTileIdxMap( m_pcCUAbove->getAddr() ) != m_pcPic->getPicSym()->getTileIdxMap(getAddr()))))
)
{
return NULL;
}
return m_pcCUAbove;
}
TComDataCU *TComDataCU::getPUAboveLeft( UInt &uiALPartUnitIdx, UInt uiCurrPartUnitIdx, Bool bEnforceSliceRestriction )
{
UInt uiAbsPartIdx = g_auiZscanToRaster[uiCurrPartUnitIdx];
UInt uiAbsZorderCUIdx = g_auiZscanToRaster[m_uiAbsIdxInLCU];
UInt uiNumPartInCUWidth = m_pcPic->getNumPartInWidth();
if ( !RasterAddress::isZeroCol( uiAbsPartIdx, uiNumPartInCUWidth ) )
{
if ( !RasterAddress::isZeroRow( uiAbsPartIdx, uiNumPartInCUWidth ) )
{
uiALPartUnitIdx = g_auiRasterToZscan[ uiAbsPartIdx - uiNumPartInCUWidth - 1 ];
if ( RasterAddress::isEqualRowOrCol( uiAbsPartIdx, uiAbsZorderCUIdx, uiNumPartInCUWidth ) )
{
return m_pcPic->getCU( getAddr() );
}
else
{
uiALPartUnitIdx -= m_uiAbsIdxInLCU;
return this;
}
}
uiALPartUnitIdx = g_auiRasterToZscan[ uiAbsPartIdx + getPic()->getNumPartInCU() - uiNumPartInCUWidth - 1 ];
if ( (bEnforceSliceRestriction && (m_pcCUAbove == NULL || m_pcCUAbove->getSlice() == NULL ||
m_pcCUAbove->getSCUAddr() + uiALPartUnitIdx < m_pcPic->getCU( getAddr() )->getSliceStartCU(uiCurrPartUnitIdx) ||
(m_pcPic->getPicSym()->getTileIdxMap( m_pcCUAbove->getAddr() ) != m_pcPic->getPicSym()->getTileIdxMap(getAddr()))
))
)
{
return NULL;
}
return m_pcCUAbove;
}
if ( !RasterAddress::isZeroRow( uiAbsPartIdx, uiNumPartInCUWidth ) )
{
uiALPartUnitIdx = g_auiRasterToZscan[ uiAbsPartIdx - 1 ];
if ( (bEnforceSliceRestriction && (m_pcCULeft == NULL || m_pcCULeft->getSlice() == NULL ||
m_pcCULeft->getSCUAddr() + uiALPartUnitIdx < m_pcPic->getCU( getAddr() )->getSliceStartCU(uiCurrPartUnitIdx) ||
(m_pcPic->getPicSym()->getTileIdxMap( m_pcCULeft->getAddr() ) != m_pcPic->getPicSym()->getTileIdxMap(getAddr()))
))
)
{
return NULL;
}
return m_pcCULeft;
}
uiALPartUnitIdx = g_auiRasterToZscan[ m_pcPic->getNumPartInCU() - 1 ];
if ( (bEnforceSliceRestriction && (m_pcCUAboveLeft == NULL || m_pcCUAboveLeft->getSlice() == NULL ||
m_pcCUAboveLeft->getSCUAddr() + uiALPartUnitIdx < m_pcPic->getCU( getAddr() )->getSliceStartCU(uiCurrPartUnitIdx) ||
(m_pcPic->getPicSym()->getTileIdxMap( m_pcCUAboveLeft->getAddr() ) != m_pcPic->getPicSym()->getTileIdxMap(getAddr()))
))
)
{
return NULL;
}
return m_pcCUAboveLeft;
}
TComDataCU *TComDataCU::getPUAboveRight( UInt &uiARPartUnitIdx, UInt uiCurrPartUnitIdx, Bool bEnforceSliceRestriction )
{
UInt uiAbsPartIdxRT = g_auiZscanToRaster[uiCurrPartUnitIdx];
UInt uiAbsZorderCUIdx = g_auiZscanToRaster[ m_uiAbsIdxInLCU ] + m_puhWidth[0] / m_pcPic->getMinCUWidth() - 1;
UInt uiNumPartInCUWidth = m_pcPic->getNumPartInWidth();
if( ( m_pcPic->getCU(m_uiCUAddr)->getCUPelX() + g_auiRasterToPelX[uiAbsPartIdxRT] + m_pcPic->getMinCUWidth() ) >= m_pcSlice->getSPS()->getPicWidthInLumaSamples() )
{
uiARPartUnitIdx = MAX_UINT;
return NULL;
}
if ( RasterAddress::lessThanCol( uiAbsPartIdxRT, uiNumPartInCUWidth - 1, uiNumPartInCUWidth ) )
{
if ( !RasterAddress::isZeroRow( uiAbsPartIdxRT, uiNumPartInCUWidth ) )
{
if ( uiCurrPartUnitIdx > g_auiRasterToZscan[ uiAbsPartIdxRT - uiNumPartInCUWidth + 1 ] )
{
uiARPartUnitIdx = g_auiRasterToZscan[ uiAbsPartIdxRT - uiNumPartInCUWidth + 1 ];
if ( RasterAddress::isEqualRowOrCol( uiAbsPartIdxRT, uiAbsZorderCUIdx, uiNumPartInCUWidth ) )
{
return m_pcPic->getCU( getAddr() );
}
else
{
uiARPartUnitIdx -= m_uiAbsIdxInLCU;
return this;
}
}
uiARPartUnitIdx = MAX_UINT;
return NULL;
}
uiARPartUnitIdx = g_auiRasterToZscan[ uiAbsPartIdxRT + m_pcPic->getNumPartInCU() - uiNumPartInCUWidth + 1 ];
if ( (bEnforceSliceRestriction && (m_pcCUAbove == NULL || m_pcCUAbove->getSlice() == NULL ||
m_pcCUAbove->getSCUAddr() + uiARPartUnitIdx < m_pcPic->getCU( getAddr() )->getSliceStartCU(uiCurrPartUnitIdx) ||
(m_pcPic->getPicSym()->getTileIdxMap( m_pcCUAbove->getAddr() ) != m_pcPic->getPicSym()->getTileIdxMap(getAddr()))
))
)
{
return NULL;
}
return m_pcCUAbove;
}
if ( !RasterAddress::isZeroRow( uiAbsPartIdxRT, uiNumPartInCUWidth ) )
{
uiARPartUnitIdx = MAX_UINT;
return NULL;
}
uiARPartUnitIdx = g_auiRasterToZscan[ m_pcPic->getNumPartInCU() - uiNumPartInCUWidth ];
if ( (bEnforceSliceRestriction && (m_pcCUAboveRight == NULL || m_pcCUAboveRight->getSlice() == NULL ||
m_pcPic->getPicSym()->getInverseCUOrderMap( m_pcCUAboveRight->getAddr()) > m_pcPic->getPicSym()->getInverseCUOrderMap( getAddr()) ||
m_pcCUAboveRight->getSCUAddr() + uiARPartUnitIdx < m_pcPic->getCU( getAddr() )->getSliceStartCU(uiCurrPartUnitIdx) ||
(m_pcPic->getPicSym()->getTileIdxMap( m_pcCUAboveRight->getAddr() ) != m_pcPic->getPicSym()->getTileIdxMap(getAddr()))
))
)
{
return NULL;
}
return m_pcCUAboveRight;
}
TComDataCU *TComDataCU::getPUBelowLeft( UInt &uiBLPartUnitIdx, UInt uiCurrPartUnitIdx, Bool bEnforceSliceRestriction )
{
UInt uiAbsPartIdxLB = g_auiZscanToRaster[uiCurrPartUnitIdx];
UInt uiAbsZorderCUIdxLB = g_auiZscanToRaster[ m_uiAbsIdxInLCU ] + (m_puhHeight[0] / m_pcPic->getMinCUHeight() - 1) * m_pcPic->getNumPartInWidth();
UInt uiNumPartInCUWidth = m_pcPic->getNumPartInWidth();
if( ( m_pcPic->getCU(m_uiCUAddr)->getCUPelY() + g_auiRasterToPelY[uiAbsPartIdxLB] + m_pcPic->getMinCUHeight() ) >= m_pcSlice->getSPS()->getPicHeightInLumaSamples() )
{
uiBLPartUnitIdx = MAX_UINT;
return NULL;
}
if ( RasterAddress::lessThanRow( uiAbsPartIdxLB, m_pcPic->getNumPartInHeight() - 1, uiNumPartInCUWidth ) )
{
if ( !RasterAddress::isZeroCol( uiAbsPartIdxLB, uiNumPartInCUWidth ) )
{
if ( uiCurrPartUnitIdx > g_auiRasterToZscan[ uiAbsPartIdxLB + uiNumPartInCUWidth - 1 ] )
{
uiBLPartUnitIdx = g_auiRasterToZscan[ uiAbsPartIdxLB + uiNumPartInCUWidth - 1 ];
if ( RasterAddress::isEqualRowOrCol( uiAbsPartIdxLB, uiAbsZorderCUIdxLB, uiNumPartInCUWidth ) )
{
return m_pcPic->getCU( getAddr() );
}
else
{
uiBLPartUnitIdx -= m_uiAbsIdxInLCU;
return this;
}
}
uiBLPartUnitIdx = MAX_UINT;
return NULL;
}
uiBLPartUnitIdx = g_auiRasterToZscan[ uiAbsPartIdxLB + uiNumPartInCUWidth * 2 - 1 ];
if ( (bEnforceSliceRestriction && (m_pcCULeft == NULL || m_pcCULeft->getSlice() == NULL ||
m_pcCULeft->getSCUAddr() + uiBLPartUnitIdx < m_pcPic->getCU( getAddr() )->getSliceStartCU(uiCurrPartUnitIdx) ||
(m_pcPic->getPicSym()->getTileIdxMap( m_pcCULeft->getAddr() ) != m_pcPic->getPicSym()->getTileIdxMap(getAddr()))
))
)
{
return NULL;
}
return m_pcCULeft;
}
uiBLPartUnitIdx = MAX_UINT;
return NULL;
}
TComDataCU *TComDataCU::getPUBelowLeftAdi(UInt &uiBLPartUnitIdx, UInt uiCurrPartUnitIdx, UInt uiPartUnitOffset, Bool bEnforceSliceRestriction )
{
UInt uiAbsPartIdxLB = g_auiZscanToRaster[uiCurrPartUnitIdx];
UInt uiAbsZorderCUIdxLB = g_auiZscanToRaster[ m_uiAbsIdxInLCU ] + ((m_puhHeight[0] / m_pcPic->getMinCUHeight()) - 1) * m_pcPic->getNumPartInWidth();
UInt uiNumPartInCUWidth = m_pcPic->getNumPartInWidth();
if( ( m_pcPic->getCU(m_uiCUAddr)->getCUPelY() + g_auiRasterToPelY[uiAbsPartIdxLB] + (m_pcPic->getPicSym()->getMinCUHeight() * uiPartUnitOffset)) >= m_pcSlice->getSPS()->getPicHeightInLumaSamples())
{
uiBLPartUnitIdx = MAX_UINT;
return NULL;
}
if ( RasterAddress::lessThanRow( uiAbsPartIdxLB, m_pcPic->getNumPartInHeight() - uiPartUnitOffset, uiNumPartInCUWidth ) )
{
if ( !RasterAddress::isZeroCol( uiAbsPartIdxLB, uiNumPartInCUWidth ) )
{
if ( uiCurrPartUnitIdx > g_auiRasterToZscan[ uiAbsPartIdxLB + uiPartUnitOffset * uiNumPartInCUWidth - 1 ] )
{
uiBLPartUnitIdx = g_auiRasterToZscan[ uiAbsPartIdxLB + uiPartUnitOffset * uiNumPartInCUWidth - 1 ];
if ( RasterAddress::isEqualRowOrCol( uiAbsPartIdxLB, uiAbsZorderCUIdxLB, uiNumPartInCUWidth ) )
{
return m_pcPic->getCU( getAddr() );
}
else
{
uiBLPartUnitIdx -= m_uiAbsIdxInLCU;
return this;
}
}
uiBLPartUnitIdx = MAX_UINT;
return NULL;
}
uiBLPartUnitIdx = g_auiRasterToZscan[ uiAbsPartIdxLB + (1 + uiPartUnitOffset) * uiNumPartInCUWidth - 1 ];
if ( (bEnforceSliceRestriction && (m_pcCULeft == NULL || m_pcCULeft->getSlice() == NULL ||
m_pcCULeft->getSCUAddr() + uiBLPartUnitIdx < m_pcPic->getCU( getAddr() )->getSliceStartCU(uiCurrPartUnitIdx) ||
(m_pcPic->getPicSym()->getTileIdxMap( m_pcCULeft->getAddr() ) != m_pcPic->getPicSym()->getTileIdxMap(getAddr()))
))
)
{
return NULL;
}
return m_pcCULeft;
}
uiBLPartUnitIdx = MAX_UINT;
return NULL;
}
TComDataCU *TComDataCU::getPUAboveRightAdi(UInt &uiARPartUnitIdx, UInt uiCurrPartUnitIdx, UInt uiPartUnitOffset, Bool bEnforceSliceRestriction )
{
UInt uiAbsPartIdxRT = g_auiZscanToRaster[uiCurrPartUnitIdx];
UInt uiAbsZorderCUIdx = g_auiZscanToRaster[ m_uiAbsIdxInLCU ] + (m_puhWidth[0] / m_pcPic->getMinCUWidth()) - 1;
UInt uiNumPartInCUWidth = m_pcPic->getNumPartInWidth();
if( ( m_pcPic->getCU(m_uiCUAddr)->getCUPelX() + g_auiRasterToPelX[uiAbsPartIdxRT] + (m_pcPic->getPicSym()->getMinCUHeight() * uiPartUnitOffset)) >= m_pcSlice->getSPS()->getPicWidthInLumaSamples() )
{
uiARPartUnitIdx = MAX_UINT;
return NULL;
}
if ( RasterAddress::lessThanCol( uiAbsPartIdxRT, uiNumPartInCUWidth - uiPartUnitOffset, uiNumPartInCUWidth ) )
{
if ( !RasterAddress::isZeroRow( uiAbsPartIdxRT, uiNumPartInCUWidth ) )
{
if ( uiCurrPartUnitIdx > g_auiRasterToZscan[ uiAbsPartIdxRT - uiNumPartInCUWidth + uiPartUnitOffset ] )
{
uiARPartUnitIdx = g_auiRasterToZscan[ uiAbsPartIdxRT - uiNumPartInCUWidth + uiPartUnitOffset ];
if ( RasterAddress::isEqualRowOrCol( uiAbsPartIdxRT, uiAbsZorderCUIdx, uiNumPartInCUWidth ) )
{
return m_pcPic->getCU( getAddr() );
}
else
{
uiARPartUnitIdx -= m_uiAbsIdxInLCU;
return this;
}
}
uiARPartUnitIdx = MAX_UINT;
return NULL;
}
uiARPartUnitIdx = g_auiRasterToZscan[ uiAbsPartIdxRT + m_pcPic->getNumPartInCU() - uiNumPartInCUWidth + uiPartUnitOffset ];
if ( (bEnforceSliceRestriction && (m_pcCUAbove == NULL || m_pcCUAbove->getSlice() == NULL ||
m_pcCUAbove->getSCUAddr() + uiARPartUnitIdx < m_pcPic->getCU( getAddr() )->getSliceStartCU(uiCurrPartUnitIdx) ||
(m_pcPic->getPicSym()->getTileIdxMap( m_pcCUAbove->getAddr() ) != m_pcPic->getPicSym()->getTileIdxMap(getAddr()))
))
)
{
return NULL;
}
return m_pcCUAbove;
}
if ( !RasterAddress::isZeroRow( uiAbsPartIdxRT, uiNumPartInCUWidth ) )
{
uiARPartUnitIdx = MAX_UINT;
return NULL;
}
uiARPartUnitIdx = g_auiRasterToZscan[ m_pcPic->getNumPartInCU() - uiNumPartInCUWidth + uiPartUnitOffset - 1 ];
if ( (bEnforceSliceRestriction && (m_pcCUAboveRight == NULL || m_pcCUAboveRight->getSlice() == NULL ||
m_pcPic->getPicSym()->getInverseCUOrderMap( m_pcCUAboveRight->getAddr()) > m_pcPic->getPicSym()->getInverseCUOrderMap( getAddr()) ||
m_pcCUAboveRight->getSCUAddr() + uiARPartUnitIdx < m_pcPic->getCU( getAddr() )->getSliceStartCU(uiCurrPartUnitIdx) ||
(m_pcPic->getPicSym()->getTileIdxMap( m_pcCUAboveRight->getAddr() ) != m_pcPic->getPicSym()->getTileIdxMap(getAddr()))
))
)
{
return NULL;
}
return m_pcCUAboveRight;
}
/** Get left QpMinCu
*\param uiLPartUnitIdx
*\param uiCurrAbsIdxInLCU
*\returns TComDataCU* point of TComDataCU of left QpMinCu
*/
TComDataCU *TComDataCU::getQpMinCuLeft( UInt &uiLPartUnitIdx, UInt uiCurrAbsIdxInLCU)
{
UInt numPartInCUWidth = m_pcPic->getNumPartInWidth();
UInt absZorderQpMinCUIdx = (uiCurrAbsIdxInLCU >> ((g_uiMaxCUDepth - getSlice()->getPPS()->getMaxCuDQPDepth()) << 1)) << ((g_uiMaxCUDepth - getSlice()->getPPS()->getMaxCuDQPDepth()) << 1);
UInt absRorderQpMinCUIdx = g_auiZscanToRaster[absZorderQpMinCUIdx];
// check for left LCU boundary
if ( RasterAddress::isZeroCol(absRorderQpMinCUIdx, numPartInCUWidth) )
{
return NULL;
}
// get index of left-CU relative to top-left corner of current quantization group
uiLPartUnitIdx = g_auiRasterToZscan[absRorderQpMinCUIdx - 1];
// return pointer to current LCU
return m_pcPic->getCU( getAddr() );
}
/** Get Above QpMinCu
*\param aPartUnitIdx
*\param currAbsIdxInLCU
*\returns TComDataCU* point of TComDataCU of above QpMinCu
*/
TComDataCU *TComDataCU::getQpMinCuAbove( UInt &aPartUnitIdx, UInt currAbsIdxInLCU )
{
UInt numPartInCUWidth = m_pcPic->getNumPartInWidth();
UInt absZorderQpMinCUIdx = (currAbsIdxInLCU >> ((g_uiMaxCUDepth - getSlice()->getPPS()->getMaxCuDQPDepth()) << 1)) << ((g_uiMaxCUDepth - getSlice()->getPPS()->getMaxCuDQPDepth()) << 1);
UInt absRorderQpMinCUIdx = g_auiZscanToRaster[absZorderQpMinCUIdx];
// check for top LCU boundary
if ( RasterAddress::isZeroRow( absRorderQpMinCUIdx, numPartInCUWidth) )
{
return NULL;
}
// get index of top-CU relative to top-left corner of current quantization group
aPartUnitIdx = g_auiRasterToZscan[absRorderQpMinCUIdx - numPartInCUWidth];
// return pointer to current LCU
return m_pcPic->getCU( getAddr() );
}
/** Get reference QP from left QpMinCu or latest coded QP
*\param uiCurrAbsIdxInLCU
*\returns Char reference QP value
*/
Char TComDataCU::getRefQP( UInt uiCurrAbsIdxInLCU )
{
UInt lPartIdx = 0, aPartIdx = 0;
TComDataCU *cULeft = getQpMinCuLeft ( lPartIdx, m_uiAbsIdxInLCU + uiCurrAbsIdxInLCU );
TComDataCU *cUAbove = getQpMinCuAbove( aPartIdx, m_uiAbsIdxInLCU + uiCurrAbsIdxInLCU );
return (((cULeft ? cULeft->getQP( lPartIdx ) : getLastCodedQP( uiCurrAbsIdxInLCU )) + (cUAbove ? cUAbove->getQP( aPartIdx ) : getLastCodedQP( uiCurrAbsIdxInLCU )) + 1) >> 1);
}
Int TComDataCU::getLastValidPartIdx( Int iAbsPartIdx )
{
Int iLastValidPartIdx = iAbsPartIdx - 1;
while ( iLastValidPartIdx >= 0
&& getPredictionMode( iLastValidPartIdx ) == MODE_NONE )
{
UInt uiDepth = getDepth( iLastValidPartIdx );
iLastValidPartIdx -= m_uiNumPartition >> (uiDepth << 1);
}
return iLastValidPartIdx;
}
Char TComDataCU::getLastCodedQP( UInt uiAbsPartIdx )
{
UInt uiQUPartIdxMask = ~((1 << ((g_uiMaxCUDepth - getSlice()->getPPS()->getMaxCuDQPDepth()) << 1)) - 1);
Int iLastValidPartIdx = getLastValidPartIdx( uiAbsPartIdx & uiQUPartIdxMask );
if ( uiAbsPartIdx < m_uiNumPartition
&& (getSCUAddr() + iLastValidPartIdx < getSliceStartCU(m_uiAbsIdxInLCU + uiAbsPartIdx)))
{
return getSlice()->getSliceQp();
}
else if ( iLastValidPartIdx >= 0 )
{
return getQP( iLastValidPartIdx );
}
else
{
if ( getZorderIdxInCU() > 0 )
{
return getPic()->getCU( getAddr() )->getLastCodedQP( getZorderIdxInCU() );
}
else if ( getPic()->getPicSym()->getInverseCUOrderMap(getAddr()) > 0
&& getPic()->getPicSym()->getTileIdxMap(getAddr()) == getPic()->getPicSym()->getTileIdxMap(getPic()->getPicSym()->getCUOrderMap(getPic()->getPicSym()->getInverseCUOrderMap(getAddr()) - 1))
&& !( getSlice()->getPPS()->getEntropyCodingSyncEnabledFlag() && getAddr() % getPic()->getFrameWidthInCU() == 0 ) )
{
return getPic()->getCU( getPic()->getPicSym()->getCUOrderMap(getPic()->getPicSym()->getInverseCUOrderMap(getAddr()) - 1) )->getLastCodedQP( getPic()->getNumPartInCU() );
}
else
{
return getSlice()->getSliceQp();
}
}
}
/** Check whether the CU is coded in lossless coding mode
* \param uiAbsPartIdx
* \returns true if the CU is coded in lossless coding mode; false if otherwise
*/
Bool TComDataCU::isLosslessCoded(UInt absPartIdx)
{
return (getSlice()->getPPS()->getTransquantBypassEnableFlag() && getCUTransquantBypass (absPartIdx));
}
/** Get allowed chroma intra modes
*\param uiAbsPartIdx
*\param uiModeList pointer to chroma intra modes array
*\returns
*- fill uiModeList with chroma intra modes
*/
Void TComDataCU::getAllowedChromaDir( UInt uiAbsPartIdx, UInt *uiModeList )
{
uiModeList[0] = PLANAR_IDX;
uiModeList[1] = VER_IDX;
uiModeList[2] = HOR_IDX;
uiModeList[3] = DC_IDX;
uiModeList[4] = DM_CHROMA_IDX;
UInt uiLumaMode = getLumaIntraDir( uiAbsPartIdx );
for( Int i = 0; i < NUM_CHROMA_MODE - 1; i++ )
{
if( uiLumaMode == uiModeList[i] )
{
uiModeList[i] = 34; // VER+8 mode
break;
}
}
}
/** Get most probable intra modes
*\param uiAbsPartIdx
*\param uiIntraDirPred pointer to the array for MPM storage
*\param piMode it is set with MPM mode in case both MPM are equal. It is used to restrict RD search at encode side.
*\returns Number of MPM
*/
Int TComDataCU::getIntraDirLumaPredictor( UInt uiAbsPartIdx, Int *uiIntraDirPred, Int *piMode )
{
TComDataCU *pcTempCU;
UInt uiTempPartIdx;
Int iLeftIntraDir, iAboveIntraDir;
Int uiPredNum = 0;
// Get intra direction of left PU
pcTempCU = getPULeft( uiTempPartIdx, m_uiAbsIdxInLCU + uiAbsPartIdx );
iLeftIntraDir = pcTempCU ? ( pcTempCU->isIntra( uiTempPartIdx ) ? pcTempCU->getLumaIntraDir( uiTempPartIdx ) : DC_IDX ) : DC_IDX;
// Get intra direction of above PU
pcTempCU = getPUAbove( uiTempPartIdx, m_uiAbsIdxInLCU + uiAbsPartIdx, true, true );
iAboveIntraDir = pcTempCU ? ( pcTempCU->isIntra( uiTempPartIdx ) ? pcTempCU->getLumaIntraDir( uiTempPartIdx ) : DC_IDX ) : DC_IDX;
uiPredNum = 3;
if(iLeftIntraDir == iAboveIntraDir)
{
if( piMode )
{
*piMode = 1;
}
if (iLeftIntraDir > 1) // angular modes
{
uiIntraDirPred[0] = iLeftIntraDir;
uiIntraDirPred[1] = ((iLeftIntraDir + 29) % 32) + 2;
uiIntraDirPred[2] = ((iLeftIntraDir - 1 ) % 32) + 2;
}
else //non-angular
{
uiIntraDirPred[0] = PLANAR_IDX;
uiIntraDirPred[1] = DC_IDX;
uiIntraDirPred[2] = VER_IDX;
}
}
else
{
if( piMode )
{
*piMode = 2;
}
uiIntraDirPred[0] = iLeftIntraDir;
uiIntraDirPred[1] = iAboveIntraDir;
if (iLeftIntraDir && iAboveIntraDir ) //both modes are non-planar
{
uiIntraDirPred[2] = PLANAR_IDX;
}
else
{
uiIntraDirPred[2] = (iLeftIntraDir + iAboveIntraDir) < 2 ? VER_IDX : DC_IDX;
}
}
return uiPredNum;
}
UInt TComDataCU::getCtxSplitFlag( UInt uiAbsPartIdx, UInt uiDepth )
{
TComDataCU *pcTempCU;
UInt uiTempPartIdx;
UInt uiCtx;
// Get left split flag
pcTempCU = getPULeft( uiTempPartIdx, m_uiAbsIdxInLCU + uiAbsPartIdx );
uiCtx = ( pcTempCU ) ? ( ( pcTempCU->getDepth( uiTempPartIdx ) > uiDepth ) ? 1 : 0 ) : 0;
// Get above split flag
pcTempCU = getPUAbove( uiTempPartIdx, m_uiAbsIdxInLCU + uiAbsPartIdx );
uiCtx += ( pcTempCU ) ? ( ( pcTempCU->getDepth( uiTempPartIdx ) > uiDepth ) ? 1 : 0 ) : 0;
return uiCtx;
}
UInt TComDataCU::getCtxQtCbf( TextType eType, UInt uiTrDepth )
{
if( eType )
{
return uiTrDepth;
}
else
{
const UInt uiCtx = ( uiTrDepth == 0 ? 1 : 0 );
return uiCtx;
}
}
UInt TComDataCU::getQuadtreeTULog2MinSizeInCU( UInt absPartIdx )
{
UInt log2CbSize = g_aucConvertToBit[getWidth( absPartIdx )] + 2;
PartSize partSize = getPartitionSize( absPartIdx );
UInt quadtreeTUMaxDepth = getPredictionMode( absPartIdx ) == MODE_INTRA ? m_pcSlice->getSPS()->getQuadtreeTUMaxDepthIntra() : m_pcSlice->getSPS()->getQuadtreeTUMaxDepthInter();
Int intraSplitFlag = ( getPredictionMode( absPartIdx ) == MODE_INTRA && partSize == SIZE_NxN ) ? 1 : 0;
Int interSplitFlag = ((quadtreeTUMaxDepth == 1) && (getPredictionMode( absPartIdx ) == MODE_INTER) && (partSize != SIZE_2Nx2N) );
UInt log2MinTUSizeInCU = 0;
if (log2CbSize < (m_pcSlice->getSPS()->getQuadtreeTULog2MinSize() + quadtreeTUMaxDepth - 1 + interSplitFlag + intraSplitFlag) )
{
// when fully making use of signaled TUMaxDepth + inter/intraSplitFlag, resulting luma TB size is < QuadtreeTULog2MinSize
log2MinTUSizeInCU = m_pcSlice->getSPS()->getQuadtreeTULog2MinSize();
}
else
{
// when fully making use of signaled TUMaxDepth + inter/intraSplitFlag, resulting luma TB size is still >= QuadtreeTULog2MinSize
log2MinTUSizeInCU = log2CbSize - ( quadtreeTUMaxDepth - 1 + interSplitFlag + intraSplitFlag); // stop when trafoDepth == hierarchy_depth = splitFlag
if ( log2MinTUSizeInCU > m_pcSlice->getSPS()->getQuadtreeTULog2MaxSize())
{
// when fully making use of signaled TUMaxDepth + inter/intraSplitFlag, resulting luma TB size is still > QuadtreeTULog2MaxSize
log2MinTUSizeInCU = m_pcSlice->getSPS()->getQuadtreeTULog2MaxSize();
}
}
return log2MinTUSizeInCU;
}
UInt TComDataCU::getCtxSkipFlag( UInt uiAbsPartIdx )
{
TComDataCU *pcTempCU;
UInt uiTempPartIdx;
UInt uiCtx = 0;
// Get BCBP of left PU
pcTempCU = getPULeft( uiTempPartIdx, m_uiAbsIdxInLCU + uiAbsPartIdx );
uiCtx = ( pcTempCU ) ? pcTempCU->isSkipped( uiTempPartIdx ) : 0;
// Get BCBP of above PU
pcTempCU = getPUAbove( uiTempPartIdx, m_uiAbsIdxInLCU + uiAbsPartIdx );
uiCtx += ( pcTempCU ) ? pcTempCU->isSkipped( uiTempPartIdx ) : 0;
return uiCtx;
}
UInt TComDataCU::getCtxInterDir( UInt uiAbsPartIdx )
{
return getDepth( uiAbsPartIdx );
}
Void TComDataCU::setCbfSubParts( UInt uiCbfY, UInt uiCbfU, UInt uiCbfV, UInt uiAbsPartIdx, UInt uiDepth )
{
UInt uiCurrPartNumb = m_pcPic->getNumPartInCU() >> (uiDepth << 1);
memset( m_puhCbf[0] + uiAbsPartIdx, uiCbfY, sizeof( UChar ) * uiCurrPartNumb );
memset( m_puhCbf[1] + uiAbsPartIdx, uiCbfU, sizeof( UChar ) * uiCurrPartNumb );
memset( m_puhCbf[2] + uiAbsPartIdx, uiCbfV, sizeof( UChar ) * uiCurrPartNumb );
}
Void TComDataCU::setCbfSubParts( UInt uiCbf, TextType eTType, UInt uiAbsPartIdx, UInt uiDepth )
{
UInt uiCurrPartNumb = m_pcPic->getNumPartInCU() >> (uiDepth << 1);
memset( m_puhCbf[g_aucConvertTxtTypeToIdx[eTType]] + uiAbsPartIdx, uiCbf, sizeof( UChar ) * uiCurrPartNumb );
}
/** Sets a coded block flag for all sub-partitions of a partition
* \param uiCbf The value of the coded block flag to be set
* \param eTType
* \param uiAbsPartIdx
* \param uiPartIdx
* \param uiDepth
* \returns Void
*/
Void TComDataCU::setCbfSubParts ( UInt uiCbf, TextType eTType, UInt uiAbsPartIdx, UInt uiPartIdx, UInt uiDepth )
{
setSubPart<UChar>( uiCbf, m_puhCbf[g_aucConvertTxtTypeToIdx[eTType]], uiAbsPartIdx, uiDepth, uiPartIdx );
}
Void TComDataCU::setDepthSubParts( UInt uiDepth, UInt uiAbsPartIdx )
{
UInt uiCurrPartNumb = m_pcPic->getNumPartInCU() >> (uiDepth << 1);
memset( m_puhDepth + uiAbsPartIdx, uiDepth, sizeof(UChar)*uiCurrPartNumb );
}
Bool TComDataCU::isFirstAbsZorderIdxInDepth (UInt uiAbsPartIdx, UInt uiDepth)
{
UInt uiPartNumb = m_pcPic->getNumPartInCU() >> (uiDepth << 1);
return (((m_uiAbsIdxInLCU + uiAbsPartIdx) % uiPartNumb) == 0);
}
Void TComDataCU::setPartSizeSubParts( PartSize eMode, UInt uiAbsPartIdx, UInt uiDepth )
{
assert( sizeof( *m_pePartSize) == 1 );
memset( m_pePartSize + uiAbsPartIdx, eMode, m_pcPic->getNumPartInCU() >> ( 2 * uiDepth ) );
}
Void TComDataCU::setCUTransquantBypassSubParts( Bool flag, UInt uiAbsPartIdx, UInt uiDepth )
{
memset( m_CUTransquantBypass + uiAbsPartIdx, flag, m_pcPic->getNumPartInCU() >> ( 2 * uiDepth ) );
}
Void TComDataCU::setSkipFlagSubParts( Bool skip, UInt absPartIdx, UInt depth )
{
assert( sizeof( *m_skipFlag) == 1 );
memset( m_skipFlag + absPartIdx, skip, m_pcPic->getNumPartInCU() >> ( 2 * depth ) );
}
Void TComDataCU::setPredModeSubParts( PredMode eMode, UInt uiAbsPartIdx, UInt uiDepth )
{
assert( sizeof( *m_pePredMode) == 1 );
memset( m_pePredMode + uiAbsPartIdx, eMode, m_pcPic->getNumPartInCU() >> ( 2 * uiDepth ) );
}
Void TComDataCU::setQPSubCUs( Int qp, TComDataCU *pcCU, UInt absPartIdx, UInt depth, Bool &foundNonZeroCbf )
{
UInt currPartNumb = m_pcPic->getNumPartInCU() >> (depth << 1);
UInt currPartNumQ = currPartNumb >> 2;
if(!foundNonZeroCbf)
{
if(pcCU->getDepth(absPartIdx) > depth)
{
for ( UInt partUnitIdx = 0; partUnitIdx < 4; partUnitIdx++ )
{
pcCU->setQPSubCUs( qp, pcCU, absPartIdx + partUnitIdx * currPartNumQ, depth + 1, foundNonZeroCbf );
}
}
else
{
if(pcCU->getCbf( absPartIdx, TEXT_LUMA ) || pcCU->getCbf( absPartIdx, TEXT_CHROMA_U ) || pcCU->getCbf( absPartIdx, TEXT_CHROMA_V ) )
{
foundNonZeroCbf = true;
}
else
{
setQPSubParts(qp, absPartIdx, depth);
}
}
}
}
Void TComDataCU::setQPSubParts( Int qp, UInt uiAbsPartIdx, UInt uiDepth )
{
UInt uiCurrPartNumb = m_pcPic->getNumPartInCU() >> (uiDepth << 1);
TComSlice *pcSlice = getPic()->getSlice(getPic()->getCurrSliceIdx());
for(UInt uiSCUIdx = uiAbsPartIdx; uiSCUIdx < uiAbsPartIdx + uiCurrPartNumb; uiSCUIdx++)
{
if( m_pcPic->getCU( getAddr() )->getSliceSegmentStartCU(uiSCUIdx + getZorderIdxInCU()) == pcSlice->getSliceSegmentCurStartCUAddr() )
{
m_phQP[uiSCUIdx] = qp;
}
}
}
Void TComDataCU::setLumaIntraDirSubParts( UInt uiDir, UInt uiAbsPartIdx, UInt uiDepth )
{
UInt uiCurrPartNumb = m_pcPic->getNumPartInCU() >> (uiDepth << 1);
memset( m_puhLumaIntraDir + uiAbsPartIdx, uiDir, sizeof(UChar)*uiCurrPartNumb );
}
template<typename T>
Void TComDataCU::setSubPart( T uiParameter, T *puhBaseLCU, UInt uiCUAddr, UInt uiCUDepth, UInt uiPUIdx )
{
assert( sizeof(T) == 1 ); // Using memset() works only for types of size 1
UInt uiCurrPartNumQ = (m_pcPic->getNumPartInCU() >> (2 * uiCUDepth)) >> 2;
switch ( m_pePartSize[ uiCUAddr ] )
{
case SIZE_2Nx2N:
memset( puhBaseLCU + uiCUAddr, uiParameter, 4 * uiCurrPartNumQ );
break;
case SIZE_2NxN:
memset( puhBaseLCU + uiCUAddr, uiParameter, 2 * uiCurrPartNumQ );
break;
case SIZE_Nx2N:
memset( puhBaseLCU + uiCUAddr, uiParameter, uiCurrPartNumQ );
memset( puhBaseLCU + uiCUAddr + 2 * uiCurrPartNumQ, uiParameter, uiCurrPartNumQ );
break;
case SIZE_NxN:
memset( puhBaseLCU + uiCUAddr, uiParameter, uiCurrPartNumQ );
break;
case SIZE_2NxnU:
if ( uiPUIdx == 0 )
{
memset( puhBaseLCU + uiCUAddr, uiParameter, (uiCurrPartNumQ >> 1) );
memset( puhBaseLCU + uiCUAddr + uiCurrPartNumQ, uiParameter, (uiCurrPartNumQ >> 1) );
}
else if ( uiPUIdx == 1 )
{
memset( puhBaseLCU + uiCUAddr, uiParameter, (uiCurrPartNumQ >> 1) );
memset( puhBaseLCU + uiCUAddr + uiCurrPartNumQ, uiParameter, ((uiCurrPartNumQ >> 1) + (uiCurrPartNumQ << 1)) );
}
else
{
assert(0);
}
break;
case SIZE_2NxnD:
if ( uiPUIdx == 0 )
{
memset( puhBaseLCU + uiCUAddr, uiParameter, ((uiCurrPartNumQ << 1) + (uiCurrPartNumQ >> 1)) );
memset( puhBaseLCU + uiCUAddr + (uiCurrPartNumQ << 1) + uiCurrPartNumQ, uiParameter, (uiCurrPartNumQ >> 1) );
}
else if ( uiPUIdx == 1 )
{
memset( puhBaseLCU + uiCUAddr, uiParameter, (uiCurrPartNumQ >> 1) );
memset( puhBaseLCU + uiCUAddr + uiCurrPartNumQ, uiParameter, (uiCurrPartNumQ >> 1) );
}
else
{
assert(0);
}
break;
case SIZE_nLx2N:
if ( uiPUIdx == 0 )
{
memset( puhBaseLCU + uiCUAddr, uiParameter, (uiCurrPartNumQ >> 2) );
memset( puhBaseLCU + uiCUAddr + (uiCurrPartNumQ >> 1), uiParameter, (uiCurrPartNumQ >> 2) );
memset( puhBaseLCU + uiCUAddr + (uiCurrPartNumQ << 1), uiParameter, (uiCurrPartNumQ >> 2) );
memset( puhBaseLCU + uiCUAddr + (uiCurrPartNumQ << 1) + (uiCurrPartNumQ >> 1), uiParameter, (uiCurrPartNumQ >> 2) );
}
else if ( uiPUIdx == 1 )
{
memset( puhBaseLCU + uiCUAddr, uiParameter, (uiCurrPartNumQ >> 2) );
memset( puhBaseLCU + uiCUAddr + (uiCurrPartNumQ >> 1), uiParameter, (uiCurrPartNumQ + (uiCurrPartNumQ >> 2)) );
memset( puhBaseLCU + uiCUAddr + (uiCurrPartNumQ << 1), uiParameter, (uiCurrPartNumQ >> 2) );
memset( puhBaseLCU + uiCUAddr + (uiCurrPartNumQ << 1) + (uiCurrPartNumQ >> 1), uiParameter, (uiCurrPartNumQ + (uiCurrPartNumQ >> 2)) );
}
else
{
assert(0);
}
break;
case SIZE_nRx2N:
if ( uiPUIdx == 0 )
{
memset( puhBaseLCU + uiCUAddr, uiParameter, (uiCurrPartNumQ + (uiCurrPartNumQ >> 2)) );
memset( puhBaseLCU + uiCUAddr + uiCurrPartNumQ + (uiCurrPartNumQ >> 1), uiParameter, (uiCurrPartNumQ >> 2) );
memset( puhBaseLCU + uiCUAddr + (uiCurrPartNumQ << 1), uiParameter, (uiCurrPartNumQ + (uiCurrPartNumQ >> 2)) );
memset( puhBaseLCU + uiCUAddr + (uiCurrPartNumQ << 1) + uiCurrPartNumQ + (uiCurrPartNumQ >> 1), uiParameter, (uiCurrPartNumQ >> 2) );
}
else if ( uiPUIdx == 1 )
{
memset( puhBaseLCU + uiCUAddr, uiParameter, (uiCurrPartNumQ >> 2) );
memset( puhBaseLCU + uiCUAddr + (uiCurrPartNumQ >> 1), uiParameter, (uiCurrPartNumQ >> 2) );
memset( puhBaseLCU + uiCUAddr + (uiCurrPartNumQ << 1), uiParameter, (uiCurrPartNumQ >> 2) );
memset( puhBaseLCU + uiCUAddr + (uiCurrPartNumQ << 1) + (uiCurrPartNumQ >> 1), uiParameter, (uiCurrPartNumQ >> 2) );
}
else
{
assert(0);
}
break;
default:
assert( 0 );
}
}
Void TComDataCU::setMergeFlagSubParts ( Bool bMergeFlag, UInt uiAbsPartIdx, UInt uiPartIdx, UInt uiDepth )
{
setSubPart( bMergeFlag, m_pbMergeFlag, uiAbsPartIdx, uiDepth, uiPartIdx );
}
Void TComDataCU::setMergeIndexSubParts ( UInt uiMergeIndex, UInt uiAbsPartIdx, UInt uiPartIdx, UInt uiDepth )
{
setSubPart<UChar>( uiMergeIndex, m_puhMergeIndex, uiAbsPartIdx, uiDepth, uiPartIdx );
}
Void TComDataCU::setChromIntraDirSubParts( UInt uiDir, UInt uiAbsPartIdx, UInt uiDepth )
{
UInt uiCurrPartNumb = m_pcPic->getNumPartInCU() >> (uiDepth << 1);
memset( m_puhChromaIntraDir + uiAbsPartIdx, uiDir, sizeof(UChar)*uiCurrPartNumb );
}
Void TComDataCU::setInterDirSubParts( UInt uiDir, UInt uiAbsPartIdx, UInt uiPartIdx, UInt uiDepth )
{
setSubPart<UChar>( uiDir, m_puhInterDir, uiAbsPartIdx, uiDepth, uiPartIdx );
}
Void TComDataCU::setMVPIdxSubParts( Int iMVPIdx, RefPicList eRefPicList, UInt uiAbsPartIdx, UInt uiPartIdx, UInt uiDepth )
{
setSubPart<Char>( iMVPIdx, m_apiMVPIdx[eRefPicList], uiAbsPartIdx, uiDepth, uiPartIdx );
}
Void TComDataCU::setMVPNumSubParts( Int iMVPNum, RefPicList eRefPicList, UInt uiAbsPartIdx, UInt uiPartIdx, UInt uiDepth )
{
setSubPart<Char>( iMVPNum, m_apiMVPNum[eRefPicList], uiAbsPartIdx, uiDepth, uiPartIdx );
}
Void TComDataCU::setTrIdxSubParts( UInt uiTrIdx, UInt uiAbsPartIdx, UInt uiDepth )
{
UInt uiCurrPartNumb = m_pcPic->getNumPartInCU() >> (uiDepth << 1);
memset( m_puhTrIdx + uiAbsPartIdx, uiTrIdx, sizeof(UChar)*uiCurrPartNumb );
}
Void TComDataCU::setTransformSkipSubParts( UInt useTransformSkipY, UInt useTransformSkipU, UInt useTransformSkipV, UInt uiAbsPartIdx, UInt uiDepth )
{
UInt uiCurrPartNumb = m_pcPic->getNumPartInCU() >> (uiDepth << 1);
memset( m_puhTransformSkip[0] + uiAbsPartIdx, useTransformSkipY, sizeof( UChar ) * uiCurrPartNumb );
memset( m_puhTransformSkip[1] + uiAbsPartIdx, useTransformSkipU, sizeof( UChar ) * uiCurrPartNumb );
memset( m_puhTransformSkip[2] + uiAbsPartIdx, useTransformSkipV, sizeof( UChar ) * uiCurrPartNumb );
}
Void TComDataCU::setTransformSkipSubParts( UInt useTransformSkip, TextType eType, UInt uiAbsPartIdx, UInt uiDepth)
{
UInt uiCurrPartNumb = m_pcPic->getNumPartInCU() >> (uiDepth << 1);
memset( m_puhTransformSkip[g_aucConvertTxtTypeToIdx[eType]] + uiAbsPartIdx, useTransformSkip, sizeof( UChar ) * uiCurrPartNumb );
}
Void TComDataCU::setSizeSubParts( UInt uiWidth, UInt uiHeight, UInt uiAbsPartIdx, UInt uiDepth )
{
UInt uiCurrPartNumb = m_pcPic->getNumPartInCU() >> (uiDepth << 1);
memset( m_puhWidth + uiAbsPartIdx, uiWidth, sizeof(UChar)*uiCurrPartNumb );
memset( m_puhHeight + uiAbsPartIdx, uiHeight, sizeof(UChar)*uiCurrPartNumb );
}
UChar TComDataCU::getNumPartInter()
{
UChar iNumPart = 0;
switch ( m_pePartSize[0] )
{
case SIZE_2Nx2N:
iNumPart = 1;
break;
case SIZE_2NxN:
iNumPart = 2;
break;
case SIZE_Nx2N:
iNumPart = 2;
break;
case SIZE_NxN:
iNumPart = 4;
break;
case SIZE_2NxnU:
iNumPart = 2;
break;
case SIZE_2NxnD:
iNumPart = 2;
break;
case SIZE_nLx2N:
iNumPart = 2;
break;
case SIZE_nRx2N:
iNumPart = 2;
break;
default:
assert (0);
break;
}
return iNumPart;
}
Void TComDataCU::getPartIndexAndSize( UInt uiPartIdx, UInt &ruiPartAddr, Int &riWidth, Int &riHeight )
{
switch ( m_pePartSize[0] )
{
case SIZE_2NxN:
riWidth = getWidth(0);
riHeight = getHeight(0) >> 1;
ruiPartAddr = ( uiPartIdx == 0 ) ? 0 : m_uiNumPartition >> 1;
break;
case SIZE_Nx2N:
riWidth = getWidth(0) >> 1;
riHeight = getHeight(0);
ruiPartAddr = ( uiPartIdx == 0 ) ? 0 : m_uiNumPartition >> 2;
break;
case SIZE_NxN:
riWidth = getWidth(0) >> 1;
riHeight = getHeight(0) >> 1;
ruiPartAddr = ( m_uiNumPartition >> 2 ) * uiPartIdx;
break;
case SIZE_2NxnU:
riWidth = getWidth(0);
riHeight = ( uiPartIdx == 0 ) ? getHeight(0) >> 2 : ( getHeight(0) >> 2 ) + ( getHeight(0) >> 1 );
ruiPartAddr = ( uiPartIdx == 0 ) ? 0 : m_uiNumPartition >> 3;
break;
case SIZE_2NxnD:
riWidth = getWidth(0);
riHeight = ( uiPartIdx == 0 ) ? ( getHeight(0) >> 2 ) + ( getHeight(0) >> 1 ) : getHeight(0) >> 2;
ruiPartAddr = ( uiPartIdx == 0 ) ? 0 : (m_uiNumPartition >> 1) + (m_uiNumPartition >> 3);
break;
case SIZE_nLx2N:
riWidth = ( uiPartIdx == 0 ) ? getWidth(0) >> 2 : ( getWidth(0) >> 2 ) + ( getWidth(0) >> 1 );
riHeight = getHeight(0);
ruiPartAddr = ( uiPartIdx == 0 ) ? 0 : m_uiNumPartition >> 4;
break;
case SIZE_nRx2N:
riWidth = ( uiPartIdx == 0 ) ? ( getWidth(0) >> 2 ) + ( getWidth(0) >> 1 ) : getWidth(0) >> 2;
riHeight = getHeight(0);
ruiPartAddr = ( uiPartIdx == 0 ) ? 0 : (m_uiNumPartition >> 2) + (m_uiNumPartition >> 4);
break;
default:
assert ( m_pePartSize[0] == SIZE_2Nx2N );
riWidth = getWidth(0);
riHeight = getHeight(0);
ruiPartAddr = 0;
break;
}
}
Void TComDataCU::getMvField ( TComDataCU *pcCU, UInt uiAbsPartIdx, RefPicList eRefPicList, TComMvField &rcMvField )
{
if ( pcCU == NULL ) // OUT OF BOUNDARY
{
TComMv cZeroMv;
rcMvField.setMvField( cZeroMv, NOT_VALID );
return;
}
TComCUMvField *pcCUMvField = pcCU->getCUMvField( eRefPicList );
rcMvField.setMvField( pcCUMvField->getMv( uiAbsPartIdx ), pcCUMvField->getRefIdx( uiAbsPartIdx ) );
}
Void TComDataCU::deriveLeftRightTopIdxGeneral ( UInt uiAbsPartIdx, UInt uiPartIdx, UInt &ruiPartIdxLT, UInt &ruiPartIdxRT )
{
ruiPartIdxLT = m_uiAbsIdxInLCU + uiAbsPartIdx;
UInt uiPUWidth = 0;
switch ( m_pePartSize[uiAbsPartIdx] )
{
case SIZE_2Nx2N:
uiPUWidth = m_puhWidth[uiAbsPartIdx];
break;
case SIZE_2NxN:
uiPUWidth = m_puhWidth[uiAbsPartIdx];
break;
case SIZE_Nx2N:
uiPUWidth = m_puhWidth[uiAbsPartIdx] >> 1;
break;
case SIZE_NxN:
uiPUWidth = m_puhWidth[uiAbsPartIdx] >> 1;
break;
case SIZE_2NxnU:
uiPUWidth = m_puhWidth[uiAbsPartIdx];
break;
case SIZE_2NxnD:
uiPUWidth = m_puhWidth[uiAbsPartIdx];
break;
case SIZE_nLx2N:
if ( uiPartIdx == 0 )
{
uiPUWidth = m_puhWidth[uiAbsPartIdx] >> 2;
}
else if ( uiPartIdx == 1 )
{
uiPUWidth = (m_puhWidth[uiAbsPartIdx] >> 1) + (m_puhWidth[uiAbsPartIdx] >> 2);
}
else
{
assert(0);
}
break;
case SIZE_nRx2N:
if ( uiPartIdx == 0 )
{
uiPUWidth = (m_puhWidth[uiAbsPartIdx] >> 1) + (m_puhWidth[uiAbsPartIdx] >> 2);
}
else if ( uiPartIdx == 1 )
{
uiPUWidth = m_puhWidth[uiAbsPartIdx] >> 2;
}
else
{
assert(0);
}
break;
default:
assert (0);
break;
}
ruiPartIdxRT = g_auiRasterToZscan [g_auiZscanToRaster[ ruiPartIdxLT ] + uiPUWidth / m_pcPic->getMinCUWidth() - 1 ];
}
Void TComDataCU::deriveLeftBottomIdxGeneral( UInt uiAbsPartIdx, UInt uiPartIdx, UInt &ruiPartIdxLB )
{
UInt uiPUHeight = 0;
switch ( m_pePartSize[uiAbsPartIdx] )
{
case SIZE_2Nx2N:
uiPUHeight = m_puhHeight[uiAbsPartIdx];
break;
case SIZE_2NxN:
uiPUHeight = m_puhHeight[uiAbsPartIdx] >> 1;
break;
case SIZE_Nx2N:
uiPUHeight = m_puhHeight[uiAbsPartIdx];
break;
case SIZE_NxN:
uiPUHeight = m_puhHeight[uiAbsPartIdx] >> 1;
break;
case SIZE_2NxnU:
if ( uiPartIdx == 0 )
{
uiPUHeight = m_puhHeight[uiAbsPartIdx] >> 2;
}
else if ( uiPartIdx == 1 )
{
uiPUHeight = (m_puhHeight[uiAbsPartIdx] >> 1) + (m_puhHeight[uiAbsPartIdx] >> 2);
}
else
{
assert(0);
}
break;
case SIZE_2NxnD:
if ( uiPartIdx == 0 )
{
uiPUHeight = (m_puhHeight[uiAbsPartIdx] >> 1) + (m_puhHeight[uiAbsPartIdx] >> 2);
}
else if ( uiPartIdx == 1 )
{
uiPUHeight = m_puhHeight[uiAbsPartIdx] >> 2;
}
else
{
assert(0);
}
break;
case SIZE_nLx2N:
uiPUHeight = m_puhHeight[uiAbsPartIdx];
break;
case SIZE_nRx2N:
uiPUHeight = m_puhHeight[uiAbsPartIdx];
break;
default:
assert (0);
break;
}
ruiPartIdxLB = g_auiRasterToZscan [g_auiZscanToRaster[ m_uiAbsIdxInLCU + uiAbsPartIdx ] + ((uiPUHeight / m_pcPic->getMinCUHeight()) - 1) * m_pcPic->getNumPartInWidth()];
}
Void TComDataCU::deriveLeftRightTopIdx ( UInt uiPartIdx, UInt &ruiPartIdxLT, UInt &ruiPartIdxRT )
{
ruiPartIdxLT = m_uiAbsIdxInLCU;
ruiPartIdxRT = g_auiRasterToZscan [g_auiZscanToRaster[ ruiPartIdxLT ] + m_puhWidth[0] / m_pcPic->getMinCUWidth() - 1 ];
switch ( m_pePartSize[0] )
{
case SIZE_2Nx2N:
break;
case SIZE_2NxN:
ruiPartIdxLT += ( uiPartIdx == 0 ) ? 0 : m_uiNumPartition >> 1;
ruiPartIdxRT += ( uiPartIdx == 0 ) ? 0 : m_uiNumPartition >> 1;
break;
case SIZE_Nx2N:
ruiPartIdxLT += ( uiPartIdx == 0 ) ? 0 : m_uiNumPartition >> 2;
ruiPartIdxRT -= ( uiPartIdx == 1 ) ? 0 : m_uiNumPartition >> 2;
break;
case SIZE_NxN:
ruiPartIdxLT += ( m_uiNumPartition >> 2 ) * uiPartIdx;
ruiPartIdxRT += ( m_uiNumPartition >> 2 ) * ( uiPartIdx - 1 );
break;
case SIZE_2NxnU:
ruiPartIdxLT += ( uiPartIdx == 0 ) ? 0 : m_uiNumPartition >> 3;
ruiPartIdxRT += ( uiPartIdx == 0 ) ? 0 : m_uiNumPartition >> 3;
break;
case SIZE_2NxnD:
ruiPartIdxLT += ( uiPartIdx == 0 ) ? 0 : ( m_uiNumPartition >> 1 ) + ( m_uiNumPartition >> 3 );
ruiPartIdxRT += ( uiPartIdx == 0 ) ? 0 : ( m_uiNumPartition >> 1 ) + ( m_uiNumPartition >> 3 );
break;
case SIZE_nLx2N:
ruiPartIdxLT += ( uiPartIdx == 0 ) ? 0 : m_uiNumPartition >> 4;
ruiPartIdxRT -= ( uiPartIdx == 1 ) ? 0 : ( m_uiNumPartition >> 2 ) + ( m_uiNumPartition >> 4 );
break;
case SIZE_nRx2N:
ruiPartIdxLT += ( uiPartIdx == 0 ) ? 0 : ( m_uiNumPartition >> 2 ) + ( m_uiNumPartition >> 4 );
ruiPartIdxRT -= ( uiPartIdx == 1 ) ? 0 : m_uiNumPartition >> 4;
break;
default:
assert (0);
break;
}
}
Void TComDataCU::deriveLeftBottomIdx( UInt uiPartIdx, UInt &ruiPartIdxLB )
{
ruiPartIdxLB = g_auiRasterToZscan [g_auiZscanToRaster[ m_uiAbsIdxInLCU ] + ( ((m_puhHeight[0] / m_pcPic->getMinCUHeight()) >> 1) - 1) * m_pcPic->getNumPartInWidth()];
switch ( m_pePartSize[0] )
{
case SIZE_2Nx2N:
ruiPartIdxLB += m_uiNumPartition >> 1;
break;
case SIZE_2NxN:
ruiPartIdxLB += ( uiPartIdx == 0 ) ? 0 : m_uiNumPartition >> 1;
break;
case SIZE_Nx2N:
ruiPartIdxLB += ( uiPartIdx == 0 ) ? m_uiNumPartition >> 1 : (m_uiNumPartition >> 2) * 3;
break;
case SIZE_NxN:
ruiPartIdxLB += ( m_uiNumPartition >> 2 ) * uiPartIdx;
break;
case SIZE_2NxnU:
ruiPartIdxLB += ( uiPartIdx == 0 ) ? -((Int)m_uiNumPartition >> 3) : m_uiNumPartition >> 1;
break;
case SIZE_2NxnD:
ruiPartIdxLB += ( uiPartIdx == 0 ) ? (m_uiNumPartition >> 2) + (m_uiNumPartition >> 3) : m_uiNumPartition >> 1;
break;
case SIZE_nLx2N:
ruiPartIdxLB += ( uiPartIdx == 0 ) ? m_uiNumPartition >> 1 : (m_uiNumPartition >> 1) + (m_uiNumPartition >> 4);
break;
case SIZE_nRx2N:
ruiPartIdxLB += ( uiPartIdx == 0 ) ? m_uiNumPartition >> 1 : (m_uiNumPartition >> 1) + (m_uiNumPartition >> 2) + (m_uiNumPartition >> 4);
break;
default:
assert (0);
break;
}
}
/** Derives the partition index of neighbouring bottom right block
* \param [in] eCUMode
* \param [in] uiPartIdx
* \param [out] ruiPartIdxRB
*/
Void TComDataCU::deriveRightBottomIdx( UInt uiPartIdx, UInt &ruiPartIdxRB )
{
ruiPartIdxRB = g_auiRasterToZscan [g_auiZscanToRaster[ m_uiAbsIdxInLCU ] + ( ((m_puhHeight[0] / m_pcPic->getMinCUHeight()) >> 1) - 1) * m_pcPic->getNumPartInWidth() + m_puhWidth[0] / m_pcPic->getMinCUWidth() - 1];
switch ( m_pePartSize[0] )
{
case SIZE_2Nx2N:
ruiPartIdxRB += m_uiNumPartition >> 1;
break;
case SIZE_2NxN:
ruiPartIdxRB += ( uiPartIdx == 0 ) ? 0 : m_uiNumPartition >> 1;
break;
case SIZE_Nx2N:
ruiPartIdxRB += ( uiPartIdx == 0 ) ? m_uiNumPartition >> 2 : (m_uiNumPartition >> 1);
break;
case SIZE_NxN:
ruiPartIdxRB += ( m_uiNumPartition >> 2 ) * ( uiPartIdx - 1 );
break;
case SIZE_2NxnU:
ruiPartIdxRB += ( uiPartIdx == 0 ) ? -((Int)m_uiNumPartition >> 3) : m_uiNumPartition >> 1;
break;
case SIZE_2NxnD:
ruiPartIdxRB += ( uiPartIdx == 0 ) ? (m_uiNumPartition >> 2) + (m_uiNumPartition >> 3) : m_uiNumPartition >> 1;
break;
case SIZE_nLx2N:
ruiPartIdxRB += ( uiPartIdx == 0 ) ? (m_uiNumPartition >> 3) + (m_uiNumPartition >> 4) : m_uiNumPartition >> 1;
break;
case SIZE_nRx2N:
ruiPartIdxRB += ( uiPartIdx == 0 ) ? (m_uiNumPartition >> 2) + (m_uiNumPartition >> 3) + (m_uiNumPartition >> 4) : m_uiNumPartition >> 1;
break;
default:
assert (0);
break;
}
}
Void TComDataCU::deriveLeftRightTopIdxAdi ( UInt &ruiPartIdxLT, UInt &ruiPartIdxRT, UInt uiPartOffset, UInt uiPartDepth )
{
UInt uiNumPartInWidth = (m_puhWidth[0] / m_pcPic->getMinCUWidth()) >> uiPartDepth;
ruiPartIdxLT = m_uiAbsIdxInLCU + uiPartOffset;
ruiPartIdxRT = g_auiRasterToZscan[ g_auiZscanToRaster[ ruiPartIdxLT ] + uiNumPartInWidth - 1 ];
}
Void TComDataCU::deriveLeftBottomIdxAdi( UInt &ruiPartIdxLB, UInt uiPartOffset, UInt uiPartDepth )
{
UInt uiAbsIdx;
UInt uiMinCuWidth, uiWidthInMinCus;
uiMinCuWidth = getPic()->getMinCUWidth();
uiWidthInMinCus = (getWidth(0) / uiMinCuWidth) >> uiPartDepth;
uiAbsIdx = getZorderIdxInCU() + uiPartOffset + (m_uiNumPartition >> (uiPartDepth << 1)) - 1;
uiAbsIdx = g_auiZscanToRaster[uiAbsIdx] - (uiWidthInMinCus - 1);
ruiPartIdxLB = g_auiRasterToZscan[uiAbsIdx];
}
Bool TComDataCU::hasEqualMotion( UInt uiAbsPartIdx, TComDataCU *pcCandCU, UInt uiCandAbsPartIdx )
{
if ( getInterDir( uiAbsPartIdx ) != pcCandCU->getInterDir( uiCandAbsPartIdx ) )
{
return false;
}
for ( UInt uiRefListIdx = 0; uiRefListIdx < 2; uiRefListIdx++ )
{
if ( getInterDir( uiAbsPartIdx ) & ( 1 << uiRefListIdx ) )
{
if ( getCUMvField( RefPicList( uiRefListIdx ) )->getMv( uiAbsPartIdx ) != pcCandCU->getCUMvField( RefPicList( uiRefListIdx ) )->getMv( uiCandAbsPartIdx ) ||
getCUMvField( RefPicList( uiRefListIdx ) )->getRefIdx( uiAbsPartIdx ) != pcCandCU->getCUMvField( RefPicList( uiRefListIdx ) )->getRefIdx( uiCandAbsPartIdx ) )
{
return false;
}
}
}
return true;
}
/** Constructs a list of merging candidates
* \param uiAbsPartIdx
* \param uiPUIdx
* \param uiDepth
* \param pcMvFieldNeighbours
* \param puhInterDirNeighbours
* \param numValidMergeCand
*/
Void TComDataCU::getInterMergeCandidates( UInt uiAbsPartIdx, UInt uiPUIdx, TComMvField *pcMvFieldNeighbours, UChar *puhInterDirNeighbours, Int &numValidMergeCand, Int mrgCandIdx )
{
UInt uiAbsPartAddr = m_uiAbsIdxInLCU + uiAbsPartIdx;
Bool abCandIsInter[ MRG_MAX_NUM_CANDS ];
for( UInt ui = 0; ui < getSlice()->getMaxNumMergeCand(); ++ui )
{
abCandIsInter[ui] = false;
pcMvFieldNeighbours[ ( ui << 1 ) ].setRefIdx(NOT_VALID);
pcMvFieldNeighbours[ ( ui << 1 ) + 1 ].setRefIdx(NOT_VALID);
}
numValidMergeCand = getSlice()->getMaxNumMergeCand();
// compute the location of the current PU
Int xP, yP, nPSW, nPSH;
this->getPartPosition(uiPUIdx, xP, yP, nPSW, nPSH);
Int iCount = 0;
UInt uiPartIdxLT, uiPartIdxRT, uiPartIdxLB;
PartSize cCurPS = getPartitionSize( uiAbsPartIdx );
deriveLeftRightTopIdxGeneral( uiAbsPartIdx, uiPUIdx, uiPartIdxLT, uiPartIdxRT );
deriveLeftBottomIdxGeneral ( uiAbsPartIdx, uiPUIdx, uiPartIdxLB );
//left
UInt uiLeftPartIdx = 0;
TComDataCU *pcCULeft = 0;
pcCULeft = getPULeft( uiLeftPartIdx, uiPartIdxLB );
Bool isAvailableA1 = pcCULeft &&
pcCULeft->isDiffMER(xP - 1, yP + nPSH - 1, xP, yP) &&
!( uiPUIdx == 1 && (cCurPS == SIZE_Nx2N || cCurPS == SIZE_nLx2N || cCurPS == SIZE_nRx2N) ) &&
!pcCULeft->isIntra( uiLeftPartIdx ) ;
if ( isAvailableA1 )
{
abCandIsInter[iCount] = true;
// get Inter Dir
puhInterDirNeighbours[iCount] = pcCULeft->getInterDir( uiLeftPartIdx );
// get Mv from Left
pcCULeft->getMvField( pcCULeft, uiLeftPartIdx, REF_PIC_LIST_0, pcMvFieldNeighbours[iCount << 1] );
if ( getSlice()->isInterB() )
{
pcCULeft->getMvField( pcCULeft, uiLeftPartIdx, REF_PIC_LIST_1, pcMvFieldNeighbours[(iCount << 1) + 1] );
}
if ( mrgCandIdx == iCount )
{
return;
}
iCount ++;
}
// early termination
if (iCount == getSlice()->getMaxNumMergeCand())
{
return;
}
// above
UInt uiAbovePartIdx = 0;
TComDataCU *pcCUAbove = 0;
pcCUAbove = getPUAbove( uiAbovePartIdx, uiPartIdxRT );
Bool isAvailableB1 = pcCUAbove &&
pcCUAbove->isDiffMER(xP + nPSW - 1, yP - 1, xP, yP) &&
!( uiPUIdx == 1 && (cCurPS == SIZE_2NxN || cCurPS == SIZE_2NxnU || cCurPS == SIZE_2NxnD) ) &&
!pcCUAbove->isIntra( uiAbovePartIdx );
if ( isAvailableB1 && (!isAvailableA1 || !pcCULeft->hasEqualMotion( uiLeftPartIdx, pcCUAbove, uiAbovePartIdx ) ) )
{
abCandIsInter[iCount] = true;
// get Inter Dir
puhInterDirNeighbours[iCount] = pcCUAbove->getInterDir( uiAbovePartIdx );
// get Mv from Left
pcCUAbove->getMvField( pcCUAbove, uiAbovePartIdx, REF_PIC_LIST_0, pcMvFieldNeighbours[iCount << 1] );
if ( getSlice()->isInterB() )
{
pcCUAbove->getMvField( pcCUAbove, uiAbovePartIdx, REF_PIC_LIST_1, pcMvFieldNeighbours[(iCount << 1) + 1] );
}
if ( mrgCandIdx == iCount )
{
return;
}
iCount ++;
}
// early termination
if (iCount == getSlice()->getMaxNumMergeCand())
{
return;
}
// above right
UInt uiAboveRightPartIdx = 0;
TComDataCU *pcCUAboveRight = 0;
pcCUAboveRight = getPUAboveRight( uiAboveRightPartIdx, uiPartIdxRT );
Bool isAvailableB0 = pcCUAboveRight &&
pcCUAboveRight->isDiffMER(xP + nPSW, yP - 1, xP, yP) &&
!pcCUAboveRight->isIntra( uiAboveRightPartIdx );
if ( isAvailableB0 && ( !isAvailableB1 || !pcCUAbove->hasEqualMotion( uiAbovePartIdx, pcCUAboveRight, uiAboveRightPartIdx ) ) )
{
abCandIsInter[iCount] = true;
// get Inter Dir
puhInterDirNeighbours[iCount] = pcCUAboveRight->getInterDir( uiAboveRightPartIdx );
// get Mv from Left
pcCUAboveRight->getMvField( pcCUAboveRight, uiAboveRightPartIdx, REF_PIC_LIST_0, pcMvFieldNeighbours[iCount << 1] );
if ( getSlice()->isInterB() )
{
pcCUAboveRight->getMvField( pcCUAboveRight, uiAboveRightPartIdx, REF_PIC_LIST_1, pcMvFieldNeighbours[(iCount << 1) + 1] );
}
if ( mrgCandIdx == iCount )
{
return;
}
iCount ++;
}
// early termination
if (iCount == getSlice()->getMaxNumMergeCand())
{
return;
}
//left bottom
UInt uiLeftBottomPartIdx = 0;
TComDataCU *pcCULeftBottom = 0;
pcCULeftBottom = this->getPUBelowLeft( uiLeftBottomPartIdx, uiPartIdxLB );
Bool isAvailableA0 = pcCULeftBottom &&
pcCULeftBottom->isDiffMER(xP - 1, yP + nPSH, xP, yP) &&
!pcCULeftBottom->isIntra( uiLeftBottomPartIdx ) ;
if ( isAvailableA0 && ( !isAvailableA1 || !pcCULeft->hasEqualMotion( uiLeftPartIdx, pcCULeftBottom, uiLeftBottomPartIdx ) ) )
{
abCandIsInter[iCount] = true;
// get Inter Dir
puhInterDirNeighbours[iCount] = pcCULeftBottom->getInterDir( uiLeftBottomPartIdx );
// get Mv from Left
pcCULeftBottom->getMvField( pcCULeftBottom, uiLeftBottomPartIdx, REF_PIC_LIST_0, pcMvFieldNeighbours[iCount << 1] );
if ( getSlice()->isInterB() )
{
pcCULeftBottom->getMvField( pcCULeftBottom, uiLeftBottomPartIdx, REF_PIC_LIST_1, pcMvFieldNeighbours[(iCount << 1) + 1] );
}
if ( mrgCandIdx == iCount )
{
return;
}
iCount ++;
}
// early termination
if (iCount == getSlice()->getMaxNumMergeCand())
{
return;
}
// above left
if( iCount < 4 )
{
UInt uiAboveLeftPartIdx = 0;
TComDataCU *pcCUAboveLeft = 0;
pcCUAboveLeft = getPUAboveLeft( uiAboveLeftPartIdx, uiAbsPartAddr );
Bool isAvailableB2 = pcCUAboveLeft &&
pcCUAboveLeft->isDiffMER(xP - 1, yP - 1, xP, yP) &&
!pcCUAboveLeft->isIntra( uiAboveLeftPartIdx );
if ( isAvailableB2 && ( !isAvailableA1 || !pcCULeft->hasEqualMotion( uiLeftPartIdx, pcCUAboveLeft, uiAboveLeftPartIdx ) )
&& ( !isAvailableB1 || !pcCUAbove->hasEqualMotion( uiAbovePartIdx, pcCUAboveLeft, uiAboveLeftPartIdx ) ) )
{
abCandIsInter[iCount] = true;
// get Inter Dir
puhInterDirNeighbours[iCount] = pcCUAboveLeft->getInterDir( uiAboveLeftPartIdx );
// get Mv from Left
pcCUAboveLeft->getMvField( pcCUAboveLeft, uiAboveLeftPartIdx, REF_PIC_LIST_0, pcMvFieldNeighbours[iCount << 1] );
if ( getSlice()->isInterB() )
{
pcCUAboveLeft->getMvField( pcCUAboveLeft, uiAboveLeftPartIdx, REF_PIC_LIST_1, pcMvFieldNeighbours[(iCount << 1) + 1] );
}
if ( mrgCandIdx == iCount )
{
return;
}
iCount ++;
}
}
// early termination
if (iCount == getSlice()->getMaxNumMergeCand())
{
return;
}
if ( getSlice()->getEnableTMVPFlag())
{
//>> MTK colocated-RightBottom
UInt uiPartIdxRB;
Int uiLCUIdx = getAddr();
deriveRightBottomIdx( uiPUIdx, uiPartIdxRB );
UInt uiAbsPartIdxTmp = g_auiZscanToRaster[uiPartIdxRB];
UInt uiNumPartInCUWidth = m_pcPic->getNumPartInWidth();
TComMv cColMv;
Int iRefIdx;
if ( ( m_pcPic->getCU(m_uiCUAddr)->getCUPelX() + g_auiRasterToPelX[uiAbsPartIdxTmp] + m_pcPic->getMinCUWidth() ) >= m_pcSlice->getSPS()->getPicWidthInLumaSamples() ) // image boundary check
{
uiLCUIdx = -1;
}
else if ( ( m_pcPic->getCU(m_uiCUAddr)->getCUPelY() + g_auiRasterToPelY[uiAbsPartIdxTmp] + m_pcPic->getMinCUHeight() ) >= m_pcSlice->getSPS()->getPicHeightInLumaSamples() )
{
uiLCUIdx = -1;
}
else
{
if ( ( uiAbsPartIdxTmp % uiNumPartInCUWidth < uiNumPartInCUWidth - 1 ) && // is not at the last column of LCU
( uiAbsPartIdxTmp / uiNumPartInCUWidth < m_pcPic->getNumPartInHeight() - 1 ) ) // is not at the last row of LCU
{
uiAbsPartAddr = g_auiRasterToZscan[ uiAbsPartIdxTmp + uiNumPartInCUWidth + 1 ];
uiLCUIdx = getAddr();
}
else if ( uiAbsPartIdxTmp % uiNumPartInCUWidth < uiNumPartInCUWidth - 1 ) // is not at the last column of LCU But is last row of LCU
{
uiAbsPartAddr = g_auiRasterToZscan[ (uiAbsPartIdxTmp + uiNumPartInCUWidth + 1) % m_pcPic->getNumPartInCU() ];
uiLCUIdx = -1 ;
}
else if ( uiAbsPartIdxTmp / uiNumPartInCUWidth < m_pcPic->getNumPartInHeight() - 1 ) // is not at the last row of LCU But is last column of LCU
{
uiAbsPartAddr = g_auiRasterToZscan[ uiAbsPartIdxTmp + 1 ];
uiLCUIdx = getAddr() + 1;
}
else //is the right bottom corner of LCU
{
uiAbsPartAddr = 0;
uiLCUIdx = -1 ;
}
}
iRefIdx = 0;
Bool bExistMV = false;
UInt uiPartIdxCenter;
UInt uiCurLCUIdx = getAddr();
Int dir = 0;
UInt uiArrayAddr = iCount;
xDeriveCenterIdx( uiPUIdx, uiPartIdxCenter );
bExistMV = uiLCUIdx >= 0 && xGetColMVP( REF_PIC_LIST_0, uiLCUIdx, uiAbsPartAddr, cColMv, iRefIdx );
if( bExistMV == false )
{
bExistMV = xGetColMVP( REF_PIC_LIST_0, uiCurLCUIdx, uiPartIdxCenter, cColMv, iRefIdx );
}
if( bExistMV )
{
dir |= 1;
pcMvFieldNeighbours[ 2 * uiArrayAddr ].setMvField( cColMv, iRefIdx );
}
if ( getSlice()->isInterB() )
{
bExistMV = uiLCUIdx >= 0 && xGetColMVP( REF_PIC_LIST_1, uiLCUIdx, uiAbsPartAddr, cColMv, iRefIdx);
if( bExistMV == false )
{
bExistMV = xGetColMVP( REF_PIC_LIST_1, uiCurLCUIdx, uiPartIdxCenter, cColMv, iRefIdx );
}
if( bExistMV )
{
dir |= 2;
pcMvFieldNeighbours[ 2 * uiArrayAddr + 1 ].setMvField( cColMv, iRefIdx );
}
}
if (dir != 0)
{
puhInterDirNeighbours[uiArrayAddr] = dir;
abCandIsInter[uiArrayAddr] = true;
if ( mrgCandIdx == iCount )
{
return;
}
iCount++;
}
}
// early termination
if (iCount == getSlice()->getMaxNumMergeCand())
{
return;
}
UInt uiArrayAddr = iCount;
UInt uiCutoff = uiArrayAddr;
if ( getSlice()->isInterB())
{
UInt uiPriorityList0[12] = {0 , 1, 0, 2, 1, 2, 0, 3, 1, 3, 2, 3};
UInt uiPriorityList1[12] = {1 , 0, 2, 0, 2, 1, 3, 0, 3, 1, 3, 2};
for (Int idx = 0; idx < uiCutoff * (uiCutoff - 1) && uiArrayAddr != getSlice()->getMaxNumMergeCand(); idx++)
{
Int i = uiPriorityList0[idx];
Int j = uiPriorityList1[idx];
if (abCandIsInter[i] && abCandIsInter[j] && (puhInterDirNeighbours[i] & 0x1) && (puhInterDirNeighbours[j] & 0x2))
{
abCandIsInter[uiArrayAddr] = true;
puhInterDirNeighbours[uiArrayAddr] = 3;
// get Mv from cand[i] and cand[j]
pcMvFieldNeighbours[uiArrayAddr << 1].setMvField(pcMvFieldNeighbours[i << 1].getMv(), pcMvFieldNeighbours[i << 1].getRefIdx());
pcMvFieldNeighbours[( uiArrayAddr << 1 ) + 1].setMvField(pcMvFieldNeighbours[(j << 1) + 1].getMv(), pcMvFieldNeighbours[(j << 1) + 1].getRefIdx());
Int iRefPOCL0 = m_pcSlice->getRefPOC( REF_PIC_LIST_0, pcMvFieldNeighbours[(uiArrayAddr << 1)].getRefIdx() );
Int iRefPOCL1 = m_pcSlice->getRefPOC( REF_PIC_LIST_1, pcMvFieldNeighbours[(uiArrayAddr << 1) + 1].getRefIdx() );
if (iRefPOCL0 == iRefPOCL1 && pcMvFieldNeighbours[(uiArrayAddr << 1)].getMv() == pcMvFieldNeighbours[(uiArrayAddr << 1) + 1].getMv())
{
abCandIsInter[uiArrayAddr] = false;
}
else
{
uiArrayAddr++;
}
}
}
}
// early termination
if (uiArrayAddr == getSlice()->getMaxNumMergeCand())
{
return;
}
Int iNumRefIdx = (getSlice()->isInterB()) ? min(m_pcSlice->getNumRefIdx(REF_PIC_LIST_0), m_pcSlice->getNumRefIdx(REF_PIC_LIST_1)) : m_pcSlice->getNumRefIdx(REF_PIC_LIST_0);
Int r = 0;
Int refcnt = 0;
while (uiArrayAddr < getSlice()->getMaxNumMergeCand())
{
abCandIsInter[uiArrayAddr] = true;
puhInterDirNeighbours[uiArrayAddr] = 1;
pcMvFieldNeighbours[uiArrayAddr << 1].setMvField( TComMv(0, 0), r);
if ( getSlice()->isInterB() )
{
puhInterDirNeighbours[uiArrayAddr] = 3;
pcMvFieldNeighbours[(uiArrayAddr << 1) + 1].setMvField(TComMv(0, 0), r);
}
uiArrayAddr++;
if ( refcnt == iNumRefIdx - 1 )
{
r = 0;
}
else
{
++r;
++refcnt;
}
}
numValidMergeCand = uiArrayAddr;
}
/** Check whether the current PU and a spatial neighboring PU are in a same ME region.
* \param xN, xN location of the upper-left corner pixel of a neighboring PU
* \param xP, yP location of the upper-left corner pixel of the current PU
* \returns Bool
*/
Bool TComDataCU::isDiffMER(Int xN, Int yN, Int xP, Int yP)
{
UInt plevel = this->getSlice()->getPPS()->getLog2ParallelMergeLevelMinus2() + 2;
if ((xN >> plevel) != (xP >> plevel))
{
return true;
}
if ((yN >> plevel) != (yP >> plevel))
{
return true;
}
return false;
}
/** calculate the location of upper-left corner pixel and size of the current PU.
* \param partIdx PU index within a CU
* \param xP, yP location of the upper-left corner pixel of the current PU
* \param PSW, nPSH size of the curren PU
* \returns Void
*/
Void TComDataCU::getPartPosition( UInt partIdx, Int &xP, Int &yP, Int &nPSW, Int &nPSH)
{
UInt col = m_uiCUPelX;
UInt row = m_uiCUPelY;
switch ( m_pePartSize[0] )
{
case SIZE_2NxN:
nPSW = getWidth(0);
nPSH = getHeight(0) >> 1;
xP = col;
yP = (partIdx == 0) ? row : row + nPSH;
break;
case SIZE_Nx2N:
nPSW = getWidth(0) >> 1;
nPSH = getHeight(0);
xP = (partIdx == 0) ? col : col + nPSW;
yP = row;
break;
case SIZE_NxN:
nPSW = getWidth(0) >> 1;
nPSH = getHeight(0) >> 1;
xP = col + (partIdx & 0x1) * nPSW;
yP = row + (partIdx >> 1) * nPSH;
break;
case SIZE_2NxnU:
nPSW = getWidth(0);
nPSH = ( partIdx == 0 ) ? getHeight(0) >> 2 : ( getHeight(0) >> 2 ) + ( getHeight(0) >> 1 );
xP = col;
yP = (partIdx == 0) ? row : row + getHeight(0) - nPSH;
break;
case SIZE_2NxnD:
nPSW = getWidth(0);
nPSH = ( partIdx == 0 ) ? ( getHeight(0) >> 2 ) + ( getHeight(0) >> 1 ) : getHeight(0) >> 2;
xP = col;
yP = (partIdx == 0) ? row : row + getHeight(0) - nPSH;
break;
case SIZE_nLx2N:
nPSW = ( partIdx == 0 ) ? getWidth(0) >> 2 : ( getWidth(0) >> 2 ) + ( getWidth(0) >> 1 );
nPSH = getHeight(0);
xP = (partIdx == 0) ? col : col + getWidth(0) - nPSW;
yP = row;
break;
case SIZE_nRx2N:
nPSW = ( partIdx == 0 ) ? ( getWidth(0) >> 2 ) + ( getWidth(0) >> 1 ) : getWidth(0) >> 2;
nPSH = getHeight(0);
xP = (partIdx == 0) ? col : col + getWidth(0) - nPSW;
yP = row;
break;
default:
assert ( m_pePartSize[0] == SIZE_2Nx2N );
nPSW = getWidth(0);
nPSH = getHeight(0);
xP = col ;
yP = row ;
break;
}
}
/** Constructs a list of candidates for AMVP
* \param uiPartIdx
* \param uiPartAddr
* \param eRefPicList
* \param iRefIdx
* \param pInfo
*/
Void TComDataCU::fillMvpCand ( UInt uiPartIdx, UInt uiPartAddr, RefPicList eRefPicList, Int iRefIdx, AMVPInfo *pInfo )
{
TComMv cMvPred;
Bool bAddedSmvp = false;
pInfo->iN = 0;
if (iRefIdx < 0)
{
return;
}
//-- Get Spatial MV
UInt uiPartIdxLT, uiPartIdxRT, uiPartIdxLB;
UInt uiNumPartInCUWidth = m_pcPic->getNumPartInWidth();
Bool bAdded = false;
deriveLeftRightTopIdx( uiPartIdx, uiPartIdxLT, uiPartIdxRT );
deriveLeftBottomIdx( uiPartIdx, uiPartIdxLB );
TComDataCU *tmpCU = NULL;
UInt idx;
tmpCU = getPUBelowLeft(idx, uiPartIdxLB);
bAddedSmvp = (tmpCU != NULL) && (tmpCU->getPredictionMode(idx) != MODE_INTRA);
if (!bAddedSmvp)
{
tmpCU = getPULeft(idx, uiPartIdxLB);
bAddedSmvp = (tmpCU != NULL) && (tmpCU->getPredictionMode(idx) != MODE_INTRA);
}
// Left predictor search
bAdded = xAddMVPCand( pInfo, eRefPicList, iRefIdx, uiPartIdxLB, MD_BELOW_LEFT);
if (!bAdded)
{
bAdded = xAddMVPCand( pInfo, eRefPicList, iRefIdx, uiPartIdxLB, MD_LEFT );
}
if(!bAdded)
{
bAdded = xAddMVPCandOrder( pInfo, eRefPicList, iRefIdx, uiPartIdxLB, MD_BELOW_LEFT);
if (!bAdded)
{
bAdded = xAddMVPCandOrder( pInfo, eRefPicList, iRefIdx, uiPartIdxLB, MD_LEFT );
}
}
// Above predictor search
bAdded = xAddMVPCand( pInfo, eRefPicList, iRefIdx, uiPartIdxRT, MD_ABOVE_RIGHT);
if (!bAdded)
{
bAdded = xAddMVPCand( pInfo, eRefPicList, iRefIdx, uiPartIdxRT, MD_ABOVE);
}
if(!bAdded)
{
bAdded = xAddMVPCand( pInfo, eRefPicList, iRefIdx, uiPartIdxLT, MD_ABOVE_LEFT);
}
bAdded = bAddedSmvp;
if (pInfo->iN == 2) bAdded = true;
if(!bAdded)
{
bAdded = xAddMVPCandOrder( pInfo, eRefPicList, iRefIdx, uiPartIdxRT, MD_ABOVE_RIGHT);
if (!bAdded)
{
bAdded = xAddMVPCandOrder( pInfo, eRefPicList, iRefIdx, uiPartIdxRT, MD_ABOVE);
}
if(!bAdded)
{
bAdded = xAddMVPCandOrder( pInfo, eRefPicList, iRefIdx, uiPartIdxLT, MD_ABOVE_LEFT);
}
}
if ( pInfo->iN == 2 )
{
if ( pInfo->m_acMvCand[ 0 ] == pInfo->m_acMvCand[ 1 ] )
{
pInfo->iN = 1;
}
}
if ( getSlice()->getEnableTMVPFlag() )
{
// Get Temporal Motion Predictor
Int iRefIdx_Col = iRefIdx;
TComMv cColMv;
UInt uiPartIdxRB;
UInt uiAbsPartIdx;
UInt uiAbsPartAddr;
Int uiLCUIdx = getAddr();
deriveRightBottomIdx( uiPartIdx, uiPartIdxRB );
uiAbsPartAddr = m_uiAbsIdxInLCU + uiPartAddr;
//---- co-located RightBottom Temporal Predictor (H) ---//
uiAbsPartIdx = g_auiZscanToRaster[uiPartIdxRB];
if ( ( m_pcPic->getCU(m_uiCUAddr)->getCUPelX() + g_auiRasterToPelX[uiAbsPartIdx] + m_pcPic->getMinCUWidth() ) >= m_pcSlice->getSPS()->getPicWidthInLumaSamples() ) // image boundary check
{
uiLCUIdx = -1;
}
else if ( ( m_pcPic->getCU(m_uiCUAddr)->getCUPelY() + g_auiRasterToPelY[uiAbsPartIdx] + m_pcPic->getMinCUHeight() ) >= m_pcSlice->getSPS()->getPicHeightInLumaSamples() )
{
uiLCUIdx = -1;
}
else
{
if ( ( uiAbsPartIdx % uiNumPartInCUWidth < uiNumPartInCUWidth - 1 ) && // is not at the last column of LCU
( uiAbsPartIdx / uiNumPartInCUWidth < m_pcPic->getNumPartInHeight() - 1 ) ) // is not at the last row of LCU
{
uiAbsPartAddr = g_auiRasterToZscan[ uiAbsPartIdx + uiNumPartInCUWidth + 1 ];
uiLCUIdx = getAddr();
}
else if ( uiAbsPartIdx % uiNumPartInCUWidth < uiNumPartInCUWidth - 1 ) // is not at the last column of LCU But is last row of LCU
{
uiAbsPartAddr = g_auiRasterToZscan[ (uiAbsPartIdx + uiNumPartInCUWidth + 1) % m_pcPic->getNumPartInCU() ];
uiLCUIdx = -1 ;
}
else if ( uiAbsPartIdx / uiNumPartInCUWidth < m_pcPic->getNumPartInHeight() - 1 ) // is not at the last row of LCU But is last column of LCU
{
uiAbsPartAddr = g_auiRasterToZscan[ uiAbsPartIdx + 1 ];
uiLCUIdx = getAddr() + 1;
}
else //is the right bottom corner of LCU
{
uiAbsPartAddr = 0;
uiLCUIdx = -1 ;
}
}
if ( uiLCUIdx >= 0 && xGetColMVP( eRefPicList, uiLCUIdx, uiAbsPartAddr, cColMv, iRefIdx_Col ) )
{
pInfo->m_acMvCand[pInfo->iN++] = cColMv;
}
else
{
UInt uiPartIdxCenter;
UInt uiCurLCUIdx = getAddr();
xDeriveCenterIdx( uiPartIdx, uiPartIdxCenter );
if (xGetColMVP( eRefPicList, uiCurLCUIdx, uiPartIdxCenter, cColMv, iRefIdx_Col ))
{
pInfo->m_acMvCand[pInfo->iN++] = cColMv;
}
}
//---- co-located RightBottom Temporal Predictor ---//
}
if (pInfo->iN > AMVP_MAX_NUM_CANDS)
{
pInfo->iN = AMVP_MAX_NUM_CANDS;
}
while (pInfo->iN < AMVP_MAX_NUM_CANDS)
{
pInfo->m_acMvCand[pInfo->iN].set(0, 0);
pInfo->iN++;
}
return ;
}
Bool TComDataCU::isBipredRestriction(UInt puIdx)
{
Int width = 0;
Int height = 0;
UInt partAddr;
getPartIndexAndSize( puIdx, partAddr, width, height );
if ( getWidth(0) == 8 && (width < 8 || height < 8) )
{
return true;
}
return false;
}
Void TComDataCU::clipMv (TComMv &rcMv)
{
Int iMvShift = 2;
Int iOffset = 8;
Int iHorMax = ( m_pcSlice->getSPS()->getPicWidthInLumaSamples() + iOffset - m_uiCUPelX - 1 ) << iMvShift;
Int iHorMin = ( -(Int)g_uiMaxCUWidth - iOffset - (Int)m_uiCUPelX + 1 ) << iMvShift;
Int iVerMax = ( m_pcSlice->getSPS()->getPicHeightInLumaSamples() + iOffset - m_uiCUPelY - 1 ) << iMvShift;
Int iVerMin = ( -(Int)g_uiMaxCUHeight - iOffset - (Int)m_uiCUPelY + 1 ) << iMvShift;
rcMv.setHor( min (iHorMax, max (iHorMin, rcMv.getHor())) );
rcMv.setVer( min (iVerMax, max (iVerMin, rcMv.getVer())) );
}
UInt TComDataCU::getIntraSizeIdx(UInt uiAbsPartIdx)
{
UInt uiShift = ( (m_puhTrIdx[uiAbsPartIdx] == 0) && (m_pePartSize[uiAbsPartIdx] == SIZE_NxN) ) ? m_puhTrIdx[uiAbsPartIdx] + 1 : m_puhTrIdx[uiAbsPartIdx];
uiShift = ( m_pePartSize[uiAbsPartIdx] == SIZE_NxN ? 1 : 0 );
UChar uiWidth = m_puhWidth[uiAbsPartIdx] >> uiShift;
UInt uiCnt = 0;
while( uiWidth )
{
uiCnt++;
uiWidth >>= 1;
}
uiCnt -= 2;
return uiCnt > 6 ? 6 : uiCnt;
}
Void TComDataCU::clearCbf( UInt uiIdx, TextType eType, UInt uiNumParts )
{
::memset( &m_puhCbf[g_aucConvertTxtTypeToIdx[eType]][uiIdx], 0, sizeof(UChar)*uiNumParts);
}
/** Set a I_PCM flag for all sub-partitions of a partition.
* \param bIpcmFlag I_PCM flag
* \param uiAbsPartIdx patition index
* \param uiDepth CU depth
* \returns Void
*/
Void TComDataCU::setIPCMFlagSubParts (Bool bIpcmFlag, UInt uiAbsPartIdx, UInt uiDepth)
{
UInt uiCurrPartNumb = m_pcPic->getNumPartInCU() >> (uiDepth << 1);
memset(m_pbIPCMFlag + uiAbsPartIdx, bIpcmFlag, sizeof(Bool)*uiCurrPartNumb );
}
/** Test whether the current block is skipped
* \param uiPartIdx Block index
* \returns Flag indicating whether the block is skipped
*/
Bool TComDataCU::isSkipped( UInt uiPartIdx )
{
return ( getSkipFlag( uiPartIdx ) );
}
// ====================================================================================================================
// Protected member functions
// ====================================================================================================================
Bool TComDataCU::xAddMVPCand( AMVPInfo *pInfo, RefPicList eRefPicList, Int iRefIdx, UInt uiPartUnitIdx, MVP_DIR eDir )
{
TComDataCU *pcTmpCU = NULL;
UInt uiIdx;
switch( eDir )
{
case MD_LEFT:
{
pcTmpCU = getPULeft(uiIdx, uiPartUnitIdx);
break;
}
case MD_ABOVE:
{
pcTmpCU = getPUAbove(uiIdx, uiPartUnitIdx );
break;
}
case MD_ABOVE_RIGHT:
{
pcTmpCU = getPUAboveRight(uiIdx, uiPartUnitIdx);
break;
}
case MD_BELOW_LEFT:
{
pcTmpCU = getPUBelowLeft(uiIdx, uiPartUnitIdx);
break;
}
case MD_ABOVE_LEFT:
{
pcTmpCU = getPUAboveLeft(uiIdx, uiPartUnitIdx);
break;
}
default:
{
break;
}
}
if ( pcTmpCU == NULL )
{
return false;
}
#if L0363_MVP_POC
if ( pcTmpCU->getCUMvField(eRefPicList)->getRefIdx(uiIdx) >= 0 && m_pcSlice->getRefPic( eRefPicList, iRefIdx)->getPOC() == pcTmpCU->getSlice()->getRefPOC( eRefPicList, pcTmpCU->getCUMvField(eRefPicList)->getRefIdx(uiIdx) ))
#else
if ( m_pcSlice->isEqualRef(eRefPicList, pcTmpCU->getCUMvField(eRefPicList)->getRefIdx(uiIdx), iRefIdx) )
#endif
{
TComMv cMvPred = pcTmpCU->getCUMvField(eRefPicList)->getMv(uiIdx);
pInfo->m_acMvCand[ pInfo->iN++] = cMvPred;
return true;
}
RefPicList eRefPicList2nd = REF_PIC_LIST_0;
if( eRefPicList == REF_PIC_LIST_0 )
{
eRefPicList2nd = REF_PIC_LIST_1;
}
else if ( eRefPicList == REF_PIC_LIST_1)
{
eRefPicList2nd = REF_PIC_LIST_0;
}
Int iCurrRefPOC = m_pcSlice->getRefPic( eRefPicList, iRefIdx)->getPOC();
Int iNeibRefPOC;
if( pcTmpCU->getCUMvField(eRefPicList2nd)->getRefIdx(uiIdx) >= 0 )
{
iNeibRefPOC = pcTmpCU->getSlice()->getRefPOC( eRefPicList2nd, pcTmpCU->getCUMvField(eRefPicList2nd)->getRefIdx(uiIdx) );
if( iNeibRefPOC == iCurrRefPOC ) // Same Reference Frame But Diff List//
{
TComMv cMvPred = pcTmpCU->getCUMvField(eRefPicList2nd)->getMv(uiIdx);
pInfo->m_acMvCand[ pInfo->iN++] = cMvPred;
return true;
}
}
return false;
}
/**
* \param pInfo
* \param eRefPicList
* \param iRefIdx
* \param uiPartUnitIdx
* \param eDir
* \returns Bool
*/
Bool TComDataCU::xAddMVPCandOrder( AMVPInfo *pInfo, RefPicList eRefPicList, Int iRefIdx, UInt uiPartUnitIdx, MVP_DIR eDir )
{
TComDataCU *pcTmpCU = NULL;
UInt uiIdx;
switch( eDir )
{
case MD_LEFT:
{
pcTmpCU = getPULeft(uiIdx, uiPartUnitIdx);
break;
}
case MD_ABOVE:
{
pcTmpCU = getPUAbove(uiIdx, uiPartUnitIdx);
break;
}
case MD_ABOVE_RIGHT:
{
pcTmpCU = getPUAboveRight(uiIdx, uiPartUnitIdx);
break;
}
case MD_BELOW_LEFT:
{
pcTmpCU = getPUBelowLeft(uiIdx, uiPartUnitIdx);
break;
}
case MD_ABOVE_LEFT:
{
pcTmpCU = getPUAboveLeft(uiIdx, uiPartUnitIdx);
break;
}
default:
{
break;
}
}
if ( pcTmpCU == NULL )
{
return false;
}
RefPicList eRefPicList2nd = REF_PIC_LIST_0;
if( eRefPicList == REF_PIC_LIST_0 )
{
eRefPicList2nd = REF_PIC_LIST_1;
}
else if ( eRefPicList == REF_PIC_LIST_1)
{
eRefPicList2nd = REF_PIC_LIST_0;
}
Int iCurrPOC = m_pcSlice->getPOC();
Int iCurrRefPOC = m_pcSlice->getRefPic( eRefPicList, iRefIdx)->getPOC();
Int iNeibPOC = iCurrPOC;
Int iNeibRefPOC;
Bool bIsCurrRefLongTerm = m_pcSlice->getRefPic( eRefPicList, iRefIdx)->getIsLongTerm();
Bool bIsNeibRefLongTerm = false;
//--------------- V1 (END) ------------------//
if( pcTmpCU->getCUMvField(eRefPicList)->getRefIdx(uiIdx) >= 0)
{
iNeibRefPOC = pcTmpCU->getSlice()->getRefPOC( eRefPicList, pcTmpCU->getCUMvField(eRefPicList)->getRefIdx(uiIdx) );
TComMv cMvPred = pcTmpCU->getCUMvField(eRefPicList)->getMv(uiIdx);
TComMv rcMv;
bIsNeibRefLongTerm = pcTmpCU->getSlice()->getRefPic( eRefPicList, pcTmpCU->getCUMvField(eRefPicList)->getRefIdx(uiIdx) )->getIsLongTerm();
if ( bIsCurrRefLongTerm == bIsNeibRefLongTerm )
{
if ( bIsCurrRefLongTerm || bIsNeibRefLongTerm )
{
rcMv = cMvPred;
}
else
{
Int iScale = xGetDistScaleFactor( iCurrPOC, iCurrRefPOC, iNeibPOC, iNeibRefPOC );
if ( iScale == 4096 )
{
rcMv = cMvPred;
}
else
{
rcMv = cMvPred.scaleMv( iScale );
}
}
pInfo->m_acMvCand[ pInfo->iN++] = rcMv;
return true;
}
}
//---------------------- V2(END) --------------------//
if( pcTmpCU->getCUMvField(eRefPicList2nd)->getRefIdx(uiIdx) >= 0)
{
iNeibRefPOC = pcTmpCU->getSlice()->getRefPOC( eRefPicList2nd, pcTmpCU->getCUMvField(eRefPicList2nd)->getRefIdx(uiIdx) );
TComMv cMvPred = pcTmpCU->getCUMvField(eRefPicList2nd)->getMv(uiIdx);
TComMv rcMv;
bIsNeibRefLongTerm = pcTmpCU->getSlice()->getRefPic( eRefPicList2nd, pcTmpCU->getCUMvField(eRefPicList2nd)->getRefIdx(uiIdx) )->getIsLongTerm();
if ( bIsCurrRefLongTerm == bIsNeibRefLongTerm )
{
if ( bIsCurrRefLongTerm || bIsNeibRefLongTerm )
{
rcMv = cMvPred;
}
else
{
Int iScale = xGetDistScaleFactor( iCurrPOC, iCurrRefPOC, iNeibPOC, iNeibRefPOC );
if ( iScale == 4096 )
{
rcMv = cMvPred;
}
else
{
rcMv = cMvPred.scaleMv( iScale );
}
}
pInfo->m_acMvCand[ pInfo->iN++] = rcMv;
return true;
}
}
//---------------------- V3(END) --------------------//
return false;
}
/**
* \param eRefPicList
* \param uiCUAddr
* \param uiPartUnitIdx
* \param riRefIdx
* \returns Bool
*/
Bool TComDataCU::xGetColMVP( RefPicList eRefPicList, Int uiCUAddr, Int uiPartUnitIdx, TComMv &rcMv, Int &riRefIdx )
{
UInt uiAbsPartAddr = uiPartUnitIdx;
RefPicList eColRefPicList;
Int iColPOC, iColRefPOC, iCurrPOC, iCurrRefPOC, iScale;
TComMv cColMv;
// use coldir.
TComPic *pColPic = getSlice()->getRefPic( RefPicList(getSlice()->isInterB() ? 1 - getSlice()->getColFromL0Flag() : 0), getSlice()->getColRefIdx());
TComDataCU *pColCU = pColPic->getCU( uiCUAddr );
if(pColCU->getPic() == 0 || pColCU->getPartitionSize(uiPartUnitIdx) == SIZE_NONE)
{
return false;
}
iCurrPOC = m_pcSlice->getPOC();
iCurrRefPOC = m_pcSlice->getRefPic(eRefPicList, riRefIdx)->getPOC();
iColPOC = pColCU->getSlice()->getPOC();
if (pColCU->isIntra(uiAbsPartAddr))
{
return false;
}
eColRefPicList = getSlice()->getCheckLDC() ? eRefPicList : RefPicList(getSlice()->getColFromL0Flag());
Int iColRefIdx = pColCU->getCUMvField(RefPicList(eColRefPicList))->getRefIdx(uiAbsPartAddr);
if (iColRefIdx < 0 )
{
eColRefPicList = RefPicList(1 - eColRefPicList);
iColRefIdx = pColCU->getCUMvField(RefPicList(eColRefPicList))->getRefIdx(uiAbsPartAddr);
if (iColRefIdx < 0 )
{
return false;
}
}
// Scale the vector.
iColRefPOC = pColCU->getSlice()->getRefPOC(eColRefPicList, iColRefIdx);
cColMv = pColCU->getCUMvField(eColRefPicList)->getMv(uiAbsPartAddr);
iCurrRefPOC = m_pcSlice->getRefPic(eRefPicList, riRefIdx)->getPOC();
Bool bIsCurrRefLongTerm = m_pcSlice->getRefPic(eRefPicList, riRefIdx)->getIsLongTerm();
Bool bIsColRefLongTerm = pColCU->getSlice()->getIsUsedAsLongTerm(eColRefPicList, iColRefIdx);
if ( bIsCurrRefLongTerm != bIsColRefLongTerm )
{
return false;
}
if ( bIsCurrRefLongTerm || bIsColRefLongTerm )
{
rcMv = cColMv;
}
else
{
iScale = xGetDistScaleFactor(iCurrPOC, iCurrRefPOC, iColPOC, iColRefPOC);
if ( iScale == 4096 )
{
rcMv = cColMv;
}
else
{
rcMv = cColMv.scaleMv( iScale );
}
}
return true;
}
UInt TComDataCU::xGetMvdBits(TComMv cMvd)
{
return ( xGetComponentBits(cMvd.getHor()) + xGetComponentBits(cMvd.getVer()) );
}
UInt TComDataCU::xGetComponentBits(Int iVal)
{
UInt uiLength = 1;
UInt uiTemp = ( iVal <= 0) ? (-iVal << 1) + 1 : (iVal << 1);
assert ( uiTemp );
while ( 1 != uiTemp )
{
uiTemp >>= 1;
uiLength += 2;
}
return uiLength;
}
Int TComDataCU::xGetDistScaleFactor(Int iCurrPOC, Int iCurrRefPOC, Int iColPOC, Int iColRefPOC)
{
Int iDiffPocD = iColPOC - iColRefPOC;
Int iDiffPocB = iCurrPOC - iCurrRefPOC;
if( iDiffPocD == iDiffPocB )
{
return 4096;
}
else
{
Int iTDB = Clip3( -128, 127, iDiffPocB );
Int iTDD = Clip3( -128, 127, iDiffPocD );
Int iX = (0x4000 + abs(iTDD / 2)) / iTDD;
Int iScale = Clip3( -4096, 4095, (iTDB * iX + 32) >> 6 );
return iScale;
}
}
/**
* \param eCUMode
* \param uiPartIdx
* \param ruiPartIdxCenter
* \returns Void
*/
Void TComDataCU::xDeriveCenterIdx( UInt uiPartIdx, UInt &ruiPartIdxCenter )
{
UInt uiPartAddr;
Int iPartWidth;
Int iPartHeight;
getPartIndexAndSize( uiPartIdx, uiPartAddr, iPartWidth, iPartHeight);
ruiPartIdxCenter = m_uiAbsIdxInLCU + uiPartAddr; // partition origin.
ruiPartIdxCenter = g_auiRasterToZscan[ g_auiZscanToRaster[ ruiPartIdxCenter ]
+ ( iPartHeight / m_pcPic->getMinCUHeight() ) / 2 * m_pcPic->getNumPartInWidth()
+ ( iPartWidth / m_pcPic->getMinCUWidth() ) / 2];
}
Void TComDataCU::compressMV()
{
Int scaleFactor = 4 * AMVP_DECIMATION_FACTOR / m_unitSize;
if (scaleFactor > 0)
{
m_acCUMvField[0].compress(m_pePredMode, scaleFactor);
m_acCUMvField[1].compress(m_pePredMode, scaleFactor);
}
}
UInt TComDataCU::getCoefScanIdx(UInt uiAbsPartIdx, UInt uiWidth, Bool bIsLuma, Bool bIsIntra)
{
UInt uiCTXIdx;
UInt uiScanIdx;
UInt uiDirMode;
if ( !bIsIntra )
{
uiScanIdx = SCAN_DIAG;
return uiScanIdx;
}
switch(uiWidth)
{
case 2:
uiCTXIdx = 6;
break;
case 4:
uiCTXIdx = 5;
break;
case 8:
uiCTXIdx = 4;
break;
case 16:
uiCTXIdx = 3;
break;
case 32:
uiCTXIdx = 2;
break;
case 64:
uiCTXIdx = 1;
break;
default:
uiCTXIdx = 0;
break;
}
if ( bIsLuma )
{
uiDirMode = getLumaIntraDir(uiAbsPartIdx);
uiScanIdx = SCAN_DIAG;
if (uiCTXIdx > 3 && uiCTXIdx < 6) //if multiple scans supported for transform size
{
uiScanIdx = abs((Int) uiDirMode - VER_IDX) < 5 ? SCAN_HOR : (abs((Int)uiDirMode - HOR_IDX) < 5 ? SCAN_VER : SCAN_DIAG);
}
}
else
{
uiDirMode = getChromaIntraDir(uiAbsPartIdx);
if( uiDirMode == DM_CHROMA_IDX )
{
// get number of partitions in current CU
UInt depth = getDepth(uiAbsPartIdx);
UInt numParts = getPic()->getNumPartInCU() >> (2 * depth);
// get luma mode from upper-left corner of current CU
uiDirMode = getLumaIntraDir((uiAbsPartIdx / numParts) * numParts);
}
uiScanIdx = SCAN_DIAG;
if (uiCTXIdx > 4 && uiCTXIdx < 7) //if multiple scans supported for transform size
{
uiScanIdx = abs((Int) uiDirMode - VER_IDX) < 5 ? SCAN_HOR : (abs((Int)uiDirMode - HOR_IDX) < 5 ? SCAN_VER : SCAN_DIAG);
}
}
return uiScanIdx;
}
UInt TComDataCU::getSCUAddr()
{
return getPic()->getPicSym()->getInverseCUOrderMap(m_uiCUAddr) * (1 << (m_pcSlice->getSPS()->getMaxCUDepth() << 1)) + m_uiAbsIdxInLCU;
}
/** Set neighboring blocks availabilities for non-deblocked filtering
* \param numLCUInPicWidth number of LCUs in picture width
* \param numLCUInPicHeight number of LCUs in picture height
* \param numSUInLCUWidth number of SUs in LCU width
* \param numSUInLCUHeight number of SUs in LCU height
* \param picWidth picture width
* \param picHeight picture height
* \param bIndependentSliceBoundaryEnabled true for independent slice boundary enabled
* \param bTopTileBoundary true means that top boundary coincides tile boundary
* \param bDownTileBoundary true means that bottom boundary coincides tile boundary
* \param bLeftTileBoundary true means that left boundary coincides tile boundary
* \param bRightTileBoundary true means that right boundary coincides tile boundary
* \param bIndependentTileBoundaryEnabled true for independent tile boundary enabled
*/
Void TComDataCU::setNDBFilterBlockBorderAvailability(UInt numLCUInPicWidth, UInt /*numLCUInPicHeight*/, UInt numSUInLCUWidth, UInt numSUInLCUHeight, UInt picWidth, UInt picHeight
, std::vector<Bool> &LFCrossSliceBoundary
, Bool bTopTileBoundary, Bool bDownTileBoundary, Bool bLeftTileBoundary, Bool bRightTileBoundary
, Bool bIndependentTileBoundaryEnabled)
{
UInt numSUInLCU = numSUInLCUWidth * numSUInLCUHeight;
Int *pSliceIDMapLCU = m_piSliceSUMap;
Bool onlyOneSliceInPic = ((Int)LFCrossSliceBoundary.size() == 1);
UInt uiLPelX, uiTPelY;
UInt width, height;
Bool bPicRBoundary, bPicBBoundary, bPicTBoundary, bPicLBoundary;
Bool bLCURBoundary = false, bLCUBBoundary = false, bLCUTBoundary = false, bLCULBoundary = false;
Bool *pbAvailBorder;
Bool *pbAvail;
UInt rTLSU, rBRSU, widthSU, heightSU;
UInt zRefSU;
Int *pRefID;
Int *pRefMapLCU;
UInt rTRefSU = 0, rBRefSU = 0, rLRefSU = 0, rRRefSU = 0;
Int *pRRefMapLCU = NULL;
Int *pLRefMapLCU = NULL;
Int *pTRefMapLCU = NULL;
Int *pBRefMapLCU = NULL;
Int sliceID;
UInt numSGU = (UInt)m_vNDFBlock.size();
for(Int i = 0; i < numSGU; i++)
{
NDBFBlockInfo &rSGU = m_vNDFBlock[i];
sliceID = rSGU.sliceID;
uiLPelX = rSGU.posX;
uiTPelY = rSGU.posY;
width = rSGU.width;
height = rSGU.height;
rTLSU = g_auiZscanToRaster[ rSGU.startSU ];
rBRSU = g_auiZscanToRaster[ rSGU.endSU ];
widthSU = rSGU.widthSU;
heightSU = rSGU.heightSU;
pbAvailBorder = rSGU.isBorderAvailable;
bPicTBoundary = (uiTPelY == 0 ) ? (true) : (false);
bPicLBoundary = (uiLPelX == 0 ) ? (true) : (false);
bPicRBoundary = (!(uiLPelX + width < picWidth ) ) ? (true) : (false);
bPicBBoundary = (!(uiTPelY + height < picHeight)) ? (true) : (false);
bLCULBoundary = (rTLSU % numSUInLCUWidth == 0) ? (true) : (false);
bLCURBoundary = ( (rTLSU + widthSU) % numSUInLCUWidth == 0) ? (true) : (false);
bLCUTBoundary = ( (UInt)(rTLSU / numSUInLCUWidth) == 0) ? (true) : (false);
bLCUBBoundary = ( (UInt)(rBRSU / numSUInLCUWidth) == (numSUInLCUHeight - 1) ) ? (true) : (false);
// SGU_L
pbAvail = &(pbAvailBorder[SGU_L]);
if(bPicLBoundary)
{
*pbAvail = false;
}
else if (onlyOneSliceInPic)
{
*pbAvail = true;
}
else
{
// bLCULBoundary = (rTLSU % uiNumSUInLCUWidth == 0)?(true):(false);
if(bLCULBoundary)
{
rLRefSU = rTLSU + numSUInLCUWidth - 1;
zRefSU = g_auiRasterToZscan[rLRefSU];
pRefMapLCU = pLRefMapLCU = (pSliceIDMapLCU - numSUInLCU);
}
else
{
zRefSU = g_auiRasterToZscan[rTLSU - 1];
pRefMapLCU = pSliceIDMapLCU;
}
pRefID = pRefMapLCU + zRefSU;
*pbAvail = (*pRefID == sliceID) ? (true) : ((*pRefID > sliceID) ? (LFCrossSliceBoundary[*pRefID]) : (LFCrossSliceBoundary[sliceID]));
}
// SGU_R
pbAvail = &(pbAvailBorder[SGU_R]);
if(bPicRBoundary)
{
*pbAvail = false;
}
else if (onlyOneSliceInPic)
{
*pbAvail = true;
}
else
{
// bLCURBoundary = ( (rTLSU+ uiWidthSU) % uiNumSUInLCUWidth == 0)?(true):(false);
if(bLCURBoundary)
{
rRRefSU = rTLSU + widthSU - numSUInLCUWidth;
zRefSU = g_auiRasterToZscan[rRRefSU];
pRefMapLCU = pRRefMapLCU = (pSliceIDMapLCU + numSUInLCU);
}
else
{
zRefSU = g_auiRasterToZscan[rTLSU + widthSU];
pRefMapLCU = pSliceIDMapLCU;
}
pRefID = pRefMapLCU + zRefSU;
*pbAvail = (*pRefID == sliceID) ? (true) : ((*pRefID > sliceID) ? (LFCrossSliceBoundary[*pRefID]) : (LFCrossSliceBoundary[sliceID]));
}
// SGU_T
pbAvail = &(pbAvailBorder[SGU_T]);
if(bPicTBoundary)
{
*pbAvail = false;
}
else if (onlyOneSliceInPic)
{
*pbAvail = true;
}
else
{
// bLCUTBoundary = ( (UInt)(rTLSU / uiNumSUInLCUWidth)== 0)?(true):(false);
if(bLCUTBoundary)
{
rTRefSU = numSUInLCU - (numSUInLCUWidth - rTLSU);
zRefSU = g_auiRasterToZscan[rTRefSU];
pRefMapLCU = pTRefMapLCU = (pSliceIDMapLCU - (numLCUInPicWidth * numSUInLCU));
}
else
{
zRefSU = g_auiRasterToZscan[rTLSU - numSUInLCUWidth];
pRefMapLCU = pSliceIDMapLCU;
}
pRefID = pRefMapLCU + zRefSU;
*pbAvail = (*pRefID == sliceID) ? (true) : ((*pRefID > sliceID) ? (LFCrossSliceBoundary[*pRefID]) : (LFCrossSliceBoundary[sliceID]));
}
// SGU_B
pbAvail = &(pbAvailBorder[SGU_B]);
if(bPicBBoundary)
{
*pbAvail = false;
}
else if (onlyOneSliceInPic)
{
*pbAvail = true;
}
else
{
// bLCUBBoundary = ( (UInt)(rBRSU / uiNumSUInLCUWidth) == (uiNumSUInLCUHeight-1) )?(true):(false);
if(bLCUBBoundary)
{
rBRefSU = rTLSU % numSUInLCUWidth;
zRefSU = g_auiRasterToZscan[rBRefSU];
pRefMapLCU = pBRefMapLCU = (pSliceIDMapLCU + (numLCUInPicWidth * numSUInLCU));
}
else
{
zRefSU = g_auiRasterToZscan[rTLSU + (heightSU * numSUInLCUWidth)];
pRefMapLCU = pSliceIDMapLCU;
}
pRefID = pRefMapLCU + zRefSU;
*pbAvail = (*pRefID == sliceID) ? (true) : ((*pRefID > sliceID) ? (LFCrossSliceBoundary[*pRefID]) : (LFCrossSliceBoundary[sliceID]));
}
// SGU_TL
pbAvail = &(pbAvailBorder[SGU_TL]);
if(bPicTBoundary || bPicLBoundary)
{
*pbAvail = false;
}
else if (onlyOneSliceInPic)
{
*pbAvail = true;
}
else
{
if(bLCUTBoundary && bLCULBoundary)
{
zRefSU = numSUInLCU - 1;
pRefMapLCU = pSliceIDMapLCU - ( (numLCUInPicWidth + 1) * numSUInLCU);
}
else if(bLCUTBoundary)
{
zRefSU = g_auiRasterToZscan[ rTRefSU - 1];
pRefMapLCU = pTRefMapLCU;
}
else if(bLCULBoundary)
{
zRefSU = g_auiRasterToZscan[ rLRefSU - numSUInLCUWidth ];
pRefMapLCU = pLRefMapLCU;
}
else //inside LCU
{
zRefSU = g_auiRasterToZscan[ rTLSU - numSUInLCUWidth - 1];
pRefMapLCU = pSliceIDMapLCU;
}
pRefID = pRefMapLCU + zRefSU;
*pbAvail = (*pRefID == sliceID) ? (true) : ((*pRefID > sliceID) ? (LFCrossSliceBoundary[*pRefID]) : (LFCrossSliceBoundary[sliceID]));
}
// SGU_TR
pbAvail = &(pbAvailBorder[SGU_TR]);
if(bPicTBoundary || bPicRBoundary)
{
*pbAvail = false;
}
else if (onlyOneSliceInPic)
{
*pbAvail = true;
}
else
{
if(bLCUTBoundary && bLCURBoundary)
{
zRefSU = g_auiRasterToZscan[numSUInLCU - numSUInLCUWidth];
pRefMapLCU = pSliceIDMapLCU - ( (numLCUInPicWidth - 1) * numSUInLCU);
}
else if(bLCUTBoundary)
{
zRefSU = g_auiRasterToZscan[ rTRefSU + widthSU];
pRefMapLCU = pTRefMapLCU;
}
else if(bLCURBoundary)
{
zRefSU = g_auiRasterToZscan[ rRRefSU - numSUInLCUWidth ];
pRefMapLCU = pRRefMapLCU;
}
else //inside LCU
{
zRefSU = g_auiRasterToZscan[ rTLSU - numSUInLCUWidth + widthSU];
pRefMapLCU = pSliceIDMapLCU;
}
pRefID = pRefMapLCU + zRefSU;
*pbAvail = (*pRefID == sliceID) ? (true) : ((*pRefID > sliceID) ? (LFCrossSliceBoundary[*pRefID]) : (LFCrossSliceBoundary[sliceID]));
}
// SGU_BL
pbAvail = &(pbAvailBorder[SGU_BL]);
if(bPicBBoundary || bPicLBoundary)
{
*pbAvail = false;
}
else if (onlyOneSliceInPic)
{
*pbAvail = true;
}
else
{
if(bLCUBBoundary && bLCULBoundary)
{
zRefSU = g_auiRasterToZscan[numSUInLCUWidth - 1];
pRefMapLCU = pSliceIDMapLCU + ( (numLCUInPicWidth - 1) * numSUInLCU);
}
else if(bLCUBBoundary)
{
zRefSU = g_auiRasterToZscan[ rBRefSU - 1];
pRefMapLCU = pBRefMapLCU;
}
else if(bLCULBoundary)
{
zRefSU = g_auiRasterToZscan[ rLRefSU + heightSU * numSUInLCUWidth ];
pRefMapLCU = pLRefMapLCU;
}
else //inside LCU
{
zRefSU = g_auiRasterToZscan[ rTLSU + heightSU * numSUInLCUWidth - 1];
pRefMapLCU = pSliceIDMapLCU;
}
pRefID = pRefMapLCU + zRefSU;
*pbAvail = (*pRefID == sliceID) ? (true) : ((*pRefID > sliceID) ? (LFCrossSliceBoundary[*pRefID]) : (LFCrossSliceBoundary[sliceID]));
}
// SGU_BR
pbAvail = &(pbAvailBorder[SGU_BR]);
if(bPicBBoundary || bPicRBoundary)
{
*pbAvail = false;
}
else if (onlyOneSliceInPic)
{
*pbAvail = true;
}
else
{
if(bLCUBBoundary && bLCURBoundary)
{
zRefSU = 0;
pRefMapLCU = pSliceIDMapLCU + ( (numLCUInPicWidth + 1) * numSUInLCU);
}
else if(bLCUBBoundary)
{
zRefSU = g_auiRasterToZscan[ rBRefSU + widthSU];
pRefMapLCU = pBRefMapLCU;
}
else if(bLCURBoundary)
{
zRefSU = g_auiRasterToZscan[ rRRefSU + (heightSU * numSUInLCUWidth)];
pRefMapLCU = pRRefMapLCU;
}
else //inside LCU
{
zRefSU = g_auiRasterToZscan[ rTLSU + (heightSU * numSUInLCUWidth) + widthSU];
pRefMapLCU = pSliceIDMapLCU;
}
pRefID = pRefMapLCU + zRefSU;
*pbAvail = (*pRefID == sliceID) ? (true) : ((*pRefID > sliceID) ? (LFCrossSliceBoundary[*pRefID]) : (LFCrossSliceBoundary[sliceID]));
}
if(bIndependentTileBoundaryEnabled)
{
//left LCU boundary
if(!bPicLBoundary && bLCULBoundary)
{
if(bLeftTileBoundary)
{
pbAvailBorder[SGU_L] = pbAvailBorder[SGU_TL] = pbAvailBorder[SGU_BL] = false;
}
}
//right LCU boundary
if(!bPicRBoundary && bLCURBoundary)
{
if(bRightTileBoundary)
{
pbAvailBorder[SGU_R] = pbAvailBorder[SGU_TR] = pbAvailBorder[SGU_BR] = false;
}
}
//top LCU boundary
if(!bPicTBoundary && bLCUTBoundary)
{
if(bTopTileBoundary)
{
pbAvailBorder[SGU_T] = pbAvailBorder[SGU_TL] = pbAvailBorder[SGU_TR] = false;
}
}
//down LCU boundary
if(!bPicBBoundary && bLCUBBoundary)
{
if(bDownTileBoundary)
{
pbAvailBorder[SGU_B] = pbAvailBorder[SGU_BL] = pbAvailBorder[SGU_BR] = false;
}
}
}
rSGU.allBordersAvailable = true;
for(Int b = 0; b < NUM_SGU_BORDER; b++)
{
if(pbAvailBorder[b] == false)
{
rSGU.allBordersAvailable = false;
break;
}
}
}
}
//! \}
| [
"chengximing1989@gmail.com"
] | chengximing1989@gmail.com |
db29c8a00de30ef18611a34ec62ca55ca0fc4928 | a88a3667ef4bd92a17d137c66004eab34d37fcc2 | /successfulVersion/Motor.cpp | e7bcd2671fb933353e5cdf1a82493d0d4be06ffc | [] | no_license | zliaky/Swarm | a68f0149136a42e4b8377f8e7a1eee09bdecfa9a | a4fb99e7f1e60b5a21c611eab8050bcac28b5431 | refs/heads/master | 2020-04-29T16:00:27.044812 | 2019-05-14T08:36:04 | 2019-05-14T08:36:04 | 176,245,107 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,808 | cpp | #include "Motor.h"
void Motor::motorSetup(void) {
pinMode(SWITCH1_1, OUTPUT);
pinMode(SWITCH1_2, OUTPUT);
pinMode(SWITCH2_1, OUTPUT);
pinMode(SWITCH2_2, OUTPUT);
pinMode(SWITCH3_1, OUTPUT);
pinMode(SWITCH3_2, OUTPUT);
pinMode(PWM1, OUTPUT);
pinMode(PWM2, OUTPUT);
pinMode(PWM3, OUTPUT);
}
/*
* 将机器人的全局运动速度映射到三个电机速度上
* v1、v2、v3:三个电机的线速度
* https://blog.csdn.net/jyaxp/article/details/55050393
*/
void Motor::ThreeWheelVellControl(void) {
v1 = (double)(-cos((AFA + theta) * ANGLETR) * Vx - sin((theta + AFA) * ANGLETR) * Vy + L * angularVell);
v2 = (double)(cos(theta * ANGLETR) * Vx + sin(theta * ANGLETR) * Vy + L * angularVell);
v3 = (double)(-cos((AFA - theta) * ANGLETR) * Vx + sin((AFA - theta) * ANGLETR) * Vy + L * angularVell);
}
/*
* 从三个电机速度得到应给出的PWM波并写入开发板中
*/
void Motor::motorMove(double vx, double vy, double vell) {
Vx = vx;
Vy = vy;
angularVell = vell;
ThreeWheelVellControl();
pwm1 = int(abs(v1 / VMAX * PWMMAX));
pwm2 = int(abs(v2 / VMAX * PWMMAX));
pwm3 = int(abs(v3 / VMAX * PWMMAX));
dir1 = (v1 > 0) ? 1 : 0;
dir2 = (v2 > 0) ? 1 : 0;
dir3 = (v3 > 0) ? 1 : 0;
digitalWrite(SWITCH1_1, dir1);
digitalWrite(SWITCH1_2, 1-dir1);
digitalWrite(SWITCH2_1, dir2);
digitalWrite(SWITCH2_2, 1-dir2);
digitalWrite(SWITCH3_1, dir3);
digitalWrite(SWITCH3_2, 1-dir3);
analogWrite(PWM1, pwm1);
analogWrite(PWM2, pwm2);
analogWrite(PWM3, pwm3);
}
void Motor::moveToTmn(double Xc, double Yc, double Xt, double Yt) {
double s = sqrt((Yt-Yc)*(Yt-Yc) + (Xt-Xc)*(Xt-Xc));
double alpha = atan((Yt-Yc) / (Xt-Xc));
double Vx = VMAX / 2 * cos(alpha);
double Vy = VMAX / 2 * sin(alpha);
motorMove(Vx, Vy, 0);
}
| [
"xueai9984@126.com"
] | xueai9984@126.com |
e64ef9ecfecc2122ac00990af8b23119f852f5ef | a75bfdb61d2bfa20f71d2a1548188db18a8e5e6d | /leetcode/palindromeLinkedList.cpp | 2cf74891f9de2af23ea4fb5d5dab182c6c1e5b28 | [] | no_license | Ra1nWarden/Online-Judges | 79bbe269fd35bfb1b4a5b3ea68b806fb39b49e15 | 6d8516bb1560f3620bdc2fc429863a1551d60e6a | refs/heads/master | 2022-05-01T17:50:00.253901 | 2022-04-18T06:55:25 | 2022-04-18T06:55:25 | 18,355,773 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,075 | cpp | /**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
bool isPalindrome(ListNode* head) {
if(head == NULL)
return true;
ListNode* slow = head;
ListNode* fast = head->next;
while(fast && fast->next) {
slow = slow->next;
fast = fast->next->next;
}
ListNode* second_half = slow->next;
slow->next = NULL;
ListNode dummy(-1);
ListNode* prev = NULL;
dummy.next = second_half;
ListNode* cur = second_half;
while(cur) {
ListNode* next = cur->next;
cur->next = prev;
prev = cur;
dummy.next = cur;
cur = next;
}
ListNode* i = head;
ListNode* j = dummy.next;
while(i && j) {
if(i->val != j->val)
return false;
i = i->next;
j = j->next;
}
return true;
}
};
| [
"wzh19921016@gmail.com"
] | wzh19921016@gmail.com |
2801a65258b202f2f1a6456a66a78b26c846d6d5 | 3b88921a57d39aed1740509c33841e720acb8c0d | /StockAccount_ErenErdogan.cpp | 65174cef8118e451fee1f50e3b2e8d0d59909776 | [] | no_license | erenerdo/stock-project | b773e90b8c343ba879f6e7b4d2a0ecec272bca35 | 0369c819003efa5ddc0fb497b5b43a28351913f3 | refs/heads/master | 2021-08-14T06:32:59.133454 | 2017-11-14T21:27:16 | 2017-11-14T21:27:16 | 110,746,789 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,472 | cpp | #include "StockAccount_ErenErdogan.h"
Stock::Stock()
{
}
Stock::~Stock()
{
}
void Stock::insert_stock_node( Node & stock, LinkedList & portfolio, string symbol, double price, int quant)
{
stock.clear();
stock.setSymbol(symbol);
stock.setPrice(price);
stock.setQuant(quant);
stock.setTotal(stock.getQuant());
portfolio.addToList(&stock);
}
void Stock::MakePurchase( string symbol, double price, int quant, LinkedList & list, Random_Price & r)
{
string event = "BUY";
// Check to see if symbol is available
if (r.getStockPrice(symbol) == -1 || quant < 0) {
cout << "\nThat stock is not available or there's an error in your input! Transaction Failed" << endl << endl;
}
// symbol found
else {
// Check to see if live stock price is greater than amount willing to pay
double live_price = 0;
live_price = r.getStockPrice(symbol);
if (live_price > price) {
cout << "\nStock price greater than you are willing to pay! Transaction Failed" << endl << endl;
}
else {
// price willing to pay higher than actual stock price
// Check to see if person has enough cash
if ( (live_price * quant) > getBalance() )
{
cout << "\nYou dont have enough cash to make this purchase! Transaction Failed" << endl << endl;
}
else {
// All purchase checks have passed
cout << "\nYou have purchased " << quant << " share(s) of " << symbol << " at $" << fixed << setprecision(2) <<live_price
<< " each for a total of $" << fixed << setprecision(2)<< quant * live_price << endl << endl;
// Subtract purchase from cash balance
setBalance( (getBalance() - (quant * live_price)) );
BankTransactionWrite( event, (live_price)*quant, "1", getBalance() );
cout << "New cash balance is $" << getBalance() << endl;
// Insert new stock purchase in portfolio
// Check to see if stock is already in portfolio
// if yes, update with new purchase
if ( list.isInList(symbol) ) {
// If yes then in order to maintain the sorted order, we will create
// new updated variables for symbol, quant, price (taken from random price/live purchase price)
// then remove the old node and input a new node with the updated values
StockTransactionWrite(event, symbol, live_price, quant, (live_price*quant));
//update quantity
list.updateQuant(symbol, quant);
//remove old node from list
list.removeNodeFromListNo(symbol);
//insert new node with updated quantiy and current price
Node node(symbol, live_price, quant);
list.addToList(&node);
//string event, string symbol, double price, int quant, double total
WriteGraphData(list);
list.printList();
}
// if no, add to linked list
else {
Node node(symbol, live_price, quant);
list.addToList(&node);
StockTransactionWrite(event, symbol, live_price, quant, (live_price*quant) );
WriteGraphData(list);
list.printList();
}
}
}
}
}
void Stock::SellShares(string symbol, double price, int quant, LinkedList & list, Random_Price & r)
{
string event = "SELL";
// check to see if stock is in portfolio (linked list)
if (list.isInList(symbol) && quant > 0)
{
// stock in portfolio passed
// check to see if they have enough quantity to sell
int portfolio_quant = 0;
portfolio_quant = list.getQuant(symbol);
if (quant > portfolio_quant) {
cout << "\nYou can't sell more than you own! Transaction failed." << endl << endl;
}
else {
// portfolio_quant greater than amount wanting to sell
// check to see if their minimum price to sell is lower than the live price
double live_price = r.getStockPrice(symbol);
if (live_price > price)
{
// All transaction checks pass
StockTransactionWrite(event, symbol, live_price, quant, (live_price*quant));
// update quantity
int new_quant = 0;
new_quant = portfolio_quant - quant;
// if quantity > 0, pass in new quantity
if (new_quant > 0) {
// remove old node
list.removeNodeFromListNo(symbol);
// create new node with new quantity and live price
Node node(symbol, live_price, new_quant);
// add new node to list
list.addToList(&node);
//Update stock transactions file
}
else {
// new quant must be zero then
// remove old node
list.removeNodeFromListNo(symbol);
// update stock transactions file
}
// update cash balance
setBalance((getBalance()) + (quant*live_price));
BankTransactionWrite(event, (live_price)*quant, "1", getBalance());
WriteGraphData(list);
cout << "\nYou have sold " << quant << " share(s) of " << symbol << " at $" << fixed << setprecision(2) << live_price
<< " each for a total of $" << fixed << setprecision(2) << quant * live_price << endl << endl;
cout << "New cash balance is $" << getBalance() << endl;
list.printList();
}
else
{
cout << "\nLive stock price of $"<< fixed << setprecision(2) << live_price << " below your minimum per share to sell. Transaction failed." << endl << endl;
}
}
}
else {
cout << "\nThis stock is not in your portfolio or there's an error in your input! Transaction failed." << endl << endl;
}
// check to see if their minimum price to sell is lower than the live price
}
void Stock::StockTransactionWrite( string event, string symbol, double price, int quant, double total)
{
int hour = 0;
int minute = 0;
int second = 0;
int day = 0;
int jourSemain = 0;
int month = 0;
int year = 0;
Time(hour, minute, second, day, month, year);
ofstream output;
output.open("stock_transaction_history.txt", std::ios::app);
output << event << "\t" << symbol << "\t" << quant << "\t" << price << "\t" << total << "\t"<< hour << ":" << minute << ":" << second << endl;
}
void Stock::BankTransactionWrite(string event, double amount, string date, double balance)
{
int hour = 0;
int minute = 0;
int second = 0;
int day = 0;
int jourSemain = 0;
int month = 0;
int year = 0;
Time(hour, minute, second, day, month, year);
ofstream output;
output.open("bank_transaction_history.txt", std::ios::app);
output << event << "\t" << amount << "\t" << month << "/" << day << "/" << year << "\t" << balance << endl;
}
void Stock::PrintTransactionHistory()
{
cout << endl << "Stock Transaction History" << endl;
cout << left << setw(15) << "Event" << setw(20) << "CompSymbol" << setw(20) << "Quantity" << setw(20) << "PricePerShare" << setw(20) << "TotalValue" << setw(20) << "Time" << endl;
fstream inputFile;
inputFile.open("stock_transaction_history.txt");
string event = "";
string symbol = "";
int quant = 0;
double price = 0;
double total = 0;
string time = "";
while (inputFile >> event >> symbol >> quant >> price >> total >> time) {
cout << left << setw(15) << event << setw(20) << symbol << setw(20) << quant << setw(20) << price << setw(20) << total << setw(20) << time << endl;
}
cout << endl;
inputFile.close();
}
| [
"ererdogan20@gmail.com"
] | ererdogan20@gmail.com |
b427e63036ab0d0fcf0635c01f3813b4948c1c62 | 54745d6fa529d0adcd19a41e115bbccfb804b575 | /PokerPlayerMFC/stdafx.cpp | ca8aa76be112a28ca195b1c567e0546e73d2cccc | [] | no_license | jackylee1/regretitron | e7a5f1a8794f0150b57f3ca679438d0f38984bca | bb241e6dea4d345e48d633da48ed2cfd410a5fdf | refs/heads/master | 2020-03-26T17:53:07.040365 | 2011-11-14T03:38:53 | 2011-11-14T03:38:53 | 145,185,451 | 0 | 1 | null | 2018-08-18T03:04:05 | 2018-08-18T03:04:04 | null | UTF-8 | C++ | false | false | 301 | cpp | // stdafx.cpp : source file that includes just the standard includes
// PokerPlayerMFC.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
#include "stdafx.h"
// TODO: reference any additional headers you need in STDAFX.H
// and not in this file
| [
"scottopoly@gmail.com"
] | scottopoly@gmail.com |
d5fe354a9875ed58adcd9c466148f4af5529a0c7 | c4034774912aa98ab61eeccf037fb610747324cd | /include/estd/view/view.hpp | 1515fb7d8ad015e9a2a22c87e80ead1d64219d77 | [
"BSD-3-Clause"
] | permissive | fizyr/estd | f8cd33a023659c8c937f1837cb3f4305e593b56a | 7d3c3c74046541523eb6ca6e5b72bcc73163c263 | refs/heads/main | 2023-08-13T12:19:10.271340 | 2022-05-31T12:32:54 | 2022-05-31T12:32:54 | 129,302,340 | 12 | 4 | BSD-3-Clause | 2022-02-01T10:00:07 | 2018-04-12T19:37:25 | C++ | UTF-8 | C++ | false | false | 7,106 | hpp | /* Copyright 2018-2019 Fizyr B.V. - https://fizyr.com
*
* 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 name of the copyright holder 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.
*/
#pragma once
#include "../traits/containers.hpp"
#include <algorithm>
#include <cstdint>
#include <iterator>
#include <stdexcept>
#include <string>
#include <string_view>
namespace estd {
/// A non-owning view on a range of elements.
template<typename T>
class view {
public:
using value_type = T;
using reference = T &;
using const_reference = T const &;
using iterator = T *;
using const_iterator = T const *;
using difference_type = std::ptrdiff_t;
using size_type = std::size_t;
private:
/// True if this is a const view, false otherwise.
constexpr static bool is_const_ = std::is_const_v<T>;
/// Make a type const if this is a const view.
template<typename C> using make_const_ = std::conditional<is_const_, C const, C>;
/// The begin pointer.
T * begin_;
/// The end pointer.
T * end_;
public:
/// Create a view from a begin and end pointer.
constexpr view(T * begin, T * end) : begin_{begin}, end_{end} {}
/// Create a view from a begin pointer and size.
constexpr view(T * begin, std::size_t count) : begin_{begin}, end_{begin + count} {}
/// Create a view from a contiguous container.
template<typename Container, typename = std::enable_if_t<is_contiguous_container<Container>>>
constexpr view(Container & container) : view(container.data(), container.size()) {}
/// Create a view from a contiguous container.
template<typename Container, typename = std::enable_if_t<is_const_ && is_contiguous_container<Container>>>
constexpr view(Container const & container) : view(container.data(), container.size()) {}
/// Disallow creation of a view from pointers that are implicitly convertible, if the size of the other type is different.
template<typename B, typename = std::enable_if_t<sizeof(B) != sizeof(T)>> constexpr view(B * begin, B * end) = delete;
template<typename B, typename = std::enable_if_t<sizeof(B) != sizeof(T)>> constexpr view(B * begin, std::size_t) = delete;
/// Allow implicit conversion of a view<T> to a view<T const>.
constexpr operator view<T const>() {
return {cbegin(), cend()};
}
/// Get a pointer to the first element.
constexpr T * begin() const { return begin_; }
constexpr T * & begin() { return begin_; }
constexpr T const * cbegin() const { return begin_; }
/// Get a pointer directly past the last element.
constexpr T * end() const { return end_; }
constexpr T * & end() { return end_; }
constexpr T const * cend() const { return end_; }
/// Get a pointer to the data.
constexpr T * data() const { return begin_; }
/// Get the number of elements in the view.
constexpr std::size_t size() const {
return end_ - begin_;
}
/// Get the total size of the view in bytes.
constexpr std::size_t byte_size() const {
return size() * sizeof(T);
}
/// Get a reverse iterator for the first element in the reversed view.
constexpr std::reverse_iterator<T *> rbegin() const {
return std::make_reverse_iterator(end());
}
/// Get a reverse iterator for the last element in the reversed view.
constexpr std::reverse_iterator<T *> rend() const {
return std::make_reverse_iterator(begin());
}
/// Get a reverse iterator for the first element in the reversed view.
constexpr std::reverse_iterator<T const *> crbegin() const {
return std::make_reverse_iterator(cend());
}
/// Get a reverse iterator for the last element in the reversed view.
constexpr std::reverse_iterator<T const *> crend() const {
return std::make_reverse_iterator(cbegin());
}
/// Get a reference to an element by index, without bounds checking.
constexpr T & operator[] (std::size_t i) const {
return begin_[i];
}
/// Get a reference to an element by index, with bounds checking.
/**
* \throws std::range_error if the index is out of bounds.
*/
T & at(std::size_t i) const {
if (i >= size()) throw std::range_error("index " + std::to_string(i) + " out of range, view size is " + std::to_string(size()));
return begin_[i];
}
/// Compare two views for equality.
/**
* Two views are considered equal if the range of elements compare equal.
*/
bool operator==(view const & other) {
return size() == other.size() && std::equal(begin(), end(), other.begin());
}
/// Compare two views for inequality.
/**
* Two views are considered equal if the range of elements compare equal.
*/
bool operator!=(view const & other) {
return !(*this == other);
}
};
/// Compare a view<CharT> for equality with a std::basic_string_view<CharT>
template<typename CharT, typename Traits>
bool operator==(view<CharT> a, std::basic_string_view<CharT, Traits> b) {
return std::basic_string_view<CharT, Traits>{a.data(), a.size()} == b;
}
/// Compare a view<CharT> for equality with a std::basic_string_view<CharT>
template<typename CharT, typename Traits>
bool operator==(std::basic_string_view<CharT, Traits> a, view<CharT> b) {
return b == a;
}
/// Compare a view<CharT> for inequality with a std::basic_string_view<CharT>
template<typename CharT, typename Traits>
bool operator!=(view<CharT> a, std::basic_string_view<CharT, Traits> b) {
return !(a == b);
}
/// Compare a view<CharT> for inequality with a std::basic_string_view<CharT>
template<typename CharT, typename Traits>
bool operator!=(std::basic_string_view<CharT, Traits> a, view<CharT> b) {
return !(a == b);
}
/// Typedef for a view of const bytes.
using byte_view = view<std::uint8_t const>;
/// Typedef for a view of mutable bytes.
using mut_byte_view = view<std::uint8_t>;
}
| [
"maarten@de-vri.es"
] | maarten@de-vri.es |
380493400b0a2cafce33a8455cff2a5609dd04f1 | 29b9431d14be5a3689a47c942b7dbb1f36a6ad4a | /illusion_4/xcode/Midi.cpp | 5626b4df3dab4cbf5957fb7b2c52752e95c0d1b5 | [] | no_license | m1keall1son/Interactive-GPU-ParticleSystem | 558d5aab252ce885b66421005bb1e7f502870986 | a4b90f2e705b1e5190e10b674033e819b24722aa | refs/heads/master | 2021-01-01T18:07:32.013139 | 2013-07-30T15:36:12 | 2013-07-30T15:36:12 | 11,726,431 | 5 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 428 | cpp | #include "Midi.h"
void MidiBirth::setup(float far, float close)
{
initiateVariables();
initiateBirthNotes();
mFar=far;
mClose=close;
mParams.setOptions( "", "position='20 500'");
}
void MidiBirth::update(int avgDepth,bool showGUI)
{
mInput=avgDepth;
//playBirthNotes();
checkMidiPort();
mshowGUI=showGUI;
}
void MidiBirth::draw()
{
if (mshowGUI) {
mParams.draw();
}
}
| [
"philosopher.osopher@gmail.com"
] | philosopher.osopher@gmail.com |
bf715b050b8e6e533a28d7a9979c9eee29f225f8 | d8cbcbdc811e5a65bf6f9d6f1fcf8efaecd4d82b | /2.Ballot/MVOSTM/default-main.cpp | be013921c9ae2602cda9637c82e93f1eb09afa1e | [
"Apache-2.0",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | Parwatsingh/OptSmart | ccae0b5cdec3d5faa8144ba20a37412f62b6c1d7 | 0564abdd04e7bc37a3586982a1d7ca5a97be88d5 | refs/heads/master | 2022-12-28T22:21:55.912953 | 2020-10-08T11:48:24 | 2020-10-08T11:48:24 | 250,062,664 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 32,712 | cpp | #include <iostream>
#include <thread>
#include "Util/Timer.cpp"
#include "Contract/Ballot.cpp"
#include "Graph/Lockfree/Graph.cpp"
#include "Util/FILEOPR.cpp"
#define maxThreads 128
#define maxPObj 1000
#define maxVObj 40000
#define funInContract 5
#define pl "===================================================\n"
#define MValidation true //! true or false
#define malMiner true //! set the flag to make miner malicious.
#define NumOfDoubleSTx 2 //! # double-spending Tx for malicious final state by Miner, multiple of 2.
using namespace std;
using namespace std::chrono;
int NumBlock = 26; //! at least two blocks, the first run is warmup run.
int numValidator = 50;
int nProposal = 2; //! nProposal: number of proposal shared objects;
int nVoter = 1; //! nVoter: number of voter shared objects;
int nThread = 1; //! nThread: total number of concurrent threads; default is 1.
int numAUs; //! numAUs: total number of Atomic Unites to be executed.
double lemda; //! λ: random delay seed.
float tTime[2]; //! total time taken by miner and validator algorithm.
Ballot *ballot; //! smart contract.
Graph *cGraph; //! conflict grpah generated by miner to be given to validator.
int *aCount; //! aborted transaction count.
float_t*mTTime; //! time taken by each miner Thread to execute AUs (Transactions).
float_t*vTTime; //! time taken by each validator Thread to execute AUs (Transactions).
float_t*fvTTime; //! time taken by each validator Thread to execute AUs (Transactions).
float_t *gTtime; //! time taken by each miner Thread to add edges and nodes in the conflict graph.
vector<string>listAUs; //! holds AUs to be executed on smart contract: "listAUs" index+1 represents AU_ID.
std::atomic<int>currAU; //! used by miner-thread to get index of Atomic Unit to execute.
std::atomic<int>gNodeCount;//! # of valid AU node added in graph (invalid AUs will not be part of the graph & conflict list).
std::atomic<int>eAUCount; //! used by validator threads to keep track of how many valid AUs executed by validator threads.
std::atomic<int>*status; //! used by pool threads:: -1 = thread join; 0 = wait; 1 = execute AUs given in ref[].
Graph::Graph_Node **Gref; //! used by pool threads:: graph node (AU) reference to be execute by respective Pool thread.
std::atomic<int>*mAUT; //! array to map AUs to Trans id (time stamp); mAUT[index] = TransID, index+1 = AU_ID.
Graph *nValBG; //! used to store graph of respective n validators.
//State Data
int *mPState;
int *vPState;
int *fvPState;
int *mVState;
int *vVState;
int *fvVState;
string *pNames;
/*************************BARRIER CODE BEGINS****************************/
std::mutex mtx;
std::mutex pmtx; // to print in concurrent scene
std::condition_variable cv;
bool launch = false;
void wait_for_launch() {
std::unique_lock<std::mutex> lck(mtx);
while (!launch) cv.wait(lck);
}
void shoot() {
std::unique_lock<std::mutex> lck(mtx);
launch = true;
cv.notify_all();
}
/*************************BARRIER CODE ENDS*****************************/
/*************************MINER CODE BEGINS*****************************/
/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! Class "Miner" create & run "n" miner-thread concurrently !
!"concMiner()" called by miner-thread to perfrom oprs of respective AUs !
! Thread 0 is considered as minter-thread (smart contract deployer) !
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
class Miner
{
public:
Miner(int chairperson)
{
cGraph = new Graph();
//! initialize the counter used to execute the numAUs to
//! 0, and graph node counter to 0 (number of AUs added
//! in graph, invalid AUs will not be part of the grpah).
currAU = 0;
gNodeCount = 0;
//! index location represents respective thread id.
mTTime = new float_t [nThread];
gTtime = new float_t [nThread];
aCount = new int [nThread];
pNames = new string[nProposal+1];
for(int x = 0; x <= nProposal; x++) {
pNames[x] = "X"+to_string(x+1);
}
for(int i = 0; i < nThread; i++) {
mTTime[i] = 0;
gTtime[i] = 0;
aCount[i] = 0;
}
//! Id of the contract creater is \chairperson = 0\.
ballot = new Ballot( pNames, chairperson, nVoter, nProposal);
}
//!-------------------------------------------------------------------------
//!!!!!!! MAIN MINER:: CREATE (MINER + GRAPH CONSTRUCTION) THREADS !!!!!!!!!
//!-------------------------------------------------------------------------
void mainMiner()
{
Timer mTimer;
thread T[nThread];
//! Give \`voter\` the right to vote on this ballot.
//! giveRightToVote_m() is serial.
for(int voter = 1; voter <= nVoter; voter++) {
//! 0 is chairperson.
ballot->giveRightToVote_m(0, voter);
}
//!!!!!!!!!! Create nThread Miner threads !!!!!!!!!!
double start = mTimer.timeReq();
for(int i = 0; i < nThread; i++)
T[i] = thread(concMiner, i, numAUs, cGraph);
for(auto& th : T) th.join();
tTime[0] = mTimer.timeReq() - start;
//! print conflict grpah.
// cGraph->print_BG();
//! print the final state of the shared objects.
finalState();
// ballot->winningProposal_m();
// string winner;
// ballot->winnerName_m(&winner);
}
//!--------------------------------------------------------
//! The function to be executed by all the miner threads. !
//!--------------------------------------------------------
static void concMiner( int t_ID, int numAUs, Graph *cGraph)
{
Timer thTimer;
//! flag is used to add valid AUs in Graph.
//! (invalid AU: senders doesn't have
//! sufficient balance to send).
bool flag = true;
//! get the current index, and increment it.
int curInd = currAU++;
//! statrt clock to get time taken by this.AU
auto start = thTimer._timeStart();
while(curInd < numAUs)
{
//! trns_id of STM_BTO_trans that
//! successfully executed this AU.
int t_stamp;
//! trans_ids with which
//! this AU.trans_id is conflicting.
list<int>conf_list;
conf_list.clear();
//! get the AU to execute,
//! which is of string type.
istringstream ss(listAUs[curInd]);
string tmp;
ss >> tmp;
int AU_ID = stoi(tmp);
ss >> tmp;
if(tmp.compare("vote") == 0) {
ss >> tmp;
int vID = stoi(tmp);//! voter ID
ss >> tmp;
int pID = stoi(tmp);//! proposal ID
int v = ballot->vote_m(vID, pID, &t_stamp, conf_list);
while( v != 1 ) {
aCount[t_ID]++;
v = ballot->vote_m(vID, pID, &t_stamp, conf_list);
if(v == -1) {
//! invalid AU
flag = false;
break;
}
}
}
if(tmp.compare("delegate") == 0) {
ss >> tmp;
int sID = stoi(tmp);//! Sender ID
ss >> tmp;
int rID = stoi(tmp);//! Reciver ID
//! execute again if tryCommit fails
int v = ballot->delegate_m(sID, rID, &t_stamp, conf_list);
while( v != 1 ){
aCount[t_ID]++;
v = ballot->delegate_m(sID, rID, &t_stamp, conf_list);
if(v == -1) {
//! invalid AU:
flag = false;
break;
}
}
}
//! graph construction for committed AUs.
if (flag == true) {
mAUT[AU_ID-1] = t_stamp;
//! increase graph node
//! counter (Valid AU executed)
gNodeCount++;
//! get respective trans conflict list using lib fun
//list<int>conf_list = lib->get_conf(t_stamp);
//!::::::::::::::::::::::::::::::::::
//! Remove all the time stamps from :
//! conflict list, added because of :
//! initilization and creation of :
//! shared object in STM memory. :
//!::::::::::::::::::::::::::::::::::
for(int y = 1; y <= (2*nVoter+nProposal+1); y++)
conf_list.remove(y);
//! statrt clock to get time taken by this.thread
//! to add edges and node to conflict grpah.
auto gstart = thTimer._timeStart();
//!------------------------------------------
//! conf_list come from contract fun using !
//! pass by argument of get_bel() and send()!
//!------------------------------------------
//! when AU_ID conflict is empty.
if(conf_list.begin() == conf_list.end()) {
Graph:: Graph_Node *tempRef;
cGraph->add_node(AU_ID, t_stamp, &tempRef);
}
for(auto it = conf_list.begin(); it != conf_list.end(); it++) {
int i = 0;
//! get conf AU_ID in map table
//! given conflicting tStamp.
while(*it != mAUT[i]) i = (i+1)%numAUs;
//! index start with
//! 0 => index+1 respresent AU_ID.
//! cAUID = index+1,
//! cTstamp = mAUT[i] with this.AU_ID
int cAUID = i+1;
int cTstamp = mAUT[i];
if(cTstamp < t_stamp)//! edge from cAUID to AU_ID.
cGraph->add_edge(cAUID, AU_ID, cTstamp, t_stamp);
if(cTstamp > t_stamp) //! edge from AU_ID to cAUID.
cGraph->add_edge(AU_ID, cAUID, t_stamp, cTstamp);
}
gTtime[t_ID] += thTimer._timeStop(gstart);
}
//! reset flag for next AU.
flag = true;
//! get the current index to execute, and increment it.
curInd = currAU++;
conf_list.clear();
}
mTTime[t_ID] += thTimer._timeStop(start);
}
//!-------------------------------------------------
//!FINAL STATE OF ALL THE SHARED OBJECT. Once all |
//!AUs executed. we are geting this using state_m()|
//!-------------------------------------------------
void finalState() {
for(int id = 1; id <= nVoter; id++)
ballot->state_m(id, true, mVState);//for voter state
for(int id = 1; id <= nProposal; id++)
ballot->state_m(id, false, mPState);//for Proposal state
}
~Miner() { };
};
/********************MINER CODE ENDS*********************************/
/*************************Dec.CODE BEGINS****************************/
/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! Class "Validator" Create & run "n" validator-thread concurrently !
! based on conflict grpah! given by miner. concValidator() called !
! by validator-thread to perfrom operations of respective AUs. !
! Thread 0 is considered as minter-thread (smart contract deployer). !
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
class Validator
{
public:
Validator() {
//! int the execution counter used by validator threads.
eAUCount = 0;
//! array index location represents respective thread id.
vTTime = new float_t [nThread];
for(int i = 0; i < nThread; i++) vTTime[i] = 0;
};
/*!---------------------------------------
| create n concurrent validator threads |
| to execute valid AUs in conflict graph.|
----------------------------------------*/
void mainValidator()
{
// for(int i = 0; i < nThread; i++) vTTime[i] = 0;
eAUCount = 0;
Timer vTimer;
thread T[nThread];
ballot->reset();
//! giveRightToVote() function is serial.
for(int voter = 1; voter <= nVoter; voter++) //! 0 is chairperson.
ballot->giveRightToVote(0, voter);
//!!!!! Create nThread Validator threads !!!!
double start = vTimer.timeReq();
for(int i = 0; i<nThread; i++)
T[i] = thread(concValidator, i);
shoot(); //notify all threads to begin the worker();
for(auto& th : T) th.join( );
tTime[1] = vTimer.timeReq() - start;
//!print the final state of the shared objects by validator.
finalState();
// ballot->winningProposal();
// string winner;
// ballot->winnerName(&winner);
}
//!--------------------------------------------------------
//! The function to be executed by all Validator threads. !
//!--------------------------------------------------------
static void concValidator( int t_ID ) {
//barrier to synchronise all threads for a coherent launch.
wait_for_launch();
Timer thTimer;
//!statrt clock to get time taken by this thread.
auto start = thTimer._timeStart();
list<Graph::Graph_Node*>buffer;
auto itr = buffer.begin();
Graph:: Graph_Node *verTemp;
while( true )
{
//!uncomment this to remove the effect of local buffer optimization.
//buffer.clear();
//! all Graph Nodes (Valid AUs executed)
if(eAUCount == gNodeCount ) break;
//!-----------------------------------------
//!!!<< AU execution from local buffer. >>!!
//!-----------------------------------------
for(itr = buffer.begin(); itr != buffer.end(); itr++)
{
Graph::Graph_Node* temp = *itr;
if(temp->in_count == 0)
{
//! expected in_degree is 0 then vertex can be executed,
//! if not claimed by other thread.
int expected = 0;
if(atomic_compare_exchange_strong(
&(temp->in_count), &expected, -1 ) == true)
{
//! num of Valid AUs executed is eAUCount+1.
eAUCount++;
//! get AU to execute, which is of string type;
//! listAUs index statrt with 0 ==> -1.
istringstream ss( listAUs[(temp->AU_ID) - 1]);
string tmp;
ss >> tmp;
int AU_ID = stoi(tmp);
ss >> tmp;
if(tmp.compare("vote") == 0) {
ss >> tmp;
int vID = stoi(tmp);//! voter ID
ss >> tmp;
int pID = stoi(tmp);//! proposal ID
int v = ballot->vote(vID, pID);
}
if(tmp.compare("delegate") == 0) {
ss >> tmp;
int sID = stoi(tmp);//! Sender ID
ss >> tmp;
int rID = stoi(tmp);//! Reciver ID
int v = ballot->delegate(sID, rID);
}
//!-----------------------------------------
//!change indegree of out edge nodes (node !
//! having incomming edge from this node). !
//!-----------------------------------------
Graph::EdgeNode *eTemp = temp->edgeHead->next;
while( eTemp != temp->edgeTail)
{
Graph::Graph_Node* refVN =
(Graph::Graph_Node*)eTemp->ref;
refVN->in_count--;
if(refVN->in_count == 0 )//!insert into local buffer.
buffer.push_back(refVN);
eTemp = eTemp->next;
}
delete eTemp;
}
}
}
//! reached to end of local buffer; clear the buffer.
buffer.clear();
//!-----------------------------------------------------
//!!!<< AU execution by traversing conflict grpah >>!!!
//!-----------------------------------------------------
verTemp = nValBG->verHead->next;
while(verTemp != nValBG->verTail)
{
if(verTemp->in_count == 0)
{
//! expected in_degree is 0 then vertex can be executed,
//! if not claimed by other thread.
int expected = 0;
if(atomic_compare_exchange_strong(
&(verTemp->in_count), &expected, -1 ) == true)
{
//! num of Valid AUs executed is eAUCount+1.
eAUCount++;
//! get AU to execute, which is of string type;
//! listAUs index statrt with 0 => -1.
istringstream ss(listAUs[(verTemp->AU_ID)-1]);
string tmp;
ss >> tmp;
int AU_ID = stoi(tmp);
ss >> tmp;
if(tmp.compare("vote") == 0) {
ss >> tmp;
int vID = stoi(tmp);//! voter ID
ss >> tmp;
int pID = stoi(tmp);//! proposal ID
int v = ballot->vote(vID, pID);
}
if(tmp.compare("delegate") == 0) {
ss >> tmp;
int sID = stoi(tmp);//! Sender ID
ss >> tmp;
int rID = stoi(tmp);//! Reciver ID
int v = ballot->delegate(sID, rID);
}
//!-----------------------------------------
//!change indegree of out edge nodes (node !
//! having incomming edge from this node). !
//!-----------------------------------------
Graph::EdgeNode *eTemp = verTemp->edgeHead->next;
while( eTemp != verTemp->edgeTail)
{
Graph::Graph_Node* refVN =
(Graph::Graph_Node*)eTemp->ref;
refVN->in_count--;
if(refVN->in_count==0) //!insert into local buffer.
buffer.push_back( refVN );
eTemp = eTemp->next;
}
}
}
verTemp = verTemp->next;
}
}
buffer.clear();
//!stop timer to get time taken by this thread
vTTime[t_ID] += thTimer._timeStop(start);
}
//!-------------------------------------------------
//!Final state of all the shared object. Once all |
//!AUs executed. We are geting this using state() |
//!-------------------------------------------------
void finalState()
{
for(int id = 1; id <= nVoter; id++)
ballot->state(id, true, vVState);//for voter state
for(int id = 1; id <= nProposal; id++)
ballot->state(id, false, vPState);//for Proposal state
}
~Validator() { };
};
/************************* Dec. CODE ENDS **************************/
/************************ FORK CODE BEGINS **************************/
/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! Class "Validator" create 1 master thread and & "n" slave validator !
! thread to execute AUs concurrently based on conflict grpah given !
! by miner. "concValidator()" called by master-thread to creates !
! "N" slave Thread to perfrom operations of respective AUs. !
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
class ForkValidator
{
public:
ForkValidator()
{
//! int the execution counter used by validator threads.
eAUCount = 0;
status = new std::atomic<int>[nThread+1];
Gref = new Graph::Graph_Node*[nThread+1];
//! array index location represents respective thread id.
fvTTime = new float_t [nThread+1];
int i = 0;
for( ; i < nThread; i++) {
status[i] = 0;
Gref[i] = NULL;
fvTTime[i] = 0;
}
fvTTime[i] = 0;
};
//!-------------------------------------------------
//! Master thread: creates n worker !
//! threads to execute valid AUs in conflict graph.!
//!-------------------------------------------------
void mainValidator()
{
int i = 0;
for( ; i < nThread; i++) {
status[i] = 0;
Gref[i] = NULL;
// fvTTime[i] = 0;
}
// fvTTime[i] = 0;
eAUCount = 0;
Timer vTimer;
thread T[nThread];
ballot->reset();
//! giveRightToVote() function is serial.
for(int voter = 1; voter <= nVoter; voter++) //! 0 is chairperson.
ballot->giveRightToVote(0, voter);
//!----------------------------------------------------
//! MASTER THREAD CREATE n VALIDATOR THREADS !
//!----------------------------------------------------
double start = vTimer.timeReq();
thread master = thread(concValidator, 0 );
master.join();
tTime[2] = vTimer.timeReq() - start;
//!print the final state of the shared objects by validator.
finalState();
// ballot->winningProposal();
// string winner;
// ballot->winnerName(&winner);
}
//!--------------------------------------------------------
//! The function to be executed by all Validator threads. !
//!--------------------------------------------------------
static void concValidator( int t_ID )
{
Timer thTimer;
//!statrt clock to get time taken by this thread.
auto start = thTimer._timeStart();
//! ONLY MASTER THREAD WILL EXECUTE IT.
if(t_ID == 0)
{
thread POOL[nThread+1];
bool tCratFlag = true;//! POOL thread creation flag.
Graph::Graph_Node *mVItr;
while(true) {
if(tCratFlag == true) {
//! Creating n POOL Threads
for(int i = 1; i <= nThread; i++) {
POOL[i] = thread(concValidator, i);
}
tCratFlag = false;
}
//! All Valid AUs executed.
if(eAUCount == gNodeCount) {
for(int i = 1; i <= nThread; i++) {
//! -1 = threads can join now.
status[i] = -1;
}
//! POOL thread join.
for(int i = 1; i <= nThread; i++) {
POOL[i].join( );
}
break;
}
mVItr = nValBG->verHead->next;
while(mVItr != nValBG->verTail) {
if(mVItr->in_count == 0) {
for(int i = 1; i <= nThread; i++) {
//! 0 = thread is available.
if(status[i] == 0) {
//! assigning node ref for
//! thread in pool to execute.
Gref[i] = mVItr;
//! 1 = ref is available to execute.
status[i] = 1;
break;
}
}
}
mVItr = mVItr->next;
}
}
}
//! EXECCUTED BY nThread WORKER THREADS.
else
{
while(true)
{
if(status[t_ID] == -1 || eAUCount == gNodeCount)
break;//! All task done.
if(status[t_ID] == 1)//! Task available to work on.
{
Graph::Graph_Node *verTemp;
verTemp = Gref[t_ID];
if(verTemp->in_count == 0) {
if(verTemp->in_count < 0) {
status[t_ID] = 0;
}
else
{
//! expected in_degree is 0 then
//! vertex can be executed if
//! not claimed by other thread.
int expected = 0;
if(atomic_compare_exchange_strong(
&(verTemp->in_count), &expected, -1 ) == true)
{
verTemp->in_count = -1;
//! get AU to execute, which is of string type;
//! listAUs index statrt with 0 => -1.
istringstream ss(listAUs[(verTemp->AU_ID)-1]);
string tmp;
ss >> tmp;
int AU_ID = stoi(tmp);
ss >> tmp;
if(tmp.compare("vote") == 0) {
ss >> tmp;
int vID = stoi(tmp);//! voter ID
ss >> tmp;
int pID = stoi(tmp);//! proposal ID
int v = ballot->vote(vID, pID);
}
if(tmp.compare("delegate") == 0) {
ss >> tmp;
int sID = stoi(tmp);//! Sender ID
ss >> tmp;
int rID = stoi(tmp);//! Reciver ID
int v = ballot->delegate(sID, rID);
}
Graph::EdgeNode *eTemp = verTemp->edgeHead->next;
while( eTemp != verTemp->edgeTail) {
Graph::Graph_Node* refVN =
(Graph::Graph_Node*)eTemp->ref;
refVN->in_count--;
eTemp = eTemp->next;
}
//! num of Valid AUs executed is eAUCount+1.
eAUCount++;
}
}
}
//Gref[t_ID] = NULL;
status[t_ID] = 0;
}
}
}
fvTTime[t_ID] += thTimer._timeStop(start);
}
//!-------------------------------------------------
//!FINAL STATE OF ALL THE SHARED OBJECT. Once all |
//!AUs executed. we are geting this using state() |
//!-------------------------------------------------
void finalState()
{
for(int id = 1; id <= nVoter; id++)
ballot->state(id, true, fvVState);//for voter state
for(int id = 1; id <= nProposal; id++)
ballot->state(id, false, fvPState);//for Proposal state
}
~ForkValidator() { };
};
/******************** FORK SCV CODE ENDS *********************************/
//!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
//! atPoss:: from which double-spending Tx to be stored at begining !
//! of the list. Add malicious final state with double-spending Tx !
//!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
bool addMFS(int atPoss)
{
istringstream ss(listAUs[atPoss-2]);
string trns1;
ss >> trns1; //! AU_ID to Execute.
int AU_ID1 = stoi(trns1);
ss >> trns1;//function name
ss >> trns1; //! Voter ID.
int s_id = stoi(trns1);
ss >> trns1; //! Proposal ID.
int r_id = stoi(trns1);
istringstream ss1(listAUs[atPoss-1]);
ss1 >> trns1; //! AU_ID to Execute.
int AU_ID2 = stoi(trns1);
ss1 >> trns1;//function name
ss1 >> trns1; //! Voter ID.
int s_id1 = stoi(trns1);
ss1 >> trns1; //! Proposal ID.
int r_id1 = stoi(trns1);
Graph:: Graph_Node *tempRef;
if(mAUT[AU_ID1-1] != 0) {
int ts = mAUT[AU_ID1-1]+1;
cGraph->add_node(AU_ID2, ts, &tempRef);
mAUT[AU_ID2-1] = ts;
gNodeCount++;
}
else {
int ts = mAUT[AU_ID2-1]+1;
cGraph->add_node(AU_ID1, ts, &tempRef);
mAUT[AU_ID1-1] = ts;
gNodeCount++;
}
mPState[r_id-1] = 1;
mPState[r_id1-1] = 1;
mVState[s_id1-1] = 1;
return true;
}
/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
/*!!!!!!!! State Validation !!!!!!!!!!*/
/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
bool stateVal(bool f) {
//State Validation
if(f == false) {
bool flag = false;
// cout<<"\n"<<pl<<"Proposal \tMiner \t\tValidator"<<endl;
for(int pid = 0; pid < nProposal; pid++) {
// cout<<pid+1<<" \t \t"<<mPState[pid]
// <<" \t\t"<<vPState[pid]<<endl;
if(mPState[pid] != vPState[pid])
flag = true;
}
// cout<<"\n"<<pl<<"Voter ID \tMiner \t\tValidator"<<endl;
for(int vid = 0; vid < nVoter; vid++) {
// cout<<vid+1<<" \t \t"<<mVState[vid]
// <<" \t\t"<<vVState[vid]<<endl;
if(mVState[vid] != vVState[vid])
flag = true;
}
return flag;
}
else {
bool flag = false;
// cout<<"\n"<<pl<<"Proposal \tMiner \t\tValidator"<<endl;
for(int pid = 0; pid < nProposal; pid++) {
// cout<<pid+1<<" \t \t"<<mPState[pid]
// <<" \t\t"<<vPState[pid]<<endl;
if(mPState[pid] != fvPState[pid])
flag = true;
}
// cout<<"\n"<<pl<<"Voter ID \tMiner \t\tValidator"<<endl;
for(int vid = 0; vid < nVoter; vid++) {
// cout<<vid+1<<" \t \t"<<mVState[vid]
// <<" \t\t"<<vVState[vid]<<endl;
if(mVState[vid] != fvVState[vid])
flag = true;
}
return flag;
}
}
/*************************MAIN FUN CODE BEGINS*********************************/
/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
/*!!!!!!!! main() !!!!!!!!!!*/
/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/
int main(int argc, char *argv[])
{
cout<<pl<<"MVOSTM Miner and Concurrent Validator\n";
cout<<"--------------------------------\n";
if(argc<3)
cout<<"\nPlease Enter Command Line Argument as follows:"
<<"\n\t./a.out <num Blocks> <num Validator> <num Iteration>\n";
NumBlock = atoi(argv[1]);
numValidator = atoi(argv[2]);
int nItertion = atoi(argv[3]);
if(NumBlock < 2) cout<<"\nNumber of Blocks should be >= 2\n";
if(numValidator < 1)cout<<"\nNumber of Validators should be >= 1\n";
if(nItertion < 1)cout<<"\nNumber of Iterations should be >= 1\n";
float tMiner = 0;
float tVal = 0;
float ftVal = 0;
int tReject = 0;
int ftReject = 0;
int tMaxAcc = 0;
int ftMaxAcc = 0;
int tDepInG = 0;
int tInDegAUs = 0;
//! list holds the avg time taken by miner and Validator
//! thread s for multiple consecutive runs.
list<float>mItrT;
list<float>vItrT;
list<float>fvItrT;
int totalInDegAUs= 0; //to get total number of AUs with non-zero In-degree;
int totalDepInG = 0; //to get total number of dependencies in graph;
int totalRejCont = 0; //number of validator rejected the blocks;
int ftotalRejCont= 0; //number of validator rejected the blocks;
int maxAccepted = 0;
int fmaxAccepted = 0;
int totalRun = NumBlock; //at least 2
FILEOPR file_opr;
//! read from input file:: nProposal = #numProposal; nThread = #threads;
//! numAUs = #AUs; λ = random delay seed.
file_opr.getInp(&nProposal, &nVoter, &nThread, &numAUs, &lemda);
if(nProposal > maxPObj) {
nProposal = maxPObj;
cout<<"Max number of Proposals can be "<<maxPObj<<"\n";
}
if(nVoter > maxVObj) {
nVoter = maxVObj;
cout<<"Max number of Voters can be "<<maxVObj<<"\n";
}
mPState = new int [nProposal];
vPState = new int [nProposal];
fvPState = new int [nProposal];
mVState = new int [nVoter];
vVState = new int [nVoter];
fvVState = new int [nVoter];
float valTime, fvalTime;
for(int itr = 0; itr < nItertion; itr++)
{
totalRejCont = 0;
maxAccepted = 0;
ftotalRejCont = 0;
fmaxAccepted = 0;
totalDepInG = 0;
tInDegAUs = 0;
valTime = 0;
fvalTime = 0;
float Blockvalt, Blockfvalt;
for(int nBlock = 0; nBlock < NumBlock; nBlock++)
{
Blockvalt = 0;
Blockfvalt = 0;
//! generates AUs (i.e. trans to be executed by miner & validator).
file_opr.genAUs(numAUs, nVoter, nProposal, funInContract, listAUs);
//! index+1 represents respective AU id, and
//! mAUT[index] represents "time stamp (commited trans)".
mAUT = new std::atomic<int>[numAUs];
for(int i = 0; i< numAUs; i++) mAUT[i] = 0;
tTime[0] = 0, tTime[1] = 0;
Timer mTimer;
mTimer.start();
//MINER
Miner *miner = new Miner(0);//0 is contract deployer id
miner ->mainMiner();
//Function to add malicious trans and final state by Miner
if(lemda != 0) bool rv = addMFS(NumOfDoubleSTx);
//give dependenices in the graph.
if(nBlock > 0) {
totalDepInG += cGraph->print_grpah();
totalInDegAUs += cGraph->inDegAUs(cGraph);
}
//VALIDATOR
float valt = 0, fvalt = 0;
int acceptCount = 0, rejectCount = 0;
int facceptCount = 0, frejectCount = 0;
for(int nval = 0; nval < numValidator; nval++)
{
valt = 0; fvalt = 0;
for(int p = 0; p < nProposal; p++)
vPState[p] = fvPState[p] = 0;
for(int v = 0; v < nVoter; v++)
vVState[v] = fvVState[v] = 0;
Validator *validator = new Validator();
ForkValidator *fvalidator = new ForkValidator();
nValBG = NULL;
nValBG = new Graph;
cGraph->copy_BG(nValBG);
validator ->mainValidator();
cGraph->copy_BG(nValBG);
fvalidator->mainValidator();
//State Validation for Decentralized Validator
bool flag = stateVal(false);
if(flag == true) rejectCount++;
else acceptCount++;
//State Validation for ForkJoin Validator
flag = stateVal(true);
if(flag == true) frejectCount++;
else facceptCount++;
int counterv = 0, counterfv = 0;
for( int x = 0; x < nThread; x++ ){
if(vTTime[x] != 0) {
valt += vTTime[x];
counterv++;
}
if(fvTTime[x] != 0) {
fvalt += fvTTime[x];
counterfv++;
}
}
if(nBlock > 0) Blockvalt += valt/counterv;
if(nBlock > 0) Blockfvalt += fvalt/counterfv;
}
if(nBlock > 0 && malMiner == true) {
totalRejCont += rejectCount;
if(maxAccepted < acceptCount ) maxAccepted = acceptCount;
ftotalRejCont += frejectCount;
if(fmaxAccepted < facceptCount ) fmaxAccepted = facceptCount;
}
int abortCnt = 0;
for( int iii = 0; iii < nThread; iii++ ) {
abortCnt = abortCnt + aCount[iii];
}
// if(nBlock > 0)cout<<"\nNumber of STM Transaction Aborted "<<abortCnt;
mTimer.stop();
float_t gConstT = 0;
for(int ii = 0; ii < nThread; ii++) gConstT += gTtime[ii];
// cout<<"Avg Grpah Time= "<<gConstT/nThread<<" microseconds";
//! total valid AUs among total AUs executed
//! by miner and varified by Validator.
int vAUs = gNodeCount;
if(nBlock > 0)
file_opr.writeOpt(nProposal, nVoter, nThread, numAUs, tTime, mTTime,
vTTime, fvTTime, aCount, vAUs, mItrT, vItrT, fvItrT, 0);
for(int p = 0; p < nProposal; p++) mPState[p] = 0;
for(int v = 0; v < nVoter; v++) mVState[v] = 0;
listAUs.clear();
delete miner;
miner = NULL;
delete cGraph;
cGraph = NULL;
valTime += Blockvalt/numValidator;
fvalTime += Blockfvalt/numValidator;
}
//! to get total avg miner and validator
//! time after number of totalRun runs.
float tAvgMinerT = 0, tAvgValidT = 0, tAvgfValidT = 0;
int cnt = 0, cnt1 = 0;
auto mit = mItrT.begin();
auto vit = vItrT.begin();
auto fvt = fvItrT.begin();
for(int j = 1; j < totalRun; j++){
tAvgMinerT = tAvgMinerT + *mit;
if(*vit != 0){
tAvgValidT = tAvgValidT + *vit;
cnt++;
}
if(*fvt != 0){
tAvgfValidT = tAvgfValidT + *fvt;
cnt1++;
}
mit++;
vit++;
fvt++;
}
tMiner += tAvgMinerT/(NumBlock-1);
tVal += valTime/(NumBlock-1);
ftVal += fvalTime/(NumBlock-1);
tReject += totalRejCont /(NumBlock-1);
ftReject += ftotalRejCont/(NumBlock-1);
tDepInG += totalDepInG /(NumBlock-1);
tInDegAUs+= totalInDegAUs/(NumBlock-1);
if(tMaxAcc < maxAccepted) tMaxAcc = maxAccepted;
if(ftMaxAcc < fmaxAccepted) ftMaxAcc = fmaxAccepted;
mItrT.clear();
vItrT.clear();
fvItrT.clear();
}
cout<<"Avg Miner Time in microseconds = "<<tMiner/nItertion;
cout<<"\nAvg Dec Validator Time in microseconds = "<<tVal/nItertion;
cout<<"\nAvg Fork Validator Time in microseconds = "<<ftVal/nItertion;
cout<<"\n-----------------------------\n";
cout<<"Avg Dependencies in Graph = "<<tDepInG/nItertion;
cout<<"\nAvg Number of BG Vertices = "<<tInDegAUs/nItertion;
cout<<"\n-----------------------------\n";
cout<<"Avg Dec Validator Accepted a Block = "
<<(numValidator-(tReject/nItertion));
cout<<"\nAvg Dec Validator Rejcted a Block = "
<<tReject/nItertion;
cout<<"\nMax Dec Validator Accepted any Block = "<<tMaxAcc;
cout<<"\n-----------------------------\n";
cout<<"Avg Fork Validator Accepted a Block = "
<<(numValidator-(ftReject/nItertion));
cout<<"\nAvg Fork Validator Rejcted a Block = "
<<ftReject/nItertion;
cout<<"\nMax Fork Validator Accepted any Block = "<<ftMaxAcc;
cout<<"\n"<<endl;
delete mTTime;
delete vTTime;
delete fvTTime;
delete aCount;
return 0;
}
/*************************MAIN FUN CODE ENDS***********************************/
| [
"cs17rescch11004@iith.ac.in"
] | cs17rescch11004@iith.ac.in |
d2e9522a57d3f341056384e9ea53e63caef67e9a | 9dbbf3e7ea55084330511bd9c046bb1af9c646c4 | /1.cpp | 90b0fe7868118ce3d22d748a920ee84b434b568b | [] | no_license | nauriz/alg | 7eb7e131daa2771bc4b56f1f3eec4406cd872387 | 2d4cdd8e90d69b70b84493820f3c269492cded21 | refs/heads/master | 2021-01-13T02:32:32.468214 | 2013-06-04T20:42:39 | 2013-06-04T20:42:39 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,116 | cpp | #include <iostream>
#define word unsigned int
using namespace std;
int flag[11]; /// array of flags
word c[11][11];
word l[11];
int min(int n)
{
int i, result;
for(i=0;i<n;i++)
{
if(!(flag[i]))
result=i;
}
for(i=0;i<n;i++)
{
if((l[result]>l[i])&&(!flag[i]))
result=i;
}
return result;
}
word minim(word x, word y)
{
if(x<y)
return x;
return y;
}
int main()
{
int n; /// number of tops
int p;
int xn;
int xk;
char s[80]; /// buffer
char path[80][11]; /// array for paths between points
cout<<"Input number of tops: "; cin>> n;
for(int i = 0; i < n; i++)
{
for(int j = 0; j < n; j++)
c[i][j] = 0;
}
for( int i = 0; i < n; i++)
{
for(int j = i+1; j < n; j++)
{
cout<<"Length from x"<< i+1 <<" to x"<<j+1<<":";
cin>> c[i][j];
}
}
cout<<endl;
for(int i = 0; i < n; i++)
{
cout<<"\tX"<<i+1;
}
cout<<endl;
for(int i = 0; i < n; i++)
{
printf("X%d",i+1);
for(int j = 0; j < n; j++)
{
printf("\t%d",c[i][j]);
c[j][i] = c[i][j];
}
cout<<endl<<endl;
}
for(int i = 0; i < n; i++)
{
for(int j = 0; j < n; j++)
if(c[i][j] == 0)
c[i][j] = 65535;
}
cout<<"Input start point: X";
cin>> xn;
cout<<"Input end point: X";
cin>> xk;
xk--;
xn--;
if(xn == xk)
{
cout<<"Start and end points are the same."<<endl;
getchar();
getchar();
return 0;
}
for(int i = 0; i < n; i++)
{
flag[i] = 0;
l[i] = 65535;
}
l[xn] = 0;
flag[xn] = 1;
p = xn;
itoa(xn+1,s,10);
for(int i = 1; i <= n; i++)
{
strcpy(path[i],"X");
strcat(path[i],s);
}
do
{
for(int i = 0; i < n; i++)
{
if((c[p][i] != 65535) && (!flag[i]) && (i != p))
{
if(l[i] > (l[p]+c[p][i]))
{
itoa(i+1,s,10);
strcpy(path[i+1],path[p+1]);
strcat(path[i+1],"-X");
strcat(path[i+1],s);
}
l[i] = minim(l[i], l[p]+c[p][i]);
}
}
p = min(n);
flag[p] = 1;
}
while(p != xk);
if(l[p] != 65535)
{
cout<<"\nPath between points: "<<path[p+1]<<endl;
cout<<"\tpath length: "<<l[p]<<endl;
}
else
cout<<"Path does not exist!"<<endl;
getchar();
getchar();
return 0;
} | [
"naur-newyear@mail.ru"
] | naur-newyear@mail.ru |
f43cc26575b3651ea9d68f184002b4611c9282a8 | e5555a3bc66e4777c13f103a03a84978f5d711b6 | /source/game.h | be41fdc62baa5be2a6c1caba879464d0fc30a8ac | [] | no_license | Deamu5/Among-Us | 238597ea576d72493e3e39e4eb59bb007657f5a3 | e7ce39e8f83416fd4309a310200c30760f22f7d5 | refs/heads/master | 2023-07-14T11:47:28.027139 | 2021-08-26T13:42:57 | 2021-08-26T13:42:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,458 | h | /*******************************************************************
** This code is part of Breakout.
**
** Breakout is free software: you can redistribute it and/or modify
** it under the terms of the CC BY 4.0 license as published by
** Creative Commons, either version 4 of the License, or (at your
** option) any later version.
******************************************************************/
#ifndef GAME_H
#define GAME_H
#include <glad/glad.h>
#include <GLFW/glfw3.h>
#include "game_level.h"
#include <bits/stdc++.h>
#include <ctime>
// clock_t begin = clock();
using namespace std;
// Represents the current state of the game
enum GameState {
GAME_ACTIVE,
GAME_MENU,
GAME_WIN
};
enum Direction {
UP,
RIGHT,
DOWN,
LEFT
};
typedef std::tuple<bool, Direction, glm::vec2> Collision;
// Initial size of the player paddle
const glm::vec2 PLAYER_SIZE(25.0f, 20.0f);
// Initial velocity of the player paddle
const float PLAYER_VELOCITY(500.0f);
const glm::vec2 INITIAL_BALL_VELOCITY(100.0f, -350.0f);
// Radius of the ball object
const float BALL_RADIUS = 8.0f;
// Game holds all game-related state and functionality.
// Combines all game-related data into a single class for
// easy access to each of the components and manageability.
class Game
{
public:
// game state
GameState State;
bool Keys[1024];
unsigned int Width, Height;
std::vector<GameLevel> Levels;
unsigned int Level;
unsigned int Health;
float Score;
bool Win;
bool Destroy;
bool Display;
bool lose;
unsigned int move;
unsigned int fx;
unsigned int fy;
unsigned int task;
clock_t begin;
clock_t now;
bool light;
unsigned int dir;
bool dirv;
vector<pair<int,int>> coords;
// constructor/destructor
Game(unsigned int width, unsigned int height);
~Game();
// initialize game state (load all shaders/textures/levels)
void Init();
void MazeGen();
// game loop
void ProcessInput(float dt);
void Update(float dt);
void Render();
bool DoCollisions();
void ResetLevel();
void ResetPlayer();
void BFS(float dt);
};
#endif | [
"ziabashir5@gmail.com"
] | ziabashir5@gmail.com |
e9218737aa2af20c0b23b64b20ec9fba0955ec09 | 2948d588a037a61a21f38ff83d5205455bb8b744 | /RAVBA-M/src/gtk/window.h | 776524996eb47ce0b489333479665e8a6f9f8587 | [] | no_license | RetroAchievements/RAEmus | 6758da04aa52c282668b356b9a96ae9334f82eae | ea0a63276f3a5e53efcd3f122704f0385db35623 | refs/heads/master | 2021-06-04T19:10:09.221058 | 2020-05-03T21:43:01 | 2020-05-03T21:43:01 | 129,188,521 | 65 | 11 | null | 2020-01-30T22:22:32 | 2018-04-12T03:38:34 | C++ | UTF-8 | C++ | false | false | 7,469 | h | // -*- C++ -*-
// VisualBoyAdvance - Nintendo Gameboy/GameboyAdvance (TM) emulator.
// Copyright (C) 1999-2003 Forgotten
// Copyright (C) 2004 Forgotten and the VBA development team
// 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, 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#ifndef __VBA_WINDOW_H__
#define __VBA_WINDOW_H__
#include <gtkmm/window.h>
#include <gtkmm/checkmenuitem.h>
#include <gtkmm/filechooserdialog.h>
#include <gtkmm/menubar.h>
#include <gtkmm/recentchoosermenu.h>
#include <gtkmm/builder.h>
#include "../System.h"
#include "../sdl/inputSDL.h"
#include "configfile.h"
#include "screenarea.h"
#include "filters.h"
namespace VBA
{
class Window : public Gtk::Window
{
friend class Gtk::Builder;
public:
virtual ~Window();
inline static Window * poGetInstance() { return m_poInstance; }
static std::string sGetUiFilePath(const std::string &_sFileName);
enum ECartridge
{
CartridgeNone,
CartridgeGB,
CartridgeGBA
};
enum EVideoOutput
{
OutputCairo,
OutputOpenGL
};
enum EEmulatorType
{
EmulatorAuto,
EmulatorCGB,
EmulatorSGB,
EmulatorGB,
EmulatorGBA,
EmulatorSGB2
};
enum ESaveType
{
SaveAuto,
SaveEEPROM,
SaveSRAM,
SaveFlash,
SaveEEPROMSensor,
SaveNone
};
// GB/GBA screen sizes
const int m_iGBScreenWidth;
const int m_iGBScreenHeight;
const int m_iSGBScreenWidth;
const int m_iSGBScreenHeight;
const int m_iGBAScreenWidth;
const int m_iGBAScreenHeight;
bool bLoadROM(const std::string & _rsFile);
void vPopupError(const char * _csFormat, ...);
void vPopupErrorV(const char * _csFormat, va_list _args);
void vDrawScreen();
void vComputeFrameskip(int _iRate);
void vShowSpeed(int _iSpeed);
void vCaptureScreen(int _iNum);
void vApplyConfigFilter();
void vApplyConfigFilterIB();
void vApplyConfigScreenArea();
void vApplyConfigMute();
void vApplyConfigVolume();
void vApplyConfigSoundSampleRate();
void vApplyConfigGBSystem();
void vApplyConfigGBBorder();
void vApplyConfigGBPrinter();
void vApplyConfigGBASaveType();
void vApplyConfigGBAFlashSize();
void vApplyConfigGBARTC();
void vApplyConfigFrameskip();
void vApplyConfigShowSpeed();
void vApplyPerGameConfig();
void vUpdateScreen();
inline ECartridge eGetCartridge() const { return m_eCartridge; }
protected:
Window(GtkWindow * _pstWindow,
const Glib::RefPtr<Gtk::Builder> & _poXml);
enum EShowSpeed
{
ShowNone,
ShowPercentage,
ShowDetailed
};
enum ESoundStatus
{
SoundOff,
SoundMute,
SoundOn
};
enum EColorFormat
{
ColorFormatRGB,
ColorFormatBGR
};
virtual void vOnMenuEnter();
virtual void vOnMenuExit();
virtual void vOnFileOpen();
virtual void vOnFileLoad();
virtual void vOnFileSave();
virtual void vOnLoadGameMostRecent();
virtual void vOnLoadGameAutoToggled(Gtk::CheckMenuItem * _poCMI);
void vOnLoadGame(int _iSlot);
virtual void vOnSaveGameOldest();
void vOnSaveGame(int _iSlot);
virtual void vOnFilePauseToggled(Gtk::CheckMenuItem * _poCMI);
virtual void vOnFileReset();
virtual void vOnRecentFile();
virtual void vOnFileScreenCapture();
virtual void vOnFileClose();
virtual void vOnFileExit();
virtual void vOnVideoFullscreen();
virtual void vOnDirectories();
virtual void vOnGeneralConfigure();
virtual void vOnJoypadConfigure();
virtual void vOnDisplayConfigure();
virtual void vOnSoundConfigure();
virtual void vOnGameBoyConfigure();
virtual void vOnGameBoyAdvanceConfigure();
virtual void vOnCheatList();
virtual void vOnCheatDisableToggled(Gtk::CheckMenuItem * _poCMI);
virtual void vOnHelpAbout();
virtual bool bOnEmuIdle();
virtual bool on_focus_in_event(GdkEventFocus * _pstEvent);
virtual bool on_focus_out_event(GdkEventFocus * _pstEvent);
virtual bool on_key_press_event(GdkEventKey * _pstEvent);
virtual bool on_key_release_event(GdkEventKey * _pstEvent);
virtual bool on_window_state_event(GdkEventWindowState* _pstEvent);
private:
// Config limits
const int m_iFrameskipMin;
const int m_iFrameskipMax;
const int m_iScaleMin;
const int m_iScaleMax;
const int m_iShowSpeedMin;
const int m_iShowSpeedMax;
const int m_iSaveTypeMin;
const int m_iSaveTypeMax;
const int m_iSoundSampleRateMin;
const int m_iSoundSampleRateMax;
const float m_fSoundVolumeMin;
const float m_fSoundVolumeMax;
const int m_iEmulatorTypeMin;
const int m_iEmulatorTypeMax;
const int m_iFilter2xMin;
const int m_iFilter2xMax;
const int m_iFilterIBMin;
const int m_iFilterIBMax;
const EPad m_iJoypadMin;
const EPad m_iJoypadMax;
const int m_iVideoOutputMin;
const int m_iVideoOutputMax;
static Window * m_poInstance;
Glib::RefPtr<Gtk::Builder> m_poXml;
std::string m_sUserDataDir;
std::string m_sConfigFile;
Config::File m_oConfig;
Config::Section * m_poDirConfig;
Config::Section * m_poCoreConfig;
Config::Section * m_poDisplayConfig;
Config::Section * m_poSoundConfig;
Config::Section * m_poInputConfig;
Gtk::FileChooserDialog * m_poFileOpenDialog;
ScreenArea * m_poScreenArea;
Gtk::CheckMenuItem * m_poFilePauseItem;
Gtk::MenuBar * m_poMenuBar;
struct SGameSlot
{
bool m_bEmpty;
std::string m_sFile;
time_t m_uiTime;
};
struct SJoypadKey
{
const char * m_csKey;
const EKey m_eKeyFlag;
};
static const SJoypadKey m_astJoypad[];
Gtk::MenuItem * m_apoLoadGameItem[10];
Gtk::MenuItem * m_apoSaveGameItem[10];
SGameSlot m_astGameSlot[10];
Glib::RefPtr<Gtk::RecentManager> m_poRecentManager;
Gtk::MenuItem * m_poRecentMenu;
Gtk::RecentChooserMenu * m_poRecentChooserMenu;
std::list<Gtk::Widget *> m_listSensitiveWhenPlaying;
sigc::connection m_oEmuSig;
int m_bFullscreen;
int m_iScreenWidth;
int m_iScreenHeight;
int m_iFrameCount;
std::string m_sRomFile;
ECartridge m_eCartridge;
EmulatedSystem m_stEmulator;
bool m_bPaused;
bool m_bWasEmulating;
bool m_bAutoFrameskip;
EShowSpeed m_eShowSpeed;
void vInitSystem();
void vUnInitSystem();
void vInitSDL();
void vInitConfig();
void vCheckConfig();
void vInitColors(EColorFormat _eColorFormat);
void vLoadConfig(const std::string & _rsFile);
void vSaveConfig(const std::string & _rsFile);
void vHistoryAdd(const std::string & _rsFile);
void vApplyConfigJoypads();
void vSaveJoypadsToConfig();
void vDrawDefaultScreen();
void vSetDefaultTitle();
void vCreateFileOpenDialog();
void vLoadBattery();
void vLoadCheats();
void vSaveBattery();
void vSaveCheats();
void vStartEmu();
void vStopEmu();
void vUpdateGameSlots();
void vToggleFullscreen();
void vSDLPollEvents();
};
} // namespace VBA
#endif // __VBA_WINDOW_H__
| [
"Scott@immensegames.com"
] | Scott@immensegames.com |
78e65ba60cee7e048943fea92bf0482a37729c26 | fc1be2eddc48116f9754cef10bc92512a160f720 | /C++/SpiralMat2.cc | 3712d431c3957dc2ed04678863f4fcf960940a40 | [] | no_license | eaglesky/leetcode | 6d7116a5c5df0c6aaf6441f9d7492f0bf8a0884e | bc9768624e3857c9776ef360b186d754333bbc03 | refs/heads/master | 2020-05-30T20:19:31.232212 | 2017-11-01T08:21:26 | 2017-11-01T08:21:26 | 22,568,355 | 2 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 1,363 | cc | #include <iostream>
#include <vector>
using namespace std;
//More simple solution is on the book(note that it is square matrix)
vector<vector<int> > generateMatrix(int n) {
vector<vector<int> > result(n, vector<int>(n, 0));
if (n == 0)
return result;
int i = 0;
int j = 0;
int num = 1;
for (int c = 0; num <= n*n; ++c)
{
int dir = c % 4;
switch (dir) {
case 0:
for (; j < n - c/4; ++j, num++)
result[i][j] = num;
break;
case 1:
for (--j, ++i; i < n - c/4; ++i, num++)
result[i][j] = num;
break;
case 2:
for (--i, --j; j >= c/4; --j, num++)
result[i][j] = num;
break;
case 3:
for (++j, --i; i >= c/4 + 1; --i, num++)
result[i][j] = num;
++i;
++j;
break;
}
}
return result;
}
int main(int argc, char** argv)
{
int n = atoi(argv[1]);
vector<vector<int> > mat = generateMatrix(n) ;
cout << "n = " << n << endl;
for (int i = 0; i < mat.size(); ++i)
{
for (int j = 0; j < mat[i].size(); ++j)
cout << mat[i][j] << ", " ;
cout << endl;
}
return 0;
}
| [
"allenchin1990@gmail.com"
] | allenchin1990@gmail.com |
a769c71a1dbdd711340857e55315caa92267c28a | a7caaf953a0849f6081e44382da74a600a86b3da | /opencv-2.4.9/modules/highgui/src/cap_ffmpeg.cpp | 192c0da694f963bd6cef1f3f11280797a68883a4 | [
"Apache-2.0",
"BSD-3-Clause"
] | permissive | watinha/collector | 22d22116fc1dbdfeec3bddb05aa42d05efe5b5b4 | fc4758f87aad99084ce4235de3e929d80c56a072 | refs/heads/master | 2021-12-28T11:12:50.548082 | 2021-08-19T20:05:20 | 2021-08-19T20:05:20 | 136,666,875 | 2 | 1 | Apache-2.0 | 2021-04-26T16:55:02 | 2018-06-08T21:17:16 | C++ | UTF-8 | C++ | false | false | 10,278 | cpp | /*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.
//
//
// Intel License Agreement
// For Open Source Computer Vision Library
//
// Copyright (C) 2000, Intel Corporation, 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 Intel Corporation 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*/
#include "precomp.hpp"
#if defined HAVE_FFMPEG && !defined WIN32
#include "cap_ffmpeg_impl.hpp"
#else
#include "cap_ffmpeg_api.hpp"
#endif
static CvCreateFileCapture_Plugin icvCreateFileCapture_FFMPEG_p = 0;
static CvReleaseCapture_Plugin icvReleaseCapture_FFMPEG_p = 0;
static CvGrabFrame_Plugin icvGrabFrame_FFMPEG_p = 0;
static CvRetrieveFrame_Plugin icvRetrieveFrame_FFMPEG_p = 0;
static CvSetCaptureProperty_Plugin icvSetCaptureProperty_FFMPEG_p = 0;
static CvGetCaptureProperty_Plugin icvGetCaptureProperty_FFMPEG_p = 0;
static CvCreateVideoWriter_Plugin icvCreateVideoWriter_FFMPEG_p = 0;
static CvReleaseVideoWriter_Plugin icvReleaseVideoWriter_FFMPEG_p = 0;
static CvWriteFrame_Plugin icvWriteFrame_FFMPEG_p = 0;
static cv::Mutex _icvInitFFMPEG_mutex;
class icvInitFFMPEG
{
public:
static void Init()
{
cv::AutoLock al(_icvInitFFMPEG_mutex);
static icvInitFFMPEG init;
}
private:
#if defined WIN32 || defined _WIN32
HMODULE icvFFOpenCV;
~icvInitFFMPEG()
{
if (icvFFOpenCV)
{
FreeLibrary(icvFFOpenCV);
icvFFOpenCV = 0;
}
}
#endif
icvInitFFMPEG()
{
#if defined WIN32 || defined _WIN32
# ifdef HAVE_WINRT
const wchar_t* module_name = L"opencv_ffmpeg"
CVAUX_STRW(CV_MAJOR_VERSION) CVAUX_STRW(CV_MINOR_VERSION) CVAUX_STRW(CV_SUBMINOR_VERSION)
#if (defined _MSC_VER && defined _M_X64) || (defined __GNUC__ && defined __x86_64__)
L"_64"
#endif
L".dll";
icvFFOpenCV = LoadPackagedLibrary( module_name, 0 );
# else
const char* module_name = "opencv_ffmpeg"
CVAUX_STR(CV_MAJOR_VERSION) CVAUX_STR(CV_MINOR_VERSION) CVAUX_STR(CV_SUBMINOR_VERSION)
#if (defined _MSC_VER && defined _M_X64) || (defined __GNUC__ && defined __x86_64__)
"_64"
#endif
".dll";
icvFFOpenCV = LoadLibrary( module_name );
# endif
if( icvFFOpenCV )
{
icvCreateFileCapture_FFMPEG_p =
(CvCreateFileCapture_Plugin)GetProcAddress(icvFFOpenCV, "cvCreateFileCapture_FFMPEG");
icvReleaseCapture_FFMPEG_p =
(CvReleaseCapture_Plugin)GetProcAddress(icvFFOpenCV, "cvReleaseCapture_FFMPEG");
icvGrabFrame_FFMPEG_p =
(CvGrabFrame_Plugin)GetProcAddress(icvFFOpenCV, "cvGrabFrame_FFMPEG");
icvRetrieveFrame_FFMPEG_p =
(CvRetrieveFrame_Plugin)GetProcAddress(icvFFOpenCV, "cvRetrieveFrame_FFMPEG");
icvSetCaptureProperty_FFMPEG_p =
(CvSetCaptureProperty_Plugin)GetProcAddress(icvFFOpenCV, "cvSetCaptureProperty_FFMPEG");
icvGetCaptureProperty_FFMPEG_p =
(CvGetCaptureProperty_Plugin)GetProcAddress(icvFFOpenCV, "cvGetCaptureProperty_FFMPEG");
icvCreateVideoWriter_FFMPEG_p =
(CvCreateVideoWriter_Plugin)GetProcAddress(icvFFOpenCV, "cvCreateVideoWriter_FFMPEG");
icvReleaseVideoWriter_FFMPEG_p =
(CvReleaseVideoWriter_Plugin)GetProcAddress(icvFFOpenCV, "cvReleaseVideoWriter_FFMPEG");
icvWriteFrame_FFMPEG_p =
(CvWriteFrame_Plugin)GetProcAddress(icvFFOpenCV, "cvWriteFrame_FFMPEG");
#if 0
if( icvCreateFileCapture_FFMPEG_p != 0 &&
icvReleaseCapture_FFMPEG_p != 0 &&
icvGrabFrame_FFMPEG_p != 0 &&
icvRetrieveFrame_FFMPEG_p != 0 &&
icvSetCaptureProperty_FFMPEG_p != 0 &&
icvGetCaptureProperty_FFMPEG_p != 0 &&
icvCreateVideoWriter_FFMPEG_p != 0 &&
icvReleaseVideoWriter_FFMPEG_p != 0 &&
icvWriteFrame_FFMPEG_p != 0 )
{
printf("Successfully initialized ffmpeg plugin!\n");
}
else
{
printf("Failed to load FFMPEG plugin: module handle=%p\n", icvFFOpenCV);
}
#endif
}
#elif defined HAVE_FFMPEG
icvCreateFileCapture_FFMPEG_p = (CvCreateFileCapture_Plugin)cvCreateFileCapture_FFMPEG;
icvReleaseCapture_FFMPEG_p = (CvReleaseCapture_Plugin)cvReleaseCapture_FFMPEG;
icvGrabFrame_FFMPEG_p = (CvGrabFrame_Plugin)cvGrabFrame_FFMPEG;
icvRetrieveFrame_FFMPEG_p = (CvRetrieveFrame_Plugin)cvRetrieveFrame_FFMPEG;
icvSetCaptureProperty_FFMPEG_p = (CvSetCaptureProperty_Plugin)cvSetCaptureProperty_FFMPEG;
icvGetCaptureProperty_FFMPEG_p = (CvGetCaptureProperty_Plugin)cvGetCaptureProperty_FFMPEG;
icvCreateVideoWriter_FFMPEG_p = (CvCreateVideoWriter_Plugin)cvCreateVideoWriter_FFMPEG;
icvReleaseVideoWriter_FFMPEG_p = (CvReleaseVideoWriter_Plugin)cvReleaseVideoWriter_FFMPEG;
icvWriteFrame_FFMPEG_p = (CvWriteFrame_Plugin)cvWriteFrame_FFMPEG;
#endif
}
};
class CvCapture_FFMPEG_proxy :
public CvCapture
{
public:
CvCapture_FFMPEG_proxy() { ffmpegCapture = 0; }
virtual ~CvCapture_FFMPEG_proxy() { close(); }
virtual double getProperty(int propId)
{
return ffmpegCapture ? icvGetCaptureProperty_FFMPEG_p(ffmpegCapture, propId) : 0;
}
virtual bool setProperty(int propId, double value)
{
return ffmpegCapture ? icvSetCaptureProperty_FFMPEG_p(ffmpegCapture, propId, value)!=0 : false;
}
virtual bool grabFrame()
{
return ffmpegCapture ? icvGrabFrame_FFMPEG_p(ffmpegCapture)!=0 : false;
}
virtual IplImage* retrieveFrame(int)
{
unsigned char* data = 0;
int step=0, width=0, height=0, cn=0;
if (!ffmpegCapture ||
!icvRetrieveFrame_FFMPEG_p(ffmpegCapture, &data, &step, &width, &height, &cn))
return 0;
cvInitImageHeader(&frame, cvSize(width, height), 8, cn);
cvSetData(&frame, data, step);
return &frame;
}
virtual bool open( const char* filename )
{
icvInitFFMPEG::Init();
close();
if( !icvCreateFileCapture_FFMPEG_p )
return false;
ffmpegCapture = icvCreateFileCapture_FFMPEG_p( filename );
return ffmpegCapture != 0;
}
virtual void close()
{
if( ffmpegCapture && icvReleaseCapture_FFMPEG_p )
icvReleaseCapture_FFMPEG_p( &ffmpegCapture );
assert( ffmpegCapture == 0 );
ffmpegCapture = 0;
}
protected:
void* ffmpegCapture;
IplImage frame;
};
CvCapture* cvCreateFileCapture_FFMPEG_proxy(const char * filename)
{
CvCapture_FFMPEG_proxy* result = new CvCapture_FFMPEG_proxy;
if( result->open( filename ))
return result;
delete result;
return 0;
}
class CvVideoWriter_FFMPEG_proxy :
public CvVideoWriter
{
public:
CvVideoWriter_FFMPEG_proxy() { ffmpegWriter = 0; }
virtual ~CvVideoWriter_FFMPEG_proxy() { close(); }
virtual bool writeFrame( const IplImage* image )
{
if(!ffmpegWriter)
return false;
CV_Assert(image->depth == 8);
return icvWriteFrame_FFMPEG_p(ffmpegWriter, (const uchar*)image->imageData,
image->widthStep, image->width, image->height, image->nChannels, image->origin) !=0;
}
virtual bool open( const char* filename, int fourcc, double fps, CvSize frameSize, bool isColor )
{
icvInitFFMPEG::Init();
close();
if( !icvCreateVideoWriter_FFMPEG_p )
return false;
ffmpegWriter = icvCreateVideoWriter_FFMPEG_p( filename, fourcc, fps, frameSize.width, frameSize.height, isColor );
return ffmpegWriter != 0;
}
virtual void close()
{
if( ffmpegWriter && icvReleaseVideoWriter_FFMPEG_p )
icvReleaseVideoWriter_FFMPEG_p( &ffmpegWriter );
assert( ffmpegWriter == 0 );
ffmpegWriter = 0;
}
protected:
void* ffmpegWriter;
};
CvVideoWriter* cvCreateVideoWriter_FFMPEG_proxy( const char* filename, int fourcc,
double fps, CvSize frameSize, int isColor )
{
CvVideoWriter_FFMPEG_proxy* result = new CvVideoWriter_FFMPEG_proxy;
if( result->open( filename, fourcc, fps, frameSize, isColor != 0 ))
return result;
delete result;
return 0;
}
| [
"watinha@gmail.com"
] | watinha@gmail.com |
1908f75b1b43bbd91b0867d02b33443f47ca6f6a | 236219800f83a09d90b3a768870ae0e227cdaa95 | /apps/mivisionx_winml_yolov2/source/AnnieYoloDetect.h | 0f32962de267fc6c9d5f52ec287646bb8e23b5d2 | [
"MIT"
] | permissive | shobana-mcw/MIVisionX | 40ebcd5fd078677ccff388d613088b97a2b0c82e | f27100845954a74746a03e674fa29add9d454aaa | refs/heads/master | 2023-07-25T10:52:59.252882 | 2022-03-02T10:34:55 | 2022-03-02T10:34:55 | 275,117,269 | 0 | 3 | MIT | 2023-06-02T08:15:37 | 2020-06-26T09:16:59 | C++ | UTF-8 | C++ | false | false | 627 | h | #pragma once
#include "Region.h"
#include "Visualize.h"
#include "vx_ext_winml.h"
#include "vx_ext_opencv.h"
#include "vx_ext_amd.h"
class AnnieYoloDetect {
public:
//constructor
AnnieYoloDetect(std::string mInput, std::string modelLoc, int confidence, int mode);
//destructor
~AnnieYoloDetect();
//run inference on given input and show the detected bounding boxes
void detect();
private:
const int mMode;
const int mConfidence;
const int mWidth = 416;
const int mHeight = 416;
const std::string mInput;
const std::string mModelLoc;
std::unique_ptr<Region> mRegion;
std::unique_ptr<Visualize> mVisualize;
}; | [
"kiritigowda@gmail.com"
] | kiritigowda@gmail.com |
8c3e2ad2ebe785b603dfd747d0146490dd7f58db | d087f90c6e64cb74c9f61a1dbc807662896e7ce9 | /Domains/Algorithms/Attending Workshops/Attending Workshops.cpp | f1cc5b05dc363f3362ad8bf28b95efaa101227f2 | [] | no_license | youfeng243/hackerrank | e7c26e56f30731ee27ac17b19712362c53a3bb94 | 913ec6db9a861c9f97726dde24488c10db63d23c | refs/heads/master | 2021-01-10T01:08:38.413900 | 2016-02-29T14:24:25 | 2016-02-29T14:24:25 | 49,575,420 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,803 | cpp | #include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;
bool cmp( const pair<int, int> a, const pair<int, int> b)
{
if( a.second == b.second )
{
return a.first < b.first;
}
return a.second < b.second;
}
class Available_Workshops
{
public:
Available_Workshops( int *starttime, int *duration, int n )
{
cnt = 0;
for( int i = 0; i < n; i++ )
{
pair<int, int> time(starttime[i], starttime[i] + duration[i]);
m_array.push_back(time);
}
sort(m_array.begin(), m_array.end(), cmp);
cnt = 1;
int prestart = m_array[0].first;
int preend = m_array[0].second;
for( int i = 1; i < n; i++ )
{
if( m_array[i].first >= preend )
{
prestart = m_array[i].first;
preend = m_array[i].second;
cnt++;
}
}
}
int getAnswer()
{
return cnt;
}
private:
int cnt;
vector< pair<int, int> > m_array;
};
int CalculateMaxWorkshops( Available_Workshops *ptr )
{
return ptr->getAnswer();
}
Available_Workshops *initialize( int *starttime, int *duration, int n )
{
Available_Workshops *ptr = new Available_Workshops(starttime, duration, n);
return ptr;
}
int main()
{
freopen("in.txt", "r", stdin);
freopen("out.txt", "w", stdout);
int n;
cin>>n;
int start_time[n],duration[n];
for(int i=0;i<n;i++)
{
cin>>start_time[i];
}
for(int i=0;i<n;i++)
{
cin>>duration[i];
}
Available_Workshops * ptr;
ptr=initialize(start_time,duration,n);
cout<<CalculateMaxWorkshops(ptr)<<endl;
return 0;
}
| [
"youfeng243@163.com"
] | youfeng243@163.com |
a736536b369f23beb9a9f781d0dcfe21f30abe9a | 6111df08fc84e7bcc1550e5956131d76dfe1d1be | /Laboratorio3/graph/MyInt.h | 2ef08b187ace5ea2acea3a938b5cf9aead8d2e1e | [] | no_license | CursosIE/IE-0217-III-16-G0 | 0218d8f9a15ca7b19b2bf6f87a01dd7e7e8f09b9 | 665c42b39acb02663875a7fd14bbab66e36ab2cf | refs/heads/master | 2021-01-01T20:36:13.432451 | 2017-03-06T23:58:16 | 2017-03-06T23:58:16 | 78,567,630 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 139 | h | #ifndef MYINT_H
#define MYINT_H
#include <iostream>
class MyInt {
public:
int i;
MyInt(int i){this->i= i;};
};
#endif /* MYINT_H */
| [
"daniel08leon@gmail.com"
] | daniel08leon@gmail.com |
e53abd1bc1786e75315078188f1a56e7f57e090c | b43db4d6e768b5af2f46aca943ecfa4e79d8f214 | /Rover/robotsensors.h | 640a8f714124b2a24a2f0a740bc54136b82ec9b2 | [] | no_license | S3FL-REST/RoverApplication_OLD | 4c45d277ea60c40c3baccc28cd5e612cc9fcb569 | 92d3041f1af0375f5f2559a18865d7ef4d185b63 | refs/heads/master | 2020-05-19T22:07:48.820299 | 2015-03-19T03:57:29 | 2015-03-19T03:57:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,030 | h | #ifndef ROBOTSENSORS_H
#define ROBOTSENSORS_H
#include <QString>
#include <QChar>
#include <QObject>
#include <QDebug>
#include "serialworker.h"
using namespace std;
//IR Front Right = 0
//IR Front Left = 1
//IR Back Right = 2
//IR Back Left = 3
enum IR_SENSORS {
IR_FRONT_RIGHT = 0,
IR_FRONT_LEFT = 1,
IR_BACK_RIGHT = 2,
IR_BACK_LEFT = 3,
};
class RobotSensors: public QObject
{
Q_OBJECT
public:
RobotSensors();
double GetIRValue(int);
double GetIRValue(IR_SENSORS);
static const double ROCK_LIMIT = 0.2;
static const double CRATER_LIMIT = 0.4;
void SetMotorValues(int, int);
private:
void InterpretDataType(string);
void ParseSingleData(string, vector<int>&);
vector<double> irValues;
SerialWorker serialConnection;
static const string SERIAL_PORT;
static const int NUM_IR_SENSORS = 4;
int currentLeft;
int currentRight;
public slots:
void ParseString(QString);
signals:
void SendData(QString);
};
#endif // ROBOTSENSORS_H
| [
"cessna.ian@gmail.com"
] | cessna.ian@gmail.com |
96d9154971ab22f76eab25bc74c0c1c80ad714b7 | de3b4c7b949a09843b879bff4454ca4f07a83ed4 | /examples/Receive/Get_Parameter/GetDroneTemp/GetDroneTemp.ino | bc26ec38c8dc7213858badc9f8374bd45cfabc30 | [] | no_license | truedo/Codrone | 0d56131066c1f7d83d6ab2220f9bd823f9e07122 | f5230bd8a18e4598682cb8e14f51e0266740a28f | refs/heads/master | 2021-01-15T09:08:41.009794 | 2019-02-14T01:46:20 | 2019-02-14T01:46:20 | 52,402,521 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,224 | ino | /*****************************************************************
getDroneTemp - 드론 온도 표시
드론의 현재 온도를 표시합니다.
드론을 켠 상태에서 PC와 보드를 USB로 연결합니다.
아두이노 창의 시리얼 모니터를 열고 통신 속도를 115200bps로 설정합니다.
*******************************************************************/
#include <CoDrone.h> // 코드론을 사용하기 위한 헤더파일
void setup()
{
CoDrone.begin(115200); // 드론 플러그의 통신 개시 (115200bps)
CoDrone.AutoConnect(NearbyDrone); // 가장 가까운 위치의 드론과 연결
CoDrone.DroneModeChange(Flight); // 드론을 플라이트 모드로 설정합니다. (비행형)
}
void loop()
{
CoDrone.Send_LinkModeBroadcast(LinkBroadcast_Active); //link module mode change => Active
delay(100);
int temperature = CoDrone.getDroneTemp(); //save request data
CoDrone.Send_LinkModeBroadcast(LinkModeMute); //link module mode change => Mute
delay(100);
Serial.println("");
Serial.println("--------- Now -----------");
Serial.print("temperature : \t");
Serial.println(temperature);
delay(100);
}
| [
"truedo@naver.com"
] | truedo@naver.com |
96600606a3446fd67f848a7479ad5f4d4dfc0584 | 2f4e381880b75a5a209f4677489c8310a9c58c55 | /Source/FirstProject/SpawnVolume.cpp | 90826e6e104f24f6104fc06d6e6654eed94ce86e | [] | no_license | BigMandu/FirstProject | bae789c9837e22edcfe5c8f05c1458c67fc25ade | 8ccc2c5461e974a767c34239d6ff7b97023a2269 | refs/heads/master | 2022-12-29T08:56:09.659513 | 2020-10-20T11:53:16 | 2020-10-20T11:53:16 | 305,693,153 | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 3,536 | cpp | // Fill out your copyright notice in the Description page of Project Settings.
#include "SpawnVolume.h"
#include "Components/BoxComponent.h"
#include "Kismet/KismetMathLibrary.h"
#include "Engine/World.h"
#include "Critter.h"
#include "Enemy.h"
#include "AIController.h"
// Sets default values
ASpawnVolume::ASpawnVolume()
{
// Set this actor to call Tick() every frame. You can turn this off to improve performance if you don't need it.
PrimaryActorTick.bCanEverTick = true;
SpawningBox = CreateDefaultSubobject<UBoxComponent>(TEXT("SpawningBox"));
}
// Called when the game starts or when spawned
void ASpawnVolume::BeginPlay()
{
Super::BeginPlay();
if (Actor_1 && Actor_2 && Actor_3 && Actor_4)
{
SpawnArray.Add(Actor_1);
SpawnArray.Add(Actor_2);
SpawnArray.Add(Actor_3);
SpawnArray.Add(Actor_4);
}
}
// Called every frame
void ASpawnVolume::Tick(float DeltaTime)
{
Super::Tick(DeltaTime);
}
// spawn volume에서 random한 point를 리턴.
FVector ASpawnVolume::GetSpawnPoint()
{
//Spawningbox의 크기.
FVector Extent = SpawningBox->GetScaledBoxExtent();
//Spawningbox의 원점 위치.
FVector Origin = SpawningBox->GetComponentLocation();
/* box내의 random한 point를 얻는 함수를 사용하기 위해 UKismet Math Library를 사용함.
얘를 사용하려면 헤더파일을 include해줘야하는데 검색하고 unreal documentation가면 나옴.
*/
FVector Point = UKismetMathLibrary::RandomPointInBoundingBox(Origin, Extent);
return Point;
}
TSubclassOf<AActor> ASpawnVolume::GetSpawnActor() //무작위로 어떤 Actor를 Spawn할건지 선택함.
{
if (SpawnArray.Num() > 0)
{
int32 Selection = FMath::RandRange(0, SpawnArray.Num() - 1); //0 to 3
return SpawnArray[Selection];
}
else
{
return nullptr;
}
}
/** 여기가 중요한데, Blueprint native event를 만들때, C++에서의 구현은 기본적으로 함수이름_Implementation 이렇게 사용해야한다.
이렇게 함수이름을 써야, Unreal Engine에서 C++로 스크립팅한 구현임을 알기 때문이다. error가 떠도 상관없다.(compiler가 모르는거임)
*/
void ASpawnVolume::SpawnOurActor_Implementation(UClass* ToSpawn, const FVector& Location)
{
if (ToSpawn)
{
//World.h 파일 include
UWorld* World = GetWorld();
FActorSpawnParameters SpawnParams;
if (World)
{
/** 마지막 파라미터는 FActorSpawnparameter가 필요하다. 위에서 만들어주자.
이렇게 해서 함수를 호출할 수 있다. SpawnActor는 생성한 Actor를 return해준다.
그래서 ACritter* CritterSpawned = 을 붙여준다.
이렇게 하게 되면, 나중에 이를 다룰 수 있다. 그리고 Critter 헤더파일을 추가하고, 여기서 말고 UE에서 컴파일하자.
그리고 다시 여기로 와서 컴파일하면 성공이 뜬다.
*/
//ACritter* CritterSpawned = World->SpawnActor<ACritter>(ToSpawn, Location, FRotator(0.f), SpawnParams);
AActor* Actor = World->SpawnActor<AActor>(ToSpawn, Location, FRotator(0.f), SpawnParams);
//이 Actor가 Enemy일 경우 Enemy의 AIController를 가져오기 위함.
AEnemy * Enemy = Cast<AEnemy>(Actor);
if (Enemy)
{
//이 함수는 이 Enemy의 Controller를 생성하고, pawn에 대해 설정한다.
Enemy->SpawnDefaultController(); //AIController for this and actually set it for pawn.
AAIController* AIController = Cast<AAIController>(Enemy->GetController());
if (AIController)
{
Enemy->AIController = AIController;
}
}
}
}
} | [
"2only1@naver.com"
] | 2only1@naver.com |
849166dcc965817719778fe60e3d8e522b99e650 | d39102eebadef1b18e788f9407b44fa2b2eac15e | /src/wallet/rpcwallet.cpp | 49e9e9f91fb2ae3e33d87cd621f8606776227069 | [
"MIT"
] | permissive | lvilar/zenoncash | 2bd75dcefecca97954f6bdb8c001be4cc1efee35 | 529987d667017c21d1818a9e35229c5e86d9dade | refs/heads/master | 2020-12-19T01:27:30.441253 | 2020-01-16T20:21:19 | 2020-01-16T20:21:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 166,221 | cpp | // Copyright (c) 2010 Satoshi Nakamoto
// Copyright (c) 2009-2014 The Bitcoin developers
// Copyright (c) 2014-2015 The Dash developers
// Copyright (c) 2015-2019 The PIVX developers
// Copyright (c) 2018-2019 The Zenon developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "amount.h"
#include "base58.h"
#include "core_io.h"
#include "init.h"
#include "net.h"
#include "netbase.h"
#include "rpc/server.h"
#include "timedata.h"
#include "util.h"
#include "utilmoneystr.h"
#include "wallet.h"
#include "walletdb.h"
#include "zznnchain.h"
#include <stdint.h>
#include "libzerocoin/Coin.h"
#include "spork.h"
#include "zznn/deterministicmint.h"
#include <boost/assign/list_of.hpp>
#include <boost/thread/thread.hpp>
#include <univalue.h>
#include <iostream>
int64_t nWalletUnlockTime;
static CCriticalSection cs_nWalletUnlockTime;
std::string HelpRequiringPassphrase()
{
return pwalletMain && pwalletMain->IsCrypted() ? "\nRequires wallet passphrase to be set with walletpassphrase call." : "";
}
void EnsureWalletIsUnlocked(bool fAllowAnonOnly)
{
if (pwalletMain->IsLocked() || (!fAllowAnonOnly && pwalletMain->fWalletUnlockAnonymizeOnly))
throw JSONRPCError(RPC_WALLET_UNLOCK_NEEDED, "Error: Please enter the wallet passphrase with walletpassphrase first.");
}
void WalletTxToJSON(const CWalletTx& wtx, UniValue& entry)
{
int confirms = wtx.GetDepthInMainChain(false);
int confirmsTotal = GetIXConfirmations(wtx.GetHash()) + confirms;
entry.push_back(Pair("confirmations", confirmsTotal));
entry.push_back(Pair("bcconfirmations", confirms));
if (wtx.IsCoinBase() || wtx.IsCoinStake())
entry.push_back(Pair("generated", true));
if (confirms > 0) {
entry.push_back(Pair("blockhash", wtx.hashBlock.GetHex()));
entry.push_back(Pair("blockindex", wtx.nIndex));
entry.push_back(Pair("blocktime", mapBlockIndex[wtx.hashBlock]->GetBlockTime()));
}
uint256 hash = wtx.GetHash();
entry.push_back(Pair("txid", hash.GetHex()));
UniValue conflicts(UniValue::VARR);
for (const uint256& conflict : wtx.GetConflicts())
conflicts.push_back(conflict.GetHex());
entry.push_back(Pair("walletconflicts", conflicts));
entry.push_back(Pair("time", wtx.GetTxTime()));
entry.push_back(Pair("timereceived", (int64_t)wtx.nTimeReceived));
for (const PAIRTYPE(std::string, std::string) & item : wtx.mapValue)
entry.push_back(Pair(item.first, item.second));
}
std::string AccountFromValue(const UniValue& value)
{
std::string strAccount = value.get_str();
if (strAccount == "*")
throw JSONRPCError(RPC_WALLET_INVALID_ACCOUNT_NAME, "Invalid account name");
return strAccount;
}
UniValue getnewaddress(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() > 1)
throw std::runtime_error(
"getnewaddress ( \"account\" )\n"
"\nReturns a new Zenon address for receiving payments.\n"
"If 'account' is specified (recommended), it is added to the address book \n"
"so payments received with the address will be credited to 'account'.\n"
"\nArguments:\n"
"1. \"account\" (string, optional) The account name for the address to be linked to. if not provided, the default account \"\" is used. It can also be set to the empty string \"\" to represent the default account. The account does not need to exist, it will be created if there is no account by the given name.\n"
"\nResult:\n"
"\"Zenonaddress\" (string) The new Zenon address\n"
"\nExamples:\n" +
HelpExampleCli("getnewaddress", "") + HelpExampleCli("getnewaddress", "\"\"") +
HelpExampleCli("getnewaddress", "\"myaccount\"") + HelpExampleRpc("getnewaddress", "\"myaccount\""));
LOCK2(cs_main, pwalletMain->cs_wallet);
// Parse the account first so we don't generate a key if there's an error
std::string strAccount;
if (params.size() > 0)
strAccount = AccountFromValue(params[0]);
if (!pwalletMain->IsLocked())
pwalletMain->TopUpKeyPool();
// Generate a new key that is added to wallet
CPubKey newKey;
if (!pwalletMain->GetKeyFromPool(newKey))
throw JSONRPCError(RPC_WALLET_KEYPOOL_RAN_OUT, "Error: Keypool ran out, please call keypoolrefill first");
CKeyID keyID = newKey.GetID();
pwalletMain->SetAddressBook(keyID, strAccount, "receive");
return CBitcoinAddress(keyID).ToString();
}
CBitcoinAddress GetAccountAddress(std::string strAccount, bool bForceNew = false)
{
CWalletDB walletdb(pwalletMain->strWalletFile);
CAccount account;
walletdb.ReadAccount(strAccount, account);
bool bKeyUsed = false;
// Check if the current key has been used
if (account.vchPubKey.IsValid()) {
CScript scriptPubKey = GetScriptForDestination(account.vchPubKey.GetID());
for (std::map<uint256, CWalletTx>::iterator it = pwalletMain->mapWallet.begin();
it != pwalletMain->mapWallet.end() && account.vchPubKey.IsValid();
++it) {
const CWalletTx& wtx = (*it).second;
for (const CTxOut& txout : wtx.vout)
if (txout.scriptPubKey == scriptPubKey)
bKeyUsed = true;
}
}
// Generate a new key
if (!account.vchPubKey.IsValid() || bForceNew || bKeyUsed) {
if (!pwalletMain->GetKeyFromPool(account.vchPubKey))
throw JSONRPCError(RPC_WALLET_KEYPOOL_RAN_OUT, "Error: Keypool ran out, please call keypoolrefill first");
pwalletMain->SetAddressBook(account.vchPubKey.GetID(), strAccount, "receive");
walletdb.WriteAccount(strAccount, account);
}
return CBitcoinAddress(account.vchPubKey.GetID());
}
UniValue getaccountaddress(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() != 1)
throw std::runtime_error(
"getaccountaddress \"account\"\n"
"\nReturns the current Zenon address for receiving payments to this account.\n"
"\nArguments:\n"
"1. \"account\" (string, required) The account name for the address. It can also be set to the empty string \"\" to represent the default account. The account does not need to exist, it will be created and a new address created if there is no account by the given name.\n"
"\nResult:\n"
"\"Zenonaddress\" (string) The account Zenon address\n"
"\nExamples:\n" +
HelpExampleCli("getaccountaddress", "") + HelpExampleCli("getaccountaddress", "\"\"") +
HelpExampleCli("getaccountaddress", "\"myaccount\"") + HelpExampleRpc("getaccountaddress", "\"myaccount\""));
LOCK2(cs_main, pwalletMain->cs_wallet);
// Parse the account first so we don't generate a key if there's an error
std::string strAccount = AccountFromValue(params[0]);
UniValue ret(UniValue::VSTR);
ret = GetAccountAddress(strAccount).ToString();
return ret;
}
UniValue getrawchangeaddress(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() > 1)
throw std::runtime_error(
"getrawchangeaddress\n"
"\nReturns a new Zenon address, for receiving change.\n"
"This is for use with raw transactions, NOT normal use.\n"
"\nResult:\n"
"\"address\" (string) The address\n"
"\nExamples:\n" +
HelpExampleCli("getrawchangeaddress", "") + HelpExampleRpc("getrawchangeaddress", ""));
LOCK2(cs_main, pwalletMain->cs_wallet);
if (!pwalletMain->IsLocked())
pwalletMain->TopUpKeyPool();
CReserveKey reservekey(pwalletMain);
CPubKey vchPubKey;
if (!reservekey.GetReservedKey(vchPubKey))
throw JSONRPCError(RPC_WALLET_KEYPOOL_RAN_OUT, "Error: Keypool ran out, please call keypoolrefill first");
reservekey.KeepKey();
CKeyID keyID = vchPubKey.GetID();
return CBitcoinAddress(keyID).ToString();
}
UniValue setaccount(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() < 1 || params.size() > 2)
throw std::runtime_error(
"setaccount \"Zenonaddress\" \"account\"\n"
"\nSets the account associated with the given address.\n"
"\nArguments:\n"
"1. \"Zenonaddress\" (string, required) The Zenon address to be associated with an account.\n"
"2. \"account\" (string, required) The account to assign the address to.\n"
"\nExamples:\n" +
HelpExampleCli("setaccount", "\"XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg\" \"tabby\"") + HelpExampleRpc("setaccount", "\"XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg\", \"tabby\""));
LOCK2(cs_main, pwalletMain->cs_wallet);
CBitcoinAddress address(params[0].get_str());
if (!address.IsValid())
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid Zenon address");
std::string strAccount;
if (params.size() > 1)
strAccount = AccountFromValue(params[1]);
// Only add the account if the address is yours.
if (IsMine(*pwalletMain, address.Get())) {
// Detect when changing the account of an address that is the 'unused current key' of another account:
if (pwalletMain->mapAddressBook.count(address.Get())) {
std::string strOldAccount = pwalletMain->mapAddressBook[address.Get()].name;
if (address == GetAccountAddress(strOldAccount))
GetAccountAddress(strOldAccount, true);
}
pwalletMain->SetAddressBook(address.Get(), strAccount, "receive");
} else
throw JSONRPCError(RPC_MISC_ERROR, "setaccount can only be used with own address");
return NullUniValue;
}
UniValue getaccount(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() != 1)
throw std::runtime_error(
"getaccount \"Zenonaddress\"\n"
"\nReturns the account associated with the given address.\n"
"\nArguments:\n"
"1. \"Zenonaddress\" (string, required) The Zenon address for account lookup.\n"
"\nResult:\n"
"\"accountname\" (string) the account address\n"
"\nExamples:\n" +
HelpExampleCli("getaccount", "\"XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg\"") + HelpExampleRpc("getaccount", "\"XwnLY9Tf7Zsef8gMGL2fhWA9ZmMjt4KPwg\""));
LOCK2(cs_main, pwalletMain->cs_wallet);
CBitcoinAddress address(params[0].get_str());
if (!address.IsValid())
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid Zenon address");
std::string strAccount;
std::map<CTxDestination, CAddressBookData>::iterator mi = pwalletMain->mapAddressBook.find(address.Get());
if (mi != pwalletMain->mapAddressBook.end() && !(*mi).second.name.empty())
strAccount = (*mi).second.name;
return strAccount;
}
UniValue getaddressesbyaccount(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() != 1)
throw std::runtime_error(
"getaddressesbyaccount \"account\"\n"
"\nReturns the list of addresses for the given account.\n"
"\nArguments:\n"
"1. \"account\" (string, required) The account name.\n"
"\nResult:\n"
"[ (json array of string)\n"
" \"Zenonaddress\" (string) a Zenon address associated with the given account\n"
" ,...\n"
"]\n"
"\nExamples:\n" +
HelpExampleCli("getaddressesbyaccount", "\"tabby\"") + HelpExampleRpc("getaddressesbyaccount", "\"tabby\""));
LOCK2(cs_main, pwalletMain->cs_wallet);
std::string strAccount = AccountFromValue(params[0]);
// Find all addresses that have the given account
UniValue ret(UniValue::VARR);
for (const PAIRTYPE(CBitcoinAddress, CAddressBookData) & item : pwalletMain->mapAddressBook) {
const CBitcoinAddress& address = item.first;
const std::string& strName = item.second.name;
if (strName == strAccount)
ret.push_back(address.ToString());
}
return ret;
}
void SendMoney(const CTxDestination& address, CAmount nValue, CWalletTx& wtxNew, bool fUseIX = false)
{
// Check amount
if (nValue <= 0)
throw JSONRPCError(RPC_INVALID_PARAMETER, "Invalid amount");
if (nValue > pwalletMain->GetBalance())
throw JSONRPCError(RPC_WALLET_INSUFFICIENT_FUNDS, "Insufficient funds");
std::string strError;
if (pwalletMain->IsLocked()) {
strError = "Error: Wallet locked, unable to create transaction!";
LogPrintf("SendMoney() : %s", strError);
throw JSONRPCError(RPC_WALLET_ERROR, strError);
}
// Parse Zenon address
CScript scriptPubKey = GetScriptForDestination(address);
// Create and send the transaction
CReserveKey reservekey(pwalletMain);
CAmount nFeeRequired;
if (!pwalletMain->CreateTransaction(scriptPubKey, nValue, wtxNew, reservekey, nFeeRequired, strError, NULL, ALL_COINS, fUseIX, (CAmount)0)) {
if (nValue + nFeeRequired > pwalletMain->GetBalance())
strError = strprintf("Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds!", FormatMoney(nFeeRequired));
LogPrintf("SendMoney() : %s\n", strError);
throw JSONRPCError(RPC_WALLET_ERROR, strError);
}
if (!pwalletMain->CommitTransaction(wtxNew, reservekey, (!fUseIX ? "tx" : "ix")))
throw JSONRPCError(RPC_WALLET_ERROR, "Error: The transaction was rejected! This might happen if some of the coins in your wallet were already spent, such as if you used a copy of wallet.dat and coins were spent in the copy but not marked as spent here.");
}
UniValue sendtoaddress(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() < 2 || params.size() > 4)
throw std::runtime_error(
"sendtoaddress \"Zenonaddress\" amount ( \"comment\" \"comment-to\" )\n"
"\nSend an amount to a given address. The amount is a real and is rounded to the nearest 0.00000001\n" +
HelpRequiringPassphrase() + "\n"
"\nArguments:\n"
"1. \"Zenonaddress\" (string, required) The Zenon address to send to.\n"
"2. \"amount\" (numeric, required) The amount in ZNN to send. eg 0.1\n"
"3. \"comment\" (string, optional) A comment used to store what the transaction is for. \n"
" This is not part of the transaction, just kept in your wallet.\n"
"4. \"comment-to\" (string, optional) A comment to store the name of the person or organization \n"
" to which you're sending the transaction. This is not part of the \n"
" transaction, just kept in your wallet.\n"
"\nResult:\n"
"\"transactionid\" (string) The transaction id.\n"
"\nExamples:\n" +
HelpExampleCli("sendtoaddress", "\"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\" 0.1") +
HelpExampleCli("sendtoaddress", "\"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\" 0.1 \"donation\" \"seans outpost\"") +
HelpExampleRpc("sendtoaddress", "\"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\", 0.1, \"donation\", \"seans outpost\""));
LOCK2(cs_main, pwalletMain->cs_wallet);
CBitcoinAddress address(params[0].get_str());
if (!address.IsValid())
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid Zenon address");
// Amount
CAmount nAmount = AmountFromValue(params[1]);
// Wallet comments
CWalletTx wtx;
if (params.size() > 2 && !params[2].isNull() && !params[2].get_str().empty())
wtx.mapValue["comment"] = params[2].get_str();
if (params.size() > 3 && !params[3].isNull() && !params[3].get_str().empty())
wtx.mapValue["to"] = params[3].get_str();
EnsureWalletIsUnlocked();
SendMoney(address.Get(), nAmount, wtx);
return wtx.GetHash().GetHex();
}
UniValue sendtoaddressix(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() < 2 || params.size() > 4)
throw std::runtime_error(
"sendtoaddressix \"Zenonaddress\" amount ( \"comment\" \"comment-to\" )\n"
"\nSend an amount to a given address. The amount is a real and is rounded to the nearest 0.00000001\n" +
HelpRequiringPassphrase() + "\n"
"\nArguments:\n"
"1. \"Zenonaddress\" (string, required) The Zenon address to send to.\n"
"2. \"amount\" (numeric, required) The amount in ZNN to send. eg 0.1\n"
"3. \"comment\" (string, optional) A comment used to store what the transaction is for. \n"
" This is not part of the transaction, just kept in your wallet.\n"
"4. \"comment-to\" (string, optional) A comment to store the name of the person or organization \n"
" to which you're sending the transaction. This is not part of the \n"
" transaction, just kept in your wallet.\n"
"\nResult:\n"
"\"transactionid\" (string) The transaction id.\n"
"\nExamples:\n" +
HelpExampleCli("sendtoaddressix", "\"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\" 0.1") +
HelpExampleCli("sendtoaddressix", "\"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\" 0.1 \"donation\" \"seans outpost\"") +
HelpExampleRpc("sendtoaddressix", "\"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\", 0.1, \"donation\", \"seans outpost\""));
LOCK2(cs_main, pwalletMain->cs_wallet);
CBitcoinAddress address(params[0].get_str());
if (!address.IsValid())
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid Zenon address");
// Amount
CAmount nAmount = AmountFromValue(params[1]);
// Wallet comments
CWalletTx wtx;
if (params.size() > 2 && !params[2].isNull() && !params[2].get_str().empty())
wtx.mapValue["comment"] = params[2].get_str();
if (params.size() > 3 && !params[3].isNull() && !params[3].get_str().empty())
wtx.mapValue["to"] = params[3].get_str();
EnsureWalletIsUnlocked();
SendMoney(address.Get(), nAmount, wtx, true);
return wtx.GetHash().GetHex();
}
UniValue listaddressgroupings(const UniValue& params, bool fHelp)
{
if (fHelp)
throw std::runtime_error(
"listaddressgroupings\n"
"\nLists groups of addresses which have had their common ownership\n"
"made public by common use as inputs or as the resulting change\n"
"in past transactions\n"
"\nResult:\n"
"[\n"
" [\n"
" [\n"
" \"Zenonaddress\", (string) The Zenon address\n"
" amount, (numeric) The amount in ZNN\n"
" \"account\" (string, optional) The account\n"
" ]\n"
" ,...\n"
" ]\n"
" ,...\n"
"]\n"
"\nExamples:\n" +
HelpExampleCli("listaddressgroupings", "") + HelpExampleRpc("listaddressgroupings", ""));
LOCK2(cs_main, pwalletMain->cs_wallet);
UniValue jsonGroupings(UniValue::VARR);
std::map<CTxDestination, CAmount> balances = pwalletMain->GetAddressBalances();
for (std::set<CTxDestination> grouping : pwalletMain->GetAddressGroupings()) {
UniValue jsonGrouping(UniValue::VARR);
for (CTxDestination address : grouping) {
UniValue addressInfo(UniValue::VARR);
addressInfo.push_back(CBitcoinAddress(address).ToString());
addressInfo.push_back(ValueFromAmount(balances[address]));
{
if (pwalletMain->mapAddressBook.find(CBitcoinAddress(address).Get()) != pwalletMain->mapAddressBook.end())
addressInfo.push_back(pwalletMain->mapAddressBook.find(CBitcoinAddress(address).Get())->second.name);
}
jsonGrouping.push_back(addressInfo);
}
jsonGroupings.push_back(jsonGrouping);
}
return jsonGroupings;
}
UniValue signmessage(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() != 2)
throw std::runtime_error(
"signmessage \"Zenonaddress\" \"message\"\n"
"\nSign a message with the private key of an address" +
HelpRequiringPassphrase() + "\n"
"\nArguments:\n"
"1. \"Zenonaddress\" (string, required) The Zenon address to use for the private key.\n"
"2. \"message\" (string, required) The message to create a signature of.\n"
"\nResult:\n"
"\"signature\" (string) The signature of the message encoded in base 64\n"
"\nExamples:\n"
"\nUnlock the wallet for 30 seconds\n" +
HelpExampleCli("walletpassphrase", "\"mypassphrase\" 30") +
"\nCreate the signature\n" +
HelpExampleCli("signmessage", "\"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\" \"my message\"") +
"\nVerify the signature\n" +
HelpExampleCli("verifymessage", "\"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\" \"signature\" \"my message\"") +
"\nAs json rpc\n" +
HelpExampleRpc("signmessage", "\"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\", \"my message\""));
LOCK2(cs_main, pwalletMain->cs_wallet);
EnsureWalletIsUnlocked();
std::string strAddress = params[0].get_str();
std::string strMessage = params[1].get_str();
CBitcoinAddress addr(strAddress);
if (!addr.IsValid())
throw JSONRPCError(RPC_TYPE_ERROR, "Invalid address");
CKeyID keyID;
if (!addr.GetKeyID(keyID))
throw JSONRPCError(RPC_TYPE_ERROR, "Address does not refer to key");
CKey key;
if (!pwalletMain->GetKey(keyID, key))
throw JSONRPCError(RPC_WALLET_ERROR, "Private key not available");
CHashWriter ss(SER_GETHASH, 0);
ss << strMessageMagic;
ss << strMessage;
std::vector<unsigned char> vchSig;
if (!key.SignCompact(ss.GetHash(), vchSig))
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Sign failed");
return EncodeBase64(&vchSig[0], vchSig.size());
}
UniValue getreceivedbyaddress(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() < 1 || params.size() > 2)
throw std::runtime_error(
"getreceivedbyaddress \"Zenonaddress\" ( minconf )\n"
"\nReturns the total amount received by the given Zenonaddress in transactions with at least minconf confirmations.\n"
"\nArguments:\n"
"1. \"Zenonaddress\" (string, required) The Zenon address for transactions.\n"
"2. minconf (numeric, optional, default=1) Only include transactions confirmed at least this many times.\n"
"\nResult:\n"
"amount (numeric) The total amount in ZNN received at this address.\n"
"\nExamples:\n"
"\nThe amount from transactions with at least 1 confirmation\n" +
HelpExampleCli("getreceivedbyaddress", "\"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\"") +
"\nThe amount including unconfirmed transactions, zero confirmations\n" +
HelpExampleCli("getreceivedbyaddress", "\"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\" 0") +
"\nThe amount with at least 6 confirmation, very safe\n" +
HelpExampleCli("getreceivedbyaddress", "\"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\" 6") +
"\nAs a json rpc call\n" +
HelpExampleRpc("getreceivedbyaddress", "\"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\", 6"));
LOCK2(cs_main, pwalletMain->cs_wallet);
// Zenon address
CBitcoinAddress address = CBitcoinAddress(params[0].get_str());
if (!address.IsValid())
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid Zenon address");
CScript scriptPubKey = GetScriptForDestination(address.Get());
if (!IsMine(*pwalletMain, scriptPubKey))
throw JSONRPCError(RPC_WALLET_ERROR, "Address not found in wallet");
// Minimum confirmations
int nMinDepth = 1;
if (params.size() > 1)
nMinDepth = params[1].get_int();
// Tally
CAmount nAmount = 0;
for (std::map<uint256, CWalletTx>::iterator it = pwalletMain->mapWallet.begin(); it != pwalletMain->mapWallet.end(); ++it) {
const CWalletTx& wtx = (*it).second;
if (wtx.IsCoinBase() || !IsFinalTx(wtx))
continue;
for (const CTxOut& txout : wtx.vout)
if (txout.scriptPubKey == scriptPubKey)
if (wtx.GetDepthInMainChain() >= nMinDepth)
nAmount += txout.nValue;
}
return ValueFromAmount(nAmount);
}
UniValue getreceivedbyaccount(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() < 1 || params.size() > 2)
throw std::runtime_error(
"getreceivedbyaccount \"account\" ( minconf )\n"
"\nReturns the total amount received by addresses with <account> in transactions with at least [minconf] confirmations.\n"
"\nArguments:\n"
"1. \"account\" (string, required) The selected account, may be the default account using \"\".\n"
"2. minconf (numeric, optional, default=1) Only include transactions confirmed at least this many times.\n"
"\nResult:\n"
"amount (numeric) The total amount in ZNN received for this account.\n"
"\nExamples:\n"
"\nAmount received by the default account with at least 1 confirmation\n" +
HelpExampleCli("getreceivedbyaccount", "\"\"") +
"\nAmount received at the tabby account including unconfirmed amounts with zero confirmations\n" +
HelpExampleCli("getreceivedbyaccount", "\"tabby\" 0") +
"\nThe amount with at least 6 confirmation, very safe\n" +
HelpExampleCli("getreceivedbyaccount", "\"tabby\" 6") +
"\nAs a json rpc call\n" +
HelpExampleRpc("getreceivedbyaccount", "\"tabby\", 6"));
LOCK2(cs_main, pwalletMain->cs_wallet);
// Minimum confirmations
int nMinDepth = 1;
if (params.size() > 1)
nMinDepth = params[1].get_int();
// Get the set of pub keys assigned to account
std::string strAccount = AccountFromValue(params[0]);
std::set<CTxDestination> setAddress = pwalletMain->GetAccountAddresses(strAccount);
// Tally
CAmount nAmount = 0;
for (std::map<uint256, CWalletTx>::iterator it = pwalletMain->mapWallet.begin(); it != pwalletMain->mapWallet.end(); ++it) {
const CWalletTx& wtx = (*it).second;
if (wtx.IsCoinBase() || !IsFinalTx(wtx))
continue;
for (const CTxOut& txout : wtx.vout) {
CTxDestination address;
if (ExtractDestination(txout.scriptPubKey, address) && IsMine(*pwalletMain, address) && setAddress.count(address))
if (wtx.GetDepthInMainChain() >= nMinDepth)
nAmount += txout.nValue;
}
}
return (double)nAmount / (double)COIN;
}
CAmount GetAccountBalance(CWalletDB& walletdb, const std::string& strAccount, int nMinDepth, const isminefilter& filter)
{
CAmount nBalance = 0;
// Tally wallet transactions
for (std::map<uint256, CWalletTx>::iterator it = pwalletMain->mapWallet.begin(); it != pwalletMain->mapWallet.end(); ++it) {
const CWalletTx& wtx = (*it).second;
if (!IsFinalTx(wtx) || wtx.GetBlocksToMaturity() > 0 || wtx.GetDepthInMainChain() < 0)
continue;
CAmount nReceived, nSent, nFee;
wtx.GetAccountAmounts(strAccount, nReceived, nSent, nFee, filter);
if (nReceived != 0 && wtx.GetDepthInMainChain() >= nMinDepth)
nBalance += nReceived;
nBalance -= nSent + nFee;
}
// Tally internal accounting entries
nBalance += walletdb.GetAccountCreditDebit(strAccount);
return nBalance;
}
CAmount GetAccountBalance(const std::string& strAccount, int nMinDepth, const isminefilter& filter)
{
CWalletDB walletdb(pwalletMain->strWalletFile);
return GetAccountBalance(walletdb, strAccount, nMinDepth, filter);
}
UniValue getbalance(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() > 3)
throw std::runtime_error(
"getbalance ( \"account\" minconf includeWatchonly )\n"
"\nIf account is not specified, returns the server's total available balance (excluding zerocoins).\n"
"If account is specified, returns the balance in the account.\n"
"Note that the account \"\" is not the same as leaving the parameter out.\n"
"The server total may be different to the balance in the default \"\" account.\n"
"\nArguments:\n"
"1. \"account\" (string, optional) The selected account, or \"*\" for entire wallet. It may be the default account using \"\".\n"
"2. minconf (numeric, optional, default=1) Only include transactions confirmed at least this many times.\n"
"3. includeWatchonly (bool, optional, default=false) Also include balance in watchonly addresses (see 'importaddress')\n"
"\nResult:\n"
"amount (numeric) The total amount in ZNN received for this account.\n"
"\nExamples:\n"
"\nThe total amount in the server across all accounts\n" +
HelpExampleCli("getbalance", "") +
"\nThe total amount in the server across all accounts, with at least 5 confirmations\n" +
HelpExampleCli("getbalance", "\"*\" 6") +
"\nThe total amount in the default account with at least 1 confirmation\n" +
HelpExampleCli("getbalance", "\"\"") +
"\nThe total amount in the account named tabby with at least 6 confirmations\n" +
HelpExampleCli("getbalance", "\"tabby\" 6") +
"\nAs a json rpc call\n" +
HelpExampleRpc("getbalance", "\"tabby\", 6"));
LOCK2(cs_main, pwalletMain->cs_wallet);
if (params.size() == 0)
return ValueFromAmount(pwalletMain->GetBalance());
int nMinDepth = 1;
if (params.size() > 1)
nMinDepth = params[1].get_int();
isminefilter filter = ISMINE_SPENDABLE;
if (params.size() > 2)
if (params[2].get_bool())
filter = filter | ISMINE_WATCH_ONLY;
if (params[0].get_str() == "*") {
// Calculate total balance a different way from GetBalance()
// (GetBalance() sums up all unspent TxOuts)
// getbalance and "getbalance * 1 true" should return the same number
CAmount nBalance = 0;
for (std::map<uint256, CWalletTx>::iterator it = pwalletMain->mapWallet.begin(); it != pwalletMain->mapWallet.end(); ++it) {
const CWalletTx& wtx = (*it).second;
if (!IsFinalTx(wtx) || wtx.GetBlocksToMaturity() > 0 || wtx.GetDepthInMainChain() < 0)
continue;
CAmount allFee;
std::string strSentAccount;
std::list<COutputEntry> listReceived;
std::list<COutputEntry> listSent;
wtx.GetAmounts(listReceived, listSent, allFee, strSentAccount, filter);
if (wtx.GetDepthInMainChain() >= nMinDepth) {
for (const COutputEntry& r : listReceived)
nBalance += r.amount;
}
for (const COutputEntry& s : listSent)
nBalance -= s.amount;
nBalance -= allFee;
}
return ValueFromAmount(nBalance);
}
std::string strAccount = AccountFromValue(params[0]);
CAmount nBalance = GetAccountBalance(strAccount, nMinDepth, filter);
return ValueFromAmount(nBalance);
}
UniValue getunconfirmedbalance(const UniValue ¶ms, bool fHelp)
{
if (fHelp || params.size() > 0)
throw std::runtime_error(
"getunconfirmedbalance\n"
"Returns the server's total unconfirmed balance\n");
LOCK2(cs_main, pwalletMain->cs_wallet);
return ValueFromAmount(pwalletMain->GetUnconfirmedBalance());
}
UniValue movecmd(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() < 3 || params.size() > 5)
throw std::runtime_error(
"move \"fromaccount\" \"toaccount\" amount ( minconf \"comment\" )\n"
"\nMove a specified amount from one account in your wallet to another.\n"
"\nArguments:\n"
"1. \"fromaccount\" (string, required) The name of the account to move funds from. May be the default account using \"\".\n"
"2. \"toaccount\" (string, required) The name of the account to move funds to. May be the default account using \"\".\n"
"3. amount (numeric, required) Quantity of ZNN to move between accounts.\n"
"4. minconf (numeric, optional, default=1) Only use funds with at least this many confirmations.\n"
"5. \"comment\" (string, optional) An optional comment, stored in the wallet only.\n"
"\nResult:\n"
"true|false (boolean) true if successful.\n"
"\nExamples:\n"
"\nMove 0.01 ZNN from the default account to the account named tabby\n" +
HelpExampleCli("move", "\"\" \"tabby\" 0.01") +
"\nMove 0.01 ZNN from timotei to akiko with a comment\n" +
HelpExampleCli("move", "\"timotei\" \"akiko\" 0.01 1 \"happy birthday!\"") +
"\nAs a json rpc call\n" +
HelpExampleRpc("move", "\"timotei\", \"akiko\", 0.01, 1, \"happy birthday!\""));
LOCK2(cs_main, pwalletMain->cs_wallet);
std::string strFrom = AccountFromValue(params[0]);
std::string strTo = AccountFromValue(params[1]);
CAmount nAmount = AmountFromValue(params[2]);
if (params.size() > 3)
// unused parameter, used to be nMinDepth, keep type-checking it though
(void)params[3].get_int();
std::string strComment;
if (params.size() > 4)
strComment = params[4].get_str();
CWalletDB walletdb(pwalletMain->strWalletFile);
if (!walletdb.TxnBegin())
throw JSONRPCError(RPC_DATABASE_ERROR, "database error");
int64_t nNow = GetAdjustedTime();
// Debit
CAccountingEntry debit;
debit.nOrderPos = pwalletMain->IncOrderPosNext(&walletdb);
debit.strAccount = strFrom;
debit.nCreditDebit = -nAmount;
debit.nTime = nNow;
debit.strOtherAccount = strTo;
debit.strComment = strComment;
pwalletMain->AddAccountingEntry(debit, walletdb);
// Credit
CAccountingEntry credit;
credit.nOrderPos = pwalletMain->IncOrderPosNext(&walletdb);
credit.strAccount = strTo;
credit.nCreditDebit = nAmount;
credit.nTime = nNow;
credit.strOtherAccount = strFrom;
credit.strComment = strComment;
pwalletMain->AddAccountingEntry(credit, walletdb);
if (!walletdb.TxnCommit())
throw JSONRPCError(RPC_DATABASE_ERROR, "database error");
return true;
}
UniValue sendfrom(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() < 3 || params.size() > 6)
throw std::runtime_error(
"sendfrom \"fromaccount\" \"toZenonaddress\" amount ( minconf \"comment\" \"comment-to\" )\n"
"\nSent an amount from an account to a Zenon address.\n"
"The amount is a real and is rounded to the nearest 0.00000001." +
HelpRequiringPassphrase() + "\n"
"\nArguments:\n"
"1. \"fromaccount\" (string, required) The name of the account to send funds from. May be the default account using \"\".\n"
"2. \"toZenonaddress\" (string, required) The Zenon address to send funds to.\n"
"3. amount (numeric, required) The amount in ZNN. (transaction fee is added on top).\n"
"4. minconf (numeric, optional, default=1) Only use funds with at least this many confirmations.\n"
"5. \"comment\" (string, optional) A comment used to store what the transaction is for. \n"
" This is not part of the transaction, just kept in your wallet.\n"
"6. \"comment-to\" (string, optional) An optional comment to store the name of the person or organization \n"
" to which you're sending the transaction. This is not part of the transaction, \n"
" it is just kept in your wallet.\n"
"\nResult:\n"
"\"transactionid\" (string) The transaction id.\n"
"\nExamples:\n"
"\nSend 0.01 ZNN from the default account to the address, must have at least 1 confirmation\n" +
HelpExampleCli("sendfrom", "\"\" \"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\" 0.01") +
"\nSend 0.01 from the tabby account to the given address, funds must have at least 6 confirmations\n" +
HelpExampleCli("sendfrom", "\"tabby\" \"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\" 0.01 6 \"donation\" \"seans outpost\"") +
"\nAs a json rpc call\n" +
HelpExampleRpc("sendfrom", "\"tabby\", \"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\", 0.01, 6, \"donation\", \"seans outpost\""));
LOCK2(cs_main, pwalletMain->cs_wallet);
std::string strAccount = AccountFromValue(params[0]);
CBitcoinAddress address(params[1].get_str());
if (!address.IsValid())
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid Zenon address");
CAmount nAmount = AmountFromValue(params[2]);
int nMinDepth = 1;
if (params.size() > 3)
nMinDepth = params[3].get_int();
CWalletTx wtx;
wtx.strFromAccount = strAccount;
if (params.size() > 4 && !params[4].isNull() && !params[4].get_str().empty())
wtx.mapValue["comment"] = params[4].get_str();
if (params.size() > 5 && !params[5].isNull() && !params[5].get_str().empty())
wtx.mapValue["to"] = params[5].get_str();
EnsureWalletIsUnlocked();
// Check funds
CAmount nBalance = GetAccountBalance(strAccount, nMinDepth, ISMINE_SPENDABLE);
if (nAmount > nBalance)
throw JSONRPCError(RPC_WALLET_INSUFFICIENT_FUNDS, "Account has insufficient funds");
SendMoney(address.Get(), nAmount, wtx);
return wtx.GetHash().GetHex();
}
UniValue sendmany(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() < 2 || params.size() > 4)
throw std::runtime_error(
"sendmany \"fromaccount\" {\"address\":amount,...} ( minconf \"comment\" )\n"
"\nSend multiple times. Amounts are double-precision floating point numbers." +
HelpRequiringPassphrase() + "\n"
"\nArguments:\n"
"1. \"fromaccount\" (string, required) The account to send the funds from, can be \"\" for the default account\n"
"2. \"amounts\" (string, required) A json object with addresses and amounts\n"
" {\n"
" \"address\":amount (numeric) The Zenon address is the key, the numeric amount in ZNN is the value\n"
" ,...\n"
" }\n"
"3. minconf (numeric, optional, default=1) Only use the balance confirmed at least this many times.\n"
"4. \"comment\" (string, optional) A comment\n"
"\nResult:\n"
"\"transactionid\" (string) The transaction id for the send. Only 1 transaction is created regardless of \n"
" the number of addresses.\n"
"\nExamples:\n"
"\nSend two amounts to two different addresses:\n" +
HelpExampleCli("sendmany", "\"tabby\" \"{\\\"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\\\":0.01,\\\"DAD3Y6ivr8nPQLT1NEPX84DxGCw9jz9Jvg\\\":0.02}\"") +
"\nSend two amounts to two different addresses setting the confirmation and comment:\n" +
HelpExampleCli("sendmany", "\"tabby\" \"{\\\"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\\\":0.01,\\\"DAD3Y6ivr8nPQLT1NEPX84DxGCw9jz9Jvg\\\":0.02}\" 6 \"testing\"") +
"\nAs a json rpc call\n" +
HelpExampleRpc("sendmany", "\"tabby\", \"{\\\"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\\\":0.01,\\\"DAD3Y6ivr8nPQLT1NEPX84DxGCw9jz9Jvg\\\":0.02}\", 6, \"testing\""));
LOCK2(cs_main, pwalletMain->cs_wallet);
std::string strAccount = AccountFromValue(params[0]);
UniValue sendTo = params[1].get_obj();
int nMinDepth = 1;
if (params.size() > 2)
nMinDepth = params[2].get_int();
CWalletTx wtx;
wtx.strFromAccount = strAccount;
if (params.size() > 3 && !params[3].isNull() && !params[3].get_str().empty())
wtx.mapValue["comment"] = params[3].get_str();
std::set<CBitcoinAddress> setAddress;
std::vector<std::pair<CScript, CAmount> > vecSend;
CAmount totalAmount = 0;
std::vector<std::string> keys = sendTo.getKeys();
for (const std::string& name_ : keys) {
CBitcoinAddress address(name_);
if (!address.IsValid())
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, std::string("Invalid Zenon address: ")+name_);
if (setAddress.count(address))
throw JSONRPCError(RPC_INVALID_PARAMETER, std::string("Invalid parameter, duplicated address: ")+name_);
setAddress.insert(address);
CScript scriptPubKey = GetScriptForDestination(address.Get());
CAmount nAmount = AmountFromValue(sendTo[name_]);
totalAmount += nAmount;
vecSend.push_back(std::make_pair(scriptPubKey, nAmount));
}
EnsureWalletIsUnlocked();
// Check funds
CAmount nBalance = GetAccountBalance(strAccount, nMinDepth, ISMINE_SPENDABLE);
if (totalAmount > nBalance)
throw JSONRPCError(RPC_WALLET_INSUFFICIENT_FUNDS, "Account has insufficient funds");
// Send
CReserveKey keyChange(pwalletMain);
CAmount nFeeRequired = 0;
std::string strFailReason;
bool fCreated = pwalletMain->CreateTransaction(vecSend, wtx, keyChange, nFeeRequired, strFailReason);
if (!fCreated)
throw JSONRPCError(RPC_WALLET_INSUFFICIENT_FUNDS, strFailReason);
if (!pwalletMain->CommitTransaction(wtx, keyChange))
throw JSONRPCError(RPC_WALLET_ERROR, "Transaction commit failed");
return wtx.GetHash().GetHex();
}
// Defined in rpc/misc.cpp
extern CScript _createmultisig_redeemScript(const UniValue& params);
UniValue addmultisigaddress(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() < 2 || params.size() > 3)
throw std::runtime_error(
"addmultisigaddress nrequired [\"key\",...] ( \"account\" )\n"
"\nAdd a nrequired-to-sign multisignature address to the wallet.\n"
"Each key is a Zenon address or hex-encoded public key.\n"
"If 'account' is specified, assign address to that account.\n"
"\nArguments:\n"
"1. nrequired (numeric, required) The number of required signatures out of the n keys or addresses.\n"
"2. \"keysobject\" (string, required) A json array of Zenon addresses or hex-encoded public keys\n"
" [\n"
" \"address\" (string) Zenon address or hex-encoded public key\n"
" ...,\n"
" ]\n"
"3. \"account\" (string, optional) An account to assign the addresses to.\n"
"\nResult:\n"
"\"Zenonaddress\" (string) A Zenon address associated with the keys.\n"
"\nExamples:\n"
"\nAdd a multisig address from 2 addresses\n" +
HelpExampleCli("addmultisigaddress", "2 \"[\\\"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\\\",\\\"DAD3Y6ivr8nPQLT1NEPX84DxGCw9jz9Jvg\\\"]\"") +
"\nAs json rpc call\n" +
HelpExampleRpc("addmultisigaddress", "2, \"[\\\"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\\\",\\\"DAD3Y6ivr8nPQLT1NEPX84DxGCw9jz9Jvg\\\"]\""));
LOCK2(cs_main, pwalletMain->cs_wallet);
std::string strAccount;
if (params.size() > 2)
strAccount = AccountFromValue(params[2]);
// Construct using pay-to-script-hash:
CScript inner = _createmultisig_redeemScript(params);
CScriptID innerID(inner);
pwalletMain->AddCScript(inner);
pwalletMain->SetAddressBook(innerID, strAccount, "send");
return CBitcoinAddress(innerID).ToString();
}
struct tallyitem {
CAmount nAmount;
int nConf;
int nBCConf;
std::vector<uint256> txids;
bool fIsWatchonly;
tallyitem()
{
nAmount = 0;
nConf = std::numeric_limits<int>::max();
nBCConf = std::numeric_limits<int>::max();
fIsWatchonly = false;
}
};
UniValue ListReceived(const UniValue& params, bool fByAccounts)
{
// Minimum confirmations
int nMinDepth = 1;
if (params.size() > 0)
nMinDepth = params[0].get_int();
// Whether to include empty accounts
bool fIncludeEmpty = false;
if (params.size() > 1)
fIncludeEmpty = params[1].get_bool();
isminefilter filter = ISMINE_SPENDABLE;
if (params.size() > 2)
if (params[2].get_bool())
filter = filter | ISMINE_WATCH_ONLY;
// Tally
std::map<CBitcoinAddress, tallyitem> mapTally;
for (std::map<uint256, CWalletTx>::iterator it = pwalletMain->mapWallet.begin(); it != pwalletMain->mapWallet.end(); ++it) {
const CWalletTx& wtx = (*it).second;
if (wtx.IsCoinBase() || !IsFinalTx(wtx))
continue;
int nDepth = wtx.GetDepthInMainChain();
int nBCDepth = wtx.GetDepthInMainChain(false);
if (nDepth < nMinDepth)
continue;
for (const CTxOut& txout : wtx.vout) {
CTxDestination address;
if (!ExtractDestination(txout.scriptPubKey, address))
continue;
isminefilter mine = IsMine(*pwalletMain, address);
if (!(mine & filter))
continue;
tallyitem& item = mapTally[address];
item.nAmount += txout.nValue;
item.nConf = std::min(item.nConf, nDepth);
item.nBCConf = std::min(item.nBCConf, nBCDepth);
item.txids.push_back(wtx.GetHash());
if (mine & ISMINE_WATCH_ONLY)
item.fIsWatchonly = true;
}
}
// Reply
UniValue ret(UniValue::VARR);
std::map<std::string, tallyitem> mapAccountTally;
for (const PAIRTYPE(CBitcoinAddress, CAddressBookData) & item : pwalletMain->mapAddressBook) {
const CBitcoinAddress& address = item.first;
const std::string& strAccount = item.second.name;
std::map<CBitcoinAddress, tallyitem>::iterator it = mapTally.find(address);
if (it == mapTally.end() && !fIncludeEmpty)
continue;
CAmount nAmount = 0;
int nConf = std::numeric_limits<int>::max();
int nBCConf = std::numeric_limits<int>::max();
bool fIsWatchonly = false;
if (it != mapTally.end()) {
nAmount = (*it).second.nAmount;
nConf = (*it).second.nConf;
nBCConf = (*it).second.nBCConf;
fIsWatchonly = (*it).second.fIsWatchonly;
}
if (fByAccounts) {
tallyitem& item = mapAccountTally[strAccount];
item.nAmount += nAmount;
item.nConf = std::min(item.nConf, nConf);
item.nBCConf = std::min(item.nBCConf, nBCConf);
item.fIsWatchonly = fIsWatchonly;
} else {
UniValue obj(UniValue::VOBJ);
if (fIsWatchonly)
obj.push_back(Pair("involvesWatchonly", true));
obj.push_back(Pair("address", address.ToString()));
obj.push_back(Pair("account", strAccount));
obj.push_back(Pair("amount", ValueFromAmount(nAmount)));
obj.push_back(Pair("confirmations", (nConf == std::numeric_limits<int>::max() ? 0 : nConf)));
obj.push_back(Pair("bcconfirmations", (nBCConf == std::numeric_limits<int>::max() ? 0 : nBCConf)));
UniValue transactions(UniValue::VARR);
if (it != mapTally.end()) {
for (const uint256& item : (*it).second.txids) {
transactions.push_back(item.GetHex());
}
}
obj.push_back(Pair("txids", transactions));
ret.push_back(obj);
}
}
if (fByAccounts) {
for (std::map<std::string, tallyitem>::iterator it = mapAccountTally.begin(); it != mapAccountTally.end(); ++it) {
CAmount nAmount = (*it).second.nAmount;
int nConf = (*it).second.nConf;
int nBCConf = (*it).second.nBCConf;
UniValue obj(UniValue::VOBJ);
if ((*it).second.fIsWatchonly)
obj.push_back(Pair("involvesWatchonly", true));
obj.push_back(Pair("account", (*it).first));
obj.push_back(Pair("amount", ValueFromAmount(nAmount)));
obj.push_back(Pair("confirmations", (nConf == std::numeric_limits<int>::max() ? 0 : nConf)));
obj.push_back(Pair("bcconfirmations", (nBCConf == std::numeric_limits<int>::max() ? 0 : nBCConf)));
ret.push_back(obj);
}
}
return ret;
}
UniValue listreceivedbyaddress(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() > 3)
throw std::runtime_error(
"listreceivedbyaddress ( minconf includeempty includeWatchonly)\n"
"\nList balances by receiving address.\n"
"\nArguments:\n"
"1. minconf (numeric, optional, default=1) The minimum number of confirmations before payments are included.\n"
"2. includeempty (numeric, optional, default=false) Whether to include addresses that haven't received any payments.\n"
"3. includeWatchonly (bool, optional, default=false) Whether to include watchonly addresses (see 'importaddress').\n"
"\nResult:\n"
"[\n"
" {\n"
" \"involvesWatchonly\" : \"true\", (bool) Only returned if imported addresses were involved in transaction\n"
" \"address\" : \"receivingaddress\", (string) The receiving address\n"
" \"account\" : \"accountname\", (string) The account of the receiving address. The default account is \"\".\n"
" \"amount\" : x.xxx, (numeric) The total amount in ZNN received by the address\n"
" \"confirmations\" : n (numeric) The number of confirmations of the most recent transaction included\n"
" \"bcconfirmations\" : n (numeric) The number of blockchain confirmations of the most recent transaction included\n"
" }\n"
" ,...\n"
"]\n"
"\nExamples:\n" +
HelpExampleCli("listreceivedbyaddress", "") + HelpExampleCli("listreceivedbyaddress", "6 true") + HelpExampleRpc("listreceivedbyaddress", "6, true, true"));
LOCK2(cs_main, pwalletMain->cs_wallet);
return ListReceived(params, false);
}
UniValue listreceivedbyaccount(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() > 3)
throw std::runtime_error(
"listreceivedbyaccount ( minconf includeempty includeWatchonly)\n"
"\nList balances by account.\n"
"\nArguments:\n"
"1. minconf (numeric, optional, default=1) The minimum number of confirmations before payments are included.\n"
"2. includeempty (boolean, optional, default=false) Whether to include accounts that haven't received any payments.\n"
"3. includeWatchonly (bool, optional, default=false) Whether to include watchonly addresses (see 'importaddress').\n"
"\nResult:\n"
"[\n"
" {\n"
" \"involvesWatchonly\" : \"true\", (bool) Only returned if imported addresses were involved in transaction\n"
" \"account\" : \"accountname\", (string) The account name of the receiving account\n"
" \"amount\" : x.xxx, (numeric) The total amount received by addresses with this account\n"
" \"confirmations\" : n (numeric) The number of confirmations of the most recent transaction included\n"
" \"bcconfirmations\" : n (numeric) The number of blockchain confirmations of the most recent transaction included\n"
" }\n"
" ,...\n"
"]\n"
"\nExamples:\n" +
HelpExampleCli("listreceivedbyaccount", "") + HelpExampleCli("listreceivedbyaccount", "6 true") + HelpExampleRpc("listreceivedbyaccount", "6, true, true"));
LOCK2(cs_main, pwalletMain->cs_wallet);
return ListReceived(params, true);
}
static void MaybePushAddress(UniValue & entry, const CTxDestination &dest)
{
CBitcoinAddress addr;
if (addr.Set(dest))
entry.push_back(Pair("address", addr.ToString()));
}
void ListTransactions(const CWalletTx& wtx, const std::string& strAccount, int nMinDepth, bool fLong, UniValue& ret, const isminefilter& filter)
{
CAmount nFee;
std::string strSentAccount;
std::list<COutputEntry> listReceived;
std::list<COutputEntry> listSent;
wtx.GetAmounts(listReceived, listSent, nFee, strSentAccount, filter);
bool fAllAccounts = (strAccount == std::string("*"));
bool involvesWatchonly = wtx.IsFromMe(ISMINE_WATCH_ONLY);
// Sent
if ((!listSent.empty() || nFee != 0) && (fAllAccounts || strAccount == strSentAccount)) {
for (const COutputEntry& s : listSent) {
UniValue entry(UniValue::VOBJ);
if (involvesWatchonly || (::IsMine(*pwalletMain, s.destination) & ISMINE_WATCH_ONLY))
entry.push_back(Pair("involvesWatchonly", true));
entry.push_back(Pair("account", strSentAccount));
MaybePushAddress(entry, s.destination);
std::map<std::string, std::string>::const_iterator it = wtx.mapValue.find("DS");
entry.push_back(Pair("category", (it != wtx.mapValue.end() && it->second == "1") ? "darksent" : "send"));
entry.push_back(Pair("amount", ValueFromAmount(-s.amount)));
entry.push_back(Pair("vout", s.vout));
entry.push_back(Pair("fee", ValueFromAmount(-nFee)));
if (fLong)
WalletTxToJSON(wtx, entry);
ret.push_back(entry);
}
}
// Received
if (listReceived.size() > 0 && wtx.GetDepthInMainChain() >= nMinDepth) {
for (const COutputEntry& r : listReceived) {
std::string account;
if (pwalletMain->mapAddressBook.count(r.destination))
account = pwalletMain->mapAddressBook[r.destination].name;
if (fAllAccounts || (account == strAccount)) {
UniValue entry(UniValue::VOBJ);
if (involvesWatchonly || (::IsMine(*pwalletMain, r.destination) & ISMINE_WATCH_ONLY))
entry.push_back(Pair("involvesWatchonly", true));
entry.push_back(Pair("account", account));
MaybePushAddress(entry, r.destination);
if (wtx.IsCoinBase()) {
if (wtx.GetDepthInMainChain() < 1)
entry.push_back(Pair("category", "orphan"));
else if (wtx.GetBlocksToMaturity() > 0)
entry.push_back(Pair("category", "immature"));
else
entry.push_back(Pair("category", "generate"));
} else {
entry.push_back(Pair("category", "receive"));
}
entry.push_back(Pair("amount", ValueFromAmount(r.amount)));
entry.push_back(Pair("vout", r.vout));
if (fLong)
WalletTxToJSON(wtx, entry);
ret.push_back(entry);
}
}
}
}
void AcentryToJSON(const CAccountingEntry& acentry, const std::string& strAccount, UniValue& ret)
{
bool fAllAccounts = (strAccount == std::string("*"));
if (fAllAccounts || acentry.strAccount == strAccount) {
UniValue entry(UniValue::VOBJ);
entry.push_back(Pair("account", acentry.strAccount));
entry.push_back(Pair("category", "move"));
entry.push_back(Pair("time", acentry.nTime));
entry.push_back(Pair("amount", ValueFromAmount(acentry.nCreditDebit)));
entry.push_back(Pair("otheraccount", acentry.strOtherAccount));
entry.push_back(Pair("comment", acentry.strComment));
ret.push_back(entry);
}
}
UniValue listtransactions(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() > 4)
throw std::runtime_error(
"listtransactions ( \"account\" count from includeWatchonly)\n"
"\nReturns up to 'count' most recent transactions skipping the first 'from' transactions for account 'account'.\n"
"\nArguments:\n"
"1. \"account\" (string, optional) The account name. If not included, it will list all transactions for all accounts.\n"
" If \"\" is set, it will list transactions for the default account.\n"
"2. count (numeric, optional, default=10) The number of transactions to return\n"
"3. from (numeric, optional, default=0) The number of transactions to skip\n"
"4. includeWatchonly (bool, optional, default=false) Include transactions to watchonly addresses (see 'importaddress')\n"
"\nResult:\n"
"[\n"
" {\n"
" \"account\":\"accountname\", (string) The account name associated with the transaction. \n"
" It will be \"\" for the default account.\n"
" \"address\":\"Zenonaddress\", (string) The Zenon address of the transaction. Not present for \n"
" move transactions (category = move).\n"
" \"category\":\"send|receive|move\", (string) The transaction category. 'move' is a local (off blockchain)\n"
" transaction between accounts, and not associated with an address,\n"
" transaction id or block. 'send' and 'receive' transactions are \n"
" associated with an address, transaction id and block details\n"
" \"amount\": x.xxx, (numeric) The amount in ZNN. This is negative for the 'send' category, and for the\n"
" 'move' category for moves outbound. It is positive for the 'receive' category,\n"
" and for the 'move' category for inbound funds.\n"
" \"vout\" : n, (numeric) the vout value\n"
" \"fee\": x.xxx, (numeric) The amount of the fee in ZNN. This is negative and only available for the \n"
" 'send' category of transactions.\n"
" \"confirmations\": n, (numeric) The number of confirmations for the transaction. Available for 'send' and \n"
" 'receive' category of transactions.\n"
" \"bcconfirmations\": n, (numeric) The number of blockchain confirmations for the transaction. Available for 'send'\n"
" and 'receive' category of transactions.\n"
" \"blockhash\": \"hashvalue\", (string) The block hash containing the transaction. Available for 'send' and 'receive'\n"
" category of transactions.\n"
" \"blockindex\": n, (numeric) The block index containing the transaction. Available for 'send' and 'receive'\n"
" category of transactions.\n"
" \"txid\": \"transactionid\", (string) The transaction id. Available for 'send' and 'receive' category of transactions.\n"
" \"time\": xxx, (numeric) The transaction time in seconds since epoch (midnight Jan 1 1970 GMT).\n"
" \"timereceived\": xxx, (numeric) The time received in seconds since epoch (midnight Jan 1 1970 GMT). Available \n"
" for 'send' and 'receive' category of transactions.\n"
" \"comment\": \"...\", (string) If a comment is associated with the transaction.\n"
" \"otheraccount\": \"accountname\", (string) For the 'move' category of transactions, the account the funds came \n"
" from (for receiving funds, positive amounts), or went to (for sending funds,\n"
" negative amounts).\n"
" }\n"
"]\n"
"\nExamples:\n"
"\nList the most recent 10 transactions in the systems\n" +
HelpExampleCli("listtransactions", "") +
"\nList the most recent 10 transactions for the tabby account\n" +
HelpExampleCli("listtransactions", "\"tabby\"") +
"\nList transactions 100 to 120 from the tabby account\n" +
HelpExampleCli("listtransactions", "\"tabby\" 20 100") +
"\nAs a json rpc call\n" +
HelpExampleRpc("listtransactions", "\"tabby\", 20, 100"));
LOCK2(cs_main, pwalletMain->cs_wallet);
std::string strAccount = "*";
if (params.size() > 0)
strAccount = params[0].get_str();
int nCount = 10;
if (params.size() > 1)
nCount = params[1].get_int();
int nFrom = 0;
if (params.size() > 2)
nFrom = params[2].get_int();
isminefilter filter = ISMINE_SPENDABLE;
if (params.size() > 3)
if (params[3].get_bool())
filter = filter | ISMINE_WATCH_ONLY;
if (nCount < 0)
throw JSONRPCError(RPC_INVALID_PARAMETER, "Negative count");
if (nFrom < 0)
throw JSONRPCError(RPC_INVALID_PARAMETER, "Negative from");
UniValue ret(UniValue::VARR);
const CWallet::TxItems & txOrdered = pwalletMain->wtxOrdered;
// iterate backwards until we have nCount items to return:
for (CWallet::TxItems::const_reverse_iterator it = txOrdered.rbegin(); it != txOrdered.rend(); ++it) {
CWalletTx* const pwtx = (*it).second.first;
if (pwtx != 0)
ListTransactions(*pwtx, strAccount, 0, true, ret, filter);
CAccountingEntry* const pacentry = (*it).second.second;
if (pacentry != 0)
AcentryToJSON(*pacentry, strAccount, ret);
if ((int)ret.size() >= (nCount + nFrom)) break;
}
// ret is newest to oldest
if (nFrom > (int)ret.size())
nFrom = ret.size();
if ((nFrom + nCount) > (int)ret.size())
nCount = ret.size() - nFrom;
std::vector<UniValue> arrTmp = ret.getValues();
std::vector<UniValue>::iterator first = arrTmp.begin();
std::advance(first, nFrom);
std::vector<UniValue>::iterator last = arrTmp.begin();
std::advance(last, nFrom+nCount);
if (last != arrTmp.end()) arrTmp.erase(last, arrTmp.end());
if (first != arrTmp.begin()) arrTmp.erase(arrTmp.begin(), first);
std::reverse(arrTmp.begin(), arrTmp.end()); // Return oldest to newest
ret.clear();
ret.setArray();
ret.push_backV(arrTmp);
return ret;
}
UniValue listaccounts(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() > 2)
throw std::runtime_error(
"listaccounts ( minconf includeWatchonly)\n"
"\nReturns Object that has account names as keys, account balances as values.\n"
"\nArguments:\n"
"1. minconf (numeric, optional, default=1) Only include transactions with at least this many confirmations\n"
"2. includeWatchonly (bool, optional, default=false) Include balances in watchonly addresses (see 'importaddress')\n"
"\nResult:\n"
"{ (json object where keys are account names, and values are numeric balances\n"
" \"account\": x.xxx, (numeric) The property name is the account name, and the value is the total balance for the account.\n"
" ...\n"
"}\n"
"\nExamples:\n"
"\nList account balances where there at least 1 confirmation\n" +
HelpExampleCli("listaccounts", "") +
"\nList account balances including zero confirmation transactions\n" +
HelpExampleCli("listaccounts", "0") +
"\nList account balances for 6 or more confirmations\n" +
HelpExampleCli("listaccounts", "6") +
"\nAs json rpc call\n" +
HelpExampleRpc("listaccounts", "6"));
LOCK2(cs_main, pwalletMain->cs_wallet);
int nMinDepth = 1;
if (params.size() > 0)
nMinDepth = params[0].get_int();
isminefilter includeWatchonly = ISMINE_SPENDABLE;
if (params.size() > 1)
if (params[1].get_bool())
includeWatchonly = includeWatchonly | ISMINE_WATCH_ONLY;
std::map<std::string, CAmount> mapAccountBalances;
for (const PAIRTYPE(CTxDestination, CAddressBookData) & entry : pwalletMain->mapAddressBook) {
if (IsMine(*pwalletMain, entry.first) & includeWatchonly) // This address belongs to me
mapAccountBalances[entry.second.name] = 0;
}
for (std::map<uint256, CWalletTx>::iterator it = pwalletMain->mapWallet.begin(); it != pwalletMain->mapWallet.end(); ++it) {
const CWalletTx& wtx = (*it).second;
CAmount nFee;
std::string strSentAccount;
std::list<COutputEntry> listReceived;
std::list<COutputEntry> listSent;
int nDepth = wtx.GetDepthInMainChain();
if (wtx.GetBlocksToMaturity() > 0 || nDepth < 0)
continue;
wtx.GetAmounts(listReceived, listSent, nFee, strSentAccount, includeWatchonly);
mapAccountBalances[strSentAccount] -= nFee;
for (const COutputEntry& s : listSent)
mapAccountBalances[strSentAccount] -= s.amount;
if (nDepth >= nMinDepth) {
for (const COutputEntry& r : listReceived)
if (pwalletMain->mapAddressBook.count(r.destination))
mapAccountBalances[pwalletMain->mapAddressBook[r.destination].name] += r.amount;
else
mapAccountBalances[""] += r.amount;
}
}
const std::list<CAccountingEntry> & acentries = pwalletMain->laccentries;
for (const CAccountingEntry& entry : acentries)
mapAccountBalances[entry.strAccount] += entry.nCreditDebit;
UniValue ret(UniValue::VOBJ);
for (const PAIRTYPE(std::string, CAmount) & accountBalance : mapAccountBalances) {
ret.push_back(Pair(accountBalance.first, ValueFromAmount(accountBalance.second)));
}
return ret;
}
UniValue listsinceblock(const UniValue& params, bool fHelp)
{
if (fHelp)
throw std::runtime_error(
"listsinceblock ( \"blockhash\" target-confirmations includeWatchonly)\n"
"\nGet all transactions in blocks since block [blockhash], or all transactions if omitted\n"
"\nArguments:\n"
"1. \"blockhash\" (string, optional) The block hash to list transactions since\n"
"2. target-confirmations: (numeric, optional) The confirmations required, must be 1 or more\n"
"3. includeWatchonly: (bool, optional, default=false) Include transactions to watchonly addresses (see 'importaddress')"
"\nResult:\n"
"{\n"
" \"transactions\": [\n"
" \"account\":\"accountname\", (string) The account name associated with the transaction. Will be \"\" for the default account.\n"
" \"address\":\"Zenonaddress\", (string) The Zenon address of the transaction. Not present for move transactions (category = move).\n"
" \"category\":\"send|receive\", (string) The transaction category. 'send' has negative amounts, 'receive' has positive amounts.\n"
" \"amount\": x.xxx, (numeric) The amount in ZNN. This is negative for the 'send' category, and for the 'move' category for moves \n"
" outbound. It is positive for the 'receive' category, and for the 'move' category for inbound funds.\n"
" \"vout\" : n, (numeric) the vout value\n"
" \"fee\": x.xxx, (numeric) The amount of the fee in ZNN. This is negative and only available for the 'send' category of transactions.\n"
" \"confirmations\": n, (numeric) The number of confirmations for the transaction. Available for 'send' and 'receive' category of transactions.\n"
" \"bcconfirmations\" : n, (numeric) The number of blockchain confirmations for the transaction. Available for 'send' and 'receive' category of transactions.\n"
" \"blockhash\": \"hashvalue\", (string) The block hash containing the transaction. Available for 'send' and 'receive' category of transactions.\n"
" \"blockindex\": n, (numeric) The block index containing the transaction. Available for 'send' and 'receive' category of transactions.\n"
" \"blocktime\": xxx, (numeric) The block time in seconds since epoch (1 Jan 1970 GMT).\n"
" \"txid\": \"transactionid\", (string) The transaction id. Available for 'send' and 'receive' category of transactions.\n"
" \"time\": xxx, (numeric) The transaction time in seconds since epoch (Jan 1 1970 GMT).\n"
" \"timereceived\": xxx, (numeric) The time received in seconds since epoch (Jan 1 1970 GMT). Available for 'send' and 'receive' category of transactions.\n"
" \"comment\": \"...\", (string) If a comment is associated with the transaction.\n"
" \"to\": \"...\", (string) If a comment to is associated with the transaction.\n"
" ],\n"
" \"lastblock\": \"lastblockhash\" (string) The hash of the last block\n"
"}\n"
"\nExamples:\n" +
HelpExampleCli("listsinceblock", "") +
HelpExampleCli("listsinceblock", "\"000000000000000bacf66f7497b7dc45ef753ee9a7d38571037cdb1a57f663ad\" 6") +
HelpExampleRpc("listsinceblock", "\"000000000000000bacf66f7497b7dc45ef753ee9a7d38571037cdb1a57f663ad\", 6"));
LOCK2(cs_main, pwalletMain->cs_wallet);
CBlockIndex* pindex = NULL;
int target_confirms = 1;
isminefilter filter = ISMINE_SPENDABLE;
if (params.size() > 0) {
uint256 blockId = 0;
blockId.SetHex(params[0].get_str());
BlockMap::iterator it = mapBlockIndex.find(blockId);
if (it != mapBlockIndex.end())
pindex = it->second;
}
if (params.size() > 1) {
target_confirms = params[1].get_int();
if (target_confirms < 1)
throw JSONRPCError(RPC_INVALID_PARAMETER, "Invalid parameter");
}
if (params.size() > 2)
if (params[2].get_bool())
filter = filter | ISMINE_WATCH_ONLY;
int depth = pindex ? (1 + chainActive.Height() - pindex->nHeight) : -1;
UniValue transactions(UniValue::VARR);
for (std::map<uint256, CWalletTx>::iterator it = pwalletMain->mapWallet.begin(); it != pwalletMain->mapWallet.end(); it++) {
CWalletTx tx = (*it).second;
if (depth == -1 || tx.GetDepthInMainChain(false) < depth)
ListTransactions(tx, "*", 0, true, transactions, filter);
}
CBlockIndex* pblockLast = chainActive[chainActive.Height() + 1 - target_confirms];
uint256 lastblock = pblockLast ? pblockLast->GetBlockHash() : 0;
UniValue ret(UniValue::VOBJ);
ret.push_back(Pair("transactions", transactions));
ret.push_back(Pair("lastblock", lastblock.GetHex()));
return ret;
}
UniValue gettransaction(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() < 1 || params.size() > 2)
throw std::runtime_error(
"gettransaction \"txid\" ( includeWatchonly )\n"
"\nGet detailed information about in-wallet transaction <txid>\n"
"\nArguments:\n"
"1. \"txid\" (string, required) The transaction id\n"
"2. \"includeWatchonly\" (bool, optional, default=false) Whether to include watchonly addresses in balance calculation and details[]\n"
"\nResult:\n"
"{\n"
" \"amount\" : x.xxx, (numeric) The transaction amount in ZNN\n"
" \"confirmations\" : n, (numeric) The number of confirmations\n"
" \"bcconfirmations\" : n, (numeric) The number of blockchain confirmations\n"
" \"blockhash\" : \"hash\", (string) The block hash\n"
" \"blockindex\" : xx, (numeric) The block index\n"
" \"blocktime\" : ttt, (numeric) The time in seconds since epoch (1 Jan 1970 GMT)\n"
" \"txid\" : \"transactionid\", (string) The transaction id.\n"
" \"time\" : ttt, (numeric) The transaction time in seconds since epoch (1 Jan 1970 GMT)\n"
" \"timereceived\" : ttt, (numeric) The time received in seconds since epoch (1 Jan 1970 GMT)\n"
" \"details\" : [\n"
" {\n"
" \"account\" : \"accountname\", (string) The account name involved in the transaction, can be \"\" for the default account.\n"
" \"address\" : \"Zenonaddress\", (string) The Zenon address involved in the transaction\n"
" \"category\" : \"send|receive\", (string) The category, either 'send' or 'receive'\n"
" \"amount\" : x.xxx (numeric) The amount in ZNN\n"
" \"vout\" : n, (numeric) the vout value\n"
" }\n"
" ,...\n"
" ],\n"
" \"hex\" : \"data\" (string) Raw data for transaction\n"
"}\n"
"\nExamples:\n" +
HelpExampleCli("gettransaction", "\"1075db55d416d3ca199f55b6084e2115b9345e16c5cf302fc80e9d5fbf5d48d\"") +
HelpExampleCli("gettransaction", "\"1075db55d416d3ca199f55b6084e2115b9345e16c5cf302fc80e9d5fbf5d48d\" true") +
HelpExampleRpc("gettransaction", "\"1075db55d416d3ca199f55b6084e2115b9345e16c5cf302fc80e9d5fbf5d48d\""));
LOCK2(cs_main, pwalletMain->cs_wallet);
uint256 hash;
hash.SetHex(params[0].get_str());
isminefilter filter = ISMINE_SPENDABLE;
if (params.size() > 1)
if (params[1].get_bool())
filter = filter | ISMINE_WATCH_ONLY;
UniValue entry(UniValue::VOBJ);
if (!pwalletMain->mapWallet.count(hash))
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid or non-wallet transaction id");
const CWalletTx& wtx = pwalletMain->mapWallet[hash];
CAmount nCredit = wtx.GetCredit(filter);
CAmount nDebit = wtx.GetDebit(filter);
CAmount nNet = nCredit - nDebit;
CAmount nFee = (wtx.IsFromMe(filter) ? wtx.GetValueOut() - nDebit : 0);
entry.push_back(Pair("amount", ValueFromAmount(nNet - nFee)));
if (wtx.IsFromMe(filter))
entry.push_back(Pair("fee", ValueFromAmount(nFee)));
WalletTxToJSON(wtx, entry);
UniValue details(UniValue::VARR);
ListTransactions(wtx, "*", 0, false, details, filter);
entry.push_back(Pair("details", details));
std::string strHex = EncodeHexTx(static_cast<CTransaction>(wtx));
entry.push_back(Pair("hex", strHex));
return entry;
}
UniValue backupwallet(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() != 1)
throw std::runtime_error(
"backupwallet \"destination\"\n"
"\nSafely copies wallet.dat to destination, which can be a directory or a path with filename.\n"
"\nArguments:\n"
"1. \"destination\" (string) The destination directory or file\n"
"\nExamples:\n" +
HelpExampleCli("backupwallet", "\"backup.dat\"") + HelpExampleRpc("backupwallet", "\"backup.dat\""));
LOCK2(cs_main, pwalletMain->cs_wallet);
std::string strDest = params[0].get_str();
if (!BackupWallet(*pwalletMain, strDest))
throw JSONRPCError(RPC_WALLET_ERROR, "Error: Wallet backup failed!");
return NullUniValue;
}
UniValue keypoolrefill(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() > 1)
throw std::runtime_error(
"keypoolrefill ( newsize )\n"
"\nFills the keypool." +
HelpRequiringPassphrase() + "\n"
"\nArguments\n"
"1. newsize (numeric, optional, default=100) The new keypool size\n"
"\nExamples:\n" +
HelpExampleCli("keypoolrefill", "") + HelpExampleRpc("keypoolrefill", ""));
LOCK2(cs_main, pwalletMain->cs_wallet);
// 0 is interpreted by TopUpKeyPool() as the default keypool size given by -keypool
unsigned int kpSize = 0;
if (params.size() > 0) {
if (params[0].get_int() < 0)
throw JSONRPCError(RPC_INVALID_PARAMETER, "Invalid parameter, expected valid size.");
kpSize = (unsigned int)params[0].get_int();
}
EnsureWalletIsUnlocked();
pwalletMain->TopUpKeyPool(kpSize);
if (pwalletMain->GetKeyPoolSize() < kpSize)
throw JSONRPCError(RPC_WALLET_ERROR, "Error refreshing keypool.");
return NullUniValue;
}
static void LockWallet(CWallet* pWallet)
{
LOCK(cs_nWalletUnlockTime);
nWalletUnlockTime = 0;
pWallet->fWalletUnlockAnonymizeOnly = false;
pWallet->Lock();
}
UniValue walletpassphrase(const UniValue& params, bool fHelp)
{
if (pwalletMain->IsCrypted() && (fHelp || params.size() < 2 || params.size() > 3))
throw std::runtime_error(
"walletpassphrase \"passphrase\" timeout ( anonymizeonly )\n"
"\nStores the wallet decryption key in memory for 'timeout' seconds.\n"
"This is needed prior to performing transactions related to private keys such as sending ZNNs\n"
"\nArguments:\n"
"1. \"passphrase\" (string, required) The wallet passphrase\n"
"2. timeout (numeric, required) The time to keep the decryption key in seconds.\n"
"3. anonymizeonly (boolean, optional, default=false) If is true sending functions are disabled."
"\nNote:\n"
"Issuing the walletpassphrase command while the wallet is already unlocked will set a new unlock\n"
"time that overrides the old one. A timeout of \"0\" unlocks until the wallet is closed.\n"
"\nExamples:\n"
"\nUnlock the wallet for 60 seconds\n" +
HelpExampleCli("walletpassphrase", "\"my pass phrase\" 60") +
"\nUnlock the wallet for 60 seconds but allow anonymization, automint, and staking only\n" +
HelpExampleCli("walletpassphrase", "\"my pass phrase\" 60 true") +
"\nLock the wallet again (before 60 seconds)\n" +
HelpExampleCli("walletlock", "") +
"\nAs json rpc call\n" +
HelpExampleRpc("walletpassphrase", "\"my pass phrase\", 60"));
LOCK2(cs_main, pwalletMain->cs_wallet);
if (fHelp)
return true;
if (!pwalletMain->IsCrypted())
throw JSONRPCError(RPC_WALLET_WRONG_ENC_STATE, "Error: running with an unencrypted wallet, but walletpassphrase was called.");
// Note that the walletpassphrase is stored in params[0] which is not mlock()ed
SecureString strWalletPass;
strWalletPass.reserve(100);
// TODO: get rid of this .c_str() by implementing SecureString::operator=(std::string)
// Alternately, find a way to make params[0] mlock()'d to begin with.
strWalletPass = params[0].get_str().c_str();
bool anonymizeOnly = false;
if (params.size() == 3)
anonymizeOnly = params[2].get_bool();
if (!pwalletMain->IsLocked() && pwalletMain->fWalletUnlockAnonymizeOnly && anonymizeOnly)
throw JSONRPCError(RPC_WALLET_ALREADY_UNLOCKED, "Error: Wallet is already unlocked.");
// Get the timeout
int64_t nSleepTime = params[1].get_int64();
// Timeout cannot be negative, otherwise it will relock immediately
if (nSleepTime < 0) {
throw JSONRPCError(RPC_INVALID_PARAMETER, "Timeout cannot be negative.");
}
// Clamp timeout
constexpr int64_t MAX_SLEEP_TIME = 100000000; // larger values trigger a macos/libevent bug?
if (nSleepTime > MAX_SLEEP_TIME) {
nSleepTime = MAX_SLEEP_TIME;
}
if (!pwalletMain->Unlock(strWalletPass, anonymizeOnly))
throw JSONRPCError(RPC_WALLET_PASSPHRASE_INCORRECT, "Error: The wallet passphrase entered was incorrect.");
pwalletMain->TopUpKeyPool();
if (nSleepTime > 0) {
nWalletUnlockTime = GetTime () + nSleepTime;
RPCRunLater ("lockwallet", boost::bind (LockWallet, pwalletMain), nSleepTime);
}
return NullUniValue;
}
UniValue walletpassphrasechange(const UniValue& params, bool fHelp)
{
if (pwalletMain->IsCrypted() && (fHelp || params.size() != 2))
throw std::runtime_error(
"walletpassphrasechange \"oldpassphrase\" \"newpassphrase\"\n"
"\nChanges the wallet passphrase from 'oldpassphrase' to 'newpassphrase'.\n"
"\nArguments:\n"
"1. \"oldpassphrase\" (string) The current passphrase\n"
"2. \"newpassphrase\" (string) The new passphrase\n"
"\nExamples:\n" +
HelpExampleCli("walletpassphrasechange", "\"old one\" \"new one\"") + HelpExampleRpc("walletpassphrasechange", "\"old one\", \"new one\""));
LOCK2(cs_main, pwalletMain->cs_wallet);
if (fHelp)
return true;
if (!pwalletMain->IsCrypted())
throw JSONRPCError(RPC_WALLET_WRONG_ENC_STATE, "Error: running with an unencrypted wallet, but walletpassphrasechange was called.");
// TODO: get rid of these .c_str() calls by implementing SecureString::operator=(std::string)
// Alternately, find a way to make params[0] mlock()'d to begin with.
SecureString strOldWalletPass;
strOldWalletPass.reserve(100);
strOldWalletPass = params[0].get_str().c_str();
SecureString strNewWalletPass;
strNewWalletPass.reserve(100);
strNewWalletPass = params[1].get_str().c_str();
if (strOldWalletPass.length() < 1 || strNewWalletPass.length() < 1)
throw std::runtime_error(
"walletpassphrasechange <oldpassphrase> <newpassphrase>\n"
"Changes the wallet passphrase from <oldpassphrase> to <newpassphrase>.");
if (!pwalletMain->ChangeWalletPassphrase(strOldWalletPass, strNewWalletPass))
throw JSONRPCError(RPC_WALLET_PASSPHRASE_INCORRECT, "Error: The wallet passphrase entered was incorrect.");
return NullUniValue;
}
UniValue walletlock(const UniValue& params, bool fHelp)
{
if (pwalletMain->IsCrypted() && (fHelp || params.size() != 0))
throw std::runtime_error(
"walletlock\n"
"\nRemoves the wallet encryption key from memory, locking the wallet.\n"
"After calling this method, you will need to call walletpassphrase again\n"
"before being able to call any methods which require the wallet to be unlocked.\n"
"\nExamples:\n"
"\nSet the passphrase for 2 minutes to perform a transaction\n" +
HelpExampleCli("walletpassphrase", "\"my pass phrase\" 120") +
"\nPerform a send (requires passphrase set)\n" +
HelpExampleCli("sendtoaddress", "\"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\" 1.0") +
"\nClear the passphrase since we are done before 2 minutes is up\n" +
HelpExampleCli("walletlock", "") +
"\nAs json rpc call\n" +
HelpExampleRpc("walletlock", ""));
LOCK2(cs_main, pwalletMain->cs_wallet);
if (fHelp)
return true;
if (!pwalletMain->IsCrypted())
throw JSONRPCError(RPC_WALLET_WRONG_ENC_STATE, "Error: running with an unencrypted wallet, but walletlock was called.");
{
LOCK(cs_nWalletUnlockTime);
pwalletMain->Lock();
nWalletUnlockTime = 0;
}
return NullUniValue;
}
UniValue encryptwallet(const UniValue& params, bool fHelp)
{
if (!pwalletMain->IsCrypted() && (fHelp || params.size() != 1))
throw std::runtime_error(
"encryptwallet \"passphrase\"\n"
"\nEncrypts the wallet with 'passphrase'. This is for first time encryption.\n"
"After this, any calls that interact with private keys such as sending or signing \n"
"will require the passphrase to be set prior the making these calls.\n"
"Use the walletpassphrase call for this, and then walletlock call.\n"
"If the wallet is already encrypted, use the walletpassphrasechange call.\n"
"Note that this will shutdown the server.\n"
"\nArguments:\n"
"1. \"passphrase\" (string) The pass phrase to encrypt the wallet with. It must be at least 1 character, but should be long.\n"
"\nExamples:\n"
"\nEncrypt you wallet\n" +
HelpExampleCli("encryptwallet", "\"my pass phrase\"") +
"\nNow set the passphrase to use the wallet, such as for signing or sending ZNNs\n" +
HelpExampleCli("walletpassphrase", "\"my pass phrase\"") +
"\nNow we can so something like sign\n" +
HelpExampleCli("signmessage", "\"Zenonaddress\" \"test message\"") +
"\nNow lock the wallet again by removing the passphrase\n" +
HelpExampleCli("walletlock", "") +
"\nAs a json rpc call\n" +
HelpExampleRpc("encryptwallet", "\"my pass phrase\""));
LOCK2(cs_main, pwalletMain->cs_wallet);
if (fHelp)
return true;
if (pwalletMain->IsCrypted())
throw JSONRPCError(RPC_WALLET_WRONG_ENC_STATE, "Error: running with an encrypted wallet, but encryptwallet was called.");
// TODO: get rid of this .c_str() by implementing SecureString::operator=(std::string)
// Alternately, find a way to make params[0] mlock()'d to begin with.
SecureString strWalletPass;
strWalletPass.reserve(100);
strWalletPass = params[0].get_str().c_str();
if (strWalletPass.length() < 1)
throw std::runtime_error(
"encryptwallet <passphrase>\n"
"Encrypts the wallet with <passphrase>.");
if (!pwalletMain->EncryptWallet(strWalletPass))
throw JSONRPCError(RPC_WALLET_ENCRYPTION_FAILED, "Error: Failed to encrypt the wallet.");
// BDB seems to have a bad habit of writing old data into
// slack space in .dat files; that is bad if the old data is
// unencrypted private keys. So:
StartShutdown();
return "wallet encrypted; Zenon server stopping, restart to run with encrypted wallet. The keypool has been flushed, you need to make a new backup.";
}
UniValue lockunspent(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() < 1 || params.size() > 2)
throw std::runtime_error(
"lockunspent unlock [{\"txid\":\"txid\",\"vout\":n},...]\n"
"\nUpdates list of temporarily unspendable outputs.\n"
"Temporarily lock (unlock=false) or unlock (unlock=true) specified transaction outputs.\n"
"A locked transaction output will not be chosen by automatic coin selection, when spending ZNNs.\n"
"Locks are stored in memory only. Nodes start with zero locked outputs, and the locked output list\n"
"is always cleared (by virtue of process exit) when a node stops or fails.\n"
"Also see the listunspent call\n"
"\nArguments:\n"
"1. unlock (boolean, required) Whether to unlock (true) or lock (false) the specified transactions\n"
"2. \"transactions\" (string, required) A json array of objects. Each object the txid (string) vout (numeric)\n"
" [ (json array of json objects)\n"
" {\n"
" \"txid\":\"id\", (string) The transaction id\n"
" \"vout\": n (numeric) The output number\n"
" }\n"
" ,...\n"
" ]\n"
"\nResult:\n"
"true|false (boolean) Whether the command was successful or not\n"
"\nExamples:\n"
"\nList the unspent transactions\n" +
HelpExampleCli("listunspent", "") +
"\nLock an unspent transaction\n" +
HelpExampleCli("lockunspent", "false \"[{\\\"txid\\\":\\\"a08e6907dbbd3d809776dbfc5d82e371b764ed838b5655e72f463568df1aadf0\\\",\\\"vout\\\":1}]\"") +
"\nList the locked transactions\n" +
HelpExampleCli("listlockunspent", "") +
"\nUnlock the transaction again\n" +
HelpExampleCli("lockunspent", "true \"[{\\\"txid\\\":\\\"a08e6907dbbd3d809776dbfc5d82e371b764ed838b5655e72f463568df1aadf0\\\",\\\"vout\\\":1}]\"") +
"\nAs a json rpc call\n" +
HelpExampleRpc("lockunspent", "false, \"[{\\\"txid\\\":\\\"a08e6907dbbd3d809776dbfc5d82e371b764ed838b5655e72f463568df1aadf0\\\",\\\"vout\\\":1}]\""));
LOCK2(cs_main, pwalletMain->cs_wallet);
if (params.size() == 1)
RPCTypeCheck(params, boost::assign::list_of(UniValue::VBOOL));
else
RPCTypeCheck(params, boost::assign::list_of(UniValue::VBOOL)(UniValue::VARR));
bool fUnlock = params[0].get_bool();
if (params.size() == 1) {
if (fUnlock)
pwalletMain->UnlockAllCoins();
return true;
}
UniValue outputs = params[1].get_array();
for (unsigned int idx = 0; idx < outputs.size(); idx++) {
const UniValue& output = outputs[idx];
if (!output.isObject())
throw JSONRPCError(RPC_INVALID_PARAMETER, "Invalid parameter, expected object");
const UniValue& o = output.get_obj();
RPCTypeCheckObj(o, boost::assign::map_list_of("txid", UniValue::VSTR)("vout", UniValue::VNUM));
std::string txid = find_value(o, "txid").get_str();
if (!IsHex(txid))
throw JSONRPCError(RPC_INVALID_PARAMETER, "Invalid parameter, expected hex txid");
int nOutput = find_value(o, "vout").get_int();
if (nOutput < 0)
throw JSONRPCError(RPC_INVALID_PARAMETER, "Invalid parameter, vout must be positive");
COutPoint outpt(uint256(txid), nOutput);
if (fUnlock)
pwalletMain->UnlockCoin(outpt);
else
pwalletMain->LockCoin(outpt);
}
return true;
}
UniValue listlockunspent(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() > 0)
throw std::runtime_error(
"listlockunspent\n"
"\nReturns list of temporarily unspendable outputs.\n"
"See the lockunspent call to lock and unlock transactions for spending.\n"
"\nResult:\n"
"[\n"
" {\n"
" \"txid\" : \"transactionid\", (string) The transaction id locked\n"
" \"vout\" : n (numeric) The vout value\n"
" }\n"
" ,...\n"
"]\n"
"\nExamples:\n"
"\nList the unspent transactions\n" +
HelpExampleCli("listunspent", "") +
"\nLock an unspent transaction\n" +
HelpExampleCli("lockunspent", "false \"[{\\\"txid\\\":\\\"a08e6907dbbd3d809776dbfc5d82e371b764ed838b5655e72f463568df1aadf0\\\",\\\"vout\\\":1}]\"") +
"\nList the locked transactions\n" +
HelpExampleCli("listlockunspent", "") +
"\nUnlock the transaction again\n" +
HelpExampleCli("lockunspent", "true \"[{\\\"txid\\\":\\\"a08e6907dbbd3d809776dbfc5d82e371b764ed838b5655e72f463568df1aadf0\\\",\\\"vout\\\":1}]\"") +
"\nAs a json rpc call\n" +
HelpExampleRpc("listlockunspent", ""));
LOCK2(cs_main, pwalletMain->cs_wallet);
std::vector<COutPoint> vOutpts;
pwalletMain->ListLockedCoins(vOutpts);
UniValue ret(UniValue::VARR);
for (COutPoint& outpt : vOutpts) {
UniValue o(UniValue::VOBJ);
o.push_back(Pair("txid", outpt.hash.GetHex()));
o.push_back(Pair("vout", (int)outpt.n));
ret.push_back(o);
}
return ret;
}
UniValue settxfee(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() < 1 || params.size() > 1)
throw std::runtime_error(
"settxfee amount\n"
"\nSet the transaction fee per kB.\n"
"\nArguments:\n"
"1. amount (numeric, required) The transaction fee in ZNN/kB rounded to the nearest 0.00000001\n"
"\nResult\n"
"true|false (boolean) Returns true if successful\n"
"\nExamples:\n" +
HelpExampleCli("settxfee", "0.00001") + HelpExampleRpc("settxfee", "0.00001"));
LOCK2(cs_main, pwalletMain->cs_wallet);
// Amount
CAmount nAmount = 0;
if (params[0].get_real() != 0.0)
nAmount = AmountFromValue(params[0]); // rejects 0.0 amounts
payTxFee = CFeeRate(nAmount, 1000);
return true;
}
UniValue getwalletinfo(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() != 0)
throw std::runtime_error(
"getwalletinfo\n"
"Returns an object containing various wallet state info.\n"
"\nResult:\n"
"{\n"
" \"walletversion\": xxxxx, (numeric) the wallet version\n"
" \"balance\": xxxxxxx, (numeric) the total ZNN balance of the wallet\n"
" \"unconfirmed_balance\": xxx, (numeric) the total unconfirmed balance of the wallet in ZNN\n"
" \"immature_balance\": xxxxxx, (numeric) the total immature balance of the wallet in ZNN\n"
" \"txcount\": xxxxxxx, (numeric) the total number of transactions in the wallet\n"
" \"keypoololdest\": xxxxxx, (numeric) the timestamp (seconds since GMT epoch) of the oldest pre-generated key in the key pool\n"
" \"keypoolsize\": xxxx, (numeric) how many new keys are pre-generated\n"
" \"unlocked_until\": ttt, (numeric) the timestamp in seconds since epoch (midnight Jan 1 1970 GMT) that the wallet is unlocked for transfers, or 0 if the wallet is locked\n"
" \"paytxfee\": x.xxxx, (numeric) the transaction fee configuration, set in ZNN/kB\n"
"}\n"
"\nExamples:\n" +
HelpExampleCli("getwalletinfo", "") + HelpExampleRpc("getwalletinfo", ""));
LOCK2(cs_main, pwalletMain->cs_wallet);
UniValue obj(UniValue::VOBJ);
obj.push_back(Pair("walletversion", pwalletMain->GetVersion()));
obj.push_back(Pair("balance", ValueFromAmount(pwalletMain->GetBalance())));
obj.push_back(Pair("unconfirmed_balance", ValueFromAmount(pwalletMain->GetUnconfirmedBalance())));
obj.push_back(Pair("immature_balance", ValueFromAmount(pwalletMain->GetImmatureBalance())));
obj.push_back(Pair("txcount", (int)pwalletMain->mapWallet.size()));
obj.push_back(Pair("keypoololdest", pwalletMain->GetOldestKeyPoolTime()));
obj.push_back(Pair("keypoolsize", (int)pwalletMain->GetKeyPoolSize()));
if (pwalletMain->IsCrypted())
obj.push_back(Pair("unlocked_until", nWalletUnlockTime));
obj.push_back(Pair("paytxfee", ValueFromAmount(payTxFee.GetFeePerK())));
return obj;
}
// ppcoin: reserve balance from being staked for network protection
UniValue reservebalance(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() > 2)
throw std::runtime_error(
"reservebalance ( reserve amount )\n"
"\nShow or set the reserve amount not participating in network protection\n"
"If no parameters provided current setting is printed.\n"
"\nArguments:\n"
"1. reserve (boolean, optional) is true or false to turn balance reserve on or off.\n"
"2. amount (numeric, optional) is a real and rounded to cent.\n"
"\nResult:\n"
"{\n"
" \"reserve\": true|false, (boolean) Status of the reserve balance\n"
" \"amount\": x.xxxx (numeric) Amount reserved\n"
"}\n"
"\nExamples:\n" +
HelpExampleCli("reservebalance", "true 5000") + HelpExampleRpc("reservebalance", "true 5000"));
if (params.size() > 0) {
bool fReserve = params[0].get_bool();
if (fReserve) {
if (params.size() == 1)
throw std::runtime_error("must provide amount to reserve balance.\n");
CAmount nAmount = AmountFromValue(params[1]);
nAmount = (nAmount / CENT) * CENT; // round to cent
if (nAmount < 0)
throw std::runtime_error("amount cannot be negative.\n");
nReserveBalance = nAmount;
} else {
if (params.size() > 1)
throw std::runtime_error("cannot specify amount to turn off reserve.\n");
nReserveBalance = 0;
}
}
UniValue result(UniValue::VOBJ);
result.push_back(Pair("reserve", (nReserveBalance > 0)));
result.push_back(Pair("amount", ValueFromAmount(nReserveBalance)));
return result;
}
// presstab HyperStake
UniValue setstakesplitthreshold(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() != 1)
throw std::runtime_error(
"setstakesplitthreshold value\n"
"\nThis will set the output size of your stakes to never be below this number\n" +
HelpRequiringPassphrase() + "\n"
"\nArguments:\n"
"1. value (numeric, required) Threshold value between 1 and 999999\n"
"\nResult:\n"
"{\n"
" \"threshold\": n, (numeric) Threshold value set\n"
" \"saved\": true|false (boolean) 'true' if successfully saved to the wallet file\n"
"}\n"
"\nExamples:\n" +
HelpExampleCli("setstakesplitthreshold", "5000") + HelpExampleRpc("setstakesplitthreshold", "5000"));
EnsureWalletIsUnlocked();
uint64_t nStakeSplitThreshold = params[0].get_int();
if (nStakeSplitThreshold > 999999)
throw std::runtime_error("Value out of range, max allowed is 999999");
CWalletDB walletdb(pwalletMain->strWalletFile);
LOCK(pwalletMain->cs_wallet);
{
bool fFileBacked = pwalletMain->fFileBacked;
UniValue result(UniValue::VOBJ);
pwalletMain->nStakeSplitThreshold = nStakeSplitThreshold;
result.push_back(Pair("threshold", int(pwalletMain->nStakeSplitThreshold)));
if (fFileBacked) {
walletdb.WriteStakeSplitThreshold(nStakeSplitThreshold);
result.push_back(Pair("saved", "true"));
} else
result.push_back(Pair("saved", "false"));
return result;
}
}
// presstab HyperStake
UniValue getstakesplitthreshold(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() != 0)
throw std::runtime_error(
"getstakesplitthreshold\n"
"Returns the threshold for stake splitting\n"
"\nResult:\n"
"n (numeric) Threshold value\n"
"\nExamples:\n" +
HelpExampleCli("getstakesplitthreshold", "") + HelpExampleRpc("getstakesplitthreshold", ""));
return int(pwalletMain->nStakeSplitThreshold);
}
UniValue autocombinerewards(const UniValue& params, bool fHelp)
{
bool fEnable;
if (params.size() >= 1)
fEnable = params[0].get_bool();
if (fHelp || params.size() < 1 || (fEnable && params.size() != 2) || params.size() > 2)
throw std::runtime_error(
"autocombinerewards enable ( threshold )\n"
"\nWallet will automatically monitor for any coins with value below the threshold amount, and combine them if they reside with the same Zenon address\n"
"When autocombinerewards runs it will create a transaction, and therefore will be subject to transaction fees.\n"
"\nArguments:\n"
"1. enable (boolean, required) Enable auto combine (true) or disable (false)\n"
"2. threshold (numeric, optional) Threshold amount (default: 0)\n"
"\nExamples:\n" +
HelpExampleCli("autocombinerewards", "true 500") + HelpExampleRpc("autocombinerewards", "true 500"));
CWalletDB walletdb(pwalletMain->strWalletFile);
CAmount nThreshold = 0;
if (fEnable)
nThreshold = params[1].get_int();
pwalletMain->fCombineDust = fEnable;
pwalletMain->nAutoCombineThreshold = nThreshold;
if (!walletdb.WriteAutoCombineSettings(fEnable, nThreshold))
throw std::runtime_error("Changed settings in wallet but failed to save to database\n");
return NullUniValue;
}
UniValue printMultiSend()
{
UniValue ret(UniValue::VARR);
UniValue act(UniValue::VOBJ);
act.push_back(Pair("MultiSendStake Activated?", pwalletMain->fMultiSendStake));
act.push_back(Pair("MultiSendMasternode Activated?", pwalletMain->fMultiSendMasternodeReward));
ret.push_back(act);
if (pwalletMain->vDisabledAddresses.size() >= 1) {
UniValue disAdd(UniValue::VOBJ);
for (unsigned int i = 0; i < pwalletMain->vDisabledAddresses.size(); i++) {
disAdd.push_back(Pair("Disabled From Sending", pwalletMain->vDisabledAddresses[i]));
}
ret.push_back(disAdd);
}
ret.push_back("MultiSend Addresses to Send To:");
UniValue vMS(UniValue::VOBJ);
for (unsigned int i = 0; i < pwalletMain->vMultiSend.size(); i++) {
vMS.push_back(Pair("Address " + std::to_string(i), pwalletMain->vMultiSend[i].first));
vMS.push_back(Pair("Percent", pwalletMain->vMultiSend[i].second));
}
ret.push_back(vMS);
return ret;
}
UniValue printAddresses()
{
std::vector<COutput> vCoins;
pwalletMain->AvailableCoins(vCoins);
std::map<std::string, double> mapAddresses;
for (const COutput& out : vCoins) {
CTxDestination utxoAddress;
ExtractDestination(out.tx->vout[out.i].scriptPubKey, utxoAddress);
std::string strAdd = CBitcoinAddress(utxoAddress).ToString();
if (mapAddresses.find(strAdd) == mapAddresses.end()) //if strAdd is not already part of the map
mapAddresses[strAdd] = (double)out.tx->vout[out.i].nValue / (double)COIN;
else
mapAddresses[strAdd] += (double)out.tx->vout[out.i].nValue / (double)COIN;
}
UniValue ret(UniValue::VARR);
for (std::map<std::string, double>::const_iterator it = mapAddresses.begin(); it != mapAddresses.end(); ++it) {
UniValue obj(UniValue::VOBJ);
const std::string* strAdd = &(*it).first;
const double* nBalance = &(*it).second;
obj.push_back(Pair("Address ", *strAdd));
obj.push_back(Pair("Balance ", *nBalance));
ret.push_back(obj);
}
return ret;
}
unsigned int sumMultiSend()
{
unsigned int sum = 0;
for (unsigned int i = 0; i < pwalletMain->vMultiSend.size(); i++)
sum += pwalletMain->vMultiSend[i].second;
return sum;
}
UniValue multisend(const UniValue& params, bool fHelp)
{
CWalletDB walletdb(pwalletMain->strWalletFile);
bool fFileBacked;
//MultiSend Commands
if (params.size() == 1) {
std::string strCommand = params[0].get_str();
UniValue ret(UniValue::VOBJ);
if (strCommand == "print") {
return printMultiSend();
} else if (strCommand == "printaddress" || strCommand == "printaddresses") {
return printAddresses();
} else if (strCommand == "clear") {
LOCK(pwalletMain->cs_wallet);
{
bool erased = false;
if (pwalletMain->fFileBacked) {
if (walletdb.EraseMultiSend(pwalletMain->vMultiSend))
erased = true;
}
pwalletMain->vMultiSend.clear();
pwalletMain->setMultiSendDisabled();
UniValue obj(UniValue::VOBJ);
obj.push_back(Pair("Erased from database", erased));
obj.push_back(Pair("Erased from RAM", true));
return obj;
}
} else if (strCommand == "enablestake" || strCommand == "activatestake") {
if (pwalletMain->vMultiSend.size() < 1)
throw JSONRPCError(RPC_INVALID_REQUEST, "Unable to activate MultiSend, check MultiSend vector");
if (CBitcoinAddress(pwalletMain->vMultiSend[0].first).IsValid()) {
pwalletMain->fMultiSendStake = true;
if (!walletdb.WriteMSettings(true, pwalletMain->fMultiSendMasternodeReward, pwalletMain->nLastMultiSendHeight)) {
UniValue obj(UniValue::VOBJ);
obj.push_back(Pair("error", "MultiSend activated but writing settings to DB failed"));
UniValue arr(UniValue::VARR);
arr.push_back(obj);
arr.push_back(printMultiSend());
return arr;
} else
return printMultiSend();
}
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Unable to activate MultiSend, check MultiSend vector");
} else if (strCommand == "enablemasternode" || strCommand == "activatemasternode") {
if (pwalletMain->vMultiSend.size() < 1)
throw JSONRPCError(RPC_INVALID_REQUEST, "Unable to activate MultiSend, check MultiSend vector");
if (CBitcoinAddress(pwalletMain->vMultiSend[0].first).IsValid()) {
pwalletMain->fMultiSendMasternodeReward = true;
if (!walletdb.WriteMSettings(pwalletMain->fMultiSendStake, true, pwalletMain->nLastMultiSendHeight)) {
UniValue obj(UniValue::VOBJ);
obj.push_back(Pair("error", "MultiSend activated but writing settings to DB failed"));
UniValue arr(UniValue::VARR);
arr.push_back(obj);
arr.push_back(printMultiSend());
return arr;
} else
return printMultiSend();
}
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Unable to activate MultiSend, check MultiSend vector");
} else if (strCommand == "disable" || strCommand == "deactivate") {
pwalletMain->setMultiSendDisabled();
if (!walletdb.WriteMSettings(false, false, pwalletMain->nLastMultiSendHeight))
throw JSONRPCError(RPC_DATABASE_ERROR, "MultiSend deactivated but writing settings to DB failed");
return printMultiSend();
} else if (strCommand == "enableall") {
if (!walletdb.EraseMSDisabledAddresses(pwalletMain->vDisabledAddresses))
return "failed to clear old vector from walletDB";
else {
pwalletMain->vDisabledAddresses.clear();
return printMultiSend();
}
}
}
if (params.size() == 2 && params[0].get_str() == "delete") {
int del = std::stoi(params[1].get_str().c_str());
if (!walletdb.EraseMultiSend(pwalletMain->vMultiSend))
throw JSONRPCError(RPC_DATABASE_ERROR, "failed to delete old MultiSend vector from database");
pwalletMain->vMultiSend.erase(pwalletMain->vMultiSend.begin() + del);
if (!walletdb.WriteMultiSend(pwalletMain->vMultiSend))
throw JSONRPCError(RPC_DATABASE_ERROR, "walletdb WriteMultiSend failed!");
return printMultiSend();
}
if (params.size() == 2 && params[0].get_str() == "disable") {
std::string disAddress = params[1].get_str();
if (!CBitcoinAddress(disAddress).IsValid())
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "address you want to disable is not valid");
else {
pwalletMain->vDisabledAddresses.push_back(disAddress);
if (!walletdb.EraseMSDisabledAddresses(pwalletMain->vDisabledAddresses))
throw JSONRPCError(RPC_DATABASE_ERROR, "disabled address from sending, but failed to clear old vector from walletDB");
if (!walletdb.WriteMSDisabledAddresses(pwalletMain->vDisabledAddresses))
throw JSONRPCError(RPC_DATABASE_ERROR, "disabled address from sending, but failed to store it to walletDB");
else
return printMultiSend();
}
}
//if no commands are used
if (fHelp || params.size() != 2)
throw std::runtime_error(
"multisend <command>\n"
"****************************************************************\n"
"WHAT IS MULTISEND?\n"
"MultiSend allows a user to automatically send a percent of their stake reward to as many addresses as you would like\n"
"The MultiSend transaction is sent when the staked coins mature (100 confirmations)\n"
"****************************************************************\n"
"TO CREATE OR ADD TO THE MULTISEND VECTOR:\n"
"multisend <Zenon Address> <percent>\n"
"This will add a new address to the MultiSend vector\n"
"Percent is a whole number 1 to 100.\n"
"****************************************************************\n"
"MULTISEND COMMANDS (usage: multisend <command>)\n"
" print - displays the current MultiSend vector \n"
" clear - deletes the current MultiSend vector \n"
" enablestake/activatestake - activates the current MultiSend vector to be activated on stake rewards\n"
" enablemasternode/activatemasternode - activates the current MultiSend vector to be activated on masternode rewards\n"
" disable/deactivate - disables the current MultiSend vector \n"
" delete <Address #> - deletes an address from the MultiSend vector \n"
" disable <address> - prevents a specific address from sending MultiSend transactions\n"
" enableall - enables all addresses to be eligible to send MultiSend transactions\n"
"****************************************************************\n");
//if the user is entering a new MultiSend item
std::string strAddress = params[0].get_str();
CBitcoinAddress address(strAddress);
if (!address.IsValid())
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid ZNN address");
if (std::stoi(params[1].get_str().c_str()) < 0)
throw JSONRPCError(RPC_INVALID_PARAMETER, "Invalid parameter, expected valid percentage");
if (pwalletMain->IsLocked())
throw JSONRPCError(RPC_WALLET_UNLOCK_NEEDED, "Error: Please enter the wallet passphrase with walletpassphrase first.");
unsigned int nPercent = (unsigned int) std::stoul(params[1].get_str().c_str());
LOCK(pwalletMain->cs_wallet);
{
fFileBacked = pwalletMain->fFileBacked;
//Error if 0 is entered
if (nPercent == 0) {
throw JSONRPCError(RPC_INVALID_PARAMETER, "Sending 0% of stake is not valid");
}
//MultiSend can only send 100% of your stake
if (nPercent + sumMultiSend() > 100)
throw JSONRPCError(RPC_INVALID_PARAMETER, "Failed to add to MultiSend vector, the sum of your MultiSend is greater than 100%");
for (unsigned int i = 0; i < pwalletMain->vMultiSend.size(); i++) {
if (pwalletMain->vMultiSend[i].first == strAddress)
throw JSONRPCError(RPC_INVALID_PARAMETER, "Failed to add to MultiSend vector, cannot use the same address twice");
}
if (fFileBacked)
walletdb.EraseMultiSend(pwalletMain->vMultiSend);
std::pair<std::string, int> newMultiSend;
newMultiSend.first = strAddress;
newMultiSend.second = nPercent;
pwalletMain->vMultiSend.push_back(newMultiSend);
if (fFileBacked) {
if (!walletdb.WriteMultiSend(pwalletMain->vMultiSend))
throw JSONRPCError(RPC_DATABASE_ERROR, "walletdb WriteMultiSend failed!");
}
}
return printMultiSend();
}
UniValue getzerocoinbalance(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() != 0)
throw std::runtime_error(
"getzerocoinbalance\n"
"\nReturn the wallet's total zZNN balance.\n" +
HelpRequiringPassphrase() + "\n"
"\nResult:\n"
"amount (numeric) Total zZNN balance.\n"
"\nExamples:\n" +
HelpExampleCli("getzerocoinbalance", "") + HelpExampleRpc("getzerocoinbalance", ""));
LOCK2(cs_main, pwalletMain->cs_wallet);
EnsureWalletIsUnlocked(true);
UniValue ret(UniValue::VOBJ);
ret.push_back(Pair("Total", ValueFromAmount(pwalletMain->GetZerocoinBalance(false))));
ret.push_back(Pair("Mature", ValueFromAmount(pwalletMain->GetZerocoinBalance(true))));
ret.push_back(Pair("Unconfirmed", ValueFromAmount(pwalletMain->GetUnconfirmedZerocoinBalance())));
ret.push_back(Pair("Immature", ValueFromAmount(pwalletMain->GetImmatureZerocoinBalance())));
return ret;
}
UniValue listmintedzerocoins(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() > 2)
throw std::runtime_error(
"listmintedzerocoins (fVerbose) (fMatureOnly)\n"
"\nList all zZNN mints in the wallet.\n" +
HelpRequiringPassphrase() + "\n"
"\nArguments:\n"
"1. fVerbose (boolean, optional, default=false) Output mints metadata.\n"
"2. fMatureOnly (boolean, optional, default=false) List only mature mints. (Set only if fVerbose is specified)\n"
"\nResult (with fVerbose=false):\n"
"[\n"
" \"xxx\" (string) Pubcoin in hex format.\n"
" ,...\n"
"]\n"
"\nResult (with fVerbose=true):\n"
"[\n"
" {\n"
" \"serial hash\": \"xxx\", (string) Mint serial hash in hex format.\n"
" \"version\": n, (numeric) Zerocoin version number.\n"
" \"zZNN ID\": \"xxx\", (string) Pubcoin in hex format.\n"
" \"denomination\": n, (numeric) Coin denomination.\n"
" \"mint height\": n (numeric) Height of the block containing this mint.\n"
" \"confirmations\": n (numeric) Number of confirmations.\n"
" \"hash stake\": \"xxx\", (string) Mint serialstake hash in hex format.\n"
" }\n"
" ,..."
"]\n"
"\nExamples:\n" +
HelpExampleCli("listmintedzerocoins", "") + HelpExampleRpc("listmintedzerocoins", "") +
HelpExampleCli("listmintedzerocoins", "true") + HelpExampleRpc("listmintedzerocoins", "true") +
HelpExampleCli("listmintedzerocoins", "true true") + HelpExampleRpc("listmintedzerocoins", "true, true"));
bool fVerbose = (params.size() > 0) ? params[0].get_bool() : false;
bool fMatureOnly = (params.size() > 1) ? params[1].get_bool() : false;
LOCK2(cs_main, pwalletMain->cs_wallet);
EnsureWalletIsUnlocked(true);
CWalletDB walletdb(pwalletMain->strWalletFile);
std::set<CMintMeta> setMints = pwalletMain->zznnTracker->ListMints(true, fMatureOnly, true);
int nBestHeight = chainActive.Height();
UniValue jsonList(UniValue::VARR);
if (fVerbose) {
for (auto m : setMints) {
// Construct mint object
UniValue objMint(UniValue::VOBJ);
objMint.push_back(Pair("serial hash", m.hashSerial.GetHex())); // Serial hash
objMint.push_back(Pair("version", m.nVersion)); // Zerocoin version
objMint.push_back(Pair("zZNN ID", m.hashPubcoin.GetHex())); // PubCoin
int denom = libzerocoin::ZerocoinDenominationToInt(m.denom);
objMint.push_back(Pair("denomination", denom)); // Denomination
objMint.push_back(Pair("mint height", m.nHeight)); // Mint Height
int nConfirmations = (m.nHeight && nBestHeight > m.nHeight) ? nBestHeight - m.nHeight : 0;
objMint.push_back(Pair("confirmations", nConfirmations)); // Confirmations
// hashStake
if (m.hashStake == 0) {
CZerocoinMint mint;
if (pwalletMain->GetMint(m.hashSerial, mint)) {
uint256 hashStake = mint.GetSerialNumber().getuint256();
hashStake = Hash(hashStake.begin(), hashStake.end());
m.hashStake = hashStake;
pwalletMain->zznnTracker->UpdateState(m);
}
}
objMint.push_back(Pair("hash stake", m.hashStake.GetHex())); // Confirmations
// Push back mint object
jsonList.push_back(objMint);
}
} else {
for (const CMintMeta& m : setMints)
// Push back PubCoin
jsonList.push_back(m.hashPubcoin.GetHex());
}
return jsonList;
}
UniValue listzerocoinamounts(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() != 0)
throw std::runtime_error(
"listzerocoinamounts\n"
"\nGet information about your zerocoin amounts.\n" +
HelpRequiringPassphrase() + "\n"
"\nResult:\n"
"[\n"
" {\n"
" \"denomination\": n, (numeric) Denomination Value.\n"
" \"mints\": n (numeric) Number of mints.\n"
" }\n"
" ,..."
"]\n"
"\nExamples:\n" +
HelpExampleCli("listzerocoinamounts", "") + HelpExampleRpc("listzerocoinamounts", ""));
LOCK2(cs_main, pwalletMain->cs_wallet);
EnsureWalletIsUnlocked(true);
CWalletDB walletdb(pwalletMain->strWalletFile);
std::set<CMintMeta> setMints = pwalletMain->zznnTracker->ListMints(true, true, true);
std::map<libzerocoin::CoinDenomination, CAmount> spread;
for (const auto& denom : libzerocoin::zerocoinDenomList)
spread.insert(std::pair<libzerocoin::CoinDenomination, CAmount>(denom, 0));
for (auto& meta : setMints) spread.at(meta.denom)++;
UniValue ret(UniValue::VARR);
for (const auto& m : libzerocoin::zerocoinDenomList) {
UniValue val(UniValue::VOBJ);
val.push_back(Pair("denomination", libzerocoin::ZerocoinDenominationToInt(m)));
val.push_back(Pair("mints", (int64_t)spread.at(m)));
ret.push_back(val);
}
return ret;
}
UniValue listspentzerocoins(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() != 0)
throw std::runtime_error(
"listspentzerocoins\n"
"\nList all the spent zZNN mints in the wallet.\n" +
HelpRequiringPassphrase() + "\n"
"\nResult:\n"
"[\n"
" \"xxx\" (string) Pubcoin in hex format.\n"
" ,...\n"
"]\n"
"\nExamples:\n" +
HelpExampleCli("listspentzerocoins", "") + HelpExampleRpc("listspentzerocoins", ""));
LOCK2(cs_main, pwalletMain->cs_wallet);
EnsureWalletIsUnlocked(true);
CWalletDB walletdb(pwalletMain->strWalletFile);
std::list<CBigNum> listPubCoin = walletdb.ListSpentCoinsSerial();
UniValue jsonList(UniValue::VARR);
for (const CBigNum& pubCoinItem : listPubCoin) {
jsonList.push_back(pubCoinItem.GetHex());
}
return jsonList;
}
UniValue mintzerocoin(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() < 1 || params.size() > 2)
throw std::runtime_error(
"mintzerocoin amount ( utxos )\n"
"\nMint the specified zZNN amount\n" +
HelpRequiringPassphrase() + "\n"
"\nArguments:\n"
"1. amount (numeric, required) Enter an amount of Znn to convert to zZNN\n"
"2. utxos (string, optional) A json array of objects.\n"
" Each object needs the txid (string) and vout (numeric)\n"
" [\n"
" {\n"
" \"txid\":\"txid\", (string) The transaction id\n"
" \"vout\": n (numeric) The output number\n"
" }\n"
" ,...\n"
" ]\n"
"\nResult:\n"
"[\n"
" {\n"
" \"txid\": \"xxx\", (string) Transaction ID.\n"
" \"value\": amount, (numeric) Minted amount.\n"
" \"pubcoin\": \"xxx\", (string) Pubcoin in hex format.\n"
" \"randomness\": \"xxx\", (string) Hex encoded randomness.\n"
" \"serial\": \"xxx\", (string) Serial in hex format.\n"
" \"time\": nnn (numeric) Time to mint this transaction.\n"
" }\n"
" ,...\n"
"]\n"
"\nExamples:\n"
"\nMint 50 from anywhere\n" +
HelpExampleCli("mintzerocoin", "50") +
"\nMint 13 from a specific output\n" +
HelpExampleCli("mintzerocoin", "13 \"[{\\\"txid\\\":\\\"a08e6907dbbd3d809776dbfc5d82e371b764ed838b5655e72f463568df1aadf0\\\",\\\"vout\\\":1}]\"") +
"\nAs a json rpc call\n" +
HelpExampleRpc("mintzerocoin", "13, \"[{\\\"txid\\\":\\\"a08e6907dbbd3d809776dbfc5d82e371b764ed838b5655e72f463568df1aadf0\\\",\\\"vout\\\":1}]\""));
if (Params().NetworkID() != CBaseChainParams::REGTEST)
throw JSONRPCError(RPC_WALLET_ERROR, "zZNN minting is DISABLED");
LOCK2(cs_main, pwalletMain->cs_wallet);
if (params.size() == 1)
{
RPCTypeCheck(params, boost::assign::list_of(UniValue::VNUM));
} else
{
RPCTypeCheck(params, boost::assign::list_of(UniValue::VNUM)(UniValue::VARR));
}
int64_t nTime = GetTimeMillis();
if(GetAdjustedTime() > GetSporkValue(SPORK_16_ZEROCOIN_MAINTENANCE_MODE))
throw JSONRPCError(RPC_WALLET_ERROR, "zZNN is currently disabled due to maintenance.");
EnsureWalletIsUnlocked(true);
CAmount nAmount = params[0].get_int() * COIN;
CWalletTx wtx;
std::vector<CDeterministicMint> vDMints;
std::string strError;
std::vector<COutPoint> vOutpts;
if (params.size() == 2)
{
UniValue outputs = params[1].get_array();
for (unsigned int idx = 0; idx < outputs.size(); idx++) {
const UniValue& output = outputs[idx];
if (!output.isObject())
throw JSONRPCError(RPC_INVALID_PARAMETER, "Invalid parameter, expected object");
const UniValue& o = output.get_obj();
RPCTypeCheckObj(o, boost::assign::map_list_of("txid", UniValue::VSTR)("vout", UniValue::VNUM));
std::string txid = find_value(o, "txid").get_str();
if (!IsHex(txid))
throw JSONRPCError(RPC_INVALID_PARAMETER, "Invalid parameter, expected hex txid");
int nOutput = find_value(o, "vout").get_int();
if (nOutput < 0)
throw JSONRPCError(RPC_INVALID_PARAMETER, "Invalid parameter, vout must be positive");
COutPoint outpt(uint256(txid), nOutput);
vOutpts.push_back(outpt);
}
strError = pwalletMain->MintZerocoinFromOutPoint(nAmount, wtx, vDMints, vOutpts);
} else
{
strError = pwalletMain->MintZerocoin(nAmount, wtx, vDMints);
}
if (strError != "")
throw JSONRPCError(RPC_WALLET_ERROR, strError);
UniValue arrMints(UniValue::VARR);
for (CDeterministicMint dMint : vDMints) {
UniValue m(UniValue::VOBJ);
m.push_back(Pair("txid", wtx.GetHash().ToString()));
m.push_back(Pair("value", ValueFromAmount(libzerocoin::ZerocoinDenominationToAmount(dMint.GetDenomination()))));
m.push_back(Pair("pubcoinhash", dMint.GetPubcoinHash().GetHex()));
m.push_back(Pair("serialhash", dMint.GetSerialHash().GetHex()));
m.push_back(Pair("seedhash", dMint.GetSeedHash().GetHex()));
m.push_back(Pair("count", (int64_t)dMint.GetCount()));
m.push_back(Pair("time", GetTimeMillis() - nTime));
arrMints.push_back(m);
}
return arrMints;
}
UniValue spendzerocoin(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() > 4 || params.size() < 3)
throw std::runtime_error(
"spendzerocoin amount mintchange minimizechange ( \"address\" )\n"
"\nSpend zZNN to a ZNN address.\n" +
HelpRequiringPassphrase() + "\n"
"\nArguments:\n"
"1. amount (numeric, required) Amount to spend.\n"
"2. mintchange (boolean, required) Re-mint any leftover change.\n"
"3. minimizechange (boolean, required) Try to minimize the returning change [false]\n"
"4. \"address\" (string, optional, default=change) Send to specified address or to a new change address.\n"
" If there is change then an address is required\n"
"5. ispublicspend (boolean, optional, default=true) create a public zc spend instead of use the old code (only for regression tests)"
"\nResult:\n"
"{\n"
" \"txid\": \"xxx\", (string) Transaction hash.\n"
" \"bytes\": nnn, (numeric) Transaction size.\n"
" \"fee\": amount, (numeric) Transaction fee (if any).\n"
" \"spends\": [ (array) JSON array of input objects.\n"
" {\n"
" \"denomination\": nnn, (numeric) Denomination value.\n"
" \"pubcoin\": \"xxx\", (string) Pubcoin in hex format.\n"
" \"serial\": \"xxx\", (string) Serial number in hex format.\n"
" \"acc_checksum\": \"xxx\", (string) Accumulator checksum in hex format.\n"
" }\n"
" ,...\n"
" ],\n"
" \"outputs\": [ (array) JSON array of output objects.\n"
" {\n"
" \"value\": amount, (numeric) Value in ZNN.\n"
" \"address\": \"xxx\" (string) ZNN address or \"zerocoinmint\" for reminted change.\n"
" }\n"
" ,...\n"
" ]\n"
"}\n"
"\nExamples\n" +
HelpExampleCli("spendzerocoin", "5000 false true 100 \"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\"") +
HelpExampleRpc("spendzerocoin", "5000 false true 100 \"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\""));
LOCK2(cs_main, pwalletMain->cs_wallet);
if(GetAdjustedTime() > GetSporkValue(SPORK_16_ZEROCOIN_MAINTENANCE_MODE))
throw JSONRPCError(RPC_WALLET_ERROR, "zZNN is currently disabled due to maintenance.");
EnsureWalletIsUnlocked();
CAmount nAmount = AmountFromValue(params[0]); // Spending amount
bool fMintChange = params[1].get_bool(); // Mint change to zZNN
if (fMintChange && Params().NetworkID() != CBaseChainParams::REGTEST)
throw JSONRPCError(RPC_WALLET_ERROR, "zZNN minting is DISABLED, cannot mint change");
bool fMinimizeChange = params[2].get_bool(); // Minimize change
std::string address_str = params.size() > 3 ? params[3].get_str() : "";
bool ispublicspend = params.size() > 4 ? params[3].get_bool() : true;
std::vector<CZerocoinMint> vMintsSelected;
if (!ispublicspend && Params().NetworkID() != CBaseChainParams::REGTEST) {
throw JSONRPCError(RPC_WALLET_ERROR, "zZNN old spend only available in regtest for tests purposes");
}
return DoZznnSpend(nAmount, fMintChange, fMinimizeChange, vMintsSelected, address_str, ispublicspend);
}
UniValue spendzerocoinmints(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() < 1 || params.size() > 2)
throw std::runtime_error(
"spendzerocoinmints mints_list (\"address\") \n"
"\nSpend zZNN mints to a ZNN address.\n" +
HelpRequiringPassphrase() + "\n"
"\nArguments:\n"
"1. mints_list (string, required) A json array of zerocoin mints serial hashes\n"
"2. \"address\" (string, optional, default=change) Send to specified address or to a new change address.\n"
"\nResult:\n"
"{\n"
" \"txid\": \"xxx\", (string) Transaction hash.\n"
" \"bytes\": nnn, (numeric) Transaction size.\n"
" \"fee\": amount, (numeric) Transaction fee (if any).\n"
" \"spends\": [ (array) JSON array of input objects.\n"
" {\n"
" \"denomination\": nnn, (numeric) Denomination value.\n"
" \"pubcoin\": \"xxx\", (string) Pubcoin in hex format.\n"
" \"serial\": \"xxx\", (string) Serial number in hex format.\n"
" \"acc_checksum\": \"xxx\", (string) Accumulator checksum in hex format.\n"
" }\n"
" ,...\n"
" ],\n"
" \"outputs\": [ (array) JSON array of output objects.\n"
" {\n"
" \"value\": amount, (numeric) Value in ZNN.\n"
" \"address\": \"xxx\" (string) ZNN address or \"zerocoinmint\" for reminted change.\n"
" }\n"
" ,...\n"
" ]\n"
"}\n"
"\nExamples\n" +
HelpExampleCli("spendzerocoinmints", "'[\"0d8c16eee7737e3cc1e4e70dc006634182b175e039700931283b202715a0818f\", \"dfe585659e265e6a509d93effb906d3d2a0ac2fe3464b2c3b6d71a3ef34c8ad7\"]' \"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\"") +
HelpExampleRpc("spendzerocoinmints", "[\"0d8c16eee7737e3cc1e4e70dc006634182b175e039700931283b202715a0818f\", \"dfe585659e265e6a509d93effb906d3d2a0ac2fe3464b2c3b6d71a3ef34c8ad7\"], \"DMJRSsuU9zfyrvxVaAEFQqK4MxZg6vgeS6\""));
LOCK2(cs_main, pwalletMain->cs_wallet);
if(GetAdjustedTime() > GetSporkValue(SPORK_16_ZEROCOIN_MAINTENANCE_MODE))
throw JSONRPCError(RPC_WALLET_ERROR, "zZNN is currently disabled due to maintenance.");
std::string address_str = "";
if (params.size() > 1) {
RPCTypeCheck(params, boost::assign::list_of(UniValue::VARR)(UniValue::VSTR));
address_str = params[1].get_str();
} else
RPCTypeCheck(params, boost::assign::list_of(UniValue::VARR));
EnsureWalletIsUnlocked();
UniValue arrMints = params[0].get_array();
if (arrMints.size() == 0)
throw JSONRPCError(RPC_WALLET_ERROR, "No zerocoin selected");
if (arrMints.size() > 7)
throw JSONRPCError(RPC_WALLET_ERROR, "Too many mints included. Maximum zerocoins per spend: 7");
CAmount nAmount(0); // Spending amount
// fetch mints and update nAmount
std::vector<CZerocoinMint> vMintsSelected;
for(unsigned int i=0; i < arrMints.size(); i++) {
CZerocoinMint mint;
std::string serialHash = arrMints[i].get_str();
if (!IsHex(serialHash))
throw JSONRPCError(RPC_INVALID_PARAMETER, "Invalid parameter, expected hex serial hash");
uint256 hashSerial(serialHash);
if (!pwalletMain->GetMint(hashSerial, mint)) {
std::string strErr = "Failed to fetch mint associated with serial hash " + serialHash;
throw JSONRPCError(RPC_WALLET_ERROR, strErr);
}
vMintsSelected.emplace_back(mint);
nAmount += mint.GetDenominationAsAmount();
}
CBitcoinAddress address = CBitcoinAddress(); // Optional sending address. Dummy initialization here.
if (params.size() == 4) {
// Destination address was supplied as params[4]. Optional parameters MUST be at the end
// to avoid type confusion from the JSON interpreter
address = CBitcoinAddress(params[3].get_str());
if(!address.IsValid())
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid ZNN address");
}
return DoZznnSpend(nAmount, false, true, vMintsSelected, address_str);
}
extern UniValue DoZznnSpend(const CAmount nAmount, bool fMintChange, bool fMinimizeChange, std::vector<CZerocoinMint>& vMintsSelected, std::string address_str, bool ispublicspend)
{
// zerocoin MINT is disabled. fMintChange should be false here. Double check
if (fMintChange && Params().NetworkID() != CBaseChainParams::REGTEST)
throw JSONRPCError(RPC_WALLET_ERROR, "zZNN minting is DISABLED, cannot mint change");
int64_t nTimeStart = GetTimeMillis();
CBitcoinAddress address = CBitcoinAddress(); // Optional sending address. Dummy initialization here.
CWalletTx wtx;
CZerocoinSpendReceipt receipt;
bool fSuccess;
std::list<std::pair<CBitcoinAddress*, CAmount>> outputs;
if(address_str != "") { // Spend to supplied destination address
address = CBitcoinAddress(address_str);
if(!address.IsValid())
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid ZNN address");
outputs.push_back(std::pair<CBitcoinAddress*, CAmount>(&address, nAmount));
fSuccess = pwalletMain->SpendZerocoin(nAmount, wtx, receipt, vMintsSelected, fMintChange, fMinimizeChange, outputs);
} else // Spend to newly generated local address
fSuccess = pwalletMain->SpendZerocoin(nAmount, wtx, receipt, vMintsSelected, fMintChange, fMinimizeChange, outputs);
if (!fSuccess)
throw JSONRPCError(RPC_WALLET_ERROR, receipt.GetStatusMessage());
CAmount nValueIn = 0;
UniValue arrSpends(UniValue::VARR);
for (CZerocoinSpend spend : receipt.GetSpends()) {
UniValue obj(UniValue::VOBJ);
obj.push_back(Pair("denomination", spend.GetDenomination()));
obj.push_back(Pair("pubcoin", spend.GetPubCoin().GetHex()));
obj.push_back(Pair("serial", spend.GetSerial().GetHex()));
uint32_t nChecksum = spend.GetAccumulatorChecksum();
obj.push_back(Pair("acc_checksum", HexStr(BEGIN(nChecksum), END(nChecksum))));
arrSpends.push_back(obj);
nValueIn += libzerocoin::ZerocoinDenominationToAmount(spend.GetDenomination());
}
CAmount nValueOut = 0;
UniValue vout(UniValue::VARR);
for (unsigned int i = 0; i < wtx.vout.size(); i++) {
const CTxOut& txout = wtx.vout[i];
UniValue out(UniValue::VOBJ);
out.push_back(Pair("value", ValueFromAmount(txout.nValue)));
nValueOut += txout.nValue;
CTxDestination dest;
if(txout.IsZerocoinMint())
out.push_back(Pair("address", "zerocoinmint"));
else if(ExtractDestination(txout.scriptPubKey, dest))
out.push_back(Pair("address", CBitcoinAddress(dest).ToString()));
vout.push_back(out);
}
//construct JSON to return
UniValue ret(UniValue::VOBJ);
ret.push_back(Pair("txid", wtx.GetHash().ToString()));
ret.push_back(Pair("bytes", (int64_t)wtx.GetSerializeSize(SER_NETWORK, CTransaction::CURRENT_VERSION)));
ret.push_back(Pair("fee", ValueFromAmount(nValueIn - nValueOut)));
ret.push_back(Pair("duration_millis", (GetTimeMillis() - nTimeStart)));
ret.push_back(Pair("spends", arrSpends));
ret.push_back(Pair("outputs", vout));
return ret;
}
UniValue resetmintzerocoin(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() > 1)
throw std::runtime_error(
"resetmintzerocoin ( fullscan )\n"
"\nScan the blockchain for all of the zerocoins that are held in the wallet.dat.\n"
"Update any meta-data that is incorrect. Archive any mints that are not able to be found.\n" +
HelpRequiringPassphrase() + "\n"
"\nArguments:\n"
"1. fullscan (boolean, optional) Rescan each block of the blockchain.\n"
" WARNING - may take 30+ minutes!\n"
"\nResult:\n"
"{\n"
" \"updated\": [ (array) JSON array of updated mints.\n"
" \"xxx\" (string) Hex encoded mint.\n"
" ,...\n"
" ],\n"
" \"archived\": [ (array) JSON array of archived mints.\n"
" \"xxx\" (string) Hex encoded mint.\n"
" ,...\n"
" ]\n"
"}\n"
"\nExamples:\n" +
HelpExampleCli("resetmintzerocoin", "true") + HelpExampleRpc("resetmintzerocoin", "true"));
LOCK2(cs_main, pwalletMain->cs_wallet);
CWalletDB walletdb(pwalletMain->strWalletFile);
CzZNNTracker* zznnTracker = pwalletMain->zznnTracker.get();
std::set<CMintMeta> setMints = zznnTracker->ListMints(false, false, true);
std::vector<CMintMeta> vMintsToFind(setMints.begin(), setMints.end());
std::vector<CMintMeta> vMintsMissing;
std::vector<CMintMeta> vMintsToUpdate;
// search all of our available data for these mints
FindMints(vMintsToFind, vMintsToUpdate, vMintsMissing);
// update the meta data of mints that were marked for updating
UniValue arrUpdated(UniValue::VARR);
for (CMintMeta meta : vMintsToUpdate) {
zznnTracker->UpdateState(meta);
arrUpdated.push_back(meta.hashPubcoin.GetHex());
}
// delete any mints that were unable to be located on the blockchain
UniValue arrDeleted(UniValue::VARR);
for (CMintMeta mint : vMintsMissing) {
zznnTracker->Archive(mint);
arrDeleted.push_back(mint.hashPubcoin.GetHex());
}
UniValue obj(UniValue::VOBJ);
obj.push_back(Pair("updated", arrUpdated));
obj.push_back(Pair("archived", arrDeleted));
return obj;
}
UniValue resetspentzerocoin(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() != 0)
throw std::runtime_error(
"resetspentzerocoin\n"
"\nScan the blockchain for all of the zerocoins that are held in the wallet.dat.\n"
"Reset mints that are considered spent that did not make it into the blockchain.\n"
"\nResult:\n"
"{\n"
" \"restored\": [ (array) JSON array of restored objects.\n"
" {\n"
" \"serial\": \"xxx\" (string) Serial in hex format.\n"
" }\n"
" ,...\n"
" ]\n"
"}\n"
"\nExamples:\n" +
HelpExampleCli("resetspentzerocoin", "") + HelpExampleRpc("resetspentzerocoin", ""));
LOCK2(cs_main, pwalletMain->cs_wallet);
CWalletDB walletdb(pwalletMain->strWalletFile);
CzZNNTracker* zznnTracker = pwalletMain->zznnTracker.get();
std::set<CMintMeta> setMints = zznnTracker->ListMints(false, false, false);
std::list<CZerocoinSpend> listSpends = walletdb.ListSpentCoins();
std::list<CZerocoinSpend> listUnconfirmedSpends;
for (CZerocoinSpend spend : listSpends) {
CTransaction tx;
uint256 hashBlock = 0;
if (!GetTransaction(spend.GetTxHash(), tx, hashBlock)) {
listUnconfirmedSpends.push_back(spend);
continue;
}
//no confirmations
if (hashBlock == 0)
listUnconfirmedSpends.push_back(spend);
}
UniValue objRet(UniValue::VOBJ);
UniValue arrRestored(UniValue::VARR);
for (CZerocoinSpend spend : listUnconfirmedSpends) {
for (auto& meta : setMints) {
if (meta.hashSerial == GetSerialHash(spend.GetSerial())) {
zznnTracker->SetPubcoinNotUsed(meta.hashPubcoin);
walletdb.EraseZerocoinSpendSerialEntry(spend.GetSerial());
RemoveSerialFromDB(spend.GetSerial());
UniValue obj(UniValue::VOBJ);
obj.push_back(Pair("serial", spend.GetSerial().GetHex()));
arrRestored.push_back(obj);
continue;
}
}
}
objRet.push_back(Pair("restored", arrRestored));
return objRet;
}
UniValue getarchivedzerocoin(const UniValue& params, bool fHelp)
{
if(fHelp || params.size() != 0)
throw std::runtime_error(
"getarchivedzerocoin\n"
"\nDisplay zerocoins that were archived because they were believed to be orphans.\n"
"Provides enough information to recover mint if it was incorrectly archived.\n" +
HelpRequiringPassphrase() + "\n"
"\nResult:\n"
"[\n"
" {\n"
" \"txid\": \"xxx\", (string) Transaction ID for archived mint.\n"
" \"denomination\": amount, (numeric) Denomination value.\n"
" \"serial\": \"xxx\", (string) Serial number in hex format.\n"
" \"randomness\": \"xxx\", (string) Hex encoded randomness.\n"
" \"pubcoin\": \"xxx\" (string) Pubcoin in hex format.\n"
" }\n"
" ,...\n"
"]\n"
"\nExamples:\n" +
HelpExampleCli("getarchivedzerocoin", "") + HelpExampleRpc("getarchivedzerocoin", ""));
LOCK2(cs_main, pwalletMain->cs_wallet);
EnsureWalletIsUnlocked();
CWalletDB walletdb(pwalletMain->strWalletFile);
std::list<CZerocoinMint> listMints = walletdb.ListArchivedZerocoins();
std::list<CDeterministicMint> listDMints = walletdb.ListArchivedDeterministicMints();
UniValue arrRet(UniValue::VARR);
for (const CZerocoinMint& mint : listMints) {
UniValue objMint(UniValue::VOBJ);
objMint.push_back(Pair("txid", mint.GetTxHash().GetHex()));
objMint.push_back(Pair("denomination", ValueFromAmount(mint.GetDenominationAsAmount())));
objMint.push_back(Pair("serial", mint.GetSerialNumber().GetHex()));
objMint.push_back(Pair("randomness", mint.GetRandomness().GetHex()));
objMint.push_back(Pair("pubcoin", mint.GetValue().GetHex()));
arrRet.push_back(objMint);
}
for (const CDeterministicMint& dMint : listDMints) {
UniValue objDMint(UniValue::VOBJ);
objDMint.push_back(Pair("txid", dMint.GetTxHash().GetHex()));
objDMint.push_back(Pair("denomination", ValueFromAmount(libzerocoin::ZerocoinDenominationToAmount(dMint.GetDenomination()))));
objDMint.push_back(Pair("serialhash", dMint.GetSerialHash().GetHex()));
objDMint.push_back(Pair("pubcoinhash", dMint.GetPubcoinHash().GetHex()));
objDMint.push_back(Pair("seedhash", dMint.GetSeedHash().GetHex()));
objDMint.push_back(Pair("count", (int64_t)dMint.GetCount()));
arrRet.push_back(objDMint);
}
return arrRet;
}
UniValue exportzerocoins(const UniValue& params, bool fHelp)
{
if(fHelp || params.empty() || params.size() > 2)
throw std::runtime_error(
"exportzerocoins include_spent ( denomination )\n"
"\nExports zerocoin mints that are held by this wallet.dat\n" +
HelpRequiringPassphrase() + "\n"
"\nArguments:\n"
"1. \"include_spent\" (bool, required) Include mints that have already been spent\n"
"2. \"denomination\" (integer, optional) Export a specific denomination of zZNN\n"
"\nResult:\n"
"[ (array of json object)\n"
" {\n"
" \"id\": \"serial hash\", (string) the mint's zZNN serial hash \n"
" \"d\": n, (numeric) the mint's zerocoin denomination \n"
" \"p\": \"pubcoin\", (string) The public coin\n"
" \"s\": \"serial\", (string) The secret serial number\n"
" \"r\": \"random\", (string) The secret random number\n"
" \"t\": \"txid\", (string) The txid that the coin was minted in\n"
" \"h\": n, (numeric) The height the tx was added to the blockchain\n"
" \"u\": used, (boolean) Whether the mint has been spent\n"
" \"v\": version, (numeric) The version of the zZNN\n"
" \"k\": \"privkey\" (string) The zZNN private key (V2+ zZNN only)\n"
" }\n"
" ,...\n"
"]\n"
"\nExamples:\n" +
HelpExampleCli("exportzerocoins", "false 5") + HelpExampleRpc("exportzerocoins", "false 5"));
LOCK2(cs_main, pwalletMain->cs_wallet);
EnsureWalletIsUnlocked();
CWalletDB walletdb(pwalletMain->strWalletFile);
bool fIncludeSpent = params[0].get_bool();
libzerocoin::CoinDenomination denomination = libzerocoin::ZQ_ERROR;
if (params.size() == 2)
denomination = libzerocoin::IntToZerocoinDenomination(params[1].get_int());
CzZNNTracker* zznnTracker = pwalletMain->zznnTracker.get();
std::set<CMintMeta> setMints = zznnTracker->ListMints(!fIncludeSpent, false, false);
UniValue jsonList(UniValue::VARR);
for (const CMintMeta& meta : setMints) {
if (denomination != libzerocoin::ZQ_ERROR && denomination != meta.denom)
continue;
CZerocoinMint mint;
if (!pwalletMain->GetMint(meta.hashSerial, mint))
continue;
UniValue objMint(UniValue::VOBJ);
objMint.push_back(Pair("id", meta.hashSerial.GetHex()));
objMint.push_back(Pair("d", mint.GetDenomination()));
objMint.push_back(Pair("p", mint.GetValue().GetHex()));
objMint.push_back(Pair("s", mint.GetSerialNumber().GetHex()));
objMint.push_back(Pair("r", mint.GetRandomness().GetHex()));
objMint.push_back(Pair("t", mint.GetTxHash().GetHex()));
objMint.push_back(Pair("h", mint.GetHeight()));
objMint.push_back(Pair("u", mint.IsUsed()));
objMint.push_back(Pair("v", mint.GetVersion()));
if (mint.GetVersion() >= 2) {
CKey key;
key.SetPrivKey(mint.GetPrivKey(), true);
CBitcoinSecret cBitcoinSecret;
cBitcoinSecret.SetKey(key);
objMint.push_back(Pair("k", cBitcoinSecret.ToString()));
}
jsonList.push_back(objMint);
}
return jsonList;
}
UniValue importzerocoins(const UniValue& params, bool fHelp)
{
if(fHelp || params.size() == 0)
throw std::runtime_error(
"importzerocoins importdata \n"
"\n[{\"d\":denomination,\"p\":\"pubcoin_hex\",\"s\":\"serial_hex\",\"r\":\"randomness_hex\",\"t\":\"txid\",\"h\":height, \"u\":used},{\"d\":...}]\n"
"\nImport zerocoin mints.\n"
"Adds raw zerocoin mints to the wallet.dat\n"
"Note it is recommended to use the json export created from the exportzerocoins RPC call\n" +
HelpRequiringPassphrase() + "\n"
"\nArguments:\n"
"1. \"importdata\" (string, required) A json array of json objects containing zerocoin mints\n"
"\nResult:\n"
"{\n"
" \"added\": n, (numeric) The quantity of zerocoin mints that were added\n"
" \"value\": amount (numeric) The total zZNN value of zerocoin mints that were added\n"
"}\n"
"\nExamples\n" +
HelpExampleCli("importzerocoins", "\'[{\"d\":100,\"p\":\"mypubcoin\",\"s\":\"myserial\",\"r\":\"randomness_hex\",\"t\":\"mytxid\",\"h\":104923, \"u\":false},{\"d\":5,...}]\'") +
HelpExampleRpc("importzerocoins", "[{\"d\":100,\"p\":\"mypubcoin\",\"s\":\"myserial\",\"r\":\"randomness_hex\",\"t\":\"mytxid\",\"h\":104923, \"u\":false},{\"d\":5,...}]"));
LOCK2(cs_main, pwalletMain->cs_wallet);
EnsureWalletIsUnlocked();
RPCTypeCheck(params, boost::assign::list_of(UniValue::VARR)(UniValue::VOBJ));
UniValue arrMints = params[0].get_array();
CWalletDB walletdb(pwalletMain->strWalletFile);
int count = 0;
CAmount nValue = 0;
for (unsigned int idx = 0; idx < arrMints.size(); idx++) {
const UniValue &val = arrMints[idx];
const UniValue &o = val.get_obj();
const UniValue& vDenom = find_value(o, "d");
if (!vDenom.isNum())
throw JSONRPCError(RPC_INVALID_PARAMETER, "Invalid parameter, missing d key");
int d = vDenom.get_int();
if (d < 0)
throw JSONRPCError(RPC_INVALID_PARAMETER, "Invalid parameter, d must be positive");
libzerocoin::CoinDenomination denom = libzerocoin::IntToZerocoinDenomination(d);
CBigNum bnValue = 0;
bnValue.SetHex(find_value(o, "p").get_str());
CBigNum bnSerial = 0;
bnSerial.SetHex(find_value(o, "s").get_str());
CBigNum bnRandom = 0;
bnRandom.SetHex(find_value(o, "r").get_str());
uint256 txid(find_value(o, "t").get_str());
int nHeight = find_value(o, "h").get_int();
if (nHeight < 0)
throw JSONRPCError(RPC_INVALID_PARAMETER, "Invalid parameter, h must be positive");
bool fUsed = find_value(o, "u").get_bool();
//Assume coin is version 1 unless it has the version actually set
uint8_t nVersion = 1;
const UniValue& vVersion = find_value(o, "v");
if (vVersion.isNum())
nVersion = static_cast<uint8_t>(vVersion.get_int());
//Set the privkey if applicable
CPrivKey privkey;
if (nVersion >= libzerocoin::PrivateCoin::PUBKEY_VERSION) {
std::string strPrivkey = find_value(o, "k").get_str();
CBitcoinSecret vchSecret;
bool fGood = vchSecret.SetString(strPrivkey);
CKey key = vchSecret.GetKey();
if (!key.IsValid() && fGood)
return JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "privkey is not valid");
privkey = key.GetPrivKey();
}
CZerocoinMint mint(denom, bnValue, bnRandom, bnSerial, fUsed, nVersion, &privkey);
mint.SetTxHash(txid);
mint.SetHeight(nHeight);
pwalletMain->zznnTracker->Add(mint, true);
count++;
nValue += libzerocoin::ZerocoinDenominationToAmount(denom);
}
UniValue ret(UniValue::VOBJ);
ret.push_back(Pair("added", count));
ret.push_back(Pair("value", ValueFromAmount(nValue)));
return ret;
}
UniValue reconsiderzerocoins(const UniValue& params, bool fHelp)
{
if(fHelp || !params.empty())
throw std::runtime_error(
"reconsiderzerocoins\n"
"\nCheck archived zZNN list to see if any mints were added to the blockchain.\n" +
HelpRequiringPassphrase() + "\n"
"\nResult:\n"
"[\n"
" {\n"
" \"txid\" : \"xxx\", (string) the mint's zerocoin denomination \n"
" \"denomination\" : amount, (numeric) the mint's zerocoin denomination\n"
" \"pubcoin\" : \"xxx\", (string) The mint's public identifier\n"
" \"height\" : n (numeric) The height the tx was added to the blockchain\n"
" }\n"
" ,...\n"
"]\n"
"\nExamples\n" +
HelpExampleCli("reconsiderzerocoins", "") + HelpExampleRpc("reconsiderzerocoins", ""));
LOCK2(cs_main, pwalletMain->cs_wallet);
EnsureWalletIsUnlocked(true);
std::list<CZerocoinMint> listMints;
std::list<CDeterministicMint> listDMints;
pwalletMain->ReconsiderZerocoins(listMints, listDMints);
UniValue arrRet(UniValue::VARR);
for (const CZerocoinMint& mint : listMints) {
UniValue objMint(UniValue::VOBJ);
objMint.push_back(Pair("txid", mint.GetTxHash().GetHex()));
objMint.push_back(Pair("denomination", ValueFromAmount(mint.GetDenominationAsAmount())));
objMint.push_back(Pair("pubcoin", mint.GetValue().GetHex()));
objMint.push_back(Pair("height", mint.GetHeight()));
arrRet.push_back(objMint);
}
for (const CDeterministicMint& dMint : listDMints) {
UniValue objMint(UniValue::VOBJ);
objMint.push_back(Pair("txid", dMint.GetTxHash().GetHex()));
objMint.push_back(Pair("denomination", FormatMoney(libzerocoin::ZerocoinDenominationToAmount(dMint.GetDenomination()))));
objMint.push_back(Pair("pubcoinhash", dMint.GetPubcoinHash().GetHex()));
objMint.push_back(Pair("height", dMint.GetHeight()));
arrRet.push_back(objMint);
}
return arrRet;
}
UniValue setzznnseed(const UniValue& params, bool fHelp)
{
if(fHelp || params.size() != 1)
throw std::runtime_error(
"setzznnseed \"seed\"\n"
"\nSet the wallet's deterministic zznn seed to a specific value.\n" +
HelpRequiringPassphrase() + "\n"
"\nArguments:\n"
"1. \"seed\" (string, required) The deterministic zznn seed.\n"
"\nResult\n"
"\"success\" : b, (boolean) Whether the seed was successfully set.\n"
"\nExamples\n" +
HelpExampleCli("setzznnseed", "63f793e7895dd30d99187b35fbfb314a5f91af0add9e0a4e5877036d1e392dd5") +
HelpExampleRpc("setzznnseed", "63f793e7895dd30d99187b35fbfb314a5f91af0add9e0a4e5877036d1e392dd5"));
EnsureWalletIsUnlocked();
uint256 seed;
seed.SetHex(params[0].get_str());
CzZNNWallet* zwallet = pwalletMain->getZWallet();
bool fSuccess = zwallet->SetMasterSeed(seed, true);
if (fSuccess)
zwallet->SyncWithChain();
UniValue ret(UniValue::VOBJ);
ret.push_back(Pair("success", fSuccess));
return ret;
}
UniValue getzznnseed(const UniValue& params, bool fHelp)
{
if(fHelp || !params.empty())
throw std::runtime_error(
"getzznnseed\n"
"\nCheck archived zZNN list to see if any mints were added to the blockchain.\n" +
HelpRequiringPassphrase() + "\n"
"\nResult\n"
"\"seed\" : s, (string) The deterministic zZNN seed.\n"
"\nExamples\n" +
HelpExampleCli("getzznnseed", "") + HelpExampleRpc("getzznnseed", ""));
EnsureWalletIsUnlocked();
CzZNNWallet* zwallet = pwalletMain->getZWallet();
uint256 seed = zwallet->GetMasterSeed();
UniValue ret(UniValue::VOBJ);
ret.push_back(Pair("seed", seed.GetHex()));
return ret;
}
UniValue generatemintlist(const UniValue& params, bool fHelp)
{
if(fHelp || params.size() != 2)
throw std::runtime_error(
"generatemintlist\n"
"\nShow mints that are derived from the deterministic zZNN seed.\n" +
HelpRequiringPassphrase() + "\n"
"\nArguments\n"
"1. \"count\" : n, (numeric) Which sequential zZNN to start with.\n"
"2. \"range\" : n, (numeric) How many zZNN to generate.\n"
"\nResult:\n"
"[\n"
" {\n"
" \"count\": n, (numeric) Deterministic Count.\n"
" \"value\": \"xxx\", (string) Hex encoded pubcoin value.\n"
" \"randomness\": \"xxx\", (string) Hex encoded randomness.\n"
" \"serial\": \"xxx\" (string) Hex encoded Serial.\n"
" }\n"
" ,...\n"
"]\n"
"\nExamples\n" +
HelpExampleCli("generatemintlist", "1, 100") + HelpExampleRpc("generatemintlist", "1, 100"));
EnsureWalletIsUnlocked();
int nCount = params[0].get_int();
int nRange = params[1].get_int();
CzZNNWallet* zwallet = pwalletMain->zwalletMain;
UniValue arrRet(UniValue::VARR);
for (int i = nCount; i < nCount + nRange; i++) {
libzerocoin::CoinDenomination denom = libzerocoin::CoinDenomination::ZQ_ONE;
libzerocoin::PrivateCoin coin(Params().Zerocoin_Params(false), denom, false);
CDeterministicMint dMint;
zwallet->GenerateMint(i, denom, coin, dMint);
UniValue obj(UniValue::VOBJ);
obj.push_back(Pair("count", i));
obj.push_back(Pair("value", coin.getPublicCoin().getValue().GetHex()));
obj.push_back(Pair("randomness", coin.getRandomness().GetHex()));
obj.push_back(Pair("serial", coin.getSerialNumber().GetHex()));
arrRet.push_back(obj);
}
return arrRet;
}
UniValue dzznnstate(const UniValue& params, bool fHelp) {
if (fHelp || params.size() != 0)
throw std::runtime_error(
"dzznnstate\n"
"\nThe current state of the mintpool of the deterministic zZNN wallet.\n" +
HelpRequiringPassphrase() + "\n"
"\nExamples\n" +
HelpExampleCli("mintpoolstatus", "") + HelpExampleRpc("mintpoolstatus", ""));
CzZNNWallet* zwallet = pwalletMain->zwalletMain;
UniValue obj(UniValue::VOBJ);
int nCount, nCountLastUsed;
zwallet->GetState(nCount, nCountLastUsed);
obj.push_back(Pair("dzznn_count", nCount));
obj.push_back(Pair("mintpool_count", nCountLastUsed));
return obj;
}
void static SearchThread(CzZNNWallet* zwallet, int nCountStart, int nCountEnd)
{
LogPrintf("%s: start=%d end=%d\n", __func__, nCountStart, nCountEnd);
CWalletDB walletDB(pwalletMain->strWalletFile);
try {
uint256 seedMaster = zwallet->GetMasterSeed();
uint256 hashSeed = Hash(seedMaster.begin(), seedMaster.end());
for(int i = nCountStart; i < nCountEnd; i++) {
boost::this_thread::interruption_point();
CDataStream ss(SER_GETHASH, 0);
ss << seedMaster << i;
uint512 zerocoinSeed = Hash512(ss.begin(), ss.end());
CBigNum bnValue;
CBigNum bnSerial;
CBigNum bnRandomness;
CKey key;
zwallet->SeedToZZNN(zerocoinSeed, bnValue, bnSerial, bnRandomness, key);
uint256 hashPubcoin = GetPubCoinHash(bnValue);
zwallet->AddToMintPool(std::make_pair(hashPubcoin, i), true);
walletDB.WriteMintPoolPair(hashSeed, hashPubcoin, i);
}
} catch (std::exception& e) {
LogPrintf("SearchThread() exception");
} catch (...) {
LogPrintf("SearchThread() exception");
}
}
UniValue searchdzznn(const UniValue& params, bool fHelp)
{
if(fHelp || params.size() != 3)
throw std::runtime_error(
"searchdzznn\n"
"\nMake an extended search for deterministically generated zZNN that have not yet been recognized by the wallet.\n" +
HelpRequiringPassphrase() + "\n"
"\nArguments\n"
"1. \"count\" (numeric) Which sequential zZNN to start with.\n"
"2. \"range\" (numeric) How many zZNN to generate.\n"
"3. \"threads\" (numeric) How many threads should this operation consume.\n"
"\nExamples\n" +
HelpExampleCli("searchdzznn", "1, 100, 2") + HelpExampleRpc("searchdzznn", "1, 100, 2"));
EnsureWalletIsUnlocked();
int nCount = params[0].get_int();
if (nCount < 0)
throw JSONRPCError(RPC_INVALID_PARAMETER, "Count cannot be less than 0");
int nRange = params[1].get_int();
if (nRange < 1)
throw JSONRPCError(RPC_INVALID_PARAMETER, "Range has to be at least 1");
int nThreads = params[2].get_int();
CzZNNWallet* zwallet = pwalletMain->zwalletMain;
boost::thread_group* dzznnThreads = new boost::thread_group();
int nRangePerThread = nRange / nThreads;
int nPrevThreadEnd = nCount - 1;
for (int i = 0; i < nThreads; i++) {
int nStart = nPrevThreadEnd + 1;;
int nEnd = nStart + nRangePerThread;
nPrevThreadEnd = nEnd;
dzznnThreads->create_thread(boost::bind(&SearchThread, zwallet, nStart, nEnd));
}
dzznnThreads->join_all();
zwallet->RemoveMintsFromPool(pwalletMain->zznnTracker->GetSerialHashes());
zwallet->SyncWithChain(false);
//todo: better response
return "done";
}
UniValue enableautomintaddress(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() != 1)
throw std::runtime_error(
"enableautomintaddress enable\n"
"\nEnables or disables automint address functionality\n"
"\nArguments\n"
"1. enable (boolean, required) Enable or disable automint address functionality\n"
"\nExamples\n" +
HelpExampleCli("enableautomintaddress", "true") + HelpExampleRpc("enableautomintaddress", "false"));
fEnableAutoConvert = params[0].get_bool();
return NullUniValue;
}
UniValue createautomintaddress(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() != 0)
throw std::runtime_error(
"createautomintaddress\n"
"\nGenerates new auto mint address\n" +
HelpRequiringPassphrase() + "\n"
"\nResult\n"
"\"address\" (string) ZNN address for auto minting\n" +
HelpExampleCli("createautomintaddress", "") +
HelpExampleRpc("createautomintaddress", ""));
EnsureWalletIsUnlocked();
LOCK(pwalletMain->cs_wallet);
CBitcoinAddress address = pwalletMain->GenerateNewAutoMintKey();
return address.ToString();
}
UniValue spendrawzerocoin(const UniValue& params, bool fHelp)
{
if (fHelp || params.size() < 4 || params.size() > 5)
throw std::runtime_error(
"spendrawzerocoin \"serialHex\" denom \"randomnessHex\" [\"address\"]\n"
"\nCreate and broadcast a TX spending the provided zericoin.\n"
"\nArguments:\n"
"1. \"serialHex\" (string, required) A zerocoin serial number (hex)\n"
"2. \"randomnessHex\" (string, required) A zerocoin randomness value (hex)\n"
"3. denom (numeric, required) A zerocoin denomination (decimal)\n"
"4. \"priv key\" (string, required) The private key associated with this coin (hex)\n"
"5. \"address\" (string, optional) ZNN address to spend to. If not specified, spend to change add.\n"
"\nResult:\n"
"\"txid\" (string) The transaction txid in hex\n"
"\nExamples\n" +
HelpExampleCli("spendrawzerocoin", "\"f80892e78c30a393ef4ab4d5a9d5a2989de6ebc7b976b241948c7f489ad716a2\" \"a4fd4d7248e6a51f1d877ddd2a4965996154acc6b8de5aa6c83d4775b283b600\" 100 \"xxx\"") +
HelpExampleRpc("spendrawzerocoin", "\"f80892e78c30a393ef4ab4d5a9d5a2989de6ebc7b976b241948c7f489ad716a2\", \"a4fd4d7248e6a51f1d877ddd2a4965996154acc6b8de5aa6c83d4775b283b600\", 100, \"xxx\""));
LOCK2(cs_main, pwalletMain->cs_wallet);
if (GetAdjustedTime() > GetSporkValue(SPORK_16_ZEROCOIN_MAINTENANCE_MODE))
throw JSONRPCError(RPC_WALLET_ERROR, "zZNN is currently disabled due to maintenance.");
CBigNum serial;
serial.SetHex(params[0].get_str());
CBigNum randomness;
randomness.SetHex(params[1].get_str());
const int denom_int = params[2].get_int();
libzerocoin::CoinDenomination denom = libzerocoin::IntToZerocoinDenomination(denom_int);
std::string priv_key_str = params[3].get_str();
CPrivKey privkey;
CBitcoinSecret vchSecret;
bool fGood = vchSecret.SetString(priv_key_str);
CKey key = vchSecret.GetKey();
if (!key.IsValid() && fGood)
return JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "privkey is not valid");
privkey = key.GetPrivKey();
std::string address_str = "";
if (params.size() == 5)
address_str = params[4].get_str();
// Create the coin associated with these secrets
libzerocoin::PrivateCoin coin(Params().Zerocoin_Params(false), denom, serial, randomness);
coin.setPrivKey(privkey);
coin.setVersion(libzerocoin::PrivateCoin::CURRENT_VERSION);
// Create the mint associated with this coin
CZerocoinMint mint(denom, coin.getPublicCoin().getValue(), randomness, serial, false, CZerocoinMint::CURRENT_VERSION, &privkey);
std::vector<CZerocoinMint> vMintsSelected = {mint};
CAmount nAmount = mint.GetDenominationAsAmount();
return DoZznnSpend(nAmount, false, true, vMintsSelected, address_str);
}
UniValue clearspendcache(const UniValue& params, bool fHelp)
{
if(fHelp || params.size() != 0)
throw std::runtime_error(
"clearspendcache\n"
"\nClear the pre-computed zZNN spend cache, and database.\n" +
HelpRequiringPassphrase() + "\n"
"\nExamples\n" +
HelpExampleCli("clearspendcache", "") + HelpExampleRpc("clearspendcache", ""));
EnsureWalletIsUnlocked();
CzZNNTracker* zznnTracker = pwalletMain->zznnTracker.get();
{
int nTries = 0;
while (nTries < 100) {
TRY_LOCK(zznnTracker->cs_spendcache, fLocked);
if (fLocked) {
if (zznnTracker->ClearSpendCache()) {
fClearSpendCache = true;
CWalletDB walletdb("precomputes.dat", "cr+");
walletdb.EraseAllPrecomputes();
return "Successfully Cleared the Precompute Spend Cache and Database";
}
} else {
fGlobalUnlockSpendCache = true;
nTries++;
MilliSleep(100);
}
}
}
throw JSONRPCError(RPC_WALLET_ERROR, "Error: Spend cache not cleared!");
}
| [
"z@zzz.zzz"
] | z@zzz.zzz |
70b9f97e7696da3f50b02064ba5f4c58b21e3f2a | 1020bae020a22de72cc2a85c64041fff145b8c08 | /include/Const.h | b0ea7610a304877f457ecd7d21f8aeee981ebe27 | [] | no_license | danisetg/model_checking_c | 113f33dee21671fcee5c9c07c0a1cd79a632523f | a84f2d976fd383f53a7e7bde716f037219b4f0f9 | refs/heads/main | 2023-08-16T23:53:13.029566 | 2021-09-26T17:49:39 | 2021-09-26T17:49:39 | 329,751,565 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 240 | h | #ifndef CONST_H
#define CONST_H
#include "Helper.h"
class Const
{
public:
string value;
Const();
Const(string _value);
void parse(deque<Token>& tokens);
string translate();
};
#endif // CONST_H
| [
"danisetg@gmail.com"
] | danisetg@gmail.com |
b54a0ee5542d738162acc64f357da397a901a60e | 63d48bd2e96affe8b000ed00b9f35e27e19c4c73 | /Project1/Shader.cpp | ab91f8ebbd5c274f4a1e824f657b2cbf292c7465 | [] | no_license | Qiu2019-t/opengl-test | 95faf8e581e5ca487b59a4606a5a90b74ecbd6c4 | c1a7ca597394ce0805925fd0da16c9eb077dbf9c | refs/heads/master | 2023-06-07T13:23:38.562635 | 2021-06-29T12:24:09 | 2021-06-29T12:24:09 | 381,330,509 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 2,635 | cpp | #include "Shader.h"
void Shader::initShader(const char*_vertexPath, const char * _fragPath) {
//读取两个Shader的代码
std::string _vertexCode("");
std::string _fragCode("");
//文件读取器
std::ifstream _vShaderFile;
std::ifstream _fShaderFile;
_vShaderFile.exceptions(std::ifstream::failbit | std::ifstream::badbit);//文件损坏读取失败
_fShaderFile.exceptions(std::ifstream::failbit | std::ifstream::badbit);
try
{ //打开文件
_vShaderFile.open(_vertexPath);
_fShaderFile.open(_fragPath);
//两个文件的读取流
stringstream _vShaderStream, _fShaderStream;
//读取文件的缓冲内容到数据流
_vShaderStream << _vShaderFile.rdbuf();
_fShaderStream << _fShaderFile.rdbuf();
//关闭文件处理器
_vShaderFile.close();
_fShaderFile.close();
//转换数据流到string
_vertexCode = _vShaderStream.str();
_fragCode = _fShaderStream.str();
}
catch (ifstream::failure e)
{
string errstr = "read shader fail";
cout << errstr << endl;
}
const char* _vShaderStr = _vertexCode.c_str();
const char* _fShaderStr = _fragCode.c_str();
//shader的编译与链接
unsigned int _vertexID = 0, _fragID = 0;
char _infoLog[512];//存取错误信息
int _successFlag = 0;
//编译
//顶点着色器
_vertexID = glCreateShader(GL_VERTEX_SHADER);
glShaderSource(_vertexID, 1, &_vShaderStr, NULL);//传入代码
glCompileShader(_vertexID);
//打印编译错误(如果有的话)
glGetShaderiv(_vertexID, GL_COMPILE_STATUS, &_successFlag);//编译是否成功
if (!_successFlag) {
glGetShaderInfoLog(_vertexID, 512, NULL, _infoLog);
string errStr(_infoLog);
cout << _infoLog << endl;
}
_fragID = glCreateShader(GL_FRAGMENT_SHADER);
glShaderSource(_fragID, 1, &_fShaderStr, NULL);
glCompileShader(_fragID);
glGetShaderiv(_fragID, GL_COMPILE_STATUS, &_successFlag);
if (!_successFlag) {
glGetShaderInfoLog(_fragID, 512, NULL, _infoLog);
string errStr(_infoLog);
cout << _infoLog << endl;
}
//链接
m_shaderProgram = glCreateProgram();//创建shader程序
glAttachShader(m_shaderProgram, _vertexID);//加入编译好的两个shader
glAttachShader(m_shaderProgram, _fragID);
glLinkProgram(m_shaderProgram);//两个shader放一起
glGetProgramiv(m_shaderProgram, GL_LINK_STATUS, &_successFlag);
if (!_successFlag) {
glGetProgramInfoLog(m_shaderProgram, 512, NULL, _infoLog);
string errStr(_infoLog);
cout << _infoLog << endl;
}
//删除着色器,已经链接到程序中,留下编译好的shaderProgram
glDeleteShader(_vertexID);
glDeleteShader(_fragID);
}
| [
"1914010809@qq.com"
] | 1914010809@qq.com |
b3a471867ea1188416c6573e60de5ee1133af2c5 | 85819758954ed8e557862d05400529af9435438e | /zdrojove_kody/algo4_cz/INNE/spirala.cpp | 094c2e9da6728d087e409078e8dc3b5125111788 | [] | no_license | tukusejssirs/Wroblewski_Piotr_-_Algoritmy | 634bc23a2b19625e2ebd473e9e90c99fc624cfae | 7293417fc04eebf3ada9d77fd6c0b02835d24766 | refs/heads/master | 2021-01-10T02:30:16.637692 | 2019-05-05T10:26:52 | 2019-05-05T10:26:52 | 44,933,317 | 0 | 0 | null | null | null | null | WINDOWS-1250 | C++ | false | false | 560 | cpp | // UPOZORNĚNÍ: verze pouze pro systém DOS a kompilátory firmy Borland
#include <GRAPHICS.H>
#include <conio.h>
const double alpha=10;
void spirala(double lg,double x,double y)
{
if (lg>0)
{
lineto(x+lg,y);
lineto(x+lg,y+lg);
lineto(x+alpha,y+lg);
lineto(x+alpha,y+alpha);
spirala(lg-2*alpha,x+alpha,y+alpha);
}
}
int main()
{
int Karta, Rezim;
Karta = DETECT;
initgraph(&Karta, &Rezim, "d:\\tc\\bgi\\");
setgraphmode(Rezim);
moveto(90,50);
spirala(getmaxx()/2,getx(),gety());
getch();
closegraph();
}
| [
"tukusejssirs@github.com"
] | tukusejssirs@github.com |
3cf096db995d115d3923ad18b6ad3242e77e917f | dccb136394c3c7f4a636f17f444ebaf95e24ab66 | /SW Expert Academy/D1/SW_1938.cpp | 02839d989ec6a8415836b8473d2dacf44c24b2fb | [] | no_license | Oh-kyung-tak/Algorithm | e2b88f6ae8e97130259dedfc30bb48591ae5b2fd | be63f972503170eb8ce06002a2eacd365ade7787 | refs/heads/master | 2020-04-25T22:37:41.799025 | 2020-01-19T08:55:42 | 2020-01-19T08:55:42 | 173,117,722 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 276 | cpp | #include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <queue>
using namespace std;
int N;
int sum = 0;
int main()
{
int a, b;
cin >> a >> b;
cout << a + b << endl;
cout << a - b << endl;
cout << a * b << endl;
cout << a / b << endl;
} | [
"okt1995@naver.com"
] | okt1995@naver.com |
94309b384bee150d7e040aa94fc087143724741d | e8b57223db9c44d891aaec5f92185b82bf6dea55 | /binomisl_coefficient/소스.cpp | 80a9fc17825905ace0be1c4998b5e69861c4af7c | [] | no_license | gjs001/Algorithm | bc88ebde2f0eed74128aca8eac065c7d45b3043a | 3897cfbdf54589f6499c4af6badde545c02d6856 | refs/heads/master | 2022-04-01T19:07:56.510587 | 2020-02-08T17:51:11 | 2020-02-08T17:51:11 | 78,085,769 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 992 | cpp | #define _CRT_SECURE_NO_WARNINGS
#include <iostream>
using namespace std;
#define Mn 1000000007
int n, k;
//int aArr[1001][1001];
/*
int binomial(int n, int k) {
if (aArr[n][k]) return aArr[n][k];
if (k == 1) return aArr[n][k] = n;
if (n == k) return 1;
if (k == 0) return 1;
else {
aArr[n][k] = binomial(n - 1, k - 1) + binomial(n - 1, k);
return aArr[n][k] %= 10007;
}
}
*/
int pow_Mn(long long x, long long y) {
long long ans =1;
while (y > 0) {
if (y % 2 != 0) {
ans *= x;
ans %= Mn;
}
x *= x;
x %= Mn;
y /= 2;
}
return ans;
}
int ferma(int n, int k) {
long long a =1;
long long b =1;
long long ans = 1;
for (int i = 1; i <= n; i++) {
a *= i;
a %= Mn;
}
for (int i = 1; i <= k; i++) {
b *= i;
b %= Mn;
}
for (int i = 1; i <= n - k; i++) {
b *= i;
b %= Mn;
}
b = pow_Mn(b, Mn-2);
b %= Mn;
ans = a*b;
return ans %= Mn;
}
int main() {
cin >> n >> k;
//ans = binomial(n, k);
long long ans = ferma(n, k);
printf("%d", ans);
} | [
"GitHub gjs010@naver.com"
] | GitHub gjs010@naver.com |
fa47553d86432c0fe0c0cb064bf8fd71fe262a14 | fade00bcbaae05753ddbf7f2e7405358cf8a5e47 | /CPP/arrsum.cpp | 65125853bae954442963534df50ee5292e54c9ee | [] | no_license | sandesh31122000/Hacktoberfest-test-1 | 0de4920388d5bc9e4d7ed42c775e5223511f7127 | 31627c60f11ff39cce7bac4097b3fc825b56a3fd | refs/heads/main | 2023-08-13T00:25:21.565192 | 2021-10-11T17:39:14 | 2021-10-11T17:39:14 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 270 | cpp | #include <bits/stdc++.h>
using namespace std;
int sum(int *ptr,int n,int i)
{
if(i<=n-1)
{
return (*(ptr+i))+sum(ptr,n,i+1);
}
else
return 0;
}
int main()
{
int arr[]={1,2,3,4};
int n=4;
int *p=&arr[0];
int ans=sum(p,n,0);
cout<<ans<<endl;
return 0;
} | [
"proginvolme@gmail.com"
] | proginvolme@gmail.com |
2b5dead15e9e5cdfaa59d43f8f779aa84ad52266 | 7aab265faeb72dbd80b2c7d5604524ad7f8738f6 | /math_functions.h | a083cc5d2ad036fd6d1281a4fb4cf9680014adbc | [] | no_license | dowerwang/math_evaluator_cpp | ca532209ee68e215bbdbe02fc05ffe4627067ffd | 65f381dead31f697191fcb5b0e4a4723a981fe21 | refs/heads/master | 2023-03-17T08:02:34.671908 | 2014-01-17T19:27:49 | 2014-01-17T19:27:49 | null | 0 | 0 | null | null | null | null | ISO-8859-1 | C++ | false | false | 10,026 | h | #ifndef MATH_FUNCTIONS_H
#define MATH_FUNCTIONS_H
#define MATH_EPSILON 0.00000000000001
#include <limits>
#include <cmath>
#include <math.h>
#include "nan_or_infinity.h"
#include <cstdlib>
#include <ctime>
namespace MathFunctions {
/*
Variable estática que si está en true, las funciones devuelven un 1.0.
Por ejemplo, la expresión: (1+2)/sin(pi) está bien escrita, pero el parser
arrojaría un error en tiempo de ejecución, debido a que sin(pi) = 0,
hay una división entre 0.
Esta variable estática nos permite evaluar una expresión sin caer en
estos errores en tiempo de ejecución. SIEMPRE se devuelve un 1 en las
evaluaciones de las funciones, por lo tanto así se evitan los errores.
Por lo tanto quedaría así:
(1+2)/1
Lo cual no deriva en un error en tiempo de ejecución.
*/
static bool evaluate = false;
//template<typename T>
inline bool isinf_2(double value) {
return value == std::numeric_limits<double>::infinity();
}
inline bool is_infinite(double x) {
double y = x - x;
return x == x && y != y;
}
inline bool isNan(double z) {
return z != z;
}
/*
* Calcular el factorial de un valor:
*/
double factorial(double value) {
if(evaluate) return 1.0;
double res;
int v = static_cast<int>(value);
if (value != static_cast<double>(v) || (value < 0.0)) {
throw ParsingException(-1, VALOR_ENTERO_ESPERADO_EN_FUNCION, "factorial");
}
res = v;
v--;
while (v > 1) {
res *= v;
v--;
}
if (res == 0)
res = 1.0;
return res;
}
inline double log_expr(double x) throw (NanOrInfinity) {
if(evaluate) return 1.0;
long double result = log(x);
if (!isinf_2(result) && !isNan(result) && !is_infinite(result)) {
return result;
} else {
throw NanOrInfinity("Número fuera de dominio", x);
}
}
inline long double math_acot(double x) {
if(evaluate) return 1.0;
return ((M_PI / 2.0) - abs(atan(x)));
}
inline long double math_acosh(double x) throw(NanOrInfinity) {
if(evaluate) return 1.0;
if(x >= 1.0) {
long double result = log(x + sqrt((x * x) - 1.0));
if (!isinf_2(result) && !isNan(result) && !is_infinite(result)) {
return result;
} else {
throw NanOrInfinity("Fuera de dominio.", x);
}
} else {
throw NanOrInfinity("Fuera de dominio.", x);
}
}
/**
Calcula el signo de un valor dado(value)
*/
inline double sign(double value) {
if(evaluate) return 1.0;
if (value > 0)
return 1;
if (value < 0)
return -1;
return 0;
}
inline double raiz(double x) throw (NanOrInfinity) {
if(evaluate) return 1.0;
long double result = sqrt(x);
if (!isinf_2(result) && !isNan(result) && !is_infinite(result)) {
return result;
} else {
throw NanOrInfinity("Número fuera de dominio", x);
}
}
inline long double math_acos(double x) throw (NanOrInfinity) {
if(evaluate) return 1.0;
if(x >= -1.0 && x <= 1.0) {
long double result = acos(x);
if (!isinf_2(result) && !isNan(result) && !is_infinite(result)) {
return result;
} else {
throw NanOrInfinity("Fuera de dominio para la función 'acos'", x);
}
} else {
throw NanOrInfinity("Fuera de dominio para la función 'acos'", x);
}
}
inline long double math_asech(double x) {
if(evaluate) return 1.0;
// @antes: 0.00000000000001
if(fabs(x) < MATH_EPSILON) {
throw NanOrInfinity("Fuera de rango.", x);
}
if(x < 0.0) {
throw NanOrInfinity("Fuera de rango.", x);
}
// @antes: 0.00000000000001
if(x < MATH_EPSILON) {
throw NanOrInfinity("Fuera de rango.", x);
}
return math_acosh(1.0 / x);
}
inline long double math_atan(double x) {
if(evaluate) return 1.0;
if(fabs(x - 0.0) < std::numeric_limits<double>::epsilon()) {
// std::cout << "Iguales ... " << std::endl;
return 0.0;
}
return atan(x);
}
inline long double math_asinh(double x) {
if(evaluate) return 1.0;
if(fabs(x - 0.0) < std::numeric_limits<double>::epsilon()) {
return 0.0;
}
return log(x + sqrt((x * x) + 1.0));
}
inline long double math_atanh(double x) throw (NanOrInfinity) {
if(evaluate) return 1.0;
if(fabs(x - 0.0) < std::numeric_limits<double>::epsilon()) {
return 0.0;
}
/*if((x == -1.0) || (x == 1.0)) {
throw NanOrInfinity("Fuera de dominio", x);
}*/
if(fabs(x) >= 1.0) {
throw NanOrInfinity("Fuera de dominio.", x);
}
long double y = (1.0 / 2.0) * log((1.0 + x) / (1.0 - x));
if (!isinf_2(y) && !isNan(y) && !is_infinite(y)) {
return y;
} else {
throw NanOrInfinity("Fuera de dominio.", x);
}
}
inline long double math_acoth(double x) {
if(evaluate) return 1.0;
if(abs(x) < 1.0) {
throw NanOrInfinity("Fuera de dominio para la función 'acoth'", x);
}
return 0.5 * (log((x + 1.0)/x) - log((x - 1.0)/x));
}
inline double math_asin(double x) throw (NanOrInfinity) {
if(evaluate) return 1.0;
if(fabs(x - 0.0) < std::numeric_limits<double>::epsilon()) {
return 0.0L;
}
if(x < -1.0 || x > 1.0) {
throw NanOrInfinity("Fuera de dominio para la función 'asinh'", x);
}
long double result = asin(x);
if (!isinf_2(result) && !isNan(result) && !is_infinite(result)) {
return result;
} else {
throw NanOrInfinity("Número fuera de dominio", x);
}
}
inline long double math_acsc(double x) throw (NanOrInfinity) {
if(evaluate) return 1.0;
if(x <= 1.0 && x >= 1.0) {
throw NanOrInfinity("Fuera de dominio para la función 'acoth'", x);
}
return math_asin(1.0 / x);
}
inline long double math_acsch(double x) throw (NanOrInfinity) {
if(evaluate) return 1.0;
if(fabs(x - 0.0) < std::numeric_limits<double>::epsilon()) {
throw NanOrInfinity("Fuera de dominio.", x);
}
return log(sqrt(1.0 + (1.0/(x * x))) + (1.0/x));
}
inline long double math_asec(double x) throw(NanOrInfinity) {
if(evaluate) return 1.0;
long double y = acos(1.0 / x);
if (!isinf_2(y) && !isNan(y) && !is_infinite(y)) {
return y;
} else {
throw NanOrInfinity("Valiendo asec", x);
}
return y;
}
inline long double math_cot(double x) {
if(evaluate) return 1.0;
long double result = 0.0;
try {
double b = (cos(2.0 * x) - 1.0);
if(b == 0.0) {
throw NanOrInfinity("Fuera de rango.", x);
} else {
}
result = -(sin(2 * x)/b);
return result;
} catch (...) {
throw NanOrInfinity("Fuera de rango.", x);
}
}
inline long double math_coth(double x) throw (NanOrInfinity) {
if(evaluate) return 1.0;
if(fabs(x - 0.0) < std::numeric_limits<double>::epsilon()) {
throw NanOrInfinity("Fuera de rango.", x);
} else {
return (1.0 / tanh(x));
}
}
inline long double math_csc(double x) {
if(evaluate) return 1.0;
if(fabs(fmod(fabs(x), M_PI) - 0.0) < std::numeric_limits<double>::epsilon()) {
throw NanOrInfinity("Fuera de rango.", x);
} else {
return (1.0 / sin(x));
}
}
inline long double math_csch(double x) {
if(evaluate) return 1.0;
if((fabs(sinh(x) - 0.0) < std::numeric_limits<double>::epsilon()) ||
(fabs(x - 0.0) < std::numeric_limits<double>::epsilon())) {
throw NanOrInfinity("Fuera de rango.", x);
} else {
return (1.0 / sinh(x));
}
}
inline double math_log(double x) {
if(evaluate) return 1.0;
if(fabs(x) < 0.0) {
throw NanOrInfinity("Fuera de dominio.", x);
}
if(x > 0.0) {
return log(x);
} else {
throw NanOrInfinity("Fuera de dominio.", x);
}
}
inline long double math_log10(double x) {
if(evaluate) return 1.0;
if(x < 0.0) {
throw NanOrInfinity("Fuera de rango.", x);
// @antes: 0.00000000000001
} else if(x == 0.0 || fabs(x) < MATH_EPSILON) {
throw NanOrInfinity("Fuera de rango.", x);
} else {
return log10(x);
}
}
inline long double math_log2(double x) {
if(evaluate) return 1.0;
if(x < 0.0) {
throw NanOrInfinity("Fuera de rango.", x);
} else if(x == 0.0 || fabs(x) < MATH_EPSILON) {
throw NanOrInfinity("Fuera de rango.", x);
} else {
return log(x) / log(2.0);
}
}
inline long double math_sec(double x) {
if(evaluate) return 1.0;
//return ((2.0 * cos(x)) / (cos(2.0 * x) + 1.0));
// @antes: 0.00000000000001
if(fabs(cos(x)) < MATH_EPSILON) {
throw NanOrInfinity("Fuera de rango.", x);
} else {
return 1.0 / cos(x);
}
}
inline long double math_sech(double x) {
if(evaluate) return 1.0;
return ((2.0 * cosh(x)) / (cosh(2.0 * x) + 1.0));
}
inline long double math_sqrt(double x) {
if(evaluate) return 1.0;
// @antes: 0.00000000000001
if(fabs(x) < MATH_EPSILON) {
return 0.0;
}
if(x > 0.0) {
return sqrt(x);
} else {
throw NanOrInfinity("Fuera de rango.", x);
}
}
/*
Regresa el valor tangende de x.
*/
inline long double math_tan(double x) {
if(evaluate) return 1.0;
if(fmod(x, M_PI) == M_PI_2) {
throw NanOrInfinity("Fuera de rango.", x);
// @antes: 0.00000000000001
} else if(fabs(fmod(x, M_PI)) < MATH_EPSILON) {
return 0.0;
} else {
return tan(x);
}
}
// Función que devuelve un número aleatorio entre 0 y 1.
// Se hace la suposición de que ya se está randomizado.
inline double rand_0_to_1(void) {
if(evaluate) return 1.0;
return (double)std::rand() / (double)RAND_MAX;
}
/*
Regresa un número aleatorio entre dos límites (min - max)
*/
/*inline double rand_between(double min, double max) {
if(evaluate) return 1.0;
return ((double(std::rand()) / double(RAND_MAX)) * ((max + 1) - min)) + min;
}*/
/*
Regresa un número aleatorio entre dos límites (min - max)
*/
inline int rand_int_between(int min, int max) {
if(evaluate) return 1.0;
return min + (std::rand() % (int)(max - min + 1));
}
inline double math_sin_test(double x) {
if(evaluate) return 1.0;
double temp = sin(x);
if(fabs(temp - 0.0) < std::numeric_limits<double>::epsilon()) {
return 0;
}
return temp;
}
}
#endif
| [
"leorocko13@hotmail.com"
] | leorocko13@hotmail.com |
4c178b81cc9d6a70c134c314c93bab993e12eabc | 82f332195a53cb987ad095ad450a56df17cc1d7b | /src/Throwing_ball/include/Throwing_ball/kalman_filter_matrices.h | 4dc3fa3190c0b61efa2e29d2b6bda088b81f7d48 | [] | no_license | TapanBhavsar/ThrowingBall | 357f695ef678dd89c5d9d860242a7069987ffbbb | f1f91a4f3d0215e59af47bbf112cd3031a22d0fd | refs/heads/master | 2020-05-18T20:38:38.337669 | 2019-06-02T20:59:46 | 2019-06-02T20:59:46 | 184,639,481 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 715 | h | #ifndef _KALMAN_FILTER_MATRICES_H_
#define _KALMAN_FILTER_MATRICES_H_
#include <ros/ros.h>
#include <eigen3/Eigen/Dense>
class KalmanFilterMatrices
{
public:
KalmanFilterMatrices(ros::NodeHandle nh);
~KalmanFilterMatrices();
void SetAllMatrices();
Eigen::MatrixXd GetSystemMatrix() const;
Eigen::MatrixXd GetInputGainMatrix() const;
Eigen::MatrixXd GetMeasurementMatrix() const;
private:
void SetSystemMatrix();
void SetInputGainMatrix();
void SetMeasurementMatrix();
ros::NodeHandle nh_;
Eigen::MatrixXd A_system_matrix_;
Eigen::MatrixXd B_input_gain_matrix_;
Eigen::MatrixXd c_measurement_matrix_;
};
# endif // _KALMAN_FILTER_MATRICES_H_ | [
"tapanbhavsar1601@gmail.com"
] | tapanbhavsar1601@gmail.com |
8d9a6fdf8e26cab6ac2cadd97c1bb862409e1ac5 | 207bf930dda60c2c100fb5bc92a141f85e70b96e | /SAGE1.1Src/Demo 02/SAGE/Source/Terrain/TerrainSubmesh.h | 851ab600673b488d7d56c998a6df4b2cd3c5d72c | [] | no_license | dumppool/nvvg | 9a8ffd72b4cab086215ec38f6494cd234b5f7796 | 1a4f8d3bd03daedea8e07ea498d54066827104b3 | refs/heads/master | 2020-09-14T17:03:22.426495 | 2011-05-03T20:13:10 | 2011-05-03T20:13:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,700 | h | /*
----o0o=================================================================o0o----
* Copyright (c) 2006, Ian Parberry
* All rights reserved.
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * 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.
* * Neither the name of the University of North Texas 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 REGENTS AND 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.
----o0o=================================================================o0o----
*/
/// \file TerrainSubmesh.h
#ifndef __TERRAINSUBMESH_H_INCLUDED__
#define __TERRAINSUBMESH_H_INCLUDED__
#include "graphics/VertexBuffer.h"
#include "graphics/IndexBuffer.h"
#include "Common/Renderer.h"
#include "graphics/VertexTypes.h"
#include "TerrainVertex.h"
const unsigned int LOD0 = 0x01;
const unsigned int LOD1 = 0x02;
const unsigned int LOD2 = 0x03;
const unsigned int LOD_DRAW = 0x03;
const unsigned int LODCRACK_TOP = 0x04;
const unsigned int LODCRACK_RIGHT = 0x8;
const unsigned int LODCRACK_BOTTOM = 0x10;
const unsigned int LODCRACK_LEFT = 0x20;
const unsigned int LODCRACKPRESENT = 0x3C;
//-----------------------------------------------------------------------------
/// \class TerrainSubmesh
/// \brief Holds a square mesh that makes up a part of the entire terrain.
class TerrainSubmesh
{
public:
TerrainSubmesh(int vertsPerSide,int parentSide,int lod); ///< Basic Constructor
~TerrainSubmesh(); ///< Basic Destructor
/// \brief Sets vertices for the submesh.
void setMesh(int row, int col, int lod, RenderVertexTerrain *v); //set mesh from parent
/// \brief Renders the submesh
void render(unsigned int lodcrack = 0);
private:
int m_nSide; ///< Number of quads per side
int m_nReducedSide; ///< Number of quads per side after lod
int m_nParentSide; ///< Number of quads per side in parent
int m_nVPS; /// Number of vertices per side
int m_nParentVerticesPerSide; ///< Vertices per side of the parent grid
int m_nNumVertices; ///< Total number of vertices
int m_nNumQuads; ///< Total number of quads
int m_nNumTriangles; ///< Total number of triangles
unsigned int m_lastLodCrack; ///< Records how the submesh was rendered last render
VertexBuffer<RenderVertexTerrain> *m_vertexBuffer; ///<Holds all the vertices to be rendered
RenderVertexTerrain* m_vertices; ///< Vertices before cracks have been smoothed
IndexBuffer *m_triangles; ///< Static index buffer used to render submesh
};
#endif
| [
"c.a.russell@ou.edu"
] | c.a.russell@ou.edu |
eae748d5b5c9a3152ef216fc728e3062380da086 | 17d766a296cc6c72499bba01b82d58f7df747b64 | /keyBoard.cpp | 41250a74ab0b4e0f0f3ce1d7ad59a782cc5e6fba | [] | no_license | Kullsno2/C-Cpp-Programs | 1dd7a57cf7e4c70831c5b36566605dc35abdeb67 | 2b81ddc67f22ada291e85bfc377e59e6833e48fb | refs/heads/master | 2021-01-22T21:45:41.214882 | 2015-11-15T11:15:46 | 2015-11-15T11:15:46 | 85,473,174 | 0 | 1 | null | 2017-03-19T12:12:00 | 2017-03-19T12:11:59 | null | UTF-8 | C++ | false | false | 413 | cpp | #include<iostream>
using namespace std ;
int keyBoard[30];
int find( char c ,string a){
for(int i=0 ; i<a.length() ; i++)
if(a[i]==c)
return i;
}
int main(){
string key ="qwertyuiopasdfghjkl;zxcvbnm,./";
string s;
char c;
cin>>c;
cin>>s;
string ans ="";
int toggle = c=='L' ? 1 : -1;
for(int i=0 ; i<s.length() ; i++){
ans += key[find(s[i],key)+toggle];
}
cout<<ans<<endl;
}
| [
"nanduvinodan2@gmail.com"
] | nanduvinodan2@gmail.com |
3af99d4016c37ca186ae3f3257226a3d74fca9fd | 48e15089b405d2922267de4d703a445096ec21b6 | /QT/OS/pageReplacement/page.h | fc060ebcefeeb0b08055dc704b60d17ec6155aa7 | [] | no_license | Eternal134/CoursesCode | ff8136d4d6116f79bc1c522d2070bb49ddbde3c1 | 9bb4f01c16614a28a7a9e70f411f8834aec51c3a | refs/heads/master | 2021-07-22T02:47:21.638019 | 2021-07-08T02:48:10 | 2021-07-08T02:48:10 | 192,199,777 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 651 | h | #ifndef PAGE_H
#define PAGE_H
#include <QObject>
#include <QList>
class Page : public QObject
{
Q_OBJECT
public:
explicit Page(QObject *parent = nullptr);
void init();
void optAlgorithm(int requestIndex);
int lenth() { return pageTableLen; }
int num() { return requestNum; }
QList<int> table() { return pageTable; }
QList<int> request() { return requestStream; }
signals:
void pageMissing(int index);
void directTransfer(int index);
void requestSuccess(int index);
private:
int pageTableLen= 4;
QList<int> pageTable;
int requestNum = 15;
QList<int> requestStream;
};
#endif // PAGE_H
| [
"18756762798@163.com"
] | 18756762798@163.com |
7923554168876a6c75d23d4c64183150d8bb74f7 | 20ed2f99fa3c5b72959069059362d785572d68aa | /Vengeful/public_internal/sdk/interfaces/IMoveHelper.hpp | 49ea9c20934a0d8673ef035d825d0b3f57cc8fd9 | [] | no_license | Aethstetic/vengefulfixed | ed5560ce92a549efe85d0f4db168eaf2da2db51a | b085b277ed99b67d0743318564bf20942f9f6330 | refs/heads/master | 2020-03-31T14:11:08.354898 | 2018-10-09T16:24:18 | 2018-10-09T16:24:18 | 152,283,234 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,136 | hpp | #pragma once
class IClientEntity;
class IMoveHelper
{
public:
bool m_bFirstRunOfFunctions : 1;
bool m_bGameCodeMovedPlayer : 1;
int m_nPlayerHandle; // edict index on server, client entity handle on client=
int m_nImpulseCommand; // Impulse command issued.
QAngle m_vecViewAngles; // Command view angles (local space)
QAngle m_vecAbsViewAngles; // Command view angles (world space)
int m_nButtons; // Attack buttons.
int m_nOldButtons; // From host_client->oldbuttons;
float m_flForwardMove;
float m_flSideMove;
float m_flUpMove;
float m_flMaxSpeed;
float m_flClientMaxSpeed;
Vector m_vecVelocity; // edict::velocity // Current movement direction.
QAngle m_vecAngles; // edict::angles
QAngle m_vecOldAngles;
float m_outStepHeight; // how much you climbed this move
Vector m_outWishVel; // This is where you tried
Vector m_outJumpVel; // This is your jump velocity
Vector m_vecConstraintCenter;
float m_flConstraintRadius;
float m_flConstraintWidth;
float m_flConstraintSpeedFactor;
float m_flUnknown[5];
Vector m_vecAbsOrigin;
virtual void _vpad() = 0;
virtual void SetHost(IClientEntity* host) = 0;
};
| [
"momboom32@gmail.com"
] | momboom32@gmail.com |
ab5a93c1a92537e9ff49c09cce6eb9c10f185a8f | d8a603693c492874a9ca1e464cecd4e37054f963 | /Solver/Common.h | 40a0cb9bbeb80c76bea53af4ee3c84fbe0918a98 | [] | no_license | chenkoucer/NPBenchmark-PCenter | a1cd1f1dcff7258b92b47c0495d8e30aaf4972c7 | e936cc055a6c3a338477fbb2a550af71af6d785c | refs/heads/master | 2020-04-01T09:49:38.984548 | 2018-10-25T13:51:25 | 2018-10-25T13:51:25 | 153,091,248 | 0 | 0 | null | 2018-10-15T10:00:04 | 2018-10-15T10:00:03 | null | UTF-8 | C++ | false | false | 970 | h | ////////////////////////////////
/// usage : 1. common type aliases.
///
/// note : 1.
////////////////////////////////
#ifndef SMART_JQ_PCENTER_COMMON_H
#define SMART_JQ_PCENTER_COMMON_H
#include <vector>
#include <set>
#include <map>
#include <string>
namespace szx {
// zero-based consecutive integer identifier.
using ID = int;
// the unit of width and height.
using Length = int;
// the unit of x and y coordinates.
using Coord = Length;
// the unit of elapsed computational time.
using Duration = int;
// number of neighborhood moves in local search.
using Iteration = int;
template<typename T>
using List = std::vector<T>;
template<typename T>
using Set = std::set<T>;
template<typename Key, typename Val>
using Map = std::map<Key, Val>;
using String = std::string;
class FileExtension {
public:
static String protobuf() { return String(".pb"); }
static String json() { return String(".json"); }
};
}
#endif // SMART_JQ_PCENTER_COMMON_H
| [
"183598258@qq.com"
] | 183598258@qq.com |
6fa9541d98ebd1ac45377fe9df05fb842a7543ab | 05328a9e406a0d9deaf5428d6c3046a616cd9f76 | /GCG_Source.build/module.chardet.mbcharsetprober.cpp | 8971b75fd47f211a46b7561b4743854e29fc55e2 | [
"MIT"
] | permissive | Pckool/GCG | c707e7c927ec2aa0b03362a4841581751f3a006f | cee786d04ea30f3995e910bca82635f442b2a6a8 | refs/heads/master | 2021-09-01T11:38:57.269041 | 2017-12-25T07:57:39 | 2017-12-25T07:57:39 | 115,445,942 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 159,662 | cpp | /* Generated code for Python source for module 'chardet.mbcharsetprober'
* created by Nuitka version 0.5.28.2
*
* This code is in part copyright 2017 Kay Hayen.
*
* 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 "nuitka/prelude.h"
#include "__helpers.h"
/* The _module_chardet$mbcharsetprober is a Python object pointer of module type. */
/* Note: For full compatibility with CPython, every module variable access
* needs to go through it except for cases where the module cannot possibly
* have changed in the mean time.
*/
PyObject *module_chardet$mbcharsetprober;
PyDictObject *moduledict_chardet$mbcharsetprober;
/* The module constants used, if any. */
extern PyObject *const_tuple_none_tuple;
extern PyObject *const_str_digest_1429e5140ade1e372a3e639fc28337a7;
extern PyObject *const_str_plain___module__;
extern PyObject *const_str_plain_metaclass;
extern PyObject *const_str_plain_ModuleSpec;
extern PyObject *const_str_plain___spec__;
extern PyObject *const_str_plain___package__;
extern PyObject *const_str_plain_char_len;
extern PyObject *const_str_plain_debug;
extern PyObject *const_str_plain_FOUND_IT;
extern PyObject *const_str_plain_charset_name;
static PyObject *const_str_digest_6339bfdde7dd9e6464c7b8fcae74d6f7;
extern PyObject *const_str_plain_byte_str;
extern PyObject *const_str_plain___qualname__;
extern PyObject *const_int_pos_1;
extern PyObject *const_dict_empty;
extern PyObject *const_str_plain_i;
extern PyObject *const_str_plain___file__;
extern PyObject *const_str_plain__last_char;
extern PyObject *const_str_plain_language;
extern PyObject *const_str_plain_coding_state;
extern PyObject *const_str_plain_next_state;
extern PyObject *const_str_plain_SHORTCUT_THRESHOLD;
static PyObject *const_str_digest_1d44aff74beb8e3c9dd86f393c7a5a15;
extern PyObject *const_int_0;
extern PyObject *const_str_plain_ProbingState;
static PyObject *const_str_digest_260aaf32158e82f1d4fe279d72222d82;
extern PyObject *const_str_plain_logger;
extern PyObject *const_str_plain_ITS_ME;
extern PyObject *const_str_plain_MultiByteCharSetProber;
extern PyObject *const_str_plain_state;
extern PyObject *const_tuple_str_plain_self_tuple;
extern PyObject *const_str_plain___prepare__;
extern PyObject *const_str_plain___init__;
extern PyObject *const_str_plain_ERROR;
extern PyObject *const_tuple_str_plain_ProbingState_str_plain_MachineState_tuple;
extern PyObject *const_str_plain_CharSetProber;
extern PyObject *const_str_plain_lang_filter;
extern PyObject *const_tuple_str_plain_self_str_plain___class___tuple;
extern PyObject *const_int_neg_1;
extern PyObject *const_str_plain_reset;
extern PyObject *const_str_plain_got_enough_data;
extern PyObject *const_str_plain_self;
extern PyObject *const_str_plain_enums;
extern PyObject *const_str_plain_MachineState;
static PyObject *const_str_digest_61a174b77573156efff777524dfe1dec;
static PyObject *const_str_digest_05f579e7d93f0ea609a30c57e29572b0;
extern PyObject *const_str_plain_START;
extern PyObject *const_str_plain_get_current_charlen;
extern PyObject *const_str_plain_coding_sm;
extern PyObject *const_tuple_str_plain_self_str_plain_lang_filter_str_plain___class___tuple;
extern PyObject *const_str_plain_get_confidence;
extern PyObject *const_str_plain__state;
extern PyObject *const_tuple_empty;
extern PyObject *const_str_plain_charsetprober;
static PyObject *const_str_digest_5bb604a6fa08213fb46a067ba2f06b41;
static PyObject *const_tuple_12b31ba2540ff846dfec4f0acc5690fe_tuple;
extern PyObject *const_tuple_str_plain_CharSetProber_tuple;
static PyObject *const_str_digest_6f1baf15df8445318d8c220eb253edca;
extern PyObject *const_str_plain_distribution_analyzer;
extern PyObject *const_list_int_0_int_0_list;
static PyObject *const_str_digest_3ddf8d5c282bdeac5d53fd114bcd835b;
extern PyObject *const_str_plain___loader__;
extern PyObject *const_str_plain_chardet;
extern PyObject *const_str_plain_feed;
extern PyObject *const_str_plain_NOT_ME;
static PyObject *const_str_digest_11748b6686ae68aff0843ae0b66e57cc;
extern PyObject *const_str_plain_DETECTING;
extern PyObject *const_tuple_4e3a048c2023c37c6f29cc8f8a458310_tuple;
static PyObject *const_str_digest_6ee41268d4b92b2b6983eb1cc1ee4d07;
extern PyObject *const_str_plain___doc__;
extern PyObject *const_str_plain___cached__;
extern PyObject *const_str_plain___class__;
static PyObject *module_filename_obj;
static bool constants_created = false;
static void createModuleConstants( void )
{
const_str_digest_6339bfdde7dd9e6464c7b8fcae74d6f7 = UNSTREAM_STRING( &constant_bin[ 712884 ], 26, 0 );
const_str_digest_1d44aff74beb8e3c9dd86f393c7a5a15 = UNSTREAM_STRING( &constant_bin[ 712910 ], 31, 0 );
const_str_digest_260aaf32158e82f1d4fe279d72222d82 = UNSTREAM_STRING( &constant_bin[ 712941 ], 32, 0 );
const_str_digest_61a174b77573156efff777524dfe1dec = UNSTREAM_STRING( &constant_bin[ 712973 ], 28, 0 );
const_str_digest_05f579e7d93f0ea609a30c57e29572b0 = UNSTREAM_STRING( &constant_bin[ 713001 ], 37, 0 );
const_str_digest_5bb604a6fa08213fb46a067ba2f06b41 = UNSTREAM_STRING( &constant_bin[ 713038 ], 27, 0 );
const_tuple_12b31ba2540ff846dfec4f0acc5690fe_tuple = PyTuple_New( 10 );
PyTuple_SET_ITEM( const_tuple_12b31ba2540ff846dfec4f0acc5690fe_tuple, 0, const_str_plain___class__ ); Py_INCREF( const_str_plain___class__ );
PyTuple_SET_ITEM( const_tuple_12b31ba2540ff846dfec4f0acc5690fe_tuple, 1, const_str_plain___qualname__ ); Py_INCREF( const_str_plain___qualname__ );
PyTuple_SET_ITEM( const_tuple_12b31ba2540ff846dfec4f0acc5690fe_tuple, 2, const_str_plain___module__ ); Py_INCREF( const_str_plain___module__ );
PyTuple_SET_ITEM( const_tuple_12b31ba2540ff846dfec4f0acc5690fe_tuple, 3, const_str_plain___doc__ ); Py_INCREF( const_str_plain___doc__ );
PyTuple_SET_ITEM( const_tuple_12b31ba2540ff846dfec4f0acc5690fe_tuple, 4, const_str_plain___init__ ); Py_INCREF( const_str_plain___init__ );
PyTuple_SET_ITEM( const_tuple_12b31ba2540ff846dfec4f0acc5690fe_tuple, 5, const_str_plain_reset ); Py_INCREF( const_str_plain_reset );
PyTuple_SET_ITEM( const_tuple_12b31ba2540ff846dfec4f0acc5690fe_tuple, 6, const_str_plain_charset_name ); Py_INCREF( const_str_plain_charset_name );
PyTuple_SET_ITEM( const_tuple_12b31ba2540ff846dfec4f0acc5690fe_tuple, 7, const_str_plain_language ); Py_INCREF( const_str_plain_language );
PyTuple_SET_ITEM( const_tuple_12b31ba2540ff846dfec4f0acc5690fe_tuple, 8, const_str_plain_feed ); Py_INCREF( const_str_plain_feed );
PyTuple_SET_ITEM( const_tuple_12b31ba2540ff846dfec4f0acc5690fe_tuple, 9, const_str_plain_get_confidence ); Py_INCREF( const_str_plain_get_confidence );
const_str_digest_6f1baf15df8445318d8c220eb253edca = UNSTREAM_STRING( &constant_bin[ 713065 ], 31, 0 );
const_str_digest_3ddf8d5c282bdeac5d53fd114bcd835b = UNSTREAM_STRING( &constant_bin[ 713096 ], 35, 0 );
const_str_digest_11748b6686ae68aff0843ae0b66e57cc = UNSTREAM_STRING( &constant_bin[ 713131 ], 32, 0 );
const_str_digest_6ee41268d4b92b2b6983eb1cc1ee4d07 = UNSTREAM_STRING( &constant_bin[ 713139 ], 23, 0 );
constants_created = true;
}
#ifndef __NUITKA_NO_ASSERT__
void checkModuleConstants_chardet$mbcharsetprober( void )
{
// The module may not have been used at all.
if (constants_created == false) return;
}
#endif
// The module code objects.
static PyCodeObject *codeobj_04d74fa3171abaef4f85c5a473efcda0;
static PyCodeObject *codeobj_1ab9434394b7f9093caddb7913aaba8a;
static PyCodeObject *codeobj_6a5ac47f0c8e907ba3ef263080e935df;
static PyCodeObject *codeobj_d91f4c6ec6ff77fa12e5b9e1f0e60a7e;
static PyCodeObject *codeobj_aad834c3883bbd29ad16ace90397cd67;
static PyCodeObject *codeobj_3e8fd47512e5c72aa02623e3f7e21d03;
static PyCodeObject *codeobj_a8bf066842fd616ec2410219ccb1fdb2;
static PyCodeObject *codeobj_589887e6b1e7ebe7a3d42e4a5ad58304;
static void createModuleCodeObjects(void)
{
module_filename_obj = MAKE_RELATIVE_PATH( const_str_digest_6339bfdde7dd9e6464c7b8fcae74d6f7 );
codeobj_04d74fa3171abaef4f85c5a473efcda0 = MAKE_CODEOBJ( module_filename_obj, const_str_digest_11748b6686ae68aff0843ae0b66e57cc, 1, const_tuple_empty, 0, 0, CO_NOFREE );
codeobj_1ab9434394b7f9093caddb7913aaba8a = MAKE_CODEOBJ( module_filename_obj, const_str_plain_MultiByteCharSetProber, 34, const_tuple_12b31ba2540ff846dfec4f0acc5690fe_tuple, 0, 0, CO_NOFREE );
codeobj_6a5ac47f0c8e907ba3ef263080e935df = MAKE_CODEOBJ( module_filename_obj, const_str_plain___init__, 39, const_tuple_str_plain_self_str_plain_lang_filter_str_plain___class___tuple, 2, 0, CO_OPTIMIZED | CO_NEWLOCALS );
codeobj_d91f4c6ec6ff77fa12e5b9e1f0e60a7e = MAKE_CODEOBJ( module_filename_obj, const_str_plain_charset_name, 53, const_tuple_str_plain_self_tuple, 1, 0, CO_OPTIMIZED | CO_NEWLOCALS | CO_NOFREE );
codeobj_aad834c3883bbd29ad16ace90397cd67 = MAKE_CODEOBJ( module_filename_obj, const_str_plain_feed, 61, const_tuple_4e3a048c2023c37c6f29cc8f8a458310_tuple, 2, 0, CO_OPTIMIZED | CO_NEWLOCALS | CO_NOFREE );
codeobj_3e8fd47512e5c72aa02623e3f7e21d03 = MAKE_CODEOBJ( module_filename_obj, const_str_plain_get_confidence, 90, const_tuple_str_plain_self_tuple, 1, 0, CO_OPTIMIZED | CO_NEWLOCALS | CO_NOFREE );
codeobj_a8bf066842fd616ec2410219ccb1fdb2 = MAKE_CODEOBJ( module_filename_obj, const_str_plain_language, 57, const_tuple_str_plain_self_tuple, 1, 0, CO_OPTIMIZED | CO_NEWLOCALS | CO_NOFREE );
codeobj_589887e6b1e7ebe7a3d42e4a5ad58304 = MAKE_CODEOBJ( module_filename_obj, const_str_plain_reset, 45, const_tuple_str_plain_self_str_plain___class___tuple, 1, 0, CO_OPTIMIZED | CO_NEWLOCALS );
}
// The module function declarations.
static PyObject *MAKE_FUNCTION_chardet$mbcharsetprober$$$function_1___init__( PyObject *defaults );
static PyObject *MAKE_FUNCTION_chardet$mbcharsetprober$$$function_2_reset( );
static PyObject *MAKE_FUNCTION_chardet$mbcharsetprober$$$function_3_charset_name( );
static PyObject *MAKE_FUNCTION_chardet$mbcharsetprober$$$function_4_language( );
static PyObject *MAKE_FUNCTION_chardet$mbcharsetprober$$$function_5_feed( );
static PyObject *MAKE_FUNCTION_chardet$mbcharsetprober$$$function_6_get_confidence( );
// The module function definitions.
static PyObject *impl_chardet$mbcharsetprober$$$function_1___init__( struct Nuitka_FunctionObject const *self, PyObject **python_pars )
{
// Preserve error status for checks
#ifndef __NUITKA_NO_ASSERT__
NUITKA_MAY_BE_UNUSED bool had_error = ERROR_OCCURRED();
#endif
// Local variable declarations.
PyObject *par_self = python_pars[ 0 ];
PyObject *par_lang_filter = python_pars[ 1 ];
PyObject *exception_type = NULL;
PyObject *exception_value = NULL;
PyTracebackObject *exception_tb = NULL;
NUITKA_MAY_BE_UNUSED int exception_lineno = 0;
PyObject *exception_keeper_type_1;
PyObject *exception_keeper_value_1;
PyTracebackObject *exception_keeper_tb_1;
NUITKA_MAY_BE_UNUSED int exception_keeper_lineno_1;
PyObject *tmp_assattr_name_1;
PyObject *tmp_assattr_name_2;
PyObject *tmp_assattr_name_3;
PyObject *tmp_assattr_target_1;
PyObject *tmp_assattr_target_2;
PyObject *tmp_assattr_target_3;
PyObject *tmp_called_name_1;
PyObject *tmp_dict_key_1;
PyObject *tmp_dict_value_1;
PyObject *tmp_kw_name_1;
PyObject *tmp_object_name_1;
int tmp_res;
bool tmp_result;
PyObject *tmp_return_value;
PyObject *tmp_source_name_1;
PyObject *tmp_type_name_1;
NUITKA_MAY_BE_UNUSED PyObject *tmp_unused;
static struct Nuitka_FrameObject *cache_frame_6a5ac47f0c8e907ba3ef263080e935df = NULL;
struct Nuitka_FrameObject *frame_6a5ac47f0c8e907ba3ef263080e935df;
NUITKA_MAY_BE_UNUSED char const *type_description_1 = NULL;
tmp_return_value = NULL;
// Actual function code.
// Tried code:
MAKE_OR_REUSE_FRAME( cache_frame_6a5ac47f0c8e907ba3ef263080e935df, codeobj_6a5ac47f0c8e907ba3ef263080e935df, module_chardet$mbcharsetprober, sizeof(void *)+sizeof(void *)+sizeof(void *) );
frame_6a5ac47f0c8e907ba3ef263080e935df = cache_frame_6a5ac47f0c8e907ba3ef263080e935df;
// Push the new frame as the currently active one.
pushFrameStack( frame_6a5ac47f0c8e907ba3ef263080e935df );
// Mark the frame object as in use, ref count 1 will be up for reuse.
assert( Py_REFCNT( frame_6a5ac47f0c8e907ba3ef263080e935df ) == 2 ); // Frame stack
// Framed code:
tmp_type_name_1 = GET_STRING_DICT_VALUE( moduledict_chardet$mbcharsetprober, (Nuitka_StringObject *)const_str_plain_MultiByteCharSetProber );
if (unlikely( tmp_type_name_1 == NULL ))
{
tmp_type_name_1 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_MultiByteCharSetProber );
}
if ( tmp_type_name_1 == NULL )
{
exception_type = PyExc_NameError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "name '%s' is not defined", "MultiByteCharSetProber" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 40;
type_description_1 = "ooN";
goto frame_exception_exit_1;
}
tmp_object_name_1 = par_self;
CHECK_OBJECT( tmp_object_name_1 );
tmp_source_name_1 = BUILTIN_SUPER( tmp_type_name_1, tmp_object_name_1 );
if ( tmp_source_name_1 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 40;
type_description_1 = "ooN";
goto frame_exception_exit_1;
}
tmp_called_name_1 = LOOKUP_ATTRIBUTE( tmp_source_name_1, const_str_plain___init__ );
Py_DECREF( tmp_source_name_1 );
if ( tmp_called_name_1 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 40;
type_description_1 = "ooN";
goto frame_exception_exit_1;
}
tmp_kw_name_1 = _PyDict_NewPresized( 1 );
tmp_dict_key_1 = const_str_plain_lang_filter;
tmp_dict_value_1 = par_lang_filter;
if ( tmp_dict_value_1 == NULL )
{
Py_DECREF( tmp_called_name_1 );
Py_DECREF( tmp_kw_name_1 );
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "lang_filter" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 40;
type_description_1 = "ooN";
goto frame_exception_exit_1;
}
tmp_res = PyDict_SetItem( tmp_kw_name_1, tmp_dict_key_1, tmp_dict_value_1 );
assert( !(tmp_res != 0) );
frame_6a5ac47f0c8e907ba3ef263080e935df->m_frame.f_lineno = 40;
tmp_unused = CALL_FUNCTION_WITH_KEYARGS( tmp_called_name_1, tmp_kw_name_1 );
Py_DECREF( tmp_called_name_1 );
Py_DECREF( tmp_kw_name_1 );
if ( tmp_unused == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 40;
type_description_1 = "ooN";
goto frame_exception_exit_1;
}
Py_DECREF( tmp_unused );
tmp_assattr_name_1 = Py_None;
tmp_assattr_target_1 = par_self;
if ( tmp_assattr_target_1 == NULL )
{
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "self" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 41;
type_description_1 = "ooN";
goto frame_exception_exit_1;
}
tmp_result = SET_ATTRIBUTE( tmp_assattr_target_1, const_str_plain_distribution_analyzer, tmp_assattr_name_1 );
if ( tmp_result == false )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 41;
type_description_1 = "ooN";
goto frame_exception_exit_1;
}
tmp_assattr_name_2 = Py_None;
tmp_assattr_target_2 = par_self;
if ( tmp_assattr_target_2 == NULL )
{
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "self" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 42;
type_description_1 = "ooN";
goto frame_exception_exit_1;
}
tmp_result = SET_ATTRIBUTE( tmp_assattr_target_2, const_str_plain_coding_sm, tmp_assattr_name_2 );
if ( tmp_result == false )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 42;
type_description_1 = "ooN";
goto frame_exception_exit_1;
}
tmp_assattr_name_3 = LIST_COPY( const_list_int_0_int_0_list );
tmp_assattr_target_3 = par_self;
if ( tmp_assattr_target_3 == NULL )
{
Py_DECREF( tmp_assattr_name_3 );
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "self" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 43;
type_description_1 = "ooN";
goto frame_exception_exit_1;
}
tmp_result = SET_ATTRIBUTE( tmp_assattr_target_3, const_str_plain__last_char, tmp_assattr_name_3 );
if ( tmp_result == false )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
Py_DECREF( tmp_assattr_name_3 );
exception_lineno = 43;
type_description_1 = "ooN";
goto frame_exception_exit_1;
}
Py_DECREF( tmp_assattr_name_3 );
#if 0
RESTORE_FRAME_EXCEPTION( frame_6a5ac47f0c8e907ba3ef263080e935df );
#endif
// Put the previous frame back on top.
popFrameStack();
goto frame_no_exception_1;
frame_exception_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_6a5ac47f0c8e907ba3ef263080e935df );
#endif
if ( exception_tb == NULL )
{
exception_tb = MAKE_TRACEBACK( frame_6a5ac47f0c8e907ba3ef263080e935df, exception_lineno );
}
else if ( exception_tb->tb_frame != &frame_6a5ac47f0c8e907ba3ef263080e935df->m_frame )
{
exception_tb = ADD_TRACEBACK( exception_tb, frame_6a5ac47f0c8e907ba3ef263080e935df, exception_lineno );
}
// Attachs locals to frame if any.
Nuitka_Frame_AttachLocals(
(struct Nuitka_FrameObject *)frame_6a5ac47f0c8e907ba3ef263080e935df,
type_description_1,
par_self,
par_lang_filter,
NULL
);
// Release cached frame.
if ( frame_6a5ac47f0c8e907ba3ef263080e935df == cache_frame_6a5ac47f0c8e907ba3ef263080e935df )
{
Py_DECREF( frame_6a5ac47f0c8e907ba3ef263080e935df );
}
cache_frame_6a5ac47f0c8e907ba3ef263080e935df = NULL;
assertFrameObject( frame_6a5ac47f0c8e907ba3ef263080e935df );
// Put the previous frame back on top.
popFrameStack();
// Return the error.
goto try_except_handler_1;
frame_no_exception_1:;
tmp_return_value = Py_None;
Py_INCREF( tmp_return_value );
goto try_return_handler_1;
// tried codes exits in all cases
NUITKA_CANNOT_GET_HERE( chardet$mbcharsetprober$$$function_1___init__ );
return NULL;
// Return handler code:
try_return_handler_1:;
Py_XDECREF( par_self );
par_self = NULL;
Py_XDECREF( par_lang_filter );
par_lang_filter = NULL;
goto function_return_exit;
// Exception handler code:
try_except_handler_1:;
exception_keeper_type_1 = exception_type;
exception_keeper_value_1 = exception_value;
exception_keeper_tb_1 = exception_tb;
exception_keeper_lineno_1 = exception_lineno;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
exception_lineno = 0;
Py_XDECREF( par_self );
par_self = NULL;
Py_XDECREF( par_lang_filter );
par_lang_filter = NULL;
// Re-raise.
exception_type = exception_keeper_type_1;
exception_value = exception_keeper_value_1;
exception_tb = exception_keeper_tb_1;
exception_lineno = exception_keeper_lineno_1;
goto function_exception_exit;
// End of try:
// Return statement must have exited already.
NUITKA_CANNOT_GET_HERE( chardet$mbcharsetprober$$$function_1___init__ );
return NULL;
function_exception_exit:
assert( exception_type );
RESTORE_ERROR_OCCURRED( exception_type, exception_value, exception_tb );
return NULL;
function_return_exit:
CHECK_OBJECT( tmp_return_value );
assert( had_error || !ERROR_OCCURRED() );
return tmp_return_value;
}
static PyObject *impl_chardet$mbcharsetprober$$$function_2_reset( struct Nuitka_FunctionObject const *self, PyObject **python_pars )
{
// Preserve error status for checks
#ifndef __NUITKA_NO_ASSERT__
NUITKA_MAY_BE_UNUSED bool had_error = ERROR_OCCURRED();
#endif
// Local variable declarations.
PyObject *par_self = python_pars[ 0 ];
PyObject *exception_type = NULL;
PyObject *exception_value = NULL;
PyTracebackObject *exception_tb = NULL;
NUITKA_MAY_BE_UNUSED int exception_lineno = 0;
PyObject *exception_keeper_type_1;
PyObject *exception_keeper_value_1;
PyTracebackObject *exception_keeper_tb_1;
NUITKA_MAY_BE_UNUSED int exception_keeper_lineno_1;
PyObject *tmp_assattr_name_1;
PyObject *tmp_assattr_target_1;
PyObject *tmp_called_instance_1;
PyObject *tmp_called_instance_2;
PyObject *tmp_called_instance_3;
int tmp_cond_truth_1;
int tmp_cond_truth_2;
PyObject *tmp_cond_value_1;
PyObject *tmp_cond_value_2;
PyObject *tmp_object_name_1;
bool tmp_result;
PyObject *tmp_return_value;
PyObject *tmp_source_name_1;
PyObject *tmp_source_name_2;
PyObject *tmp_source_name_3;
PyObject *tmp_source_name_4;
PyObject *tmp_type_name_1;
NUITKA_MAY_BE_UNUSED PyObject *tmp_unused;
static struct Nuitka_FrameObject *cache_frame_589887e6b1e7ebe7a3d42e4a5ad58304 = NULL;
struct Nuitka_FrameObject *frame_589887e6b1e7ebe7a3d42e4a5ad58304;
NUITKA_MAY_BE_UNUSED char const *type_description_1 = NULL;
tmp_return_value = NULL;
// Actual function code.
// Tried code:
MAKE_OR_REUSE_FRAME( cache_frame_589887e6b1e7ebe7a3d42e4a5ad58304, codeobj_589887e6b1e7ebe7a3d42e4a5ad58304, module_chardet$mbcharsetprober, sizeof(void *)+sizeof(void *) );
frame_589887e6b1e7ebe7a3d42e4a5ad58304 = cache_frame_589887e6b1e7ebe7a3d42e4a5ad58304;
// Push the new frame as the currently active one.
pushFrameStack( frame_589887e6b1e7ebe7a3d42e4a5ad58304 );
// Mark the frame object as in use, ref count 1 will be up for reuse.
assert( Py_REFCNT( frame_589887e6b1e7ebe7a3d42e4a5ad58304 ) == 2 ); // Frame stack
// Framed code:
tmp_type_name_1 = GET_STRING_DICT_VALUE( moduledict_chardet$mbcharsetprober, (Nuitka_StringObject *)const_str_plain_MultiByteCharSetProber );
if (unlikely( tmp_type_name_1 == NULL ))
{
tmp_type_name_1 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_MultiByteCharSetProber );
}
if ( tmp_type_name_1 == NULL )
{
exception_type = PyExc_NameError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "name '%s' is not defined", "MultiByteCharSetProber" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 46;
type_description_1 = "oN";
goto frame_exception_exit_1;
}
tmp_object_name_1 = par_self;
CHECK_OBJECT( tmp_object_name_1 );
tmp_called_instance_1 = BUILTIN_SUPER( tmp_type_name_1, tmp_object_name_1 );
if ( tmp_called_instance_1 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 46;
type_description_1 = "oN";
goto frame_exception_exit_1;
}
frame_589887e6b1e7ebe7a3d42e4a5ad58304->m_frame.f_lineno = 46;
tmp_unused = CALL_METHOD_NO_ARGS( tmp_called_instance_1, const_str_plain_reset );
Py_DECREF( tmp_called_instance_1 );
if ( tmp_unused == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 46;
type_description_1 = "oN";
goto frame_exception_exit_1;
}
Py_DECREF( tmp_unused );
tmp_source_name_1 = par_self;
if ( tmp_source_name_1 == NULL )
{
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "self" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 47;
type_description_1 = "oN";
goto frame_exception_exit_1;
}
tmp_cond_value_1 = LOOKUP_ATTRIBUTE( tmp_source_name_1, const_str_plain_coding_sm );
if ( tmp_cond_value_1 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 47;
type_description_1 = "oN";
goto frame_exception_exit_1;
}
tmp_cond_truth_1 = CHECK_IF_TRUE( tmp_cond_value_1 );
if ( tmp_cond_truth_1 == -1 )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
Py_DECREF( tmp_cond_value_1 );
exception_lineno = 47;
type_description_1 = "oN";
goto frame_exception_exit_1;
}
Py_DECREF( tmp_cond_value_1 );
if ( tmp_cond_truth_1 == 1 )
{
goto branch_yes_1;
}
else
{
goto branch_no_1;
}
branch_yes_1:;
tmp_source_name_2 = par_self;
if ( tmp_source_name_2 == NULL )
{
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "self" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 48;
type_description_1 = "oN";
goto frame_exception_exit_1;
}
tmp_called_instance_2 = LOOKUP_ATTRIBUTE( tmp_source_name_2, const_str_plain_coding_sm );
if ( tmp_called_instance_2 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 48;
type_description_1 = "oN";
goto frame_exception_exit_1;
}
frame_589887e6b1e7ebe7a3d42e4a5ad58304->m_frame.f_lineno = 48;
tmp_unused = CALL_METHOD_NO_ARGS( tmp_called_instance_2, const_str_plain_reset );
Py_DECREF( tmp_called_instance_2 );
if ( tmp_unused == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 48;
type_description_1 = "oN";
goto frame_exception_exit_1;
}
Py_DECREF( tmp_unused );
branch_no_1:;
tmp_source_name_3 = par_self;
if ( tmp_source_name_3 == NULL )
{
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "self" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 49;
type_description_1 = "oN";
goto frame_exception_exit_1;
}
tmp_cond_value_2 = LOOKUP_ATTRIBUTE( tmp_source_name_3, const_str_plain_distribution_analyzer );
if ( tmp_cond_value_2 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 49;
type_description_1 = "oN";
goto frame_exception_exit_1;
}
tmp_cond_truth_2 = CHECK_IF_TRUE( tmp_cond_value_2 );
if ( tmp_cond_truth_2 == -1 )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
Py_DECREF( tmp_cond_value_2 );
exception_lineno = 49;
type_description_1 = "oN";
goto frame_exception_exit_1;
}
Py_DECREF( tmp_cond_value_2 );
if ( tmp_cond_truth_2 == 1 )
{
goto branch_yes_2;
}
else
{
goto branch_no_2;
}
branch_yes_2:;
tmp_source_name_4 = par_self;
if ( tmp_source_name_4 == NULL )
{
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "self" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 50;
type_description_1 = "oN";
goto frame_exception_exit_1;
}
tmp_called_instance_3 = LOOKUP_ATTRIBUTE( tmp_source_name_4, const_str_plain_distribution_analyzer );
if ( tmp_called_instance_3 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 50;
type_description_1 = "oN";
goto frame_exception_exit_1;
}
frame_589887e6b1e7ebe7a3d42e4a5ad58304->m_frame.f_lineno = 50;
tmp_unused = CALL_METHOD_NO_ARGS( tmp_called_instance_3, const_str_plain_reset );
Py_DECREF( tmp_called_instance_3 );
if ( tmp_unused == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 50;
type_description_1 = "oN";
goto frame_exception_exit_1;
}
Py_DECREF( tmp_unused );
branch_no_2:;
tmp_assattr_name_1 = LIST_COPY( const_list_int_0_int_0_list );
tmp_assattr_target_1 = par_self;
if ( tmp_assattr_target_1 == NULL )
{
Py_DECREF( tmp_assattr_name_1 );
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "self" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 51;
type_description_1 = "oN";
goto frame_exception_exit_1;
}
tmp_result = SET_ATTRIBUTE( tmp_assattr_target_1, const_str_plain__last_char, tmp_assattr_name_1 );
if ( tmp_result == false )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
Py_DECREF( tmp_assattr_name_1 );
exception_lineno = 51;
type_description_1 = "oN";
goto frame_exception_exit_1;
}
Py_DECREF( tmp_assattr_name_1 );
#if 0
RESTORE_FRAME_EXCEPTION( frame_589887e6b1e7ebe7a3d42e4a5ad58304 );
#endif
// Put the previous frame back on top.
popFrameStack();
goto frame_no_exception_1;
frame_exception_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_589887e6b1e7ebe7a3d42e4a5ad58304 );
#endif
if ( exception_tb == NULL )
{
exception_tb = MAKE_TRACEBACK( frame_589887e6b1e7ebe7a3d42e4a5ad58304, exception_lineno );
}
else if ( exception_tb->tb_frame != &frame_589887e6b1e7ebe7a3d42e4a5ad58304->m_frame )
{
exception_tb = ADD_TRACEBACK( exception_tb, frame_589887e6b1e7ebe7a3d42e4a5ad58304, exception_lineno );
}
// Attachs locals to frame if any.
Nuitka_Frame_AttachLocals(
(struct Nuitka_FrameObject *)frame_589887e6b1e7ebe7a3d42e4a5ad58304,
type_description_1,
par_self,
NULL
);
// Release cached frame.
if ( frame_589887e6b1e7ebe7a3d42e4a5ad58304 == cache_frame_589887e6b1e7ebe7a3d42e4a5ad58304 )
{
Py_DECREF( frame_589887e6b1e7ebe7a3d42e4a5ad58304 );
}
cache_frame_589887e6b1e7ebe7a3d42e4a5ad58304 = NULL;
assertFrameObject( frame_589887e6b1e7ebe7a3d42e4a5ad58304 );
// Put the previous frame back on top.
popFrameStack();
// Return the error.
goto try_except_handler_1;
frame_no_exception_1:;
tmp_return_value = Py_None;
Py_INCREF( tmp_return_value );
goto try_return_handler_1;
// tried codes exits in all cases
NUITKA_CANNOT_GET_HERE( chardet$mbcharsetprober$$$function_2_reset );
return NULL;
// Return handler code:
try_return_handler_1:;
Py_XDECREF( par_self );
par_self = NULL;
goto function_return_exit;
// Exception handler code:
try_except_handler_1:;
exception_keeper_type_1 = exception_type;
exception_keeper_value_1 = exception_value;
exception_keeper_tb_1 = exception_tb;
exception_keeper_lineno_1 = exception_lineno;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
exception_lineno = 0;
Py_XDECREF( par_self );
par_self = NULL;
// Re-raise.
exception_type = exception_keeper_type_1;
exception_value = exception_keeper_value_1;
exception_tb = exception_keeper_tb_1;
exception_lineno = exception_keeper_lineno_1;
goto function_exception_exit;
// End of try:
// Return statement must have exited already.
NUITKA_CANNOT_GET_HERE( chardet$mbcharsetprober$$$function_2_reset );
return NULL;
function_exception_exit:
assert( exception_type );
RESTORE_ERROR_OCCURRED( exception_type, exception_value, exception_tb );
return NULL;
function_return_exit:
CHECK_OBJECT( tmp_return_value );
assert( had_error || !ERROR_OCCURRED() );
return tmp_return_value;
}
static PyObject *impl_chardet$mbcharsetprober$$$function_3_charset_name( struct Nuitka_FunctionObject const *self, PyObject **python_pars )
{
// Preserve error status for checks
#ifndef __NUITKA_NO_ASSERT__
NUITKA_MAY_BE_UNUSED bool had_error = ERROR_OCCURRED();
#endif
// Local variable declarations.
PyObject *par_self = python_pars[ 0 ];
PyObject *exception_type = NULL;
PyObject *exception_value = NULL;
PyTracebackObject *exception_tb = NULL;
NUITKA_MAY_BE_UNUSED int exception_lineno = 0;
PyObject *exception_keeper_type_1;
PyObject *exception_keeper_value_1;
PyTracebackObject *exception_keeper_tb_1;
NUITKA_MAY_BE_UNUSED int exception_keeper_lineno_1;
PyObject *tmp_raise_type_1;
static struct Nuitka_FrameObject *cache_frame_d91f4c6ec6ff77fa12e5b9e1f0e60a7e = NULL;
struct Nuitka_FrameObject *frame_d91f4c6ec6ff77fa12e5b9e1f0e60a7e;
NUITKA_MAY_BE_UNUSED char const *type_description_1 = NULL;
// Actual function code.
// Tried code:
MAKE_OR_REUSE_FRAME( cache_frame_d91f4c6ec6ff77fa12e5b9e1f0e60a7e, codeobj_d91f4c6ec6ff77fa12e5b9e1f0e60a7e, module_chardet$mbcharsetprober, sizeof(void *) );
frame_d91f4c6ec6ff77fa12e5b9e1f0e60a7e = cache_frame_d91f4c6ec6ff77fa12e5b9e1f0e60a7e;
// Push the new frame as the currently active one.
pushFrameStack( frame_d91f4c6ec6ff77fa12e5b9e1f0e60a7e );
// Mark the frame object as in use, ref count 1 will be up for reuse.
assert( Py_REFCNT( frame_d91f4c6ec6ff77fa12e5b9e1f0e60a7e ) == 2 ); // Frame stack
// Framed code:
tmp_raise_type_1 = PyExc_NotImplementedError;
exception_type = tmp_raise_type_1;
Py_INCREF( tmp_raise_type_1 );
exception_lineno = 55;
RAISE_EXCEPTION_WITH_TYPE( &exception_type, &exception_value, &exception_tb );
type_description_1 = "o";
goto frame_exception_exit_1;
#if 0
RESTORE_FRAME_EXCEPTION( frame_d91f4c6ec6ff77fa12e5b9e1f0e60a7e );
#endif
// Put the previous frame back on top.
popFrameStack();
goto frame_no_exception_1;
frame_exception_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_d91f4c6ec6ff77fa12e5b9e1f0e60a7e );
#endif
if ( exception_tb == NULL )
{
exception_tb = MAKE_TRACEBACK( frame_d91f4c6ec6ff77fa12e5b9e1f0e60a7e, exception_lineno );
}
else if ( exception_tb->tb_frame != &frame_d91f4c6ec6ff77fa12e5b9e1f0e60a7e->m_frame )
{
exception_tb = ADD_TRACEBACK( exception_tb, frame_d91f4c6ec6ff77fa12e5b9e1f0e60a7e, exception_lineno );
}
// Attachs locals to frame if any.
Nuitka_Frame_AttachLocals(
(struct Nuitka_FrameObject *)frame_d91f4c6ec6ff77fa12e5b9e1f0e60a7e,
type_description_1,
par_self
);
// Release cached frame.
if ( frame_d91f4c6ec6ff77fa12e5b9e1f0e60a7e == cache_frame_d91f4c6ec6ff77fa12e5b9e1f0e60a7e )
{
Py_DECREF( frame_d91f4c6ec6ff77fa12e5b9e1f0e60a7e );
}
cache_frame_d91f4c6ec6ff77fa12e5b9e1f0e60a7e = NULL;
assertFrameObject( frame_d91f4c6ec6ff77fa12e5b9e1f0e60a7e );
// Put the previous frame back on top.
popFrameStack();
// Return the error.
goto try_except_handler_1;
frame_no_exception_1:;
// tried codes exits in all cases
NUITKA_CANNOT_GET_HERE( chardet$mbcharsetprober$$$function_3_charset_name );
return NULL;
// Exception handler code:
try_except_handler_1:;
exception_keeper_type_1 = exception_type;
exception_keeper_value_1 = exception_value;
exception_keeper_tb_1 = exception_tb;
exception_keeper_lineno_1 = exception_lineno;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
exception_lineno = 0;
CHECK_OBJECT( (PyObject *)par_self );
Py_DECREF( par_self );
par_self = NULL;
// Re-raise.
exception_type = exception_keeper_type_1;
exception_value = exception_keeper_value_1;
exception_tb = exception_keeper_tb_1;
exception_lineno = exception_keeper_lineno_1;
goto function_exception_exit;
// End of try:
// Return statement must have exited already.
NUITKA_CANNOT_GET_HERE( chardet$mbcharsetprober$$$function_3_charset_name );
return NULL;
function_exception_exit:
assert( exception_type );
RESTORE_ERROR_OCCURRED( exception_type, exception_value, exception_tb );
return NULL;
}
static PyObject *impl_chardet$mbcharsetprober$$$function_4_language( struct Nuitka_FunctionObject const *self, PyObject **python_pars )
{
// Preserve error status for checks
#ifndef __NUITKA_NO_ASSERT__
NUITKA_MAY_BE_UNUSED bool had_error = ERROR_OCCURRED();
#endif
// Local variable declarations.
PyObject *par_self = python_pars[ 0 ];
PyObject *exception_type = NULL;
PyObject *exception_value = NULL;
PyTracebackObject *exception_tb = NULL;
NUITKA_MAY_BE_UNUSED int exception_lineno = 0;
PyObject *exception_keeper_type_1;
PyObject *exception_keeper_value_1;
PyTracebackObject *exception_keeper_tb_1;
NUITKA_MAY_BE_UNUSED int exception_keeper_lineno_1;
PyObject *tmp_raise_type_1;
static struct Nuitka_FrameObject *cache_frame_a8bf066842fd616ec2410219ccb1fdb2 = NULL;
struct Nuitka_FrameObject *frame_a8bf066842fd616ec2410219ccb1fdb2;
NUITKA_MAY_BE_UNUSED char const *type_description_1 = NULL;
// Actual function code.
// Tried code:
MAKE_OR_REUSE_FRAME( cache_frame_a8bf066842fd616ec2410219ccb1fdb2, codeobj_a8bf066842fd616ec2410219ccb1fdb2, module_chardet$mbcharsetprober, sizeof(void *) );
frame_a8bf066842fd616ec2410219ccb1fdb2 = cache_frame_a8bf066842fd616ec2410219ccb1fdb2;
// Push the new frame as the currently active one.
pushFrameStack( frame_a8bf066842fd616ec2410219ccb1fdb2 );
// Mark the frame object as in use, ref count 1 will be up for reuse.
assert( Py_REFCNT( frame_a8bf066842fd616ec2410219ccb1fdb2 ) == 2 ); // Frame stack
// Framed code:
tmp_raise_type_1 = PyExc_NotImplementedError;
exception_type = tmp_raise_type_1;
Py_INCREF( tmp_raise_type_1 );
exception_lineno = 59;
RAISE_EXCEPTION_WITH_TYPE( &exception_type, &exception_value, &exception_tb );
type_description_1 = "o";
goto frame_exception_exit_1;
#if 0
RESTORE_FRAME_EXCEPTION( frame_a8bf066842fd616ec2410219ccb1fdb2 );
#endif
// Put the previous frame back on top.
popFrameStack();
goto frame_no_exception_1;
frame_exception_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_a8bf066842fd616ec2410219ccb1fdb2 );
#endif
if ( exception_tb == NULL )
{
exception_tb = MAKE_TRACEBACK( frame_a8bf066842fd616ec2410219ccb1fdb2, exception_lineno );
}
else if ( exception_tb->tb_frame != &frame_a8bf066842fd616ec2410219ccb1fdb2->m_frame )
{
exception_tb = ADD_TRACEBACK( exception_tb, frame_a8bf066842fd616ec2410219ccb1fdb2, exception_lineno );
}
// Attachs locals to frame if any.
Nuitka_Frame_AttachLocals(
(struct Nuitka_FrameObject *)frame_a8bf066842fd616ec2410219ccb1fdb2,
type_description_1,
par_self
);
// Release cached frame.
if ( frame_a8bf066842fd616ec2410219ccb1fdb2 == cache_frame_a8bf066842fd616ec2410219ccb1fdb2 )
{
Py_DECREF( frame_a8bf066842fd616ec2410219ccb1fdb2 );
}
cache_frame_a8bf066842fd616ec2410219ccb1fdb2 = NULL;
assertFrameObject( frame_a8bf066842fd616ec2410219ccb1fdb2 );
// Put the previous frame back on top.
popFrameStack();
// Return the error.
goto try_except_handler_1;
frame_no_exception_1:;
// tried codes exits in all cases
NUITKA_CANNOT_GET_HERE( chardet$mbcharsetprober$$$function_4_language );
return NULL;
// Exception handler code:
try_except_handler_1:;
exception_keeper_type_1 = exception_type;
exception_keeper_value_1 = exception_value;
exception_keeper_tb_1 = exception_tb;
exception_keeper_lineno_1 = exception_lineno;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
exception_lineno = 0;
CHECK_OBJECT( (PyObject *)par_self );
Py_DECREF( par_self );
par_self = NULL;
// Re-raise.
exception_type = exception_keeper_type_1;
exception_value = exception_keeper_value_1;
exception_tb = exception_keeper_tb_1;
exception_lineno = exception_keeper_lineno_1;
goto function_exception_exit;
// End of try:
// Return statement must have exited already.
NUITKA_CANNOT_GET_HERE( chardet$mbcharsetprober$$$function_4_language );
return NULL;
function_exception_exit:
assert( exception_type );
RESTORE_ERROR_OCCURRED( exception_type, exception_value, exception_tb );
return NULL;
}
static PyObject *impl_chardet$mbcharsetprober$$$function_5_feed( struct Nuitka_FunctionObject const *self, PyObject **python_pars )
{
// Preserve error status for checks
#ifndef __NUITKA_NO_ASSERT__
NUITKA_MAY_BE_UNUSED bool had_error = ERROR_OCCURRED();
#endif
// Local variable declarations.
PyObject *par_self = python_pars[ 0 ];
PyObject *par_byte_str = python_pars[ 1 ];
PyObject *var_i = NULL;
PyObject *var_coding_state = NULL;
PyObject *var_char_len = NULL;
PyObject *tmp_for_loop_1__for_iterator = NULL;
PyObject *tmp_for_loop_1__iter_value = NULL;
PyObject *exception_type = NULL;
PyObject *exception_value = NULL;
PyTracebackObject *exception_tb = NULL;
NUITKA_MAY_BE_UNUSED int exception_lineno = 0;
PyObject *exception_keeper_type_1;
PyObject *exception_keeper_value_1;
PyTracebackObject *exception_keeper_tb_1;
NUITKA_MAY_BE_UNUSED int exception_keeper_lineno_1;
PyObject *exception_keeper_type_2;
PyObject *exception_keeper_value_2;
PyTracebackObject *exception_keeper_tb_2;
NUITKA_MAY_BE_UNUSED int exception_keeper_lineno_2;
int tmp_and_left_truth_1;
PyObject *tmp_and_left_value_1;
PyObject *tmp_and_right_value_1;
PyObject *tmp_args_element_name_1;
PyObject *tmp_args_element_name_2;
PyObject *tmp_args_element_name_3;
PyObject *tmp_args_element_name_4;
PyObject *tmp_args_element_name_5;
PyObject *tmp_args_element_name_6;
PyObject *tmp_args_element_name_7;
PyObject *tmp_args_element_name_8;
PyObject *tmp_args_element_name_9;
PyObject *tmp_ass_subscribed_1;
PyObject *tmp_ass_subscribed_2;
PyObject *tmp_ass_subscript_1;
PyObject *tmp_ass_subscript_2;
int tmp_ass_subscript_res_1;
int tmp_ass_subscript_res_2;
PyObject *tmp_ass_subvalue_1;
PyObject *tmp_ass_subvalue_2;
PyObject *tmp_assattr_name_1;
PyObject *tmp_assattr_name_2;
PyObject *tmp_assattr_name_3;
PyObject *tmp_assattr_target_1;
PyObject *tmp_assattr_target_2;
PyObject *tmp_assattr_target_3;
PyObject *tmp_assign_source_1;
PyObject *tmp_assign_source_2;
PyObject *tmp_assign_source_3;
PyObject *tmp_assign_source_4;
PyObject *tmp_assign_source_5;
PyObject *tmp_called_instance_1;
PyObject *tmp_called_instance_2;
PyObject *tmp_called_instance_3;
PyObject *tmp_called_name_1;
PyObject *tmp_called_name_2;
PyObject *tmp_called_name_3;
PyObject *tmp_called_name_4;
int tmp_cmp_Eq_1;
int tmp_cmp_Eq_2;
int tmp_cmp_Eq_3;
int tmp_cmp_Eq_4;
int tmp_cmp_Eq_5;
PyObject *tmp_compare_left_1;
PyObject *tmp_compare_left_2;
PyObject *tmp_compare_left_3;
PyObject *tmp_compare_left_4;
PyObject *tmp_compare_left_5;
PyObject *tmp_compare_right_1;
PyObject *tmp_compare_right_2;
PyObject *tmp_compare_right_3;
PyObject *tmp_compare_right_4;
PyObject *tmp_compare_right_5;
PyObject *tmp_compexpr_left_1;
PyObject *tmp_compexpr_right_1;
int tmp_cond_truth_1;
PyObject *tmp_cond_value_1;
PyObject *tmp_iter_arg_1;
PyObject *tmp_left_name_1;
PyObject *tmp_left_name_2;
PyObject *tmp_len_arg_1;
PyObject *tmp_next_source_1;
bool tmp_result;
PyObject *tmp_return_value;
PyObject *tmp_right_name_1;
PyObject *tmp_right_name_2;
PyObject *tmp_source_name_1;
PyObject *tmp_source_name_2;
PyObject *tmp_source_name_3;
PyObject *tmp_source_name_4;
PyObject *tmp_source_name_5;
PyObject *tmp_source_name_6;
PyObject *tmp_source_name_7;
PyObject *tmp_source_name_8;
PyObject *tmp_source_name_9;
PyObject *tmp_source_name_10;
PyObject *tmp_source_name_11;
PyObject *tmp_source_name_12;
PyObject *tmp_source_name_13;
PyObject *tmp_source_name_14;
PyObject *tmp_source_name_15;
PyObject *tmp_source_name_16;
PyObject *tmp_source_name_17;
PyObject *tmp_source_name_18;
PyObject *tmp_source_name_19;
PyObject *tmp_source_name_20;
PyObject *tmp_source_name_21;
PyObject *tmp_source_name_22;
PyObject *tmp_source_name_23;
PyObject *tmp_source_name_24;
PyObject *tmp_source_name_25;
PyObject *tmp_start_name_1;
PyObject *tmp_step_name_1;
PyObject *tmp_stop_name_1;
PyObject *tmp_subscribed_name_1;
PyObject *tmp_subscribed_name_2;
PyObject *tmp_subscribed_name_3;
PyObject *tmp_subscribed_name_4;
PyObject *tmp_subscript_name_1;
PyObject *tmp_subscript_name_2;
PyObject *tmp_subscript_name_3;
PyObject *tmp_subscript_name_4;
NUITKA_MAY_BE_UNUSED PyObject *tmp_unused;
PyObject *tmp_xrange_low_1;
static struct Nuitka_FrameObject *cache_frame_aad834c3883bbd29ad16ace90397cd67 = NULL;
struct Nuitka_FrameObject *frame_aad834c3883bbd29ad16ace90397cd67;
NUITKA_MAY_BE_UNUSED char const *type_description_1 = NULL;
tmp_return_value = NULL;
// Actual function code.
// Tried code:
MAKE_OR_REUSE_FRAME( cache_frame_aad834c3883bbd29ad16ace90397cd67, codeobj_aad834c3883bbd29ad16ace90397cd67, module_chardet$mbcharsetprober, sizeof(void *)+sizeof(void *)+sizeof(void *)+sizeof(void *)+sizeof(void *) );
frame_aad834c3883bbd29ad16ace90397cd67 = cache_frame_aad834c3883bbd29ad16ace90397cd67;
// Push the new frame as the currently active one.
pushFrameStack( frame_aad834c3883bbd29ad16ace90397cd67 );
// Mark the frame object as in use, ref count 1 will be up for reuse.
assert( Py_REFCNT( frame_aad834c3883bbd29ad16ace90397cd67 ) == 2 ); // Frame stack
// Framed code:
tmp_len_arg_1 = par_byte_str;
CHECK_OBJECT( tmp_len_arg_1 );
tmp_xrange_low_1 = BUILTIN_LEN( tmp_len_arg_1 );
if ( tmp_xrange_low_1 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 62;
type_description_1 = "ooooo";
goto frame_exception_exit_1;
}
tmp_iter_arg_1 = BUILTIN_XRANGE1( tmp_xrange_low_1 );
Py_DECREF( tmp_xrange_low_1 );
if ( tmp_iter_arg_1 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 62;
type_description_1 = "ooooo";
goto frame_exception_exit_1;
}
tmp_assign_source_1 = MAKE_ITERATOR( tmp_iter_arg_1 );
Py_DECREF( tmp_iter_arg_1 );
if ( tmp_assign_source_1 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 62;
type_description_1 = "ooooo";
goto frame_exception_exit_1;
}
assert( tmp_for_loop_1__for_iterator == NULL );
tmp_for_loop_1__for_iterator = tmp_assign_source_1;
// Tried code:
loop_start_1:;
tmp_next_source_1 = tmp_for_loop_1__for_iterator;
CHECK_OBJECT( tmp_next_source_1 );
tmp_assign_source_2 = ITERATOR_NEXT( tmp_next_source_1 );
if ( tmp_assign_source_2 == NULL )
{
if ( CHECK_AND_CLEAR_STOP_ITERATION_OCCURRED() )
{
goto loop_end_1;
}
else
{
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
type_description_1 = "ooooo";
exception_lineno = 62;
goto try_except_handler_2;
}
}
{
PyObject *old = tmp_for_loop_1__iter_value;
tmp_for_loop_1__iter_value = tmp_assign_source_2;
Py_XDECREF( old );
}
tmp_assign_source_3 = tmp_for_loop_1__iter_value;
CHECK_OBJECT( tmp_assign_source_3 );
{
PyObject *old = var_i;
var_i = tmp_assign_source_3;
Py_INCREF( var_i );
Py_XDECREF( old );
}
tmp_source_name_2 = par_self;
if ( tmp_source_name_2 == NULL )
{
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "self" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 63;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
tmp_source_name_1 = LOOKUP_ATTRIBUTE( tmp_source_name_2, const_str_plain_coding_sm );
if ( tmp_source_name_1 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 63;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
tmp_called_name_1 = LOOKUP_ATTRIBUTE( tmp_source_name_1, const_str_plain_next_state );
Py_DECREF( tmp_source_name_1 );
if ( tmp_called_name_1 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 63;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
tmp_subscribed_name_1 = par_byte_str;
if ( tmp_subscribed_name_1 == NULL )
{
Py_DECREF( tmp_called_name_1 );
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "byte_str" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 63;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
tmp_subscript_name_1 = var_i;
if ( tmp_subscript_name_1 == NULL )
{
Py_DECREF( tmp_called_name_1 );
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "i" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 63;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
tmp_args_element_name_1 = LOOKUP_SUBSCRIPT( tmp_subscribed_name_1, tmp_subscript_name_1 );
if ( tmp_args_element_name_1 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
Py_DECREF( tmp_called_name_1 );
exception_lineno = 63;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
frame_aad834c3883bbd29ad16ace90397cd67->m_frame.f_lineno = 63;
{
PyObject *call_args[] = { tmp_args_element_name_1 };
tmp_assign_source_4 = CALL_FUNCTION_WITH_ARGS1( tmp_called_name_1, call_args );
}
Py_DECREF( tmp_called_name_1 );
Py_DECREF( tmp_args_element_name_1 );
if ( tmp_assign_source_4 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 63;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
{
PyObject *old = var_coding_state;
var_coding_state = tmp_assign_source_4;
Py_XDECREF( old );
}
tmp_compare_left_1 = var_coding_state;
CHECK_OBJECT( tmp_compare_left_1 );
tmp_source_name_3 = GET_STRING_DICT_VALUE( moduledict_chardet$mbcharsetprober, (Nuitka_StringObject *)const_str_plain_MachineState );
if (unlikely( tmp_source_name_3 == NULL ))
{
tmp_source_name_3 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_MachineState );
}
if ( tmp_source_name_3 == NULL )
{
exception_type = PyExc_NameError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "name '%s' is not defined", "MachineState" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 64;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
tmp_compare_right_1 = LOOKUP_ATTRIBUTE( tmp_source_name_3, const_str_plain_ERROR );
if ( tmp_compare_right_1 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 64;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
tmp_cmp_Eq_1 = RICH_COMPARE_BOOL_EQ( tmp_compare_left_1, tmp_compare_right_1 );
if ( tmp_cmp_Eq_1 == -1 )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
Py_DECREF( tmp_compare_right_1 );
exception_lineno = 64;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
Py_DECREF( tmp_compare_right_1 );
if ( tmp_cmp_Eq_1 == 1 )
{
goto branch_yes_1;
}
else
{
goto branch_no_1;
}
branch_yes_1:;
tmp_source_name_5 = par_self;
if ( tmp_source_name_5 == NULL )
{
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "self" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 65;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
tmp_source_name_4 = LOOKUP_ATTRIBUTE( tmp_source_name_5, const_str_plain_logger );
if ( tmp_source_name_4 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 65;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
tmp_called_name_2 = LOOKUP_ATTRIBUTE( tmp_source_name_4, const_str_plain_debug );
Py_DECREF( tmp_source_name_4 );
if ( tmp_called_name_2 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 65;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
tmp_args_element_name_2 = const_str_digest_1429e5140ade1e372a3e639fc28337a7;
tmp_source_name_6 = par_self;
if ( tmp_source_name_6 == NULL )
{
Py_DECREF( tmp_called_name_2 );
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "self" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 66;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
tmp_args_element_name_3 = LOOKUP_ATTRIBUTE( tmp_source_name_6, const_str_plain_charset_name );
if ( tmp_args_element_name_3 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
Py_DECREF( tmp_called_name_2 );
exception_lineno = 66;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
tmp_source_name_7 = par_self;
if ( tmp_source_name_7 == NULL )
{
Py_DECREF( tmp_called_name_2 );
Py_DECREF( tmp_args_element_name_3 );
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "self" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 66;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
tmp_args_element_name_4 = LOOKUP_ATTRIBUTE( tmp_source_name_7, const_str_plain_language );
if ( tmp_args_element_name_4 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
Py_DECREF( tmp_called_name_2 );
Py_DECREF( tmp_args_element_name_3 );
exception_lineno = 66;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
tmp_args_element_name_5 = var_i;
if ( tmp_args_element_name_5 == NULL )
{
Py_DECREF( tmp_called_name_2 );
Py_DECREF( tmp_args_element_name_3 );
Py_DECREF( tmp_args_element_name_4 );
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "i" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 66;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
frame_aad834c3883bbd29ad16ace90397cd67->m_frame.f_lineno = 65;
{
PyObject *call_args[] = { tmp_args_element_name_2, tmp_args_element_name_3, tmp_args_element_name_4, tmp_args_element_name_5 };
tmp_unused = CALL_FUNCTION_WITH_ARGS4( tmp_called_name_2, call_args );
}
Py_DECREF( tmp_called_name_2 );
Py_DECREF( tmp_args_element_name_3 );
Py_DECREF( tmp_args_element_name_4 );
if ( tmp_unused == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 65;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
Py_DECREF( tmp_unused );
tmp_source_name_8 = GET_STRING_DICT_VALUE( moduledict_chardet$mbcharsetprober, (Nuitka_StringObject *)const_str_plain_ProbingState );
if (unlikely( tmp_source_name_8 == NULL ))
{
tmp_source_name_8 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_ProbingState );
}
if ( tmp_source_name_8 == NULL )
{
exception_type = PyExc_NameError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "name '%s' is not defined", "ProbingState" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 67;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
tmp_assattr_name_1 = LOOKUP_ATTRIBUTE( tmp_source_name_8, const_str_plain_NOT_ME );
if ( tmp_assattr_name_1 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 67;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
tmp_assattr_target_1 = par_self;
if ( tmp_assattr_target_1 == NULL )
{
Py_DECREF( tmp_assattr_name_1 );
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "self" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 67;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
tmp_result = SET_ATTRIBUTE( tmp_assattr_target_1, const_str_plain__state, tmp_assattr_name_1 );
if ( tmp_result == false )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
Py_DECREF( tmp_assattr_name_1 );
exception_lineno = 67;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
Py_DECREF( tmp_assattr_name_1 );
goto loop_end_1;
goto branch_end_1;
branch_no_1:;
tmp_compare_left_2 = var_coding_state;
if ( tmp_compare_left_2 == NULL )
{
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "coding_state" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 69;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
tmp_source_name_9 = GET_STRING_DICT_VALUE( moduledict_chardet$mbcharsetprober, (Nuitka_StringObject *)const_str_plain_MachineState );
if (unlikely( tmp_source_name_9 == NULL ))
{
tmp_source_name_9 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_MachineState );
}
if ( tmp_source_name_9 == NULL )
{
exception_type = PyExc_NameError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "name '%s' is not defined", "MachineState" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 69;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
tmp_compare_right_2 = LOOKUP_ATTRIBUTE( tmp_source_name_9, const_str_plain_ITS_ME );
if ( tmp_compare_right_2 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 69;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
tmp_cmp_Eq_2 = RICH_COMPARE_BOOL_EQ( tmp_compare_left_2, tmp_compare_right_2 );
if ( tmp_cmp_Eq_2 == -1 )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
Py_DECREF( tmp_compare_right_2 );
exception_lineno = 69;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
Py_DECREF( tmp_compare_right_2 );
if ( tmp_cmp_Eq_2 == 1 )
{
goto branch_yes_2;
}
else
{
goto branch_no_2;
}
branch_yes_2:;
tmp_source_name_10 = GET_STRING_DICT_VALUE( moduledict_chardet$mbcharsetprober, (Nuitka_StringObject *)const_str_plain_ProbingState );
if (unlikely( tmp_source_name_10 == NULL ))
{
tmp_source_name_10 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_ProbingState );
}
if ( tmp_source_name_10 == NULL )
{
exception_type = PyExc_NameError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "name '%s' is not defined", "ProbingState" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 70;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
tmp_assattr_name_2 = LOOKUP_ATTRIBUTE( tmp_source_name_10, const_str_plain_FOUND_IT );
if ( tmp_assattr_name_2 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 70;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
tmp_assattr_target_2 = par_self;
if ( tmp_assattr_target_2 == NULL )
{
Py_DECREF( tmp_assattr_name_2 );
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "self" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 70;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
tmp_result = SET_ATTRIBUTE( tmp_assattr_target_2, const_str_plain__state, tmp_assattr_name_2 );
if ( tmp_result == false )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
Py_DECREF( tmp_assattr_name_2 );
exception_lineno = 70;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
Py_DECREF( tmp_assattr_name_2 );
goto loop_end_1;
goto branch_end_2;
branch_no_2:;
tmp_compare_left_3 = var_coding_state;
if ( tmp_compare_left_3 == NULL )
{
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "coding_state" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 72;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
tmp_source_name_11 = GET_STRING_DICT_VALUE( moduledict_chardet$mbcharsetprober, (Nuitka_StringObject *)const_str_plain_MachineState );
if (unlikely( tmp_source_name_11 == NULL ))
{
tmp_source_name_11 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_MachineState );
}
if ( tmp_source_name_11 == NULL )
{
exception_type = PyExc_NameError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "name '%s' is not defined", "MachineState" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 72;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
tmp_compare_right_3 = LOOKUP_ATTRIBUTE( tmp_source_name_11, const_str_plain_START );
if ( tmp_compare_right_3 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 72;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
tmp_cmp_Eq_3 = RICH_COMPARE_BOOL_EQ( tmp_compare_left_3, tmp_compare_right_3 );
if ( tmp_cmp_Eq_3 == -1 )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
Py_DECREF( tmp_compare_right_3 );
exception_lineno = 72;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
Py_DECREF( tmp_compare_right_3 );
if ( tmp_cmp_Eq_3 == 1 )
{
goto branch_yes_3;
}
else
{
goto branch_no_3;
}
branch_yes_3:;
tmp_source_name_12 = par_self;
if ( tmp_source_name_12 == NULL )
{
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "self" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 73;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
tmp_called_instance_1 = LOOKUP_ATTRIBUTE( tmp_source_name_12, const_str_plain_coding_sm );
if ( tmp_called_instance_1 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 73;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
frame_aad834c3883bbd29ad16ace90397cd67->m_frame.f_lineno = 73;
tmp_assign_source_5 = CALL_METHOD_NO_ARGS( tmp_called_instance_1, const_str_plain_get_current_charlen );
Py_DECREF( tmp_called_instance_1 );
if ( tmp_assign_source_5 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 73;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
{
PyObject *old = var_char_len;
var_char_len = tmp_assign_source_5;
Py_XDECREF( old );
}
tmp_compare_left_4 = var_i;
if ( tmp_compare_left_4 == NULL )
{
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "i" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 74;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
tmp_compare_right_4 = const_int_0;
tmp_cmp_Eq_4 = RICH_COMPARE_BOOL_EQ( tmp_compare_left_4, tmp_compare_right_4 );
if ( tmp_cmp_Eq_4 == -1 )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 74;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
if ( tmp_cmp_Eq_4 == 1 )
{
goto branch_yes_4;
}
else
{
goto branch_no_4;
}
branch_yes_4:;
tmp_subscribed_name_2 = par_byte_str;
if ( tmp_subscribed_name_2 == NULL )
{
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "byte_str" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 75;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
tmp_subscript_name_2 = const_int_0;
tmp_ass_subvalue_1 = LOOKUP_SUBSCRIPT( tmp_subscribed_name_2, tmp_subscript_name_2 );
if ( tmp_ass_subvalue_1 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 75;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
tmp_source_name_13 = par_self;
if ( tmp_source_name_13 == NULL )
{
Py_DECREF( tmp_ass_subvalue_1 );
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "self" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 75;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
tmp_ass_subscribed_1 = LOOKUP_ATTRIBUTE( tmp_source_name_13, const_str_plain__last_char );
if ( tmp_ass_subscribed_1 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
Py_DECREF( tmp_ass_subvalue_1 );
exception_lineno = 75;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
tmp_ass_subscript_1 = const_int_pos_1;
tmp_ass_subscript_res_1 = SET_SUBSCRIPT_CONST( tmp_ass_subscribed_1, tmp_ass_subscript_1, 1, tmp_ass_subvalue_1 );
Py_DECREF( tmp_ass_subscribed_1 );
Py_DECREF( tmp_ass_subvalue_1 );
if ( tmp_ass_subscript_res_1 == false )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 75;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
tmp_source_name_15 = par_self;
if ( tmp_source_name_15 == NULL )
{
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "self" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 76;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
tmp_source_name_14 = LOOKUP_ATTRIBUTE( tmp_source_name_15, const_str_plain_distribution_analyzer );
if ( tmp_source_name_14 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 76;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
tmp_called_name_3 = LOOKUP_ATTRIBUTE( tmp_source_name_14, const_str_plain_feed );
Py_DECREF( tmp_source_name_14 );
if ( tmp_called_name_3 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 76;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
tmp_source_name_16 = par_self;
if ( tmp_source_name_16 == NULL )
{
Py_DECREF( tmp_called_name_3 );
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "self" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 76;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
tmp_args_element_name_6 = LOOKUP_ATTRIBUTE( tmp_source_name_16, const_str_plain__last_char );
if ( tmp_args_element_name_6 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
Py_DECREF( tmp_called_name_3 );
exception_lineno = 76;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
tmp_args_element_name_7 = var_char_len;
if ( tmp_args_element_name_7 == NULL )
{
Py_DECREF( tmp_called_name_3 );
Py_DECREF( tmp_args_element_name_6 );
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "char_len" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 76;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
frame_aad834c3883bbd29ad16ace90397cd67->m_frame.f_lineno = 76;
{
PyObject *call_args[] = { tmp_args_element_name_6, tmp_args_element_name_7 };
tmp_unused = CALL_FUNCTION_WITH_ARGS2( tmp_called_name_3, call_args );
}
Py_DECREF( tmp_called_name_3 );
Py_DECREF( tmp_args_element_name_6 );
if ( tmp_unused == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 76;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
Py_DECREF( tmp_unused );
goto branch_end_4;
branch_no_4:;
tmp_source_name_18 = par_self;
if ( tmp_source_name_18 == NULL )
{
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "self" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 78;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
tmp_source_name_17 = LOOKUP_ATTRIBUTE( tmp_source_name_18, const_str_plain_distribution_analyzer );
if ( tmp_source_name_17 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 78;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
tmp_called_name_4 = LOOKUP_ATTRIBUTE( tmp_source_name_17, const_str_plain_feed );
Py_DECREF( tmp_source_name_17 );
if ( tmp_called_name_4 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 78;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
tmp_subscribed_name_3 = par_byte_str;
if ( tmp_subscribed_name_3 == NULL )
{
Py_DECREF( tmp_called_name_4 );
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "byte_str" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 78;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
tmp_left_name_1 = var_i;
if ( tmp_left_name_1 == NULL )
{
Py_DECREF( tmp_called_name_4 );
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "i" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 78;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
tmp_right_name_1 = const_int_pos_1;
tmp_start_name_1 = BINARY_OPERATION_SUB( tmp_left_name_1, tmp_right_name_1 );
if ( tmp_start_name_1 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
Py_DECREF( tmp_called_name_4 );
exception_lineno = 78;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
tmp_left_name_2 = var_i;
if ( tmp_left_name_2 == NULL )
{
Py_DECREF( tmp_called_name_4 );
Py_DECREF( tmp_start_name_1 );
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "i" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 78;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
tmp_right_name_2 = const_int_pos_1;
tmp_stop_name_1 = BINARY_OPERATION_ADD( tmp_left_name_2, tmp_right_name_2 );
if ( tmp_stop_name_1 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
Py_DECREF( tmp_called_name_4 );
Py_DECREF( tmp_start_name_1 );
exception_lineno = 78;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
tmp_step_name_1 = Py_None;
tmp_subscript_name_3 = MAKE_SLICEOBJ3( tmp_start_name_1, tmp_stop_name_1, tmp_step_name_1 );
Py_DECREF( tmp_start_name_1 );
Py_DECREF( tmp_stop_name_1 );
assert( tmp_subscript_name_3 != NULL );
tmp_args_element_name_8 = LOOKUP_SUBSCRIPT( tmp_subscribed_name_3, tmp_subscript_name_3 );
Py_DECREF( tmp_subscript_name_3 );
if ( tmp_args_element_name_8 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
Py_DECREF( tmp_called_name_4 );
exception_lineno = 78;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
tmp_args_element_name_9 = var_char_len;
if ( tmp_args_element_name_9 == NULL )
{
Py_DECREF( tmp_called_name_4 );
Py_DECREF( tmp_args_element_name_8 );
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "char_len" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 79;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
frame_aad834c3883bbd29ad16ace90397cd67->m_frame.f_lineno = 78;
{
PyObject *call_args[] = { tmp_args_element_name_8, tmp_args_element_name_9 };
tmp_unused = CALL_FUNCTION_WITH_ARGS2( tmp_called_name_4, call_args );
}
Py_DECREF( tmp_called_name_4 );
Py_DECREF( tmp_args_element_name_8 );
if ( tmp_unused == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 78;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
Py_DECREF( tmp_unused );
branch_end_4:;
branch_no_3:;
branch_end_2:;
branch_end_1:;
if ( CONSIDER_THREADING() == false )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 62;
type_description_1 = "ooooo";
goto try_except_handler_2;
}
goto loop_start_1;
loop_end_1:;
goto try_end_1;
// Exception handler code:
try_except_handler_2:;
exception_keeper_type_1 = exception_type;
exception_keeper_value_1 = exception_value;
exception_keeper_tb_1 = exception_tb;
exception_keeper_lineno_1 = exception_lineno;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
exception_lineno = 0;
Py_XDECREF( tmp_for_loop_1__iter_value );
tmp_for_loop_1__iter_value = NULL;
Py_XDECREF( tmp_for_loop_1__for_iterator );
tmp_for_loop_1__for_iterator = NULL;
// Re-raise.
exception_type = exception_keeper_type_1;
exception_value = exception_keeper_value_1;
exception_tb = exception_keeper_tb_1;
exception_lineno = exception_keeper_lineno_1;
goto frame_exception_exit_1;
// End of try:
try_end_1:;
Py_XDECREF( tmp_for_loop_1__iter_value );
tmp_for_loop_1__iter_value = NULL;
Py_XDECREF( tmp_for_loop_1__for_iterator );
tmp_for_loop_1__for_iterator = NULL;
tmp_subscribed_name_4 = par_byte_str;
if ( tmp_subscribed_name_4 == NULL )
{
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "byte_str" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 81;
type_description_1 = "ooooo";
goto frame_exception_exit_1;
}
tmp_subscript_name_4 = const_int_neg_1;
tmp_ass_subvalue_2 = LOOKUP_SUBSCRIPT( tmp_subscribed_name_4, tmp_subscript_name_4 );
if ( tmp_ass_subvalue_2 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 81;
type_description_1 = "ooooo";
goto frame_exception_exit_1;
}
tmp_source_name_19 = par_self;
if ( tmp_source_name_19 == NULL )
{
Py_DECREF( tmp_ass_subvalue_2 );
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "self" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 81;
type_description_1 = "ooooo";
goto frame_exception_exit_1;
}
tmp_ass_subscribed_2 = LOOKUP_ATTRIBUTE( tmp_source_name_19, const_str_plain__last_char );
if ( tmp_ass_subscribed_2 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
Py_DECREF( tmp_ass_subvalue_2 );
exception_lineno = 81;
type_description_1 = "ooooo";
goto frame_exception_exit_1;
}
tmp_ass_subscript_2 = const_int_0;
tmp_ass_subscript_res_2 = SET_SUBSCRIPT_CONST( tmp_ass_subscribed_2, tmp_ass_subscript_2, 0, tmp_ass_subvalue_2 );
Py_DECREF( tmp_ass_subscribed_2 );
Py_DECREF( tmp_ass_subvalue_2 );
if ( tmp_ass_subscript_res_2 == false )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 81;
type_description_1 = "ooooo";
goto frame_exception_exit_1;
}
tmp_source_name_20 = par_self;
if ( tmp_source_name_20 == NULL )
{
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "self" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 83;
type_description_1 = "ooooo";
goto frame_exception_exit_1;
}
tmp_compare_left_5 = LOOKUP_ATTRIBUTE( tmp_source_name_20, const_str_plain_state );
if ( tmp_compare_left_5 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 83;
type_description_1 = "ooooo";
goto frame_exception_exit_1;
}
tmp_source_name_21 = GET_STRING_DICT_VALUE( moduledict_chardet$mbcharsetprober, (Nuitka_StringObject *)const_str_plain_ProbingState );
if (unlikely( tmp_source_name_21 == NULL ))
{
tmp_source_name_21 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_ProbingState );
}
if ( tmp_source_name_21 == NULL )
{
Py_DECREF( tmp_compare_left_5 );
exception_type = PyExc_NameError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "name '%s' is not defined", "ProbingState" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 83;
type_description_1 = "ooooo";
goto frame_exception_exit_1;
}
tmp_compare_right_5 = LOOKUP_ATTRIBUTE( tmp_source_name_21, const_str_plain_DETECTING );
if ( tmp_compare_right_5 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
Py_DECREF( tmp_compare_left_5 );
exception_lineno = 83;
type_description_1 = "ooooo";
goto frame_exception_exit_1;
}
tmp_cmp_Eq_5 = RICH_COMPARE_BOOL_EQ( tmp_compare_left_5, tmp_compare_right_5 );
if ( tmp_cmp_Eq_5 == -1 )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
Py_DECREF( tmp_compare_left_5 );
Py_DECREF( tmp_compare_right_5 );
exception_lineno = 83;
type_description_1 = "ooooo";
goto frame_exception_exit_1;
}
Py_DECREF( tmp_compare_left_5 );
Py_DECREF( tmp_compare_right_5 );
if ( tmp_cmp_Eq_5 == 1 )
{
goto branch_yes_5;
}
else
{
goto branch_no_5;
}
branch_yes_5:;
tmp_source_name_22 = par_self;
if ( tmp_source_name_22 == NULL )
{
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "self" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 84;
type_description_1 = "ooooo";
goto frame_exception_exit_1;
}
tmp_called_instance_2 = LOOKUP_ATTRIBUTE( tmp_source_name_22, const_str_plain_distribution_analyzer );
if ( tmp_called_instance_2 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 84;
type_description_1 = "ooooo";
goto frame_exception_exit_1;
}
frame_aad834c3883bbd29ad16ace90397cd67->m_frame.f_lineno = 84;
tmp_and_left_value_1 = CALL_METHOD_NO_ARGS( tmp_called_instance_2, const_str_plain_got_enough_data );
Py_DECREF( tmp_called_instance_2 );
if ( tmp_and_left_value_1 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 84;
type_description_1 = "ooooo";
goto frame_exception_exit_1;
}
tmp_and_left_truth_1 = CHECK_IF_TRUE( tmp_and_left_value_1 );
if ( tmp_and_left_truth_1 == -1 )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
Py_DECREF( tmp_and_left_value_1 );
exception_lineno = 85;
type_description_1 = "ooooo";
goto frame_exception_exit_1;
}
if ( tmp_and_left_truth_1 == 1 )
{
goto and_right_1;
}
else
{
goto and_left_1;
}
and_right_1:;
Py_DECREF( tmp_and_left_value_1 );
tmp_called_instance_3 = par_self;
if ( tmp_called_instance_3 == NULL )
{
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "self" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 85;
type_description_1 = "ooooo";
goto frame_exception_exit_1;
}
frame_aad834c3883bbd29ad16ace90397cd67->m_frame.f_lineno = 85;
tmp_compexpr_left_1 = CALL_METHOD_NO_ARGS( tmp_called_instance_3, const_str_plain_get_confidence );
if ( tmp_compexpr_left_1 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 85;
type_description_1 = "ooooo";
goto frame_exception_exit_1;
}
tmp_source_name_23 = par_self;
if ( tmp_source_name_23 == NULL )
{
Py_DECREF( tmp_compexpr_left_1 );
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "self" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 85;
type_description_1 = "ooooo";
goto frame_exception_exit_1;
}
tmp_compexpr_right_1 = LOOKUP_ATTRIBUTE( tmp_source_name_23, const_str_plain_SHORTCUT_THRESHOLD );
if ( tmp_compexpr_right_1 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
Py_DECREF( tmp_compexpr_left_1 );
exception_lineno = 85;
type_description_1 = "ooooo";
goto frame_exception_exit_1;
}
tmp_and_right_value_1 = RICH_COMPARE_GT( tmp_compexpr_left_1, tmp_compexpr_right_1 );
Py_DECREF( tmp_compexpr_left_1 );
Py_DECREF( tmp_compexpr_right_1 );
if ( tmp_and_right_value_1 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 85;
type_description_1 = "ooooo";
goto frame_exception_exit_1;
}
tmp_cond_value_1 = tmp_and_right_value_1;
goto and_end_1;
and_left_1:;
tmp_cond_value_1 = tmp_and_left_value_1;
and_end_1:;
tmp_cond_truth_1 = CHECK_IF_TRUE( tmp_cond_value_1 );
if ( tmp_cond_truth_1 == -1 )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
Py_DECREF( tmp_cond_value_1 );
exception_lineno = 85;
type_description_1 = "ooooo";
goto frame_exception_exit_1;
}
Py_DECREF( tmp_cond_value_1 );
if ( tmp_cond_truth_1 == 1 )
{
goto branch_yes_6;
}
else
{
goto branch_no_6;
}
branch_yes_6:;
tmp_source_name_24 = GET_STRING_DICT_VALUE( moduledict_chardet$mbcharsetprober, (Nuitka_StringObject *)const_str_plain_ProbingState );
if (unlikely( tmp_source_name_24 == NULL ))
{
tmp_source_name_24 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_ProbingState );
}
if ( tmp_source_name_24 == NULL )
{
exception_type = PyExc_NameError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "name '%s' is not defined", "ProbingState" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 86;
type_description_1 = "ooooo";
goto frame_exception_exit_1;
}
tmp_assattr_name_3 = LOOKUP_ATTRIBUTE( tmp_source_name_24, const_str_plain_FOUND_IT );
if ( tmp_assattr_name_3 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 86;
type_description_1 = "ooooo";
goto frame_exception_exit_1;
}
tmp_assattr_target_3 = par_self;
if ( tmp_assattr_target_3 == NULL )
{
Py_DECREF( tmp_assattr_name_3 );
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "self" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 86;
type_description_1 = "ooooo";
goto frame_exception_exit_1;
}
tmp_result = SET_ATTRIBUTE( tmp_assattr_target_3, const_str_plain__state, tmp_assattr_name_3 );
if ( tmp_result == false )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
Py_DECREF( tmp_assattr_name_3 );
exception_lineno = 86;
type_description_1 = "ooooo";
goto frame_exception_exit_1;
}
Py_DECREF( tmp_assattr_name_3 );
branch_no_6:;
branch_no_5:;
tmp_source_name_25 = par_self;
if ( tmp_source_name_25 == NULL )
{
exception_type = PyExc_UnboundLocalError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "local variable '%s' referenced before assignment", "self" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 88;
type_description_1 = "ooooo";
goto frame_exception_exit_1;
}
tmp_return_value = LOOKUP_ATTRIBUTE( tmp_source_name_25, const_str_plain_state );
if ( tmp_return_value == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 88;
type_description_1 = "ooooo";
goto frame_exception_exit_1;
}
goto frame_return_exit_1;
#if 0
RESTORE_FRAME_EXCEPTION( frame_aad834c3883bbd29ad16ace90397cd67 );
#endif
// Put the previous frame back on top.
popFrameStack();
goto frame_no_exception_1;
frame_return_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_aad834c3883bbd29ad16ace90397cd67 );
#endif
// Put the previous frame back on top.
popFrameStack();
goto try_return_handler_1;
frame_exception_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_aad834c3883bbd29ad16ace90397cd67 );
#endif
if ( exception_tb == NULL )
{
exception_tb = MAKE_TRACEBACK( frame_aad834c3883bbd29ad16ace90397cd67, exception_lineno );
}
else if ( exception_tb->tb_frame != &frame_aad834c3883bbd29ad16ace90397cd67->m_frame )
{
exception_tb = ADD_TRACEBACK( exception_tb, frame_aad834c3883bbd29ad16ace90397cd67, exception_lineno );
}
// Attachs locals to frame if any.
Nuitka_Frame_AttachLocals(
(struct Nuitka_FrameObject *)frame_aad834c3883bbd29ad16ace90397cd67,
type_description_1,
par_self,
par_byte_str,
var_i,
var_coding_state,
var_char_len
);
// Release cached frame.
if ( frame_aad834c3883bbd29ad16ace90397cd67 == cache_frame_aad834c3883bbd29ad16ace90397cd67 )
{
Py_DECREF( frame_aad834c3883bbd29ad16ace90397cd67 );
}
cache_frame_aad834c3883bbd29ad16ace90397cd67 = NULL;
assertFrameObject( frame_aad834c3883bbd29ad16ace90397cd67 );
// Put the previous frame back on top.
popFrameStack();
// Return the error.
goto try_except_handler_1;
frame_no_exception_1:;
// tried codes exits in all cases
NUITKA_CANNOT_GET_HERE( chardet$mbcharsetprober$$$function_5_feed );
return NULL;
// Return handler code:
try_return_handler_1:;
Py_XDECREF( par_self );
par_self = NULL;
Py_XDECREF( par_byte_str );
par_byte_str = NULL;
Py_XDECREF( var_i );
var_i = NULL;
Py_XDECREF( var_coding_state );
var_coding_state = NULL;
Py_XDECREF( var_char_len );
var_char_len = NULL;
goto function_return_exit;
// Exception handler code:
try_except_handler_1:;
exception_keeper_type_2 = exception_type;
exception_keeper_value_2 = exception_value;
exception_keeper_tb_2 = exception_tb;
exception_keeper_lineno_2 = exception_lineno;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
exception_lineno = 0;
Py_XDECREF( par_self );
par_self = NULL;
Py_XDECREF( par_byte_str );
par_byte_str = NULL;
Py_XDECREF( var_i );
var_i = NULL;
Py_XDECREF( var_coding_state );
var_coding_state = NULL;
Py_XDECREF( var_char_len );
var_char_len = NULL;
// Re-raise.
exception_type = exception_keeper_type_2;
exception_value = exception_keeper_value_2;
exception_tb = exception_keeper_tb_2;
exception_lineno = exception_keeper_lineno_2;
goto function_exception_exit;
// End of try:
// Return statement must have exited already.
NUITKA_CANNOT_GET_HERE( chardet$mbcharsetprober$$$function_5_feed );
return NULL;
function_exception_exit:
assert( exception_type );
RESTORE_ERROR_OCCURRED( exception_type, exception_value, exception_tb );
return NULL;
function_return_exit:
CHECK_OBJECT( tmp_return_value );
assert( had_error || !ERROR_OCCURRED() );
return tmp_return_value;
}
static PyObject *impl_chardet$mbcharsetprober$$$function_6_get_confidence( struct Nuitka_FunctionObject const *self, PyObject **python_pars )
{
// Preserve error status for checks
#ifndef __NUITKA_NO_ASSERT__
NUITKA_MAY_BE_UNUSED bool had_error = ERROR_OCCURRED();
#endif
// Local variable declarations.
PyObject *par_self = python_pars[ 0 ];
PyObject *exception_type = NULL;
PyObject *exception_value = NULL;
PyTracebackObject *exception_tb = NULL;
NUITKA_MAY_BE_UNUSED int exception_lineno = 0;
PyObject *exception_keeper_type_1;
PyObject *exception_keeper_value_1;
PyTracebackObject *exception_keeper_tb_1;
NUITKA_MAY_BE_UNUSED int exception_keeper_lineno_1;
PyObject *tmp_called_instance_1;
PyObject *tmp_return_value;
PyObject *tmp_source_name_1;
static struct Nuitka_FrameObject *cache_frame_3e8fd47512e5c72aa02623e3f7e21d03 = NULL;
struct Nuitka_FrameObject *frame_3e8fd47512e5c72aa02623e3f7e21d03;
NUITKA_MAY_BE_UNUSED char const *type_description_1 = NULL;
tmp_return_value = NULL;
// Actual function code.
// Tried code:
MAKE_OR_REUSE_FRAME( cache_frame_3e8fd47512e5c72aa02623e3f7e21d03, codeobj_3e8fd47512e5c72aa02623e3f7e21d03, module_chardet$mbcharsetprober, sizeof(void *) );
frame_3e8fd47512e5c72aa02623e3f7e21d03 = cache_frame_3e8fd47512e5c72aa02623e3f7e21d03;
// Push the new frame as the currently active one.
pushFrameStack( frame_3e8fd47512e5c72aa02623e3f7e21d03 );
// Mark the frame object as in use, ref count 1 will be up for reuse.
assert( Py_REFCNT( frame_3e8fd47512e5c72aa02623e3f7e21d03 ) == 2 ); // Frame stack
// Framed code:
tmp_source_name_1 = par_self;
CHECK_OBJECT( tmp_source_name_1 );
tmp_called_instance_1 = LOOKUP_ATTRIBUTE( tmp_source_name_1, const_str_plain_distribution_analyzer );
if ( tmp_called_instance_1 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 91;
type_description_1 = "o";
goto frame_exception_exit_1;
}
frame_3e8fd47512e5c72aa02623e3f7e21d03->m_frame.f_lineno = 91;
tmp_return_value = CALL_METHOD_NO_ARGS( tmp_called_instance_1, const_str_plain_get_confidence );
Py_DECREF( tmp_called_instance_1 );
if ( tmp_return_value == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 91;
type_description_1 = "o";
goto frame_exception_exit_1;
}
goto frame_return_exit_1;
#if 0
RESTORE_FRAME_EXCEPTION( frame_3e8fd47512e5c72aa02623e3f7e21d03 );
#endif
// Put the previous frame back on top.
popFrameStack();
goto frame_no_exception_1;
frame_return_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_3e8fd47512e5c72aa02623e3f7e21d03 );
#endif
// Put the previous frame back on top.
popFrameStack();
goto try_return_handler_1;
frame_exception_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_3e8fd47512e5c72aa02623e3f7e21d03 );
#endif
if ( exception_tb == NULL )
{
exception_tb = MAKE_TRACEBACK( frame_3e8fd47512e5c72aa02623e3f7e21d03, exception_lineno );
}
else if ( exception_tb->tb_frame != &frame_3e8fd47512e5c72aa02623e3f7e21d03->m_frame )
{
exception_tb = ADD_TRACEBACK( exception_tb, frame_3e8fd47512e5c72aa02623e3f7e21d03, exception_lineno );
}
// Attachs locals to frame if any.
Nuitka_Frame_AttachLocals(
(struct Nuitka_FrameObject *)frame_3e8fd47512e5c72aa02623e3f7e21d03,
type_description_1,
par_self
);
// Release cached frame.
if ( frame_3e8fd47512e5c72aa02623e3f7e21d03 == cache_frame_3e8fd47512e5c72aa02623e3f7e21d03 )
{
Py_DECREF( frame_3e8fd47512e5c72aa02623e3f7e21d03 );
}
cache_frame_3e8fd47512e5c72aa02623e3f7e21d03 = NULL;
assertFrameObject( frame_3e8fd47512e5c72aa02623e3f7e21d03 );
// Put the previous frame back on top.
popFrameStack();
// Return the error.
goto try_except_handler_1;
frame_no_exception_1:;
// tried codes exits in all cases
NUITKA_CANNOT_GET_HERE( chardet$mbcharsetprober$$$function_6_get_confidence );
return NULL;
// Return handler code:
try_return_handler_1:;
Py_XDECREF( par_self );
par_self = NULL;
goto function_return_exit;
// Exception handler code:
try_except_handler_1:;
exception_keeper_type_1 = exception_type;
exception_keeper_value_1 = exception_value;
exception_keeper_tb_1 = exception_tb;
exception_keeper_lineno_1 = exception_lineno;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
exception_lineno = 0;
Py_XDECREF( par_self );
par_self = NULL;
// Re-raise.
exception_type = exception_keeper_type_1;
exception_value = exception_keeper_value_1;
exception_tb = exception_keeper_tb_1;
exception_lineno = exception_keeper_lineno_1;
goto function_exception_exit;
// End of try:
// Return statement must have exited already.
NUITKA_CANNOT_GET_HERE( chardet$mbcharsetprober$$$function_6_get_confidence );
return NULL;
function_exception_exit:
assert( exception_type );
RESTORE_ERROR_OCCURRED( exception_type, exception_value, exception_tb );
return NULL;
function_return_exit:
CHECK_OBJECT( tmp_return_value );
assert( had_error || !ERROR_OCCURRED() );
return tmp_return_value;
}
static PyObject *MAKE_FUNCTION_chardet$mbcharsetprober$$$function_1___init__( PyObject *defaults )
{
struct Nuitka_FunctionObject *result = Nuitka_Function_New(
impl_chardet$mbcharsetprober$$$function_1___init__,
const_str_plain___init__,
#if PYTHON_VERSION >= 330
const_str_digest_6f1baf15df8445318d8c220eb253edca,
#endif
codeobj_6a5ac47f0c8e907ba3ef263080e935df,
defaults,
#if PYTHON_VERSION >= 300
NULL,
const_dict_empty,
#endif
module_chardet$mbcharsetprober,
Py_None,
0
);
return (PyObject *)result;
}
static PyObject *MAKE_FUNCTION_chardet$mbcharsetprober$$$function_2_reset( )
{
struct Nuitka_FunctionObject *result = Nuitka_Function_New(
impl_chardet$mbcharsetprober$$$function_2_reset,
const_str_plain_reset,
#if PYTHON_VERSION >= 330
const_str_digest_61a174b77573156efff777524dfe1dec,
#endif
codeobj_589887e6b1e7ebe7a3d42e4a5ad58304,
NULL,
#if PYTHON_VERSION >= 300
NULL,
const_dict_empty,
#endif
module_chardet$mbcharsetprober,
Py_None,
0
);
return (PyObject *)result;
}
static PyObject *MAKE_FUNCTION_chardet$mbcharsetprober$$$function_3_charset_name( )
{
struct Nuitka_FunctionObject *result = Nuitka_Function_New(
impl_chardet$mbcharsetprober$$$function_3_charset_name,
const_str_plain_charset_name,
#if PYTHON_VERSION >= 330
const_str_digest_3ddf8d5c282bdeac5d53fd114bcd835b,
#endif
codeobj_d91f4c6ec6ff77fa12e5b9e1f0e60a7e,
NULL,
#if PYTHON_VERSION >= 300
NULL,
const_dict_empty,
#endif
module_chardet$mbcharsetprober,
Py_None,
0
);
return (PyObject *)result;
}
static PyObject *MAKE_FUNCTION_chardet$mbcharsetprober$$$function_4_language( )
{
struct Nuitka_FunctionObject *result = Nuitka_Function_New(
impl_chardet$mbcharsetprober$$$function_4_language,
const_str_plain_language,
#if PYTHON_VERSION >= 330
const_str_digest_1d44aff74beb8e3c9dd86f393c7a5a15,
#endif
codeobj_a8bf066842fd616ec2410219ccb1fdb2,
NULL,
#if PYTHON_VERSION >= 300
NULL,
const_dict_empty,
#endif
module_chardet$mbcharsetprober,
Py_None,
0
);
return (PyObject *)result;
}
static PyObject *MAKE_FUNCTION_chardet$mbcharsetprober$$$function_5_feed( )
{
struct Nuitka_FunctionObject *result = Nuitka_Function_New(
impl_chardet$mbcharsetprober$$$function_5_feed,
const_str_plain_feed,
#if PYTHON_VERSION >= 330
const_str_digest_5bb604a6fa08213fb46a067ba2f06b41,
#endif
codeobj_aad834c3883bbd29ad16ace90397cd67,
NULL,
#if PYTHON_VERSION >= 300
NULL,
const_dict_empty,
#endif
module_chardet$mbcharsetprober,
Py_None,
0
);
return (PyObject *)result;
}
static PyObject *MAKE_FUNCTION_chardet$mbcharsetprober$$$function_6_get_confidence( )
{
struct Nuitka_FunctionObject *result = Nuitka_Function_New(
impl_chardet$mbcharsetprober$$$function_6_get_confidence,
const_str_plain_get_confidence,
#if PYTHON_VERSION >= 330
const_str_digest_05f579e7d93f0ea609a30c57e29572b0,
#endif
codeobj_3e8fd47512e5c72aa02623e3f7e21d03,
NULL,
#if PYTHON_VERSION >= 300
NULL,
const_dict_empty,
#endif
module_chardet$mbcharsetprober,
Py_None,
0
);
return (PyObject *)result;
}
#if PYTHON_VERSION >= 300
static struct PyModuleDef mdef_chardet$mbcharsetprober =
{
PyModuleDef_HEAD_INIT,
"chardet.mbcharsetprober", /* m_name */
NULL, /* m_doc */
-1, /* m_size */
NULL, /* m_methods */
NULL, /* m_reload */
NULL, /* m_traverse */
NULL, /* m_clear */
NULL, /* m_free */
};
#endif
#if PYTHON_VERSION >= 300
extern PyObject *metapath_based_loader;
#endif
#if PYTHON_VERSION >= 330
extern PyObject *const_str_plain___loader__;
#endif
extern void _initCompiledCellType();
extern void _initCompiledGeneratorType();
extern void _initCompiledFunctionType();
extern void _initCompiledMethodType();
extern void _initCompiledFrameType();
#if PYTHON_VERSION >= 350
extern void _initCompiledCoroutineTypes();
#endif
#if PYTHON_VERSION >= 360
extern void _initCompiledAsyncgenTypes();
#endif
// The exported interface to CPython. On import of the module, this function
// gets called. It has to have an exact function name, in cases it's a shared
// library export. This is hidden behind the MOD_INIT_DECL.
MOD_INIT_DECL( chardet$mbcharsetprober )
{
#if defined(_NUITKA_EXE) || PYTHON_VERSION >= 300
static bool _init_done = false;
// Modules might be imported repeatedly, which is to be ignored.
if ( _init_done )
{
return MOD_RETURN_VALUE( module_chardet$mbcharsetprober );
}
else
{
_init_done = true;
}
#endif
#ifdef _NUITKA_MODULE
// In case of a stand alone extension module, need to call initialization
// the init here because that's the first and only time we are going to get
// called here.
// Initialize the constant values used.
_initBuiltinModule();
createGlobalConstants();
/* Initialize the compiled types of Nuitka. */
_initCompiledCellType();
_initCompiledGeneratorType();
_initCompiledFunctionType();
_initCompiledMethodType();
_initCompiledFrameType();
#if PYTHON_VERSION >= 350
_initCompiledCoroutineTypes();
#endif
#if PYTHON_VERSION >= 360
_initCompiledAsyncgenTypes();
#endif
#if PYTHON_VERSION < 300
_initSlotCompare();
#endif
#if PYTHON_VERSION >= 270
_initSlotIternext();
#endif
patchBuiltinModule();
patchTypeComparison();
// Enable meta path based loader if not already done.
setupMetaPathBasedLoader();
#if PYTHON_VERSION >= 300
patchInspectModule();
#endif
#endif
/* The constants only used by this module are created now. */
#ifdef _NUITKA_TRACE
puts("chardet.mbcharsetprober: Calling createModuleConstants().");
#endif
createModuleConstants();
/* The code objects used by this module are created now. */
#ifdef _NUITKA_TRACE
puts("chardet.mbcharsetprober: Calling createModuleCodeObjects().");
#endif
createModuleCodeObjects();
// puts( "in initchardet$mbcharsetprober" );
// Create the module object first. There are no methods initially, all are
// added dynamically in actual code only. Also no "__doc__" is initially
// set at this time, as it could not contain NUL characters this way, they
// are instead set in early module code. No "self" for modules, we have no
// use for it.
#if PYTHON_VERSION < 300
module_chardet$mbcharsetprober = Py_InitModule4(
"chardet.mbcharsetprober", // Module Name
NULL, // No methods initially, all are added
// dynamically in actual module code only.
NULL, // No __doc__ is initially set, as it could
// not contain NUL this way, added early in
// actual code.
NULL, // No self for modules, we don't use it.
PYTHON_API_VERSION
);
#else
module_chardet$mbcharsetprober = PyModule_Create( &mdef_chardet$mbcharsetprober );
#endif
moduledict_chardet$mbcharsetprober = MODULE_DICT( module_chardet$mbcharsetprober );
CHECK_OBJECT( module_chardet$mbcharsetprober );
// Seems to work for Python2.7 out of the box, but for Python3, the module
// doesn't automatically enter "sys.modules", so do it manually.
#if PYTHON_VERSION >= 300
{
int r = PyObject_SetItem( PySys_GetObject( (char *)"modules" ), const_str_digest_6ee41268d4b92b2b6983eb1cc1ee4d07, module_chardet$mbcharsetprober );
assert( r != -1 );
}
#endif
// For deep importing of a module we need to have "__builtins__", so we set
// it ourselves in the same way than CPython does. Note: This must be done
// before the frame object is allocated, or else it may fail.
if ( GET_STRING_DICT_VALUE( moduledict_chardet$mbcharsetprober, (Nuitka_StringObject *)const_str_plain___builtins__ ) == NULL )
{
PyObject *value = (PyObject *)builtin_module;
// Check if main module, not a dict then but the module itself.
#if !defined(_NUITKA_EXE) || !0
value = PyModule_GetDict( value );
#endif
UPDATE_STRING_DICT0( moduledict_chardet$mbcharsetprober, (Nuitka_StringObject *)const_str_plain___builtins__, value );
}
#if PYTHON_VERSION >= 330
UPDATE_STRING_DICT0( moduledict_chardet$mbcharsetprober, (Nuitka_StringObject *)const_str_plain___loader__, metapath_based_loader );
#endif
// Temp variables if any
PyObject *outline_0_var___class__ = NULL;
PyObject *outline_0_var___qualname__ = NULL;
PyObject *outline_0_var___module__ = NULL;
PyObject *outline_0_var___doc__ = NULL;
PyObject *outline_0_var___init__ = NULL;
PyObject *outline_0_var_reset = NULL;
PyObject *outline_0_var_charset_name = NULL;
PyObject *outline_0_var_language = NULL;
PyObject *outline_0_var_feed = NULL;
PyObject *outline_0_var_get_confidence = NULL;
PyObject *tmp_class_creation_1__bases = NULL;
PyObject *tmp_class_creation_1__class_decl_dict = NULL;
PyObject *tmp_class_creation_1__metaclass = NULL;
PyObject *tmp_class_creation_1__prepared = NULL;
PyObject *tmp_import_from_1__module = NULL;
PyObject *exception_type = NULL;
PyObject *exception_value = NULL;
PyTracebackObject *exception_tb = NULL;
NUITKA_MAY_BE_UNUSED int exception_lineno = 0;
PyObject *exception_keeper_type_1;
PyObject *exception_keeper_value_1;
PyTracebackObject *exception_keeper_tb_1;
NUITKA_MAY_BE_UNUSED int exception_keeper_lineno_1;
PyObject *exception_keeper_type_2;
PyObject *exception_keeper_value_2;
PyTracebackObject *exception_keeper_tb_2;
NUITKA_MAY_BE_UNUSED int exception_keeper_lineno_2;
PyObject *exception_keeper_type_3;
PyObject *exception_keeper_value_3;
PyTracebackObject *exception_keeper_tb_3;
NUITKA_MAY_BE_UNUSED int exception_keeper_lineno_3;
PyObject *tmp_args_element_name_1;
PyObject *tmp_args_element_name_2;
PyObject *tmp_args_element_name_3;
PyObject *tmp_args_element_name_4;
PyObject *tmp_args_name_1;
PyObject *tmp_args_name_2;
PyObject *tmp_assign_source_1;
PyObject *tmp_assign_source_2;
PyObject *tmp_assign_source_3;
PyObject *tmp_assign_source_4;
PyObject *tmp_assign_source_5;
PyObject *tmp_assign_source_6;
PyObject *tmp_assign_source_7;
PyObject *tmp_assign_source_8;
PyObject *tmp_assign_source_9;
PyObject *tmp_assign_source_10;
PyObject *tmp_assign_source_11;
PyObject *tmp_assign_source_12;
PyObject *tmp_assign_source_13;
PyObject *tmp_assign_source_14;
PyObject *tmp_assign_source_15;
PyObject *tmp_assign_source_16;
PyObject *tmp_assign_source_17;
PyObject *tmp_assign_source_18;
PyObject *tmp_assign_source_19;
PyObject *tmp_assign_source_20;
PyObject *tmp_assign_source_21;
PyObject *tmp_assign_source_22;
PyObject *tmp_assign_source_23;
PyObject *tmp_assign_source_24;
PyObject *tmp_assign_source_25;
PyObject *tmp_bases_name_1;
PyObject *tmp_called_name_1;
PyObject *tmp_called_name_2;
PyObject *tmp_called_name_3;
PyObject *tmp_called_name_4;
PyObject *tmp_called_name_5;
int tmp_cmp_In_1;
int tmp_cmp_In_2;
PyObject *tmp_compare_left_1;
PyObject *tmp_compare_left_2;
PyObject *tmp_compare_right_1;
PyObject *tmp_compare_right_2;
int tmp_cond_truth_1;
PyObject *tmp_cond_value_1;
PyObject *tmp_defaults_1;
PyObject *tmp_dict_name_1;
PyObject *tmp_dictdel_dict;
PyObject *tmp_dictdel_key;
PyObject *tmp_fromlist_name_1;
PyObject *tmp_fromlist_name_2;
PyObject *tmp_globals_name_1;
PyObject *tmp_globals_name_2;
PyObject *tmp_hasattr_attr_1;
PyObject *tmp_hasattr_source_1;
PyObject *tmp_import_name_from_1;
PyObject *tmp_import_name_from_2;
PyObject *tmp_import_name_from_3;
PyObject *tmp_key_name_1;
PyObject *tmp_kw_name_1;
PyObject *tmp_kw_name_2;
PyObject *tmp_level_name_1;
PyObject *tmp_level_name_2;
PyObject *tmp_locals_name_1;
PyObject *tmp_locals_name_2;
PyObject *tmp_metaclass_name_1;
PyObject *tmp_name_name_1;
PyObject *tmp_name_name_2;
PyObject *tmp_outline_return_value_1;
int tmp_res;
bool tmp_result;
PyObject *tmp_set_locals;
PyObject *tmp_source_name_1;
PyObject *tmp_subscribed_name_1;
PyObject *tmp_subscript_name_1;
PyObject *tmp_tuple_element_1;
PyObject *tmp_tuple_element_2;
PyObject *tmp_tuple_element_3;
PyObject *tmp_type_arg_1;
static struct Nuitka_FrameObject *cache_frame_1ab9434394b7f9093caddb7913aaba8a_2 = NULL;
struct Nuitka_FrameObject *frame_1ab9434394b7f9093caddb7913aaba8a_2;
struct Nuitka_FrameObject *frame_04d74fa3171abaef4f85c5a473efcda0;
NUITKA_MAY_BE_UNUSED char const *type_description_1 = NULL;
NUITKA_MAY_BE_UNUSED char const *type_description_2 = NULL;
tmp_outline_return_value_1 = NULL;
// Locals dictionary setup.
PyObject *locals_dict_1 = PyDict_New();
// Module code.
tmp_assign_source_1 = Py_None;
UPDATE_STRING_DICT0( moduledict_chardet$mbcharsetprober, (Nuitka_StringObject *)const_str_plain___doc__, tmp_assign_source_1 );
tmp_assign_source_2 = module_filename_obj;
UPDATE_STRING_DICT0( moduledict_chardet$mbcharsetprober, (Nuitka_StringObject *)const_str_plain___file__, tmp_assign_source_2 );
tmp_assign_source_3 = metapath_based_loader;
UPDATE_STRING_DICT0( moduledict_chardet$mbcharsetprober, (Nuitka_StringObject *)const_str_plain___loader__, tmp_assign_source_3 );
// Frame without reuse.
frame_04d74fa3171abaef4f85c5a473efcda0 = MAKE_MODULE_FRAME( codeobj_04d74fa3171abaef4f85c5a473efcda0, module_chardet$mbcharsetprober );
// Push the new frame as the currently active one, and we should be exclusively
// owning it.
pushFrameStack( frame_04d74fa3171abaef4f85c5a473efcda0 );
assert( Py_REFCNT( frame_04d74fa3171abaef4f85c5a473efcda0 ) == 2 );
// Framed code:
frame_04d74fa3171abaef4f85c5a473efcda0->m_frame.f_lineno = 1;
{
PyObject *module = PyImport_ImportModule("importlib._bootstrap");
if (likely( module != NULL ))
{
tmp_called_name_1 = PyObject_GetAttr( module, const_str_plain_ModuleSpec );
}
else
{
tmp_called_name_1 = NULL;
}
}
if ( tmp_called_name_1 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 1;
goto frame_exception_exit_1;
}
tmp_args_element_name_1 = const_str_digest_6ee41268d4b92b2b6983eb1cc1ee4d07;
tmp_args_element_name_2 = metapath_based_loader;
frame_04d74fa3171abaef4f85c5a473efcda0->m_frame.f_lineno = 1;
{
PyObject *call_args[] = { tmp_args_element_name_1, tmp_args_element_name_2 };
tmp_assign_source_4 = CALL_FUNCTION_WITH_ARGS2( tmp_called_name_1, call_args );
}
if ( tmp_assign_source_4 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 1;
goto frame_exception_exit_1;
}
UPDATE_STRING_DICT1( moduledict_chardet$mbcharsetprober, (Nuitka_StringObject *)const_str_plain___spec__, tmp_assign_source_4 );
tmp_assign_source_5 = Py_None;
UPDATE_STRING_DICT0( moduledict_chardet$mbcharsetprober, (Nuitka_StringObject *)const_str_plain___cached__, tmp_assign_source_5 );
tmp_assign_source_6 = const_str_plain_chardet;
UPDATE_STRING_DICT0( moduledict_chardet$mbcharsetprober, (Nuitka_StringObject *)const_str_plain___package__, tmp_assign_source_6 );
tmp_name_name_1 = const_str_plain_charsetprober;
tmp_globals_name_1 = (PyObject *)moduledict_chardet$mbcharsetprober;
tmp_locals_name_1 = Py_None;
tmp_fromlist_name_1 = const_tuple_str_plain_CharSetProber_tuple;
tmp_level_name_1 = const_int_pos_1;
frame_04d74fa3171abaef4f85c5a473efcda0->m_frame.f_lineno = 30;
tmp_import_name_from_1 = IMPORT_MODULE5( tmp_name_name_1, tmp_globals_name_1, tmp_locals_name_1, tmp_fromlist_name_1, tmp_level_name_1 );
if ( tmp_import_name_from_1 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 30;
goto frame_exception_exit_1;
}
tmp_assign_source_7 = IMPORT_NAME( tmp_import_name_from_1, const_str_plain_CharSetProber );
Py_DECREF( tmp_import_name_from_1 );
if ( tmp_assign_source_7 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 30;
goto frame_exception_exit_1;
}
UPDATE_STRING_DICT1( moduledict_chardet$mbcharsetprober, (Nuitka_StringObject *)const_str_plain_CharSetProber, tmp_assign_source_7 );
tmp_name_name_2 = const_str_plain_enums;
tmp_globals_name_2 = (PyObject *)moduledict_chardet$mbcharsetprober;
tmp_locals_name_2 = Py_None;
tmp_fromlist_name_2 = const_tuple_str_plain_ProbingState_str_plain_MachineState_tuple;
tmp_level_name_2 = const_int_pos_1;
frame_04d74fa3171abaef4f85c5a473efcda0->m_frame.f_lineno = 31;
tmp_assign_source_8 = IMPORT_MODULE5( tmp_name_name_2, tmp_globals_name_2, tmp_locals_name_2, tmp_fromlist_name_2, tmp_level_name_2 );
if ( tmp_assign_source_8 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 31;
goto frame_exception_exit_1;
}
assert( tmp_import_from_1__module == NULL );
tmp_import_from_1__module = tmp_assign_source_8;
// Tried code:
tmp_import_name_from_2 = tmp_import_from_1__module;
CHECK_OBJECT( tmp_import_name_from_2 );
tmp_assign_source_9 = IMPORT_NAME( tmp_import_name_from_2, const_str_plain_ProbingState );
if ( tmp_assign_source_9 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 31;
goto try_except_handler_1;
}
UPDATE_STRING_DICT1( moduledict_chardet$mbcharsetprober, (Nuitka_StringObject *)const_str_plain_ProbingState, tmp_assign_source_9 );
tmp_import_name_from_3 = tmp_import_from_1__module;
CHECK_OBJECT( tmp_import_name_from_3 );
tmp_assign_source_10 = IMPORT_NAME( tmp_import_name_from_3, const_str_plain_MachineState );
if ( tmp_assign_source_10 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 31;
goto try_except_handler_1;
}
UPDATE_STRING_DICT1( moduledict_chardet$mbcharsetprober, (Nuitka_StringObject *)const_str_plain_MachineState, tmp_assign_source_10 );
goto try_end_1;
// Exception handler code:
try_except_handler_1:;
exception_keeper_type_1 = exception_type;
exception_keeper_value_1 = exception_value;
exception_keeper_tb_1 = exception_tb;
exception_keeper_lineno_1 = exception_lineno;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
exception_lineno = 0;
Py_XDECREF( tmp_import_from_1__module );
tmp_import_from_1__module = NULL;
// Re-raise.
exception_type = exception_keeper_type_1;
exception_value = exception_keeper_value_1;
exception_tb = exception_keeper_tb_1;
exception_lineno = exception_keeper_lineno_1;
goto frame_exception_exit_1;
// End of try:
try_end_1:;
Py_XDECREF( tmp_import_from_1__module );
tmp_import_from_1__module = NULL;
// Tried code:
tmp_assign_source_11 = PyTuple_New( 1 );
tmp_tuple_element_1 = GET_STRING_DICT_VALUE( moduledict_chardet$mbcharsetprober, (Nuitka_StringObject *)const_str_plain_CharSetProber );
if (unlikely( tmp_tuple_element_1 == NULL ))
{
tmp_tuple_element_1 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_CharSetProber );
}
if ( tmp_tuple_element_1 == NULL )
{
Py_DECREF( tmp_assign_source_11 );
exception_type = PyExc_NameError;
Py_INCREF( exception_type );
exception_value = PyUnicode_FromFormat( "name '%s' is not defined", "CharSetProber" );
exception_tb = NULL;
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
CHAIN_EXCEPTION( exception_value );
exception_lineno = 34;
goto try_except_handler_2;
}
Py_INCREF( tmp_tuple_element_1 );
PyTuple_SET_ITEM( tmp_assign_source_11, 0, tmp_tuple_element_1 );
assert( tmp_class_creation_1__bases == NULL );
tmp_class_creation_1__bases = tmp_assign_source_11;
tmp_assign_source_12 = PyDict_New();
assert( tmp_class_creation_1__class_decl_dict == NULL );
tmp_class_creation_1__class_decl_dict = tmp_assign_source_12;
tmp_compare_left_1 = const_str_plain_metaclass;
tmp_compare_right_1 = tmp_class_creation_1__class_decl_dict;
CHECK_OBJECT( tmp_compare_right_1 );
tmp_cmp_In_1 = PySequence_Contains( tmp_compare_right_1, tmp_compare_left_1 );
assert( !(tmp_cmp_In_1 == -1) );
if ( tmp_cmp_In_1 == 1 )
{
goto condexpr_true_1;
}
else
{
goto condexpr_false_1;
}
condexpr_true_1:;
tmp_dict_name_1 = tmp_class_creation_1__class_decl_dict;
CHECK_OBJECT( tmp_dict_name_1 );
tmp_key_name_1 = const_str_plain_metaclass;
tmp_metaclass_name_1 = DICT_GET_ITEM( tmp_dict_name_1, tmp_key_name_1 );
if ( tmp_metaclass_name_1 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 34;
goto try_except_handler_2;
}
goto condexpr_end_1;
condexpr_false_1:;
tmp_cond_value_1 = tmp_class_creation_1__bases;
CHECK_OBJECT( tmp_cond_value_1 );
tmp_cond_truth_1 = CHECK_IF_TRUE( tmp_cond_value_1 );
if ( tmp_cond_truth_1 == -1 )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 34;
goto try_except_handler_2;
}
if ( tmp_cond_truth_1 == 1 )
{
goto condexpr_true_2;
}
else
{
goto condexpr_false_2;
}
condexpr_true_2:;
tmp_subscribed_name_1 = tmp_class_creation_1__bases;
CHECK_OBJECT( tmp_subscribed_name_1 );
tmp_subscript_name_1 = const_int_0;
tmp_type_arg_1 = LOOKUP_SUBSCRIPT( tmp_subscribed_name_1, tmp_subscript_name_1 );
if ( tmp_type_arg_1 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 34;
goto try_except_handler_2;
}
tmp_metaclass_name_1 = BUILTIN_TYPE1( tmp_type_arg_1 );
Py_DECREF( tmp_type_arg_1 );
if ( tmp_metaclass_name_1 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 34;
goto try_except_handler_2;
}
goto condexpr_end_2;
condexpr_false_2:;
tmp_metaclass_name_1 = (PyObject *)&PyType_Type;
Py_INCREF( tmp_metaclass_name_1 );
condexpr_end_2:;
condexpr_end_1:;
tmp_bases_name_1 = tmp_class_creation_1__bases;
CHECK_OBJECT( tmp_bases_name_1 );
tmp_assign_source_13 = SELECT_METACLASS( tmp_metaclass_name_1, tmp_bases_name_1 );
if ( tmp_assign_source_13 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
Py_DECREF( tmp_metaclass_name_1 );
exception_lineno = 34;
goto try_except_handler_2;
}
Py_DECREF( tmp_metaclass_name_1 );
assert( tmp_class_creation_1__metaclass == NULL );
tmp_class_creation_1__metaclass = tmp_assign_source_13;
tmp_compare_left_2 = const_str_plain_metaclass;
tmp_compare_right_2 = tmp_class_creation_1__class_decl_dict;
CHECK_OBJECT( tmp_compare_right_2 );
tmp_cmp_In_2 = PySequence_Contains( tmp_compare_right_2, tmp_compare_left_2 );
assert( !(tmp_cmp_In_2 == -1) );
if ( tmp_cmp_In_2 == 1 )
{
goto branch_yes_1;
}
else
{
goto branch_no_1;
}
branch_yes_1:;
tmp_dictdel_dict = tmp_class_creation_1__class_decl_dict;
CHECK_OBJECT( tmp_dictdel_dict );
tmp_dictdel_key = const_str_plain_metaclass;
tmp_result = DICT_REMOVE_ITEM( tmp_dictdel_dict, tmp_dictdel_key );
if ( tmp_result == false )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 34;
goto try_except_handler_2;
}
branch_no_1:;
tmp_hasattr_source_1 = tmp_class_creation_1__metaclass;
CHECK_OBJECT( tmp_hasattr_source_1 );
tmp_hasattr_attr_1 = const_str_plain___prepare__;
tmp_res = PyObject_HasAttr( tmp_hasattr_source_1, tmp_hasattr_attr_1 );
if ( tmp_res == -1 )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 34;
goto try_except_handler_2;
}
if ( tmp_res == 1 )
{
goto condexpr_true_3;
}
else
{
goto condexpr_false_3;
}
condexpr_true_3:;
tmp_source_name_1 = tmp_class_creation_1__metaclass;
CHECK_OBJECT( tmp_source_name_1 );
tmp_called_name_2 = LOOKUP_ATTRIBUTE( tmp_source_name_1, const_str_plain___prepare__ );
if ( tmp_called_name_2 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 34;
goto try_except_handler_2;
}
tmp_args_name_1 = PyTuple_New( 2 );
tmp_tuple_element_2 = const_str_plain_MultiByteCharSetProber;
Py_INCREF( tmp_tuple_element_2 );
PyTuple_SET_ITEM( tmp_args_name_1, 0, tmp_tuple_element_2 );
tmp_tuple_element_2 = tmp_class_creation_1__bases;
CHECK_OBJECT( tmp_tuple_element_2 );
Py_INCREF( tmp_tuple_element_2 );
PyTuple_SET_ITEM( tmp_args_name_1, 1, tmp_tuple_element_2 );
tmp_kw_name_1 = tmp_class_creation_1__class_decl_dict;
CHECK_OBJECT( tmp_kw_name_1 );
frame_04d74fa3171abaef4f85c5a473efcda0->m_frame.f_lineno = 34;
tmp_assign_source_14 = CALL_FUNCTION( tmp_called_name_2, tmp_args_name_1, tmp_kw_name_1 );
Py_DECREF( tmp_called_name_2 );
Py_DECREF( tmp_args_name_1 );
if ( tmp_assign_source_14 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 34;
goto try_except_handler_2;
}
goto condexpr_end_3;
condexpr_false_3:;
tmp_assign_source_14 = PyDict_New();
condexpr_end_3:;
assert( tmp_class_creation_1__prepared == NULL );
tmp_class_creation_1__prepared = tmp_assign_source_14;
tmp_set_locals = tmp_class_creation_1__prepared;
CHECK_OBJECT( tmp_set_locals );
Py_DECREF(locals_dict_1);
locals_dict_1 = tmp_set_locals;
Py_INCREF( tmp_set_locals );
tmp_assign_source_16 = const_str_digest_6ee41268d4b92b2b6983eb1cc1ee4d07;
assert( outline_0_var___module__ == NULL );
Py_INCREF( tmp_assign_source_16 );
outline_0_var___module__ = tmp_assign_source_16;
tmp_assign_source_17 = const_str_digest_260aaf32158e82f1d4fe279d72222d82;
assert( outline_0_var___doc__ == NULL );
Py_INCREF( tmp_assign_source_17 );
outline_0_var___doc__ = tmp_assign_source_17;
tmp_assign_source_18 = const_str_plain_MultiByteCharSetProber;
assert( outline_0_var___qualname__ == NULL );
Py_INCREF( tmp_assign_source_18 );
outline_0_var___qualname__ = tmp_assign_source_18;
tmp_defaults_1 = const_tuple_none_tuple;
Py_INCREF( tmp_defaults_1 );
tmp_assign_source_19 = MAKE_FUNCTION_chardet$mbcharsetprober$$$function_1___init__( tmp_defaults_1 );
assert( outline_0_var___init__ == NULL );
outline_0_var___init__ = tmp_assign_source_19;
tmp_assign_source_20 = MAKE_FUNCTION_chardet$mbcharsetprober$$$function_2_reset( );
assert( outline_0_var_reset == NULL );
outline_0_var_reset = tmp_assign_source_20;
// Tried code:
MAKE_OR_REUSE_FRAME( cache_frame_1ab9434394b7f9093caddb7913aaba8a_2, codeobj_1ab9434394b7f9093caddb7913aaba8a, module_chardet$mbcharsetprober, sizeof(void *)+sizeof(void *)+sizeof(void *)+sizeof(void *)+sizeof(void *)+sizeof(void *)+sizeof(void *)+sizeof(void *)+sizeof(void *)+sizeof(void *) );
frame_1ab9434394b7f9093caddb7913aaba8a_2 = cache_frame_1ab9434394b7f9093caddb7913aaba8a_2;
// Push the new frame as the currently active one.
pushFrameStack( frame_1ab9434394b7f9093caddb7913aaba8a_2 );
// Mark the frame object as in use, ref count 1 will be up for reuse.
assert( Py_REFCNT( frame_1ab9434394b7f9093caddb7913aaba8a_2 ) == 2 ); // Frame stack
// Framed code:
tmp_called_name_3 = (PyObject *)&PyProperty_Type;
tmp_args_element_name_3 = MAKE_FUNCTION_chardet$mbcharsetprober$$$function_3_charset_name( );
frame_1ab9434394b7f9093caddb7913aaba8a_2->m_frame.f_lineno = 53;
{
PyObject *call_args[] = { tmp_args_element_name_3 };
tmp_assign_source_21 = CALL_FUNCTION_WITH_ARGS1( tmp_called_name_3, call_args );
}
Py_DECREF( tmp_args_element_name_3 );
if ( tmp_assign_source_21 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 53;
type_description_2 = "NoooooNNNN";
goto frame_exception_exit_2;
}
assert( outline_0_var_charset_name == NULL );
outline_0_var_charset_name = tmp_assign_source_21;
tmp_called_name_4 = (PyObject *)&PyProperty_Type;
tmp_args_element_name_4 = MAKE_FUNCTION_chardet$mbcharsetprober$$$function_4_language( );
frame_1ab9434394b7f9093caddb7913aaba8a_2->m_frame.f_lineno = 57;
{
PyObject *call_args[] = { tmp_args_element_name_4 };
tmp_assign_source_22 = CALL_FUNCTION_WITH_ARGS1( tmp_called_name_4, call_args );
}
Py_DECREF( tmp_args_element_name_4 );
if ( tmp_assign_source_22 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 57;
type_description_2 = "NooooooNNN";
goto frame_exception_exit_2;
}
assert( outline_0_var_language == NULL );
outline_0_var_language = tmp_assign_source_22;
#if 0
RESTORE_FRAME_EXCEPTION( frame_1ab9434394b7f9093caddb7913aaba8a_2 );
#endif
// Put the previous frame back on top.
popFrameStack();
goto frame_no_exception_1;
frame_exception_exit_2:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_1ab9434394b7f9093caddb7913aaba8a_2 );
#endif
if ( exception_tb == NULL )
{
exception_tb = MAKE_TRACEBACK( frame_1ab9434394b7f9093caddb7913aaba8a_2, exception_lineno );
}
else if ( exception_tb->tb_frame != &frame_1ab9434394b7f9093caddb7913aaba8a_2->m_frame )
{
exception_tb = ADD_TRACEBACK( exception_tb, frame_1ab9434394b7f9093caddb7913aaba8a_2, exception_lineno );
}
// Attachs locals to frame if any.
Nuitka_Frame_AttachLocals(
(struct Nuitka_FrameObject *)frame_1ab9434394b7f9093caddb7913aaba8a_2,
type_description_2,
NULL,
outline_0_var___qualname__,
outline_0_var___module__,
outline_0_var___doc__,
outline_0_var___init__,
outline_0_var_reset,
outline_0_var_charset_name,
outline_0_var_language,
NULL,
NULL
);
// Release cached frame.
if ( frame_1ab9434394b7f9093caddb7913aaba8a_2 == cache_frame_1ab9434394b7f9093caddb7913aaba8a_2 )
{
Py_DECREF( frame_1ab9434394b7f9093caddb7913aaba8a_2 );
}
cache_frame_1ab9434394b7f9093caddb7913aaba8a_2 = NULL;
assertFrameObject( frame_1ab9434394b7f9093caddb7913aaba8a_2 );
// Put the previous frame back on top.
popFrameStack();
// Return the error.
goto nested_frame_exit_1;
frame_no_exception_1:;
goto skip_nested_handling_1;
nested_frame_exit_1:;
goto try_except_handler_3;
skip_nested_handling_1:;
tmp_assign_source_23 = MAKE_FUNCTION_chardet$mbcharsetprober$$$function_5_feed( );
assert( outline_0_var_feed == NULL );
outline_0_var_feed = tmp_assign_source_23;
tmp_assign_source_24 = MAKE_FUNCTION_chardet$mbcharsetprober$$$function_6_get_confidence( );
assert( outline_0_var_get_confidence == NULL );
outline_0_var_get_confidence = tmp_assign_source_24;
tmp_called_name_5 = tmp_class_creation_1__metaclass;
CHECK_OBJECT( tmp_called_name_5 );
tmp_args_name_2 = PyTuple_New( 3 );
tmp_tuple_element_3 = const_str_plain_MultiByteCharSetProber;
Py_INCREF( tmp_tuple_element_3 );
PyTuple_SET_ITEM( tmp_args_name_2, 0, tmp_tuple_element_3 );
tmp_tuple_element_3 = tmp_class_creation_1__bases;
CHECK_OBJECT( tmp_tuple_element_3 );
Py_INCREF( tmp_tuple_element_3 );
PyTuple_SET_ITEM( tmp_args_name_2, 1, tmp_tuple_element_3 );
tmp_tuple_element_3 = locals_dict_1;
Py_INCREF( tmp_tuple_element_3 );
if ( outline_0_var___qualname__ != NULL )
{
int res = PyObject_SetItem(
tmp_tuple_element_3,
const_str_plain___qualname__,
outline_0_var___qualname__
);
tmp_result = res == 0;
}
else
{
PyObject *test_value = PyObject_GetItem(
tmp_tuple_element_3,
const_str_plain___qualname__
);
if ( test_value )
{
Py_DECREF( test_value );
int res = PyObject_DelItem(
tmp_tuple_element_3,
const_str_plain___qualname__
);
tmp_result = res == 0;
}
else
{
CLEAR_ERROR_OCCURRED();
tmp_result = true;
}
}
if ( tmp_result == false )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
Py_DECREF( tmp_args_name_2 );
Py_DECREF( tmp_tuple_element_3 );
exception_lineno = 34;
goto try_except_handler_3;
}
if ( outline_0_var___module__ != NULL )
{
int res = PyObject_SetItem(
tmp_tuple_element_3,
const_str_plain___module__,
outline_0_var___module__
);
tmp_result = res == 0;
}
else
{
PyObject *test_value = PyObject_GetItem(
tmp_tuple_element_3,
const_str_plain___module__
);
if ( test_value )
{
Py_DECREF( test_value );
int res = PyObject_DelItem(
tmp_tuple_element_3,
const_str_plain___module__
);
tmp_result = res == 0;
}
else
{
CLEAR_ERROR_OCCURRED();
tmp_result = true;
}
}
if ( tmp_result == false )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
Py_DECREF( tmp_args_name_2 );
Py_DECREF( tmp_tuple_element_3 );
exception_lineno = 34;
goto try_except_handler_3;
}
if ( outline_0_var___doc__ != NULL )
{
int res = PyObject_SetItem(
tmp_tuple_element_3,
const_str_plain___doc__,
outline_0_var___doc__
);
tmp_result = res == 0;
}
else
{
PyObject *test_value = PyObject_GetItem(
tmp_tuple_element_3,
const_str_plain___doc__
);
if ( test_value )
{
Py_DECREF( test_value );
int res = PyObject_DelItem(
tmp_tuple_element_3,
const_str_plain___doc__
);
tmp_result = res == 0;
}
else
{
CLEAR_ERROR_OCCURRED();
tmp_result = true;
}
}
if ( tmp_result == false )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
Py_DECREF( tmp_args_name_2 );
Py_DECREF( tmp_tuple_element_3 );
exception_lineno = 34;
goto try_except_handler_3;
}
if ( outline_0_var___init__ != NULL )
{
int res = PyObject_SetItem(
tmp_tuple_element_3,
const_str_plain___init__,
outline_0_var___init__
);
tmp_result = res == 0;
}
else
{
PyObject *test_value = PyObject_GetItem(
tmp_tuple_element_3,
const_str_plain___init__
);
if ( test_value )
{
Py_DECREF( test_value );
int res = PyObject_DelItem(
tmp_tuple_element_3,
const_str_plain___init__
);
tmp_result = res == 0;
}
else
{
CLEAR_ERROR_OCCURRED();
tmp_result = true;
}
}
if ( tmp_result == false )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
Py_DECREF( tmp_args_name_2 );
Py_DECREF( tmp_tuple_element_3 );
exception_lineno = 34;
goto try_except_handler_3;
}
if ( outline_0_var_reset != NULL )
{
int res = PyObject_SetItem(
tmp_tuple_element_3,
const_str_plain_reset,
outline_0_var_reset
);
tmp_result = res == 0;
}
else
{
PyObject *test_value = PyObject_GetItem(
tmp_tuple_element_3,
const_str_plain_reset
);
if ( test_value )
{
Py_DECREF( test_value );
int res = PyObject_DelItem(
tmp_tuple_element_3,
const_str_plain_reset
);
tmp_result = res == 0;
}
else
{
CLEAR_ERROR_OCCURRED();
tmp_result = true;
}
}
if ( tmp_result == false )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
Py_DECREF( tmp_args_name_2 );
Py_DECREF( tmp_tuple_element_3 );
exception_lineno = 34;
goto try_except_handler_3;
}
if ( outline_0_var_charset_name != NULL )
{
int res = PyObject_SetItem(
tmp_tuple_element_3,
const_str_plain_charset_name,
outline_0_var_charset_name
);
tmp_result = res == 0;
}
else
{
PyObject *test_value = PyObject_GetItem(
tmp_tuple_element_3,
const_str_plain_charset_name
);
if ( test_value )
{
Py_DECREF( test_value );
int res = PyObject_DelItem(
tmp_tuple_element_3,
const_str_plain_charset_name
);
tmp_result = res == 0;
}
else
{
CLEAR_ERROR_OCCURRED();
tmp_result = true;
}
}
if ( tmp_result == false )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
Py_DECREF( tmp_args_name_2 );
Py_DECREF( tmp_tuple_element_3 );
exception_lineno = 34;
goto try_except_handler_3;
}
if ( outline_0_var_language != NULL )
{
int res = PyObject_SetItem(
tmp_tuple_element_3,
const_str_plain_language,
outline_0_var_language
);
tmp_result = res == 0;
}
else
{
PyObject *test_value = PyObject_GetItem(
tmp_tuple_element_3,
const_str_plain_language
);
if ( test_value )
{
Py_DECREF( test_value );
int res = PyObject_DelItem(
tmp_tuple_element_3,
const_str_plain_language
);
tmp_result = res == 0;
}
else
{
CLEAR_ERROR_OCCURRED();
tmp_result = true;
}
}
if ( tmp_result == false )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
Py_DECREF( tmp_args_name_2 );
Py_DECREF( tmp_tuple_element_3 );
exception_lineno = 34;
goto try_except_handler_3;
}
if ( outline_0_var_feed != NULL )
{
int res = PyObject_SetItem(
tmp_tuple_element_3,
const_str_plain_feed,
outline_0_var_feed
);
tmp_result = res == 0;
}
else
{
PyObject *test_value = PyObject_GetItem(
tmp_tuple_element_3,
const_str_plain_feed
);
if ( test_value )
{
Py_DECREF( test_value );
int res = PyObject_DelItem(
tmp_tuple_element_3,
const_str_plain_feed
);
tmp_result = res == 0;
}
else
{
CLEAR_ERROR_OCCURRED();
tmp_result = true;
}
}
if ( tmp_result == false )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
Py_DECREF( tmp_args_name_2 );
Py_DECREF( tmp_tuple_element_3 );
exception_lineno = 34;
goto try_except_handler_3;
}
if ( outline_0_var_get_confidence != NULL )
{
int res = PyObject_SetItem(
tmp_tuple_element_3,
const_str_plain_get_confidence,
outline_0_var_get_confidence
);
tmp_result = res == 0;
}
else
{
PyObject *test_value = PyObject_GetItem(
tmp_tuple_element_3,
const_str_plain_get_confidence
);
if ( test_value )
{
Py_DECREF( test_value );
int res = PyObject_DelItem(
tmp_tuple_element_3,
const_str_plain_get_confidence
);
tmp_result = res == 0;
}
else
{
CLEAR_ERROR_OCCURRED();
tmp_result = true;
}
}
if ( tmp_result == false )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
Py_DECREF( tmp_args_name_2 );
Py_DECREF( tmp_tuple_element_3 );
exception_lineno = 34;
goto try_except_handler_3;
}
PyTuple_SET_ITEM( tmp_args_name_2, 2, tmp_tuple_element_3 );
tmp_kw_name_2 = tmp_class_creation_1__class_decl_dict;
CHECK_OBJECT( tmp_kw_name_2 );
frame_04d74fa3171abaef4f85c5a473efcda0->m_frame.f_lineno = 34;
tmp_assign_source_25 = CALL_FUNCTION( tmp_called_name_5, tmp_args_name_2, tmp_kw_name_2 );
Py_DECREF( tmp_args_name_2 );
if ( tmp_assign_source_25 == NULL )
{
assert( ERROR_OCCURRED() );
FETCH_ERROR_OCCURRED( &exception_type, &exception_value, &exception_tb );
exception_lineno = 34;
goto try_except_handler_3;
}
assert( outline_0_var___class__ == NULL );
outline_0_var___class__ = tmp_assign_source_25;
tmp_outline_return_value_1 = outline_0_var___class__;
CHECK_OBJECT( tmp_outline_return_value_1 );
Py_INCREF( tmp_outline_return_value_1 );
goto try_return_handler_3;
// tried codes exits in all cases
NUITKA_CANNOT_GET_HERE( chardet$mbcharsetprober );
return MOD_RETURN_VALUE( NULL );
// Return handler code:
try_return_handler_3:;
CHECK_OBJECT( (PyObject *)outline_0_var___class__ );
Py_DECREF( outline_0_var___class__ );
outline_0_var___class__ = NULL;
Py_XDECREF( outline_0_var___qualname__ );
outline_0_var___qualname__ = NULL;
Py_XDECREF( outline_0_var___module__ );
outline_0_var___module__ = NULL;
Py_XDECREF( outline_0_var___doc__ );
outline_0_var___doc__ = NULL;
Py_XDECREF( outline_0_var___init__ );
outline_0_var___init__ = NULL;
Py_XDECREF( outline_0_var_reset );
outline_0_var_reset = NULL;
Py_XDECREF( outline_0_var_charset_name );
outline_0_var_charset_name = NULL;
Py_XDECREF( outline_0_var_language );
outline_0_var_language = NULL;
Py_XDECREF( outline_0_var_feed );
outline_0_var_feed = NULL;
Py_XDECREF( outline_0_var_get_confidence );
outline_0_var_get_confidence = NULL;
goto outline_result_1;
// Exception handler code:
try_except_handler_3:;
exception_keeper_type_2 = exception_type;
exception_keeper_value_2 = exception_value;
exception_keeper_tb_2 = exception_tb;
exception_keeper_lineno_2 = exception_lineno;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
exception_lineno = 0;
Py_XDECREF( outline_0_var___qualname__ );
outline_0_var___qualname__ = NULL;
Py_XDECREF( outline_0_var___module__ );
outline_0_var___module__ = NULL;
Py_XDECREF( outline_0_var___doc__ );
outline_0_var___doc__ = NULL;
Py_XDECREF( outline_0_var___init__ );
outline_0_var___init__ = NULL;
Py_XDECREF( outline_0_var_reset );
outline_0_var_reset = NULL;
Py_XDECREF( outline_0_var_charset_name );
outline_0_var_charset_name = NULL;
Py_XDECREF( outline_0_var_language );
outline_0_var_language = NULL;
Py_XDECREF( outline_0_var_feed );
outline_0_var_feed = NULL;
Py_XDECREF( outline_0_var_get_confidence );
outline_0_var_get_confidence = NULL;
// Re-raise.
exception_type = exception_keeper_type_2;
exception_value = exception_keeper_value_2;
exception_tb = exception_keeper_tb_2;
exception_lineno = exception_keeper_lineno_2;
goto outline_exception_1;
// End of try:
// Return statement must have exited already.
NUITKA_CANNOT_GET_HERE( chardet$mbcharsetprober );
return MOD_RETURN_VALUE( NULL );
outline_exception_1:;
exception_lineno = 34;
goto try_except_handler_2;
outline_result_1:;
tmp_assign_source_15 = tmp_outline_return_value_1;
UPDATE_STRING_DICT1( moduledict_chardet$mbcharsetprober, (Nuitka_StringObject *)const_str_plain_MultiByteCharSetProber, tmp_assign_source_15 );
goto try_end_2;
// Exception handler code:
try_except_handler_2:;
exception_keeper_type_3 = exception_type;
exception_keeper_value_3 = exception_value;
exception_keeper_tb_3 = exception_tb;
exception_keeper_lineno_3 = exception_lineno;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
exception_lineno = 0;
Py_XDECREF( tmp_class_creation_1__bases );
tmp_class_creation_1__bases = NULL;
Py_XDECREF( tmp_class_creation_1__class_decl_dict );
tmp_class_creation_1__class_decl_dict = NULL;
Py_XDECREF( tmp_class_creation_1__metaclass );
tmp_class_creation_1__metaclass = NULL;
Py_XDECREF( tmp_class_creation_1__prepared );
tmp_class_creation_1__prepared = NULL;
// Re-raise.
exception_type = exception_keeper_type_3;
exception_value = exception_keeper_value_3;
exception_tb = exception_keeper_tb_3;
exception_lineno = exception_keeper_lineno_3;
goto frame_exception_exit_1;
// End of try:
try_end_2:;
// Restore frame exception if necessary.
#if 0
RESTORE_FRAME_EXCEPTION( frame_04d74fa3171abaef4f85c5a473efcda0 );
#endif
popFrameStack();
assertFrameObject( frame_04d74fa3171abaef4f85c5a473efcda0 );
goto frame_no_exception_2;
frame_exception_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_04d74fa3171abaef4f85c5a473efcda0 );
#endif
if ( exception_tb == NULL )
{
exception_tb = MAKE_TRACEBACK( frame_04d74fa3171abaef4f85c5a473efcda0, exception_lineno );
}
else if ( exception_tb->tb_frame != &frame_04d74fa3171abaef4f85c5a473efcda0->m_frame )
{
exception_tb = ADD_TRACEBACK( exception_tb, frame_04d74fa3171abaef4f85c5a473efcda0, exception_lineno );
}
// Put the previous frame back on top.
popFrameStack();
// Return the error.
goto module_exception_exit;
frame_no_exception_2:;
Py_XDECREF( tmp_class_creation_1__bases );
tmp_class_creation_1__bases = NULL;
Py_XDECREF( tmp_class_creation_1__class_decl_dict );
tmp_class_creation_1__class_decl_dict = NULL;
Py_XDECREF( tmp_class_creation_1__metaclass );
tmp_class_creation_1__metaclass = NULL;
Py_XDECREF( tmp_class_creation_1__prepared );
tmp_class_creation_1__prepared = NULL;
return MOD_RETURN_VALUE( module_chardet$mbcharsetprober );
module_exception_exit:
RESTORE_ERROR_OCCURRED( exception_type, exception_value, exception_tb );
return MOD_RETURN_VALUE( NULL );
}
| [
"phillclesco@yahoo.com"
] | phillclesco@yahoo.com |
723a58c9db3eb57a49d4e740f4b754713e2e471e | 2bfd8c9d984c94830ba1fa7f5088083f8518f6ba | /src/qt/peertablemodel.cpp | 0a8a60d6754e5e12581254f2aadea7b81be11e78 | [
"MIT"
] | permissive | SenatorJohnMcLaughlin/TestCoin | 8f493d9f07246b21b98d3c19f5f303417fafd166 | 732b4ece3aaf489709ef9231d845d3735bb8dab3 | refs/heads/master | 2021-04-14T09:52:46.878135 | 2020-03-22T20:50:35 | 2020-03-22T20:50:35 | 249,224,647 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,453 | cpp | // Copyright (c) 2011-2016 The Testcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "peertablemodel.h"
#include "clientmodel.h"
#include "guiconstants.h"
#include "guiutil.h"
#include "validation.h" // for cs_main
#include "sync.h"
#include <QDebug>
#include <QList>
#include <QTimer>
bool NodeLessThan::operator()(const CNodeCombinedStats &left, const CNodeCombinedStats &right) const
{
const CNodeStats *pLeft = &(left.nodeStats);
const CNodeStats *pRight = &(right.nodeStats);
if (order == Qt::DescendingOrder)
std::swap(pLeft, pRight);
switch(column)
{
case PeerTableModel::NetNodeId:
return pLeft->nodeid < pRight->nodeid;
case PeerTableModel::Address:
return pLeft->addrName.compare(pRight->addrName) < 0;
case PeerTableModel::Subversion:
return pLeft->cleanSubVer.compare(pRight->cleanSubVer) < 0;
case PeerTableModel::Ping:
return pLeft->dMinPing < pRight->dMinPing;
}
return false;
}
// private implementation
class PeerTablePriv
{
public:
/** Local cache of peer information */
QList<CNodeCombinedStats> cachedNodeStats;
/** Column to sort nodes by */
int sortColumn;
/** Order (ascending or descending) to sort nodes by */
Qt::SortOrder sortOrder;
/** Index of rows by node ID */
std::map<NodeId, int> mapNodeRows;
/** Pull a full list of peers from vNodes into our cache */
void refreshPeers()
{
{
cachedNodeStats.clear();
std::vector<CNodeStats> vstats;
if(g_connman)
g_connman->GetNodeStats(vstats);
#if QT_VERSION >= 0x040700
cachedNodeStats.reserve(vstats.size());
#endif
for (const CNodeStats& nodestats : vstats)
{
CNodeCombinedStats stats;
stats.nodeStateStats.nMisbehavior = 0;
stats.nodeStateStats.nSyncHeight = -1;
stats.nodeStateStats.nCommonHeight = -1;
stats.fNodeStateStatsAvailable = false;
stats.nodeStats = nodestats;
cachedNodeStats.append(stats);
}
}
// Try to retrieve the CNodeStateStats for each node.
{
TRY_LOCK(cs_main, lockMain);
if (lockMain)
{
for (CNodeCombinedStats &stats : cachedNodeStats)
stats.fNodeStateStatsAvailable = GetNodeStateStats(stats.nodeStats.nodeid, stats.nodeStateStats);
}
}
if (sortColumn >= 0)
// sort cacheNodeStats (use stable sort to prevent rows jumping around unnecessarily)
qStableSort(cachedNodeStats.begin(), cachedNodeStats.end(), NodeLessThan(sortColumn, sortOrder));
// build index map
mapNodeRows.clear();
int row = 0;
for (const CNodeCombinedStats& stats : cachedNodeStats)
mapNodeRows.insert(std::pair<NodeId, int>(stats.nodeStats.nodeid, row++));
}
int size() const
{
return cachedNodeStats.size();
}
CNodeCombinedStats *index(int idx)
{
if (idx >= 0 && idx < cachedNodeStats.size())
return &cachedNodeStats[idx];
return 0;
}
};
PeerTableModel::PeerTableModel(ClientModel *parent) :
QAbstractTableModel(parent),
clientModel(parent),
timer(0)
{
columns << tr("NodeId") << tr("Node/Service") << tr("User Agent") << tr("Ping");
priv.reset(new PeerTablePriv());
// default to unsorted
priv->sortColumn = -1;
// set up timer for auto refresh
timer = new QTimer(this);
connect(timer, SIGNAL(timeout()), SLOT(refresh()));
timer->setInterval(MODEL_UPDATE_DELAY);
// load initial data
refresh();
}
PeerTableModel::~PeerTableModel()
{
// Intentionally left empty
}
void PeerTableModel::startAutoRefresh()
{
timer->start();
}
void PeerTableModel::stopAutoRefresh()
{
timer->stop();
}
int PeerTableModel::rowCount(const QModelIndex &parent) const
{
Q_UNUSED(parent);
return priv->size();
}
int PeerTableModel::columnCount(const QModelIndex &parent) const
{
Q_UNUSED(parent);
return columns.length();
}
QVariant PeerTableModel::data(const QModelIndex &index, int role) const
{
if(!index.isValid())
return QVariant();
CNodeCombinedStats *rec = static_cast<CNodeCombinedStats*>(index.internalPointer());
if (role == Qt::DisplayRole) {
switch(index.column())
{
case NetNodeId:
return (qint64)rec->nodeStats.nodeid;
case Address:
return QString::fromStdString(rec->nodeStats.addrName);
case Subversion:
return QString::fromStdString(rec->nodeStats.cleanSubVer);
case Ping:
return GUIUtil::formatPingTime(rec->nodeStats.dMinPing);
}
} else if (role == Qt::TextAlignmentRole) {
if (index.column() == Ping)
return (QVariant)(Qt::AlignRight | Qt::AlignVCenter);
}
return QVariant();
}
QVariant PeerTableModel::headerData(int section, Qt::Orientation orientation, int role) const
{
if(orientation == Qt::Horizontal)
{
if(role == Qt::DisplayRole && section < columns.size())
{
return columns[section];
}
}
return QVariant();
}
Qt::ItemFlags PeerTableModel::flags(const QModelIndex &index) const
{
if(!index.isValid())
return 0;
Qt::ItemFlags retval = Qt::ItemIsSelectable | Qt::ItemIsEnabled;
return retval;
}
QModelIndex PeerTableModel::index(int row, int column, const QModelIndex &parent) const
{
Q_UNUSED(parent);
CNodeCombinedStats *data = priv->index(row);
if (data)
return createIndex(row, column, data);
return QModelIndex();
}
const CNodeCombinedStats *PeerTableModel::getNodeStats(int idx)
{
return priv->index(idx);
}
void PeerTableModel::refresh()
{
Q_EMIT layoutAboutToBeChanged();
priv->refreshPeers();
Q_EMIT layoutChanged();
}
int PeerTableModel::getRowByNodeId(NodeId nodeid)
{
std::map<NodeId, int>::iterator it = priv->mapNodeRows.find(nodeid);
if (it == priv->mapNodeRows.end())
return -1;
return it->second;
}
void PeerTableModel::sort(int column, Qt::SortOrder order)
{
priv->sortColumn = column;
priv->sortOrder = order;
refresh();
}
| [
"josef@bctest.fritz.box"
] | josef@bctest.fritz.box |
83100327fe392b3d069a741c57f90c16c4329365 | 4f6d625b06ed4d13c497da61b8151847e58585be | /剑指offer/把字符串转换成整数.cpp | db0ae2377277fcb647a555817fb33ff796c2c723 | [] | no_license | TLMSONANA/CUGSECourses | ed714fea47f3cb1f291c77d9df33017ce17ca2dd | 668c2bb7030f068b343d108cb303a2e97c56368a | refs/heads/master | 2022-02-21T07:04:32.862365 | 2019-09-23T16:17:26 | 2019-09-23T16:17:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 363 | cpp | class Solution {
public:
int StrToInt(string str) {
int n=str.length();int s=1;
long long res=0;
if(n==0){return 0;}
if(str[0]=='-'){s=-1;}
for(int i=(str[0]=='-'||str[0]=='+')?1:0;i<n;i++){
if(!(str[i]>'0'&&str[i]<'9')){return 0;}
res=res*10+str[i]-'0';
}
return s*res;
}
}; | [
"wx_e6e28d652e014d868372a162e85ab716@git.code.tencent.com"
] | wx_e6e28d652e014d868372a162e85ab716@git.code.tencent.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.