blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 201 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 7 100 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 260
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 11.4k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 17
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 80
values | src_encoding stringclasses 28
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 8 9.86M | extension stringclasses 52
values | content stringlengths 8 9.86M | authors listlengths 1 1 | author stringlengths 0 119 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
60db7b8a457b6ec040e5af1ece3ac80f333f8802 | ff1205edf39e9098ab1ec37ecc179f34c4e2ae42 | /codechef/EASYPROB.cpp | b299b72bc380a8fdeee25767b04d0367a81c2abc | [] | no_license | samkit993/competitve_prog | c8378c4bcf328e36f2272b98310b3d22a2543c40 | f3ebc3c2bce70d95460d8b06988d4fc56aac01e9 | refs/heads/master | 2021-06-26T12:58:17.779899 | 2015-09-14T08:48:03 | 2015-09-14T08:48:03 | 11,389,491 | 0 | 1 | null | 2020-10-15T05:02:02 | 2013-07-13T14:51:49 | C++ | UTF-8 | C++ | false | false | 977 | cpp | #include<iostream>
#include<cstdio>
#include<string>
#include<stack>
#include<vector>
#include<algorithm>
#include<fstream>
using namespace std;
void decompose( int n, bool &plus,ofstream &out){
//decomposing operation
int t=2,power=0;
while(t<=n){
t = t << 1;
++power;
}
t = t >> 1;
//printing operation
if(plus){
out << "+";
plus = false;
}
if(t==1){
out << "2(0)";
} else if(t==2){
out << "2";
} else {
out << "2(";
decompose(power,plus,out);
out << ")";
}
if(!plus)
plus = true;
//decomposing remaining part
if(n!=t)
decompose(n-t,plus,out);
}
int main(){
bool check = 0;
ofstream myfile("output.txt");
int arr[7] = {137,1315,73,136,255,1384,16385};
for(int i=0;i<7;++i){
check = 0;
myfile << arr[i] << "=";
decompose(arr[i],check,myfile);
myfile << endl;
}
return 0;
}
| [
"samkit993@gmail.com"
] | samkit993@gmail.com |
8787dc6a675f1b8d41ec17f1cb8dd93827bf1b73 | dbd9488801484f78f74f6fbc1b87be035cf7a48f | /codeforces/DivC/PalindromeTransition/main.cpp | 97330ce1a6369e7d048193d4ba5c103af89931c9 | [
"MIT"
] | permissive | jeevanpuchakay/a2oj | a5a069c72fd1b6ec3f92763e10b23454d3fdc2ec | f867e9b2ced6619be3ca6b1a1a1838107322782d | refs/heads/master | 2023-08-19T05:45:44.226044 | 2021-07-19T10:04:23 | 2021-07-19T10:04:23 | 192,790,577 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,894 | cpp | #include <bits/stdc++.h>
using namespace std;
typedef long double ld;
typedef long long int ll;
#define endl "\n"
vector<vector<ll>> adjlist;
ll max(ll x, ll y) { return (x > y) ? x : y; }
ll min(ll x, ll y) { return (x > y) ? y : x; }
#define mod 1000000007
#define precision(precision) cout << fixed << setprecision(precision)
ll cases = 1, n, sum, m;
ll x, y;
void solveCase()
{
ll currPos, ans = 0, start = -1, end = -1;
string s;
cin >> n >> currPos >> s;
currPos--;
for (ll i = 0; i < n / 2; i++)
{
if (s[i] != s[n - 1 - i])
{
start = i;
break;
}
}
for (ll i = n / 2 - 1; i >= 0; i--)
{
if (s[i] != s[n - 1 - i])
{
end = i;
break;
}
}
if (start == -1)
{
cout << 0 << endl;
return;
}
for (ll i = start; i <= end; i++)
{
if (s[i] != s[n - 1 - i])
{
ans += (min(abs(s[i] - s[n - 1 - i]), 26 - abs(s[i] - s[n - 1 - i])));
}
}
if (currPos < n / 2)
{
if (currPos <= start)
{
ans += (end - currPos);
}
else if (currPos <= end)
{
ans += min(2 * end - currPos - start, end + currPos - 2 * start);
}
else
{
ans += (currPos - start);
}
}
else
{
x = start, y = end;
start = n - 1 - y, end = n - 1 - x;
if (currPos <= start)
{
ans += (end - currPos);
}
else if (currPos <= end)
{
ans += min(2 * end - currPos - start, end + currPos - 2 * start);
}
else
{
ans += (currPos - start);
}
}
cout << ans << endl;
}
int main()
{
// cin >> cases;
for (ll t = 1; t <= cases; t++)
{
solveCase();
}
return 0;
} | [
"jeevangkr37@outlook.com"
] | jeevangkr37@outlook.com |
e2bd64b2743922cda4729bfdd79528dc1f7afc20 | 9c011922ec244c2456b0ee4641cf0a81605e3c5e | /DemoCore/ProgramMemory_DemoCore.cpp | 21c8ec6dcd633eabd5d909db1eed927adf78daa9 | [] | no_license | martty/sysc | dc077cdc9181cb674ed9620e1595da44a9c6cccd | 07fb875aee0c11957872fdd9e6315c764a9c3208 | refs/heads/master | 2021-01-13T16:10:15.325496 | 2014-05-20T10:48:37 | 2014-05-20T10:48:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,878 | cpp | #ifndef PM
#define PM
//-------------------------------------------------------------------------------------------------
#include <systemc.h>
//-------------------------------------------------------------------------------------------------
struct ProgramMemory_DemoCore: public sc_module
{
// ports --------------------------------------
sc_in < sc_lv<8> > Address;
sc_out < sc_lv<15> > DataOut;
// internal variables -------------------------
sc_lv<15> Content[256];
// function thread ----------------------------
void FunctionThread()
{
while (1)
{
DataOut.write( Content[Address.read().to_uint()] );
wait();
}
}
// constructor --------------------------------
SC_CTOR(ProgramMemory_DemoCore)
{
SC_THREAD(FunctionThread);
sensitive << Address;
// Program memory initialization --
Content[0] = "000100000000111"; // movi r0,7
Content[1] = "000100100000110"; // movi r1,6
Content[2] = "000101000000101"; // movi r2,5
Content[3] = "000101100000100"; // movi r3,4
Content[4] = "010010000000001"; // add r4,r0,r1
Content[5] = "010110100010011"; // sub r5,r2,r3
Content[6] = "011011000011000"; // and r6,r3,r0
Content[7] = "011111100010001"; // or r7,r2,r1
Content[8] = "100010000111110"; // xor r4,r7,r6
Content[9] = "001000000000000"; // sdm r0,0h
Content[10] = "001000100000001"; // sdm r1,1h
Content[11] = "001001000000010"; // sdm r2,2h
Content[12] = "001001100000011"; // sdm r3,3h
Content[13] = "001010000000100"; // sdm r4,4h
Content[14] = "001010100000101"; // sdm r5,5h
Content[15] = "001011000000110"; // sdm r6,6h
Content[16] = "001011100000111"; // sdm r7,7h
Content[17] = "001100000000111"; // ldm r0,7h
Content[18] = "001100100000110"; // ldm r1,6h
Content[19] = "001101000000101"; // ldm r2,5h
Content[20] = "001101100000100"; // ldm r3,4h
Content[21] = "001110000000011"; // ldm r4,3h
Content[22] = "001110100000010"; // ldm r5,2h
Content[23] = "001111000000001"; // ldm r6,1h
Content[24] = "001111100000000"; // ldm r7,0h
Content[25] = "000100001000101"; // movi r0,45h
Content[26] = "000100101000110"; // movi r1,46h
Content[27] = "010101100000001"; // sub r3,r0,r1
Content[28] = "100100000100011"; // j 35
Content[35] = "101000000101010"; // jz 42
Content[36] = "000100101000101"; // movi r1,45h
Content[37] = "010101100000001"; // sub r3,r0,r1
Content[38] = "101000000101010"; // jz 42
Content[42] = "000010000000111"; // mov r4,r7
Content[43] = "000010100000000"; // mov r5,r0
Content[44] = "110000000000000"; // abort
//---------------------------------
}
};
//-------------------------------------------------------------------------------------------------
#endif; /* PM */
//------------------------------------------------------------------------------------------------- | [
"marekgabor@gmail.com"
] | marekgabor@gmail.com |
380b72df0531d23b47b7dfd7c4eae28ba93512c7 | 38b9daafe39f937b39eefc30501939fd47f7e668 | /tutorials/2WayCouplingOceanWave3D/EvalResults180628-fully/84.8/uniform/time | a08654f6a520cf671e1e925abcccdf6d4125918a | [] | no_license | rubynuaa/2-way-coupling | 3a292840d9f56255f38c5e31c6b30fcb52d9e1cf | a820b57dd2cac1170b937f8411bc861392d8fbaa | refs/heads/master | 2020-04-08T18:49:53.047796 | 2018-08-29T14:22:18 | 2018-08-29T14:22:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,006 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 3.0.1 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
location "84.8/uniform";
object time;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
value 84.8000000000000114;
name "84.8";
index 11581;
deltaT 0.00612903;
deltaT0 0.00612903;
// ************************************************************************* //
| [
"abenaz15@etudiant.mines-nantes.fr"
] | abenaz15@etudiant.mines-nantes.fr | |
32d14c79f175fe395528d0b4b644ea3e88d1adae | aa9887968b39c45f0cda27cf22152fc5e5b7d46d | /src/vendor/cget/cget/pkg/pqrs-org__cpp-thread_wait/install/include/pqrs/thread_wait.hpp | 4a4f4652395c2aebb5786485951c2529b0d31aae | [
"Unlicense"
] | permissive | paganholiday/key-remap | 9edef7910dc8a791090d559997d42e94fca8b904 | a9154a6b073a3396631f43ed11f6dc603c28ea7b | refs/heads/master | 2021-07-06T05:11:50.653378 | 2020-01-11T14:21:58 | 2020-01-11T14:21:58 | 233,709,937 | 0 | 1 | Unlicense | 2021-04-13T18:21:39 | 2020-01-13T22:50:13 | C++ | UTF-8 | C++ | false | false | 2,122 | hpp | #pragma once
// pqrs::thread_wait v1.3
// (C) Copyright Takayama Fumihiko 2018.
// Distributed under the Boost Software License, Version 1.0.
// (See http://www.boost.org/LICENSE_1_0.txt)
// `pqrs::thread_wait` can be used safely in a multi-threaded environment.
#include <memory>
#include <mutex>
namespace pqrs {
class thread_wait {
public:
// We have to use shared_ptr to avoid SEGV from a spuriously wake.
//
// Note:
// If we don't use shared_ptr, `thread_wait::notify` rarely causes SEGV in the following case.
//
// 1. `notify` set notify_ = true.
// 2. `wait_notice` exits by spuriously wake.
// 3. `wait` is destructed.
// 4. `notify` calls `cv_.notify_one` with released `cv_`. (SEGV)
//
// A bad example:
// ----------------------------------------
// {
// pqrs::thread_wait w;
// std::thread t([&w] {
// w.notify(); // `notify` rarely causes SEGV.
// });
// t.detach();
// w.wait_notice();
// }
// ----------------------------------------
//
// A good example:
// ----------------------------------------
// {
// auto w = pqrs::make_thread_wait();
// std::thread t([w] {
// w->notify();
// });
// t.detach();
// w->wait_notice();
// }
// ----------------------------------------
static std::shared_ptr<thread_wait> make_thread_wait(void) {
struct impl : thread_wait {
impl(void) : thread_wait() {}
};
return std::make_shared<impl>();
}
virtual ~thread_wait(void) {
}
void wait_notice(void) {
std::unique_lock<std::mutex> lock(mutex_);
cv_.wait(lock, [this] {
return notify_;
});
}
void notify(void) {
{
std::lock_guard<std::mutex> lock(mutex_);
notify_ = true;
}
cv_.notify_one();
}
private:
thread_wait(void) : notify_(false) {
}
bool notify_;
std::mutex mutex_;
std::condition_variable cv_;
};
inline std::shared_ptr<thread_wait> make_thread_wait(void) {
return thread_wait::make_thread_wait();
}
} // namespace pqrs
| [
"tekezo@pqrs.org"
] | tekezo@pqrs.org |
e411ff24fb99bd2a220705753c1a65006f5368f9 | cccfb7be281ca89f8682c144eac0d5d5559b2deb | /ash/services/quick_pair/public/cpp/battery_notification.h | 6b7c472060fdfba04a1ae98c745a7994bb42b291 | [
"BSD-3-Clause"
] | permissive | SREERAGI18/chromium | 172b23d07568a4e3873983bf49b37adc92453dd0 | fd8a8914ca0183f0add65ae55f04e287543c7d4a | refs/heads/master | 2023-08-27T17:45:48.928019 | 2021-11-11T22:24:28 | 2021-11-11T22:24:28 | 428,659,250 | 1 | 0 | BSD-3-Clause | 2021-11-16T13:08:14 | 2021-11-16T13:08:14 | null | UTF-8 | C++ | false | false | 1,952 | h | // Copyright 2021 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 ASH_SERVICES_QUICK_PAIR_PUBLIC_CPP_BATTERY_NOTIFICATION_H_
#define ASH_SERVICES_QUICK_PAIR_PUBLIC_CPP_BATTERY_NOTIFICATION_H_
#include <cstdint>
#include "third_party/abseil-cpp/absl/types/optional.h"
namespace ash {
namespace quick_pair {
// Fast Pair battery information from notification. See
// https://developers.google.com/nearby/fast-pair/spec#BatteryNotification
struct BatteryInfo {
BatteryInfo();
explicit BatteryInfo(bool is_charging);
BatteryInfo(bool is_charging, int8_t percentage);
BatteryInfo(const BatteryInfo&);
BatteryInfo(BatteryInfo&&);
BatteryInfo& operator=(const BatteryInfo&);
BatteryInfo& operator=(BatteryInfo&&);
~BatteryInfo();
static absl::optional<BatteryInfo> FromByte(uint8_t byte);
uint8_t ToByte() const;
bool is_charging = false;
absl::optional<int8_t> percentage;
};
// Fast Pair battery notification. See
// https://developers.google.com/nearby/fast-pair/spec#BatteryNotification
struct BatteryNotification {
BatteryNotification();
BatteryNotification(bool show_ui,
BatteryInfo left_bud_info,
BatteryInfo right_bud_info,
BatteryInfo case_info);
BatteryNotification(const BatteryNotification&);
BatteryNotification(BatteryNotification&&);
BatteryNotification& operator=(const BatteryNotification&);
BatteryNotification& operator=(BatteryNotification&&);
~BatteryNotification();
static absl::optional<BatteryNotification> FromBytes(
const std::vector<uint8_t>& bytes,
bool show_ui);
bool show_ui = false;
BatteryInfo left_bud_info;
BatteryInfo right_bud_info;
BatteryInfo case_info;
};
} // namespace quick_pair
} // namespace ash
#endif // ASH_SERVICES_QUICK_PAIR_PUBLIC_CPP_BATTERY_NOTIFICATION_H_
| [
"chromium-scoped@luci-project-accounts.iam.gserviceaccount.com"
] | chromium-scoped@luci-project-accounts.iam.gserviceaccount.com |
b224115385f9febb23c24813a481ba93527c01f6 | 8c26281874962755329bb6f11c1fcbf1bcc7b58c | /Moving.h | 9f1ac33f575ce089c3afdeed1c20319960900048 | [] | no_license | billpol1997/PACMAN | 41b0e027c75ab0e646f5943cc9b55124a294bebf | 7d5e776fe2cfb00131e89d2dc7552f1788fb862a | refs/heads/master | 2023-05-24T04:52:37.943842 | 2021-06-14T20:16:37 | 2021-06-14T20:16:37 | 376,175,394 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 621 | h | #ifndef MOVING_H
#define MOVING_H
#include <iostream>
#include <ncurses.h>
#include <fstream>
#include <string>
#include "Engine.h"
using namespace std;
class Moving
{
private:
int X,Y;
int H;
int W ;
char character;
public:
Moving(int x,int y);
~Moving();
void SetX(int x);
void SetY(int y);
void SetH(int h);
void SetW(int w);
void SetChar(char p);
int GetX();
int GetY();
int GetW();
int GetH();
char GetChar();
void Nomv();
void Mvup();
void Mvdown();
void Mvleft();
void Mvright();
};
#endif // MOVING_H | [
"bill_polyzos@hotmail.com"
] | bill_polyzos@hotmail.com |
fa627c644318f682806cd661c5e602c2c2242c73 | 5477866f5b4d0b929f3e8df67836cd47e85b6d95 | /src/bench/string_cast.cpp | 19af057875db4b189bcefd1eda4c0745ace4c1b7 | [
"MIT"
] | permissive | MohamedAliBenAlaya/Demystify | 9b81515e514fa64906ea643fa6b5524561e94472 | 673f3d4fb1f35b71ab018fb4f04df41da5936f00 | refs/heads/master | 2023-04-03T11:22:22.535869 | 2019-04-06T08:48:38 | 2019-04-06T08:48:38 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,894 | cpp | // Copyright (c) 2018 The Demystify Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "bench.h"
#include "tinyformat.h"
#include "utilstrencodings.h"
#include <boost/lexical_cast.hpp>
#include <string>
template <typename T>
std::string NumberToString(T Number){
std::ostringstream oss;
oss << Number;
return oss.str();
}
static void int_atoi(benchmark::State& state)
{
while (state.KeepRunning())
atoi("1");
}
static void int_lexical_cast(benchmark::State& state)
{
while (state.KeepRunning())
boost::lexical_cast<int>("1");
}
static void strings_1_itostr(benchmark::State& state)
{
int i{0};
while (state.KeepRunning())
itostr(++i);
}
static void strings_1_lexical_cast(benchmark::State& state)
{
int i{0};
while (state.KeepRunning())
boost::lexical_cast<std::string>(++i);
}
static void strings_1_numberToString(benchmark::State& state)
{
int i{0};
while (state.KeepRunning())
NumberToString(++i);
}
static void strings_1_to_string(benchmark::State& state)
{
int i{0};
while (state.KeepRunning())
std::to_string(++i);
}
static void strings_2_multi_itostr(benchmark::State& state)
{
int i{0};
while (state.KeepRunning()) {
itostr(i) + itostr(i+1) + itostr(i+2) + itostr(i+3) + itostr(i+4);
++i;
}
}
static void strings_2_multi_lexical_cast(benchmark::State& state)
{
int i{0};
while (state.KeepRunning()) {
boost::lexical_cast<std::string>(i) +
boost::lexical_cast<std::string>(i+1) +
boost::lexical_cast<std::string>(i+2) +
boost::lexical_cast<std::string>(i+3) +
boost::lexical_cast<std::string>(i+4);
++i;
}
}
static void strings_2_multi_numberToString(benchmark::State& state)
{
int i{0};
while (state.KeepRunning()) {
NumberToString(i) + NumberToString(i+1) + NumberToString(i+2) + NumberToString(i+3) + NumberToString(i+4);
++i;
}
}
static void strings_2_multi_to_string(benchmark::State& state)
{
int i{0};
while (state.KeepRunning()) {
std::to_string(i) + std::to_string(i+1) + std::to_string(i+2) + std::to_string(i+3) + std::to_string(i+4);
++i;
}
}
static void strings_2_strptintf(benchmark::State& state)
{
int i{0};
while (state.KeepRunning()) {
strprintf("%d|%d|%d|%d|%d", i, i+1, i+2, i+3, i+4);
++i;
}
}
BENCHMARK(int_atoi);
BENCHMARK(int_lexical_cast);
BENCHMARK(strings_1_itostr);
BENCHMARK(strings_1_lexical_cast);
BENCHMARK(strings_1_numberToString);
BENCHMARK(strings_1_to_string);
BENCHMARK(strings_2_multi_itostr);
BENCHMARK(strings_2_multi_lexical_cast);
BENCHMARK(strings_2_multi_numberToString);
BENCHMARK(strings_2_multi_to_string);
BENCHMARK(strings_2_strptintf);
| [
"Dalialaya4@gmail.com"
] | Dalialaya4@gmail.com |
8ff124807736fce32c2743b9f2bb3d73c2419707 | 28961586ec8354febf61da0d6abec9bc66ef5fca | /ForTheSweet_Server/ForTheSweet_Server/Player.h | 3ba1882bba96eb0f6b03bad4f393a9ad5378f02e | [] | no_license | Kwon-Young-Hyun/For_The_Sweet_Server | 2e8ac0eeddd5c947c9388f9a065a66aed75769fe | e4ddd2b2ba9f1dc0336666571bc061da93089129 | refs/heads/master | 2020-05-03T09:04:52.725641 | 2019-05-03T10:40:10 | 2019-05-03T10:40:10 | 178,544,373 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 855 | h | #pragma once
#include "Physx.h"
enum { Anim_Idle, Anim_Walk,
Anim_Weak_Attack1, Anim_Weak_Attack2, Anim_Weak_Attack3,
Anim_Hard_Attack1, Anim_Hard_Attack2,
Anim_Guard, Anim_PowerUp, Anim_Jump
};
class PlayerHitReport : public PxUserControllerHitReport {
public:
void onShapeHit(const PxControllerShapeHit &hit) {
cout << "ShapedHit!!!\n";
}
void onControllerHit(const PxControllersHit &hit) {
cout << "ControllerHit!!!\n";
}
void onObstacleHit(const PxControllerObstacleHit &hit) {
cout << "ObstacleHit!!!\n";
}
};
class CPlayer
{
public:
CPlayer();
~CPlayer();
void move(int direction, float distance);
void setPlayerController(CPhysx *physx);
void setPosition(PxVec3 pos);
void setVelocity(PxVec3 vel);
public:
PxVec3 m_Pos;
PxVec3 m_Vel;
PxCapsuleController *m_PlayerController;
PlayerHitReport *m_HitReport;
};
| [
"ehe151@naver.com"
] | ehe151@naver.com |
8a0583dd336163fbbf96832f61bf881530c32122 | 32563e2d9f90454376397ae488a42424bd9b6c29 | /DommageGuerrier.hpp | 0df0620db73cec8abca4f566fb9557c27e6c26e6 | [] | no_license | fhoubart/B2-Game | 97633f4f60ee01dacc001e9fce5fd2d35360fbfa | 3838cca67d83f91cd7f277782caf411183bed777 | refs/heads/master | 2020-04-06T18:37:21.049536 | 2018-11-15T09:09:52 | 2018-11-15T09:09:52 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 242 | hpp | #include <iostream>
#include <string>
#include "Action.hpp"
using namespace std;
class DommageGuerrier : public Action{
public:
virtual string getNom() const;
virtual void execute(Personnage *emetteur, Personnage *recepteur);
};
| [
"gabin.deboulogne@gmail.com"
] | gabin.deboulogne@gmail.com |
bf58497675205bb7d856852b2409ef1a1b9f2ed9 | 0d6560bb341dca5ab9a5c0f4c9fb3970e2fdb035 | /POSCAT/upload/code/acmicpc/2525.cpp | 86fb60b06d96173c5d36725db675cfbce695afff | [] | no_license | yougatup/yougatup.github.io | 7737d70baceab147fed645d40cd63f66f2be22bd | 194626540a90b15d9b9279e185886c701385bb7f | refs/heads/master | 2020-04-12T05:39:11.078724 | 2016-10-14T01:28:23 | 2016-10-14T01:28:23 | 65,126,836 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 199 | cpp | #include <iostream>
using namespace std;
int main()
{
int a,b,c;
cin>>a>>b>>c;
if(b+c>=60)
cout<<(a+(b+c)/60)%24<<" ";
else
cout<<a<<" ";
cout<<(b+c)%60<<endl;
return 0;
}
| [
"yougatup@gmail.com"
] | yougatup@gmail.com |
4814ea57e5a262d25069f87ea9ad6d121e290723 | 042dd77f1c0adad08117a507aaa9b0f39ad72d6b | /案例26-Koch曲线算法/Test.cpp | 2ef046453699018e3a40f8acc20e0265639db29f | [] | no_license | daoxiaochuan/Computer_graphics | c3af8b3cb28fd0c22a2a73fd0488525e9f36f73d | 70a04d7c528dd681691424521fc528622e64aa41 | refs/heads/master | 2023-08-05T09:07:02.361578 | 2019-09-11T02:31:20 | 2019-09-11T02:31:20 | null | 0 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 4,085 | cpp | // Test.cpp : Defines the class behaviors for the application.
//
#include "stdafx.h"
#include "Test.h"
#include "MainFrm.h"
#include "TestDoc.h"
#include "TestView.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CTestApp
BEGIN_MESSAGE_MAP(CTestApp, CWinApp)
//{{AFX_MSG_MAP(CTestApp)
ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG_MAP
// Standard file based document commands
ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
// Standard print setup command
ON_COMMAND(ID_FILE_PRINT_SETUP, CWinApp::OnFilePrintSetup)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CTestApp construction
CTestApp::CTestApp()
{
// TODO: add construction code here,
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CTestApp object
CTestApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CTestApp initialization
BOOL CTestApp::InitInstance()
{
AfxEnableControlContainer();
// Standard initialization
// If you are not using these features and wish to reduce the size
// of your final executable, you should remove from the following
// the specific initialization routines you do not need.
#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif
// Change the registry key under which our settings are stored.
// TODO: You should modify this string to be something appropriate
// such as the name of your company or organization.
SetRegistryKey(_T("Local AppWizard-Generated Applications"));
LoadStdProfileSettings(); // Load standard INI file options (including MRU)
// Register the application's document templates. Document templates
// serve as the connection between documents, frame windows and views.
CSingleDocTemplate* pDocTemplate;
pDocTemplate = new CSingleDocTemplate(
IDR_MAINFRAME,
RUNTIME_CLASS(CTestDoc),
RUNTIME_CLASS(CMainFrame), // main SDI frame window
RUNTIME_CLASS(CTestView));
AddDocTemplate(pDocTemplate);
// Parse command line for standard shell commands, DDE, file open
CCommandLineInfo cmdInfo;
ParseCommandLine(cmdInfo);
// Dispatch commands specified on the command line
if (!ProcessShellCommand(cmdInfo))
return FALSE;
// The one and only window has been initialized, so show and update it.
m_pMainWnd->ShowWindow(SW_MAXIMIZE);
m_pMainWnd->SetWindowText("°¸Àý26:KochÇúÏßËã·¨");
m_pMainWnd->UpdateWindow();
return TRUE;
}
/////////////////////////////////////////////////////////////////////////////
// CAboutDlg dialog used for App About
class CAboutDlg : public CDialog
{
public:
CAboutDlg();
// Dialog Data
//{{AFX_DATA(CAboutDlg)
enum { IDD = IDD_ABOUTBOX };
//}}AFX_DATA
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CAboutDlg)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
//{{AFX_MSG(CAboutDlg)
// No message handlers
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
{
//{{AFX_DATA_INIT(CAboutDlg)
//}}AFX_DATA_INIT
}
void CAboutDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CAboutDlg)
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
//{{AFX_MSG_MAP(CAboutDlg)
// No message handlers
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
// App command to run the dialog
void CTestApp::OnAppAbout()
{
CAboutDlg aboutDlg;
aboutDlg.DoModal();
}
/////////////////////////////////////////////////////////////////////////////
// CTestApp message handlers
| [
"2907805535@qq.com"
] | 2907805535@qq.com |
b6238103efda50e222781d41b86f5d2c5086623d | 2ffe6abd918db53653c9893c81033cb38af6b483 | /Source/MiniSolarSystem/Public/GasGiant.h | 3113ff20c068e75f709d1443d0b72215ba7e185c | [
"MIT"
] | permissive | davidalex791/MiniSolarSystem | c55e3932f5a8689982106acce0b9b35f32655f49 | 7e2c78b077e9331aec4310f6cfc9e309c2c6989b | refs/heads/master | 2023-08-02T07:23:37.870763 | 2021-09-23T20:17:55 | 2021-09-23T20:17:55 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,900 | h | // Copyright Soren Gilbertson
#pragma once
#include "CoreMinimal.h"
#include "CelestialBody.h"
#include "GasGiantColorSettings.h"
#include "GasGiant.generated.h"
/**
*
*/
// Forward Declarations
class GaseousColorGenerator;
UCLASS()
class MINISOLARSYSTEM_API AGasGiant : public ACelestialBody
{
GENERATED_BODY()
public:
AGasGiant();
// Used to reinitialize the gas giant after loading
void ReInit();
UPROPERTY(EditAnywhere, BlueprintReadWrite)
UStaticMeshComponent* Mesh;
UPROPERTY(SaveGame, EditAnywhere, BlueprintReadWrite)
FGasGiantColorSettings ColorSettings;
UFUNCTION(BlueprintCallable)
void SetRadius(float NewRadius);
virtual float GetBodyRadius() const override { return Radius * 100; }
GaseousColorGenerator* ColorGenerator;
#if WITH_EDITOR
virtual void PostEditChangeProperty(FPropertyChangedEvent& PropertyChangedEvent) override;
#endif
private:
UPROPERTY(SaveGame, EditAnywhere, meta = (ClampMin = "1"))
float Radius = 1;
virtual void BeginPlay() override;
public:
UMaterialInterface* BasePlanetMat;
UPROPERTY(EditAnywhere, BlueprintReadOnly)
UMaterialInstanceDynamic* DynamicMaterial;
UFUNCTION(BlueprintCallable, CallInEditor)
void GenerateMaterial();
UFUNCTION(BlueprintCallable, CallInEditor)
void NewVoronoiForStorms();
UFUNCTION(BlueprintCallable)
UCurveLinearColor* GetGradient() const { return ColorSettings.Gradient; }
UFUNCTION(BlueprintCallable)
void SetGradient(UCurveLinearColor* NewGradient);
// ~~~ Voronoi Settings ~~~
UFUNCTION(BlueprintCallable)
int GetNumStorms() const { return ColorSettings.NumStorms; }
UFUNCTION(BlueprintCallable)
void SetNumStorms(int NewNumStorms);
UFUNCTION(BlueprintCallable)
float GetStormFalloff() const { return ColorSettings.StormFalloff; }
UFUNCTION(BlueprintCallable)
void SetStormFalloff(float NewStormFalloff);
const int LowBound = 100;
const int HighBound = 924;
};
| [
"soren.gilbertson13@gmail.com"
] | soren.gilbertson13@gmail.com |
5bc71388993b8a7ee4f95d3f76045d9c10affa11 | fb6b75c3348a384b87f8c0736c11e3846544c31c | /Samples/DirectMLSuperResolution/Kits/DirectXTK12/Src/pch.cpp | 63d7d1d8ca2f1a4b363db13b1bc5ca48ab8ebef9 | [
"MIT",
"LGPL-2.1-or-later",
"Apache-2.0",
"GPL-3.0-only",
"LicenseRef-scancode-generic-cla"
] | permissive | microsoft/DirectML | abcf90a6ecdded088da1636567bc111c43aca3a6 | ce57292b4214b63f1aaf636a69d64e3a8b581015 | refs/heads/master | 2023-08-27T22:08:27.587128 | 2023-08-26T03:28:45 | 2023-08-26T03:28:45 | 175,103,120 | 1,405 | 222 | MIT | 2023-09-14T16:44:45 | 2019-03-12T00:08:04 | Python | UTF-8 | C++ | false | false | 364 | cpp | //--------------------------------------------------------------------------------------
// File: pch.cpp
//
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
//
// http://go.microsoft.com/fwlink/?LinkID=615561
//--------------------------------------------------------------------------------------
#include "pch.h"
| [
"noreply@github.com"
] | noreply@github.com |
3c0cf5333b6617a6b66e3d21f7be07c9404491ea | 41495754cf8b951b23cece87b5c79a726748cff7 | /Solutions/Atcoder/Contests/AtCoder Beginner Contest 188/f.cpp | 1c86fda52fc0336978915635e0fcf5a07c74841d | [] | no_license | PedroAngeli/Competitive-Programming | 86ad490eced6980d7bc3376a49744832e470c639 | ff64a092023987d5e3fdd720f56c62b99ad175a6 | refs/heads/master | 2021-10-23T04:49:51.508166 | 2021-10-13T21:39:21 | 2021-10-13T21:39:21 | 198,916,501 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,615 | cpp | #include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace std;
using namespace __gnu_pbds;
#define endl '\n'
#define f first
#define s second
#define ub upper_bound
#define lb lower_bound
#define pb push_back
#define all(c) (c).begin(), (c).end()
#define sz(x) (int)(x).size()
#define ordered_set tree<int, null_type, less<int>, rb_tree_tag, tree_order_statistics_node_update>
#define fbo find_by_order
#define ook order_of_key
#define fastio ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
#define debug(...) __f(#__VA_ARGS__, __VA_ARGS__)
template <typename Arg1>
void __f(const char* name, Arg1&& arg1){
cerr << "[" << name << " : " << arg1 << "]" << endl;
}
template <typename Arg1, typename... Args>
void __f(const char* names, Arg1&& arg1, Args&&... args){
const char* comma = strchr(names + 1, ',');cerr << "[";
cerr.write(names, comma - names) << " : " << arg1<<"] | ";__f(comma+1, args...);
}
using ld = long double;
using ll = long long;
using pii = pair <int,int>;
using pll = pair <ll,ll>;
using vi = vector <int>;
using vll = vector <ll>;
using vpii = vector <pii>;
using vpll = vector<pll>;
using vs = vector <string>;
unordered_map <ll,ll> dp;
ll solve(ll x, ll y){
if(dp[y]) return dp[y];
if(x >= y) return dp[y] = x - y;
if(y%2 == 0) return dp[y] = min(y-x, 1 + solve(x, y/2));
else return dp[y] = min({y-x, 2 + solve(x, (y-1)/2), 2 + solve(x, (y+1)/2)});
}
int main(){
fastio;
ll x, y;
cin >> x >> y;
if(x > y){
cout << x-y << endl;
return 0;
}
cout << solve(x, y) << endl;
return 0;
} | [
"pedroans.angeli@hotmail.com"
] | pedroans.angeli@hotmail.com |
de8cfdefd407e45a44f4eb285032b9c5e67b5664 | 59418b5794f251391650d8593704190606fa2b41 | /plugin_api/qsf/qsf/renderer/material/material/MaterialProperty.h | 1805e414e96f080e22fb7587930c0e2ecb3692a6 | [] | no_license | JeveruBerry/emergency5_sdk | 8e5726f28123962541f7e9e4d70b2d8d5cc76cff | e5b23d905c356aab6f8b26432c72d18e5838ccf6 | refs/heads/master | 2023-08-25T12:25:19.117165 | 2018-12-18T16:55:16 | 2018-12-18T17:09:54 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,481 | h | // Copyright (C) 2012-2018 Promotion Software GmbH
//[-------------------------------------------------------]
//[ Header guard ]
//[-------------------------------------------------------]
#pragma once
//[-------------------------------------------------------]
//[ Includes ]
//[-------------------------------------------------------]
#include "qsf/renderer/material/material/MaterialPropertyValue.h"
//[-------------------------------------------------------]
//[ Namespace ]
//[-------------------------------------------------------]
namespace qsf
{
//[-------------------------------------------------------]
//[ Global definitions ]
//[-------------------------------------------------------]
typedef StringHash MaterialPropertyId; ///< Material property identifier, internally just a POD "uint32", result of hashing the property name
//[-------------------------------------------------------]
//[ Classes ]
//[-------------------------------------------------------]
/**
* @brief
* Material property
*/
class MaterialProperty : public MaterialPropertyValue
{
//[-------------------------------------------------------]
//[ Friends ]
//[-------------------------------------------------------]
public:
friend class MaterialProperties;
//[-------------------------------------------------------]
//[ Public definitions ]
//[-------------------------------------------------------]
public:
/**
* @brief
* Usage
*/
enum class Usage : uint8
{
UNKNOWN = 0, ///< Usage not known
STATIC, ///< Property is considered to not change regularly and results in shader combinations
STATIC_PASS, ///< Property is considered to only change per-pass (consider this really expensive) and results in shader combinations, for example depth only rendering or rendering with wet surfaces
DYNAMIC, ///< Property is considered to change regularly and hence will be handled as shader constant managed in a combined constant buffer
RASTERIZER_STATE, ///< Pipeline rasterizer state, property is considered to not change regularly
DEPTH_STENCIL_STATE, ///< Pipeline depth stencil state, property is considered to not change regularly
BLEND_STATE, ///< Pipeline blend state, property is considered to not change regularly
SAMPLER_STATE, ///< Sampler state, property is considered to not change regularly // TODO(co) Reserved for future-use
TEXTURE_REFERENCE, ///< Property is a texture asset reference, property is considered to not change regularly
COMPOSITOR_TEXTURE_REFERENCE, ///< Property is an automatic compositor texture reference, value type can be "INTEGER" (= by compositor quad input index) or "COMPOSITOR_TEXTURE_REFERENCE" (= by global/local compositor texture name, value syntax: "@<texture name>@<MRT-index>")
SHADOW_TEXTURE_REFERENCE, ///< Property is an automatic shadow texture reference, value type can be "INTEGER" (= by shadow texture index)
GLOBAL_REFERENCE, ///< Property is a global material property reference
UNKNOWN_REFERENCE, ///< Property is an automatic unknown constant buffer property reference
PASS_REFERENCE, ///< Property is an automatic pass constant buffer property reference
MATERIAL_REFERENCE, ///< Property is a material constant buffer property reference
INSTANCE_REFERENCE ///< Property is an automatic instance constant buffer property reference
};
// Fixed material property IDs for rasterizer state
static const uint32 CULL_MODE_ID = 3810372182; ///< qsf::StringHash("CullMode")
// Fixed material property IDs for depth stencil state
static const uint32 DEPTH_ENABLE_ID = 3269242107; ///< qsf::StringHash("DepthEnable")
static const uint32 DEPTH_WRITE_MASK_ID = 2741916219; ///< qsf::StringHash("DepthWriteMask")
static const uint32 DEPTH_BIAS_CONSTANT_ID = 2118705953; ///< qsf::StringHash("DepthBiasConstant")
static const uint32 DEPTH_BIAS_SLOPE_SCALE_ID = 657666036; ///< qsf::StringHash("DepthBiasSlopeScale")
// Fixed material property IDs for blend state
static const uint32 RENDER_TARGET_WRITE_MASK_ID = 1484432449; ///< qsf::StringHash("RenderTargetWriteMask");
static const uint32 SRC_BLEND_ID = 165558300; ///< qsf::StringHash("SrcBlend")
static const uint32 DEST_BLEND_ID = 4049985944; ///< qsf::StringHash("DestBlend")
//[-------------------------------------------------------]
//[ Public static methods ]
//[-------------------------------------------------------]
public:
inline static MaterialPropertyValue materialPropertyValueFromReference(ValueType valueType, uint32 reference);
/**
* @brief
* Return whether or not the provided material blueprint property usage is a reference to something else
*
* @param[in] usage
* Usage to check
*
* @return
* "true" if the provided material blueprint property usage is a reference to something else, else "false"
*/
inline static bool isReferenceUsage(Usage usage);
/**
* @brief
* Get material property usage as string
*
* @param[in] usage
* The material property usage
*
* @return
* The material property usage as string
*
* @throw
* - Throws an exception in case of an error
*/
static std::string getUsageAsString(Usage usage);
/**
* @brief
* Get material property usage from string
*
* @param[in] valueAsString
* The material property usage as string
*
* @return
* The material property usage
*
* @throw
* - Throws an exception in case of an error
*/
static Usage getUsageFromString(const std::string& valueAsString);
//[-------------------------------------------------------]
//[ Public methods ]
//[-------------------------------------------------------]
public:
/**
* @brief
* Constructor
*
* @note
* - For internal usage only
*/
inline MaterialProperty();
/**
* @brief
* Constructor
*
* @param[in] materialPropertyId
* Material property ID
* @param[in] usage
* Material property usage
* @param[in] materialPropertyValue
* Material property value
*/
inline MaterialProperty(MaterialPropertyId materialPropertyId, Usage usage, const MaterialPropertyValue& materialPropertyValue);
/**
* @brief
* Destructor
*/
inline ~MaterialProperty();
/**
* @brief
* Return the material property ID
*
* @return
* The material property ID
*/
inline MaterialPropertyId getMaterialPropertyId() const;
/**
* @brief
* Return the material blueprint property usage
*
* @return
* The material blueprint property usage
*/
inline Usage getUsage() const;
/**
* @brief
* Return whether or not this is an overwritten property
*
* @return
* "true" if this is an overwritten property, else "false"
*/
inline bool isOverwritten() const;
/**
* @brief
* Return whether or not the material blueprint property is a reference to something else
*
* @return
* "true" if the material blueprint property is a reference to something else, else "false"
*/
inline bool isReferenceUsage() const;
//[-------------------------------------------------------]
//[ Value getter ]
//[-------------------------------------------------------]
inline uint32 getReferenceValue() const;
//[-------------------------------------------------------]
//[ Private data ]
//[-------------------------------------------------------]
private:
MaterialPropertyId mMaterialPropertyId;
Usage mUsage;
bool mOverwritten;
};
//[-------------------------------------------------------]
//[ Namespace ]
//[-------------------------------------------------------]
} // qsf
//[-------------------------------------------------------]
//[ Implementation ]
//[-------------------------------------------------------]
#include "qsf/renderer/material/material/MaterialProperty-inl.h"
| [
"christian.ofenberg@promotion-software.de"
] | christian.ofenberg@promotion-software.de |
e8069e24dde050f5927f141722a84cc1549fd6e6 | 8513e82e8faea4e2b149b163cc035fb61a679a40 | /uva/uva_12696.cpp | b26b119c56c8783f84fa00849cf8352f3dcab8f6 | [] | no_license | MostafijurJ/UVA | dbc27b0a0cf609308dc3492adea9603239c3f57c | 187f71758bb0b93c2e1caf454e916d92d12a7a43 | refs/heads/master | 2020-03-24T22:54:47.508938 | 2018-08-01T05:59:59 | 2018-08-01T05:59:59 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 579 | cpp | /*
Mostafijur Rahman Kajol
JUST, CSE'15
150135
*/
#include<bits/stdc++.h>
using namespace std;
int main()
{
int tc, ans=0;
cin >> tc;
while(tc--){
float len,wid,dep,we;
cin >> len >> wid >> dep >> we;
float sum = len + wid + dep;
///cout << sum <<endl;
if(((sum <= 125.00) || (len==56 && wid ==45 && dep == 25))&& (we <=7.00)){
cout << 1 <<endl;
ans ++;
}
else cout << 0 <<endl;
}
cout << ans <<endl;
return 0;
}
| [
"mrkajol550@gmail.com"
] | mrkajol550@gmail.com |
b25df01d3c1ac69d6126600ea3ddf2ab03dc2a1f | 291f5a7d17b391baeaec5489f411b14c19c007cc | /ALG/main.cpp | d44e0e180f6757bc8e6fc12885813d7e4927fa07 | [] | no_license | CieloSun/Algorithms-for-blog | e557e9dd49f65949dd861205a4c2afa87220e8e6 | 5aaaeb2e15f0d4c7696e054b1366e49652d6b4b0 | refs/heads/master | 2021-01-19T04:19:56.493320 | 2016-07-18T02:00:20 | 2016-07-18T02:00:20 | 63,562,310 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,456 | cpp | #include "sort.h"
#include "search.h"
#include "rankfinding.h"
#include "MST.h"
#include "huffman_code.h"
#include "LCS.h"
#include "matrix-chain.h"
#include <array>
#include <vector>
#include <functional>
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <random>
#include <ctime>
using namespace std;
int testArray[100000];
template<class T> void SortTest(T* testArray)
{
std::default_random_engine engine((unsigned int)time(NULL));
std::uniform_real_distribution<double> distribution(0, 100000);
for (int e = 1;e <= 16;e++)
{
long long length = std::pow(2, e);
for (long long i = 0;i < length;++i)
{
testArray[i] = static_cast<T>(distribution(engine));
}
double startTime = clock();
insertSort(testArray, length);
double endTime = clock();
printf("%lld\t%s%f\n", length, "Insert Sort:", (endTime - startTime) / 1000);
}
}
void searchTest()
{
int a[] = { 1,2,3,4,5,7,9,11,17,20,23,39 };
cout << binarySearch(a, 0, 11, 39) << endl;
cout << binarySearch(a, 0, 11, 37) << endl;
cout << binarySearch(a, 5, 10, 39) << endl;
cout << endl;
cout << binarySearchRecursive(a, 0, 11, 39) << endl;
cout << binarySearchRecursive(a, 0, 11, 37) << endl;
cout << binarySearchRecursive(a, 5, 10, 39) << endl;
cout << endl;
vector<int> b{ 1,2,3,4,4,7,9,11,17,20,23,39 };
cout << "vector<int> b{ 1,2,3,4,4,7,9,11,17,20,23,39 };" << endl;
cout << "count(b.begin(), b.end(), 4):"
<< count(b.begin(), b.end(), 4) << endl;
cout << endl;
cout << "find(b.begin(), b.end(), 39) - b.begin():"
<< find(b.begin(), b.end(), 39) - b.begin() << endl;
cout << "find(b.begin(), b.end(), 4) - b.begin():"
<< find(b.begin(), b.end(), 4) - b.begin() << endl;
cout << "find(b.begin(), b.end(), 37) - b.begin():"
<< find(b.begin(), b.end(), 37) - b.begin() << endl;
cout << "find(b.begin() + 5, b.begin() + 10, 39) - b.begin():"
<< find(b.begin() + 5, b.begin() + 10, 39) - b.begin() << endl;
cout << endl;
cout << "binary_search(b.begin(), b.end(), 39):"
<< binary_search(b.begin(), b.end(), 39) << endl;
cout << "binary_search(b.begin(), b.end(), 37):"
<< binary_search(b.begin(), b.end(), 37) << endl;
cout << endl;
cout << "lower_bound(b.begin(), b.end(), 39) - b.begin():"
<< lower_bound(b.begin(), b.end(), 39) - b.begin() << endl;
cout << "lower_bound(b.begin(), b.end(), 4) - b.begin():"
<< lower_bound(b.begin(), b.end(), 4) - b.begin() << endl;
cout << "lower_bound(b.begin(), b.end(), 37) - b.begin():"
<< lower_bound(b.begin(), b.end(), 37) - b.begin() << endl;
cout << "lower_bound(b.begin() + 5, b.begin() + 10, 39) - b.begin():"
<< lower_bound(b.begin() + 5, b.begin() + 10, 39) - b.begin() << endl;
cout << endl;
cout << "upper_bound(b.begin(), b.end(), 39) - b.begin():"
<< upper_bound(b.begin(), b.end(), 39) - b.begin() << endl;
cout << "upper_bound(b.begin(), b.end(), 4) - b.begin():"
<< upper_bound(b.begin(), b.end(), 4) - b.begin() << endl;
cout << "upper_bound(b.begin(), b.end(), 37) - b.begin():"
<< upper_bound(b.begin(), b.end(), 37) - b.begin() << endl;
cout << "upper_bound(b.begin() + 5, b.begin() + 10, 39) - b.begin():"
<< upper_bound(b.begin() + 5, b.begin() + 10, 39) - b.begin() << endl;
}
void rankfindingTest()
{
memset(rankVal, -1, sizeof(rankVal));
memset(S, 0, sizeof(S));
S[0] = { 1, 1 };
S[1] = { 1, 3 };
S[2] = { 2, 5 };
S[3] = { 6, 2 };
S[4] = { 9, 3 };
S[5] = { 4, 8 };
S[6] = { 7, 6 };
S[7] = { 5, 5 };
S[8] = { 2, 3 };
rankFinding(S, 0, 9);
for (int i = 0; i < RANK_FINDING_MAX_N; ++i)
{
for (int j = 0; j < RANK_FINDING_MAX_N; ++j)
{
if (rankVal[i][j] != -1)
{
std::cout << i << ' ' << j << ' ' << rankVal[i][j] << std::endl;
}
}
}
}
void shortestPathTest()
{
/*
9
1000000 1 5 7 4 1000000 1000000 1000000 1000000
1000000 1000000 1000000 1000000 1000000 3 10 1000000 1000000
1000000 1000000 1000000 1000000 1000000 2 1000000 2 1000000
1000000 1000000 1000000 1000000 1000000 1000000 1 1000000 1000000
1000000 1000000 1000000 1000000 1000000 1000000 1000000 3 1000000
1000000 1000000 1000000 1000000 1000000 1000000 1000000 1000000 2
1000000 1000000 1000000 1000000 1000000 1000000 1000000 1000000 9
1000000 1000000 1000000 1000000 1000000 1000000 1000000 1000000 5
1000000 1000000 1000000 1000000 1000000 1000000 1000000 1000000 1000000
*/
cin >> V;
for (int i = 0;i < V;++i)
for (int j = 0;j < V;++j) cin >> cost[i][j];
for (int i = 0;i < V;++i) d[i] = INF;
s = 0;
Dijkstra();
//DP_shortestPath();
//Floyd_Washall();
for (int i = 0;i < V;++i) cout << d[i] << endl;
}
void mstTest()
{
/*
9
1000000 1 5 7 4 1000000 1000000 1000000 1000000
1 1000000 1000000 1000000 1000000 3 10 1000000 1000000
5 1000000 1000000 1000000 1000000 2 1000000 2 1000000
7 1000000 1000000 1000000 1000000 1000000 1 1000000 1000000
4 1000000 1000000 1000000 1000000 1000000 1000000 3 1000000
1000000 3 2 1000000 1000000 1000000 1000000 1000000 2
1000000 10 1000000 1 1000000 1000000 1000000 1000000 9
1000000 1000000 2 1000000 3 1000000 1000000 1000000 5
1000000 1000000 1000000 1000000 1000000 2 9 5 1000000
*/
cin >> V;
for (int i = 0;i < V;++i)
for (int j = 0;j < V;++j)
{
cin >> cost[i][j];
}
for (int i = 0;i < V;++i) d[i] = INF;
cout << "Kruskal:" << endl;
Kruskal();
for (int i = 0;i < V;++i)
{
for (int j = 0;j < V;++j)
{
if (path[i][j]) cout << i << " " << j << endl;
}
}
cout << res << endl;
cout << endl;
cout << "Prime" << endl;
Prime();
for (int i = 0;i < V;++i)
{
for (int j = 0;j < V;++j)
{
if (path[i][j]) cout << i << " " << j << endl;
}
}
cout << res << endl;
}
void huffman_codeTest()
{
cin >> huffman_N;
for (int i = 0;i < huffman_N;++i)
{
int tmp;
cin >> tmp;
huffman_node[i].init(i, tmp);
}
make_huffman_tree();
for (int i = 0;i < huffman_N;++i)
cout << i << " " << huffman_node[i].freq << " " << huffman_code_res[i] << endl;
}
void LCS_Test()
{
string s, t;
cin >> s >> t;
cout << LCS(s, t) << endl;
}
void matrix_chain_test()
{
cin >> matrix_V;
for (int i = 0;i <= matrix_V;++i) cin >> matrix_p[i];
for (int i = 0;i <= matrix_V;++i)
{
for (int j = 0;j <= matrix_V;++j)
{
m[i][j] = INF;
}
m[i][i] = 0;
}
int i, j;
while (true)
{
cin >> i >> j;
if (i == -1) break;
cout << matrix_mul(i, j) << endl;
}
}
int main()
{
//SortTest(testArray);
//searchTest();
//rankfindingTest();
//shortestPathTest();
//mstTest();
//huffman_codeTest();
//LCS_Test();
matrix_chain_test();
return 0;
} | [
"632898354@qq.com"
] | 632898354@qq.com |
7fa5a7bb32767f5a7dc0bc414340d376c6d68595 | 6839540003c9a7e6fd122dc361215859fc95643f | /cpp/MCMC/cppa/include/cppa/cppa_fwd.hpp | 1386b241397487a55bc191116e685138cc275295 | [] | no_license | vkramanuj/willow | 2ba355fd9d4539f51470491ff9ce1d2276f333c0 | a36246b3e986d2cef89c61a43d005bb91e105ce9 | refs/heads/master | 2021-09-13T03:56:00.220700 | 2018-04-24T18:05:11 | 2018-04-24T18:05:11 | 110,746,080 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 3,050 | hpp | /******************************************************************************\
* ___ __ *
* /\_ \ __/\ \ *
* \//\ \ /\_\ \ \____ ___ _____ _____ __ *
* \ \ \ \/\ \ \ '__`\ /'___\/\ '__`\/\ '__`\ /'__`\ *
* \_\ \_\ \ \ \ \L\ \/\ \__/\ \ \L\ \ \ \L\ \/\ \L\.\_ *
* /\____\\ \_\ \_,__/\ \____\\ \ ,__/\ \ ,__/\ \__/.\_\ *
* \/____/ \/_/\/___/ \/____/ \ \ \/ \ \ \/ \/__/\/_/ *
* \ \_\ \ \_\ *
* \/_/ \/_/ *
* *
* Copyright (C) 2011-2013 *
* Dominik Charousset <dominik.charousset@haw-hamburg.de> *
* *
* This file is part of libcppa. *
* libcppa is free software: you can redistribute it and/or modify it under *
* the terms of the GNU Lesser General Public License as published by the *
* Free Software Foundation; either version 2.1 of the License, *
* or (at your option) any later version. *
* *
* libcppa 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 Lesser General Public License for more details. *
* *
* You should have received a copy of the GNU Lesser General Public License *
* along with libcppa. If not, see <http://www.gnu.org/licenses/>. *
\******************************************************************************/
#ifndef CPPA_FWD_HPP
#define CPPA_FWD_HPP
#include <cstdint>
namespace cppa {
// classes
class actor;
class group;
class channel;
class behavior;
class any_tuple;
class self_type;
class message_header;
class partial_function;
class uniform_type_info;
class primitive_variant;
class process_information;
// structs
struct anything;
// enums
enum primitive_type : unsigned char;
enum class atom_value : std::uint64_t;
// class templates
template<typename> class optional;
template<typename> class intrusive_ptr;
// typedefs
typedef intrusive_ptr<actor> actor_ptr;
typedef intrusive_ptr<group> group_ptr;
typedef intrusive_ptr<channel> channel_ptr;
typedef intrusive_ptr<process_information> process_information_ptr;
} // namespace cppa
#endif // CPPA_FWD_HPP
| [
"bsheeran@cs.brown.edu"
] | bsheeran@cs.brown.edu |
70ef41712fa225b5e41ad3f51c1189be280e8ac5 | d09945668f19bb4bc17087c0cb8ccbab2b2dd688 | /atcoder/arc051-100/arc058/d.cpp | 365be4f82a0719e1500886d1d86739a7b0c78554 | [] | no_license | kmjp/procon | 27270f605f3ae5d80fbdb28708318a6557273a57 | 8083028ece4be1460150aa3f0e69bdb57e510b53 | refs/heads/master | 2023-09-04T11:01:09.452170 | 2023-09-03T15:25:21 | 2023-09-03T15:25:21 | 30,825,508 | 23 | 2 | null | 2023-08-18T14:02:07 | 2015-02-15T11:25:23 | C++ | UTF-8 | C++ | false | false | 1,297 | cpp | #include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;
#undef _P
#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
//-------------------------------------------------------
ll H,W,A,B;
ll mo=1000000007;
ll combi(ll N_, ll C_) {
const int NUM_=400001;
static ll fact[NUM_+1],factr[NUM_+1],inv[NUM_+1];
if (fact[0]==0) {
inv[1]=fact[0]=factr[0]=1;
for (int i=2;i<=NUM_;++i) inv[i] = inv[mo % i] * (mo - mo / i) % mo;
for (int i=1;i<=NUM_;++i) fact[i]=fact[i-1]*i%mo, factr[i]=factr[i-1]*inv[i]%mo;
}
if(C_<0 || C_>N_) return 0;
return factr[C_]*fact[N_]%mo*factr[N_-C_]%mo;
}
void solve() {
int i,j,k,l,r,x,y; string s;
cin>>H>>W>>A>>B;
ll ret=0;
for(y=0;y<H-A;y++) ret += combi(B-1+y,y)*combi(H-y-1+W-B-1,W-B-1)%mo;
cout<<ret%mo<<endl;
}
int main(int argc,char** argv){
string s;int i;
if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
FOR(i,argc-1) s+=argv[i+1],s+='\n';
FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
solve(); return 0;
}
| [
"kmjp@users.noreply.github.com"
] | kmjp@users.noreply.github.com |
76e08595f39647d79721c76db69956f0a04a7eaa | 5456502f97627278cbd6e16d002d50f1de3da7bb | /chrome/browser/chromeos/arc/intent_helper/arc_navigation_throttle.h | 7b9d70752c9a7543d98ef217ec8d5ccdfdf76ff5 | [
"BSD-3-Clause"
] | permissive | TrellixVulnTeam/Chromium_7C66 | 72d108a413909eb3bd36c73a6c2f98de1573b6e5 | c8649ab2a0f5a747369ed50351209a42f59672ee | refs/heads/master | 2023-03-16T12:51:40.231959 | 2017-12-20T10:38:26 | 2017-12-20T10:38:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,933 | h | // Copyright 2016 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 CHROME_BROWSER_CHROMEOS_ARC_INTENT_HELPER_ARC_NAVIGATION_THROTTLE_H_
#define CHROME_BROWSER_CHROMEOS_ARC_INTENT_HELPER_ARC_NAVIGATION_THROTTLE_H_
#include <memory>
#include <string>
#include <utility>
#include <vector>
#include "base/callback.h"
#include "base/macros.h"
#include "base/memory/weak_ptr.h"
#include "components/arc/intent_helper/activity_icon_loader.h"
#include "content/public/browser/navigation_throttle.h"
#include "ui/gfx/image/image.h"
#include "url/gurl.h"
namespace content {
class NavigationHandle;
class WebContents;
} // namespace content
namespace arc {
// A class that allow us to retrieve ARC app's information and handle URL
// traffic initiated on Chrome browser, either on Chrome or an ARC's app.
class ArcNavigationThrottle : public content::NavigationThrottle {
public:
// These enums are used to define the buckets for an enumerated UMA histogram
// and need to be synced with histograms.xml. This enum class should also be
// treated as append-only.
enum class CloseReason : int {
ERROR = 0,
DIALOG_DEACTIVATED = 1,
ALWAYS_PRESSED = 2,
JUST_ONCE_PRESSED = 3,
PREFERRED_ACTIVITY_FOUND = 4,
SIZE,
INVALID = SIZE,
};
// As for CloseReason, these define the buckets for an UMA histogram, so this
// must be treated in an append-only fashion. This helps especify where a
// navigation will continue.
enum class Platform : int {
ARC = 0,
CHROME = 1,
SIZE,
};
// Restricts the amount of apps displayed to the user without the need of a
// ScrollView.
enum { kMaxAppResults = 3 };
struct AppInfo {
AppInfo(gfx::Image img, std::string package, std::string activity)
: icon(img), package_name(package), activity_name(activity) {}
gfx::Image icon;
std::string package_name;
std::string activity_name;
};
using ShowIntentPickerCallback = base::Callback<void(
content::WebContents* web_contents,
const std::vector<AppInfo>& app_info,
const base::Callback<void(const std::string&, CloseReason)>& cb)>;
ArcNavigationThrottle(content::NavigationHandle* navigation_handle,
const ShowIntentPickerCallback& show_intent_picker_cb);
~ArcNavigationThrottle() override;
static bool ShouldOverrideUrlLoadingForTesting(const GURL& previous_url,
const GURL& current_url);
// Finds |selected_app_package| from the |handlers| array and returns the
// index. If the app is not found, returns |handlers.size()|.
static size_t GetAppIndex(
const std::vector<mojom::IntentHandlerInfoPtr>& handlers,
const std::string& selected_app_package);
// Determines the destination of the current navigation. We know that if the
// |close_reason| is either ERROR or DIALOG_DEACTIVATED the navigation MUST
// stay in Chrome, otherwise we can assume the navigation goes to ARC with the
// exception of the |selected_app_package| being Chrome.
static Platform GetDestinationPlatform(
const std::string& selected_app_package,
CloseReason close_reason);
// Records intent picker usage statistics as well as whether navigations are
// continued or redirected to Chrome or ARC respectively, via UMA histograms.
static void RecordUma(CloseReason close_reason, Platform platform);
// Swaps Chrome app with any app in row |kMaxAppResults-1| iff its index is
// bigger, thus ensuring the user can always see Chrome without scrolling.
// When swap is needed, fills |out_indices| and returns true. If |handlers|
// do not have Chrome, returns false.
static bool IsSwapElementsNeeded(
const std::vector<mojom::IntentHandlerInfoPtr>& handlers,
std::pair<size_t, size_t>* out_indices);
static bool IsAppAvailableForTesting(
const std::vector<mojom::IntentHandlerInfoPtr>& handlers);
static size_t FindPreferredAppForTesting(
const std::vector<mojom::IntentHandlerInfoPtr>& handlers);
private:
// content::Navigation implementation:
NavigationThrottle::ThrottleCheckResult WillStartRequest() override;
NavigationThrottle::ThrottleCheckResult WillRedirectRequest() override;
NavigationThrottle::ThrottleCheckResult HandleRequest();
void OnAppCandidatesReceived(
std::vector<mojom::IntentHandlerInfoPtr> handlers);
void OnAppIconsReceived(
std::vector<mojom::IntentHandlerInfoPtr> handlers,
std::unique_ptr<ActivityIconLoader::ActivityToIconsMap> icons);
void OnIntentPickerClosed(std::vector<mojom::IntentHandlerInfoPtr> handlers,
const std::string& selected_app_package,
CloseReason close_reason);
GURL GetStartingGURL() const;
// A callback object that allow us to display an IntentPicker when Run() is
// executed, it also allow us to report the user's selection back to
// OnIntentPickerClosed().
ShowIntentPickerCallback show_intent_picker_callback_;
// A cache of the action the user took the last time this navigation throttle
// popped up the intent picker dialog. If the dialog has never been popped up
// before, this will have a value of CloseReason::INVALID. Used to avoid
// popping up the dialog multiple times on chains of multiple redirects.
CloseReason previous_user_action_;
// Keeps a referrence to the starting GURL.
GURL starting_gurl_;
// This has to be the last member of the class.
base::WeakPtrFactory<ArcNavigationThrottle> weak_ptr_factory_;
DISALLOW_COPY_AND_ASSIGN(ArcNavigationThrottle);
};
} // namespace arc
#endif // CHROME_BROWSER_CHROMEOS_ARC_INTENT_HELPER_ARC_NAVIGATION_THROTTLE_H_
| [
"lixiaodonglove7@aliyun.com"
] | lixiaodonglove7@aliyun.com |
b40af8e9b6b8320b806a891d4ac75aea55c65b74 | ea401c3e792a50364fe11f7cea0f35f99e8f4bde | /hackathon/brl/swc2maskBRL/swc2maskBRL_plugin.h | f1887f9071119fc67096159f57efaa7c3cce89c5 | [
"MIT"
] | permissive | Vaa3D/vaa3d_tools | edb696aa3b9b59acaf83d6d27c6ae0a14bf75fe9 | e6974d5223ae70474efaa85e1253f5df1814fae8 | refs/heads/master | 2023-08-03T06:12:01.013752 | 2023-08-02T07:26:01 | 2023-08-02T07:26:01 | 50,527,925 | 107 | 86 | MIT | 2023-05-22T23:43:48 | 2016-01-27T18:19:17 | C++ | UTF-8 | C++ | false | false | 653 | h | #ifndef __SWC2MASKBRL_PLUGIN_H__
#define __SWC2MASKBRL_PLUGIN_H__
#include <QtGui>
#include <v3d_interface.h>
//#include "vaa3d_neurontoolbox_para.h"
class SWC2MaskBRLPlugin : public QObject, public V3DPluginInterface2_1
{
Q_OBJECT
Q_INTERFACES(V3DPluginInterface2_1);
public:
float getPluginVersion() const {return 1.1f;}
QStringList menulist() const;
void domenu(const QString &menu_name, V3DPluginCallback2 &callback, QWidget *parent);
QStringList funclist() const;
bool dofunc(const QString &func_name, const V3DPluginArgList &input, V3DPluginArgList &output, V3DPluginCallback2 &callback, QWidget *parent);
};
#endif
| [
"brianl@alleninstitute.org"
] | brianl@alleninstitute.org |
41431f844edc4ebb5a8575595d923d8003a16758 | dd1b4089f638d801698e34b830b2767149b665f6 | /R3BRoot_Source/r3bdata/tofData/R3BTofdHitData.h | c1c43533c109373063ff210fb2dee61a9d1563c5 | [] | no_license | ChristiaanAlwin/NeuLAND_Veto | d1c1b41cfb1f4ade2de664188da615b2541d3e7b | ed06682b03b1bd6b2c7ecc2f3be7c62036ef45ee | refs/heads/master | 2021-01-05T19:02:08.598882 | 2020-02-17T13:55:17 | 2020-02-17T13:55:17 | 241,109,623 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 917 | h | #ifndef R3BTOFDHITDATA_H
#define R3BTOFDHITDATA_H
#include "TObject.h"
// for the data analysis of the Tofd detectors.
// Introduced by M.Heil, May 2016
class R3BTofdHitData : public TObject
{
public:
// Default Constructor
R3BTofdHitData();
// Standard Constructor
R3BTofdHitData(Double_t t,Double_t x, Double_t y, Double_t Z, Double_t tdiff);
// Destructor
virtual ~R3BTofdHitData() { }
// Getters
// inline const UChar_t& GetDetector() const { return fDetector; }
private:
Double_t fTime_ns; // average time of the scintillators and planes
Double_t fXpos_cm; // x-position of the scintillators
Double_t fYpos_cm; // y-position of the scintillators
Double_t fZ; // Z of the scintillators
Double_t fTimeDiff2Ref_ns; // difference to master trigger time
public:
ClassDef(R3BTofdHitData, 1)
};
#endif
| [
"Christiaan90518@gmail.com"
] | Christiaan90518@gmail.com |
fca4aea06c3fe3b7e7395c8d3aef98f909e3749e | 54c67306d63bb69a5cf381d12108d3dc98ae0f5d | /game/sound/989snd/player.h | 26725752541a69462de4baab6c07dcf8387a9d44 | [
"ISC"
] | permissive | open-goal/jak-project | adf30a3459c24afda5b180e3abe1583c93458a37 | d96dce27149fbf58586160cfecb634614f055943 | refs/heads/master | 2023-09-01T21:51:16.736237 | 2023-09-01T16:10:59 | 2023-09-01T16:10:59 | 289,585,720 | 1,826 | 131 | ISC | 2023-09-14T13:27:47 | 2020-08-22T23:55:21 | Common Lisp | UTF-8 | C++ | false | false | 2,959 | h | // Copyright: 2021 - 2022, Ziemas
// SPDX-License-Identifier: ISC
#pragma once
#include <memory>
#include <mutex>
#include <unordered_map>
#include <vector>
#include "ame_handler.h"
#include "handle_allocator.h"
#include "loader.h"
#include "midi_handler.h"
#include "sound_handler.h"
#include "common/common_types.h"
#include "common/util/FileUtil.h"
#include "../common/synth.h"
#include "game/sound/989snd/vagvoice.h"
#include "third-party/cubeb/cubeb/include/cubeb/cubeb.h"
namespace snd {
class player {
public:
player();
~player();
player(const player&) = delete;
player operator=(const player&) = delete;
// player(player&& other) noexcept = default;
// player& operator=(player&& other) noexcept = default;
u32 load_bank(fs::path& path, size_t offset);
u32 play_sound(u32 bank, u32 sound, s32 vol, s32 pan, s32 pm, s32 pb);
u32 play_sound_by_name(u32 bank,
char* bank_name,
char* sound_name,
s32 vol,
s32 pan,
s32 pm,
s32 pb);
void set_sound_reg(u32 sound_id, u8 reg, u8 value);
void set_global_excite(u8 value) { GlobalExcite = value; };
bool sound_still_active(u32 sound_id);
void set_master_volume(u32 group, s32 volume);
void unload_bank(u32 bank_handle);
void stop_sound(u32 sound_handle);
void set_pan_table(vol_pair* pantable);
void set_playback_mode(s32 mode);
void pause_sound(s32 sound_handle);
void continue_sound(s32 sound_handle);
void pause_all_sounds_in_group(u8 group);
void continue_all_sounds_in_group(u8 group);
void set_sound_vol_pan(s32 sound_handle, s32 vol, s32 pan);
void submit_voice(std::shared_ptr<voice>& voice) { m_synth.add_voice(voice); };
void set_sound_pmod(s32 sound_handle, s32 mod);
void init_cubeb();
void destroy_cubeb();
s32 get_tick() { return m_tick; };
void stop_all_sounds();
s32 get_sound_user_data(s32 block_handle,
char* block_name,
s32 sound_id,
char* sound_name,
SFXUserData* dst);
private:
std::recursive_mutex m_ticklock; // TODO does not need to recursive with some light restructuring
id_allocator m_handle_allocator;
std::unordered_map<u32, std::unique_ptr<sound_handler>> m_handlers;
void tick(s16_output* stream, int samples);
#ifdef _WIN32
bool m_coinitialized = false;
#endif
loader m_loader;
synth m_synth;
voice_manager m_vmanager;
s32 m_tick{0};
cubeb* m_ctx{nullptr};
cubeb_stream* m_stream{nullptr};
static long sound_callback(cubeb_stream* stream,
void* user,
const void* input,
void* output_buffer,
long len);
static void state_callback(cubeb_stream* stream, void* user, cubeb_state state);
};
} // namespace snd
| [
"noreply@github.com"
] | noreply@github.com |
f74b1f1377d9695063bd7783ade76b9278d37d44 | 801a098c66bd8179cfec88cad954eeec38715274 | /AlgoDesign/NumIsland.cpp | 45ce46e654e12aad2ff24d3a2f197e4ae56abe4c | [] | no_license | John-Zqa/AlgoDesign | 399cc59f9aef784ab9bc31ee410f4f5ae84ba212 | 7a2cde603845d95b1c9bbe92d60c6de6adc72de9 | refs/heads/master | 2020-03-30T06:18:43.412306 | 2018-09-30T01:06:54 | 2018-09-30T01:06:54 | 150,851,573 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,387 | cpp | //
// NumIsland.cpp
// AlgoDesign
//
// Created by Qiao Zhu on 9/29/18.
// Copyright © 2018 Qiao Zhu. All rights reserved.
//
#include <vector>
#include <queue>
using namespace std;
int numIslands(vector<vector<char>>& grid) {
if(grid.empty()){
return 0;
}
int count=0,m=(int)grid.size(),n=(int)grid[0].size();
for (int i=0; i<m; i++) {
for (int j=0; j<n; j++) {
if (grid[i][j]=='0') {
continue;
}
queue<vector<int>> q;
grid[i][j]='0';
count++;
vector<int> sPoint({i,j});
q.push(sPoint);
while (!q.empty()) {
vector<int> cur = q.front();
int x=cur[0],y=cur[1];
q.pop();
if (x>0 && grid[x-1][y]=='1') {
grid[x-1][y]='0';
q.push({x-1,y});
}
if (y>0 && grid[x][y-1]=='1') {
grid[x][y-1]='0';
q.push({x,y-1});
}
if (x<m-1 && grid[x+1][y]=='1') {
grid[x+1][y]='0';
q.push({x+1,y});
}
if (y<n-1 && grid[x][y+1]=='1') {
grid[x][y+1]='0';
q.push({x,y+1});
}
}
}
}
return count;
}
| [
"qiaozhu@qiaos-mbp.dyndns.rice.edu"
] | qiaozhu@qiaos-mbp.dyndns.rice.edu |
289f53981942a0e57a507f1ea59870dd154db387 | 667ea5de3794e5fbe22f237a6ddd2e83a9c6387c | /code/face_recognition_lib/preprocessor_manager.h | 741072d28496dcc86c3640c733e08d37632b0e4d | [] | no_license | pipigenius/face_recognition | fb118e0208eb02d87502861068ff6914127aec04 | 2c253a943d0db8373ca88957f71fbf168d411d5d | refs/heads/master | 2020-12-03T22:16:21.279954 | 2017-05-11T03:47:48 | 2017-05-11T03:47:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 547 | h | #pragma once
#include "preprocessor.h"
namespace face_recognition
{
class preprocessor_manager : public boost::noncopyable
{
public:
static boost::shared_ptr<preprocessor_manager> create();
void destroy();
result add_preprocessor(boost::shared_ptr<preprocessor> sp_preprocessor);
result process(boost::shared_ptr<picture> sp_pic_in, const std::wstring& str_pic_filename, boost::shared_ptr<picture>& sp_pic_out);
unsigned int get_preprocess_count();
private:
std::vector<boost::shared_ptr<preprocessor> > m_vec_preprocessor;
};
} | [
"nervmor@126.com"
] | nervmor@126.com |
0824c6d294d1905e4c7ba009acf49d1a250909cc | 998c9177b2d0ff4c66e5592c2e43297afe0a2956 | /advanced/STL/vectors&Memory.cpp | 87525729c6e1e8f2c1692cb5d22809fe3d9fe0a5 | [] | no_license | marcusjwhelan/cppcourses | 571ab5f742a3c1477693965865225d114ac5c344 | 88a5eef92c7cc4325fd92818512eec08f4874b6b | refs/heads/master | 2020-03-31T00:27:20.111093 | 2018-10-05T15:20:20 | 2018-10-05T15:20:20 | 151,740,256 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,040 | cpp | #include <iostream>
#include <vector>
using namespace std;
int main() {
vector<double> numbers(20); // can init to # with -> numbers(20, #); or string what not
cout << "Size: " << numbers.size() << endl;
// if you add to a vector that has a set size it will create a new vector and add all the elements
// plus the new element
unsigned long capacity = numbers.capacity();
cout << "Capacity: " << capacity << endl;
for (int i = 0; i < 10000; i++) {
if (numbers.capacity() != capacity) {
capacity = numbers.capacity();
cout << "Size: " << numbers.size() << endl;
cout << "Capacity: " << capacity << endl;
}
numbers.push_back(i);
}
// can reset capacity but don't need to
numbers.clear(); // numbers.resize(0); does sort of the same thing. cuts off the end
// numbers.reserve(100000); // will ? supposed to increaze capacity
cout << "Size: " << numbers.size() << endl;
cout << "Capacity: " << capacity << endl;
return 0;
} | [
"marcus.j.whelan@gmail.com"
] | marcus.j.whelan@gmail.com |
b01decfb7d80adf34b952f29a0f21206128033ef | 8be9e88f5341f4a6701092268ad9c7041956efbb | /src/Gui/Common/AddressBookDialog.cpp | d901cb1bcb07fea0dad8258d6f00e17bed92e47e | [
"MIT"
] | permissive | Btcfx/4xB-GUI | 2fa6fc005c92cee70cc037cb608158c696ca07d2 | dc829a14db41135d393b94f41bae7097e8a99215 | refs/heads/master | 2020-03-31T12:47:48.264712 | 2018-10-09T12:30:20 | 2018-10-09T12:30:20 | 152,229,573 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,734 | cpp | /*
* Copyright (c) 2017-2018, The 4xbitcoin Developers.
* Portions Copyright (c) 2012-2017, The CryptoNote Developers, The Bytecoin Developers.
*
* This file is part of 4xbitcoin.
*
* This file is subject to the terms and conditions defined in the
* file 'LICENSE', which is part of this source code package.
*/
#include "AddressBookDialog.h"
#include "Models/AddressBookModel.h"
#include "Gui/Common/RightAlignmentColumnDelegate.h"
#include "ui_AddressBookDialog.h"
namespace WalletGui {
AddressBookDialog::AddressBookDialog(QAbstractItemModel* _addressBookModel, QWidget* _parent) :
QDialog(_parent, static_cast<Qt::WindowFlags>(Qt::WindowCloseButtonHint)), m_ui(new Ui::AddressBookDialog) {
m_ui->setupUi(this);
m_ui->m_addressBookView->header()->setSectionResizeMode(QHeaderView::ResizeToContents);
m_ui->m_addressBookView->setModel(_addressBookModel);
m_ui->m_addressBookView->setItemDelegateForColumn(AddressBookModel::COLUMN_ADDRESS, new RightAlignmentColumnDelegate(true, this));
m_ui->m_addressBookView->header()->setSectionResizeMode(AddressBookModel::COLUMN_LABEL, QHeaderView::Fixed);
m_ui->m_addressBookView->header()->setSectionResizeMode(AddressBookModel::COLUMN_ADDRESS, QHeaderView::Stretch);
m_ui->m_addressBookView->header()->hideSection(AddressBookModel::COLUMN_DONATION);
m_ui->m_addressBookView->header()->resizeSection(AddressBookModel::COLUMN_LABEL, 200);
if (_addressBookModel->rowCount() > 0) {
m_ui->m_addressBookView->setCurrentIndex(_addressBookModel->index(0, 0));
}
}
AddressBookDialog::~AddressBookDialog() {
}
QString AddressBookDialog::getAddress() const {
return m_ui->m_addressBookView->currentIndex().data(AddressBookModel::ROLE_ADDRESS).toString();
}
}
| [
"33263353+mybtcfx@users.noreply.github.com"
] | 33263353+mybtcfx@users.noreply.github.com |
ee5d6f5069630eba228fe25cbbc804640d7ef252 | 5acf036ed7883db02902f849f7039fd1073aa7f6 | /Parking 11364/Parking 11364.cpp | 1bc1bb00e68e7ec2cb794fef25997fbc25fe0fd3 | [] | no_license | Nashar-Ahmed/UVA-Problems | e0cbb1b54e49ddcdc1f9ac183ac6b8c5e15c7eb2 | c487ec66bac2caabaf204b0fab2cbea0ba8715db | refs/heads/master | 2020-03-28T20:27:50.559548 | 2018-09-17T06:21:16 | 2018-09-17T06:21:16 | 149,073,181 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 470 | cpp | #include<bits/stdc++.h>
using namespace std;
int main()
{
int tst;
cin>>tst;
while(tst--)
{
int n,a[30];
long long ans;
int mx=0,mn=1000;
cin>>n;
for(int i=0; i<n; i++)
cin>>a[i];
for(int i=0; i<n; i++)
{
if(a[i]>mx)
mx=a[i];
if(a[i]<mn)
mn=a[i];
}
ans=2*(mx-mn);
cout<<ans<<endl;
}
return 0;
}
| [
"bijoy.ruet.cse13@gmail.com"
] | bijoy.ruet.cse13@gmail.com |
4101198d5931d1ef186bf0c6019f7a8803120186 | 733f41021ad37851a02b1ddcff1c455c9d9409a8 | /src/platform/enn_memory_alloc.cpp | a8c0d491cc19f8a5d667619409a05fc028a659d3 | [] | no_license | zengqh/glRenderEngine | e8470abbd9e0e4093ca1065634d0845ff12b2ba6 | 7ae1033271857e4e19e53b034a348a9534106969 | refs/heads/master | 2020-04-02T10:43:45.241443 | 2018-10-23T15:32:11 | 2018-10-23T15:32:11 | 154,352,063 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,170 | cpp | /**
* Copyright (c) By zengqh.
*
* This program is just for fun or demo, in the hope that it
* will be useful, you can redistribute it and/or modify freely.
*
* Time: 2013/05/25
* File: enn_memory_alloc.cpp
* Blog: http://www.cnblogs.com/zengqh/
**/
#include <enn_memory_alloc.h>
#ifdef _WIN32_WINNT
#undef _WIN32_WINNT
#endif
#include <nedmalloc/nedmalloc.c>
#define ENN_ALLOC_ALIGNMENT 8
namespace enn
{
// From OGRE Ned Pooling
namespace _NedPoolingIntern
{
const size_t s_poolCount = 14; // Needs to be greater than 4
void* s_poolFootprint = reinterpret_cast<void*>(0xBB1AA45A);
nedalloc::nedpool* s_pools[s_poolCount + 1] = { 0 };
nedalloc::nedpool* s_poolsAligned[s_poolCount + 1] = { 0 };
size_t poolIDFromSize(size_t a_reqSize)
{
// Requests size 16 or smaller are allocated at a 4 byte granularity.
// Requests size 17 or larger are allocated at a 16 byte granularity.
// With a s_poolCount of 14, requests size 177 or larger go in the default pool.
// spreadsheet style =IF(B35<=16; FLOOR((B35-1)/4;1); MIN(FLOOR((B35-1)/16; 1) + 3; 14))
size_t poolID = 0;
if (a_reqSize > 0)
{
if (a_reqSize <= 16)
{
poolID = (a_reqSize - 1) >> 2;
}
else
{
poolID = std::min<size_t>(((a_reqSize - 1) >> 4) + 3, s_poolCount);
}
}
return poolID;
}
void* internalAlloc(size_t a_reqSize)
{
size_t poolID = poolIDFromSize(a_reqSize);
nedalloc::nedpool* pool(0); // A pool pointer of 0 means the default pool.
if (poolID < s_poolCount)
{
if (s_pools[poolID] == 0)
{
// Init pool if first use
s_pools[poolID] = nedalloc::nedcreatepool(0, 8);
nedalloc::nedpsetvalue(s_pools[poolID], s_poolFootprint); // All pools are stamped with a footprint
}
pool = s_pools[poolID];
}
return nedalloc::nedpmalloc(pool, a_reqSize);
}
void* internalAllocAligned(size_t a_align, size_t a_reqSize)
{
size_t poolID = poolIDFromSize(a_reqSize);
nedalloc::nedpool* pool(0); // A pool pointer of 0 means the default pool.
if (poolID < s_poolCount)
{
if (s_poolsAligned[poolID] == 0)
{
// Init pool if first use
s_poolsAligned[poolID] = nedalloc::nedcreatepool(0, 8);
nedalloc::nedpsetvalue(s_poolsAligned[poolID], s_poolFootprint); // All pools are stamped with a footprint
}
pool = s_poolsAligned[poolID];
}
return nedalloc::nedpmemalign(pool, a_align, a_reqSize);
}
void internalFree(void* a_mem)
{
if (a_mem)
{
nedalloc::nedpool* pool(0);
// nedalloc lets us get the pool pointer from the memory pointer
void* footprint = nedalloc::nedgetvalue(&pool, a_mem);
// Check footprint
if (footprint == s_poolFootprint)
{
// If we allocated the pool, deallocate from this pool...
nedalloc::nedpfree(pool, a_mem);
}
else
{
// ...otherwise let nedalloc handle it.
nedalloc::nedfree(a_mem);
}
}
}
}
//////////////////////////////////////////////////////////////////////////
void* DefaultAlloc::allocBytes( size_t size )
{
return _NedPoolingIntern::internalAllocAligned( ENN_ALLOC_ALIGNMENT, size );
}
void DefaultAlloc::freeBytes( void* p )
{
if ( p )
{
_NedPoolingIntern::internalFree( p );
}
}
} | [
"zengqh.mansion@gmail.com"
] | zengqh.mansion@gmail.com |
e102e20ed2fe541831b59ecbaf062040c5c41cca | bb67df5074534691011310c61a4865d278633901 | /wxMedia/src/scope.h | 78c74bdd2c7962712878eeb142393df3d147fb30 | [] | no_license | aranm/Portmedia | 96a5809ea1ad83c976f39b5637c71690fb55b518 | 19a611cf2205dbf37ad9874da7bc33191b275a8d | refs/heads/master | 2021-07-06T09:31:58.480997 | 2017-09-27T16:09:03 | 2017-09-27T16:09:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 768 | h | /*
* scope.h
* wxMedia
*
* Created by D. Casey Tucker on 2010-02-07.
* Copyright 2010 UNCW. All rights reserved.
*
*/
#ifndef SCOPE_H
#define SCOPE_H
//#include <wx/window.h>
#include <wx/wx.h>
#include "main.h"
#define GETDC wxPaintDC pdc(this); /*wxGCDC gdc( pdc ); */ wxDC &dc = (wxDC&) pdc; //PrepareDC(dc); //m_owner->PrepareDC(dc);
class ScopePanel: public wxWindow {
protected:
int width, height;
public:
ScopePanel(wxWindow *);
//~ScopePanel();
void OnSize(wxSizeEvent&);
void OnPaint(wxPaintEvent&);
void OnIdle(wxIdleEvent &);
void OnTimer(wxTimerEvent &);
//void append(float,float);
float //minv[SAMPLE_RATE], maxv[SAMPLE_RATE];
*minv,
*maxv;
int pos;
void SetBuffers(float*,float*);
DECLARE_EVENT_TABLE();
};
#endif
| [
"casey.tucker@brax.io"
] | casey.tucker@brax.io |
999a2204e8e18138b759da0d595a1f4bca69a7a1 | a2b4da6599b3f933d9688079d735614c090e82ea | /WifiBot/WifiBot.ino | 0f5a2b5204dadc3b45420d20bf34d18748edb45f | [] | no_license | Sayan9696/Basic-iot-projects | 8a612d0c44b813a65b54e039c801d331332d8286 | d5e7a4e3c9d18148f53018808a19524caf11be50 | refs/heads/master | 2023-05-12T07:42:57.823178 | 2021-06-07T18:08:45 | 2021-06-07T18:08:45 | 374,758,052 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,270 | ino | #include <ESP8266WiFi.h>
#include <Servo.h>//mention your pin no for us and servo
String i;
WiFiServer server(80);
const int LeftMotorForward = D0;
const int LeftMotorBackward = D1;
const int RightMotorForward = D2;
const int RightMotorBackward = D3;
int trig_pin=11;//
int echo_pin =12;//
#define maximum_distance 200
boolean goesForward = false;
int distance = 100;
// NewPing sonar(trig_pin, echo_pin, maximum_distance); //sensor function
Servo servo_motor; //our servo name
void setup()
{
i = "";
Serial.begin(9600);
pinMode(LeftMotorForward, OUTPUT); // GPIO pin16=D0 of NodeMCU 12E or in place of '16' you can write'D0' directly || -->Connected to motordriver
pinMode(LeftMotorBackward, OUTPUT); // GPIO pin5=D1 of NodeMCU 12E or in place of '16' you can write 'D0' directly || -->Connected to motordriver
pinMode(RightMotorForward, OUTPUT); // GPIO pin4=D2 of NodeMCU 12E or in place of '16' you can write 'D0' directly || -->Connected to motordriver
pinMode(RightMotorBackward, OUTPUT); // GPIO pin0=D3 of NodeMCU 12E or in place of '16' you can write 'D0' directly || -->Connected to motordriver
WiFi.disconnect();
delay(2000);
Serial.println("Connecting to WIFI");
WiFi.begin("sayan","sp123456");
while ((!(WiFi.status() == WL_CONNECTED))){
delay(300);
Serial.print("..");
}Serial.println("I am Connected");
Serial.println("My Local IP is : ");
Serial.print((WiFi.localIP()));
server.begin();
servo_motor.attach(D5); //our servo pin
servo_motor.write(90);
delay(2000);
distance = readPing();
delay(100);
distance = readPing();
delay(100);
distance = readPing();
delay(100);
distance = readPing();
delay(100);
}
void loop()
{
WiFiClient client = server.available();
if (!client) { return; }
while(!client.available()){ delay(1); }
i = (client.readStringUntil('\r'));
i.remove(0, 5);
i.remove(i.length()-9,9);
int distanceRight = 0;
int distanceLeft = 0;
delay(50);
if (distance <= 15){
_mStop();
delay(300);
_mBack();
delay(400);
_mStop();
delay(300);
distanceRight = lookRight();
delay(300);
distanceLeft = lookLeft();
delay(300);
if (distance >= distanceLeft){
_mright();
delay(3000);
_mStop();
_mleft();
}
//else if(distance >= distanceRight)
else{
_mleft();
delay(3000);
_mStop();
_mright();
}
/* else{
_mForward();
}*/
distance = readPing();
}
if (i == "Forward") {
_mForward();
client.println("HTTP/1.1 200 OK");
client.println("Content-Type: text/html");
client.println("");
client.println("<!DOCTYPE HTML>");
client.println("<html>");
client.println("forward");
client.println("</html>");
client.stop();
delay(1);
}
if (i == "Reverse") {
_mBack();
client.println("HTTP/1.1 200 OK");
client.println("Content-Type: text/html");
client.println("");
client.println("<!DOCTYPE HTML>");
client.println("<html>");
client.println("reverse");
client.println("</html>");
client.stop();
delay(1);
}
if (i == "Right") {
_mright();
client.println("HTTP/1.1 200 OK");
client.println("Content-Type: text/html");
client.println("");
client.println("<!DOCTYPE HTML>");
client.println("<html>");
client.println("right");
client.println("</html>");
client.stop();
delay(1);
}
if (i == "Left") {
_mleft();
client.println("HTTP/1.1 200 OK");
client.println("Content-Type: text/html");
client.println("");
client.println("<!DOCTYPE HTML>");
client.println("<html>");
client.println("left");
client.println("</html>");
client.stop();
delay(1);
}
if (i == "Stop") {
_mStop();
client.println("HTTP/1.1 200 OK");
client.println("Content-Type: text/html");
client.println("");
client.println("<!DOCTYPE HTML>");
client.println("<html>");
client.println("stop");
client.println("</html>");
client.stop();
delay(1);
}
distance = readPing();
}
void _mForward()
{
digitalWrite(LeftMotorForward, HIGH);
digitalWrite(RightMotorForward, HIGH);
digitalWrite(LeftMotorBackward, LOW);
digitalWrite(RightMotorBackward, LOW);
Serial.println("go forward!");
}
void _mBack()
{
digitalWrite(LeftMotorBackward, HIGH);
digitalWrite(RightMotorBackward, HIGH);
digitalWrite(LeftMotorForward, LOW);
digitalWrite(RightMotorForward, LOW);
Serial.println("go back!");
}
void _mleft()
{
digitalWrite(LeftMotorBackward, HIGH);
digitalWrite(RightMotorForward, HIGH);
digitalWrite(LeftMotorForward, LOW);
digitalWrite(RightMotorBackward, LOW);
delay(500);
digitalWrite(LeftMotorForward, HIGH);
digitalWrite(RightMotorForward, HIGH);
digitalWrite(LeftMotorBackward, LOW);
digitalWrite(RightMotorBackward, LOW);
Serial.println("go left!");
}
void _mright()
{
digitalWrite(LeftMotorForward, HIGH);
digitalWrite(RightMotorBackward, HIGH);
digitalWrite(LeftMotorBackward, LOW);
digitalWrite(RightMotorForward, LOW);
delay(500);
digitalWrite(LeftMotorForward, HIGH);
digitalWrite(RightMotorForward, HIGH);
digitalWrite(LeftMotorBackward, LOW);
digitalWrite(RightMotorBackward, LOW);
}
void _mStop()
{
digitalWrite(RightMotorForward, LOW);
digitalWrite(LeftMotorForward, LOW);
digitalWrite(RightMotorBackward, LOW);
digitalWrite(LeftMotorBackward, LOW);
Serial.println("Stop!");
}
int readPing(){
delay(70);
digitalWrite(trig_pin,LOW);
delayMicroseconds(5);
digitalWrite(trig_pin,HIGH);
delayMicroseconds(10);
digitalWrite(trig_pin,LOW);
long duration=pulseIn(echo_pin,HIGH);
int cm = (duration/2)/29.1;
/*if (cm==0){
cm=250;
}*/
return cm;
}
int lookRight(){
servo_motor.write(40);
delay(500);
int distance = readPing();
delay(100);
servo_motor.write(90);
return distance;
}
int lookLeft(){
servo_motor.write(150);
delay(500);
int distance = readPing();
delay(100);
servo_motor.write(90);
return distance;
delay(100);
}
| [
"paulsayan411@gmail.com"
] | paulsayan411@gmail.com |
cdcfc0d39e3bdb0fcc688174b9ba112df26a3747 | a65ade13b64bd3b969aef229c2f5ae6162b2933f | /CoreSystem/RoleStruct/CRoleRenderer.cpp | 6e73d39e2f82cbd5745b9118a04e720d4aad1200 | [] | no_license | jiowchern/fdo | a29eb161ff2672801c9dc51a06d15687790c0f76 | 84cf1386bb8d238954013734b081f9ac8afc423f | refs/heads/master | 2022-07-20T17:41:10.802133 | 2019-09-24T19:20:40 | 2019-09-24T19:20:40 | 210,220,229 | 0 | 0 | null | null | null | null | BIG5 | C++ | false | false | 18,395 | cpp | #include "stdafx.h"
#include <list>
#include <string.h>
#include "CRoleRenderer.h"
#include"CRoleSkinStruct.h"
#include "CRPCFileStruct.h"
#include "CRATFileStruct.h"
#include "CRATFileFactory.h"
#include "CRPCFileFactory.h"
#include "CRoleSkinFactory.h"
#include "ResourceManager.h"
#include "FDO_RolememoryMgr.h"
#include "debug.h"
#include"DrawPlane.h"
#pragma hdrstop
using std::list;
//////////////////////////////////////////////////////////////////////////
namespace FDO
{
bool LayerSort(SRoleSkinImageNew* i, SRoleSkinImageNew* j)
{
return (i->pRATImg->shLayer < j->pRATImg->shLayer);
}
//////////////////////////////////////////////////////////////////////////
struct RoleVertex
{
// default constructor
RoleVertex() {}
// constructor
RoleVertex(const D3DXVECTOR3& pos, D3DCOLOR color, const D3DXVECTOR2& tcoords)
: Pos(pos), Color(color), Tcoords(tcoords) {}
// Position
D3DXVECTOR3 Pos;
// Color
D3DCOLOR Color;
// Texture coordinates
D3DXVECTOR2 Tcoords;
// uv貼圖位置
//float tu;
//float tv;
static const DWORD FVF;
bool operator==(const RoleVertex& other) const
{
return ((Pos == other.Pos) && (Color == other.Color) &&
(Tcoords == other.Tcoords));
}
bool operator!=(const RoleVertex& other) const
{
return ((Pos != other.Pos) || (Color != other.Color) ||
(Tcoords != other.Tcoords));
}
};
const DWORD RoleVertex::FVF = D3DFVF_XYZ | D3DFVF_DIFFUSE | D3DFVF_TEX1;
unsigned int sizeof_RoleVertex = sizeof(RoleVertex);
void RenderRoleInstance(LPDIRECT3DDEVICE9 pd3dDevice,
SRoleSkinImageNew* pRoleInstance, const D3DXMATRIX& matInvWorld, const D3DCOLOR Color)
{
// 計算矩陣
D3DXMATRIX matWorld;
// D3DXMatrixMultiply( &matWorld, &pRoleInstance->vMatLocal, &matInvWorld );
// 當 Matrix 改為共享時,可換成這個
//D3DXMatrixMultiply( &matWorld, &pRoleInstance->pMatrix->vMatLocal, &matWorld );
// 設定矩陣
pd3dDevice->SetTransform( D3DTS_WORLD, &matWorld );
// 設定材質
pd3dDevice->SetTexture( 0, pRoleInstance->pSkinTexture->pTexture );
RoleVertex vtx[4];
vtx[0].Pos = D3DXVECTOR3(-pRoleInstance->pRPCImg->fWidth, 0.0f, 0.0f );
vtx[0].Color = pRoleInstance->pRPCImg->dwColor & Color;
vtx[1].Pos = D3DXVECTOR3( pRoleInstance->pRPCImg->fWidth, 0.0f, 0.0f );
vtx[1].Color = pRoleInstance->pRPCImg->dwColor & Color;
vtx[2].Pos = D3DXVECTOR3(-pRoleInstance->pRPCImg->fWidth, pRoleInstance->pRPCImg->fHeight, 0.0f );
vtx[2].Color = pRoleInstance->pRPCImg->dwColor & Color;
vtx[3].Pos = D3DXVECTOR3( pRoleInstance->pRPCImg->fWidth, pRoleInstance->pRPCImg->fHeight, 0.0f );
vtx[3].Color = pRoleInstance->pRPCImg->dwColor & Color;
if( pRoleInstance->pRATImg->bTexInvert )
{ // 反向貼材質
vtx[0].Tcoords.x = pRoleInstance->pRPCImg->fTU1;
vtx[0].Tcoords.y = pRoleInstance->pRPCImg->fTV2;
vtx[1].Tcoords.x = pRoleInstance->pRPCImg->fTU2;
vtx[1].Tcoords.y = pRoleInstance->pRPCImg->fTV2;
vtx[2].Tcoords.x = pRoleInstance->pRPCImg->fTU1;
vtx[2].Tcoords.y = pRoleInstance->pRPCImg->fTV1;
vtx[3].Tcoords.x = pRoleInstance->pRPCImg->fTU2;
vtx[3].Tcoords.y = pRoleInstance->pRPCImg->fTV1;
}
else
{
vtx[0].Tcoords.x = pRoleInstance->pRPCImg->fTU2;
vtx[0].Tcoords.y = pRoleInstance->pRPCImg->fTV2;
vtx[1].Tcoords.x = pRoleInstance->pRPCImg->fTU1;
vtx[1].Tcoords.y = pRoleInstance->pRPCImg->fTV2;
vtx[2].Tcoords.x = pRoleInstance->pRPCImg->fTU2;
vtx[2].Tcoords.y = pRoleInstance->pRPCImg->fTV1;
vtx[3].Tcoords.x = pRoleInstance->pRPCImg->fTU1;
vtx[3].Tcoords.y = pRoleInstance->pRPCImg->fTV1;
}
pd3dDevice->SetFVF( RoleVertex::FVF );
pd3dDevice->DrawPrimitiveUP(D3DPT_TRIANGLESTRIP, 2,
&vtx[0], sizeof_RoleVertex );
}
//////////////////////////////////////////////////////////////////////////
CRoleRenderer::CRoleRenderer()
: m_pCurrRATAct(NULL), m_pRATFactory(NULL), m_pRPCFactory(NULL) , m_RoleSkinIDVec()/*,
m_pMTXFactory(pMTXFactory), m_pSkinFactory(pSkinFactory)*/
{
}
CRoleRenderer::CRoleRenderer(CRATFactory* pRATFactory, CRPCFactory* pRPCFactory/*,
CMTXFactory* pMTXFactory, CSkinFactory pSkinFactory*/)
: m_pCurrRATAct(NULL), m_pRATFactory(pRATFactory), m_pRPCFactory(pRPCFactory) , m_RoleSkinIDVec()/*,
m_pMTXFactory(pMTXFactory), m_pSkinFactory(pSkinFactory)*/
{
}
CRoleRenderer::~CRoleRenderer()
{
// maybe must to do this...
//m_pRATFactory->Release( m_spRATFile );
while (!m_spRPCFileList.empty())
{
// maybe there are something need to do...
//m_pRPCFactory->Release( m_spRPCFileList.front() );
m_spRPCFileList.pop_front();
}
/*for (size_t i(0); i<m_vRoleInstance.size(); ++i)
{
// 當Matrix為share pointer時,有可能需要做這件事
//m_pMTXFactory->Release( m_RoleSkinImageNews.at(i).pMatrix );
// 當有使用SkinFactory時,需要做這件事
//m_pSknFactory->Release( m_RoleSkinImageNews.at(i) );
delete m_vRoleInstance.at(i);
}*/
//m_vRoleInstance.clear();
//m_pSknFactory = NULL;
//m_pMTXFactory = NULL;
m_pRPCFactory = NULL;
m_pRATFactory = NULL;
m_pCurrRATAct = NULL;
//告訴thread不要給此Role作Skin Link動作
UnRegisterSkin() ;
}
//////////////////////////////////////////////////////////////////////////
//
//////////////////////////////////////////////////////////////////////////
bool CRoleRenderer::LoadRATFile(const char* pFileName)
{
if ( !ValidString( pFileName ) )
{
return false;
}
if (m_pRATFactory == NULL)
{
return false;
}
if (m_spRATFile.get())
{ // 如果已經有骨架檔存在,先移除
//m_pRATFactory->Release( m_spRATFile );
}
// TODO: 這裡不需要傳入 m_vRoleInstance,因為什麼事都沒有做
if ( !m_pRATFactory->GetRATFile( pFileName, m_spRATFile ) )
{
return false;
}
//連結rat檔
//CRoleSkinFactory::LinkRoleSkinRATFile( m_pNewRoleSkin, m_spRATFile );
PerformanceMonitor pm;
pm.Begin("CRoleSkinFactory::LinkRoleSkinRATFile");
CRoleSkinFactory::LinkRoleSkinRATFile( m_vRoleInstance, m_spRATFile );
pm.End();
return true;
}
//////////////////////////////////////////////////////////////////////////
//
//////////////////////////////////////////////////////////////////////////
bool CRoleRenderer::LoadRPCFile(const char* pFileName, int nRoleKind)
{
if ( !ValidString(pFileName) )
{
return false;
}
if ( m_pRPCFactory == NULL )
{
return false;
}
SP_RPCFile spRPCFile;
if ( !m_pRPCFactory->GetRPCFile( pFileName, spRPCFile, m_spRATFile ) )
{
return false;
}
//將材質存到 list
m_spRPCFileList.push_back( spRPCFile );
CRoleSkinFactory::LinkRoleSkinRPCFile( m_vRoleInstance, spRPCFile );
return true;
}
bool CRoleRenderer::LoadRPCFileThread(const char* pFileName, uint32 nRoleID)
{
if ( !ValidString(pFileName) )
{
return false;
}
if ( m_pRPCFactory == NULL )
{
return false;
}
SP_RPCFile spRPCFile ;
uint32 skinID = nRoleID ;
if(m_pRPCFactory->GetRPCFileThread(pFileName , this , spRPCFile , m_spRATFile , skinID))
{
stSkinData data ;
data.skinID = (DWORD)skinID ;
data.rpcName = pFileName ;
m_RoleSkinIDVec.push_back(data) ;
return true ;
}
m_spRPCFileList.push_back( spRPCFile );
CRoleSkinFactory::LinkRoleSkinRPCFile( m_vRoleInstance, spRPCFile );
return false ;
}
void CRoleRenderer::SkinLinkRPC(SP_RPCFile pRPCFile)
{
//將材質存到 list
m_spRPCFileList.push_back( pRPCFile );
CRoleSkinFactory::LinkRoleSkinRPCFile( m_vRoleInstance, pRPCFile );
}
SRATActFile* CRoleRenderer::Play(const char* szActionName, bool bLoop)
{
if (!ValidString(szActionName))
{
return NULL;
}
if(m_spRATFile == 0)
return 0;
for(size_t i = 0; i < m_spRATFile->vRATActList.size(); ++i)
{
SRATActFile& rRATAct = m_spRATFile->vRATActList.at(i);
if(strcmp( rRATAct.szName, szActionName ) != 0)
{
continue;
}
//設定目前動作
m_bPlayLoop = bLoop;
m_pCurrRATAct = &rRATAct;
return m_pCurrRATAct;
}
return NULL;
}
bool CRoleRenderer::Render(LPDIRECT3DDEVICE9 pd3dDevice, const D3DXMATRIX& matInvWorld,
D3DCOLOR Color, int iShowDir, unsigned short usFrameNum,
int nRoleKind , CRenderer *pRender , float slope , bool divide)
{
if (m_pCurrRATAct == NULL)
{ // 如果目前動作沒有指向空指標,就不繪圖
return false;
}
// 即時算矩陣
D3DXMATRIX matWorld;
D3DXMatrixIdentity( &matWorld );
//std::vector<SRoleSkinImageNew*> RoleInsanceToRender;
// 蒐集所有要畫的零件
for (size_t i = 0; i < m_pCurrRATAct->vRATComList.size(); ++i)
{
SRATComFile& rSRATComFile = m_pCurrRATAct->vRATComList.at(i);
SRATDirFile& RATDirFile = rSRATComFile.RATDir[iShowDir];
// 用來紀錄需要繪圖影格的ID
int ID = -1;
// record next image for linear.
int NextID = -1;
for (size_t j = 0; j < RATDirFile.vRATImageList.size(); ++j)
{ // 由 usFrameNum 找會需要繪圖的影格
if (RATDirFile.vRATImageList[j].usPlayTime <= usFrameNum)
{
ID = RATDirFile.vRATImageList[j].nRATImageID;
if (j + 1 == RATDirFile.vRATImageList.size())
{
if (m_bPlayLoop)
{
NextID = RATDirFile.vRATImageList[0].nRATImageID;
}
}
else
{
NextID = RATDirFile.vRATImageList[j + 1].nRATImageID;
}
}
else
{
break;
}
}
if (ID != -1)
{
SRoleSkinImageNew* pRoleInstance = &m_vRoleInstance.at(ID);
if (pRoleInstance->pRPCImg == NULL)
{ // 當沒有這個RPC時,表示這個零件沒有載入,所以不需要繪出,直接跳過這個零件
continue;
}
// <yuming> modify the way to get texture file name.
if (pRoleInstance->pSkinTexture == NULL)
{ // 繪圖時才搜尋材質檔,好處是有需要用到的材質才讀取,不需要的時候就不用讀取
// get texture file name from texture id.
const char* pTextrueName = m_pRPCFactory->GetTextureStringAt(pRoleInstance->pRPCImg->nTextureNameID);
if( nRoleKind == 1 )
{ //主角是1
//pRoleInstance->pSkinTexture = g_RoleImageManager.GetStaticImageRes( pRoleInstance->pRPCImg->szTexFile );
pRoleInstance->pSkinTexture = g_RoleImageManager.GetDynamicImageRes(pTextrueName);
}
else
{
//pRoleInstance->pSkinTexture = g_RoleImageManager.GetDynamicImageRes( pRoleInstance->pRPCImg->szTexFile );
pRoleInstance->pSkinTexture = g_RoleImageManager.GetDynamicImageRes(pTextrueName);
}
}
// </yuming>
// 當矩陣工廠完成時可以使用
/*if (pRoleInstance->pMatrix == NULL)
{ // 輸入的參數可能需要有:ID...
pRoleInstance->pMatrix = m_pMTXFactory->Get(...);
}*/
//如果矩陣沒算過,就進去計算
// if( !pRoleInstance->bMatOver )
// {
// CRoleSkinFactory::UpdateLocalMatrix( &pRoleInstance->vMatLocal, pRoleInstance->pRATImg, pRoleInstance->pRPCImg );
// pRoleInstance->bMatOver = true;
// }
if (pRoleInstance->pSkinTexture && pRoleInstance->pSkinTexture->pTexture != NULL)
{ // 當兩個指標都有的時候才需要繪圖
/// <yuming> add linear ability
RoleSkinImageNew newRSIN;
newRSIN.pSkinTexture = pRoleInstance->pSkinTexture;
SRATImageFile newRATImg = *pRoleInstance->pRATImg;
newRSIN.pRATImg = &newRATImg;
SRPCImageFile newRPCImg = *pRoleInstance->pRPCImg;
newRSIN.pRPCImg = &newRPCImg;
RoleSkinImageNewPtr pNextRSIN = NULL;
if (NextID != -1)
{
pNextRSIN = &m_vRoleInstance.at(NextID);
}
newRSIN.Lerp(slope, pNextRSIN);
pRoleInstance = &newRSIN;
/// </yuming>
//local matrix
CRoleSkinFactory::UpdateLocalMatrix( &matWorld, pRoleInstance->pRATImg, pRoleInstance->pRPCImg);
// 計算矩陣
D3DXMatrixMultiply( &matWorld, &matWorld, &matInvWorld );
pRender->CreateFrameOp(pRoleInstance , matWorld , Color & pRoleInstance->pRPCImg->dwColor , divide ) ;
// RoleInsanceToRender.push_back( pRoleInstance );
}
else
{ // 列印出錯誤訊息:沒有材質或矩陣指標
// CPrinter::Print( "error message" );
}
}
}
// 零件排序
//std::sort(RoleInsanceToRender.begin() , RoleInsanceToRender.end() , LayerSort) ;
//RoleInsanceToRender.sort( LayerSort );
//for(unsigned int i = 0 ; i < RoleInsanceToRender.size() ; ++i)
//{
//
// SRATImageFile* pRATImg = RoleInsanceToRender[i]->pRATImg;
// SRPCImageFile* pRPCImg = RoleInsanceToRender[i]->pRPCImg;
//
//
// //local matrix
// CRoleSkinFactory::UpdateLocalMatrix( &matWorld, pRATImg, pRPCImg);
// // 計算矩陣
// D3DXMatrixMultiply( &matWorld, &matWorld, &matInvWorld );
// // 設定矩陣
// pd3dDevice->SetTransform( D3DTS_WORLD, &matWorld );
// // 設定材質
// pd3dDevice->SetTexture( 0, RoleInsanceToRender[i]->pSkinTexture->pTexture );
// DrawRole( RoleInsanceToRender[i] , Color & pRPCImg->dwColor );
//}
return true;
}
void CRoleRenderer::UnloadRPCFile(const char* pRPCFileName)
{
if ( !ValidString(pRPCFileName) )
{
return;
}
//告訴thread不要給此Role作Skin Link動作
UnRegisterSkin(pRPCFileName) ;
SP_RPC_List::const_iterator end( m_spRPCFileList.end() );
SP_RPC_List::iterator pos( m_spRPCFileList.begin() );
for (; pos != end; ++pos)
{
if(stricmp((*pos)->strFilename.c_str(), pRPCFileName) != 0)
{
continue;
}
for(size_t i(0); i < (*pos)->vRPCImgPointList1.size(); ++i)
{
int nRPCImgID = (*pos)->vRPCImgPointList1.at(i)->nRPCImgID;
m_vRoleInstance.at( nRPCImgID ).pRPCImg = NULL;
m_vRoleInstance.at( nRPCImgID ).pSkinTexture = NULL;
}
// 移除 RPC
if (m_pRPCFactory)
{
//pRPCFactory->Release( (*pos)->strFilename, (*pos) );
}
m_spRPCFileList.erase( pos );
break;
}
}
void CRoleRenderer::UnlinkRPC(const char* pComName)
{
if (!ValidString(pComName))
{
return;
}
//告訴thread不要給此Role作Skin Link動作
UnRegisterSkin(pComName) ;
for (size_t i(0); i < m_spRATFile->vRATActList.size(); ++i)
{ // 取消所有動作
SRATActFile* pRATAct = &m_spRATFile->vRATActList[i];
this->UnlinkRPCAct( pRATAct, pComName );
}
}
void CRoleRenderer::UnlinkRPCAct(SRATActFile* pRATAct, const char* pComName)
{
for (size_t i(0); i < pRATAct->vRATComList.size(); ++i)
{ // 搜尋某個零件
if (strcmp(pRATAct->vRATComList[i].szComName,pComName) == 0)
{
this->UnlinkRPCCom( &pRATAct->vRATComList[i] );
break; // 只需要 Unlink 一個零件,所以跳出迴圈
}
}
}
void CRoleRenderer::UnlinkRPCCom(SRATComFile* pRATCom)
{
for (int i=0; i<MAX_DIR; ++i)
{
this->UnlinkRPCDir( pRATCom->RATDir[i] );
}
}
void CRoleRenderer::UnlinkRPCDir(SRATDirFile& RATDir)
{
for (size_t i(0); i<RATDir.vRATImageList.size(); ++i)
{ // 隱藏所有的影格
int ID = RATDir.vRATImageList[i].nRATImageID;
UnlinkRPCImg( &m_vRoleInstance.at(ID) );
}
}
void CRoleRenderer::UnlinkRPCImg(SRoleSkinImageNew* pRoleInstance)
{
pRoleInstance->pRPCImg = NULL;
pRoleInstance->pSkinTexture = NULL ;
}
void CRoleRenderer::UnRegisterSkin(const char *rpcName)
{
std::list<stSkinData>::iterator iter(m_RoleSkinIDVec.begin()) ;
for(; iter != m_RoleSkinIDVec.end() ; ++iter)
{
if(strcmp(iter->rpcName.c_str() , rpcName) == 0)
{
g_RoleMemoryMgr.UnRegisterLinkRPC(iter->skinID) ;
m_RoleSkinIDVec.erase(iter) ;
return ;
}
}
}
void CRoleRenderer::UnRegisterSkin()
{
while(!m_RoleSkinIDVec.empty())
{
DWORD skinID = m_RoleSkinIDVec.front().skinID ;
g_RoleMemoryMgr.UnRegisterLinkRPC(skinID) ;
m_RoleSkinIDVec.pop_front() ;
}
}
bool CRoleRenderer::ValidString(const char* pString)
{
if (pString == NULL)
{
return false;
}
if (strlen(pString) == 0)
{
return false;
}
if ( strcmp( pString,"Null" ) ==0 )
{
return false; // 企劃表格設定為不載入任何圖形
}
return true;
}
void CRoleRenderer::UnloadAllRPCFile()
{
//告訴thread不要給此Role作Skin Link動作
UnRegisterSkin() ;
SP_RPC_List::const_iterator end( m_spRPCFileList.end() );
SP_RPC_List::iterator pos( m_spRPCFileList.begin() );
while (pos != end)
{
this->UnlinkRPC( (*pos)->RPCFileHeader.szComponentName1 );
this->UnlinkRPC( (*pos)->RPCFileHeader.szComponentName2 );
// 移除 RPC
if (m_pRPCFactory)
{
//m_pRPCFactory->Release( (*pos)->strFilename, (*pos) );
}
pos = m_spRPCFileList.erase( pos );
}
}
//////////////////////////////////////////////////////////////////////////
} | [
"jiowchern@gmail.com"
] | jiowchern@gmail.com |
7abbc57b7f1c85db807f95772fa6a4244658ce2a | 1ea2d62536b5d11e968990bf00e9f12a5ae8ce47 | /bulb_using_arduino.ino | ea6b77df276c718c08ed0ae3951eb5aea61cce52 | [] | no_license | agarwalsamarth/Home-Automation-System | 17b9d413e98b4ca27c53ea76dc7b3007108c514f | df867985c54de289c0824b3b5225b8ed3b1bcac6 | refs/heads/master | 2020-09-22T07:29:17.261649 | 2019-12-01T04:55:02 | 2019-12-01T04:55:02 | 225,105,128 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 816 | ino | #include <Servo.h>
Servo myservo;
int pos = 0;
void setup() {
// put your setup code here, to run once:
pinMode(A3, INPUT_PULLUP);
pinMode(A5, INPUT_PULLUP);
pinMode(5, OUTPUT);
Serial.begin(9600);
myservo.attach(3);
myservo.write(pos);////90
}
void loop() {
// put your main code here, to run repeatedly:
//Serial.println(digitalRead(A3));
int x = digitalRead(A3);
if (x == 1)
{
digitalWrite(5, LOW);//relay gets on when LOW is given
}
else
{
digitalWrite(5, HIGH);
}
int y = digitalRead(A5);
Serial.println(y);
if (y == 1)
{
for (; pos <= 90; pos += 1)
{
myservo.write(pos);
delay(30);
}
}
else
{
if (pos != 0)
{
for ( ; pos >= 0; pos -= 1)
{
myservo.write(pos);
delay(30);
}
}
}
}
| [
"noreply@github.com"
] | noreply@github.com |
06f86520e786bb863e75c43177819760edf7a86d | 99b8a23ebf1fa82baaf8f346924071d88fda87e4 | /Other/highschool/Pregatire_OJI/Flux_Maxim.cpp | d5530fdaa11bca87f9b14bf5525079c25a1af0f3 | [] | no_license | alexandruionascu/fmi | fd2d7691c1e32549f48e812823f3ad5fdfb649f8 | 12d0aa09bafde5a87b50d6736204f25bc92eab54 | refs/heads/master | 2021-09-15T03:03:14.473312 | 2018-05-24T17:14:51 | 2018-05-24T17:14:51 | 47,325,326 | 1 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 1,586 | cpp | #include<iostream>
#include<fstream>
#include<vector>
#include<queue>
#include<cstring>
using namespace std;
#define MAXSIZE 1002
#define FIN "maxflow.in"
#define FOUT "maxflow.out"
int n,m;
vector<int> graph[MAXSIZE]; //graful
int c[MAXSIZE][MAXSIZE]; //cantitatea
int maxFlow;
int father[MAXSIZE];
int read()
{
freopen(FIN,"r",stdin);
freopen(FOUT,"w",stdout);
scanf("%d %d", &n,&m);
int x,y,z;
for(int i=1;i<=m;i++)
{
scanf("%d %d %d", &x,&y,&z);
graph[x].push_back(y);
c[x][y] = z;
}
return 0;
}
int BFS()
{
queue<int> q;
memset(father,0,sizeof(father));
vector<int>::iterator it;
father[1] = -1;
q.push(1);
while(!q.empty())
{
int nod = q.front();
if(nod == n)
{
return 1;
}
q.pop();
for(it = graph[nod].begin();it!=graph[nod].end();it++)
{
if(father[*it] == 0 && c[nod][*it]>0)
{
q.push(*it);
father[*it] = nod;
}
}
}
return 0;
}
int solve()
{
while(BFS() == 1)
{
//get min value
int minn = c[father[n]][n];
for(int i=n;i!=1;i=father[i])
{
if(minn > c[father[i]][i])
minn = c[father[i]][i];
}
for(int i=n;i!=1;i=father[i])
{
c[father[i]][i] -=minn;
}
maxFlow +=minn;
}
return 0;
}
int write()
{
printf("%d",maxFlow);
return 0;
}
int main()
{
read();
solve();
write();
return 0;
}
| [
"alexandruionsacu.bd@gmail.com"
] | alexandruionsacu.bd@gmail.com |
98cb10a8315c69ea6dcd55e5fc32f9602d93c9aa | 1e63053957bfa3681b4b5c22b4aced08151e240e | /TD5/code/estimate_flat.cpp | 6e35d31405158fd1787abdcd254580d73b725fb1 | [] | no_license | gostreap/INF442 | 59ca4b1ab5dacc648378d245b735df392c998fd9 | cedc9e65e96f271383b6a0a5746306a310a07f5c | refs/heads/main | 2023-05-03T09:04:00.759801 | 2021-05-25T16:49:47 | 2021-05-25T16:49:47 | 346,263,842 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 847 | cpp | #include <iostream>
#include <cstdlib>
#include <gtkmm/application.h>
#include <gtkmm/window.h>
#include <gtkmm/drawingarea.h>
#include "point.hpp"
#include "cloud.hpp"
#include "flat.hpp"
#include "KernelArea.hpp"
int main(int argc, char **argv)
{
double bandwidth = 1.0;
if(argc != 2 && argc != 3)
{
std::cerr << "Usage: " << argv[0] << " datafile [bandwidth]" << std::endl;
std::exit(1);
}
if(argc == 3)
{
bandwidth = atof(argv[2]);
}
std::ifstream is(argv[1]);
cloud c(2, 130000);
c.load(is);
flat ker(&c, bandwidth);
point p;
// launch graphical interface
Glib::RefPtr<Gtk::Application> app = Gtk::Application::create();
Gtk::Window win;
win.set_title("Density Estimation with Flat Kernel");
win.set_default_size(800, 800);
KernelArea area(&c, &ker);
win.add(area);
area.show();
return app->run(win);
}
| [
"tpv.francois@gmail.com"
] | tpv.francois@gmail.com |
477880eff7ccc014f7712c9b0235e9d28657d81e | 767d731cf9714ba39e51cf3a0bdfc352ed92b3d2 | /matrix/dbs_room_state_space.cc | 5990611d07db842004dc1caf89009b0bb32bc31b | [
"BSD-3-Clause",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | disobeyedtoast/charybdis | 9cbd0e8d2edff71fc32e817811296deb11ddad28 | 04ab35988b496922760b72934ccc225d635f803e | refs/heads/master | 2021-05-16T18:38:27.338754 | 2020-03-27T02:30:00 | 2020-03-27T02:30:00 | 250,421,998 | 0 | 0 | NOASSERTION | 2020-03-27T02:28:52 | 2020-03-27T02:28:52 | null | UTF-8 | C++ | false | false | 7,656 | cc | // The Construct
//
// Copyright (C) The Construct Developers, Authors & Contributors
// Copyright (C) 2016-2020 Jason Volk <jason@zemos.net>
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
// copyright notice and this permission notice is present in all copies. The
// full license for this software is available in the LICENSE file.
namespace ircd::m::dbs
{
static bool room_state_space__cmp_lt(const string_view &, const string_view &);
}
decltype(ircd::m::dbs::room_state_space)
ircd::m::dbs::room_state_space;
decltype(ircd::m::dbs::desc::room_state_space__block__size)
ircd::m::dbs::desc::room_state_space__block__size
{
{ "name", "ircd.m.dbs._room_state_space.block.size" },
{ "default", 512L },
};
decltype(ircd::m::dbs::desc::room_state_space__meta_block__size)
ircd::m::dbs::desc::room_state_space__meta_block__size
{
{ "name", "ircd.m.dbs._room_state_space.meta_block.size" },
{ "default", long(8_KiB) },
};
decltype(ircd::m::dbs::desc::room_state_space__cache__size)
ircd::m::dbs::desc::room_state_space__cache__size
{
{
{ "name", "ircd.m.dbs._room_state_space.cache.size" },
{ "default", long(16_MiB) },
}, []
{
const size_t &value{room_state_space__cache__size};
db::capacity(db::cache(dbs::room_state_space), value);
}
};
decltype(ircd::m::dbs::desc::room_state_space__cache_comp__size)
ircd::m::dbs::desc::room_state_space__cache_comp__size
{
{
{ "name", "ircd.m.dbs._room_state_space.cache_comp.size" },
{ "default", long(8_MiB) },
}, []
{
const size_t &value{room_state_space__cache_comp__size};
db::capacity(db::cache_compressed(dbs::room_state_space), value);
}
};
decltype(ircd::m::dbs::desc::room_state_space__bloom__bits)
ircd::m::dbs::desc::room_state_space__bloom__bits
{
{ "name", "ircd.m.dbs._room_state_space.bloom.bits" },
{ "default", 10L },
};
const ircd::db::comparator
ircd::m::dbs::desc::room_state_space__cmp
{
"_room_state_space",
room_state_space__cmp_lt,
std::equal_to<string_view>{},
};
const ircd::db::prefix_transform
ircd::m::dbs::desc::room_state_space__pfx
{
"_room_state_space",
[](const string_view &key)
{
return has(key, "\0"_sv);
},
[](const string_view &key)
{
return split(key, "\0"_sv).first;
}
};
const ircd::db::descriptor
ircd::m::dbs::desc::room_state_space
{
// name
"_room_state_space",
// explanation
R"(All states of the room.
)",
// typing (key, value)
{
typeid(string_view), typeid(uint64_t)
},
// options
{},
// comparator
room_state_space__cmp,
// prefix transform
room_state_space__pfx,
// drop column
false,
// cache size
bool(cache_enable)? -1 : 0,
// cache size for compressed assets
bool(cache_comp_enable)? -1 : 0,
// bloom filter bits
size_t(room_state_space__bloom__bits),
// expect queries hit
false,
// block size
size_t(room_state_space__block__size),
// meta_block size
size_t(room_state_space__meta_block__size),
// compression
"kLZ4Compression;kSnappyCompression"s,
// compactor
{},
// compaction priority algorithm
"kOldestSmallestSeqFirst"s,
};
//
// indexer
//
void
ircd::m::dbs::_index_room_state_space(db::txn &txn,
const event &event,
const write_opts &opts)
{
assert(opts.appendix.test(appendix::ROOM_STATE_SPACE));
const ctx::critical_assertion ca;
thread_local char buf[ROOM_STATE_SPACE_KEY_MAX_SIZE];
const string_view &key
{
room_state_space_key(buf, at<"room_id"_>(event), at<"type"_>(event), at<"state_key"_>(event), at<"depth"_>(event), opts.event_idx)
};
db::txn::append
{
txn, room_state_space,
{
opts.op,
key,
}
};
}
//
// cmp
//
bool
ircd::m::dbs::room_state_space__cmp_lt(const string_view &a,
const string_view &b)
{
static const auto &pt
{
desc::room_state_space__pfx
};
const string_view pre[2]
{
pt.get(a),
pt.get(b),
};
if(size(pre[0]) != size(pre[1]))
return size(pre[0]) < size(pre[1]);
if(pre[0] != pre[1])
return pre[0] < pre[1];
const string_view post[2]
{
a.substr(size(pre[0])),
b.substr(size(pre[1])),
};
// These conditions are matched on some queries when the user only
// supplies a room_id.
if(empty(post[0]))
return true;
if(empty(post[1]))
return false;
// Decompose the postfix of the key for granular sorting
const room_state_space_key_parts k[2]
{
room_state_space_key(post[0]),
room_state_space_key(post[1])
};
// type
if(std::get<0>(k[0]) < std::get<0>(k[1]))
return true;
else if(std::get<0>(k[0]) > std::get<0>(k[1]))
return false;
// state_key
if(std::get<1>(k[0]) < std::get<1>(k[1]))
return true;
else if(std::get<1>(k[0]) > std::get<1>(k[1]))
return false;
// depth (ORDER IS DESCENDING!)
if(uint64_t(std::get<2>(k[0])) > uint64_t(std::get<2>(k[1])))
return true;
else if(uint64_t(std::get<2>(k[0])) < uint64_t(std::get<2>(k[1])))
return false;
// event_idx (ORDER IS DESCENDING!)
if(std::get<3>(k[0]) > std::get<3>(k[1]))
return true;
else if(std::get<3>(k[0]) < std::get<3>(k[1]))
return false;
return false;
}
//
// key
//
ircd::m::dbs::room_state_space_key_parts
ircd::m::dbs::room_state_space_key(const string_view &amalgam)
{
const auto &key
{
lstrip(amalgam, "\0"_sv)
};
const auto &[type, after_type]
{
split(key, "\0"_sv)
};
const auto &[state_key, after_state_key]
{
split(after_type, "\0"_sv)
};
const int64_t &depth
{
size(after_state_key) >= 8?
int64_t(byte_view<int64_t>(after_state_key.substr(0, 8))):
-1L
};
const event::idx &event_idx
{
size(after_state_key) >= 16?
event::idx(byte_view<event::idx>(after_state_key.substr(8, 8))):
0UL
};
return
{
type, state_key, depth, event_idx
};
}
ircd::string_view
ircd::m::dbs::room_state_space_key(const mutable_buffer &out_,
const id::room &room_id)
{
return room_state_space_key(out_, room_id, string_view{}, string_view{}, -1L, 0L);
}
ircd::string_view
ircd::m::dbs::room_state_space_key(const mutable_buffer &out_,
const id::room &room_id,
const string_view &type)
{
return room_state_space_key(out_, room_id, type, string_view{}, -1L, 0L);
}
ircd::string_view
ircd::m::dbs::room_state_space_key(const mutable_buffer &out_,
const id::room &room_id,
const string_view &type,
const string_view &state_key)
{
return room_state_space_key(out_, room_id, type, state_key, -1L, 0L);
}
ircd::string_view
ircd::m::dbs::room_state_space_key(const mutable_buffer &out_,
const id::room &room_id,
const string_view &type,
const string_view &state_key,
const int64_t &depth,
const event::idx &event_idx)
{
mutable_buffer out{out_};
consume(out, copy(out, room_id));
consume(out, copy(out, "\0"_sv));
consume(out, copy(out, type));
consume(out, copy(out, "\0"_sv));
consume(out, copy(out, state_key));
consume(out, copy(out, "\0"_sv));
consume(out, copy(out, byte_view<string_view>(depth)));
consume(out, copy(out, byte_view<string_view>(event_idx)));
return { data(out_), data(out) };
}
| [
"jason@zemos.net"
] | jason@zemos.net |
a5a1a8dcd47722c6437a1dc9e69409ba90cab4fc | 1a93a3b56dc2d54ffe3ee344716654888b0af777 | /env/Library/include/qt/Qt3DRender/5.12.9/Qt3DRender/private/qabstractcollisionqueryservice_p.h | fa35792d074b6939d0e36e942c91b7ccf11cb781 | [
"GPL-1.0-or-later",
"GPL-3.0-only",
"GPL-2.0-only",
"Python-2.0",
"LicenseRef-scancode-python-cwi",
"LicenseRef-scancode-other-copyleft",
"BSD-3-Clause",
"0BSD",
"LicenseRef-scancode-free-unknown"
] | permissive | h4vlik/TF2_OD_BRE | ecdf6b49b0016407007a1a049f0fdb952d58cbac | 54643b6e8e9d76847329b1dbda69efa1c7ae3e72 | refs/heads/master | 2023-04-09T16:05:27.658169 | 2021-02-22T14:59:07 | 2021-02-22T14:59:07 | 327,001,911 | 0 | 0 | BSD-3-Clause | 2021-02-22T14:59:08 | 2021-01-05T13:08:03 | null | UTF-8 | C++ | false | false | 4,268 | h | /****************************************************************************
**
** Copyright (C) 2015 Klaralvdalens Datakonsult AB (KDAB).
** Contact: https://www.qt.io/licensing/
**
** This file is part of the Qt3D module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 3 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL3 included in the
** packaging of this file. Please review the following information to
** ensure the GNU Lesser General Public License version 3 requirements
** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 2.0 or (at your option) the GNU General
** Public license version 3 or any later version approved by the KDE Free
** Qt Foundation. The licenses are as published by the Free Software
** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-2.0.html and
** https://www.gnu.org/licenses/gpl-3.0.html.
**
** $QT_END_LICENSE$
**
****************************************************************************/
#ifndef QT3DRENDER_QABSTRACTCOLLISIONQUERYSERVICE_P_H
#define QT3DRENDER_QABSTRACTCOLLISIONQUERYSERVICE_P_H
//
// W A R N I N G
// -------------
//
// This file is not part of the Qt API. It exists for the convenience
// of other Qt classes. This header file may change from version to
// version without notice, or even be removed.
//
// We mean it.
//
#include <QVector>
#include <Qt3DRender/qt3drender_global.h>
#include <Qt3DCore/private/qservicelocator_p.h>
#include <Qt3DCore/qnodeid.h>
#include <Qt3DCore/private/qabstractserviceprovider_p.h>
#include <Qt3DRender/private/qcollisionqueryresult_p.h>
QT_BEGIN_NAMESPACE
class QAbstractCollisionQueryServicePrivate;
namespace Qt3DRender {
namespace RayCasting {
class QRay3D;
class QBoundingVolume;
class QBoundingVolumeProvider;
class QAbstractCollisionQueryServicePrivate : public Qt3DCore::QAbstractServiceProviderPrivate
{
public:
QAbstractCollisionQueryServicePrivate(const QString &description)
: QAbstractServiceProviderPrivate(Qt3DCore::QServiceLocator::CollisionService, description)
{}
};
class QT3DRENDERSHARED_EXPORT QAbstractCollisionQueryService : public Qt3DCore::QAbstractServiceProvider
{
Q_OBJECT
public:
enum QueryMode {
FirstHit,
AllHits
};
virtual QQueryHandle query(const QRay3D &ray, QueryMode mode, QBoundingVolumeProvider *provider) = 0;
virtual QCollisionQueryResult::Hit query(const QRay3D &ray, const QBoundingVolume* volume) = 0;
virtual QCollisionQueryResult fetchResult(const QQueryHandle &handle) = 0;
virtual QVector<QCollisionQueryResult> fetchAllResults() const = 0;
protected:
QAbstractCollisionQueryService(const QString &description = QString());
QAbstractCollisionQueryService(QAbstractCollisionQueryServicePrivate &dd);
void setResultHandle(QCollisionQueryResult &result, const QQueryHandle &handle);
void addEntityHit(QCollisionQueryResult &result, Qt3DCore::QNodeId entity, const Vector3D &intersection,
float distance, const Vector3D &uvw);
private:
Q_DECLARE_PRIVATE(QAbstractCollisionQueryService)
};
} // RayCasting
} // Qt3DRender
QT_END_NAMESPACE
Q_DECLARE_METATYPE(Qt3DRender::RayCasting::QAbstractCollisionQueryService::QueryMode) // LCOV_EXCL_LINE
#endif // QT3DRENDER_QABSTRACTCOLLISIONQUERYSERVICE_P_H
| [
"martin.cernil@ysoft.com"
] | martin.cernil@ysoft.com |
926bff74cb92a76786ef3b029b39abfd7392bc35 | ca41f565dc646a622252f503740da64b24ce29d7 | /baek/10845.cpp | e916aca7f93f3bd78a007084a7a21172e0e75f50 | [] | no_license | yein28/Algo | ef9a246764c074774ab0d450c92e3e40222d96e8 | a8e097e27bd0cedd4076dcac7264dac12543ae84 | refs/heads/master | 2020-12-24T08:00:00.181860 | 2018-04-04T09:01:53 | 2018-04-04T09:01:53 | 73,347,234 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,036 | cpp | #include <iostream>
#include <vector>
#include <cstdio>
#include <string.h>
using namespace std;
int main(){
int test;
string word;
vector<int> stack;
cin >> test;
while( test-- ){
cin >> word;
if( word.find( "size" ) != string::npos){
cout << stack.size() << "\n";
}
else if( word.find( "empty" ) != string::npos){
if( stack.empty()) cout << 1 << "\n";
else cout << 0 << "\n";
}
else if( word.find( "back" ) != string::npos){
if( stack.empty() ){ cout << -1 << "\n"; }
else{
int num = stack.back();
cout << num << "\n";
}
}
else if( word.find( "pop" ) != string::npos){
if( stack.empty() ){
cout << -1 << "\n";
}else{
int tmp = stack[0];
stack.erase( stack.begin() );
cout << tmp << "\n";
}
}
else if( word.find( "front" ) != string::npos ){
if( stack.empty() ){
cout << -1 << "\n";
}else{
cout << stack[0] << "\n";
}
}
else if(word.find( "push" ) != string::npos){
int num = 0;
cin >> num;
stack.push_back(num);
}
}
}
| [
"gkshs1234@gmail.com"
] | gkshs1234@gmail.com |
29f8cfeefcbb144e7221827ef4743c3481548df2 | 3db48713c39b90d5967615e3d1c874d88055ba70 | /tests/std/tests/Dev10_579381_vector_grow_to/test.cpp | b6e9b7425350a098715cd823a80054bcc26bffe9 | [
"Apache-2.0",
"LLVM-exception",
"LicenseRef-scancode-object-form-exception-to-mit",
"LicenseRef-scancode-unicode",
"MIT",
"LicenseRef-scancode-mit-old-style",
"LicenseRef-scancode-other-permissive",
"CC0-1.0",
"BSL-1.0",
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-generic-cla",
"... | permissive | microsoft/STL | 4b1a6a625402e04b857e8dfc3c22efd9bc798f01 | 6c69a73911b33892919ec628c0ea5bbf0caf8a6a | refs/heads/main | 2023-09-04T08:50:17.559497 | 2023-08-31T16:49:43 | 2023-08-31T16:49:43 | 204,593,825 | 9,862 | 1,629 | NOASSERTION | 2023-09-14T21:57:47 | 2019-08-27T01:31:18 | C++ | UTF-8 | C++ | false | false | 1,952 | cpp | // Copyright (c) Microsoft Corporation.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
#include <cassert>
#include <list>
#include <vector>
using namespace std;
int main() {
{
vector<int> v(1000, 1729);
assert(v.size() == 1000);
assert(v.capacity() == 1000);
v.resize(1003);
assert(v.size() == 1003);
assert(v.capacity() == 1500);
}
{
vector<int> v(1000, 1729);
assert(v.size() == 1000);
assert(v.capacity() == 1000);
v.resize(8000);
assert(v.size() == 8000);
assert(v.capacity() == 8000);
}
{
vector<int> v(1000, 1729);
assert(v.size() == 1000);
assert(v.capacity() == 1000);
v.push_back(47);
assert(v.size() == 1001);
assert(v.capacity() == 1500);
}
{
vector<int> v(1000, 1729);
assert(v.size() == 1000);
assert(v.capacity() == 1000);
list<int> l(3, 47);
v.insert(v.end(), l.begin(), l.end());
assert(v.size() == 1003);
assert(v.capacity() == 1500);
}
{
vector<int> v(1000, 1729);
assert(v.size() == 1000);
assert(v.capacity() == 1000);
list<int> l(7000, 47);
v.insert(v.end(), l.begin(), l.end());
assert(v.size() == 8000);
assert(v.capacity() == 8000);
}
{
vector<int> v(1000, 1729);
assert(v.size() == 1000);
assert(v.capacity() == 1000);
v.insert(v.end(), 3, 47);
assert(v.size() == 1003);
assert(v.capacity() == 1500);
}
{
vector<int> v(1000, 1729);
assert(v.size() == 1000);
assert(v.capacity() == 1000);
v.insert(v.end(), 7000, 47);
assert(v.size() == 8000);
assert(v.capacity() == 8000);
}
}
| [
"noreply@github.com"
] | noreply@github.com |
f1334a50f4b68d6b9b0cbbc667db113bbf3b12f6 | 801d0701d19b392a4ff7c268d470959815462398 | /include/hl2sdk-css/game/client/animationlayer.h | e6fb14ced0b3da7146126e10e68b190a224c06c0 | [] | no_license | rdbo/CS-Source-Base | c6e21cc46bca5fb57f3e7f9ee44c3522fd072885 | 4605df4b11a2c779d56d16dd7e817536cdc541f7 | refs/heads/main | 2023-03-03T13:19:04.657557 | 2021-02-06T13:46:53 | 2021-02-06T13:46:53 | 335,521,112 | 6 | 1 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 4,614 | h | //========= Copyright © 1996-2005, Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
//=============================================================================//
#ifndef ANIMATIONLAYER_H
#define ANIMATIONLAYER_H
#ifdef _WIN32
#pragma once
#endif
#include "rangecheckedvar.h"
#include "lerp_functions.h"
class C_AnimationLayer
{
public:
// This allows the datatables to access private members.
ALLOW_DATATABLES_PRIVATE_ACCESS();
C_AnimationLayer();
void Reset();
void SetOrder( int order );
public:
bool IsActive( void );
CRangeCheckedVar<int, -1, 65535, 0> m_nSequence;
CRangeCheckedVar<float, -2, 2, 0> m_flPrevCycle;
CRangeCheckedVar<float, -5, 5, 0> m_flWeight;
int m_nOrder;
// used for automatic crossfades between sequence changes
CRangeCheckedVar<float, -50, 50, 1> m_flPlaybackRate;
CRangeCheckedVar<float, -2, 2, 0> m_flCycle;
float GetFadeout( float flCurTime );
float m_flLayerAnimtime;
float m_flLayerFadeOuttime;
};
#ifdef CLIENT_DLL
#define CAnimationLayer C_AnimationLayer
#endif
inline C_AnimationLayer::C_AnimationLayer()
{
Reset();
}
inline void C_AnimationLayer::Reset()
{
m_nSequence = 0;
m_flPrevCycle = 0;
m_flWeight = 0;
m_flPlaybackRate = 0;
m_flCycle = 0;
m_flLayerAnimtime = 0;
m_flLayerFadeOuttime = 0;
}
inline void C_AnimationLayer::SetOrder( int order )
{
m_nOrder = order;
}
inline float C_AnimationLayer::GetFadeout( float flCurTime )
{
float s;
if (m_flLayerFadeOuttime <= 0.0f)
{
s = 0;
}
else
{
// blend in over 0.2 seconds
s = 1.0 - (flCurTime - m_flLayerAnimtime) / m_flLayerFadeOuttime;
if (s > 0 && s <= 1.0)
{
// do a nice spline curve
s = 3 * s * s - 2 * s * s * s;
}
else if ( s > 1.0f )
{
// Shouldn't happen, but maybe curtime is behind animtime?
s = 1.0f;
}
}
return s;
}
inline C_AnimationLayer LoopingLerp( float flPercent, C_AnimationLayer& from, C_AnimationLayer& to )
{
C_AnimationLayer output;
output.m_nSequence = to.m_nSequence;
output.m_flCycle = LoopingLerp( flPercent, (float)from.m_flCycle, (float)to.m_flCycle );
output.m_flPrevCycle = to.m_flPrevCycle;
output.m_flWeight = Lerp( flPercent, from.m_flWeight, to.m_flWeight );
output.m_nOrder = to.m_nOrder;
output.m_flLayerAnimtime = to.m_flLayerAnimtime;
output.m_flLayerFadeOuttime = to.m_flLayerFadeOuttime;
return output;
}
inline C_AnimationLayer Lerp( float flPercent, const C_AnimationLayer& from, const C_AnimationLayer& to )
{
C_AnimationLayer output;
output.m_nSequence = to.m_nSequence;
output.m_flCycle = Lerp( flPercent, from.m_flCycle, to.m_flCycle );
output.m_flPrevCycle = to.m_flPrevCycle;
output.m_flWeight = Lerp( flPercent, from.m_flWeight, to.m_flWeight );
output.m_nOrder = to.m_nOrder;
output.m_flLayerAnimtime = to.m_flLayerAnimtime;
output.m_flLayerFadeOuttime = to.m_flLayerFadeOuttime;
return output;
}
inline C_AnimationLayer LoopingLerp_Hermite( float flPercent, C_AnimationLayer& prev, C_AnimationLayer& from, C_AnimationLayer& to )
{
C_AnimationLayer output;
output.m_nSequence = to.m_nSequence;
output.m_flCycle = LoopingLerp_Hermite( flPercent, (float)prev.m_flCycle, (float)from.m_flCycle, (float)to.m_flCycle );
output.m_flPrevCycle = to.m_flPrevCycle;
output.m_flWeight = Lerp( flPercent, from.m_flWeight, to.m_flWeight );
output.m_nOrder = to.m_nOrder;
output.m_flLayerAnimtime = to.m_flLayerAnimtime;
output.m_flLayerFadeOuttime = to.m_flLayerFadeOuttime;
return output;
}
// YWB: Specialization for interpolating euler angles via quaternions...
inline C_AnimationLayer Lerp_Hermite( float flPercent, const C_AnimationLayer& prev, const C_AnimationLayer& from, const C_AnimationLayer& to )
{
C_AnimationLayer output;
output.m_nSequence = to.m_nSequence;
output.m_flCycle = Lerp_Hermite( flPercent, prev.m_flCycle, from.m_flCycle, to.m_flCycle );
output.m_flPrevCycle = to.m_flPrevCycle;
output.m_flWeight = Lerp( flPercent, from.m_flWeight, to.m_flWeight );
output.m_nOrder = to.m_nOrder;
output.m_flLayerAnimtime = to.m_flLayerAnimtime;
output.m_flLayerFadeOuttime = to.m_flLayerFadeOuttime;
return output;
}
inline void Lerp_Clamp( C_AnimationLayer &val )
{
Lerp_Clamp( val.m_nSequence );
Lerp_Clamp( val.m_flCycle );
Lerp_Clamp( val.m_flPrevCycle );
Lerp_Clamp( val.m_flWeight );
Lerp_Clamp( val.m_nOrder );
Lerp_Clamp( val.m_flLayerAnimtime );
Lerp_Clamp( val.m_flLayerFadeOuttime );
}
#endif // ANIMATIONLAYER_H
| [
"rdbodev@gmail.com"
] | rdbodev@gmail.com |
92b8a109bf919f387b3523c82d154be5328a5d76 | b98412ae46887b9ad45a4bea6c356836b176bdff | /ilwis3connectortest/dataaccess.h | 5556fa37c3f55988520419bdc22b03f3e87e8a28 | [] | no_license | 52North/IlwisTests | ac000fd25e9b13d8f7c0093a8c76efadc9cd018d | 236d1c495216d3717e5b7c892c3a30e3eafb05e0 | refs/heads/master | 2021-01-22T08:23:41.279680 | 2016-12-21T08:29:15 | 2016-12-21T08:29:15 | 14,418,914 | 4 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 418 | h | #ifndef DATAACCESS_H
#define DATAACCESS_H
#include <QString>
#include <QTest>
#include <QDir>
#include "kernel.h"
#include "testmacros.h"
#include "ilwistestclass.h"
#include "ilwis3connectortest_global.h"
class DataAccess : public IlwisTestCase
{
Q_OBJECT
public:
DataAccess();
NEW_TEST(DataAccess);
private slots:
void rasters();
void features();
void table();
};
#endif // DATAACCESS_H
| [
"h.bredel@52north.org"
] | h.bredel@52north.org |
13e33d9c9b8eb5a5fd017f67742aff0b66d653bd | 03e039f3ca75632fd66ac14341aa6b8251a5c6f8 | /coutse016/code16/code16/DivideByZeroException01.h | 101258db85e8814085a223465a94944281402edb | [] | no_license | mikeywangtao/cppUniversity | 9ebbcc0e730e4c688f958a4a81f5a9ae9d5d737d | 2f0da256c5c362bbbce6bc4f0ab83a5b42a4a8d7 | refs/heads/master | 2021-01-23T19:29:56.768325 | 2017-12-05T06:12:37 | 2017-12-05T06:12:37 | 102,825,770 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 436 | h | //#pragma once
#include "stdafx.h"
#include "iostream"
#include "iomanip"
#include "fstream"
#include "cstdlib"
#include "cctype"
#include "string"
#include "vector"
#include "stdexcept"
#ifndef DBZE01_H
#define DBZE01_H
using namespace std;
class DivideByZeroException01 : public runtime_error {
public:
DivideByZeroException01() :runtime_error("attempted to divide by zero!") {}
virtual ~DivideByZeroException01();
};
#endif
| [
"niitwangtao@163.com"
] | niitwangtao@163.com |
a9e71e06f0b417b9ac76455d75bcbecc10efcc16 | 5df7ad08fb6333184652d682b04dca5759f70b57 | /AR Portal Project/Library/Il2cppBuildCache/Android/armeabi-v7a/il2cppOutput/UnityEngine.UNETModule.cpp | 0d25a3aa5a476309f941d58d25ecd1f663719625 | [] | no_license | Wygahard/AR_Portal | dcbeee908bda3559ee24a6baca7fadf8d009ddf3 | ddc582626aa8d7050c27966927eb0d6e33032f93 | refs/heads/main | 2023-05-05T04:27:32.448628 | 2021-05-28T22:10:13 | 2021-05-28T22:10:13 | 369,345,216 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,057,196 | cpp | #include "pch-cpp.hpp"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <limits>
#include <stdint.h>
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 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 T1, typename T2>
struct VirtActionInvoker2
{
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
}
};
template <typename T1, typename T2>
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 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);
}
};
struct InterfaceActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename T1, typename T2>
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);
}
};
// System.Action`1<System.Int32>
struct Action_1_t080BA8EFA9616A494EBB4DD352BFEF943792E05B;
// System.Action`2<System.Int32,System.Int32>
struct Action_2_tCC1DAEC9EBDBAB5891B0CF72C24B016C610EFF39;
// UnityEngine.Networking.Match.NetworkMatch/DataResponseDelegate`1<System.Collections.Generic.List`1<UnityEngine.Networking.Match.MatchInfoSnapshot>>
struct DataResponseDelegate_1_t363D50BBAED9945828B06A89FE812F0AEF4ABBA1;
// UnityEngine.Networking.Match.NetworkMatch/DataResponseDelegate`1<UnityEngine.Networking.Match.MatchInfo>
struct DataResponseDelegate_1_t7F092A4A713EEB7DDA047E650E8F690094B5D733;
// UnityEngine.Networking.Match.NetworkMatch/DataResponseDelegate`1<System.Object>
struct DataResponseDelegate_1_t29FEA8353ECE9ACE5427C1AFCD2445E3C4ABB734;
// System.Collections.Generic.Dictionary`2<UnityEngine.Networking.Types.NetworkID,UnityEngine.Networking.Types.NetworkAccessToken>
struct Dictionary_2_tF197FC5D732CB0BAFF2699E9BC01198A9264E0BA;
// System.Collections.Generic.Dictionary`2<System.Object,System.Int64>
struct Dictionary_2_tB6017CA19F64B79150E4F8D7B60616B73A28B9A2;
// System.Collections.Generic.Dictionary`2<System.Object,System.Object>
struct Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D;
// System.Collections.Generic.Dictionary`2<System.String,System.Int64>
struct Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9;
// System.Collections.Generic.Dictionary`2<System.String,System.String>
struct Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5;
// System.Collections.Generic.Dictionary`2<System.UInt64Enum,System.Object>
struct Dictionary_2_tBDB65AB25BDC951CC13D7797B156DEBB9C1575E5;
// System.Collections.Generic.IEqualityComparer`1<UnityEngine.Networking.Types.NetworkID>
struct IEqualityComparer_1_t9D0818B0A9F9F8933D9D43AD57C26DF398273C37;
// System.Collections.Generic.IEqualityComparer`1<System.String>
struct IEqualityComparer_1_tE6A65C5E45E33FD7D9849FD0914DE3AD32B68050;
// System.Collections.Generic.IList`1<System.Byte>
struct IList_1_t15467A9C40BD12CE17BE6FF409B2EF0FDD26B9D6;
// UnityEngine.Networking.Match.NetworkMatch/InternalResponseDelegate`2<UnityEngine.Networking.Match.BasicResponse,UnityEngine.Networking.Match.NetworkMatch/BasicResponseDelegate>
struct InternalResponseDelegate_2_t9E637FC8AD9DFE78C53C017092E174FE94DAC443;
// UnityEngine.Networking.Match.NetworkMatch/InternalResponseDelegate`2<UnityEngine.Networking.Match.CreateMatchResponse,UnityEngine.Networking.Match.NetworkMatch/DataResponseDelegate`1<UnityEngine.Networking.Match.MatchInfo>>
struct InternalResponseDelegate_2_tF18FC1B00D1213BC60AE7B8E0C6768ECC6864C08;
// UnityEngine.Networking.Match.NetworkMatch/InternalResponseDelegate`2<UnityEngine.Networking.Match.DropConnectionResponse,UnityEngine.Networking.Match.NetworkMatch/BasicResponseDelegate>
struct InternalResponseDelegate_2_t4C3380D090B02AF491ABFE36875D463E04A81BD7;
// UnityEngine.Networking.Match.NetworkMatch/InternalResponseDelegate`2<UnityEngine.Networking.Match.JoinMatchResponse,UnityEngine.Networking.Match.NetworkMatch/DataResponseDelegate`1<UnityEngine.Networking.Match.MatchInfo>>
struct InternalResponseDelegate_2_t6995AD33A05E56F1CCEBBF8C0BAD6F4D0E1F4CA9;
// UnityEngine.Networking.Match.NetworkMatch/InternalResponseDelegate`2<UnityEngine.Networking.Match.ListMatchResponse,UnityEngine.Networking.Match.NetworkMatch/DataResponseDelegate`1<System.Collections.Generic.List`1<UnityEngine.Networking.Match.MatchInfoSnapshot>>>
struct InternalResponseDelegate_2_t516CE3343F339242F578AC9659FD83BD4FAEEAB5;
// UnityEngine.Networking.Match.NetworkMatch/InternalResponseDelegate`2<System.Object,System.Object>
struct InternalResponseDelegate_2_tE52F5D14AB5761A54C4DB06DD5E7D61FAC960830;
// System.Collections.Generic.Dictionary`2/KeyCollection<UnityEngine.Networking.Types.NetworkID,UnityEngine.Networking.Types.NetworkAccessToken>
struct KeyCollection_t388F7D1BF890E52860FFD3D6816B6E70A0BE8FB3;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.String,System.Int64>
struct KeyCollection_tB5CE2E6F5CA0C9B96D771E33A94D08BD0219E752;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.String,System.String>
struct KeyCollection_t52C81163A051BCD87A36FEF95F736DD600E2305D;
// System.Collections.Generic.List`1<System.Collections.Generic.List`1<System.Byte>>
struct List_1_t74C85CD2BEE64FE69AE8BF4BAB62A4186A73655B;
// System.Collections.Generic.List`1<System.Byte[]>
struct List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE;
// System.Collections.Generic.List`1<System.Byte>
struct List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF;
// System.Collections.Generic.List`1<UnityEngine.Networking.ChannelQOS>
struct List_1_t4A161C6204A381DADE144FA5F63CF0E3E7E11E33;
// System.Collections.Generic.List`1<UnityEngine.Networking.ConnectionConfig>
struct List_1_t46489AA4DB932B33C96BA58827F21F14C831C2DE;
// System.Collections.Generic.List`1<UnityEngine.Networking.Match.MatchDesc>
struct List_1_t2502ACE8E86D49AF07B92705BD60DD75F6358030;
// System.Collections.Generic.List`1<UnityEngine.Networking.Match.MatchDirectConnectInfo>
struct List_1_t634AFA3BC7CA26F185BBC2A460A21D2F89EE10FA;
// System.Collections.Generic.List`1<UnityEngine.Networking.Match.MatchInfoSnapshot>
struct List_1_t6DE630FAF3A1BE1CC9F17F3D6CBF747283858F2F;
// System.Collections.Generic.List`1<System.Object>
struct List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5;
// System.Collections.Generic.List`1<System.String>
struct List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3;
// System.Collections.Generic.List`1<UnityEngine.Networking.Match.MatchInfoSnapshot/MatchInfoDirectConnectSnapshot>
struct List_1_t25DD639486662E92B4B3EF461C654CEBB4202FFC;
// System.Collections.ObjectModel.ReadOnlyCollection`1<System.Byte>
struct ReadOnlyCollection_1_t88367D6A0A0435F3B7F5A180EAE18DC0323A14E7;
// System.Collections.Generic.Dictionary`2/ValueCollection<UnityEngine.Networking.Types.NetworkID,UnityEngine.Networking.Types.NetworkAccessToken>
struct ValueCollection_t5B8AD7913D489FD92456CE10BF1C9F1286230961;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.String,System.Int64>
struct ValueCollection_t321D22FD49D8380CAF73D9D203A65325003A80C8;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.String,System.String>
struct ValueCollection_t9161A5C97376D261665798FA27DAFD5177305C81;
// System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Networking.Types.NetworkID,UnityEngine.Networking.Types.NetworkAccessToken>[]
struct EntryU5BU5D_tEEB23D8AB9ADF6AABA3A3A5CBF802F690A1E9A56;
// System.Collections.Generic.Dictionary`2/Entry<System.String,System.Int64>[]
struct EntryU5BU5D_t3512009D192CEA47C4E8A6A34B872886D1B2E8BC;
// System.Collections.Generic.Dictionary`2/Entry<System.String,System.String>[]
struct EntryU5BU5D_t52A654EA9927D1B5F56CA05CF209F2E4393C4510;
// System.Collections.Generic.List`1<System.Byte>[]
struct List_1U5BU5D_t75FF913D3760C42BEB7CE55D319A09963770CE05;
// System.Byte[]
struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726;
// UnityEngine.Networking.ChannelQOS[]
struct ChannelQOSU5BU5D_t889380DA7AE26AC186A7E6D4A4CD6D32EB26E4E0;
// System.Char[]
struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34;
// UnityEngine.Networking.ConnectionConfig[]
struct ConnectionConfigU5BU5D_t9F6658E7D6BA15446277AD5EEE600C32809499CB;
// System.Delegate[]
struct DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8;
// System.Int32[]
struct Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32;
// System.IntPtr[]
struct IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6;
// UnityEngine.Networking.Match.MatchDesc[]
struct MatchDescU5BU5D_tF3C3822548EE8E081C81533584F2E5D92008A459;
// UnityEngine.Networking.Match.MatchDirectConnectInfo[]
struct MatchDirectConnectInfoU5BU5D_t87F1AF7AE238AF31A3C2FD88B4C3C399721F26BE;
// UnityEngine.Networking.Match.MatchInfoSnapshot[]
struct MatchInfoSnapshotU5BU5D_tFA710727A051E57D73977A5500738D5D4339CF95;
// System.Object[]
struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE;
// System.Diagnostics.StackTrace[]
struct StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971;
// System.Type[]
struct TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755;
// UnityEngine.Networking.Match.MatchInfoSnapshot/MatchInfoDirectConnectSnapshot[]
struct MatchInfoDirectConnectSnapshotU5BU5D_t606C8C1ECB6C45150DF601BCEF11ACB5691A764A;
// System.ArgumentException
struct ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00;
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8;
// System.AsyncCallback
struct AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA;
// UnityEngine.Networking.Match.BasicResponse
struct BasicResponse_t9579CCF321F1A381924A886EC1A6496DAC3FC484;
// System.Reflection.Binder
struct Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30;
// UnityEngine.Networking.CertificateHandler
struct CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E;
// UnityEngine.Networking.ChannelQOS
struct ChannelQOS_tF55C4AC4858FAFCFBDA366C6F6B1E2B35DFFF3DE;
// UnityEngine.Networking.ConnectionConfig
struct ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A;
// UnityEngine.Networking.ConnectionConfigInternal
struct ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078;
// UnityEngine.Networking.ConnectionSimulatorConfig
struct ConnectionSimulatorConfig_t1AE9575EDB85F7792DE5F22A4E096A4A08AEB935;
// UnityEngine.Networking.ConnectionSimulatorConfigInternal
struct ConnectionSimulatorConfigInternal_tB19B4AE3F50ACB7661DC811F6198E37C08ACDB99;
// UnityEngine.Coroutine
struct Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7;
// UnityEngine.Networking.Match.CreateMatchRequest
struct CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B;
// UnityEngine.Networking.Match.CreateMatchResponse
struct CreateMatchResponse_t1138835A2F19EA07436177C577ABC9984B9F93E2;
// System.Delegate
struct Delegate_t;
// System.DelegateData
struct DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288;
// UnityEngine.Networking.Match.DestroyMatchRequest
struct DestroyMatchRequest_t3AC8FF769CC153C425D7D76492693F00A76B81D0;
// UnityEngine.Networking.DownloadHandler
struct DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB;
// UnityEngine.Networking.Match.DropConnectionRequest
struct DropConnectionRequest_t0BADA55738E8857768EE57C92027957659C0E8D1;
// UnityEngine.Networking.Match.DropConnectionResponse
struct DropConnectionResponse_tBAAA11B3A813A89B8D7C481BB80E24C1C94E1F31;
// System.Net.EndPoint
struct EndPoint_t18D4AE8D03090A2B262136E59F95CE61418C34DA;
// System.Enum
struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA;
// UnityEngine.Networking.GlobalConfig
struct GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66;
// UnityEngine.Networking.GlobalConfigInternal
struct GlobalConfigInternal_t0F07F384FD03D7CE842BC781D7C747B5579F680F;
// UnityEngine.Networking.HostTopology
struct HostTopology_t268779309BB2D69F29D1A182662C79818813892B;
// UnityEngine.Networking.HostTopologyInternal
struct HostTopologyInternal_tA95C0259BC91D8E3D227BAF3D4F7CEE5C5331E10;
// System.IAsyncResult
struct IAsyncResult_tC9F97BF36FCF122D29D3101D80642278297BF370;
// System.Collections.IDictionary
struct IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A;
// System.Collections.IEnumerator
struct IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105;
// System.InvalidOperationException
struct InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB;
// UnityEngine.Networking.Match.JoinMatchRequest
struct JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A;
// UnityEngine.Networking.Match.JoinMatchResponse
struct JoinMatchResponse_t6F5BCC11BC546B850CB72C9DEF63D520F4F6946D;
// UnityEngine.Networking.Match.ListMatchRequest
struct ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30;
// UnityEngine.Networking.Match.ListMatchResponse
struct ListMatchResponse_tA778241617E0B4AF172DE6201E27F64EA6670900;
// UnityEngine.Networking.Match.MatchDesc
struct MatchDesc_t49F2F401AE3A8B8B80EDF9838F88127727B4108B;
// UnityEngine.Networking.Match.MatchDirectConnectInfo
struct MatchDirectConnectInfo_t79A507F1704A58987DFC695D74214C9726BF78A4;
// UnityEngine.Networking.Match.MatchInfo
struct MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67;
// UnityEngine.Networking.Match.MatchInfoSnapshot
struct MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0;
// System.Reflection.MemberFilter
struct MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// UnityEngine.MonoBehaviour
struct MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A;
// UnityEngine.Networking.Types.NetworkAccessToken
struct NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481;
// UnityEngine.Networking.Match.NetworkMatch
struct NetworkMatch_t520F80EBC98ADEE375884B456429236E5BBA0F3B;
// System.Net.Sockets.NetworkStream
struct NetworkStream_t160A2538024FE3EC707872435D01F1C20B3B1A48;
// System.NullReferenceException
struct NullReferenceException_t44B4F3CDE3111E74591952B8BE8707B28866D724;
// UnityEngine.Networking.Match.Request
struct Request_tA1BC1936C153408449C4C207CA12D4358A7477FD;
// UnityEngine.Networking.Match.Response
struct Response_tEF5C8607FB2DC4F1E0E744F3F9BAD3869B4BCD6C;
// System.Runtime.Serialization.SafeSerializationManager
struct SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F;
// Microsoft.Win32.SafeHandles.SafeWaitHandle
struct SafeWaitHandle_tF37EACEDF9C6F350EB4ABC1E1F869EECB0B5ABB1;
// UnityEngine.Networking.Match.SetMatchAttributesRequest
struct SetMatchAttributesRequest_t22EC5198C69E086FC5BC8DB4E249E4B90FAFF2E2;
// System.Net.Sockets.Socket
struct Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09;
// System.Net.SocketAddress
struct SocketAddress_tE8FA33C91254662406767AF97518C235382742D3;
// System.String
struct String_t;
// System.Net.Sockets.TcpClient
struct TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE;
// System.Type
struct Type_t;
// UnityEngine.Networking.UnityWebRequest
struct UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E;
// UnityEngine.Networking.UploadHandler
struct UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA;
// System.Uri
struct Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612;
// System.UriParser
struct UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A;
// System.Void
struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5;
// UnityEngine.WWWForm
struct WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB;
// UnityEngine.Networking.Match.MatchInfoSnapshot/MatchInfoDirectConnectSnapshot
struct MatchInfoDirectConnectSnapshot_t82741E9963C92FE12F5CB64A40851676E4677F6C;
// UnityEngine.Networking.Match.NetworkMatch/BasicResponseDelegate
struct BasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A;
// System.Uri/UriInfo
struct UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45;
IL2CPP_EXTERN_C RuntimeClass* ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* BitConverter_t8DCBA24B909F1B221372AF2B37C76DCF614BA654_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ChannelQOS_tF55C4AC4858FAFCFBDA366C6F6B1E2B35DFFF3DE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ConnectionSimulatorConfigInternal_tB19B4AE3F50ACB7661DC811F6198E37C08ACDB99_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DestroyMatchRequest_t3AC8FF769CC153C425D7D76492693F00A76B81D0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tF197FC5D732CB0BAFF2699E9BC01198A9264E0BA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* DropConnectionRequest_t0BADA55738E8857768EE57C92027957659C0E8D1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Enum_t23B90B40F60E677A8025267341651C94AE079CDA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* GC_tD6F0377620BF01385965FD29272CF088A4309C0D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* GlobalConfigInternal_t0F07F384FD03D7CE842BC781D7C747B5579F680F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* HostPriority_tA55AD7007516BAA3ADFF8CDC72576479ACA864A0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* HostTopologyInternal_tA95C0259BC91D8E3D227BAF3D4F7CEE5C5331E10_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IAsyncResult_tC9F97BF36FCF122D29D3101D80642278297BF370_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ICollection_1_t5AB6E9D20BDB8A993042228A58C871DF8C3BCE87_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IntPtr_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InternalResponseDelegate_2_t4C3380D090B02AF491ABFE36875D463E04A81BD7_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InternalResponseDelegate_2_t516CE3343F339242F578AC9659FD83BD4FAEEAB5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InternalResponseDelegate_2_t6995AD33A05E56F1CCEBBF8C0BAD6F4D0E1F4CA9_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InternalResponseDelegate_2_t9E637FC8AD9DFE78C53C017092E174FE94DAC443_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InternalResponseDelegate_2_tF18FC1B00D1213BC60AE7B8E0C6768ECC6864C08_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t2502ACE8E86D49AF07B92705BD60DD75F6358030_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t25DD639486662E92B4B3EF461C654CEBB4202FFC_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t46489AA4DB932B33C96BA58827F21F14C831C2DE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t4A161C6204A381DADE144FA5F63CF0E3E7E11E33_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t6DE630FAF3A1BE1CC9F17F3D6CBF747283858F2F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t74C85CD2BEE64FE69AE8BF4BAB62A4186A73655B_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Marshal_tEBAFAE20369FCB1B38C49C4E27A8D8C2C4B55058_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MatchInfoDirectConnectSnapshot_t82741E9963C92FE12F5CB64A40851676E4677F6C_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NetworkID_tA7160DE9FBEE6E236564AEA6C328B6180FC368C3_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NodeID_t07417F7D8D30332570E9D4A123D9E8B7CA1D1E80_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NullReferenceException_t44B4F3CDE3111E74591952B8BE8707B28866D724_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* QosType_tAD0DC2835CF976743FCBBFDD0B4BC1B6392A2293_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Request_tA1BC1936C153408449C4C207CA12D4358A7477FD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SetMatchAttributesRequest_t22EC5198C69E086FC5BC8DB4E249E4B90FAFF2E2_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* SourceID_tBE00015EA0F2E5DAEBEC7D0210216A18EB6DA62D_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* UInt32_tE60352A06233E4E69DD198BCC67142159F686B15_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Utility_t1BA2108022A500F65615E46E75D6A58D03F1E874_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeField* U3CPrivateImplementationDetailsU3E_tB81EF66DC95F2C9A31394EC66C970747E54559B0____AD8DE0BDC215A2190D235D94698594B980EAE428E98B444A3C647B01175FDF43_0_FieldInfo_var;
IL2CPP_EXTERN_C String_t* _stringLiteral02B539DCAE2AFEF6DE41B32199CFE86AFB213028;
IL2CPP_EXTERN_C String_t* _stringLiteral087D31DBCB0C14AB130B18593F0AAF5E885A1617;
IL2CPP_EXTERN_C String_t* _stringLiteral08B765E9CCC2538FF59EF166FFEF6E41729AD494;
IL2CPP_EXTERN_C String_t* _stringLiteral0A7707C8AD286270B40614B2F06591CDC7B4DD38;
IL2CPP_EXTERN_C String_t* _stringLiteral0D7BD05A28506613A365787E2E8446E60EEBA0B5;
IL2CPP_EXTERN_C String_t* _stringLiteral0E14CB107D2828D06B7F193B2B967C9C34BFA53F;
IL2CPP_EXTERN_C String_t* _stringLiteral1160537BD85B89A253A1F95C808D8DCD2297DCA8;
IL2CPP_EXTERN_C String_t* _stringLiteral11CE95773B1A28A89056F630BA32649A0210CA48;
IL2CPP_EXTERN_C String_t* _stringLiteral11E42B7A5E1CF74E4375D71D8CE94F3D8D446DBA;
IL2CPP_EXTERN_C String_t* _stringLiteral14693920B7544ED151BF377173FB1F4A2488E785;
IL2CPP_EXTERN_C String_t* _stringLiteral150FDBF76BAB85D67599EA5DC94B371C0153E1E1;
IL2CPP_EXTERN_C String_t* _stringLiteral16D46E00A879AD1C9053ED90B4B148D721A45E92;
IL2CPP_EXTERN_C String_t* _stringLiteral18BCA85BAC0AA773A498B2BB7E4CAB9BC0336E67;
IL2CPP_EXTERN_C String_t* _stringLiteral1982FBA5FFA052139BF60A6A80D09A1F2C54D0E5;
IL2CPP_EXTERN_C String_t* _stringLiteral1ECFFECC392D6039A4339179E5CCCDE0A750BFEA;
IL2CPP_EXTERN_C String_t* _stringLiteral1F4F8DCA94A6832B1312A4D1589F77B40D6B6BA1;
IL2CPP_EXTERN_C String_t* _stringLiteral29E20EECD413DC9AD65630FD9812ACB09F835F9F;
IL2CPP_EXTERN_C String_t* _stringLiteral2BB8259EC508942FD739C18DBCB771FDA227FDE7;
IL2CPP_EXTERN_C String_t* _stringLiteral2E110137FA0B6B8DF1D6626DAD24D0B5BC1C50E2;
IL2CPP_EXTERN_C String_t* _stringLiteral317EE74AF038EFA1EFB835A1A142AD358C5939C3;
IL2CPP_EXTERN_C String_t* _stringLiteral350D4B065F7614696CB93A92DB46F8A86E919CF1;
IL2CPP_EXTERN_C String_t* _stringLiteral364CBA7CC7922443D723F08B65C6354BDEB51914;
IL2CPP_EXTERN_C String_t* _stringLiteral380A680E674A6308DF9844F381538F6CBA4921F5;
IL2CPP_EXTERN_C String_t* _stringLiteral3866C00AAA41CBA51BF961FDAB79035290665796;
IL2CPP_EXTERN_C String_t* _stringLiteral3BD06732BCAB068A09DACE7B5D433AB7A22BBE48;
IL2CPP_EXTERN_C String_t* _stringLiteral3EE5A4671A4E5AEBD31CA5F013A7773DC18ED22B;
IL2CPP_EXTERN_C String_t* _stringLiteral41821D6839AF15540658B35D25837B922A44F84A;
IL2CPP_EXTERN_C String_t* _stringLiteral434B22F14CB108AC44FE3DFE41CD208405839E27;
IL2CPP_EXTERN_C String_t* _stringLiteral45DE596A22B9D99D208C584D76366FDDF8249A1C;
IL2CPP_EXTERN_C String_t* _stringLiteral47E8F4AFAAF07FCB034C8F9027894581CE654717;
IL2CPP_EXTERN_C String_t* _stringLiteral4A0AD9813AEE05844917B9EAF4D1D3743AE8BE87;
IL2CPP_EXTERN_C String_t* _stringLiteral4D60F161B5C88B523D921345EE1BB37229C991D0;
IL2CPP_EXTERN_C String_t* _stringLiteral4DB1A45BB662D79231E9447F2CBFDE3B6CE19D71;
IL2CPP_EXTERN_C String_t* _stringLiteral515E8DC0021BC9F0BE2285E066E0396A65CF1DE2;
IL2CPP_EXTERN_C String_t* _stringLiteral53441C037FB00AA5DF2BEDB7347FBE060552F187;
IL2CPP_EXTERN_C String_t* _stringLiteral56FC7ACF83761F215C42F94457870B28C159AD13;
IL2CPP_EXTERN_C String_t* _stringLiteral572189F4EA97569D6C0D3A4A68C98F20D9FC95A5;
IL2CPP_EXTERN_C String_t* _stringLiteral574EAFB007F2E7E398E934C28531F3E45502C792;
IL2CPP_EXTERN_C String_t* _stringLiteral595320BA056F8106150E19C7F57653801E2B706A;
IL2CPP_EXTERN_C String_t* _stringLiteral5A068CD5BEF2AF2FF0E3642874366761954C834B;
IL2CPP_EXTERN_C String_t* _stringLiteral5E667949D5E0A7C4D860B15F9809BE75BA39E7E9;
IL2CPP_EXTERN_C String_t* _stringLiteral603078036E4F6701B78C3C841B17DE1BD4B49EB7;
IL2CPP_EXTERN_C String_t* _stringLiteral64058CC688A96A90239811EF06C9D20DB0499C3E;
IL2CPP_EXTERN_C String_t* _stringLiteral641FFED502231E55D5798D2B06509B8059C32635;
IL2CPP_EXTERN_C String_t* _stringLiteral6BD2C10566F502C3C2BF829339E1CCBA316C993F;
IL2CPP_EXTERN_C String_t* _stringLiteral6EB30FE58A07B67E9CD022AE66788504FFEB1F39;
IL2CPP_EXTERN_C String_t* _stringLiteral736422D0BE3EE3D267772720ADB77AA1B2485ED7;
IL2CPP_EXTERN_C String_t* _stringLiteral7471FC92FC1AA570D64A46C83CB352615E0781C2;
IL2CPP_EXTERN_C String_t* _stringLiteral76C3D4024DE9EE847070E35CC5A197DC21F66FEE;
IL2CPP_EXTERN_C String_t* _stringLiteral7896E01D34168C60ECE45B2AD00FB87A6632B332;
IL2CPP_EXTERN_C String_t* _stringLiteral7BD2BAAE773711A25E2A86E4644B6FA5287BE9CB;
IL2CPP_EXTERN_C String_t* _stringLiteral7C61EAEAFB3D88C9B039FD07E45F05EE20246885;
IL2CPP_EXTERN_C String_t* _stringLiteral8482D1CD991035F2FF945274B56D7F12D182378A;
IL2CPP_EXTERN_C String_t* _stringLiteral84B38E695ADFA5AA7B76F9A941E6C4096293F660;
IL2CPP_EXTERN_C String_t* _stringLiteral853E3BFF5CA10F5DE14F3B9CA6FE2C1E08DC942F;
IL2CPP_EXTERN_C String_t* _stringLiteral85680EDBC3A789EE54201869637026FD805F2948;
IL2CPP_EXTERN_C String_t* _stringLiteral8A4CACA68D0889BCC0B193D3EB8B384C328208A3;
IL2CPP_EXTERN_C String_t* _stringLiteral8C3F751CD57B7C60AAD058ED08273A8DB9A61552;
IL2CPP_EXTERN_C String_t* _stringLiteral8E37D8E89372864B7B89F3DA64D896DD89BB2FF6;
IL2CPP_EXTERN_C String_t* _stringLiteral8E79A3CF1B1789894F62CAD8AA6FE343DFA9DBA7;
IL2CPP_EXTERN_C String_t* _stringLiteral8F1700A1AC35AADD43F02CBF1647CB8D0E2A2CAB;
IL2CPP_EXTERN_C String_t* _stringLiteral9552624BDF15687DEEA5EE13EAD814AB55C4BB5A;
IL2CPP_EXTERN_C String_t* _stringLiteral970E2379B8ADD15A47FF04C1F1AE7051F01DA5DC;
IL2CPP_EXTERN_C String_t* _stringLiteral99DF20B789B50B8C4A99635D3CCE3CD00E34953E;
IL2CPP_EXTERN_C String_t* _stringLiteral9CB64D4DAF8CDF7B5A2130FCCDD62ECE720AFE8E;
IL2CPP_EXTERN_C String_t* _stringLiteral9F7F0CB830E94EE0E561A733C75DEEFAE8E59A45;
IL2CPP_EXTERN_C String_t* _stringLiteralA009B6D2A048B8DC6D18F008E2ED77A79DDCE1C2;
IL2CPP_EXTERN_C String_t* _stringLiteralAA8C43830C5083F7E4CB7028748C40B450C3BF24;
IL2CPP_EXTERN_C String_t* _stringLiteralB5C2F263A62FD2D8D8DF037B38B10BC38934584B;
IL2CPP_EXTERN_C String_t* _stringLiteralB5D188BB939DB222A91F272FA2B6C8F7AC78B6D4;
IL2CPP_EXTERN_C String_t* _stringLiteralB7924E654A4528032CD5FC50B5878AA01E102C42;
IL2CPP_EXTERN_C String_t* _stringLiteralB9A0D800389286793EC08A8AEE5AF22205CE1918;
IL2CPP_EXTERN_C String_t* _stringLiteralBCA3F64FAF8B5677425E2E15F31EA65E04BB7890;
IL2CPP_EXTERN_C String_t* _stringLiteralC6CE503FCF99CF607CD50384B9F29EC8BC274CF2;
IL2CPP_EXTERN_C String_t* _stringLiteralC7BA0F624C7093AC0132FD986A2AFD6EBE64E352;
IL2CPP_EXTERN_C String_t* _stringLiteralC8ECFEDB46D550F91F24515968D3BD0036B15402;
IL2CPP_EXTERN_C String_t* _stringLiteralC94B47F32002FEDF4A271879FE7A0BC4157B2A6F;
IL2CPP_EXTERN_C String_t* _stringLiteralCA636F68360653EC2357E195A0370D0FFA121B60;
IL2CPP_EXTERN_C String_t* _stringLiteralCA99244C9CA9E756716FAF957CB2C14B96DE45CC;
IL2CPP_EXTERN_C String_t* _stringLiteralCC5D4DC63E48FBD28A82FDA62CA96DACF4C408C2;
IL2CPP_EXTERN_C String_t* _stringLiteralCDBC178854E256F8C61DC4C296BB7F91494D0D08;
IL2CPP_EXTERN_C String_t* _stringLiteralCE18B047107AA23D1AA9B2ED32D316148E02655F;
IL2CPP_EXTERN_C String_t* _stringLiteralCE385F9F7D5C09B5022CEB751F15514B5FABDF44;
IL2CPP_EXTERN_C String_t* _stringLiteralCE6672530430D7FCAA477C87AC4B23B59477AEDD;
IL2CPP_EXTERN_C String_t* _stringLiteralD06B515DEC71AED37A82FDDDBDE63F1D1DFE16C3;
IL2CPP_EXTERN_C String_t* _stringLiteralD2D2F8D3F9F04A081FFBE6B2AF7917BAAADFC052;
IL2CPP_EXTERN_C String_t* _stringLiteralD3D048DC9953FA1B6207645A16737399F1DCABF6;
IL2CPP_EXTERN_C String_t* _stringLiteralD545B2AC9E1F7D2797A7BD919E1632698CEF91B5;
IL2CPP_EXTERN_C String_t* _stringLiteralD5D2875F228D651E1289522AEAAB8C492001C1BE;
IL2CPP_EXTERN_C String_t* _stringLiteralD8ADA7FA0ED6488A1BB80EC2DD7DEDCD5AD6F190;
IL2CPP_EXTERN_C String_t* _stringLiteralD8F50872454B1DDA643F3A29398B40D5880A7DDA;
IL2CPP_EXTERN_C String_t* _stringLiteralDC4A22150C3582A362005292F9B7BDE6394836BA;
IL2CPP_EXTERN_C String_t* _stringLiteralDE5E7F5D6D66C3421E5F09BD52048AA05EFC584B;
IL2CPP_EXTERN_C String_t* _stringLiteralDF5230F0D16A6901ED26AE1F9636F2A61DA5D6ED;
IL2CPP_EXTERN_C String_t* _stringLiteralE634A536B967CA4ECCFF5C6AD9848DE6FE34351E;
IL2CPP_EXTERN_C String_t* _stringLiteralE7E5D35F25A57631AF401AF761D55D9973D0313D;
IL2CPP_EXTERN_C String_t* _stringLiteralE803E3877828CE008C6F327F3B0DF52DE76F9F73;
IL2CPP_EXTERN_C String_t* _stringLiteralE8F97FBA9104D1EA5047948E6DFB67FACD9F5B73;
IL2CPP_EXTERN_C String_t* _stringLiteralEA9F88EAA400C7758A1C3CF48D8E6A867EF21B25;
IL2CPP_EXTERN_C String_t* _stringLiteralEBA9B9956261BFAD17D680E8D52612494FF58AEE;
IL2CPP_EXTERN_C String_t* _stringLiteralF4173404C2A91E0DC024B66C308FAD4BA3387C15;
IL2CPP_EXTERN_C String_t* _stringLiteralF7BFCB567D48E3E6782D1C51FD5DEDFBFCAB1C48;
IL2CPP_EXTERN_C String_t* _stringLiteralFB53011A10B004A1383FD0B7A61E675D7980F715;
IL2CPP_EXTERN_C String_t* _stringLiteralFBFA6E6B8A316BF610915064DCF9AE580CE1C11D;
IL2CPP_EXTERN_C String_t* _stringLiteralFE395372133BD4424644B83D8FEC81DEFE538A4F;
IL2CPP_EXTERN_C const RuntimeMethod* ChannelQOS__ctor_m885E633D2A1D64E13E087DA039943C767E575DA8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ConnectionConfigInternal__ctor_m3159326166C18DBB931A215F34FDE777C78D2AC0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ConnectionConfig_AddChannel_mED78D9A5780E5148E29F653CEB1CB0A54DA869E6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ConnectionConfig_GetChannel_m0473DB76B5FE9E1992A3500F37F3C88ACB6DA3D4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ConnectionConfig_GetSharedOrderChannels_m7DB0D9738F33E044807142B8C2CBB50DDA42A9EC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ConnectionConfig_Validate_m84787B66F366FDC5EF3D074316F7041E84AA735F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ConnectionConfig__ctor_m1976654A083CE2C1858BECF7EED65005BFC16343_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ConnectionConfig_set_MinUpdateTimeout_m9879D2D21137E06AD888D3A77928C98DB71C6101_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ConnectionConfig_set_UsePlatformSpecificProtocols_m499F4E8B0E179F3B924B9AB3F9C55794D8CC2068_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DataResponseDelegate_1_Invoke_m30198CE2090F7EFDF95347F2D69012BC34BD1E30_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* DataResponseDelegate_1_Invoke_m349C8857DB465CF5418C91EC90E94D4842457854_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_mC9565B511D1371B68F07DB865095C9304A8F0D74_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_ContainsKey_m7402E5AA50B26C1263364008B6293C58493B9700_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Remove_m6C9ADF70804F80C044BF0B3BBB2A6A08C53E1284_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_mBCDA7DD151F5870CC0A86694D90D169DCDDDF333_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m579860025819FDFA94E93CC9F43D1E0E1CB4ADCE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Count_mCA15DE17B2ACAB05732DDD414A316442CC19E5FD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_m31C41E4FE938066440DAFD1E667C2F3986549668_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m662A014112C06C898F29525911252A9642D16193_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m7BFD0B40F427E95E5E560D817FC12EB5C2660D5D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_mC56BDC16EF132C1FF68A2DE409C105AD6B6EDB92_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_mCA5AF94E5CDC291C5024A38E2660C8CB19682EE0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m7172A06A4C2A5FBE567C435CBA16C373CA3219DC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mCF03F3EA00D810696408ABDA570EF4EF0976E030_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mD073B0C912CA5B28B0809D9F5CA2848BDC176469_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mE2441137766623FBFEAF548F2538C35D4D61B23F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m4267B331E0ABC96A43B93371D123FF3FDECB5FC5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m9C6BB00A24C9CB4946A9E76569A445E8173A2B01_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_mC47AA20564FA3ABDFC9B2D9BE356BE78D7A93E02_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_mEC015BBE1981CD48D16AA43753CE5A52D359E57F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* GlobalConfigInternal__ctor_m9D3BDDFE489512D1B72565B516638C76564AAA68_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* GlobalConfig_set_ThreadAwakeTimeout_m11AE6BA88859ED3F6FA86D986B2D42BE95ACB29E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* HostTopology_GetSpecialConnectionConfig_m52EB0C01DBCEFABCCA2999BA5AA4FC5200049BC1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* HostTopology__ctor_m402906F2EFF083571541B3EDED1729CA3FDB6244_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalResponseDelegate_2__ctor_mBAA32B07ABC3DA74B90D41F8CBBB52DF6CA6C2B3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalResponseDelegate_2__ctor_mDD46AD163E17C98C5AC76F522B0835E2C1C6A22B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalResponseDelegate_2__ctor_mE3D3CDC33CBC9039E9948C1B69F741122FEF4F69_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalResponseDelegate_2__ctor_mF17D4320A3FF8AE1DE3BAF5020DF0D0A35F4F368_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* InternalResponseDelegate_2__ctor_mFC0084C0973B92D260D3B6DB5AD82EE3B9FF327B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m04CCA815BA538CCC717F5B0CEABEE87777C02191_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m395F91C48816169EBE7E930528A1A8CE600FD060_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m5B19AB51FE854D02B9A506D94605914F9ED11873_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mA13FB34C0A81132F7FC1D7C667B242626801E3EB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_AsReadOnly_m5B294C3B51BB4CD52DCA4DC740F05BA7A873859E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_m106D5C445A0F9D9A7F7C474EC7ECE771F547FA49_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_m795565AF9DAB5243B5CCB29CA6129D67F619C88E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mBC12FB54B3BD6D46D3D0041FC837BB9B5ABD5224_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mF15DD1A3B8F7221CBA8F8559B46A1F4A4808A896_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m07E75EC513A2A1B607C7C94D32F9F1DD52F9DC81_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m0F98CE6F7E0141E6A7388E6DA3FCC2F93802C219_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m1F4A4C6B76603E6A2DA8067FDC73F87532587024_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m3773D4925D11B4FA7DAC7E5BD75BDB92B1968695_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m3EADFEE4B0D96863F5F2A9D440D718963CCF30A3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m8897F69EB53EE9937B1CBFF754341A998840CAC5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m2C0EC005D5C06E5F178A8FB94D48DA905506D907_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m4FAC089655B2026854C837BB67444B874CD2D9BF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m94137B698864A43E9459A65D4BE18DA911CA9939_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mB609C617D427D5EC266B009014EB41732F164150_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mB923AB9D42A3F44229B3E675D82767B5F449CBD1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m68E7DB4815C63A275BDC11FF71FACD9235A7C562_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mA887125ECBEEA92DEE8520B227EFE1CBF3FB6434_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mEA12AB396EABC73A3E2E57BE233BC77763A61BFA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NetworkMatch_OnDropConnection_m08090F22FEB40D7BED8DE3B8F704FEDF0DB391F5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NetworkMatch_OnMatchDestroyed_mE1D44CA6E72D3791B8C0CED6AEA09D5F01858858_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NetworkMatch_OnMatchJoined_m0E7184A2CE1469F31F1916DC05EB5C90D35496A6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NetworkMatch_OnMatchList_m06E1BEE915232A4B8940A859719B17074406ACC5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NetworkMatch_OnSetMatchAttributes_mC033F8384FF47977A57139A4B0BEBC56A4DD62F7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NetworkMatch_ProcessMatchResponse_TisBasicResponse_t9579CCF321F1A381924A886EC1A6496DAC3FC484_TisBasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A_mAE0660E27C201F0AB0F83AE64887924C7F11200C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NetworkMatch_ProcessMatchResponse_TisCreateMatchResponse_t1138835A2F19EA07436177C577ABC9984B9F93E2_TisDataResponseDelegate_1_t7F092A4A713EEB7DDA047E650E8F690094B5D733_m7A762CE8A0D3C5A40E18F753AD2110813658AEB9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NetworkMatch_ProcessMatchResponse_TisDropConnectionResponse_tBAAA11B3A813A89B8D7C481BB80E24C1C94E1F31_TisBasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A_mFF6F93BBCEEB841440524930B28D4257627F9604_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NetworkMatch_ProcessMatchResponse_TisJoinMatchResponse_t6F5BCC11BC546B850CB72C9DEF63D520F4F6946D_TisDataResponseDelegate_1_t7F092A4A713EEB7DDA047E650E8F690094B5D733_m64042B909F0C8C3E900B2D26271E84C41FF4BA7A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NetworkMatch_ProcessMatchResponse_TisListMatchResponse_tA778241617E0B4AF172DE6201E27F64EA6670900_TisDataResponseDelegate_1_t363D50BBAED9945828B06A89FE812F0AEF4ABBA1_mF201DF179B23CD9A0BFD49C736F0031D7CAA2C6C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NetworkTransport_AddHostWithSimulator_m7D2AA3190354AF70603B43E642EBABD8B014E2B8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NetworkTransport_AddWebsocketHost_m700C762A710DDC088B7768520A810E8B211143B5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NetworkTransport_CheckTopology_mCA4CDEBBD3AA34CE15D5110586307B01EAD7C1AA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NetworkTransport_ConnectEndPoint_m255B4FE92DE3E5D368A9BE45A024205D06E27EA4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NetworkTransport_Send_m8D6D448EDCA5A74B58C5DC9DE1AEA7658C9FC0A7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* NetworkTransport_StartBroadcastDiscovery_mAD307BE76662C16F30EAB56FA57C385A9E5A4407_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeType* QosType_tAD0DC2835CF976743FCBBFDD0B4BC1B6392A2293_0_0_0_var;
struct CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E_marshaled_com;
struct Delegate_t_marshaled_com;
struct Delegate_t_marshaled_pinvoke;
struct DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshaled_com;
struct Exception_t_marshaled_com;
struct Exception_t_marshaled_pinvoke;
struct UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA_marshaled_com;
struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726;
struct DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8;
struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE;
IL2CPP_EXTERN_C_BEGIN
IL2CPP_EXTERN_C_END
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <Module>
struct U3CModuleU3E_tCC84939A1CA389421571C5A203BEA7522E1B67AA
{
public:
public:
};
// System.Object
// System.Collections.Generic.Dictionary`2<UnityEngine.Networking.Types.NetworkID,UnityEngine.Networking.Types.NetworkAccessToken>
struct Dictionary_2_tF197FC5D732CB0BAFF2699E9BC01198A9264E0BA : public RuntimeObject
{
public:
// System.Int32[] System.Collections.Generic.Dictionary`2::buckets
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0;
// System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries
EntryU5BU5D_tEEB23D8AB9ADF6AABA3A3A5CBF802F690A1E9A56* ___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_t388F7D1BF890E52860FFD3D6816B6E70A0BE8FB3 * ___keys_7;
// System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
ValueCollection_t5B8AD7913D489FD92456CE10BF1C9F1286230961 * ___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_tF197FC5D732CB0BAFF2699E9BC01198A9264E0BA, ___buckets_0)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; }
inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
{
___buckets_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value);
}
inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_tF197FC5D732CB0BAFF2699E9BC01198A9264E0BA, ___entries_1)); }
inline EntryU5BU5D_tEEB23D8AB9ADF6AABA3A3A5CBF802F690A1E9A56* get_entries_1() const { return ___entries_1; }
inline EntryU5BU5D_tEEB23D8AB9ADF6AABA3A3A5CBF802F690A1E9A56** get_address_of_entries_1() { return &___entries_1; }
inline void set_entries_1(EntryU5BU5D_tEEB23D8AB9ADF6AABA3A3A5CBF802F690A1E9A56* value)
{
___entries_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value);
}
inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_tF197FC5D732CB0BAFF2699E9BC01198A9264E0BA, ___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_tF197FC5D732CB0BAFF2699E9BC01198A9264E0BA, ___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_tF197FC5D732CB0BAFF2699E9BC01198A9264E0BA, ___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_tF197FC5D732CB0BAFF2699E9BC01198A9264E0BA, ___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_tF197FC5D732CB0BAFF2699E9BC01198A9264E0BA, ___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((void**)(&___comparer_6), (void*)value);
}
inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_tF197FC5D732CB0BAFF2699E9BC01198A9264E0BA, ___keys_7)); }
inline KeyCollection_t388F7D1BF890E52860FFD3D6816B6E70A0BE8FB3 * get_keys_7() const { return ___keys_7; }
inline KeyCollection_t388F7D1BF890E52860FFD3D6816B6E70A0BE8FB3 ** get_address_of_keys_7() { return &___keys_7; }
inline void set_keys_7(KeyCollection_t388F7D1BF890E52860FFD3D6816B6E70A0BE8FB3 * value)
{
___keys_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value);
}
inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_tF197FC5D732CB0BAFF2699E9BC01198A9264E0BA, ___values_8)); }
inline ValueCollection_t5B8AD7913D489FD92456CE10BF1C9F1286230961 * get_values_8() const { return ___values_8; }
inline ValueCollection_t5B8AD7913D489FD92456CE10BF1C9F1286230961 ** get_address_of_values_8() { return &___values_8; }
inline void set_values_8(ValueCollection_t5B8AD7913D489FD92456CE10BF1C9F1286230961 * value)
{
___values_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_tF197FC5D732CB0BAFF2699E9BC01198A9264E0BA, ____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((void**)(&____syncRoot_9), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2<System.String,System.Int64>
struct Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 : public RuntimeObject
{
public:
// System.Int32[] System.Collections.Generic.Dictionary`2::buckets
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0;
// System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries
EntryU5BU5D_t3512009D192CEA47C4E8A6A34B872886D1B2E8BC* ___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_tB5CE2E6F5CA0C9B96D771E33A94D08BD0219E752 * ___keys_7;
// System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
ValueCollection_t321D22FD49D8380CAF73D9D203A65325003A80C8 * ___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_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9, ___buckets_0)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; }
inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
{
___buckets_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value);
}
inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9, ___entries_1)); }
inline EntryU5BU5D_t3512009D192CEA47C4E8A6A34B872886D1B2E8BC* get_entries_1() const { return ___entries_1; }
inline EntryU5BU5D_t3512009D192CEA47C4E8A6A34B872886D1B2E8BC** get_address_of_entries_1() { return &___entries_1; }
inline void set_entries_1(EntryU5BU5D_t3512009D192CEA47C4E8A6A34B872886D1B2E8BC* value)
{
___entries_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value);
}
inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9, ___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_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9, ___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_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9, ___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_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9, ___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_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9, ___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((void**)(&___comparer_6), (void*)value);
}
inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9, ___keys_7)); }
inline KeyCollection_tB5CE2E6F5CA0C9B96D771E33A94D08BD0219E752 * get_keys_7() const { return ___keys_7; }
inline KeyCollection_tB5CE2E6F5CA0C9B96D771E33A94D08BD0219E752 ** get_address_of_keys_7() { return &___keys_7; }
inline void set_keys_7(KeyCollection_tB5CE2E6F5CA0C9B96D771E33A94D08BD0219E752 * value)
{
___keys_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value);
}
inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9, ___values_8)); }
inline ValueCollection_t321D22FD49D8380CAF73D9D203A65325003A80C8 * get_values_8() const { return ___values_8; }
inline ValueCollection_t321D22FD49D8380CAF73D9D203A65325003A80C8 ** get_address_of_values_8() { return &___values_8; }
inline void set_values_8(ValueCollection_t321D22FD49D8380CAF73D9D203A65325003A80C8 * value)
{
___values_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9, ____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((void**)(&____syncRoot_9), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2<System.String,System.String>
struct Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5 : public RuntimeObject
{
public:
// System.Int32[] System.Collections.Generic.Dictionary`2::buckets
Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0;
// System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries
EntryU5BU5D_t52A654EA9927D1B5F56CA05CF209F2E4393C4510* ___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_t52C81163A051BCD87A36FEF95F736DD600E2305D * ___keys_7;
// System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
ValueCollection_t9161A5C97376D261665798FA27DAFD5177305C81 * ___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_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5, ___buckets_0)); }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; }
inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; }
inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
{
___buckets_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value);
}
inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5, ___entries_1)); }
inline EntryU5BU5D_t52A654EA9927D1B5F56CA05CF209F2E4393C4510* get_entries_1() const { return ___entries_1; }
inline EntryU5BU5D_t52A654EA9927D1B5F56CA05CF209F2E4393C4510** get_address_of_entries_1() { return &___entries_1; }
inline void set_entries_1(EntryU5BU5D_t52A654EA9927D1B5F56CA05CF209F2E4393C4510* value)
{
___entries_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value);
}
inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5, ___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_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5, ___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_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5, ___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_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5, ___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_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5, ___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((void**)(&___comparer_6), (void*)value);
}
inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5, ___keys_7)); }
inline KeyCollection_t52C81163A051BCD87A36FEF95F736DD600E2305D * get_keys_7() const { return ___keys_7; }
inline KeyCollection_t52C81163A051BCD87A36FEF95F736DD600E2305D ** get_address_of_keys_7() { return &___keys_7; }
inline void set_keys_7(KeyCollection_t52C81163A051BCD87A36FEF95F736DD600E2305D * value)
{
___keys_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value);
}
inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5, ___values_8)); }
inline ValueCollection_t9161A5C97376D261665798FA27DAFD5177305C81 * get_values_8() const { return ___values_8; }
inline ValueCollection_t9161A5C97376D261665798FA27DAFD5177305C81 ** get_address_of_values_8() { return &___values_8; }
inline void set_values_8(ValueCollection_t9161A5C97376D261665798FA27DAFD5177305C81 * value)
{
___values_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5, ____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((void**)(&____syncRoot_9), (void*)value);
}
};
// System.Collections.Generic.List`1<System.Collections.Generic.List`1<System.Byte>>
struct List_1_t74C85CD2BEE64FE69AE8BF4BAB62A4186A73655B : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
List_1U5BU5D_t75FF913D3760C42BEB7CE55D319A09963770CE05* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t74C85CD2BEE64FE69AE8BF4BAB62A4186A73655B, ____items_1)); }
inline List_1U5BU5D_t75FF913D3760C42BEB7CE55D319A09963770CE05* get__items_1() const { return ____items_1; }
inline List_1U5BU5D_t75FF913D3760C42BEB7CE55D319A09963770CE05** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(List_1U5BU5D_t75FF913D3760C42BEB7CE55D319A09963770CE05* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t74C85CD2BEE64FE69AE8BF4BAB62A4186A73655B, ____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__version_3() { return static_cast<int32_t>(offsetof(List_1_t74C85CD2BEE64FE69AE8BF4BAB62A4186A73655B, ____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__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t74C85CD2BEE64FE69AE8BF4BAB62A4186A73655B, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t74C85CD2BEE64FE69AE8BF4BAB62A4186A73655B_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
List_1U5BU5D_t75FF913D3760C42BEB7CE55D319A09963770CE05* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t74C85CD2BEE64FE69AE8BF4BAB62A4186A73655B_StaticFields, ____emptyArray_5)); }
inline List_1U5BU5D_t75FF913D3760C42BEB7CE55D319A09963770CE05* get__emptyArray_5() const { return ____emptyArray_5; }
inline List_1U5BU5D_t75FF913D3760C42BEB7CE55D319A09963770CE05** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(List_1U5BU5D_t75FF913D3760C42BEB7CE55D319A09963770CE05* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<System.Byte>
struct List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF, ____items_1)); }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get__items_1() const { return ____items_1; }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF, ____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__version_3() { return static_cast<int32_t>(offsetof(List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF, ____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__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF_StaticFields, ____emptyArray_5)); }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get__emptyArray_5() const { return ____emptyArray_5; }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.Networking.ChannelQOS>
struct List_1_t4A161C6204A381DADE144FA5F63CF0E3E7E11E33 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
ChannelQOSU5BU5D_t889380DA7AE26AC186A7E6D4A4CD6D32EB26E4E0* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t4A161C6204A381DADE144FA5F63CF0E3E7E11E33, ____items_1)); }
inline ChannelQOSU5BU5D_t889380DA7AE26AC186A7E6D4A4CD6D32EB26E4E0* get__items_1() const { return ____items_1; }
inline ChannelQOSU5BU5D_t889380DA7AE26AC186A7E6D4A4CD6D32EB26E4E0** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(ChannelQOSU5BU5D_t889380DA7AE26AC186A7E6D4A4CD6D32EB26E4E0* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t4A161C6204A381DADE144FA5F63CF0E3E7E11E33, ____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__version_3() { return static_cast<int32_t>(offsetof(List_1_t4A161C6204A381DADE144FA5F63CF0E3E7E11E33, ____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__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t4A161C6204A381DADE144FA5F63CF0E3E7E11E33, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t4A161C6204A381DADE144FA5F63CF0E3E7E11E33_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
ChannelQOSU5BU5D_t889380DA7AE26AC186A7E6D4A4CD6D32EB26E4E0* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t4A161C6204A381DADE144FA5F63CF0E3E7E11E33_StaticFields, ____emptyArray_5)); }
inline ChannelQOSU5BU5D_t889380DA7AE26AC186A7E6D4A4CD6D32EB26E4E0* get__emptyArray_5() const { return ____emptyArray_5; }
inline ChannelQOSU5BU5D_t889380DA7AE26AC186A7E6D4A4CD6D32EB26E4E0** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(ChannelQOSU5BU5D_t889380DA7AE26AC186A7E6D4A4CD6D32EB26E4E0* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.Networking.ConnectionConfig>
struct List_1_t46489AA4DB932B33C96BA58827F21F14C831C2DE : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
ConnectionConfigU5BU5D_t9F6658E7D6BA15446277AD5EEE600C32809499CB* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t46489AA4DB932B33C96BA58827F21F14C831C2DE, ____items_1)); }
inline ConnectionConfigU5BU5D_t9F6658E7D6BA15446277AD5EEE600C32809499CB* get__items_1() const { return ____items_1; }
inline ConnectionConfigU5BU5D_t9F6658E7D6BA15446277AD5EEE600C32809499CB** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(ConnectionConfigU5BU5D_t9F6658E7D6BA15446277AD5EEE600C32809499CB* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t46489AA4DB932B33C96BA58827F21F14C831C2DE, ____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__version_3() { return static_cast<int32_t>(offsetof(List_1_t46489AA4DB932B33C96BA58827F21F14C831C2DE, ____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__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t46489AA4DB932B33C96BA58827F21F14C831C2DE, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t46489AA4DB932B33C96BA58827F21F14C831C2DE_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
ConnectionConfigU5BU5D_t9F6658E7D6BA15446277AD5EEE600C32809499CB* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t46489AA4DB932B33C96BA58827F21F14C831C2DE_StaticFields, ____emptyArray_5)); }
inline ConnectionConfigU5BU5D_t9F6658E7D6BA15446277AD5EEE600C32809499CB* get__emptyArray_5() const { return ____emptyArray_5; }
inline ConnectionConfigU5BU5D_t9F6658E7D6BA15446277AD5EEE600C32809499CB** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(ConnectionConfigU5BU5D_t9F6658E7D6BA15446277AD5EEE600C32809499CB* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.Networking.Match.MatchDesc>
struct List_1_t2502ACE8E86D49AF07B92705BD60DD75F6358030 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
MatchDescU5BU5D_tF3C3822548EE8E081C81533584F2E5D92008A459* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t2502ACE8E86D49AF07B92705BD60DD75F6358030, ____items_1)); }
inline MatchDescU5BU5D_tF3C3822548EE8E081C81533584F2E5D92008A459* get__items_1() const { return ____items_1; }
inline MatchDescU5BU5D_tF3C3822548EE8E081C81533584F2E5D92008A459** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(MatchDescU5BU5D_tF3C3822548EE8E081C81533584F2E5D92008A459* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t2502ACE8E86D49AF07B92705BD60DD75F6358030, ____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__version_3() { return static_cast<int32_t>(offsetof(List_1_t2502ACE8E86D49AF07B92705BD60DD75F6358030, ____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__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t2502ACE8E86D49AF07B92705BD60DD75F6358030, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t2502ACE8E86D49AF07B92705BD60DD75F6358030_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
MatchDescU5BU5D_tF3C3822548EE8E081C81533584F2E5D92008A459* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t2502ACE8E86D49AF07B92705BD60DD75F6358030_StaticFields, ____emptyArray_5)); }
inline MatchDescU5BU5D_tF3C3822548EE8E081C81533584F2E5D92008A459* get__emptyArray_5() const { return ____emptyArray_5; }
inline MatchDescU5BU5D_tF3C3822548EE8E081C81533584F2E5D92008A459** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(MatchDescU5BU5D_tF3C3822548EE8E081C81533584F2E5D92008A459* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.Networking.Match.MatchDirectConnectInfo>
struct List_1_t634AFA3BC7CA26F185BBC2A460A21D2F89EE10FA : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
MatchDirectConnectInfoU5BU5D_t87F1AF7AE238AF31A3C2FD88B4C3C399721F26BE* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t634AFA3BC7CA26F185BBC2A460A21D2F89EE10FA, ____items_1)); }
inline MatchDirectConnectInfoU5BU5D_t87F1AF7AE238AF31A3C2FD88B4C3C399721F26BE* get__items_1() const { return ____items_1; }
inline MatchDirectConnectInfoU5BU5D_t87F1AF7AE238AF31A3C2FD88B4C3C399721F26BE** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(MatchDirectConnectInfoU5BU5D_t87F1AF7AE238AF31A3C2FD88B4C3C399721F26BE* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t634AFA3BC7CA26F185BBC2A460A21D2F89EE10FA, ____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__version_3() { return static_cast<int32_t>(offsetof(List_1_t634AFA3BC7CA26F185BBC2A460A21D2F89EE10FA, ____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__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t634AFA3BC7CA26F185BBC2A460A21D2F89EE10FA, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t634AFA3BC7CA26F185BBC2A460A21D2F89EE10FA_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
MatchDirectConnectInfoU5BU5D_t87F1AF7AE238AF31A3C2FD88B4C3C399721F26BE* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t634AFA3BC7CA26F185BBC2A460A21D2F89EE10FA_StaticFields, ____emptyArray_5)); }
inline MatchDirectConnectInfoU5BU5D_t87F1AF7AE238AF31A3C2FD88B4C3C399721F26BE* get__emptyArray_5() const { return ____emptyArray_5; }
inline MatchDirectConnectInfoU5BU5D_t87F1AF7AE238AF31A3C2FD88B4C3C399721F26BE** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(MatchDirectConnectInfoU5BU5D_t87F1AF7AE238AF31A3C2FD88B4C3C399721F26BE* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.Networking.Match.MatchInfoSnapshot>
struct List_1_t6DE630FAF3A1BE1CC9F17F3D6CBF747283858F2F : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
MatchInfoSnapshotU5BU5D_tFA710727A051E57D73977A5500738D5D4339CF95* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t6DE630FAF3A1BE1CC9F17F3D6CBF747283858F2F, ____items_1)); }
inline MatchInfoSnapshotU5BU5D_tFA710727A051E57D73977A5500738D5D4339CF95* get__items_1() const { return ____items_1; }
inline MatchInfoSnapshotU5BU5D_tFA710727A051E57D73977A5500738D5D4339CF95** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(MatchInfoSnapshotU5BU5D_tFA710727A051E57D73977A5500738D5D4339CF95* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t6DE630FAF3A1BE1CC9F17F3D6CBF747283858F2F, ____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__version_3() { return static_cast<int32_t>(offsetof(List_1_t6DE630FAF3A1BE1CC9F17F3D6CBF747283858F2F, ____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__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t6DE630FAF3A1BE1CC9F17F3D6CBF747283858F2F, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t6DE630FAF3A1BE1CC9F17F3D6CBF747283858F2F_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
MatchInfoSnapshotU5BU5D_tFA710727A051E57D73977A5500738D5D4339CF95* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t6DE630FAF3A1BE1CC9F17F3D6CBF747283858F2F_StaticFields, ____emptyArray_5)); }
inline MatchInfoSnapshotU5BU5D_tFA710727A051E57D73977A5500738D5D4339CF95* get__emptyArray_5() const { return ____emptyArray_5; }
inline MatchInfoSnapshotU5BU5D_tFA710727A051E57D73977A5500738D5D4339CF95** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(MatchInfoSnapshotU5BU5D_tFA710727A051E57D73977A5500738D5D4339CF95* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<System.Object>
struct List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____items_1)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__items_1() const { return ____items_1; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____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__version_3() { return static_cast<int32_t>(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____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__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5_StaticFields, ____emptyArray_5)); }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__emptyArray_5() const { return ____emptyArray_5; }
inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.Networking.Match.MatchInfoSnapshot/MatchInfoDirectConnectSnapshot>
struct List_1_t25DD639486662E92B4B3EF461C654CEBB4202FFC : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
MatchInfoDirectConnectSnapshotU5BU5D_t606C8C1ECB6C45150DF601BCEF11ACB5691A764A* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t25DD639486662E92B4B3EF461C654CEBB4202FFC, ____items_1)); }
inline MatchInfoDirectConnectSnapshotU5BU5D_t606C8C1ECB6C45150DF601BCEF11ACB5691A764A* get__items_1() const { return ____items_1; }
inline MatchInfoDirectConnectSnapshotU5BU5D_t606C8C1ECB6C45150DF601BCEF11ACB5691A764A** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(MatchInfoDirectConnectSnapshotU5BU5D_t606C8C1ECB6C45150DF601BCEF11ACB5691A764A* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t25DD639486662E92B4B3EF461C654CEBB4202FFC, ____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__version_3() { return static_cast<int32_t>(offsetof(List_1_t25DD639486662E92B4B3EF461C654CEBB4202FFC, ____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__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t25DD639486662E92B4B3EF461C654CEBB4202FFC, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t25DD639486662E92B4B3EF461C654CEBB4202FFC_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
MatchInfoDirectConnectSnapshotU5BU5D_t606C8C1ECB6C45150DF601BCEF11ACB5691A764A* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t25DD639486662E92B4B3EF461C654CEBB4202FFC_StaticFields, ____emptyArray_5)); }
inline MatchInfoDirectConnectSnapshotU5BU5D_t606C8C1ECB6C45150DF601BCEF11ACB5691A764A* get__emptyArray_5() const { return ____emptyArray_5; }
inline MatchInfoDirectConnectSnapshotU5BU5D_t606C8C1ECB6C45150DF601BCEF11ACB5691A764A** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(MatchInfoDirectConnectSnapshotU5BU5D_t606C8C1ECB6C45150DF601BCEF11ACB5691A764A* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.ObjectModel.ReadOnlyCollection`1<System.Byte>
struct ReadOnlyCollection_1_t88367D6A0A0435F3B7F5A180EAE18DC0323A14E7 : public RuntimeObject
{
public:
// System.Collections.Generic.IList`1<T> System.Collections.ObjectModel.ReadOnlyCollection`1::list
RuntimeObject* ___list_0;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(ReadOnlyCollection_1_t88367D6A0A0435F3B7F5A180EAE18DC0323A14E7, ___list_0)); }
inline RuntimeObject* get_list_0() const { return ___list_0; }
inline RuntimeObject** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(RuntimeObject* value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
};
// <PrivateImplementationDetails>
struct U3CPrivateImplementationDetailsU3E_tB81EF66DC95F2C9A31394EC66C970747E54559B0 : public RuntimeObject
{
public:
public:
};
struct U3CPrivateImplementationDetailsU3E_tB81EF66DC95F2C9A31394EC66C970747E54559B0_StaticFields
{
public:
// System.Int32 <PrivateImplementationDetails>::AD8DE0BDC215A2190D235D94698594B980EAE428E98B444A3C647B01175FDF43
int32_t ___AD8DE0BDC215A2190D235D94698594B980EAE428E98B444A3C647B01175FDF43_0;
public:
inline static int32_t get_offset_of_AD8DE0BDC215A2190D235D94698594B980EAE428E98B444A3C647B01175FDF43_0() { return static_cast<int32_t>(offsetof(U3CPrivateImplementationDetailsU3E_tB81EF66DC95F2C9A31394EC66C970747E54559B0_StaticFields, ___AD8DE0BDC215A2190D235D94698594B980EAE428E98B444A3C647B01175FDF43_0)); }
inline int32_t get_AD8DE0BDC215A2190D235D94698594B980EAE428E98B444A3C647B01175FDF43_0() const { return ___AD8DE0BDC215A2190D235D94698594B980EAE428E98B444A3C647B01175FDF43_0; }
inline int32_t* get_address_of_AD8DE0BDC215A2190D235D94698594B980EAE428E98B444A3C647B01175FDF43_0() { return &___AD8DE0BDC215A2190D235D94698594B980EAE428E98B444A3C647B01175FDF43_0; }
inline void set_AD8DE0BDC215A2190D235D94698594B980EAE428E98B444A3C647B01175FDF43_0(int32_t value)
{
___AD8DE0BDC215A2190D235D94698594B980EAE428E98B444A3C647B01175FDF43_0 = value;
}
};
struct Il2CppArrayBounds;
// System.Array
// UnityEngine.Networking.ConnectionSimulatorConfig
struct ConnectionSimulatorConfig_t1AE9575EDB85F7792DE5F22A4E096A4A08AEB935 : public RuntimeObject
{
public:
// System.Int32 UnityEngine.Networking.ConnectionSimulatorConfig::m_OutMinDelay
int32_t ___m_OutMinDelay_0;
// System.Int32 UnityEngine.Networking.ConnectionSimulatorConfig::m_OutAvgDelay
int32_t ___m_OutAvgDelay_1;
// System.Int32 UnityEngine.Networking.ConnectionSimulatorConfig::m_InMinDelay
int32_t ___m_InMinDelay_2;
// System.Int32 UnityEngine.Networking.ConnectionSimulatorConfig::m_InAvgDelay
int32_t ___m_InAvgDelay_3;
// System.Single UnityEngine.Networking.ConnectionSimulatorConfig::m_PacketLossPercentage
float ___m_PacketLossPercentage_4;
public:
inline static int32_t get_offset_of_m_OutMinDelay_0() { return static_cast<int32_t>(offsetof(ConnectionSimulatorConfig_t1AE9575EDB85F7792DE5F22A4E096A4A08AEB935, ___m_OutMinDelay_0)); }
inline int32_t get_m_OutMinDelay_0() const { return ___m_OutMinDelay_0; }
inline int32_t* get_address_of_m_OutMinDelay_0() { return &___m_OutMinDelay_0; }
inline void set_m_OutMinDelay_0(int32_t value)
{
___m_OutMinDelay_0 = value;
}
inline static int32_t get_offset_of_m_OutAvgDelay_1() { return static_cast<int32_t>(offsetof(ConnectionSimulatorConfig_t1AE9575EDB85F7792DE5F22A4E096A4A08AEB935, ___m_OutAvgDelay_1)); }
inline int32_t get_m_OutAvgDelay_1() const { return ___m_OutAvgDelay_1; }
inline int32_t* get_address_of_m_OutAvgDelay_1() { return &___m_OutAvgDelay_1; }
inline void set_m_OutAvgDelay_1(int32_t value)
{
___m_OutAvgDelay_1 = value;
}
inline static int32_t get_offset_of_m_InMinDelay_2() { return static_cast<int32_t>(offsetof(ConnectionSimulatorConfig_t1AE9575EDB85F7792DE5F22A4E096A4A08AEB935, ___m_InMinDelay_2)); }
inline int32_t get_m_InMinDelay_2() const { return ___m_InMinDelay_2; }
inline int32_t* get_address_of_m_InMinDelay_2() { return &___m_InMinDelay_2; }
inline void set_m_InMinDelay_2(int32_t value)
{
___m_InMinDelay_2 = value;
}
inline static int32_t get_offset_of_m_InAvgDelay_3() { return static_cast<int32_t>(offsetof(ConnectionSimulatorConfig_t1AE9575EDB85F7792DE5F22A4E096A4A08AEB935, ___m_InAvgDelay_3)); }
inline int32_t get_m_InAvgDelay_3() const { return ___m_InAvgDelay_3; }
inline int32_t* get_address_of_m_InAvgDelay_3() { return &___m_InAvgDelay_3; }
inline void set_m_InAvgDelay_3(int32_t value)
{
___m_InAvgDelay_3 = value;
}
inline static int32_t get_offset_of_m_PacketLossPercentage_4() { return static_cast<int32_t>(offsetof(ConnectionSimulatorConfig_t1AE9575EDB85F7792DE5F22A4E096A4A08AEB935, ___m_PacketLossPercentage_4)); }
inline float get_m_PacketLossPercentage_4() const { return ___m_PacketLossPercentage_4; }
inline float* get_address_of_m_PacketLossPercentage_4() { return &___m_PacketLossPercentage_4; }
inline void set_m_PacketLossPercentage_4(float value)
{
___m_PacketLossPercentage_4 = value;
}
};
// System.Net.EndPoint
struct EndPoint_t18D4AE8D03090A2B262136E59F95CE61418C34DA : public RuntimeObject
{
public:
public:
};
// UnityEngine.Networking.HostTopology
struct HostTopology_t268779309BB2D69F29D1A182662C79818813892B : public RuntimeObject
{
public:
// UnityEngine.Networking.ConnectionConfig UnityEngine.Networking.HostTopology::m_DefConfig
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * ___m_DefConfig_0;
// System.Int32 UnityEngine.Networking.HostTopology::m_MaxDefConnections
int32_t ___m_MaxDefConnections_1;
// System.Collections.Generic.List`1<UnityEngine.Networking.ConnectionConfig> UnityEngine.Networking.HostTopology::m_SpecialConnections
List_1_t46489AA4DB932B33C96BA58827F21F14C831C2DE * ___m_SpecialConnections_2;
// System.UInt16 UnityEngine.Networking.HostTopology::m_ReceivedMessagePoolSize
uint16_t ___m_ReceivedMessagePoolSize_3;
// System.UInt16 UnityEngine.Networking.HostTopology::m_SentMessagePoolSize
uint16_t ___m_SentMessagePoolSize_4;
// System.Single UnityEngine.Networking.HostTopology::m_MessagePoolSizeGrowthFactor
float ___m_MessagePoolSizeGrowthFactor_5;
public:
inline static int32_t get_offset_of_m_DefConfig_0() { return static_cast<int32_t>(offsetof(HostTopology_t268779309BB2D69F29D1A182662C79818813892B, ___m_DefConfig_0)); }
inline ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * get_m_DefConfig_0() const { return ___m_DefConfig_0; }
inline ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A ** get_address_of_m_DefConfig_0() { return &___m_DefConfig_0; }
inline void set_m_DefConfig_0(ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * value)
{
___m_DefConfig_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DefConfig_0), (void*)value);
}
inline static int32_t get_offset_of_m_MaxDefConnections_1() { return static_cast<int32_t>(offsetof(HostTopology_t268779309BB2D69F29D1A182662C79818813892B, ___m_MaxDefConnections_1)); }
inline int32_t get_m_MaxDefConnections_1() const { return ___m_MaxDefConnections_1; }
inline int32_t* get_address_of_m_MaxDefConnections_1() { return &___m_MaxDefConnections_1; }
inline void set_m_MaxDefConnections_1(int32_t value)
{
___m_MaxDefConnections_1 = value;
}
inline static int32_t get_offset_of_m_SpecialConnections_2() { return static_cast<int32_t>(offsetof(HostTopology_t268779309BB2D69F29D1A182662C79818813892B, ___m_SpecialConnections_2)); }
inline List_1_t46489AA4DB932B33C96BA58827F21F14C831C2DE * get_m_SpecialConnections_2() const { return ___m_SpecialConnections_2; }
inline List_1_t46489AA4DB932B33C96BA58827F21F14C831C2DE ** get_address_of_m_SpecialConnections_2() { return &___m_SpecialConnections_2; }
inline void set_m_SpecialConnections_2(List_1_t46489AA4DB932B33C96BA58827F21F14C831C2DE * value)
{
___m_SpecialConnections_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SpecialConnections_2), (void*)value);
}
inline static int32_t get_offset_of_m_ReceivedMessagePoolSize_3() { return static_cast<int32_t>(offsetof(HostTopology_t268779309BB2D69F29D1A182662C79818813892B, ___m_ReceivedMessagePoolSize_3)); }
inline uint16_t get_m_ReceivedMessagePoolSize_3() const { return ___m_ReceivedMessagePoolSize_3; }
inline uint16_t* get_address_of_m_ReceivedMessagePoolSize_3() { return &___m_ReceivedMessagePoolSize_3; }
inline void set_m_ReceivedMessagePoolSize_3(uint16_t value)
{
___m_ReceivedMessagePoolSize_3 = value;
}
inline static int32_t get_offset_of_m_SentMessagePoolSize_4() { return static_cast<int32_t>(offsetof(HostTopology_t268779309BB2D69F29D1A182662C79818813892B, ___m_SentMessagePoolSize_4)); }
inline uint16_t get_m_SentMessagePoolSize_4() const { return ___m_SentMessagePoolSize_4; }
inline uint16_t* get_address_of_m_SentMessagePoolSize_4() { return &___m_SentMessagePoolSize_4; }
inline void set_m_SentMessagePoolSize_4(uint16_t value)
{
___m_SentMessagePoolSize_4 = value;
}
inline static int32_t get_offset_of_m_MessagePoolSizeGrowthFactor_5() { return static_cast<int32_t>(offsetof(HostTopology_t268779309BB2D69F29D1A182662C79818813892B, ___m_MessagePoolSizeGrowthFactor_5)); }
inline float get_m_MessagePoolSizeGrowthFactor_5() const { return ___m_MessagePoolSizeGrowthFactor_5; }
inline float* get_address_of_m_MessagePoolSizeGrowthFactor_5() { return &___m_MessagePoolSizeGrowthFactor_5; }
inline void set_m_MessagePoolSizeGrowthFactor_5(float value)
{
___m_MessagePoolSizeGrowthFactor_5 = value;
}
};
// System.MarshalByRefObject
struct MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 : 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_tD4DF91B488B284F899417EC468D8E50E933306A8, ____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((void**)(&____identity_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.MarshalByRefObject
struct MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8_marshaled_pinvoke
{
Il2CppIUnknown* ____identity_0;
};
// Native definition for COM marshalling of System.MarshalByRefObject
struct MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8_marshaled_com
{
Il2CppIUnknown* ____identity_0;
};
// System.Reflection.MemberInfo
struct MemberInfo_t : public RuntimeObject
{
public:
public:
};
// UnityEngine.Networking.Types.NetworkAccessToken
struct NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481 : public RuntimeObject
{
public:
// System.Byte[] UnityEngine.Networking.Types.NetworkAccessToken::array
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___array_1;
public:
inline static int32_t get_offset_of_array_1() { return static_cast<int32_t>(offsetof(NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481, ___array_1)); }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_array_1() const { return ___array_1; }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_array_1() { return &___array_1; }
inline void set_array_1(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
{
___array_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___array_1), (void*)value);
}
};
// UnityEngine.Networking.NetworkTransport
struct NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44 : public RuntimeObject
{
public:
public:
};
struct NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44_StaticFields
{
public:
// System.Int32 UnityEngine.Networking.NetworkTransport::s_nextSceneId
int32_t ___s_nextSceneId_0;
public:
inline static int32_t get_offset_of_s_nextSceneId_0() { return static_cast<int32_t>(offsetof(NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44_StaticFields, ___s_nextSceneId_0)); }
inline int32_t get_s_nextSceneId_0() const { return ___s_nextSceneId_0; }
inline int32_t* get_address_of_s_nextSceneId_0() { return &___s_nextSceneId_0; }
inline void set_s_nextSceneId_0(int32_t value)
{
___s_nextSceneId_0 = value;
}
};
// UnityEngine.Networking.Match.Response
struct Response_tEF5C8607FB2DC4F1E0E744F3F9BAD3869B4BCD6C : public RuntimeObject
{
public:
// System.Boolean UnityEngine.Networking.Match.Response::success
bool ___success_0;
// System.String UnityEngine.Networking.Match.Response::extendedInfo
String_t* ___extendedInfo_1;
public:
inline static int32_t get_offset_of_success_0() { return static_cast<int32_t>(offsetof(Response_tEF5C8607FB2DC4F1E0E744F3F9BAD3869B4BCD6C, ___success_0)); }
inline bool get_success_0() const { return ___success_0; }
inline bool* get_address_of_success_0() { return &___success_0; }
inline void set_success_0(bool value)
{
___success_0 = value;
}
inline static int32_t get_offset_of_extendedInfo_1() { return static_cast<int32_t>(offsetof(Response_tEF5C8607FB2DC4F1E0E744F3F9BAD3869B4BCD6C, ___extendedInfo_1)); }
inline String_t* get_extendedInfo_1() const { return ___extendedInfo_1; }
inline String_t** get_address_of_extendedInfo_1() { return &___extendedInfo_1; }
inline void set_extendedInfo_1(String_t* value)
{
___extendedInfo_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___extendedInfo_1), (void*)value);
}
};
// System.Net.SocketAddress
struct SocketAddress_tE8FA33C91254662406767AF97518C235382742D3 : public RuntimeObject
{
public:
// System.Int32 System.Net.SocketAddress::m_Size
int32_t ___m_Size_0;
// System.Byte[] System.Net.SocketAddress::m_Buffer
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___m_Buffer_1;
// System.Boolean System.Net.SocketAddress::m_changed
bool ___m_changed_2;
// System.Int32 System.Net.SocketAddress::m_hash
int32_t ___m_hash_3;
public:
inline static int32_t get_offset_of_m_Size_0() { return static_cast<int32_t>(offsetof(SocketAddress_tE8FA33C91254662406767AF97518C235382742D3, ___m_Size_0)); }
inline int32_t get_m_Size_0() const { return ___m_Size_0; }
inline int32_t* get_address_of_m_Size_0() { return &___m_Size_0; }
inline void set_m_Size_0(int32_t value)
{
___m_Size_0 = value;
}
inline static int32_t get_offset_of_m_Buffer_1() { return static_cast<int32_t>(offsetof(SocketAddress_tE8FA33C91254662406767AF97518C235382742D3, ___m_Buffer_1)); }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_m_Buffer_1() const { return ___m_Buffer_1; }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_m_Buffer_1() { return &___m_Buffer_1; }
inline void set_m_Buffer_1(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
{
___m_Buffer_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Buffer_1), (void*)value);
}
inline static int32_t get_offset_of_m_changed_2() { return static_cast<int32_t>(offsetof(SocketAddress_tE8FA33C91254662406767AF97518C235382742D3, ___m_changed_2)); }
inline bool get_m_changed_2() const { return ___m_changed_2; }
inline bool* get_address_of_m_changed_2() { return &___m_changed_2; }
inline void set_m_changed_2(bool value)
{
___m_changed_2 = value;
}
inline static int32_t get_offset_of_m_hash_3() { return static_cast<int32_t>(offsetof(SocketAddress_tE8FA33C91254662406767AF97518C235382742D3, ___m_hash_3)); }
inline int32_t get_m_hash_3() const { return ___m_hash_3; }
inline int32_t* get_address_of_m_hash_3() { return &___m_hash_3; }
inline void set_m_hash_3(int32_t value)
{
___m_hash_3 = value;
}
};
// System.String
struct String_t : public RuntimeObject
{
public:
// System.Int32 System.String::m_stringLength
int32_t ___m_stringLength_0;
// System.Char System.String::m_firstChar
Il2CppChar ___m_firstChar_1;
public:
inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); }
inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; }
inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; }
inline void set_m_stringLength_0(int32_t value)
{
___m_stringLength_0 = value;
}
inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); }
inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; }
inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; }
inline void set_m_firstChar_1(Il2CppChar value)
{
___m_firstChar_1 = value;
}
};
struct String_t_StaticFields
{
public:
// System.String System.String::Empty
String_t* ___Empty_5;
public:
inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); }
inline String_t* get_Empty_5() const { return ___Empty_5; }
inline String_t** get_address_of_Empty_5() { return &___Empty_5; }
inline void set_Empty_5(String_t* value)
{
___Empty_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Empty_5), (void*)value);
}
};
// UnityEngine.Networking.Utility
struct Utility_t1BA2108022A500F65615E46E75D6A58D03F1E874 : public RuntimeObject
{
public:
public:
};
struct Utility_t1BA2108022A500F65615E46E75D6A58D03F1E874_StaticFields
{
public:
// System.Collections.Generic.Dictionary`2<UnityEngine.Networking.Types.NetworkID,UnityEngine.Networking.Types.NetworkAccessToken> UnityEngine.Networking.Utility::s_dictTokens
Dictionary_2_tF197FC5D732CB0BAFF2699E9BC01198A9264E0BA * ___s_dictTokens_0;
public:
inline static int32_t get_offset_of_s_dictTokens_0() { return static_cast<int32_t>(offsetof(Utility_t1BA2108022A500F65615E46E75D6A58D03F1E874_StaticFields, ___s_dictTokens_0)); }
inline Dictionary_2_tF197FC5D732CB0BAFF2699E9BC01198A9264E0BA * get_s_dictTokens_0() const { return ___s_dictTokens_0; }
inline Dictionary_2_tF197FC5D732CB0BAFF2699E9BC01198A9264E0BA ** get_address_of_s_dictTokens_0() { return &___s_dictTokens_0; }
inline void set_s_dictTokens_0(Dictionary_2_tF197FC5D732CB0BAFF2699E9BC01198A9264E0BA * value)
{
___s_dictTokens_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_dictTokens_0), (void*)value);
}
};
// System.ValueType
struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 : public RuntimeObject
{
public:
public:
};
// Native definition for P/Invoke marshalling of System.ValueType
struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.ValueType
struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_com
{
};
// UnityEngine.WWWForm
struct WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB : public RuntimeObject
{
public:
// System.Collections.Generic.List`1<System.Byte[]> UnityEngine.WWWForm::formData
List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE * ___formData_0;
// System.Collections.Generic.List`1<System.String> UnityEngine.WWWForm::fieldNames
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * ___fieldNames_1;
// System.Collections.Generic.List`1<System.String> UnityEngine.WWWForm::fileNames
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * ___fileNames_2;
// System.Collections.Generic.List`1<System.String> UnityEngine.WWWForm::types
List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * ___types_3;
// System.Byte[] UnityEngine.WWWForm::boundary
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___boundary_4;
// System.Boolean UnityEngine.WWWForm::containsFiles
bool ___containsFiles_5;
public:
inline static int32_t get_offset_of_formData_0() { return static_cast<int32_t>(offsetof(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB, ___formData_0)); }
inline List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE * get_formData_0() const { return ___formData_0; }
inline List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE ** get_address_of_formData_0() { return &___formData_0; }
inline void set_formData_0(List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE * value)
{
___formData_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___formData_0), (void*)value);
}
inline static int32_t get_offset_of_fieldNames_1() { return static_cast<int32_t>(offsetof(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB, ___fieldNames_1)); }
inline List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * get_fieldNames_1() const { return ___fieldNames_1; }
inline List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 ** get_address_of_fieldNames_1() { return &___fieldNames_1; }
inline void set_fieldNames_1(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * value)
{
___fieldNames_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___fieldNames_1), (void*)value);
}
inline static int32_t get_offset_of_fileNames_2() { return static_cast<int32_t>(offsetof(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB, ___fileNames_2)); }
inline List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * get_fileNames_2() const { return ___fileNames_2; }
inline List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 ** get_address_of_fileNames_2() { return &___fileNames_2; }
inline void set_fileNames_2(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * value)
{
___fileNames_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___fileNames_2), (void*)value);
}
inline static int32_t get_offset_of_types_3() { return static_cast<int32_t>(offsetof(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB, ___types_3)); }
inline List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * get_types_3() const { return ___types_3; }
inline List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 ** get_address_of_types_3() { return &___types_3; }
inline void set_types_3(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * value)
{
___types_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___types_3), (void*)value);
}
inline static int32_t get_offset_of_boundary_4() { return static_cast<int32_t>(offsetof(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB, ___boundary_4)); }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_boundary_4() const { return ___boundary_4; }
inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_boundary_4() { return &___boundary_4; }
inline void set_boundary_4(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
{
___boundary_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___boundary_4), (void*)value);
}
inline static int32_t get_offset_of_containsFiles_5() { return static_cast<int32_t>(offsetof(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB, ___containsFiles_5)); }
inline bool get_containsFiles_5() const { return ___containsFiles_5; }
inline bool* get_address_of_containsFiles_5() { return &___containsFiles_5; }
inline void set_containsFiles_5(bool value)
{
___containsFiles_5 = value;
}
};
// UnityEngine.YieldInstruction
struct YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF : public RuntimeObject
{
public:
public:
};
// Native definition for P/Invoke marshalling of UnityEngine.YieldInstruction
struct YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF_marshaled_pinvoke
{
};
// Native definition for COM marshalling of UnityEngine.YieldInstruction
struct YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF_marshaled_com
{
};
// System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.List`1<System.Byte>>
struct Enumerator_t0340BD53573C77700ED3FF138F75977DCBDF1DEE
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list
List_1_t74C85CD2BEE64FE69AE8BF4BAB62A4186A73655B * ___list_0;
// System.Int32 System.Collections.Generic.List`1/Enumerator::index
int32_t ___index_1;
// System.Int32 System.Collections.Generic.List`1/Enumerator::version
int32_t ___version_2;
// T System.Collections.Generic.List`1/Enumerator::current
List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF * ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t0340BD53573C77700ED3FF138F75977DCBDF1DEE, ___list_0)); }
inline List_1_t74C85CD2BEE64FE69AE8BF4BAB62A4186A73655B * get_list_0() const { return ___list_0; }
inline List_1_t74C85CD2BEE64FE69AE8BF4BAB62A4186A73655B ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_t74C85CD2BEE64FE69AE8BF4BAB62A4186A73655B * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t0340BD53573C77700ED3FF138F75977DCBDF1DEE, ___index_1)); }
inline int32_t get_index_1() const { return ___index_1; }
inline int32_t* get_address_of_index_1() { return &___index_1; }
inline void set_index_1(int32_t value)
{
___index_1 = value;
}
inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t0340BD53573C77700ED3FF138F75977DCBDF1DEE, ___version_2)); }
inline int32_t get_version_2() const { return ___version_2; }
inline int32_t* get_address_of_version_2() { return &___version_2; }
inline void set_version_2(int32_t value)
{
___version_2 = value;
}
inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t0340BD53573C77700ED3FF138F75977DCBDF1DEE, ___current_3)); }
inline List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF * get_current_3() const { return ___current_3; }
inline List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF ** get_address_of_current_3() { return &___current_3; }
inline void set_current_3(List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF * value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value);
}
};
// System.Collections.Generic.List`1/Enumerator<UnityEngine.Networking.ChannelQOS>
struct Enumerator_t2F8B0C9500483A43B42F26A09356CEA1E8162787
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list
List_1_t4A161C6204A381DADE144FA5F63CF0E3E7E11E33 * ___list_0;
// System.Int32 System.Collections.Generic.List`1/Enumerator::index
int32_t ___index_1;
// System.Int32 System.Collections.Generic.List`1/Enumerator::version
int32_t ___version_2;
// T System.Collections.Generic.List`1/Enumerator::current
ChannelQOS_tF55C4AC4858FAFCFBDA366C6F6B1E2B35DFFF3DE * ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t2F8B0C9500483A43B42F26A09356CEA1E8162787, ___list_0)); }
inline List_1_t4A161C6204A381DADE144FA5F63CF0E3E7E11E33 * get_list_0() const { return ___list_0; }
inline List_1_t4A161C6204A381DADE144FA5F63CF0E3E7E11E33 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_t4A161C6204A381DADE144FA5F63CF0E3E7E11E33 * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t2F8B0C9500483A43B42F26A09356CEA1E8162787, ___index_1)); }
inline int32_t get_index_1() const { return ___index_1; }
inline int32_t* get_address_of_index_1() { return &___index_1; }
inline void set_index_1(int32_t value)
{
___index_1 = value;
}
inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t2F8B0C9500483A43B42F26A09356CEA1E8162787, ___version_2)); }
inline int32_t get_version_2() const { return ___version_2; }
inline int32_t* get_address_of_version_2() { return &___version_2; }
inline void set_version_2(int32_t value)
{
___version_2 = value;
}
inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t2F8B0C9500483A43B42F26A09356CEA1E8162787, ___current_3)); }
inline ChannelQOS_tF55C4AC4858FAFCFBDA366C6F6B1E2B35DFFF3DE * get_current_3() const { return ___current_3; }
inline ChannelQOS_tF55C4AC4858FAFCFBDA366C6F6B1E2B35DFFF3DE ** get_address_of_current_3() { return &___current_3; }
inline void set_current_3(ChannelQOS_tF55C4AC4858FAFCFBDA366C6F6B1E2B35DFFF3DE * value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value);
}
};
// System.Collections.Generic.List`1/Enumerator<UnityEngine.Networking.Match.MatchDesc>
struct Enumerator_t86EF25ED3E988DA18AE99A12A25AFE07FFF02303
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list
List_1_t2502ACE8E86D49AF07B92705BD60DD75F6358030 * ___list_0;
// System.Int32 System.Collections.Generic.List`1/Enumerator::index
int32_t ___index_1;
// System.Int32 System.Collections.Generic.List`1/Enumerator::version
int32_t ___version_2;
// T System.Collections.Generic.List`1/Enumerator::current
MatchDesc_t49F2F401AE3A8B8B80EDF9838F88127727B4108B * ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t86EF25ED3E988DA18AE99A12A25AFE07FFF02303, ___list_0)); }
inline List_1_t2502ACE8E86D49AF07B92705BD60DD75F6358030 * get_list_0() const { return ___list_0; }
inline List_1_t2502ACE8E86D49AF07B92705BD60DD75F6358030 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_t2502ACE8E86D49AF07B92705BD60DD75F6358030 * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t86EF25ED3E988DA18AE99A12A25AFE07FFF02303, ___index_1)); }
inline int32_t get_index_1() const { return ___index_1; }
inline int32_t* get_address_of_index_1() { return &___index_1; }
inline void set_index_1(int32_t value)
{
___index_1 = value;
}
inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t86EF25ED3E988DA18AE99A12A25AFE07FFF02303, ___version_2)); }
inline int32_t get_version_2() const { return ___version_2; }
inline int32_t* get_address_of_version_2() { return &___version_2; }
inline void set_version_2(int32_t value)
{
___version_2 = value;
}
inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t86EF25ED3E988DA18AE99A12A25AFE07FFF02303, ___current_3)); }
inline MatchDesc_t49F2F401AE3A8B8B80EDF9838F88127727B4108B * get_current_3() const { return ___current_3; }
inline MatchDesc_t49F2F401AE3A8B8B80EDF9838F88127727B4108B ** get_address_of_current_3() { return &___current_3; }
inline void set_current_3(MatchDesc_t49F2F401AE3A8B8B80EDF9838F88127727B4108B * value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value);
}
};
// System.Collections.Generic.List`1/Enumerator<UnityEngine.Networking.Match.MatchDirectConnectInfo>
struct Enumerator_tB6D812E1E33FD08D6BB06CA775258CF6493EB5C6
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list
List_1_t634AFA3BC7CA26F185BBC2A460A21D2F89EE10FA * ___list_0;
// System.Int32 System.Collections.Generic.List`1/Enumerator::index
int32_t ___index_1;
// System.Int32 System.Collections.Generic.List`1/Enumerator::version
int32_t ___version_2;
// T System.Collections.Generic.List`1/Enumerator::current
MatchDirectConnectInfo_t79A507F1704A58987DFC695D74214C9726BF78A4 * ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_tB6D812E1E33FD08D6BB06CA775258CF6493EB5C6, ___list_0)); }
inline List_1_t634AFA3BC7CA26F185BBC2A460A21D2F89EE10FA * get_list_0() const { return ___list_0; }
inline List_1_t634AFA3BC7CA26F185BBC2A460A21D2F89EE10FA ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_t634AFA3BC7CA26F185BBC2A460A21D2F89EE10FA * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tB6D812E1E33FD08D6BB06CA775258CF6493EB5C6, ___index_1)); }
inline int32_t get_index_1() const { return ___index_1; }
inline int32_t* get_address_of_index_1() { return &___index_1; }
inline void set_index_1(int32_t value)
{
___index_1 = value;
}
inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tB6D812E1E33FD08D6BB06CA775258CF6493EB5C6, ___version_2)); }
inline int32_t get_version_2() const { return ___version_2; }
inline int32_t* get_address_of_version_2() { return &___version_2; }
inline void set_version_2(int32_t value)
{
___version_2 = value;
}
inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tB6D812E1E33FD08D6BB06CA775258CF6493EB5C6, ___current_3)); }
inline MatchDirectConnectInfo_t79A507F1704A58987DFC695D74214C9726BF78A4 * get_current_3() const { return ___current_3; }
inline MatchDirectConnectInfo_t79A507F1704A58987DFC695D74214C9726BF78A4 ** get_address_of_current_3() { return &___current_3; }
inline void set_current_3(MatchDirectConnectInfo_t79A507F1704A58987DFC695D74214C9726BF78A4 * value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value);
}
};
// System.Collections.Generic.List`1/Enumerator<System.Object>
struct Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6
{
public:
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list
List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * ___list_0;
// System.Int32 System.Collections.Generic.List`1/Enumerator::index
int32_t ___index_1;
// System.Int32 System.Collections.Generic.List`1/Enumerator::version
int32_t ___version_2;
// T System.Collections.Generic.List`1/Enumerator::current
RuntimeObject * ___current_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6, ___list_0)); }
inline List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * get_list_0() const { return ___list_0; }
inline List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6, ___index_1)); }
inline int32_t get_index_1() const { return ___index_1; }
inline int32_t* get_address_of_index_1() { return &___index_1; }
inline void set_index_1(int32_t value)
{
___index_1 = value;
}
inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6, ___version_2)); }
inline int32_t get_version_2() const { return ___version_2; }
inline int32_t* get_address_of_version_2() { return &___version_2; }
inline void set_version_2(int32_t value)
{
___version_2 = value;
}
inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6, ___current_3)); }
inline RuntimeObject * get_current_3() const { return ___current_3; }
inline RuntimeObject ** get_address_of_current_3() { return &___current_3; }
inline void set_current_3(RuntimeObject * value)
{
___current_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value);
}
};
// UnityEngine.Networking.Match.BasicResponse
struct BasicResponse_t9579CCF321F1A381924A886EC1A6496DAC3FC484 : public Response_tEF5C8607FB2DC4F1E0E744F3F9BAD3869B4BCD6C
{
public:
public:
};
// System.Boolean
struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37
{
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_t07D1E3F34E4813023D64F584DFF7B34C9D922F37, ___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_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_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_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___TrueString_5)); }
inline String_t* get_TrueString_5() const { return ___TrueString_5; }
inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; }
inline void set_TrueString_5(String_t* value)
{
___TrueString_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value);
}
inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___FalseString_6)); }
inline String_t* get_FalseString_6() const { return ___FalseString_6; }
inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; }
inline void set_FalseString_6(String_t* value)
{
___FalseString_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value);
}
};
// System.Byte
struct Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056
{
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_t0111FAB8B8685667EDDAF77683F0D8F86B659056, ___m_value_0)); }
inline uint8_t get_m_value_0() const { return ___m_value_0; }
inline uint8_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint8_t value)
{
___m_value_0 = value;
}
};
// System.Double
struct Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181
{
public:
// System.Double System.Double::m_value
double ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181, ___m_value_0)); }
inline double get_m_value_0() const { return ___m_value_0; }
inline double* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(double value)
{
___m_value_0 = value;
}
};
struct Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_StaticFields
{
public:
// System.Double System.Double::NegativeZero
double ___NegativeZero_7;
public:
inline static int32_t get_offset_of_NegativeZero_7() { return static_cast<int32_t>(offsetof(Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_StaticFields, ___NegativeZero_7)); }
inline double get_NegativeZero_7() const { return ___NegativeZero_7; }
inline double* get_address_of_NegativeZero_7() { return &___NegativeZero_7; }
inline void set_NegativeZero_7(double value)
{
___NegativeZero_7 = value;
}
};
// UnityEngine.Networking.Match.DropConnectionResponse
struct DropConnectionResponse_tBAAA11B3A813A89B8D7C481BB80E24C1C94E1F31 : public Response_tEF5C8607FB2DC4F1E0E744F3F9BAD3869B4BCD6C
{
public:
// System.UInt64 UnityEngine.Networking.Match.DropConnectionResponse::networkId
uint64_t ___networkId_2;
public:
inline static int32_t get_offset_of_networkId_2() { return static_cast<int32_t>(offsetof(DropConnectionResponse_tBAAA11B3A813A89B8D7C481BB80E24C1C94E1F31, ___networkId_2)); }
inline uint64_t get_networkId_2() const { return ___networkId_2; }
inline uint64_t* get_address_of_networkId_2() { return &___networkId_2; }
inline void set_networkId_2(uint64_t value)
{
___networkId_2 = value;
}
};
// System.Enum
struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA : public ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52
{
public:
public:
};
struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields
{
public:
// System.Char[] System.Enum::enumSeperatorCharArray
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___enumSeperatorCharArray_0;
public:
inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields, ___enumSeperatorCharArray_0)); }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; }
inline void set_enumSeperatorCharArray_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
{
___enumSeperatorCharArray_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Enum
struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.Enum
struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_com
{
};
// System.Int32
struct Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046
{
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_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046, ___m_value_0)); }
inline int32_t get_m_value_0() const { return ___m_value_0; }
inline int32_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int32_t value)
{
___m_value_0 = value;
}
};
// System.Int64
struct Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3
{
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_t378EE0D608BD3107E77238E85F30D2BBD46981F3, ___m_value_0)); }
inline int64_t get_m_value_0() const { return ___m_value_0; }
inline int64_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int64_t value)
{
___m_value_0 = value;
}
};
// System.IntPtr
struct IntPtr_t
{
public:
// System.Void* System.IntPtr::m_value
void* ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); }
inline void* get_m_value_0() const { return ___m_value_0; }
inline void** get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(void* value)
{
___m_value_0 = value;
}
};
struct IntPtr_t_StaticFields
{
public:
// System.IntPtr System.IntPtr::Zero
intptr_t ___Zero_1;
public:
inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); }
inline intptr_t get_Zero_1() const { return ___Zero_1; }
inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; }
inline void set_Zero_1(intptr_t value)
{
___Zero_1 = value;
}
};
// System.Single
struct Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E
{
public:
// System.Single System.Single::m_value
float ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E, ___m_value_0)); }
inline float get_m_value_0() const { return ___m_value_0; }
inline float* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(float value)
{
___m_value_0 = value;
}
};
// System.UInt16
struct UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD
{
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_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD, ___m_value_0)); }
inline uint16_t get_m_value_0() const { return ___m_value_0; }
inline uint16_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint16_t value)
{
___m_value_0 = value;
}
};
// System.UInt32
struct UInt32_tE60352A06233E4E69DD198BCC67142159F686B15
{
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_tE60352A06233E4E69DD198BCC67142159F686B15, ___m_value_0)); }
inline uint32_t get_m_value_0() const { return ___m_value_0; }
inline uint32_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint32_t value)
{
___m_value_0 = value;
}
};
// System.UInt64
struct UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281
{
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_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281, ___m_value_0)); }
inline uint64_t get_m_value_0() const { return ___m_value_0; }
inline uint64_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint64_t value)
{
___m_value_0 = value;
}
};
// System.Void
struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5
{
public:
union
{
struct
{
};
uint8_t Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5__padding[1];
};
public:
};
// System.Net.Sockets.AddressFamily
struct AddressFamily_tFCF4C888B95C069AB2D4720EC8C2E19453C28B33
{
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_tFCF4C888B95C069AB2D4720EC8C2E19453C28B33, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.Networking.Types.AppID
struct AppID_tAD8157F4A7CC26B6E26931C595654BA56A66C01B
{
public:
// System.UInt64 UnityEngine.Networking.Types.AppID::value__
uint64_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(AppID_tAD8157F4A7CC26B6E26931C595654BA56A66C01B, ___value___2)); }
inline uint64_t get_value___2() const { return ___value___2; }
inline uint64_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(uint64_t value)
{
___value___2 = value;
}
};
// System.Reflection.BindingFlags
struct BindingFlags_tAAAB07D9AC588F0D55D844E51D7035E96DF94733
{
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_tAAAB07D9AC588F0D55D844E51D7035E96DF94733, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.Networking.CertificateHandler
struct CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.Networking.CertificateHandler::m_Ptr
intptr_t ___m_Ptr_0;
public:
inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E, ___m_Ptr_0)); }
inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; }
inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; }
inline void set_m_Ptr_0(intptr_t value)
{
___m_Ptr_0 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Networking.CertificateHandler
struct CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E_marshaled_pinvoke
{
intptr_t ___m_Ptr_0;
};
// Native definition for COM marshalling of UnityEngine.Networking.CertificateHandler
struct CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E_marshaled_com
{
intptr_t ___m_Ptr_0;
};
// UnityEngine.Networking.ConnectionAcksType
struct ConnectionAcksType_t4F4B2573A461869C52F77783DD9C379C97A5473B
{
public:
// System.Int32 UnityEngine.Networking.ConnectionAcksType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ConnectionAcksType_t4F4B2573A461869C52F77783DD9C379C97A5473B, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.Networking.ConnectionConfigInternal
struct ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.Networking.ConnectionConfigInternal::m_Ptr
intptr_t ___m_Ptr_0;
public:
inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078, ___m_Ptr_0)); }
inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; }
inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; }
inline void set_m_Ptr_0(intptr_t value)
{
___m_Ptr_0 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Networking.ConnectionConfigInternal
struct ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078_marshaled_pinvoke
{
intptr_t ___m_Ptr_0;
};
// Native definition for COM marshalling of UnityEngine.Networking.ConnectionConfigInternal
struct ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078_marshaled_com
{
intptr_t ___m_Ptr_0;
};
// UnityEngine.Networking.ConnectionSimulatorConfigInternal
struct ConnectionSimulatorConfigInternal_tB19B4AE3F50ACB7661DC811F6198E37C08ACDB99 : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.Networking.ConnectionSimulatorConfigInternal::m_Ptr
intptr_t ___m_Ptr_0;
public:
inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(ConnectionSimulatorConfigInternal_tB19B4AE3F50ACB7661DC811F6198E37C08ACDB99, ___m_Ptr_0)); }
inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; }
inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; }
inline void set_m_Ptr_0(intptr_t value)
{
___m_Ptr_0 = value;
}
};
// UnityEngine.Coroutine
struct Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 : public YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF
{
public:
// System.IntPtr UnityEngine.Coroutine::m_Ptr
intptr_t ___m_Ptr_0;
public:
inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7, ___m_Ptr_0)); }
inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; }
inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; }
inline void set_m_Ptr_0(intptr_t value)
{
___m_Ptr_0 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Coroutine
struct Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7_marshaled_pinvoke : public YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF_marshaled_pinvoke
{
intptr_t ___m_Ptr_0;
};
// Native definition for COM marshalling of UnityEngine.Coroutine
struct Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7_marshaled_com : public YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF_marshaled_com
{
intptr_t ___m_Ptr_0;
};
// 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_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___data_9;
// System.Boolean System.Delegate::method_is_virtual
bool ___method_is_virtual_10;
public:
inline static int32_t get_offset_of_method_ptr_0() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_ptr_0)); }
inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; }
inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; }
inline void set_method_ptr_0(Il2CppMethodPointer value)
{
___method_ptr_0 = value;
}
inline static int32_t get_offset_of_invoke_impl_1() { return static_cast<int32_t>(offsetof(Delegate_t, ___invoke_impl_1)); }
inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; }
inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; }
inline void set_invoke_impl_1(intptr_t value)
{
___invoke_impl_1 = value;
}
inline static int32_t get_offset_of_m_target_2() { return static_cast<int32_t>(offsetof(Delegate_t, ___m_target_2)); }
inline RuntimeObject * get_m_target_2() const { return ___m_target_2; }
inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; }
inline void set_m_target_2(RuntimeObject * value)
{
___m_target_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_target_2), (void*)value);
}
inline static int32_t get_offset_of_method_3() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_3)); }
inline intptr_t get_method_3() const { return ___method_3; }
inline intptr_t* get_address_of_method_3() { return &___method_3; }
inline void set_method_3(intptr_t value)
{
___method_3 = value;
}
inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast<int32_t>(offsetof(Delegate_t, ___delegate_trampoline_4)); }
inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; }
inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; }
inline void set_delegate_trampoline_4(intptr_t value)
{
___delegate_trampoline_4 = value;
}
inline static int32_t get_offset_of_extra_arg_5() { return static_cast<int32_t>(offsetof(Delegate_t, ___extra_arg_5)); }
inline intptr_t get_extra_arg_5() const { return ___extra_arg_5; }
inline intptr_t* get_address_of_extra_arg_5() { return &___extra_arg_5; }
inline void set_extra_arg_5(intptr_t value)
{
___extra_arg_5 = value;
}
inline static int32_t get_offset_of_method_code_6() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_code_6)); }
inline intptr_t get_method_code_6() const { return ___method_code_6; }
inline intptr_t* get_address_of_method_code_6() { return &___method_code_6; }
inline void set_method_code_6(intptr_t value)
{
___method_code_6 = value;
}
inline static int32_t get_offset_of_method_info_7() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_info_7)); }
inline MethodInfo_t * get_method_info_7() const { return ___method_info_7; }
inline MethodInfo_t ** get_address_of_method_info_7() { return &___method_info_7; }
inline void set_method_info_7(MethodInfo_t * value)
{
___method_info_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___method_info_7), (void*)value);
}
inline static int32_t get_offset_of_original_method_info_8() { return static_cast<int32_t>(offsetof(Delegate_t, ___original_method_info_8)); }
inline MethodInfo_t * get_original_method_info_8() const { return ___original_method_info_8; }
inline MethodInfo_t ** get_address_of_original_method_info_8() { return &___original_method_info_8; }
inline void set_original_method_info_8(MethodInfo_t * value)
{
___original_method_info_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___original_method_info_8), (void*)value);
}
inline static int32_t get_offset_of_data_9() { return static_cast<int32_t>(offsetof(Delegate_t, ___data_9)); }
inline DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * get_data_9() const { return ___data_9; }
inline DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 ** get_address_of_data_9() { return &___data_9; }
inline void set_data_9(DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * value)
{
___data_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___data_9), (void*)value);
}
inline static int32_t get_offset_of_method_is_virtual_10() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_is_virtual_10)); }
inline bool get_method_is_virtual_10() const { return ___method_is_virtual_10; }
inline bool* get_address_of_method_is_virtual_10() { return &___method_is_virtual_10; }
inline void set_method_is_virtual_10(bool value)
{
___method_is_virtual_10 = value;
}
};
// Native definition for P/Invoke marshalling of System.Delegate
struct Delegate_t_marshaled_pinvoke
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
MethodInfo_t * ___method_info_7;
MethodInfo_t * ___original_method_info_8;
DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___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_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___data_9;
int32_t ___method_is_virtual_10;
};
// UnityEngine.Networking.DownloadHandler
struct DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.Networking.DownloadHandler::m_Ptr
intptr_t ___m_Ptr_0;
public:
inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB, ___m_Ptr_0)); }
inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; }
inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; }
inline void set_m_Ptr_0(intptr_t value)
{
___m_Ptr_0 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Networking.DownloadHandler
struct DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshaled_pinvoke
{
intptr_t ___m_Ptr_0;
};
// Native definition for COM marshalling of UnityEngine.Networking.DownloadHandler
struct DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshaled_com
{
intptr_t ___m_Ptr_0;
};
// 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_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13;
// System.Diagnostics.StackTrace[] System.Exception::captured_traces
StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14;
// System.IntPtr[] System.Exception::native_trace_ips
IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* ___native_trace_ips_15;
public:
inline static int32_t get_offset_of__className_1() { return static_cast<int32_t>(offsetof(Exception_t, ____className_1)); }
inline String_t* get__className_1() const { return ____className_1; }
inline String_t** get_address_of__className_1() { return &____className_1; }
inline void set__className_1(String_t* value)
{
____className_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____className_1), (void*)value);
}
inline static int32_t get_offset_of__message_2() { return static_cast<int32_t>(offsetof(Exception_t, ____message_2)); }
inline String_t* get__message_2() const { return ____message_2; }
inline String_t** get_address_of__message_2() { return &____message_2; }
inline void set__message_2(String_t* value)
{
____message_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____message_2), (void*)value);
}
inline static int32_t get_offset_of__data_3() { return static_cast<int32_t>(offsetof(Exception_t, ____data_3)); }
inline RuntimeObject* get__data_3() const { return ____data_3; }
inline RuntimeObject** get_address_of__data_3() { return &____data_3; }
inline void set__data_3(RuntimeObject* value)
{
____data_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____data_3), (void*)value);
}
inline static int32_t get_offset_of__innerException_4() { return static_cast<int32_t>(offsetof(Exception_t, ____innerException_4)); }
inline Exception_t * get__innerException_4() const { return ____innerException_4; }
inline Exception_t ** get_address_of__innerException_4() { return &____innerException_4; }
inline void set__innerException_4(Exception_t * value)
{
____innerException_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____innerException_4), (void*)value);
}
inline static int32_t get_offset_of__helpURL_5() { return static_cast<int32_t>(offsetof(Exception_t, ____helpURL_5)); }
inline String_t* get__helpURL_5() const { return ____helpURL_5; }
inline String_t** get_address_of__helpURL_5() { return &____helpURL_5; }
inline void set__helpURL_5(String_t* value)
{
____helpURL_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____helpURL_5), (void*)value);
}
inline static int32_t get_offset_of__stackTrace_6() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTrace_6)); }
inline RuntimeObject * get__stackTrace_6() const { return ____stackTrace_6; }
inline RuntimeObject ** get_address_of__stackTrace_6() { return &____stackTrace_6; }
inline void set__stackTrace_6(RuntimeObject * value)
{
____stackTrace_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____stackTrace_6), (void*)value);
}
inline static int32_t get_offset_of__stackTraceString_7() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTraceString_7)); }
inline String_t* get__stackTraceString_7() const { return ____stackTraceString_7; }
inline String_t** get_address_of__stackTraceString_7() { return &____stackTraceString_7; }
inline void set__stackTraceString_7(String_t* value)
{
____stackTraceString_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____stackTraceString_7), (void*)value);
}
inline static int32_t get_offset_of__remoteStackTraceString_8() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackTraceString_8)); }
inline String_t* get__remoteStackTraceString_8() const { return ____remoteStackTraceString_8; }
inline String_t** get_address_of__remoteStackTraceString_8() { return &____remoteStackTraceString_8; }
inline void set__remoteStackTraceString_8(String_t* value)
{
____remoteStackTraceString_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____remoteStackTraceString_8), (void*)value);
}
inline static int32_t get_offset_of__remoteStackIndex_9() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackIndex_9)); }
inline int32_t get__remoteStackIndex_9() const { return ____remoteStackIndex_9; }
inline int32_t* get_address_of__remoteStackIndex_9() { return &____remoteStackIndex_9; }
inline void set__remoteStackIndex_9(int32_t value)
{
____remoteStackIndex_9 = value;
}
inline static int32_t get_offset_of__dynamicMethods_10() { return static_cast<int32_t>(offsetof(Exception_t, ____dynamicMethods_10)); }
inline RuntimeObject * get__dynamicMethods_10() const { return ____dynamicMethods_10; }
inline RuntimeObject ** get_address_of__dynamicMethods_10() { return &____dynamicMethods_10; }
inline void set__dynamicMethods_10(RuntimeObject * value)
{
____dynamicMethods_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&____dynamicMethods_10), (void*)value);
}
inline static int32_t get_offset_of__HResult_11() { return static_cast<int32_t>(offsetof(Exception_t, ____HResult_11)); }
inline int32_t get__HResult_11() const { return ____HResult_11; }
inline int32_t* get_address_of__HResult_11() { return &____HResult_11; }
inline void set__HResult_11(int32_t value)
{
____HResult_11 = value;
}
inline static int32_t get_offset_of__source_12() { return static_cast<int32_t>(offsetof(Exception_t, ____source_12)); }
inline String_t* get__source_12() const { return ____source_12; }
inline String_t** get_address_of__source_12() { return &____source_12; }
inline void set__source_12(String_t* value)
{
____source_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____source_12), (void*)value);
}
inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast<int32_t>(offsetof(Exception_t, ____safeSerializationManager_13)); }
inline SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; }
inline SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; }
inline void set__safeSerializationManager_13(SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * value)
{
____safeSerializationManager_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&____safeSerializationManager_13), (void*)value);
}
inline static int32_t get_offset_of_captured_traces_14() { return static_cast<int32_t>(offsetof(Exception_t, ___captured_traces_14)); }
inline StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* get_captured_traces_14() const { return ___captured_traces_14; }
inline StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971** get_address_of_captured_traces_14() { return &___captured_traces_14; }
inline void set_captured_traces_14(StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* value)
{
___captured_traces_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___captured_traces_14), (void*)value);
}
inline static int32_t get_offset_of_native_trace_ips_15() { return static_cast<int32_t>(offsetof(Exception_t, ___native_trace_ips_15)); }
inline IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* get_native_trace_ips_15() const { return ___native_trace_ips_15; }
inline IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; }
inline void set_native_trace_ips_15(IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* value)
{
___native_trace_ips_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___native_trace_ips_15), (void*)value);
}
};
struct Exception_t_StaticFields
{
public:
// System.Object System.Exception::s_EDILock
RuntimeObject * ___s_EDILock_0;
public:
inline static int32_t get_offset_of_s_EDILock_0() { return static_cast<int32_t>(offsetof(Exception_t_StaticFields, ___s_EDILock_0)); }
inline RuntimeObject * get_s_EDILock_0() const { return ___s_EDILock_0; }
inline RuntimeObject ** get_address_of_s_EDILock_0() { return &___s_EDILock_0; }
inline void set_s_EDILock_0(RuntimeObject * value)
{
___s_EDILock_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_EDILock_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Exception
struct Exception_t_marshaled_pinvoke
{
char* ____className_1;
char* ____message_2;
RuntimeObject* ____data_3;
Exception_t_marshaled_pinvoke* ____innerException_4;
char* ____helpURL_5;
Il2CppIUnknown* ____stackTrace_6;
char* ____stackTraceString_7;
char* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
Il2CppIUnknown* ____dynamicMethods_10;
int32_t ____HResult_11;
char* ____source_12;
SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13;
StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14;
Il2CppSafeArray/*NONE*/* ___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_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13;
StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14;
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
};
// UnityEngine.Networking.GlobalConfigInternal
struct GlobalConfigInternal_t0F07F384FD03D7CE842BC781D7C747B5579F680F : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.Networking.GlobalConfigInternal::m_Ptr
intptr_t ___m_Ptr_0;
public:
inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(GlobalConfigInternal_t0F07F384FD03D7CE842BC781D7C747B5579F680F, ___m_Ptr_0)); }
inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; }
inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; }
inline void set_m_Ptr_0(intptr_t value)
{
___m_Ptr_0 = value;
}
};
// UnityEngine.Networking.Types.HostPriority
struct HostPriority_tA55AD7007516BAA3ADFF8CDC72576479ACA864A0
{
public:
// System.Int32 UnityEngine.Networking.Types.HostPriority::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(HostPriority_tA55AD7007516BAA3ADFF8CDC72576479ACA864A0, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.Networking.HostTopologyInternal
struct HostTopologyInternal_tA95C0259BC91D8E3D227BAF3D4F7CEE5C5331E10 : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.Networking.HostTopologyInternal::m_Ptr
intptr_t ___m_Ptr_0;
public:
inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(HostTopologyInternal_tA95C0259BC91D8E3D227BAF3D4F7CEE5C5331E10, ___m_Ptr_0)); }
inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; }
inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; }
inline void set_m_Ptr_0(intptr_t value)
{
___m_Ptr_0 = value;
}
};
// UnityEngine.Networking.Match.ListMatchResponse
struct ListMatchResponse_tA778241617E0B4AF172DE6201E27F64EA6670900 : public BasicResponse_t9579CCF321F1A381924A886EC1A6496DAC3FC484
{
public:
// System.Collections.Generic.List`1<UnityEngine.Networking.Match.MatchDesc> UnityEngine.Networking.Match.ListMatchResponse::matches
List_1_t2502ACE8E86D49AF07B92705BD60DD75F6358030 * ___matches_2;
public:
inline static int32_t get_offset_of_matches_2() { return static_cast<int32_t>(offsetof(ListMatchResponse_tA778241617E0B4AF172DE6201E27F64EA6670900, ___matches_2)); }
inline List_1_t2502ACE8E86D49AF07B92705BD60DD75F6358030 * get_matches_2() const { return ___matches_2; }
inline List_1_t2502ACE8E86D49AF07B92705BD60DD75F6358030 ** get_address_of_matches_2() { return &___matches_2; }
inline void set_matches_2(List_1_t2502ACE8E86D49AF07B92705BD60DD75F6358030 * value)
{
___matches_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___matches_2), (void*)value);
}
};
// UnityEngine.Networking.NetworkError
struct NetworkError_t55031A243A0FD02F80E44FC25FFC9B7BD6F60DE9
{
public:
// System.Int32 UnityEngine.Networking.NetworkError::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(NetworkError_t55031A243A0FD02F80E44FC25FFC9B7BD6F60DE9, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.Networking.NetworkEventType
struct NetworkEventType_t145BD45D629C9B92E4172F8728C2639A9198A1A0
{
public:
// System.Int32 UnityEngine.Networking.NetworkEventType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(NetworkEventType_t145BD45D629C9B92E4172F8728C2639A9198A1A0, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.Networking.Types.NetworkID
struct NetworkID_tA7160DE9FBEE6E236564AEA6C328B6180FC368C3
{
public:
// System.UInt64 UnityEngine.Networking.Types.NetworkID::value__
uint64_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(NetworkID_tA7160DE9FBEE6E236564AEA6C328B6180FC368C3, ___value___2)); }
inline uint64_t get_value___2() const { return ___value___2; }
inline uint64_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(uint64_t value)
{
___value___2 = value;
}
};
// UnityEngine.Networking.Types.NodeID
struct NodeID_t07417F7D8D30332570E9D4A123D9E8B7CA1D1E80
{
public:
// System.UInt16 UnityEngine.Networking.Types.NodeID::value__
uint16_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(NodeID_t07417F7D8D30332570E9D4A123D9E8B7CA1D1E80, ___value___2)); }
inline uint16_t get_value___2() const { return ___value___2; }
inline uint16_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(uint16_t value)
{
___value___2 = value;
}
};
// UnityEngine.Object
struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.Object::m_CachedPtr
intptr_t ___m_CachedPtr_0;
public:
inline static int32_t get_offset_of_m_CachedPtr_0() { return static_cast<int32_t>(offsetof(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A, ___m_CachedPtr_0)); }
inline intptr_t get_m_CachedPtr_0() const { return ___m_CachedPtr_0; }
inline intptr_t* get_address_of_m_CachedPtr_0() { return &___m_CachedPtr_0; }
inline void set_m_CachedPtr_0(intptr_t value)
{
___m_CachedPtr_0 = value;
}
};
struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_StaticFields
{
public:
// System.Int32 UnityEngine.Object::OffsetOfInstanceIDInCPlusPlusObject
int32_t ___OffsetOfInstanceIDInCPlusPlusObject_1;
public:
inline static int32_t get_offset_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return static_cast<int32_t>(offsetof(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_StaticFields, ___OffsetOfInstanceIDInCPlusPlusObject_1)); }
inline int32_t get_OffsetOfInstanceIDInCPlusPlusObject_1() const { return ___OffsetOfInstanceIDInCPlusPlusObject_1; }
inline int32_t* get_address_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return &___OffsetOfInstanceIDInCPlusPlusObject_1; }
inline void set_OffsetOfInstanceIDInCPlusPlusObject_1(int32_t value)
{
___OffsetOfInstanceIDInCPlusPlusObject_1 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Object
struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_marshaled_pinvoke
{
intptr_t ___m_CachedPtr_0;
};
// Native definition for COM marshalling of UnityEngine.Object
struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_marshaled_com
{
intptr_t ___m_CachedPtr_0;
};
// UnityEngine.Networking.QosType
struct QosType_tAD0DC2835CF976743FCBBFDD0B4BC1B6392A2293
{
public:
// System.Int32 UnityEngine.Networking.QosType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(QosType_tAD0DC2835CF976743FCBBFDD0B4BC1B6392A2293, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.Networking.ReactorModel
struct ReactorModel_tA949EB04FA3D4C0920C729636C7CD64D4A84A141
{
public:
// System.Int32 UnityEngine.Networking.ReactorModel::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ReactorModel_tA949EB04FA3D4C0920C729636C7CD64D4A84A141, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.RuntimeFieldHandle
struct RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96
{
public:
// System.IntPtr System.RuntimeFieldHandle::value
intptr_t ___value_0;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96, ___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;
}
};
// UnityEngine.RuntimePlatform
struct RuntimePlatform_tB8798C800FD9810C0FE2B7D2F2A0A3979D239065
{
public:
// System.Int32 UnityEngine.RuntimePlatform::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(RuntimePlatform_tB8798C800FD9810C0FE2B7D2F2A0A3979D239065, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.RuntimeTypeHandle
struct RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9
{
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_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9, ___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;
}
};
// UnityEngine.Networking.Types.SourceID
struct SourceID_tBE00015EA0F2E5DAEBEC7D0210216A18EB6DA62D
{
public:
// System.UInt64 UnityEngine.Networking.Types.SourceID::value__
uint64_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(SourceID_tBE00015EA0F2E5DAEBEC7D0210216A18EB6DA62D, ___value___2)); }
inline uint64_t get_value___2() const { return ___value___2; }
inline uint64_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(uint64_t value)
{
___value___2 = value;
}
};
// System.TimeSpan
struct TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203
{
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_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203, ____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_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields
{
public:
// System.TimeSpan System.TimeSpan::Zero
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___Zero_0;
// System.TimeSpan System.TimeSpan::MaxValue
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___MaxValue_1;
// System.TimeSpan System.TimeSpan::MinValue
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___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_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ___Zero_0)); }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_Zero_0() const { return ___Zero_0; }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_Zero_0() { return &___Zero_0; }
inline void set_Zero_0(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
{
___Zero_0 = value;
}
inline static int32_t get_offset_of_MaxValue_1() { return static_cast<int32_t>(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ___MaxValue_1)); }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_MaxValue_1() const { return ___MaxValue_1; }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_MaxValue_1() { return &___MaxValue_1; }
inline void set_MaxValue_1(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
{
___MaxValue_1 = value;
}
inline static int32_t get_offset_of_MinValue_2() { return static_cast<int32_t>(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ___MinValue_2)); }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_MinValue_2() const { return ___MinValue_2; }
inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_MinValue_2() { return &___MinValue_2; }
inline void set_MinValue_2(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
{
___MinValue_2 = value;
}
inline static int32_t get_offset_of__legacyConfigChecked_4() { return static_cast<int32_t>(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_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_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ____legacyMode_5)); }
inline bool get__legacyMode_5() const { return ____legacyMode_5; }
inline bool* get_address_of__legacyMode_5() { return &____legacyMode_5; }
inline void set__legacyMode_5(bool value)
{
____legacyMode_5 = value;
}
};
// System.UInt64Enum
struct UInt64Enum_t94236D49DD46DDA5B4234598664C266AA8E89C6E
{
public:
// System.UInt64 System.UInt64Enum::value__
uint64_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UInt64Enum_t94236D49DD46DDA5B4234598664C266AA8E89C6E, ___value___2)); }
inline uint64_t get_value___2() const { return ___value___2; }
inline uint64_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(uint64_t value)
{
___value___2 = value;
}
};
// UnityEngine.Networking.UploadHandler
struct UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.Networking.UploadHandler::m_Ptr
intptr_t ___m_Ptr_0;
public:
inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA, ___m_Ptr_0)); }
inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; }
inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; }
inline void set_m_Ptr_0(intptr_t value)
{
___m_Ptr_0 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Networking.UploadHandler
struct UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA_marshaled_pinvoke
{
intptr_t ___m_Ptr_0;
};
// Native definition for COM marshalling of UnityEngine.Networking.UploadHandler
struct UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA_marshaled_com
{
intptr_t ___m_Ptr_0;
};
// System.UriFormat
struct UriFormat_t25C936463BDE737B16A8EC3DA05091FC31F1A71F
{
public:
// System.Int32 System.UriFormat::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UriFormat_t25C936463BDE737B16A8EC3DA05091FC31F1A71F, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.UriIdnScope
struct UriIdnScope_tBA22B992BA582F68F2B98CDEBCB24299F249DE4D
{
public:
// System.Int32 System.UriIdnScope::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UriIdnScope_tBA22B992BA582F68F2B98CDEBCB24299F249DE4D, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.UriKind
struct UriKind_tFC16ACC1842283AAE2C7F50C9C70EFBF6550B3FC
{
public:
// System.Int32 System.UriKind::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UriKind_tFC16ACC1842283AAE2C7F50C9C70EFBF6550B3FC, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Threading.WaitHandle
struct WaitHandle_t1D7DD8480FD5DA4E3AF92F569890FB972D9B1842 : public MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8
{
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_tF37EACEDF9C6F350EB4ABC1E1F869EECB0B5ABB1 * ___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_t1D7DD8480FD5DA4E3AF92F569890FB972D9B1842, ___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_t1D7DD8480FD5DA4E3AF92F569890FB972D9B1842, ___safeWaitHandle_4)); }
inline SafeWaitHandle_tF37EACEDF9C6F350EB4ABC1E1F869EECB0B5ABB1 * get_safeWaitHandle_4() const { return ___safeWaitHandle_4; }
inline SafeWaitHandle_tF37EACEDF9C6F350EB4ABC1E1F869EECB0B5ABB1 ** get_address_of_safeWaitHandle_4() { return &___safeWaitHandle_4; }
inline void set_safeWaitHandle_4(SafeWaitHandle_tF37EACEDF9C6F350EB4ABC1E1F869EECB0B5ABB1 * value)
{
___safeWaitHandle_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___safeWaitHandle_4), (void*)value);
}
inline static int32_t get_offset_of_hasThreadAffinity_5() { return static_cast<int32_t>(offsetof(WaitHandle_t1D7DD8480FD5DA4E3AF92F569890FB972D9B1842, ___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_t1D7DD8480FD5DA4E3AF92F569890FB972D9B1842_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_t1D7DD8480FD5DA4E3AF92F569890FB972D9B1842_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;
}
};
// Native definition for P/Invoke marshalling of System.Threading.WaitHandle
struct WaitHandle_t1D7DD8480FD5DA4E3AF92F569890FB972D9B1842_marshaled_pinvoke : public MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8_marshaled_pinvoke
{
intptr_t ___waitHandle_3;
void* ___safeWaitHandle_4;
int32_t ___hasThreadAffinity_5;
};
// Native definition for COM marshalling of System.Threading.WaitHandle
struct WaitHandle_t1D7DD8480FD5DA4E3AF92F569890FB972D9B1842_marshaled_com : public MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8_marshaled_com
{
intptr_t ___waitHandle_3;
void* ___safeWaitHandle_4;
int32_t ___hasThreadAffinity_5;
};
// System.Uri/Flags
struct Flags_t72C622DF5C3ED762F55AB36EC2CCDDF3AF56B8D4
{
public:
// System.UInt64 System.Uri/Flags::value__
uint64_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Flags_t72C622DF5C3ED762F55AB36EC2CCDDF3AF56B8D4, ___value___2)); }
inline uint64_t get_value___2() const { return ___value___2; }
inline uint64_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(uint64_t value)
{
___value___2 = value;
}
};
// UnityEngine.Networking.ChannelQOS
struct ChannelQOS_tF55C4AC4858FAFCFBDA366C6F6B1E2B35DFFF3DE : public RuntimeObject
{
public:
// UnityEngine.Networking.QosType UnityEngine.Networking.ChannelQOS::m_Type
int32_t ___m_Type_0;
// System.Boolean UnityEngine.Networking.ChannelQOS::m_BelongsSharedOrderChannel
bool ___m_BelongsSharedOrderChannel_1;
public:
inline static int32_t get_offset_of_m_Type_0() { return static_cast<int32_t>(offsetof(ChannelQOS_tF55C4AC4858FAFCFBDA366C6F6B1E2B35DFFF3DE, ___m_Type_0)); }
inline int32_t get_m_Type_0() const { return ___m_Type_0; }
inline int32_t* get_address_of_m_Type_0() { return &___m_Type_0; }
inline void set_m_Type_0(int32_t value)
{
___m_Type_0 = value;
}
inline static int32_t get_offset_of_m_BelongsSharedOrderChannel_1() { return static_cast<int32_t>(offsetof(ChannelQOS_tF55C4AC4858FAFCFBDA366C6F6B1E2B35DFFF3DE, ___m_BelongsSharedOrderChannel_1)); }
inline bool get_m_BelongsSharedOrderChannel_1() const { return ___m_BelongsSharedOrderChannel_1; }
inline bool* get_address_of_m_BelongsSharedOrderChannel_1() { return &___m_BelongsSharedOrderChannel_1; }
inline void set_m_BelongsSharedOrderChannel_1(bool value)
{
___m_BelongsSharedOrderChannel_1 = value;
}
};
// UnityEngine.Component
struct Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A
{
public:
public:
};
// UnityEngine.Networking.ConnectionConfig
struct ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A : public RuntimeObject
{
public:
// System.UInt16 UnityEngine.Networking.ConnectionConfig::m_PacketSize
uint16_t ___m_PacketSize_1;
// System.UInt16 UnityEngine.Networking.ConnectionConfig::m_FragmentSize
uint16_t ___m_FragmentSize_2;
// System.UInt32 UnityEngine.Networking.ConnectionConfig::m_ResendTimeout
uint32_t ___m_ResendTimeout_3;
// System.UInt32 UnityEngine.Networking.ConnectionConfig::m_DisconnectTimeout
uint32_t ___m_DisconnectTimeout_4;
// System.UInt32 UnityEngine.Networking.ConnectionConfig::m_ConnectTimeout
uint32_t ___m_ConnectTimeout_5;
// System.UInt32 UnityEngine.Networking.ConnectionConfig::m_MinUpdateTimeout
uint32_t ___m_MinUpdateTimeout_6;
// System.UInt32 UnityEngine.Networking.ConnectionConfig::m_PingTimeout
uint32_t ___m_PingTimeout_7;
// System.UInt32 UnityEngine.Networking.ConnectionConfig::m_ReducedPingTimeout
uint32_t ___m_ReducedPingTimeout_8;
// System.UInt32 UnityEngine.Networking.ConnectionConfig::m_AllCostTimeout
uint32_t ___m_AllCostTimeout_9;
// System.Byte UnityEngine.Networking.ConnectionConfig::m_NetworkDropThreshold
uint8_t ___m_NetworkDropThreshold_10;
// System.Byte UnityEngine.Networking.ConnectionConfig::m_OverflowDropThreshold
uint8_t ___m_OverflowDropThreshold_11;
// System.Byte UnityEngine.Networking.ConnectionConfig::m_MaxConnectionAttempt
uint8_t ___m_MaxConnectionAttempt_12;
// System.UInt32 UnityEngine.Networking.ConnectionConfig::m_AckDelay
uint32_t ___m_AckDelay_13;
// System.UInt32 UnityEngine.Networking.ConnectionConfig::m_SendDelay
uint32_t ___m_SendDelay_14;
// System.UInt16 UnityEngine.Networking.ConnectionConfig::m_MaxCombinedReliableMessageSize
uint16_t ___m_MaxCombinedReliableMessageSize_15;
// System.UInt16 UnityEngine.Networking.ConnectionConfig::m_MaxCombinedReliableMessageCount
uint16_t ___m_MaxCombinedReliableMessageCount_16;
// System.UInt16 UnityEngine.Networking.ConnectionConfig::m_MaxSentMessageQueueSize
uint16_t ___m_MaxSentMessageQueueSize_17;
// UnityEngine.Networking.ConnectionAcksType UnityEngine.Networking.ConnectionConfig::m_AcksType
int32_t ___m_AcksType_18;
// System.Boolean UnityEngine.Networking.ConnectionConfig::m_UsePlatformSpecificProtocols
bool ___m_UsePlatformSpecificProtocols_19;
// System.UInt32 UnityEngine.Networking.ConnectionConfig::m_InitialBandwidth
uint32_t ___m_InitialBandwidth_20;
// System.Single UnityEngine.Networking.ConnectionConfig::m_BandwidthPeakFactor
float ___m_BandwidthPeakFactor_21;
// System.UInt16 UnityEngine.Networking.ConnectionConfig::m_WebSocketReceiveBufferMaxSize
uint16_t ___m_WebSocketReceiveBufferMaxSize_22;
// System.UInt32 UnityEngine.Networking.ConnectionConfig::m_UdpSocketReceiveBufferMaxSize
uint32_t ___m_UdpSocketReceiveBufferMaxSize_23;
// System.String UnityEngine.Networking.ConnectionConfig::m_SSLCertFilePath
String_t* ___m_SSLCertFilePath_24;
// System.String UnityEngine.Networking.ConnectionConfig::m_SSLPrivateKeyFilePath
String_t* ___m_SSLPrivateKeyFilePath_25;
// System.String UnityEngine.Networking.ConnectionConfig::m_SSLCAFilePath
String_t* ___m_SSLCAFilePath_26;
// System.Collections.Generic.List`1<UnityEngine.Networking.ChannelQOS> UnityEngine.Networking.ConnectionConfig::m_Channels
List_1_t4A161C6204A381DADE144FA5F63CF0E3E7E11E33 * ___m_Channels_27;
// System.Collections.Generic.List`1<System.Collections.Generic.List`1<System.Byte>> UnityEngine.Networking.ConnectionConfig::m_SharedOrderChannels
List_1_t74C85CD2BEE64FE69AE8BF4BAB62A4186A73655B * ___m_SharedOrderChannels_28;
public:
inline static int32_t get_offset_of_m_PacketSize_1() { return static_cast<int32_t>(offsetof(ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A, ___m_PacketSize_1)); }
inline uint16_t get_m_PacketSize_1() const { return ___m_PacketSize_1; }
inline uint16_t* get_address_of_m_PacketSize_1() { return &___m_PacketSize_1; }
inline void set_m_PacketSize_1(uint16_t value)
{
___m_PacketSize_1 = value;
}
inline static int32_t get_offset_of_m_FragmentSize_2() { return static_cast<int32_t>(offsetof(ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A, ___m_FragmentSize_2)); }
inline uint16_t get_m_FragmentSize_2() const { return ___m_FragmentSize_2; }
inline uint16_t* get_address_of_m_FragmentSize_2() { return &___m_FragmentSize_2; }
inline void set_m_FragmentSize_2(uint16_t value)
{
___m_FragmentSize_2 = value;
}
inline static int32_t get_offset_of_m_ResendTimeout_3() { return static_cast<int32_t>(offsetof(ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A, ___m_ResendTimeout_3)); }
inline uint32_t get_m_ResendTimeout_3() const { return ___m_ResendTimeout_3; }
inline uint32_t* get_address_of_m_ResendTimeout_3() { return &___m_ResendTimeout_3; }
inline void set_m_ResendTimeout_3(uint32_t value)
{
___m_ResendTimeout_3 = value;
}
inline static int32_t get_offset_of_m_DisconnectTimeout_4() { return static_cast<int32_t>(offsetof(ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A, ___m_DisconnectTimeout_4)); }
inline uint32_t get_m_DisconnectTimeout_4() const { return ___m_DisconnectTimeout_4; }
inline uint32_t* get_address_of_m_DisconnectTimeout_4() { return &___m_DisconnectTimeout_4; }
inline void set_m_DisconnectTimeout_4(uint32_t value)
{
___m_DisconnectTimeout_4 = value;
}
inline static int32_t get_offset_of_m_ConnectTimeout_5() { return static_cast<int32_t>(offsetof(ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A, ___m_ConnectTimeout_5)); }
inline uint32_t get_m_ConnectTimeout_5() const { return ___m_ConnectTimeout_5; }
inline uint32_t* get_address_of_m_ConnectTimeout_5() { return &___m_ConnectTimeout_5; }
inline void set_m_ConnectTimeout_5(uint32_t value)
{
___m_ConnectTimeout_5 = value;
}
inline static int32_t get_offset_of_m_MinUpdateTimeout_6() { return static_cast<int32_t>(offsetof(ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A, ___m_MinUpdateTimeout_6)); }
inline uint32_t get_m_MinUpdateTimeout_6() const { return ___m_MinUpdateTimeout_6; }
inline uint32_t* get_address_of_m_MinUpdateTimeout_6() { return &___m_MinUpdateTimeout_6; }
inline void set_m_MinUpdateTimeout_6(uint32_t value)
{
___m_MinUpdateTimeout_6 = value;
}
inline static int32_t get_offset_of_m_PingTimeout_7() { return static_cast<int32_t>(offsetof(ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A, ___m_PingTimeout_7)); }
inline uint32_t get_m_PingTimeout_7() const { return ___m_PingTimeout_7; }
inline uint32_t* get_address_of_m_PingTimeout_7() { return &___m_PingTimeout_7; }
inline void set_m_PingTimeout_7(uint32_t value)
{
___m_PingTimeout_7 = value;
}
inline static int32_t get_offset_of_m_ReducedPingTimeout_8() { return static_cast<int32_t>(offsetof(ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A, ___m_ReducedPingTimeout_8)); }
inline uint32_t get_m_ReducedPingTimeout_8() const { return ___m_ReducedPingTimeout_8; }
inline uint32_t* get_address_of_m_ReducedPingTimeout_8() { return &___m_ReducedPingTimeout_8; }
inline void set_m_ReducedPingTimeout_8(uint32_t value)
{
___m_ReducedPingTimeout_8 = value;
}
inline static int32_t get_offset_of_m_AllCostTimeout_9() { return static_cast<int32_t>(offsetof(ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A, ___m_AllCostTimeout_9)); }
inline uint32_t get_m_AllCostTimeout_9() const { return ___m_AllCostTimeout_9; }
inline uint32_t* get_address_of_m_AllCostTimeout_9() { return &___m_AllCostTimeout_9; }
inline void set_m_AllCostTimeout_9(uint32_t value)
{
___m_AllCostTimeout_9 = value;
}
inline static int32_t get_offset_of_m_NetworkDropThreshold_10() { return static_cast<int32_t>(offsetof(ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A, ___m_NetworkDropThreshold_10)); }
inline uint8_t get_m_NetworkDropThreshold_10() const { return ___m_NetworkDropThreshold_10; }
inline uint8_t* get_address_of_m_NetworkDropThreshold_10() { return &___m_NetworkDropThreshold_10; }
inline void set_m_NetworkDropThreshold_10(uint8_t value)
{
___m_NetworkDropThreshold_10 = value;
}
inline static int32_t get_offset_of_m_OverflowDropThreshold_11() { return static_cast<int32_t>(offsetof(ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A, ___m_OverflowDropThreshold_11)); }
inline uint8_t get_m_OverflowDropThreshold_11() const { return ___m_OverflowDropThreshold_11; }
inline uint8_t* get_address_of_m_OverflowDropThreshold_11() { return &___m_OverflowDropThreshold_11; }
inline void set_m_OverflowDropThreshold_11(uint8_t value)
{
___m_OverflowDropThreshold_11 = value;
}
inline static int32_t get_offset_of_m_MaxConnectionAttempt_12() { return static_cast<int32_t>(offsetof(ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A, ___m_MaxConnectionAttempt_12)); }
inline uint8_t get_m_MaxConnectionAttempt_12() const { return ___m_MaxConnectionAttempt_12; }
inline uint8_t* get_address_of_m_MaxConnectionAttempt_12() { return &___m_MaxConnectionAttempt_12; }
inline void set_m_MaxConnectionAttempt_12(uint8_t value)
{
___m_MaxConnectionAttempt_12 = value;
}
inline static int32_t get_offset_of_m_AckDelay_13() { return static_cast<int32_t>(offsetof(ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A, ___m_AckDelay_13)); }
inline uint32_t get_m_AckDelay_13() const { return ___m_AckDelay_13; }
inline uint32_t* get_address_of_m_AckDelay_13() { return &___m_AckDelay_13; }
inline void set_m_AckDelay_13(uint32_t value)
{
___m_AckDelay_13 = value;
}
inline static int32_t get_offset_of_m_SendDelay_14() { return static_cast<int32_t>(offsetof(ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A, ___m_SendDelay_14)); }
inline uint32_t get_m_SendDelay_14() const { return ___m_SendDelay_14; }
inline uint32_t* get_address_of_m_SendDelay_14() { return &___m_SendDelay_14; }
inline void set_m_SendDelay_14(uint32_t value)
{
___m_SendDelay_14 = value;
}
inline static int32_t get_offset_of_m_MaxCombinedReliableMessageSize_15() { return static_cast<int32_t>(offsetof(ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A, ___m_MaxCombinedReliableMessageSize_15)); }
inline uint16_t get_m_MaxCombinedReliableMessageSize_15() const { return ___m_MaxCombinedReliableMessageSize_15; }
inline uint16_t* get_address_of_m_MaxCombinedReliableMessageSize_15() { return &___m_MaxCombinedReliableMessageSize_15; }
inline void set_m_MaxCombinedReliableMessageSize_15(uint16_t value)
{
___m_MaxCombinedReliableMessageSize_15 = value;
}
inline static int32_t get_offset_of_m_MaxCombinedReliableMessageCount_16() { return static_cast<int32_t>(offsetof(ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A, ___m_MaxCombinedReliableMessageCount_16)); }
inline uint16_t get_m_MaxCombinedReliableMessageCount_16() const { return ___m_MaxCombinedReliableMessageCount_16; }
inline uint16_t* get_address_of_m_MaxCombinedReliableMessageCount_16() { return &___m_MaxCombinedReliableMessageCount_16; }
inline void set_m_MaxCombinedReliableMessageCount_16(uint16_t value)
{
___m_MaxCombinedReliableMessageCount_16 = value;
}
inline static int32_t get_offset_of_m_MaxSentMessageQueueSize_17() { return static_cast<int32_t>(offsetof(ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A, ___m_MaxSentMessageQueueSize_17)); }
inline uint16_t get_m_MaxSentMessageQueueSize_17() const { return ___m_MaxSentMessageQueueSize_17; }
inline uint16_t* get_address_of_m_MaxSentMessageQueueSize_17() { return &___m_MaxSentMessageQueueSize_17; }
inline void set_m_MaxSentMessageQueueSize_17(uint16_t value)
{
___m_MaxSentMessageQueueSize_17 = value;
}
inline static int32_t get_offset_of_m_AcksType_18() { return static_cast<int32_t>(offsetof(ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A, ___m_AcksType_18)); }
inline int32_t get_m_AcksType_18() const { return ___m_AcksType_18; }
inline int32_t* get_address_of_m_AcksType_18() { return &___m_AcksType_18; }
inline void set_m_AcksType_18(int32_t value)
{
___m_AcksType_18 = value;
}
inline static int32_t get_offset_of_m_UsePlatformSpecificProtocols_19() { return static_cast<int32_t>(offsetof(ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A, ___m_UsePlatformSpecificProtocols_19)); }
inline bool get_m_UsePlatformSpecificProtocols_19() const { return ___m_UsePlatformSpecificProtocols_19; }
inline bool* get_address_of_m_UsePlatformSpecificProtocols_19() { return &___m_UsePlatformSpecificProtocols_19; }
inline void set_m_UsePlatformSpecificProtocols_19(bool value)
{
___m_UsePlatformSpecificProtocols_19 = value;
}
inline static int32_t get_offset_of_m_InitialBandwidth_20() { return static_cast<int32_t>(offsetof(ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A, ___m_InitialBandwidth_20)); }
inline uint32_t get_m_InitialBandwidth_20() const { return ___m_InitialBandwidth_20; }
inline uint32_t* get_address_of_m_InitialBandwidth_20() { return &___m_InitialBandwidth_20; }
inline void set_m_InitialBandwidth_20(uint32_t value)
{
___m_InitialBandwidth_20 = value;
}
inline static int32_t get_offset_of_m_BandwidthPeakFactor_21() { return static_cast<int32_t>(offsetof(ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A, ___m_BandwidthPeakFactor_21)); }
inline float get_m_BandwidthPeakFactor_21() const { return ___m_BandwidthPeakFactor_21; }
inline float* get_address_of_m_BandwidthPeakFactor_21() { return &___m_BandwidthPeakFactor_21; }
inline void set_m_BandwidthPeakFactor_21(float value)
{
___m_BandwidthPeakFactor_21 = value;
}
inline static int32_t get_offset_of_m_WebSocketReceiveBufferMaxSize_22() { return static_cast<int32_t>(offsetof(ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A, ___m_WebSocketReceiveBufferMaxSize_22)); }
inline uint16_t get_m_WebSocketReceiveBufferMaxSize_22() const { return ___m_WebSocketReceiveBufferMaxSize_22; }
inline uint16_t* get_address_of_m_WebSocketReceiveBufferMaxSize_22() { return &___m_WebSocketReceiveBufferMaxSize_22; }
inline void set_m_WebSocketReceiveBufferMaxSize_22(uint16_t value)
{
___m_WebSocketReceiveBufferMaxSize_22 = value;
}
inline static int32_t get_offset_of_m_UdpSocketReceiveBufferMaxSize_23() { return static_cast<int32_t>(offsetof(ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A, ___m_UdpSocketReceiveBufferMaxSize_23)); }
inline uint32_t get_m_UdpSocketReceiveBufferMaxSize_23() const { return ___m_UdpSocketReceiveBufferMaxSize_23; }
inline uint32_t* get_address_of_m_UdpSocketReceiveBufferMaxSize_23() { return &___m_UdpSocketReceiveBufferMaxSize_23; }
inline void set_m_UdpSocketReceiveBufferMaxSize_23(uint32_t value)
{
___m_UdpSocketReceiveBufferMaxSize_23 = value;
}
inline static int32_t get_offset_of_m_SSLCertFilePath_24() { return static_cast<int32_t>(offsetof(ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A, ___m_SSLCertFilePath_24)); }
inline String_t* get_m_SSLCertFilePath_24() const { return ___m_SSLCertFilePath_24; }
inline String_t** get_address_of_m_SSLCertFilePath_24() { return &___m_SSLCertFilePath_24; }
inline void set_m_SSLCertFilePath_24(String_t* value)
{
___m_SSLCertFilePath_24 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SSLCertFilePath_24), (void*)value);
}
inline static int32_t get_offset_of_m_SSLPrivateKeyFilePath_25() { return static_cast<int32_t>(offsetof(ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A, ___m_SSLPrivateKeyFilePath_25)); }
inline String_t* get_m_SSLPrivateKeyFilePath_25() const { return ___m_SSLPrivateKeyFilePath_25; }
inline String_t** get_address_of_m_SSLPrivateKeyFilePath_25() { return &___m_SSLPrivateKeyFilePath_25; }
inline void set_m_SSLPrivateKeyFilePath_25(String_t* value)
{
___m_SSLPrivateKeyFilePath_25 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SSLPrivateKeyFilePath_25), (void*)value);
}
inline static int32_t get_offset_of_m_SSLCAFilePath_26() { return static_cast<int32_t>(offsetof(ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A, ___m_SSLCAFilePath_26)); }
inline String_t* get_m_SSLCAFilePath_26() const { return ___m_SSLCAFilePath_26; }
inline String_t** get_address_of_m_SSLCAFilePath_26() { return &___m_SSLCAFilePath_26; }
inline void set_m_SSLCAFilePath_26(String_t* value)
{
___m_SSLCAFilePath_26 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SSLCAFilePath_26), (void*)value);
}
inline static int32_t get_offset_of_m_Channels_27() { return static_cast<int32_t>(offsetof(ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A, ___m_Channels_27)); }
inline List_1_t4A161C6204A381DADE144FA5F63CF0E3E7E11E33 * get_m_Channels_27() const { return ___m_Channels_27; }
inline List_1_t4A161C6204A381DADE144FA5F63CF0E3E7E11E33 ** get_address_of_m_Channels_27() { return &___m_Channels_27; }
inline void set_m_Channels_27(List_1_t4A161C6204A381DADE144FA5F63CF0E3E7E11E33 * value)
{
___m_Channels_27 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Channels_27), (void*)value);
}
inline static int32_t get_offset_of_m_SharedOrderChannels_28() { return static_cast<int32_t>(offsetof(ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A, ___m_SharedOrderChannels_28)); }
inline List_1_t74C85CD2BEE64FE69AE8BF4BAB62A4186A73655B * get_m_SharedOrderChannels_28() const { return ___m_SharedOrderChannels_28; }
inline List_1_t74C85CD2BEE64FE69AE8BF4BAB62A4186A73655B ** get_address_of_m_SharedOrderChannels_28() { return &___m_SharedOrderChannels_28; }
inline void set_m_SharedOrderChannels_28(List_1_t74C85CD2BEE64FE69AE8BF4BAB62A4186A73655B * value)
{
___m_SharedOrderChannels_28 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SharedOrderChannels_28), (void*)value);
}
};
// UnityEngine.Networking.Match.CreateMatchResponse
struct CreateMatchResponse_t1138835A2F19EA07436177C577ABC9984B9F93E2 : public BasicResponse_t9579CCF321F1A381924A886EC1A6496DAC3FC484
{
public:
// System.String UnityEngine.Networking.Match.CreateMatchResponse::address
String_t* ___address_2;
// System.Int32 UnityEngine.Networking.Match.CreateMatchResponse::port
int32_t ___port_3;
// System.Int32 UnityEngine.Networking.Match.CreateMatchResponse::domain
int32_t ___domain_4;
// System.UInt64 UnityEngine.Networking.Match.CreateMatchResponse::networkId
uint64_t ___networkId_5;
// System.String UnityEngine.Networking.Match.CreateMatchResponse::accessTokenString
String_t* ___accessTokenString_6;
// UnityEngine.Networking.Types.NodeID UnityEngine.Networking.Match.CreateMatchResponse::nodeId
uint16_t ___nodeId_7;
// System.Boolean UnityEngine.Networking.Match.CreateMatchResponse::usingRelay
bool ___usingRelay_8;
public:
inline static int32_t get_offset_of_address_2() { return static_cast<int32_t>(offsetof(CreateMatchResponse_t1138835A2F19EA07436177C577ABC9984B9F93E2, ___address_2)); }
inline String_t* get_address_2() const { return ___address_2; }
inline String_t** get_address_of_address_2() { return &___address_2; }
inline void set_address_2(String_t* value)
{
___address_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___address_2), (void*)value);
}
inline static int32_t get_offset_of_port_3() { return static_cast<int32_t>(offsetof(CreateMatchResponse_t1138835A2F19EA07436177C577ABC9984B9F93E2, ___port_3)); }
inline int32_t get_port_3() const { return ___port_3; }
inline int32_t* get_address_of_port_3() { return &___port_3; }
inline void set_port_3(int32_t value)
{
___port_3 = value;
}
inline static int32_t get_offset_of_domain_4() { return static_cast<int32_t>(offsetof(CreateMatchResponse_t1138835A2F19EA07436177C577ABC9984B9F93E2, ___domain_4)); }
inline int32_t get_domain_4() const { return ___domain_4; }
inline int32_t* get_address_of_domain_4() { return &___domain_4; }
inline void set_domain_4(int32_t value)
{
___domain_4 = value;
}
inline static int32_t get_offset_of_networkId_5() { return static_cast<int32_t>(offsetof(CreateMatchResponse_t1138835A2F19EA07436177C577ABC9984B9F93E2, ___networkId_5)); }
inline uint64_t get_networkId_5() const { return ___networkId_5; }
inline uint64_t* get_address_of_networkId_5() { return &___networkId_5; }
inline void set_networkId_5(uint64_t value)
{
___networkId_5 = value;
}
inline static int32_t get_offset_of_accessTokenString_6() { return static_cast<int32_t>(offsetof(CreateMatchResponse_t1138835A2F19EA07436177C577ABC9984B9F93E2, ___accessTokenString_6)); }
inline String_t* get_accessTokenString_6() const { return ___accessTokenString_6; }
inline String_t** get_address_of_accessTokenString_6() { return &___accessTokenString_6; }
inline void set_accessTokenString_6(String_t* value)
{
___accessTokenString_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___accessTokenString_6), (void*)value);
}
inline static int32_t get_offset_of_nodeId_7() { return static_cast<int32_t>(offsetof(CreateMatchResponse_t1138835A2F19EA07436177C577ABC9984B9F93E2, ___nodeId_7)); }
inline uint16_t get_nodeId_7() const { return ___nodeId_7; }
inline uint16_t* get_address_of_nodeId_7() { return &___nodeId_7; }
inline void set_nodeId_7(uint16_t value)
{
___nodeId_7 = value;
}
inline static int32_t get_offset_of_usingRelay_8() { return static_cast<int32_t>(offsetof(CreateMatchResponse_t1138835A2F19EA07436177C577ABC9984B9F93E2, ___usingRelay_8)); }
inline bool get_usingRelay_8() const { return ___usingRelay_8; }
inline bool* get_address_of_usingRelay_8() { return &___usingRelay_8; }
inline void set_usingRelay_8(bool value)
{
___usingRelay_8 = value;
}
};
// UnityEngine.Networking.GlobalConfig
struct GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 : public RuntimeObject
{
public:
// System.UInt32 UnityEngine.Networking.GlobalConfig::m_ThreadAwakeTimeout
uint32_t ___m_ThreadAwakeTimeout_3;
// UnityEngine.Networking.ReactorModel UnityEngine.Networking.GlobalConfig::m_ReactorModel
int32_t ___m_ReactorModel_4;
// System.UInt16 UnityEngine.Networking.GlobalConfig::m_ReactorMaximumReceivedMessages
uint16_t ___m_ReactorMaximumReceivedMessages_5;
// System.UInt16 UnityEngine.Networking.GlobalConfig::m_ReactorMaximumSentMessages
uint16_t ___m_ReactorMaximumSentMessages_6;
// System.UInt16 UnityEngine.Networking.GlobalConfig::m_MaxPacketSize
uint16_t ___m_MaxPacketSize_7;
// System.UInt16 UnityEngine.Networking.GlobalConfig::m_MaxHosts
uint16_t ___m_MaxHosts_8;
// System.Byte UnityEngine.Networking.GlobalConfig::m_ThreadPoolSize
uint8_t ___m_ThreadPoolSize_9;
// System.UInt32 UnityEngine.Networking.GlobalConfig::m_MinTimerTimeout
uint32_t ___m_MinTimerTimeout_10;
// System.UInt32 UnityEngine.Networking.GlobalConfig::m_MaxTimerTimeout
uint32_t ___m_MaxTimerTimeout_11;
// System.UInt32 UnityEngine.Networking.GlobalConfig::m_MinNetSimulatorTimeout
uint32_t ___m_MinNetSimulatorTimeout_12;
// System.UInt32 UnityEngine.Networking.GlobalConfig::m_MaxNetSimulatorTimeout
uint32_t ___m_MaxNetSimulatorTimeout_13;
// System.Action`2<System.Int32,System.Int32> UnityEngine.Networking.GlobalConfig::m_ConnectionReadyForSend
Action_2_tCC1DAEC9EBDBAB5891B0CF72C24B016C610EFF39 * ___m_ConnectionReadyForSend_14;
// System.Action`1<System.Int32> UnityEngine.Networking.GlobalConfig::m_NetworkEventAvailable
Action_1_t080BA8EFA9616A494EBB4DD352BFEF943792E05B * ___m_NetworkEventAvailable_15;
public:
inline static int32_t get_offset_of_m_ThreadAwakeTimeout_3() { return static_cast<int32_t>(offsetof(GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66, ___m_ThreadAwakeTimeout_3)); }
inline uint32_t get_m_ThreadAwakeTimeout_3() const { return ___m_ThreadAwakeTimeout_3; }
inline uint32_t* get_address_of_m_ThreadAwakeTimeout_3() { return &___m_ThreadAwakeTimeout_3; }
inline void set_m_ThreadAwakeTimeout_3(uint32_t value)
{
___m_ThreadAwakeTimeout_3 = value;
}
inline static int32_t get_offset_of_m_ReactorModel_4() { return static_cast<int32_t>(offsetof(GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66, ___m_ReactorModel_4)); }
inline int32_t get_m_ReactorModel_4() const { return ___m_ReactorModel_4; }
inline int32_t* get_address_of_m_ReactorModel_4() { return &___m_ReactorModel_4; }
inline void set_m_ReactorModel_4(int32_t value)
{
___m_ReactorModel_4 = value;
}
inline static int32_t get_offset_of_m_ReactorMaximumReceivedMessages_5() { return static_cast<int32_t>(offsetof(GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66, ___m_ReactorMaximumReceivedMessages_5)); }
inline uint16_t get_m_ReactorMaximumReceivedMessages_5() const { return ___m_ReactorMaximumReceivedMessages_5; }
inline uint16_t* get_address_of_m_ReactorMaximumReceivedMessages_5() { return &___m_ReactorMaximumReceivedMessages_5; }
inline void set_m_ReactorMaximumReceivedMessages_5(uint16_t value)
{
___m_ReactorMaximumReceivedMessages_5 = value;
}
inline static int32_t get_offset_of_m_ReactorMaximumSentMessages_6() { return static_cast<int32_t>(offsetof(GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66, ___m_ReactorMaximumSentMessages_6)); }
inline uint16_t get_m_ReactorMaximumSentMessages_6() const { return ___m_ReactorMaximumSentMessages_6; }
inline uint16_t* get_address_of_m_ReactorMaximumSentMessages_6() { return &___m_ReactorMaximumSentMessages_6; }
inline void set_m_ReactorMaximumSentMessages_6(uint16_t value)
{
___m_ReactorMaximumSentMessages_6 = value;
}
inline static int32_t get_offset_of_m_MaxPacketSize_7() { return static_cast<int32_t>(offsetof(GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66, ___m_MaxPacketSize_7)); }
inline uint16_t get_m_MaxPacketSize_7() const { return ___m_MaxPacketSize_7; }
inline uint16_t* get_address_of_m_MaxPacketSize_7() { return &___m_MaxPacketSize_7; }
inline void set_m_MaxPacketSize_7(uint16_t value)
{
___m_MaxPacketSize_7 = value;
}
inline static int32_t get_offset_of_m_MaxHosts_8() { return static_cast<int32_t>(offsetof(GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66, ___m_MaxHosts_8)); }
inline uint16_t get_m_MaxHosts_8() const { return ___m_MaxHosts_8; }
inline uint16_t* get_address_of_m_MaxHosts_8() { return &___m_MaxHosts_8; }
inline void set_m_MaxHosts_8(uint16_t value)
{
___m_MaxHosts_8 = value;
}
inline static int32_t get_offset_of_m_ThreadPoolSize_9() { return static_cast<int32_t>(offsetof(GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66, ___m_ThreadPoolSize_9)); }
inline uint8_t get_m_ThreadPoolSize_9() const { return ___m_ThreadPoolSize_9; }
inline uint8_t* get_address_of_m_ThreadPoolSize_9() { return &___m_ThreadPoolSize_9; }
inline void set_m_ThreadPoolSize_9(uint8_t value)
{
___m_ThreadPoolSize_9 = value;
}
inline static int32_t get_offset_of_m_MinTimerTimeout_10() { return static_cast<int32_t>(offsetof(GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66, ___m_MinTimerTimeout_10)); }
inline uint32_t get_m_MinTimerTimeout_10() const { return ___m_MinTimerTimeout_10; }
inline uint32_t* get_address_of_m_MinTimerTimeout_10() { return &___m_MinTimerTimeout_10; }
inline void set_m_MinTimerTimeout_10(uint32_t value)
{
___m_MinTimerTimeout_10 = value;
}
inline static int32_t get_offset_of_m_MaxTimerTimeout_11() { return static_cast<int32_t>(offsetof(GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66, ___m_MaxTimerTimeout_11)); }
inline uint32_t get_m_MaxTimerTimeout_11() const { return ___m_MaxTimerTimeout_11; }
inline uint32_t* get_address_of_m_MaxTimerTimeout_11() { return &___m_MaxTimerTimeout_11; }
inline void set_m_MaxTimerTimeout_11(uint32_t value)
{
___m_MaxTimerTimeout_11 = value;
}
inline static int32_t get_offset_of_m_MinNetSimulatorTimeout_12() { return static_cast<int32_t>(offsetof(GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66, ___m_MinNetSimulatorTimeout_12)); }
inline uint32_t get_m_MinNetSimulatorTimeout_12() const { return ___m_MinNetSimulatorTimeout_12; }
inline uint32_t* get_address_of_m_MinNetSimulatorTimeout_12() { return &___m_MinNetSimulatorTimeout_12; }
inline void set_m_MinNetSimulatorTimeout_12(uint32_t value)
{
___m_MinNetSimulatorTimeout_12 = value;
}
inline static int32_t get_offset_of_m_MaxNetSimulatorTimeout_13() { return static_cast<int32_t>(offsetof(GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66, ___m_MaxNetSimulatorTimeout_13)); }
inline uint32_t get_m_MaxNetSimulatorTimeout_13() const { return ___m_MaxNetSimulatorTimeout_13; }
inline uint32_t* get_address_of_m_MaxNetSimulatorTimeout_13() { return &___m_MaxNetSimulatorTimeout_13; }
inline void set_m_MaxNetSimulatorTimeout_13(uint32_t value)
{
___m_MaxNetSimulatorTimeout_13 = value;
}
inline static int32_t get_offset_of_m_ConnectionReadyForSend_14() { return static_cast<int32_t>(offsetof(GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66, ___m_ConnectionReadyForSend_14)); }
inline Action_2_tCC1DAEC9EBDBAB5891B0CF72C24B016C610EFF39 * get_m_ConnectionReadyForSend_14() const { return ___m_ConnectionReadyForSend_14; }
inline Action_2_tCC1DAEC9EBDBAB5891B0CF72C24B016C610EFF39 ** get_address_of_m_ConnectionReadyForSend_14() { return &___m_ConnectionReadyForSend_14; }
inline void set_m_ConnectionReadyForSend_14(Action_2_tCC1DAEC9EBDBAB5891B0CF72C24B016C610EFF39 * value)
{
___m_ConnectionReadyForSend_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ConnectionReadyForSend_14), (void*)value);
}
inline static int32_t get_offset_of_m_NetworkEventAvailable_15() { return static_cast<int32_t>(offsetof(GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66, ___m_NetworkEventAvailable_15)); }
inline Action_1_t080BA8EFA9616A494EBB4DD352BFEF943792E05B * get_m_NetworkEventAvailable_15() const { return ___m_NetworkEventAvailable_15; }
inline Action_1_t080BA8EFA9616A494EBB4DD352BFEF943792E05B ** get_address_of_m_NetworkEventAvailable_15() { return &___m_NetworkEventAvailable_15; }
inline void set_m_NetworkEventAvailable_15(Action_1_t080BA8EFA9616A494EBB4DD352BFEF943792E05B * value)
{
___m_NetworkEventAvailable_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_NetworkEventAvailable_15), (void*)value);
}
};
// UnityEngine.Networking.Match.JoinMatchResponse
struct JoinMatchResponse_t6F5BCC11BC546B850CB72C9DEF63D520F4F6946D : public BasicResponse_t9579CCF321F1A381924A886EC1A6496DAC3FC484
{
public:
// System.String UnityEngine.Networking.Match.JoinMatchResponse::address
String_t* ___address_2;
// System.Int32 UnityEngine.Networking.Match.JoinMatchResponse::port
int32_t ___port_3;
// System.Int32 UnityEngine.Networking.Match.JoinMatchResponse::domain
int32_t ___domain_4;
// System.UInt64 UnityEngine.Networking.Match.JoinMatchResponse::networkId
uint64_t ___networkId_5;
// System.String UnityEngine.Networking.Match.JoinMatchResponse::accessTokenString
String_t* ___accessTokenString_6;
// UnityEngine.Networking.Types.NodeID UnityEngine.Networking.Match.JoinMatchResponse::nodeId
uint16_t ___nodeId_7;
// System.Boolean UnityEngine.Networking.Match.JoinMatchResponse::usingRelay
bool ___usingRelay_8;
public:
inline static int32_t get_offset_of_address_2() { return static_cast<int32_t>(offsetof(JoinMatchResponse_t6F5BCC11BC546B850CB72C9DEF63D520F4F6946D, ___address_2)); }
inline String_t* get_address_2() const { return ___address_2; }
inline String_t** get_address_of_address_2() { return &___address_2; }
inline void set_address_2(String_t* value)
{
___address_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___address_2), (void*)value);
}
inline static int32_t get_offset_of_port_3() { return static_cast<int32_t>(offsetof(JoinMatchResponse_t6F5BCC11BC546B850CB72C9DEF63D520F4F6946D, ___port_3)); }
inline int32_t get_port_3() const { return ___port_3; }
inline int32_t* get_address_of_port_3() { return &___port_3; }
inline void set_port_3(int32_t value)
{
___port_3 = value;
}
inline static int32_t get_offset_of_domain_4() { return static_cast<int32_t>(offsetof(JoinMatchResponse_t6F5BCC11BC546B850CB72C9DEF63D520F4F6946D, ___domain_4)); }
inline int32_t get_domain_4() const { return ___domain_4; }
inline int32_t* get_address_of_domain_4() { return &___domain_4; }
inline void set_domain_4(int32_t value)
{
___domain_4 = value;
}
inline static int32_t get_offset_of_networkId_5() { return static_cast<int32_t>(offsetof(JoinMatchResponse_t6F5BCC11BC546B850CB72C9DEF63D520F4F6946D, ___networkId_5)); }
inline uint64_t get_networkId_5() const { return ___networkId_5; }
inline uint64_t* get_address_of_networkId_5() { return &___networkId_5; }
inline void set_networkId_5(uint64_t value)
{
___networkId_5 = value;
}
inline static int32_t get_offset_of_accessTokenString_6() { return static_cast<int32_t>(offsetof(JoinMatchResponse_t6F5BCC11BC546B850CB72C9DEF63D520F4F6946D, ___accessTokenString_6)); }
inline String_t* get_accessTokenString_6() const { return ___accessTokenString_6; }
inline String_t** get_address_of_accessTokenString_6() { return &___accessTokenString_6; }
inline void set_accessTokenString_6(String_t* value)
{
___accessTokenString_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___accessTokenString_6), (void*)value);
}
inline static int32_t get_offset_of_nodeId_7() { return static_cast<int32_t>(offsetof(JoinMatchResponse_t6F5BCC11BC546B850CB72C9DEF63D520F4F6946D, ___nodeId_7)); }
inline uint16_t get_nodeId_7() const { return ___nodeId_7; }
inline uint16_t* get_address_of_nodeId_7() { return &___nodeId_7; }
inline void set_nodeId_7(uint16_t value)
{
___nodeId_7 = value;
}
inline static int32_t get_offset_of_usingRelay_8() { return static_cast<int32_t>(offsetof(JoinMatchResponse_t6F5BCC11BC546B850CB72C9DEF63D520F4F6946D, ___usingRelay_8)); }
inline bool get_usingRelay_8() const { return ___usingRelay_8; }
inline bool* get_address_of_usingRelay_8() { return &___usingRelay_8; }
inline void set_usingRelay_8(bool value)
{
___usingRelay_8 = value;
}
};
// UnityEngine.Networking.Match.MatchDesc
struct MatchDesc_t49F2F401AE3A8B8B80EDF9838F88127727B4108B : public RuntimeObject
{
public:
// System.UInt64 UnityEngine.Networking.Match.MatchDesc::networkId
uint64_t ___networkId_0;
// System.String UnityEngine.Networking.Match.MatchDesc::name
String_t* ___name_1;
// System.Int32 UnityEngine.Networking.Match.MatchDesc::averageEloScore
int32_t ___averageEloScore_2;
// System.Int32 UnityEngine.Networking.Match.MatchDesc::maxSize
int32_t ___maxSize_3;
// System.Int32 UnityEngine.Networking.Match.MatchDesc::currentSize
int32_t ___currentSize_4;
// System.Boolean UnityEngine.Networking.Match.MatchDesc::isPrivate
bool ___isPrivate_5;
// System.Collections.Generic.Dictionary`2<System.String,System.Int64> UnityEngine.Networking.Match.MatchDesc::matchAttributes
Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * ___matchAttributes_6;
// UnityEngine.Networking.Types.NodeID UnityEngine.Networking.Match.MatchDesc::hostNodeId
uint16_t ___hostNodeId_7;
// System.Collections.Generic.List`1<UnityEngine.Networking.Match.MatchDirectConnectInfo> UnityEngine.Networking.Match.MatchDesc::directConnectInfos
List_1_t634AFA3BC7CA26F185BBC2A460A21D2F89EE10FA * ___directConnectInfos_8;
public:
inline static int32_t get_offset_of_networkId_0() { return static_cast<int32_t>(offsetof(MatchDesc_t49F2F401AE3A8B8B80EDF9838F88127727B4108B, ___networkId_0)); }
inline uint64_t get_networkId_0() const { return ___networkId_0; }
inline uint64_t* get_address_of_networkId_0() { return &___networkId_0; }
inline void set_networkId_0(uint64_t value)
{
___networkId_0 = value;
}
inline static int32_t get_offset_of_name_1() { return static_cast<int32_t>(offsetof(MatchDesc_t49F2F401AE3A8B8B80EDF9838F88127727B4108B, ___name_1)); }
inline String_t* get_name_1() const { return ___name_1; }
inline String_t** get_address_of_name_1() { return &___name_1; }
inline void set_name_1(String_t* value)
{
___name_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___name_1), (void*)value);
}
inline static int32_t get_offset_of_averageEloScore_2() { return static_cast<int32_t>(offsetof(MatchDesc_t49F2F401AE3A8B8B80EDF9838F88127727B4108B, ___averageEloScore_2)); }
inline int32_t get_averageEloScore_2() const { return ___averageEloScore_2; }
inline int32_t* get_address_of_averageEloScore_2() { return &___averageEloScore_2; }
inline void set_averageEloScore_2(int32_t value)
{
___averageEloScore_2 = value;
}
inline static int32_t get_offset_of_maxSize_3() { return static_cast<int32_t>(offsetof(MatchDesc_t49F2F401AE3A8B8B80EDF9838F88127727B4108B, ___maxSize_3)); }
inline int32_t get_maxSize_3() const { return ___maxSize_3; }
inline int32_t* get_address_of_maxSize_3() { return &___maxSize_3; }
inline void set_maxSize_3(int32_t value)
{
___maxSize_3 = value;
}
inline static int32_t get_offset_of_currentSize_4() { return static_cast<int32_t>(offsetof(MatchDesc_t49F2F401AE3A8B8B80EDF9838F88127727B4108B, ___currentSize_4)); }
inline int32_t get_currentSize_4() const { return ___currentSize_4; }
inline int32_t* get_address_of_currentSize_4() { return &___currentSize_4; }
inline void set_currentSize_4(int32_t value)
{
___currentSize_4 = value;
}
inline static int32_t get_offset_of_isPrivate_5() { return static_cast<int32_t>(offsetof(MatchDesc_t49F2F401AE3A8B8B80EDF9838F88127727B4108B, ___isPrivate_5)); }
inline bool get_isPrivate_5() const { return ___isPrivate_5; }
inline bool* get_address_of_isPrivate_5() { return &___isPrivate_5; }
inline void set_isPrivate_5(bool value)
{
___isPrivate_5 = value;
}
inline static int32_t get_offset_of_matchAttributes_6() { return static_cast<int32_t>(offsetof(MatchDesc_t49F2F401AE3A8B8B80EDF9838F88127727B4108B, ___matchAttributes_6)); }
inline Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * get_matchAttributes_6() const { return ___matchAttributes_6; }
inline Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 ** get_address_of_matchAttributes_6() { return &___matchAttributes_6; }
inline void set_matchAttributes_6(Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * value)
{
___matchAttributes_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___matchAttributes_6), (void*)value);
}
inline static int32_t get_offset_of_hostNodeId_7() { return static_cast<int32_t>(offsetof(MatchDesc_t49F2F401AE3A8B8B80EDF9838F88127727B4108B, ___hostNodeId_7)); }
inline uint16_t get_hostNodeId_7() const { return ___hostNodeId_7; }
inline uint16_t* get_address_of_hostNodeId_7() { return &___hostNodeId_7; }
inline void set_hostNodeId_7(uint16_t value)
{
___hostNodeId_7 = value;
}
inline static int32_t get_offset_of_directConnectInfos_8() { return static_cast<int32_t>(offsetof(MatchDesc_t49F2F401AE3A8B8B80EDF9838F88127727B4108B, ___directConnectInfos_8)); }
inline List_1_t634AFA3BC7CA26F185BBC2A460A21D2F89EE10FA * get_directConnectInfos_8() const { return ___directConnectInfos_8; }
inline List_1_t634AFA3BC7CA26F185BBC2A460A21D2F89EE10FA ** get_address_of_directConnectInfos_8() { return &___directConnectInfos_8; }
inline void set_directConnectInfos_8(List_1_t634AFA3BC7CA26F185BBC2A460A21D2F89EE10FA * value)
{
___directConnectInfos_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___directConnectInfos_8), (void*)value);
}
};
// UnityEngine.Networking.Match.MatchDirectConnectInfo
struct MatchDirectConnectInfo_t79A507F1704A58987DFC695D74214C9726BF78A4 : public RuntimeObject
{
public:
// UnityEngine.Networking.Types.NodeID UnityEngine.Networking.Match.MatchDirectConnectInfo::nodeId
uint16_t ___nodeId_0;
// System.String UnityEngine.Networking.Match.MatchDirectConnectInfo::publicAddress
String_t* ___publicAddress_1;
// System.String UnityEngine.Networking.Match.MatchDirectConnectInfo::privateAddress
String_t* ___privateAddress_2;
// UnityEngine.Networking.Types.HostPriority UnityEngine.Networking.Match.MatchDirectConnectInfo::hostPriority
int32_t ___hostPriority_3;
public:
inline static int32_t get_offset_of_nodeId_0() { return static_cast<int32_t>(offsetof(MatchDirectConnectInfo_t79A507F1704A58987DFC695D74214C9726BF78A4, ___nodeId_0)); }
inline uint16_t get_nodeId_0() const { return ___nodeId_0; }
inline uint16_t* get_address_of_nodeId_0() { return &___nodeId_0; }
inline void set_nodeId_0(uint16_t value)
{
___nodeId_0 = value;
}
inline static int32_t get_offset_of_publicAddress_1() { return static_cast<int32_t>(offsetof(MatchDirectConnectInfo_t79A507F1704A58987DFC695D74214C9726BF78A4, ___publicAddress_1)); }
inline String_t* get_publicAddress_1() const { return ___publicAddress_1; }
inline String_t** get_address_of_publicAddress_1() { return &___publicAddress_1; }
inline void set_publicAddress_1(String_t* value)
{
___publicAddress_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___publicAddress_1), (void*)value);
}
inline static int32_t get_offset_of_privateAddress_2() { return static_cast<int32_t>(offsetof(MatchDirectConnectInfo_t79A507F1704A58987DFC695D74214C9726BF78A4, ___privateAddress_2)); }
inline String_t* get_privateAddress_2() const { return ___privateAddress_2; }
inline String_t** get_address_of_privateAddress_2() { return &___privateAddress_2; }
inline void set_privateAddress_2(String_t* value)
{
___privateAddress_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___privateAddress_2), (void*)value);
}
inline static int32_t get_offset_of_hostPriority_3() { return static_cast<int32_t>(offsetof(MatchDirectConnectInfo_t79A507F1704A58987DFC695D74214C9726BF78A4, ___hostPriority_3)); }
inline int32_t get_hostPriority_3() const { return ___hostPriority_3; }
inline int32_t* get_address_of_hostPriority_3() { return &___hostPriority_3; }
inline void set_hostPriority_3(int32_t value)
{
___hostPriority_3 = value;
}
};
// UnityEngine.Networking.Match.MatchInfo
struct MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67 : public RuntimeObject
{
public:
// System.String UnityEngine.Networking.Match.MatchInfo::<address>k__BackingField
String_t* ___U3CaddressU3Ek__BackingField_0;
// System.Int32 UnityEngine.Networking.Match.MatchInfo::<port>k__BackingField
int32_t ___U3CportU3Ek__BackingField_1;
// System.Int32 UnityEngine.Networking.Match.MatchInfo::<domain>k__BackingField
int32_t ___U3CdomainU3Ek__BackingField_2;
// UnityEngine.Networking.Types.NetworkID UnityEngine.Networking.Match.MatchInfo::<networkId>k__BackingField
uint64_t ___U3CnetworkIdU3Ek__BackingField_3;
// UnityEngine.Networking.Types.NetworkAccessToken UnityEngine.Networking.Match.MatchInfo::<accessToken>k__BackingField
NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481 * ___U3CaccessTokenU3Ek__BackingField_4;
// UnityEngine.Networking.Types.NodeID UnityEngine.Networking.Match.MatchInfo::<nodeId>k__BackingField
uint16_t ___U3CnodeIdU3Ek__BackingField_5;
// System.Boolean UnityEngine.Networking.Match.MatchInfo::<usingRelay>k__BackingField
bool ___U3CusingRelayU3Ek__BackingField_6;
public:
inline static int32_t get_offset_of_U3CaddressU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67, ___U3CaddressU3Ek__BackingField_0)); }
inline String_t* get_U3CaddressU3Ek__BackingField_0() const { return ___U3CaddressU3Ek__BackingField_0; }
inline String_t** get_address_of_U3CaddressU3Ek__BackingField_0() { return &___U3CaddressU3Ek__BackingField_0; }
inline void set_U3CaddressU3Ek__BackingField_0(String_t* value)
{
___U3CaddressU3Ek__BackingField_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CaddressU3Ek__BackingField_0), (void*)value);
}
inline static int32_t get_offset_of_U3CportU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67, ___U3CportU3Ek__BackingField_1)); }
inline int32_t get_U3CportU3Ek__BackingField_1() const { return ___U3CportU3Ek__BackingField_1; }
inline int32_t* get_address_of_U3CportU3Ek__BackingField_1() { return &___U3CportU3Ek__BackingField_1; }
inline void set_U3CportU3Ek__BackingField_1(int32_t value)
{
___U3CportU3Ek__BackingField_1 = value;
}
inline static int32_t get_offset_of_U3CdomainU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67, ___U3CdomainU3Ek__BackingField_2)); }
inline int32_t get_U3CdomainU3Ek__BackingField_2() const { return ___U3CdomainU3Ek__BackingField_2; }
inline int32_t* get_address_of_U3CdomainU3Ek__BackingField_2() { return &___U3CdomainU3Ek__BackingField_2; }
inline void set_U3CdomainU3Ek__BackingField_2(int32_t value)
{
___U3CdomainU3Ek__BackingField_2 = value;
}
inline static int32_t get_offset_of_U3CnetworkIdU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67, ___U3CnetworkIdU3Ek__BackingField_3)); }
inline uint64_t get_U3CnetworkIdU3Ek__BackingField_3() const { return ___U3CnetworkIdU3Ek__BackingField_3; }
inline uint64_t* get_address_of_U3CnetworkIdU3Ek__BackingField_3() { return &___U3CnetworkIdU3Ek__BackingField_3; }
inline void set_U3CnetworkIdU3Ek__BackingField_3(uint64_t value)
{
___U3CnetworkIdU3Ek__BackingField_3 = value;
}
inline static int32_t get_offset_of_U3CaccessTokenU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67, ___U3CaccessTokenU3Ek__BackingField_4)); }
inline NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481 * get_U3CaccessTokenU3Ek__BackingField_4() const { return ___U3CaccessTokenU3Ek__BackingField_4; }
inline NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481 ** get_address_of_U3CaccessTokenU3Ek__BackingField_4() { return &___U3CaccessTokenU3Ek__BackingField_4; }
inline void set_U3CaccessTokenU3Ek__BackingField_4(NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481 * value)
{
___U3CaccessTokenU3Ek__BackingField_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CaccessTokenU3Ek__BackingField_4), (void*)value);
}
inline static int32_t get_offset_of_U3CnodeIdU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67, ___U3CnodeIdU3Ek__BackingField_5)); }
inline uint16_t get_U3CnodeIdU3Ek__BackingField_5() const { return ___U3CnodeIdU3Ek__BackingField_5; }
inline uint16_t* get_address_of_U3CnodeIdU3Ek__BackingField_5() { return &___U3CnodeIdU3Ek__BackingField_5; }
inline void set_U3CnodeIdU3Ek__BackingField_5(uint16_t value)
{
___U3CnodeIdU3Ek__BackingField_5 = value;
}
inline static int32_t get_offset_of_U3CusingRelayU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67, ___U3CusingRelayU3Ek__BackingField_6)); }
inline bool get_U3CusingRelayU3Ek__BackingField_6() const { return ___U3CusingRelayU3Ek__BackingField_6; }
inline bool* get_address_of_U3CusingRelayU3Ek__BackingField_6() { return &___U3CusingRelayU3Ek__BackingField_6; }
inline void set_U3CusingRelayU3Ek__BackingField_6(bool value)
{
___U3CusingRelayU3Ek__BackingField_6 = value;
}
};
// UnityEngine.Networking.Match.MatchInfoSnapshot
struct MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0 : public RuntimeObject
{
public:
// UnityEngine.Networking.Types.NetworkID UnityEngine.Networking.Match.MatchInfoSnapshot::<networkId>k__BackingField
uint64_t ___U3CnetworkIdU3Ek__BackingField_0;
// UnityEngine.Networking.Types.NodeID UnityEngine.Networking.Match.MatchInfoSnapshot::<hostNodeId>k__BackingField
uint16_t ___U3ChostNodeIdU3Ek__BackingField_1;
// System.String UnityEngine.Networking.Match.MatchInfoSnapshot::<name>k__BackingField
String_t* ___U3CnameU3Ek__BackingField_2;
// System.Int32 UnityEngine.Networking.Match.MatchInfoSnapshot::<averageEloScore>k__BackingField
int32_t ___U3CaverageEloScoreU3Ek__BackingField_3;
// System.Int32 UnityEngine.Networking.Match.MatchInfoSnapshot::<maxSize>k__BackingField
int32_t ___U3CmaxSizeU3Ek__BackingField_4;
// System.Int32 UnityEngine.Networking.Match.MatchInfoSnapshot::<currentSize>k__BackingField
int32_t ___U3CcurrentSizeU3Ek__BackingField_5;
// System.Boolean UnityEngine.Networking.Match.MatchInfoSnapshot::<isPrivate>k__BackingField
bool ___U3CisPrivateU3Ek__BackingField_6;
// System.Collections.Generic.Dictionary`2<System.String,System.Int64> UnityEngine.Networking.Match.MatchInfoSnapshot::<matchAttributes>k__BackingField
Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * ___U3CmatchAttributesU3Ek__BackingField_7;
// System.Collections.Generic.List`1<UnityEngine.Networking.Match.MatchInfoSnapshot/MatchInfoDirectConnectSnapshot> UnityEngine.Networking.Match.MatchInfoSnapshot::<directConnectInfos>k__BackingField
List_1_t25DD639486662E92B4B3EF461C654CEBB4202FFC * ___U3CdirectConnectInfosU3Ek__BackingField_8;
public:
inline static int32_t get_offset_of_U3CnetworkIdU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0, ___U3CnetworkIdU3Ek__BackingField_0)); }
inline uint64_t get_U3CnetworkIdU3Ek__BackingField_0() const { return ___U3CnetworkIdU3Ek__BackingField_0; }
inline uint64_t* get_address_of_U3CnetworkIdU3Ek__BackingField_0() { return &___U3CnetworkIdU3Ek__BackingField_0; }
inline void set_U3CnetworkIdU3Ek__BackingField_0(uint64_t value)
{
___U3CnetworkIdU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3ChostNodeIdU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0, ___U3ChostNodeIdU3Ek__BackingField_1)); }
inline uint16_t get_U3ChostNodeIdU3Ek__BackingField_1() const { return ___U3ChostNodeIdU3Ek__BackingField_1; }
inline uint16_t* get_address_of_U3ChostNodeIdU3Ek__BackingField_1() { return &___U3ChostNodeIdU3Ek__BackingField_1; }
inline void set_U3ChostNodeIdU3Ek__BackingField_1(uint16_t value)
{
___U3ChostNodeIdU3Ek__BackingField_1 = value;
}
inline static int32_t get_offset_of_U3CnameU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0, ___U3CnameU3Ek__BackingField_2)); }
inline String_t* get_U3CnameU3Ek__BackingField_2() const { return ___U3CnameU3Ek__BackingField_2; }
inline String_t** get_address_of_U3CnameU3Ek__BackingField_2() { return &___U3CnameU3Ek__BackingField_2; }
inline void set_U3CnameU3Ek__BackingField_2(String_t* value)
{
___U3CnameU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CnameU3Ek__BackingField_2), (void*)value);
}
inline static int32_t get_offset_of_U3CaverageEloScoreU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0, ___U3CaverageEloScoreU3Ek__BackingField_3)); }
inline int32_t get_U3CaverageEloScoreU3Ek__BackingField_3() const { return ___U3CaverageEloScoreU3Ek__BackingField_3; }
inline int32_t* get_address_of_U3CaverageEloScoreU3Ek__BackingField_3() { return &___U3CaverageEloScoreU3Ek__BackingField_3; }
inline void set_U3CaverageEloScoreU3Ek__BackingField_3(int32_t value)
{
___U3CaverageEloScoreU3Ek__BackingField_3 = value;
}
inline static int32_t get_offset_of_U3CmaxSizeU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0, ___U3CmaxSizeU3Ek__BackingField_4)); }
inline int32_t get_U3CmaxSizeU3Ek__BackingField_4() const { return ___U3CmaxSizeU3Ek__BackingField_4; }
inline int32_t* get_address_of_U3CmaxSizeU3Ek__BackingField_4() { return &___U3CmaxSizeU3Ek__BackingField_4; }
inline void set_U3CmaxSizeU3Ek__BackingField_4(int32_t value)
{
___U3CmaxSizeU3Ek__BackingField_4 = value;
}
inline static int32_t get_offset_of_U3CcurrentSizeU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0, ___U3CcurrentSizeU3Ek__BackingField_5)); }
inline int32_t get_U3CcurrentSizeU3Ek__BackingField_5() const { return ___U3CcurrentSizeU3Ek__BackingField_5; }
inline int32_t* get_address_of_U3CcurrentSizeU3Ek__BackingField_5() { return &___U3CcurrentSizeU3Ek__BackingField_5; }
inline void set_U3CcurrentSizeU3Ek__BackingField_5(int32_t value)
{
___U3CcurrentSizeU3Ek__BackingField_5 = value;
}
inline static int32_t get_offset_of_U3CisPrivateU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0, ___U3CisPrivateU3Ek__BackingField_6)); }
inline bool get_U3CisPrivateU3Ek__BackingField_6() const { return ___U3CisPrivateU3Ek__BackingField_6; }
inline bool* get_address_of_U3CisPrivateU3Ek__BackingField_6() { return &___U3CisPrivateU3Ek__BackingField_6; }
inline void set_U3CisPrivateU3Ek__BackingField_6(bool value)
{
___U3CisPrivateU3Ek__BackingField_6 = value;
}
inline static int32_t get_offset_of_U3CmatchAttributesU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0, ___U3CmatchAttributesU3Ek__BackingField_7)); }
inline Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * get_U3CmatchAttributesU3Ek__BackingField_7() const { return ___U3CmatchAttributesU3Ek__BackingField_7; }
inline Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 ** get_address_of_U3CmatchAttributesU3Ek__BackingField_7() { return &___U3CmatchAttributesU3Ek__BackingField_7; }
inline void set_U3CmatchAttributesU3Ek__BackingField_7(Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * value)
{
___U3CmatchAttributesU3Ek__BackingField_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CmatchAttributesU3Ek__BackingField_7), (void*)value);
}
inline static int32_t get_offset_of_U3CdirectConnectInfosU3Ek__BackingField_8() { return static_cast<int32_t>(offsetof(MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0, ___U3CdirectConnectInfosU3Ek__BackingField_8)); }
inline List_1_t25DD639486662E92B4B3EF461C654CEBB4202FFC * get_U3CdirectConnectInfosU3Ek__BackingField_8() const { return ___U3CdirectConnectInfosU3Ek__BackingField_8; }
inline List_1_t25DD639486662E92B4B3EF461C654CEBB4202FFC ** get_address_of_U3CdirectConnectInfosU3Ek__BackingField_8() { return &___U3CdirectConnectInfosU3Ek__BackingField_8; }
inline void set_U3CdirectConnectInfosU3Ek__BackingField_8(List_1_t25DD639486662E92B4B3EF461C654CEBB4202FFC * value)
{
___U3CdirectConnectInfosU3Ek__BackingField_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CdirectConnectInfosU3Ek__BackingField_8), (void*)value);
}
};
// System.MulticastDelegate
struct MulticastDelegate_t : public Delegate_t
{
public:
// System.Delegate[] System.MulticastDelegate::delegates
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* ___delegates_11;
public:
inline static int32_t get_offset_of_delegates_11() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___delegates_11)); }
inline DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* get_delegates_11() const { return ___delegates_11; }
inline DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8** get_address_of_delegates_11() { return &___delegates_11; }
inline void set_delegates_11(DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* value)
{
___delegates_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___delegates_11), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
{
Delegate_t_marshaled_pinvoke** ___delegates_11;
};
// Native definition for COM marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
{
Delegate_t_marshaled_com** ___delegates_11;
};
// UnityEngine.Networking.Match.Request
struct Request_tA1BC1936C153408449C4C207CA12D4358A7477FD : public RuntimeObject
{
public:
// UnityEngine.Networking.Types.SourceID UnityEngine.Networking.Match.Request::<sourceId>k__BackingField
uint64_t ___U3CsourceIdU3Ek__BackingField_1;
// System.String UnityEngine.Networking.Match.Request::<projectId>k__BackingField
String_t* ___U3CprojectIdU3Ek__BackingField_2;
// System.String UnityEngine.Networking.Match.Request::<accessTokenString>k__BackingField
String_t* ___U3CaccessTokenStringU3Ek__BackingField_3;
// System.Int32 UnityEngine.Networking.Match.Request::<domain>k__BackingField
int32_t ___U3CdomainU3Ek__BackingField_4;
public:
inline static int32_t get_offset_of_U3CsourceIdU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(Request_tA1BC1936C153408449C4C207CA12D4358A7477FD, ___U3CsourceIdU3Ek__BackingField_1)); }
inline uint64_t get_U3CsourceIdU3Ek__BackingField_1() const { return ___U3CsourceIdU3Ek__BackingField_1; }
inline uint64_t* get_address_of_U3CsourceIdU3Ek__BackingField_1() { return &___U3CsourceIdU3Ek__BackingField_1; }
inline void set_U3CsourceIdU3Ek__BackingField_1(uint64_t value)
{
___U3CsourceIdU3Ek__BackingField_1 = value;
}
inline static int32_t get_offset_of_U3CprojectIdU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(Request_tA1BC1936C153408449C4C207CA12D4358A7477FD, ___U3CprojectIdU3Ek__BackingField_2)); }
inline String_t* get_U3CprojectIdU3Ek__BackingField_2() const { return ___U3CprojectIdU3Ek__BackingField_2; }
inline String_t** get_address_of_U3CprojectIdU3Ek__BackingField_2() { return &___U3CprojectIdU3Ek__BackingField_2; }
inline void set_U3CprojectIdU3Ek__BackingField_2(String_t* value)
{
___U3CprojectIdU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CprojectIdU3Ek__BackingField_2), (void*)value);
}
inline static int32_t get_offset_of_U3CaccessTokenStringU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(Request_tA1BC1936C153408449C4C207CA12D4358A7477FD, ___U3CaccessTokenStringU3Ek__BackingField_3)); }
inline String_t* get_U3CaccessTokenStringU3Ek__BackingField_3() const { return ___U3CaccessTokenStringU3Ek__BackingField_3; }
inline String_t** get_address_of_U3CaccessTokenStringU3Ek__BackingField_3() { return &___U3CaccessTokenStringU3Ek__BackingField_3; }
inline void set_U3CaccessTokenStringU3Ek__BackingField_3(String_t* value)
{
___U3CaccessTokenStringU3Ek__BackingField_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CaccessTokenStringU3Ek__BackingField_3), (void*)value);
}
inline static int32_t get_offset_of_U3CdomainU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(Request_tA1BC1936C153408449C4C207CA12D4358A7477FD, ___U3CdomainU3Ek__BackingField_4)); }
inline int32_t get_U3CdomainU3Ek__BackingField_4() const { return ___U3CdomainU3Ek__BackingField_4; }
inline int32_t* get_address_of_U3CdomainU3Ek__BackingField_4() { return &___U3CdomainU3Ek__BackingField_4; }
inline void set_U3CdomainU3Ek__BackingField_4(int32_t value)
{
___U3CdomainU3Ek__BackingField_4 = value;
}
};
struct Request_tA1BC1936C153408449C4C207CA12D4358A7477FD_StaticFields
{
public:
// System.Int32 UnityEngine.Networking.Match.Request::currentVersion
int32_t ___currentVersion_0;
public:
inline static int32_t get_offset_of_currentVersion_0() { return static_cast<int32_t>(offsetof(Request_tA1BC1936C153408449C4C207CA12D4358A7477FD_StaticFields, ___currentVersion_0)); }
inline int32_t get_currentVersion_0() const { return ___currentVersion_0; }
inline int32_t* get_address_of_currentVersion_0() { return &___currentVersion_0; }
inline void set_currentVersion_0(int32_t value)
{
___currentVersion_0 = value;
}
};
// System.SystemException
struct SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 : public Exception_t
{
public:
public:
};
// System.Net.Sockets.TcpClient
struct TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE : public RuntimeObject
{
public:
// System.Net.Sockets.Socket System.Net.Sockets.TcpClient::m_ClientSocket
Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09 * ___m_ClientSocket_0;
// System.Boolean System.Net.Sockets.TcpClient::m_Active
bool ___m_Active_1;
// System.Net.Sockets.NetworkStream System.Net.Sockets.TcpClient::m_DataStream
NetworkStream_t160A2538024FE3EC707872435D01F1C20B3B1A48 * ___m_DataStream_2;
// System.Net.Sockets.AddressFamily System.Net.Sockets.TcpClient::m_Family
int32_t ___m_Family_3;
// System.Boolean System.Net.Sockets.TcpClient::m_CleanedUp
bool ___m_CleanedUp_4;
public:
inline static int32_t get_offset_of_m_ClientSocket_0() { return static_cast<int32_t>(offsetof(TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE, ___m_ClientSocket_0)); }
inline Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09 * get_m_ClientSocket_0() const { return ___m_ClientSocket_0; }
inline Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09 ** get_address_of_m_ClientSocket_0() { return &___m_ClientSocket_0; }
inline void set_m_ClientSocket_0(Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09 * value)
{
___m_ClientSocket_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ClientSocket_0), (void*)value);
}
inline static int32_t get_offset_of_m_Active_1() { return static_cast<int32_t>(offsetof(TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE, ___m_Active_1)); }
inline bool get_m_Active_1() const { return ___m_Active_1; }
inline bool* get_address_of_m_Active_1() { return &___m_Active_1; }
inline void set_m_Active_1(bool value)
{
___m_Active_1 = value;
}
inline static int32_t get_offset_of_m_DataStream_2() { return static_cast<int32_t>(offsetof(TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE, ___m_DataStream_2)); }
inline NetworkStream_t160A2538024FE3EC707872435D01F1C20B3B1A48 * get_m_DataStream_2() const { return ___m_DataStream_2; }
inline NetworkStream_t160A2538024FE3EC707872435D01F1C20B3B1A48 ** get_address_of_m_DataStream_2() { return &___m_DataStream_2; }
inline void set_m_DataStream_2(NetworkStream_t160A2538024FE3EC707872435D01F1C20B3B1A48 * value)
{
___m_DataStream_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DataStream_2), (void*)value);
}
inline static int32_t get_offset_of_m_Family_3() { return static_cast<int32_t>(offsetof(TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE, ___m_Family_3)); }
inline int32_t get_m_Family_3() const { return ___m_Family_3; }
inline int32_t* get_address_of_m_Family_3() { return &___m_Family_3; }
inline void set_m_Family_3(int32_t value)
{
___m_Family_3 = value;
}
inline static int32_t get_offset_of_m_CleanedUp_4() { return static_cast<int32_t>(offsetof(TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE, ___m_CleanedUp_4)); }
inline bool get_m_CleanedUp_4() const { return ___m_CleanedUp_4; }
inline bool* get_address_of_m_CleanedUp_4() { return &___m_CleanedUp_4; }
inline void set_m_CleanedUp_4(bool value)
{
___m_CleanedUp_4 = value;
}
};
// System.Type
struct Type_t : public MemberInfo_t
{
public:
// System.RuntimeTypeHandle System.Type::_impl
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 ____impl_9;
public:
inline static int32_t get_offset_of__impl_9() { return static_cast<int32_t>(offsetof(Type_t, ____impl_9)); }
inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 get__impl_9() const { return ____impl_9; }
inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 * get_address_of__impl_9() { return &____impl_9; }
inline void set__impl_9(RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 value)
{
____impl_9 = value;
}
};
struct Type_t_StaticFields
{
public:
// System.Reflection.MemberFilter System.Type::FilterAttribute
MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterAttribute_0;
// System.Reflection.MemberFilter System.Type::FilterName
MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterName_1;
// System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterNameIgnoreCase_2;
// System.Object System.Type::Missing
RuntimeObject * ___Missing_3;
// System.Char System.Type::Delimiter
Il2CppChar ___Delimiter_4;
// System.Type[] System.Type::EmptyTypes
TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* ___EmptyTypes_5;
// System.Reflection.Binder System.Type::defaultBinder
Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * ___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_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterAttribute_0() const { return ___FilterAttribute_0; }
inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; }
inline void set_FilterAttribute_0(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value)
{
___FilterAttribute_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilterAttribute_0), (void*)value);
}
inline static int32_t get_offset_of_FilterName_1() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterName_1)); }
inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterName_1() const { return ___FilterName_1; }
inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterName_1() { return &___FilterName_1; }
inline void set_FilterName_1(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value)
{
___FilterName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilterName_1), (void*)value);
}
inline static int32_t get_offset_of_FilterNameIgnoreCase_2() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_2)); }
inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; }
inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; }
inline void set_FilterNameIgnoreCase_2(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value)
{
___FilterNameIgnoreCase_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilterNameIgnoreCase_2), (void*)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((void**)(&___Missing_3), (void*)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_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* get_EmptyTypes_5() const { return ___EmptyTypes_5; }
inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; }
inline void set_EmptyTypes_5(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* value)
{
___EmptyTypes_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___EmptyTypes_5), (void*)value);
}
inline static int32_t get_offset_of_defaultBinder_6() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___defaultBinder_6)); }
inline Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * get_defaultBinder_6() const { return ___defaultBinder_6; }
inline Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; }
inline void set_defaultBinder_6(Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * value)
{
___defaultBinder_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultBinder_6), (void*)value);
}
};
// UnityEngine.Networking.UnityWebRequest
struct UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.Networking.UnityWebRequest::m_Ptr
intptr_t ___m_Ptr_0;
// UnityEngine.Networking.DownloadHandler UnityEngine.Networking.UnityWebRequest::m_DownloadHandler
DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB * ___m_DownloadHandler_1;
// UnityEngine.Networking.UploadHandler UnityEngine.Networking.UnityWebRequest::m_UploadHandler
UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA * ___m_UploadHandler_2;
// UnityEngine.Networking.CertificateHandler UnityEngine.Networking.UnityWebRequest::m_CertificateHandler
CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E * ___m_CertificateHandler_3;
// System.Uri UnityEngine.Networking.UnityWebRequest::m_Uri
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___m_Uri_4;
// System.Boolean UnityEngine.Networking.UnityWebRequest::<disposeCertificateHandlerOnDispose>k__BackingField
bool ___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5;
// System.Boolean UnityEngine.Networking.UnityWebRequest::<disposeDownloadHandlerOnDispose>k__BackingField
bool ___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6;
// System.Boolean UnityEngine.Networking.UnityWebRequest::<disposeUploadHandlerOnDispose>k__BackingField
bool ___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7;
public:
inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E, ___m_Ptr_0)); }
inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; }
inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; }
inline void set_m_Ptr_0(intptr_t value)
{
___m_Ptr_0 = value;
}
inline static int32_t get_offset_of_m_DownloadHandler_1() { return static_cast<int32_t>(offsetof(UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E, ___m_DownloadHandler_1)); }
inline DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB * get_m_DownloadHandler_1() const { return ___m_DownloadHandler_1; }
inline DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB ** get_address_of_m_DownloadHandler_1() { return &___m_DownloadHandler_1; }
inline void set_m_DownloadHandler_1(DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB * value)
{
___m_DownloadHandler_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DownloadHandler_1), (void*)value);
}
inline static int32_t get_offset_of_m_UploadHandler_2() { return static_cast<int32_t>(offsetof(UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E, ___m_UploadHandler_2)); }
inline UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA * get_m_UploadHandler_2() const { return ___m_UploadHandler_2; }
inline UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA ** get_address_of_m_UploadHandler_2() { return &___m_UploadHandler_2; }
inline void set_m_UploadHandler_2(UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA * value)
{
___m_UploadHandler_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_UploadHandler_2), (void*)value);
}
inline static int32_t get_offset_of_m_CertificateHandler_3() { return static_cast<int32_t>(offsetof(UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E, ___m_CertificateHandler_3)); }
inline CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E * get_m_CertificateHandler_3() const { return ___m_CertificateHandler_3; }
inline CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E ** get_address_of_m_CertificateHandler_3() { return &___m_CertificateHandler_3; }
inline void set_m_CertificateHandler_3(CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E * value)
{
___m_CertificateHandler_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CertificateHandler_3), (void*)value);
}
inline static int32_t get_offset_of_m_Uri_4() { return static_cast<int32_t>(offsetof(UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E, ___m_Uri_4)); }
inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * get_m_Uri_4() const { return ___m_Uri_4; }
inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 ** get_address_of_m_Uri_4() { return &___m_Uri_4; }
inline void set_m_Uri_4(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * value)
{
___m_Uri_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Uri_4), (void*)value);
}
inline static int32_t get_offset_of_U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E, ___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5)); }
inline bool get_U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5() const { return ___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5; }
inline bool* get_address_of_U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5() { return &___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5; }
inline void set_U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5(bool value)
{
___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5 = value;
}
inline static int32_t get_offset_of_U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E, ___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6)); }
inline bool get_U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6() const { return ___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6; }
inline bool* get_address_of_U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6() { return &___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6; }
inline void set_U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6(bool value)
{
___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6 = value;
}
inline static int32_t get_offset_of_U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E, ___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7)); }
inline bool get_U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7() const { return ___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7; }
inline bool* get_address_of_U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7() { return &___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7; }
inline void set_U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7(bool value)
{
___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Networking.UnityWebRequest
struct UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E_marshaled_pinvoke
{
intptr_t ___m_Ptr_0;
DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshaled_pinvoke ___m_DownloadHandler_1;
UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA_marshaled_pinvoke ___m_UploadHandler_2;
CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E_marshaled_pinvoke ___m_CertificateHandler_3;
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___m_Uri_4;
int32_t ___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5;
int32_t ___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6;
int32_t ___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7;
};
// Native definition for COM marshalling of UnityEngine.Networking.UnityWebRequest
struct UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E_marshaled_com
{
intptr_t ___m_Ptr_0;
DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshaled_com* ___m_DownloadHandler_1;
UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA_marshaled_com* ___m_UploadHandler_2;
CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E_marshaled_com* ___m_CertificateHandler_3;
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___m_Uri_4;
int32_t ___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5;
int32_t ___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6;
int32_t ___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7;
};
// System.Uri
struct Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 : public RuntimeObject
{
public:
// System.String System.Uri::m_String
String_t* ___m_String_16;
// System.String System.Uri::m_originalUnicodeString
String_t* ___m_originalUnicodeString_17;
// System.UriParser System.Uri::m_Syntax
UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * ___m_Syntax_18;
// System.String System.Uri::m_DnsSafeHost
String_t* ___m_DnsSafeHost_19;
// System.Uri/Flags System.Uri::m_Flags
uint64_t ___m_Flags_20;
// System.Uri/UriInfo System.Uri::m_Info
UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * ___m_Info_21;
// System.Boolean System.Uri::m_iriParsing
bool ___m_iriParsing_22;
public:
inline static int32_t get_offset_of_m_String_16() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_String_16)); }
inline String_t* get_m_String_16() const { return ___m_String_16; }
inline String_t** get_address_of_m_String_16() { return &___m_String_16; }
inline void set_m_String_16(String_t* value)
{
___m_String_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_String_16), (void*)value);
}
inline static int32_t get_offset_of_m_originalUnicodeString_17() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_originalUnicodeString_17)); }
inline String_t* get_m_originalUnicodeString_17() const { return ___m_originalUnicodeString_17; }
inline String_t** get_address_of_m_originalUnicodeString_17() { return &___m_originalUnicodeString_17; }
inline void set_m_originalUnicodeString_17(String_t* value)
{
___m_originalUnicodeString_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_originalUnicodeString_17), (void*)value);
}
inline static int32_t get_offset_of_m_Syntax_18() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_Syntax_18)); }
inline UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * get_m_Syntax_18() const { return ___m_Syntax_18; }
inline UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** get_address_of_m_Syntax_18() { return &___m_Syntax_18; }
inline void set_m_Syntax_18(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * value)
{
___m_Syntax_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Syntax_18), (void*)value);
}
inline static int32_t get_offset_of_m_DnsSafeHost_19() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_DnsSafeHost_19)); }
inline String_t* get_m_DnsSafeHost_19() const { return ___m_DnsSafeHost_19; }
inline String_t** get_address_of_m_DnsSafeHost_19() { return &___m_DnsSafeHost_19; }
inline void set_m_DnsSafeHost_19(String_t* value)
{
___m_DnsSafeHost_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DnsSafeHost_19), (void*)value);
}
inline static int32_t get_offset_of_m_Flags_20() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_Flags_20)); }
inline uint64_t get_m_Flags_20() const { return ___m_Flags_20; }
inline uint64_t* get_address_of_m_Flags_20() { return &___m_Flags_20; }
inline void set_m_Flags_20(uint64_t value)
{
___m_Flags_20 = value;
}
inline static int32_t get_offset_of_m_Info_21() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_Info_21)); }
inline UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * get_m_Info_21() const { return ___m_Info_21; }
inline UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 ** get_address_of_m_Info_21() { return &___m_Info_21; }
inline void set_m_Info_21(UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * value)
{
___m_Info_21 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Info_21), (void*)value);
}
inline static int32_t get_offset_of_m_iriParsing_22() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_iriParsing_22)); }
inline bool get_m_iriParsing_22() const { return ___m_iriParsing_22; }
inline bool* get_address_of_m_iriParsing_22() { return &___m_iriParsing_22; }
inline void set_m_iriParsing_22(bool value)
{
___m_iriParsing_22 = value;
}
};
struct Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields
{
public:
// System.String System.Uri::UriSchemeFile
String_t* ___UriSchemeFile_0;
// System.String System.Uri::UriSchemeFtp
String_t* ___UriSchemeFtp_1;
// System.String System.Uri::UriSchemeGopher
String_t* ___UriSchemeGopher_2;
// System.String System.Uri::UriSchemeHttp
String_t* ___UriSchemeHttp_3;
// System.String System.Uri::UriSchemeHttps
String_t* ___UriSchemeHttps_4;
// System.String System.Uri::UriSchemeWs
String_t* ___UriSchemeWs_5;
// System.String System.Uri::UriSchemeWss
String_t* ___UriSchemeWss_6;
// System.String System.Uri::UriSchemeMailto
String_t* ___UriSchemeMailto_7;
// System.String System.Uri::UriSchemeNews
String_t* ___UriSchemeNews_8;
// System.String System.Uri::UriSchemeNntp
String_t* ___UriSchemeNntp_9;
// System.String System.Uri::UriSchemeNetTcp
String_t* ___UriSchemeNetTcp_10;
// System.String System.Uri::UriSchemeNetPipe
String_t* ___UriSchemeNetPipe_11;
// System.String System.Uri::SchemeDelimiter
String_t* ___SchemeDelimiter_12;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_ConfigInitialized
bool ___s_ConfigInitialized_23;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_ConfigInitializing
bool ___s_ConfigInitializing_24;
// System.UriIdnScope modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_IdnScope
int32_t ___s_IdnScope_25;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_IriParsing
bool ___s_IriParsing_26;
// System.Boolean System.Uri::useDotNetRelativeOrAbsolute
bool ___useDotNetRelativeOrAbsolute_27;
// System.Boolean System.Uri::IsWindowsFileSystem
bool ___IsWindowsFileSystem_29;
// System.Object System.Uri::s_initLock
RuntimeObject * ___s_initLock_30;
// System.Char[] System.Uri::HexLowerChars
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___HexLowerChars_34;
// System.Char[] System.Uri::_WSchars
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ____WSchars_35;
public:
inline static int32_t get_offset_of_UriSchemeFile_0() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeFile_0)); }
inline String_t* get_UriSchemeFile_0() const { return ___UriSchemeFile_0; }
inline String_t** get_address_of_UriSchemeFile_0() { return &___UriSchemeFile_0; }
inline void set_UriSchemeFile_0(String_t* value)
{
___UriSchemeFile_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeFile_0), (void*)value);
}
inline static int32_t get_offset_of_UriSchemeFtp_1() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeFtp_1)); }
inline String_t* get_UriSchemeFtp_1() const { return ___UriSchemeFtp_1; }
inline String_t** get_address_of_UriSchemeFtp_1() { return &___UriSchemeFtp_1; }
inline void set_UriSchemeFtp_1(String_t* value)
{
___UriSchemeFtp_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeFtp_1), (void*)value);
}
inline static int32_t get_offset_of_UriSchemeGopher_2() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeGopher_2)); }
inline String_t* get_UriSchemeGopher_2() const { return ___UriSchemeGopher_2; }
inline String_t** get_address_of_UriSchemeGopher_2() { return &___UriSchemeGopher_2; }
inline void set_UriSchemeGopher_2(String_t* value)
{
___UriSchemeGopher_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeGopher_2), (void*)value);
}
inline static int32_t get_offset_of_UriSchemeHttp_3() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeHttp_3)); }
inline String_t* get_UriSchemeHttp_3() const { return ___UriSchemeHttp_3; }
inline String_t** get_address_of_UriSchemeHttp_3() { return &___UriSchemeHttp_3; }
inline void set_UriSchemeHttp_3(String_t* value)
{
___UriSchemeHttp_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeHttp_3), (void*)value);
}
inline static int32_t get_offset_of_UriSchemeHttps_4() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeHttps_4)); }
inline String_t* get_UriSchemeHttps_4() const { return ___UriSchemeHttps_4; }
inline String_t** get_address_of_UriSchemeHttps_4() { return &___UriSchemeHttps_4; }
inline void set_UriSchemeHttps_4(String_t* value)
{
___UriSchemeHttps_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeHttps_4), (void*)value);
}
inline static int32_t get_offset_of_UriSchemeWs_5() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeWs_5)); }
inline String_t* get_UriSchemeWs_5() const { return ___UriSchemeWs_5; }
inline String_t** get_address_of_UriSchemeWs_5() { return &___UriSchemeWs_5; }
inline void set_UriSchemeWs_5(String_t* value)
{
___UriSchemeWs_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeWs_5), (void*)value);
}
inline static int32_t get_offset_of_UriSchemeWss_6() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeWss_6)); }
inline String_t* get_UriSchemeWss_6() const { return ___UriSchemeWss_6; }
inline String_t** get_address_of_UriSchemeWss_6() { return &___UriSchemeWss_6; }
inline void set_UriSchemeWss_6(String_t* value)
{
___UriSchemeWss_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeWss_6), (void*)value);
}
inline static int32_t get_offset_of_UriSchemeMailto_7() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeMailto_7)); }
inline String_t* get_UriSchemeMailto_7() const { return ___UriSchemeMailto_7; }
inline String_t** get_address_of_UriSchemeMailto_7() { return &___UriSchemeMailto_7; }
inline void set_UriSchemeMailto_7(String_t* value)
{
___UriSchemeMailto_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeMailto_7), (void*)value);
}
inline static int32_t get_offset_of_UriSchemeNews_8() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeNews_8)); }
inline String_t* get_UriSchemeNews_8() const { return ___UriSchemeNews_8; }
inline String_t** get_address_of_UriSchemeNews_8() { return &___UriSchemeNews_8; }
inline void set_UriSchemeNews_8(String_t* value)
{
___UriSchemeNews_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeNews_8), (void*)value);
}
inline static int32_t get_offset_of_UriSchemeNntp_9() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeNntp_9)); }
inline String_t* get_UriSchemeNntp_9() const { return ___UriSchemeNntp_9; }
inline String_t** get_address_of_UriSchemeNntp_9() { return &___UriSchemeNntp_9; }
inline void set_UriSchemeNntp_9(String_t* value)
{
___UriSchemeNntp_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeNntp_9), (void*)value);
}
inline static int32_t get_offset_of_UriSchemeNetTcp_10() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeNetTcp_10)); }
inline String_t* get_UriSchemeNetTcp_10() const { return ___UriSchemeNetTcp_10; }
inline String_t** get_address_of_UriSchemeNetTcp_10() { return &___UriSchemeNetTcp_10; }
inline void set_UriSchemeNetTcp_10(String_t* value)
{
___UriSchemeNetTcp_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeNetTcp_10), (void*)value);
}
inline static int32_t get_offset_of_UriSchemeNetPipe_11() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeNetPipe_11)); }
inline String_t* get_UriSchemeNetPipe_11() const { return ___UriSchemeNetPipe_11; }
inline String_t** get_address_of_UriSchemeNetPipe_11() { return &___UriSchemeNetPipe_11; }
inline void set_UriSchemeNetPipe_11(String_t* value)
{
___UriSchemeNetPipe_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeNetPipe_11), (void*)value);
}
inline static int32_t get_offset_of_SchemeDelimiter_12() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___SchemeDelimiter_12)); }
inline String_t* get_SchemeDelimiter_12() const { return ___SchemeDelimiter_12; }
inline String_t** get_address_of_SchemeDelimiter_12() { return &___SchemeDelimiter_12; }
inline void set_SchemeDelimiter_12(String_t* value)
{
___SchemeDelimiter_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___SchemeDelimiter_12), (void*)value);
}
inline static int32_t get_offset_of_s_ConfigInitialized_23() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___s_ConfigInitialized_23)); }
inline bool get_s_ConfigInitialized_23() const { return ___s_ConfigInitialized_23; }
inline bool* get_address_of_s_ConfigInitialized_23() { return &___s_ConfigInitialized_23; }
inline void set_s_ConfigInitialized_23(bool value)
{
___s_ConfigInitialized_23 = value;
}
inline static int32_t get_offset_of_s_ConfigInitializing_24() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___s_ConfigInitializing_24)); }
inline bool get_s_ConfigInitializing_24() const { return ___s_ConfigInitializing_24; }
inline bool* get_address_of_s_ConfigInitializing_24() { return &___s_ConfigInitializing_24; }
inline void set_s_ConfigInitializing_24(bool value)
{
___s_ConfigInitializing_24 = value;
}
inline static int32_t get_offset_of_s_IdnScope_25() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___s_IdnScope_25)); }
inline int32_t get_s_IdnScope_25() const { return ___s_IdnScope_25; }
inline int32_t* get_address_of_s_IdnScope_25() { return &___s_IdnScope_25; }
inline void set_s_IdnScope_25(int32_t value)
{
___s_IdnScope_25 = value;
}
inline static int32_t get_offset_of_s_IriParsing_26() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___s_IriParsing_26)); }
inline bool get_s_IriParsing_26() const { return ___s_IriParsing_26; }
inline bool* get_address_of_s_IriParsing_26() { return &___s_IriParsing_26; }
inline void set_s_IriParsing_26(bool value)
{
___s_IriParsing_26 = value;
}
inline static int32_t get_offset_of_useDotNetRelativeOrAbsolute_27() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___useDotNetRelativeOrAbsolute_27)); }
inline bool get_useDotNetRelativeOrAbsolute_27() const { return ___useDotNetRelativeOrAbsolute_27; }
inline bool* get_address_of_useDotNetRelativeOrAbsolute_27() { return &___useDotNetRelativeOrAbsolute_27; }
inline void set_useDotNetRelativeOrAbsolute_27(bool value)
{
___useDotNetRelativeOrAbsolute_27 = value;
}
inline static int32_t get_offset_of_IsWindowsFileSystem_29() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___IsWindowsFileSystem_29)); }
inline bool get_IsWindowsFileSystem_29() const { return ___IsWindowsFileSystem_29; }
inline bool* get_address_of_IsWindowsFileSystem_29() { return &___IsWindowsFileSystem_29; }
inline void set_IsWindowsFileSystem_29(bool value)
{
___IsWindowsFileSystem_29 = value;
}
inline static int32_t get_offset_of_s_initLock_30() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___s_initLock_30)); }
inline RuntimeObject * get_s_initLock_30() const { return ___s_initLock_30; }
inline RuntimeObject ** get_address_of_s_initLock_30() { return &___s_initLock_30; }
inline void set_s_initLock_30(RuntimeObject * value)
{
___s_initLock_30 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_initLock_30), (void*)value);
}
inline static int32_t get_offset_of_HexLowerChars_34() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___HexLowerChars_34)); }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_HexLowerChars_34() const { return ___HexLowerChars_34; }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_HexLowerChars_34() { return &___HexLowerChars_34; }
inline void set_HexLowerChars_34(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
{
___HexLowerChars_34 = value;
Il2CppCodeGenWriteBarrier((void**)(&___HexLowerChars_34), (void*)value);
}
inline static int32_t get_offset_of__WSchars_35() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ____WSchars_35)); }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get__WSchars_35() const { return ____WSchars_35; }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of__WSchars_35() { return &____WSchars_35; }
inline void set__WSchars_35(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
{
____WSchars_35 = value;
Il2CppCodeGenWriteBarrier((void**)(&____WSchars_35), (void*)value);
}
};
// UnityEngine.Networking.Match.MatchInfoSnapshot/MatchInfoDirectConnectSnapshot
struct MatchInfoDirectConnectSnapshot_t82741E9963C92FE12F5CB64A40851676E4677F6C : public RuntimeObject
{
public:
// UnityEngine.Networking.Types.NodeID UnityEngine.Networking.Match.MatchInfoSnapshot/MatchInfoDirectConnectSnapshot::<nodeId>k__BackingField
uint16_t ___U3CnodeIdU3Ek__BackingField_0;
// System.String UnityEngine.Networking.Match.MatchInfoSnapshot/MatchInfoDirectConnectSnapshot::<publicAddress>k__BackingField
String_t* ___U3CpublicAddressU3Ek__BackingField_1;
// System.String UnityEngine.Networking.Match.MatchInfoSnapshot/MatchInfoDirectConnectSnapshot::<privateAddress>k__BackingField
String_t* ___U3CprivateAddressU3Ek__BackingField_2;
// UnityEngine.Networking.Types.HostPriority UnityEngine.Networking.Match.MatchInfoSnapshot/MatchInfoDirectConnectSnapshot::<hostPriority>k__BackingField
int32_t ___U3ChostPriorityU3Ek__BackingField_3;
public:
inline static int32_t get_offset_of_U3CnodeIdU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(MatchInfoDirectConnectSnapshot_t82741E9963C92FE12F5CB64A40851676E4677F6C, ___U3CnodeIdU3Ek__BackingField_0)); }
inline uint16_t get_U3CnodeIdU3Ek__BackingField_0() const { return ___U3CnodeIdU3Ek__BackingField_0; }
inline uint16_t* get_address_of_U3CnodeIdU3Ek__BackingField_0() { return &___U3CnodeIdU3Ek__BackingField_0; }
inline void set_U3CnodeIdU3Ek__BackingField_0(uint16_t value)
{
___U3CnodeIdU3Ek__BackingField_0 = value;
}
inline static int32_t get_offset_of_U3CpublicAddressU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(MatchInfoDirectConnectSnapshot_t82741E9963C92FE12F5CB64A40851676E4677F6C, ___U3CpublicAddressU3Ek__BackingField_1)); }
inline String_t* get_U3CpublicAddressU3Ek__BackingField_1() const { return ___U3CpublicAddressU3Ek__BackingField_1; }
inline String_t** get_address_of_U3CpublicAddressU3Ek__BackingField_1() { return &___U3CpublicAddressU3Ek__BackingField_1; }
inline void set_U3CpublicAddressU3Ek__BackingField_1(String_t* value)
{
___U3CpublicAddressU3Ek__BackingField_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CpublicAddressU3Ek__BackingField_1), (void*)value);
}
inline static int32_t get_offset_of_U3CprivateAddressU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(MatchInfoDirectConnectSnapshot_t82741E9963C92FE12F5CB64A40851676E4677F6C, ___U3CprivateAddressU3Ek__BackingField_2)); }
inline String_t* get_U3CprivateAddressU3Ek__BackingField_2() const { return ___U3CprivateAddressU3Ek__BackingField_2; }
inline String_t** get_address_of_U3CprivateAddressU3Ek__BackingField_2() { return &___U3CprivateAddressU3Ek__BackingField_2; }
inline void set_U3CprivateAddressU3Ek__BackingField_2(String_t* value)
{
___U3CprivateAddressU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CprivateAddressU3Ek__BackingField_2), (void*)value);
}
inline static int32_t get_offset_of_U3ChostPriorityU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(MatchInfoDirectConnectSnapshot_t82741E9963C92FE12F5CB64A40851676E4677F6C, ___U3ChostPriorityU3Ek__BackingField_3)); }
inline int32_t get_U3ChostPriorityU3Ek__BackingField_3() const { return ___U3ChostPriorityU3Ek__BackingField_3; }
inline int32_t* get_address_of_U3ChostPriorityU3Ek__BackingField_3() { return &___U3ChostPriorityU3Ek__BackingField_3; }
inline void set_U3ChostPriorityU3Ek__BackingField_3(int32_t value)
{
___U3ChostPriorityU3Ek__BackingField_3 = value;
}
};
// System.Action`1<System.Int32>
struct Action_1_t080BA8EFA9616A494EBB4DD352BFEF943792E05B : public MulticastDelegate_t
{
public:
public:
};
// System.Action`2<System.Int32,System.Int32>
struct Action_2_tCC1DAEC9EBDBAB5891B0CF72C24B016C610EFF39 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Networking.Match.NetworkMatch/DataResponseDelegate`1<System.Collections.Generic.List`1<UnityEngine.Networking.Match.MatchInfoSnapshot>>
struct DataResponseDelegate_1_t363D50BBAED9945828B06A89FE812F0AEF4ABBA1 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Networking.Match.NetworkMatch/DataResponseDelegate`1<UnityEngine.Networking.Match.MatchInfo>
struct DataResponseDelegate_1_t7F092A4A713EEB7DDA047E650E8F690094B5D733 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Networking.Match.NetworkMatch/InternalResponseDelegate`2<UnityEngine.Networking.Match.BasicResponse,UnityEngine.Networking.Match.NetworkMatch/BasicResponseDelegate>
struct InternalResponseDelegate_2_t9E637FC8AD9DFE78C53C017092E174FE94DAC443 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Networking.Match.NetworkMatch/InternalResponseDelegate`2<UnityEngine.Networking.Match.CreateMatchResponse,UnityEngine.Networking.Match.NetworkMatch/DataResponseDelegate`1<UnityEngine.Networking.Match.MatchInfo>>
struct InternalResponseDelegate_2_tF18FC1B00D1213BC60AE7B8E0C6768ECC6864C08 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Networking.Match.NetworkMatch/InternalResponseDelegate`2<UnityEngine.Networking.Match.DropConnectionResponse,UnityEngine.Networking.Match.NetworkMatch/BasicResponseDelegate>
struct InternalResponseDelegate_2_t4C3380D090B02AF491ABFE36875D463E04A81BD7 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Networking.Match.NetworkMatch/InternalResponseDelegate`2<UnityEngine.Networking.Match.JoinMatchResponse,UnityEngine.Networking.Match.NetworkMatch/DataResponseDelegate`1<UnityEngine.Networking.Match.MatchInfo>>
struct InternalResponseDelegate_2_t6995AD33A05E56F1CCEBBF8C0BAD6F4D0E1F4CA9 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Networking.Match.NetworkMatch/InternalResponseDelegate`2<UnityEngine.Networking.Match.ListMatchResponse,UnityEngine.Networking.Match.NetworkMatch/DataResponseDelegate`1<System.Collections.Generic.List`1<UnityEngine.Networking.Match.MatchInfoSnapshot>>>
struct InternalResponseDelegate_2_t516CE3343F339242F578AC9659FD83BD4FAEEAB5 : public MulticastDelegate_t
{
public:
public:
};
// System.ArgumentException
struct ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62
{
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_t505FA8C11E883F2D96C797AD9D396490794DEE00, ___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((void**)(&___m_paramName_17), (void*)value);
}
};
// System.AsyncCallback
struct AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.Behaviour
struct Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9 : public Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684
{
public:
public:
};
// UnityEngine.Networking.Match.CreateMatchRequest
struct CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B : public Request_tA1BC1936C153408449C4C207CA12D4358A7477FD
{
public:
// System.String UnityEngine.Networking.Match.CreateMatchRequest::<name>k__BackingField
String_t* ___U3CnameU3Ek__BackingField_5;
// System.UInt32 UnityEngine.Networking.Match.CreateMatchRequest::<size>k__BackingField
uint32_t ___U3CsizeU3Ek__BackingField_6;
// System.String UnityEngine.Networking.Match.CreateMatchRequest::<publicAddress>k__BackingField
String_t* ___U3CpublicAddressU3Ek__BackingField_7;
// System.String UnityEngine.Networking.Match.CreateMatchRequest::<privateAddress>k__BackingField
String_t* ___U3CprivateAddressU3Ek__BackingField_8;
// System.Int32 UnityEngine.Networking.Match.CreateMatchRequest::<eloScore>k__BackingField
int32_t ___U3CeloScoreU3Ek__BackingField_9;
// System.Boolean UnityEngine.Networking.Match.CreateMatchRequest::<advertise>k__BackingField
bool ___U3CadvertiseU3Ek__BackingField_10;
// System.String UnityEngine.Networking.Match.CreateMatchRequest::<password>k__BackingField
String_t* ___U3CpasswordU3Ek__BackingField_11;
// System.Collections.Generic.Dictionary`2<System.String,System.Int64> UnityEngine.Networking.Match.CreateMatchRequest::<matchAttributes>k__BackingField
Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * ___U3CmatchAttributesU3Ek__BackingField_12;
public:
inline static int32_t get_offset_of_U3CnameU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B, ___U3CnameU3Ek__BackingField_5)); }
inline String_t* get_U3CnameU3Ek__BackingField_5() const { return ___U3CnameU3Ek__BackingField_5; }
inline String_t** get_address_of_U3CnameU3Ek__BackingField_5() { return &___U3CnameU3Ek__BackingField_5; }
inline void set_U3CnameU3Ek__BackingField_5(String_t* value)
{
___U3CnameU3Ek__BackingField_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CnameU3Ek__BackingField_5), (void*)value);
}
inline static int32_t get_offset_of_U3CsizeU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B, ___U3CsizeU3Ek__BackingField_6)); }
inline uint32_t get_U3CsizeU3Ek__BackingField_6() const { return ___U3CsizeU3Ek__BackingField_6; }
inline uint32_t* get_address_of_U3CsizeU3Ek__BackingField_6() { return &___U3CsizeU3Ek__BackingField_6; }
inline void set_U3CsizeU3Ek__BackingField_6(uint32_t value)
{
___U3CsizeU3Ek__BackingField_6 = value;
}
inline static int32_t get_offset_of_U3CpublicAddressU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B, ___U3CpublicAddressU3Ek__BackingField_7)); }
inline String_t* get_U3CpublicAddressU3Ek__BackingField_7() const { return ___U3CpublicAddressU3Ek__BackingField_7; }
inline String_t** get_address_of_U3CpublicAddressU3Ek__BackingField_7() { return &___U3CpublicAddressU3Ek__BackingField_7; }
inline void set_U3CpublicAddressU3Ek__BackingField_7(String_t* value)
{
___U3CpublicAddressU3Ek__BackingField_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CpublicAddressU3Ek__BackingField_7), (void*)value);
}
inline static int32_t get_offset_of_U3CprivateAddressU3Ek__BackingField_8() { return static_cast<int32_t>(offsetof(CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B, ___U3CprivateAddressU3Ek__BackingField_8)); }
inline String_t* get_U3CprivateAddressU3Ek__BackingField_8() const { return ___U3CprivateAddressU3Ek__BackingField_8; }
inline String_t** get_address_of_U3CprivateAddressU3Ek__BackingField_8() { return &___U3CprivateAddressU3Ek__BackingField_8; }
inline void set_U3CprivateAddressU3Ek__BackingField_8(String_t* value)
{
___U3CprivateAddressU3Ek__BackingField_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CprivateAddressU3Ek__BackingField_8), (void*)value);
}
inline static int32_t get_offset_of_U3CeloScoreU3Ek__BackingField_9() { return static_cast<int32_t>(offsetof(CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B, ___U3CeloScoreU3Ek__BackingField_9)); }
inline int32_t get_U3CeloScoreU3Ek__BackingField_9() const { return ___U3CeloScoreU3Ek__BackingField_9; }
inline int32_t* get_address_of_U3CeloScoreU3Ek__BackingField_9() { return &___U3CeloScoreU3Ek__BackingField_9; }
inline void set_U3CeloScoreU3Ek__BackingField_9(int32_t value)
{
___U3CeloScoreU3Ek__BackingField_9 = value;
}
inline static int32_t get_offset_of_U3CadvertiseU3Ek__BackingField_10() { return static_cast<int32_t>(offsetof(CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B, ___U3CadvertiseU3Ek__BackingField_10)); }
inline bool get_U3CadvertiseU3Ek__BackingField_10() const { return ___U3CadvertiseU3Ek__BackingField_10; }
inline bool* get_address_of_U3CadvertiseU3Ek__BackingField_10() { return &___U3CadvertiseU3Ek__BackingField_10; }
inline void set_U3CadvertiseU3Ek__BackingField_10(bool value)
{
___U3CadvertiseU3Ek__BackingField_10 = value;
}
inline static int32_t get_offset_of_U3CpasswordU3Ek__BackingField_11() { return static_cast<int32_t>(offsetof(CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B, ___U3CpasswordU3Ek__BackingField_11)); }
inline String_t* get_U3CpasswordU3Ek__BackingField_11() const { return ___U3CpasswordU3Ek__BackingField_11; }
inline String_t** get_address_of_U3CpasswordU3Ek__BackingField_11() { return &___U3CpasswordU3Ek__BackingField_11; }
inline void set_U3CpasswordU3Ek__BackingField_11(String_t* value)
{
___U3CpasswordU3Ek__BackingField_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CpasswordU3Ek__BackingField_11), (void*)value);
}
inline static int32_t get_offset_of_U3CmatchAttributesU3Ek__BackingField_12() { return static_cast<int32_t>(offsetof(CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B, ___U3CmatchAttributesU3Ek__BackingField_12)); }
inline Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * get_U3CmatchAttributesU3Ek__BackingField_12() const { return ___U3CmatchAttributesU3Ek__BackingField_12; }
inline Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 ** get_address_of_U3CmatchAttributesU3Ek__BackingField_12() { return &___U3CmatchAttributesU3Ek__BackingField_12; }
inline void set_U3CmatchAttributesU3Ek__BackingField_12(Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * value)
{
___U3CmatchAttributesU3Ek__BackingField_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CmatchAttributesU3Ek__BackingField_12), (void*)value);
}
};
// UnityEngine.Networking.Match.DestroyMatchRequest
struct DestroyMatchRequest_t3AC8FF769CC153C425D7D76492693F00A76B81D0 : public Request_tA1BC1936C153408449C4C207CA12D4358A7477FD
{
public:
// UnityEngine.Networking.Types.NetworkID UnityEngine.Networking.Match.DestroyMatchRequest::<networkId>k__BackingField
uint64_t ___U3CnetworkIdU3Ek__BackingField_5;
public:
inline static int32_t get_offset_of_U3CnetworkIdU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(DestroyMatchRequest_t3AC8FF769CC153C425D7D76492693F00A76B81D0, ___U3CnetworkIdU3Ek__BackingField_5)); }
inline uint64_t get_U3CnetworkIdU3Ek__BackingField_5() const { return ___U3CnetworkIdU3Ek__BackingField_5; }
inline uint64_t* get_address_of_U3CnetworkIdU3Ek__BackingField_5() { return &___U3CnetworkIdU3Ek__BackingField_5; }
inline void set_U3CnetworkIdU3Ek__BackingField_5(uint64_t value)
{
___U3CnetworkIdU3Ek__BackingField_5 = value;
}
};
// UnityEngine.Networking.Match.DropConnectionRequest
struct DropConnectionRequest_t0BADA55738E8857768EE57C92027957659C0E8D1 : public Request_tA1BC1936C153408449C4C207CA12D4358A7477FD
{
public:
// UnityEngine.Networking.Types.NetworkID UnityEngine.Networking.Match.DropConnectionRequest::<networkId>k__BackingField
uint64_t ___U3CnetworkIdU3Ek__BackingField_5;
// UnityEngine.Networking.Types.NodeID UnityEngine.Networking.Match.DropConnectionRequest::<nodeId>k__BackingField
uint16_t ___U3CnodeIdU3Ek__BackingField_6;
public:
inline static int32_t get_offset_of_U3CnetworkIdU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(DropConnectionRequest_t0BADA55738E8857768EE57C92027957659C0E8D1, ___U3CnetworkIdU3Ek__BackingField_5)); }
inline uint64_t get_U3CnetworkIdU3Ek__BackingField_5() const { return ___U3CnetworkIdU3Ek__BackingField_5; }
inline uint64_t* get_address_of_U3CnetworkIdU3Ek__BackingField_5() { return &___U3CnetworkIdU3Ek__BackingField_5; }
inline void set_U3CnetworkIdU3Ek__BackingField_5(uint64_t value)
{
___U3CnetworkIdU3Ek__BackingField_5 = value;
}
inline static int32_t get_offset_of_U3CnodeIdU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(DropConnectionRequest_t0BADA55738E8857768EE57C92027957659C0E8D1, ___U3CnodeIdU3Ek__BackingField_6)); }
inline uint16_t get_U3CnodeIdU3Ek__BackingField_6() const { return ___U3CnodeIdU3Ek__BackingField_6; }
inline uint16_t* get_address_of_U3CnodeIdU3Ek__BackingField_6() { return &___U3CnodeIdU3Ek__BackingField_6; }
inline void set_U3CnodeIdU3Ek__BackingField_6(uint16_t value)
{
___U3CnodeIdU3Ek__BackingField_6 = value;
}
};
// System.InvalidOperationException
struct InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62
{
public:
public:
};
// UnityEngine.Networking.Match.JoinMatchRequest
struct JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A : public Request_tA1BC1936C153408449C4C207CA12D4358A7477FD
{
public:
// UnityEngine.Networking.Types.NetworkID UnityEngine.Networking.Match.JoinMatchRequest::<networkId>k__BackingField
uint64_t ___U3CnetworkIdU3Ek__BackingField_5;
// System.String UnityEngine.Networking.Match.JoinMatchRequest::<publicAddress>k__BackingField
String_t* ___U3CpublicAddressU3Ek__BackingField_6;
// System.String UnityEngine.Networking.Match.JoinMatchRequest::<privateAddress>k__BackingField
String_t* ___U3CprivateAddressU3Ek__BackingField_7;
// System.Int32 UnityEngine.Networking.Match.JoinMatchRequest::<eloScore>k__BackingField
int32_t ___U3CeloScoreU3Ek__BackingField_8;
// System.String UnityEngine.Networking.Match.JoinMatchRequest::<password>k__BackingField
String_t* ___U3CpasswordU3Ek__BackingField_9;
public:
inline static int32_t get_offset_of_U3CnetworkIdU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A, ___U3CnetworkIdU3Ek__BackingField_5)); }
inline uint64_t get_U3CnetworkIdU3Ek__BackingField_5() const { return ___U3CnetworkIdU3Ek__BackingField_5; }
inline uint64_t* get_address_of_U3CnetworkIdU3Ek__BackingField_5() { return &___U3CnetworkIdU3Ek__BackingField_5; }
inline void set_U3CnetworkIdU3Ek__BackingField_5(uint64_t value)
{
___U3CnetworkIdU3Ek__BackingField_5 = value;
}
inline static int32_t get_offset_of_U3CpublicAddressU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A, ___U3CpublicAddressU3Ek__BackingField_6)); }
inline String_t* get_U3CpublicAddressU3Ek__BackingField_6() const { return ___U3CpublicAddressU3Ek__BackingField_6; }
inline String_t** get_address_of_U3CpublicAddressU3Ek__BackingField_6() { return &___U3CpublicAddressU3Ek__BackingField_6; }
inline void set_U3CpublicAddressU3Ek__BackingField_6(String_t* value)
{
___U3CpublicAddressU3Ek__BackingField_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CpublicAddressU3Ek__BackingField_6), (void*)value);
}
inline static int32_t get_offset_of_U3CprivateAddressU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A, ___U3CprivateAddressU3Ek__BackingField_7)); }
inline String_t* get_U3CprivateAddressU3Ek__BackingField_7() const { return ___U3CprivateAddressU3Ek__BackingField_7; }
inline String_t** get_address_of_U3CprivateAddressU3Ek__BackingField_7() { return &___U3CprivateAddressU3Ek__BackingField_7; }
inline void set_U3CprivateAddressU3Ek__BackingField_7(String_t* value)
{
___U3CprivateAddressU3Ek__BackingField_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CprivateAddressU3Ek__BackingField_7), (void*)value);
}
inline static int32_t get_offset_of_U3CeloScoreU3Ek__BackingField_8() { return static_cast<int32_t>(offsetof(JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A, ___U3CeloScoreU3Ek__BackingField_8)); }
inline int32_t get_U3CeloScoreU3Ek__BackingField_8() const { return ___U3CeloScoreU3Ek__BackingField_8; }
inline int32_t* get_address_of_U3CeloScoreU3Ek__BackingField_8() { return &___U3CeloScoreU3Ek__BackingField_8; }
inline void set_U3CeloScoreU3Ek__BackingField_8(int32_t value)
{
___U3CeloScoreU3Ek__BackingField_8 = value;
}
inline static int32_t get_offset_of_U3CpasswordU3Ek__BackingField_9() { return static_cast<int32_t>(offsetof(JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A, ___U3CpasswordU3Ek__BackingField_9)); }
inline String_t* get_U3CpasswordU3Ek__BackingField_9() const { return ___U3CpasswordU3Ek__BackingField_9; }
inline String_t** get_address_of_U3CpasswordU3Ek__BackingField_9() { return &___U3CpasswordU3Ek__BackingField_9; }
inline void set_U3CpasswordU3Ek__BackingField_9(String_t* value)
{
___U3CpasswordU3Ek__BackingField_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CpasswordU3Ek__BackingField_9), (void*)value);
}
};
// UnityEngine.Networking.Match.ListMatchRequest
struct ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 : public Request_tA1BC1936C153408449C4C207CA12D4358A7477FD
{
public:
// System.Int32 UnityEngine.Networking.Match.ListMatchRequest::<pageSize>k__BackingField
int32_t ___U3CpageSizeU3Ek__BackingField_5;
// System.Int32 UnityEngine.Networking.Match.ListMatchRequest::<pageNum>k__BackingField
int32_t ___U3CpageNumU3Ek__BackingField_6;
// System.String UnityEngine.Networking.Match.ListMatchRequest::<nameFilter>k__BackingField
String_t* ___U3CnameFilterU3Ek__BackingField_7;
// System.Boolean UnityEngine.Networking.Match.ListMatchRequest::<filterOutPrivateMatches>k__BackingField
bool ___U3CfilterOutPrivateMatchesU3Ek__BackingField_8;
// System.Int32 UnityEngine.Networking.Match.ListMatchRequest::<eloScore>k__BackingField
int32_t ___U3CeloScoreU3Ek__BackingField_9;
// System.Collections.Generic.Dictionary`2<System.String,System.Int64> UnityEngine.Networking.Match.ListMatchRequest::<matchAttributeFilterLessThan>k__BackingField
Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * ___U3CmatchAttributeFilterLessThanU3Ek__BackingField_10;
// System.Collections.Generic.Dictionary`2<System.String,System.Int64> UnityEngine.Networking.Match.ListMatchRequest::<matchAttributeFilterEqualTo>k__BackingField
Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * ___U3CmatchAttributeFilterEqualToU3Ek__BackingField_11;
// System.Collections.Generic.Dictionary`2<System.String,System.Int64> UnityEngine.Networking.Match.ListMatchRequest::<matchAttributeFilterGreaterThan>k__BackingField
Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * ___U3CmatchAttributeFilterGreaterThanU3Ek__BackingField_12;
public:
inline static int32_t get_offset_of_U3CpageSizeU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30, ___U3CpageSizeU3Ek__BackingField_5)); }
inline int32_t get_U3CpageSizeU3Ek__BackingField_5() const { return ___U3CpageSizeU3Ek__BackingField_5; }
inline int32_t* get_address_of_U3CpageSizeU3Ek__BackingField_5() { return &___U3CpageSizeU3Ek__BackingField_5; }
inline void set_U3CpageSizeU3Ek__BackingField_5(int32_t value)
{
___U3CpageSizeU3Ek__BackingField_5 = value;
}
inline static int32_t get_offset_of_U3CpageNumU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30, ___U3CpageNumU3Ek__BackingField_6)); }
inline int32_t get_U3CpageNumU3Ek__BackingField_6() const { return ___U3CpageNumU3Ek__BackingField_6; }
inline int32_t* get_address_of_U3CpageNumU3Ek__BackingField_6() { return &___U3CpageNumU3Ek__BackingField_6; }
inline void set_U3CpageNumU3Ek__BackingField_6(int32_t value)
{
___U3CpageNumU3Ek__BackingField_6 = value;
}
inline static int32_t get_offset_of_U3CnameFilterU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30, ___U3CnameFilterU3Ek__BackingField_7)); }
inline String_t* get_U3CnameFilterU3Ek__BackingField_7() const { return ___U3CnameFilterU3Ek__BackingField_7; }
inline String_t** get_address_of_U3CnameFilterU3Ek__BackingField_7() { return &___U3CnameFilterU3Ek__BackingField_7; }
inline void set_U3CnameFilterU3Ek__BackingField_7(String_t* value)
{
___U3CnameFilterU3Ek__BackingField_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CnameFilterU3Ek__BackingField_7), (void*)value);
}
inline static int32_t get_offset_of_U3CfilterOutPrivateMatchesU3Ek__BackingField_8() { return static_cast<int32_t>(offsetof(ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30, ___U3CfilterOutPrivateMatchesU3Ek__BackingField_8)); }
inline bool get_U3CfilterOutPrivateMatchesU3Ek__BackingField_8() const { return ___U3CfilterOutPrivateMatchesU3Ek__BackingField_8; }
inline bool* get_address_of_U3CfilterOutPrivateMatchesU3Ek__BackingField_8() { return &___U3CfilterOutPrivateMatchesU3Ek__BackingField_8; }
inline void set_U3CfilterOutPrivateMatchesU3Ek__BackingField_8(bool value)
{
___U3CfilterOutPrivateMatchesU3Ek__BackingField_8 = value;
}
inline static int32_t get_offset_of_U3CeloScoreU3Ek__BackingField_9() { return static_cast<int32_t>(offsetof(ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30, ___U3CeloScoreU3Ek__BackingField_9)); }
inline int32_t get_U3CeloScoreU3Ek__BackingField_9() const { return ___U3CeloScoreU3Ek__BackingField_9; }
inline int32_t* get_address_of_U3CeloScoreU3Ek__BackingField_9() { return &___U3CeloScoreU3Ek__BackingField_9; }
inline void set_U3CeloScoreU3Ek__BackingField_9(int32_t value)
{
___U3CeloScoreU3Ek__BackingField_9 = value;
}
inline static int32_t get_offset_of_U3CmatchAttributeFilterLessThanU3Ek__BackingField_10() { return static_cast<int32_t>(offsetof(ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30, ___U3CmatchAttributeFilterLessThanU3Ek__BackingField_10)); }
inline Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * get_U3CmatchAttributeFilterLessThanU3Ek__BackingField_10() const { return ___U3CmatchAttributeFilterLessThanU3Ek__BackingField_10; }
inline Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 ** get_address_of_U3CmatchAttributeFilterLessThanU3Ek__BackingField_10() { return &___U3CmatchAttributeFilterLessThanU3Ek__BackingField_10; }
inline void set_U3CmatchAttributeFilterLessThanU3Ek__BackingField_10(Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * value)
{
___U3CmatchAttributeFilterLessThanU3Ek__BackingField_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CmatchAttributeFilterLessThanU3Ek__BackingField_10), (void*)value);
}
inline static int32_t get_offset_of_U3CmatchAttributeFilterEqualToU3Ek__BackingField_11() { return static_cast<int32_t>(offsetof(ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30, ___U3CmatchAttributeFilterEqualToU3Ek__BackingField_11)); }
inline Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * get_U3CmatchAttributeFilterEqualToU3Ek__BackingField_11() const { return ___U3CmatchAttributeFilterEqualToU3Ek__BackingField_11; }
inline Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 ** get_address_of_U3CmatchAttributeFilterEqualToU3Ek__BackingField_11() { return &___U3CmatchAttributeFilterEqualToU3Ek__BackingField_11; }
inline void set_U3CmatchAttributeFilterEqualToU3Ek__BackingField_11(Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * value)
{
___U3CmatchAttributeFilterEqualToU3Ek__BackingField_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CmatchAttributeFilterEqualToU3Ek__BackingField_11), (void*)value);
}
inline static int32_t get_offset_of_U3CmatchAttributeFilterGreaterThanU3Ek__BackingField_12() { return static_cast<int32_t>(offsetof(ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30, ___U3CmatchAttributeFilterGreaterThanU3Ek__BackingField_12)); }
inline Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * get_U3CmatchAttributeFilterGreaterThanU3Ek__BackingField_12() const { return ___U3CmatchAttributeFilterGreaterThanU3Ek__BackingField_12; }
inline Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 ** get_address_of_U3CmatchAttributeFilterGreaterThanU3Ek__BackingField_12() { return &___U3CmatchAttributeFilterGreaterThanU3Ek__BackingField_12; }
inline void set_U3CmatchAttributeFilterGreaterThanU3Ek__BackingField_12(Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * value)
{
___U3CmatchAttributeFilterGreaterThanU3Ek__BackingField_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CmatchAttributeFilterGreaterThanU3Ek__BackingField_12), (void*)value);
}
};
// System.NullReferenceException
struct NullReferenceException_t44B4F3CDE3111E74591952B8BE8707B28866D724 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62
{
public:
public:
};
// UnityEngine.Networking.Match.SetMatchAttributesRequest
struct SetMatchAttributesRequest_t22EC5198C69E086FC5BC8DB4E249E4B90FAFF2E2 : public Request_tA1BC1936C153408449C4C207CA12D4358A7477FD
{
public:
// UnityEngine.Networking.Types.NetworkID UnityEngine.Networking.Match.SetMatchAttributesRequest::<networkId>k__BackingField
uint64_t ___U3CnetworkIdU3Ek__BackingField_5;
// System.Boolean UnityEngine.Networking.Match.SetMatchAttributesRequest::<isListed>k__BackingField
bool ___U3CisListedU3Ek__BackingField_6;
public:
inline static int32_t get_offset_of_U3CnetworkIdU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(SetMatchAttributesRequest_t22EC5198C69E086FC5BC8DB4E249E4B90FAFF2E2, ___U3CnetworkIdU3Ek__BackingField_5)); }
inline uint64_t get_U3CnetworkIdU3Ek__BackingField_5() const { return ___U3CnetworkIdU3Ek__BackingField_5; }
inline uint64_t* get_address_of_U3CnetworkIdU3Ek__BackingField_5() { return &___U3CnetworkIdU3Ek__BackingField_5; }
inline void set_U3CnetworkIdU3Ek__BackingField_5(uint64_t value)
{
___U3CnetworkIdU3Ek__BackingField_5 = value;
}
inline static int32_t get_offset_of_U3CisListedU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(SetMatchAttributesRequest_t22EC5198C69E086FC5BC8DB4E249E4B90FAFF2E2, ___U3CisListedU3Ek__BackingField_6)); }
inline bool get_U3CisListedU3Ek__BackingField_6() const { return ___U3CisListedU3Ek__BackingField_6; }
inline bool* get_address_of_U3CisListedU3Ek__BackingField_6() { return &___U3CisListedU3Ek__BackingField_6; }
inline void set_U3CisListedU3Ek__BackingField_6(bool value)
{
___U3CisListedU3Ek__BackingField_6 = value;
}
};
// UnityEngine.Networking.Match.NetworkMatch/BasicResponseDelegate
struct BasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A : public MulticastDelegate_t
{
public:
public:
};
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 : public ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00
{
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_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8, ___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((void**)(&___m_actualValue_19), (void*)value);
}
};
struct ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_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_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_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((void**)(&____rangeMessage_18), (void*)value);
}
};
// UnityEngine.MonoBehaviour
struct MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A : public Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9
{
public:
public:
};
// UnityEngine.Networking.Match.NetworkMatch
struct NetworkMatch_t520F80EBC98ADEE375884B456429236E5BBA0F3B : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A
{
public:
// System.Uri UnityEngine.Networking.Match.NetworkMatch::m_BaseUri
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___m_BaseUri_4;
public:
inline static int32_t get_offset_of_m_BaseUri_4() { return static_cast<int32_t>(offsetof(NetworkMatch_t520F80EBC98ADEE375884B456429236E5BBA0F3B, ___m_BaseUri_4)); }
inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * get_m_BaseUri_4() const { return ___m_BaseUri_4; }
inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 ** get_address_of_m_BaseUri_4() { return &___m_BaseUri_4; }
inline void set_m_BaseUri_4(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * value)
{
___m_BaseUri_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_BaseUri_4), (void*)value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// System.Byte[]
struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726 : 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.Object[]
struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE : public RuntimeArray
{
public:
ALIGN_FIELD (8) RuntimeObject * m_Items[1];
public:
inline RuntimeObject * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RuntimeObject ** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, RuntimeObject * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline RuntimeObject * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RuntimeObject ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Delegate[]
struct DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Delegate_t * m_Items[1];
public:
inline Delegate_t * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Delegate_t ** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Delegate_t * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Delegate_t * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Delegate_t ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Delegate_t * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Void System.Collections.Generic.List`1<System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method);
// System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<System.Object>::GetEnumerator()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 List_1_GetEnumerator_m1739A5E25DF502A6984F9B98CFCAC2D3FABCF233_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method);
// !0 System.Collections.Generic.List`1/Enumerator<System.Object>::get_Current()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m9C4EBBD2108B51885E750F927D7936290C8E20EE_gshared_inline (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<System.Object>::Add(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Add_mE5B3CBB3A625606D9BC4337FEAAF1D66BCB6F96E_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, RuntimeObject * ___item0, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Object>::MoveNext()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2E56233762839CE55C67E00AC8DD3D4D3F6C0DF0_gshared (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1/Enumerator<System.Object>::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mCFB225D9E5E597A1CC8F958E53BEA1367D8AC7B8_gshared (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, const RuntimeMethod* method);
// System.Int32 System.Collections.Generic.List`1<System.Object>::get_Count()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method);
// !0 System.Collections.Generic.List`1<System.Object>::get_Item(System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * List_1_get_Item_mF00B574E58FB078BB753B05A3B86DD0A7A266B63_gshared_inline (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, int32_t ___index0, const RuntimeMethod* method);
// System.Collections.ObjectModel.ReadOnlyCollection`1<!0> System.Collections.Generic.List`1<System.Byte>::AsReadOnly()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyCollection_1_t88367D6A0A0435F3B7F5A180EAE18DC0323A14E7 * List_1_AsReadOnly_m5B294C3B51BB4CD52DCA4DC740F05BA7A873859E_gshared (List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF * __this, const RuntimeMethod* method);
// System.Int32 System.Collections.Generic.Dictionary`2<System.Object,System.Int64>::get_Count()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Dictionary_2_get_Count_m1E0B48196844CC81B3CBB413F0ACD4FE391AB9CB_gshared (Dictionary_2_tB6017CA19F64B79150E4F8D7B60616B73A28B9A2 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::set_Item(!0,!1)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_mE6BF870B04922441F9F2760E782DEE6EE682615A_gshared (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.NetworkMatch/InternalResponseDelegate`2<System.Object,System.Object>::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalResponseDelegate_2__ctor_m27DC3C2064C66120EDC086E2B385F818193A9E91_gshared (InternalResponseDelegate_2_tE52F5D14AB5761A54C4DB06DD5E7D61FAC960830 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
// System.Collections.IEnumerator UnityEngine.Networking.Match.NetworkMatch::ProcessMatchResponse<System.Object,System.Object>(UnityEngine.Networking.UnityWebRequest,UnityEngine.Networking.Match.NetworkMatch/InternalResponseDelegate`2<JSONRESPONSE,USERRESPONSEDELEGATETYPE>,USERRESPONSEDELEGATETYPE)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* NetworkMatch_ProcessMatchResponse_TisRuntimeObject_TisRuntimeObject_m07C8AFF99ACC623B15B76BC7A1F1E3D40633885C_gshared (NetworkMatch_t520F80EBC98ADEE375884B456429236E5BBA0F3B * __this, UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * ___client0, InternalResponseDelegate_2_tE52F5D14AB5761A54C4DB06DD5E7D61FAC960830 * ___internalCallback1, RuntimeObject * ___userCallback2, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.NetworkMatch/DataResponseDelegate`1<System.Object>::Invoke(System.Boolean,System.String,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DataResponseDelegate_1_Invoke_m8101DBE1A97A7E1A7762DCECB0A9138FD12BAED4_gshared (DataResponseDelegate_1_t29FEA8353ECE9ACE5427C1AFCD2445E3C4ABB734 * __this, bool ___success0, String_t* ___extendedInfo1, RuntimeObject * ___responseData2, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2<System.UInt64Enum,System.Object>::ContainsKey(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsKey_mD6F501A8918224BB6AF0D31664A2EB7A30E01CA7_gshared (Dictionary_2_tBDB65AB25BDC951CC13D7797B156DEBB9C1575E5 * __this, uint64_t ___key0, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2<System.UInt64Enum,System.Object>::Remove(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_Remove_m276EF8288F37B1453611959B09FA022AFAF92A3B_gshared (Dictionary_2_tBDB65AB25BDC951CC13D7797B156DEBB9C1575E5 * __this, uint64_t ___key0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.UInt64Enum,System.Object>::Add(!0,!1)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Add_mCC06FF610D911C8BA69694102546E3E5AC2A9350_gshared (Dictionary_2_tBDB65AB25BDC951CC13D7797B156DEBB9C1575E5 * __this, uint64_t ___key0, RuntimeObject * ___value1, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2<System.UInt64Enum,System.Object>::TryGetValue(!0,!1&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_mC5F9112328E1B7D2F0227FCA3DA4ADBEF45DFA01_gshared (Dictionary_2_tBDB65AB25BDC951CC13D7797B156DEBB9C1575E5 * __this, uint64_t ___key0, RuntimeObject ** ___value1, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.UInt64Enum,System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m5FBC2BB88090791E9435F6F1437AAF58C6C3CB77_gshared (Dictionary_2_tBDB65AB25BDC951CC13D7797B156DEBB9C1575E5 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.Response::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Response__ctor_m06ECAE7C56D0AAAE1271485B6C7C520049201C9E (Response_tEF5C8607FB2DC4F1E0E744F3F9BAD3869B4BCD6C * __this, const RuntimeMethod* method);
// System.Void System.Object::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405 (RuntimeObject * __this, const RuntimeMethod* method);
// System.Void System.NullReferenceException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NullReferenceException__ctor_mF1733893E10358B400E817297D686A48AB3FB7B3 (NullReferenceException_t44B4F3CDE3111E74591952B8BE8707B28866D724 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<UnityEngine.Networking.ChannelQOS>::.ctor()
inline void List_1__ctor_m0F98CE6F7E0141E6A7388E6DA3FCC2F93802C219 (List_1_t4A161C6204A381DADE144FA5F63CF0E3E7E11E33 * __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t4A161C6204A381DADE144FA5F63CF0E3E7E11E33 *, const RuntimeMethod*))List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1<System.Collections.Generic.List`1<System.Byte>>::.ctor()
inline void List_1__ctor_m07E75EC513A2A1B607C7C94D32F9F1DD52F9DC81 (List_1_t74C85CD2BEE64FE69AE8BF4BAB62A4186A73655B * __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t74C85CD2BEE64FE69AE8BF4BAB62A4186A73655B *, const RuntimeMethod*))List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared)(__this, method);
}
// System.UInt16 UnityEngine.Networking.ConnectionConfig::get_MaxCombinedReliableMessageSize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t ConnectionConfig_get_MaxCombinedReliableMessageSize_m9165A4E3AE23CDADE7CAEFA3FAC29401A6449CD1 (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method);
// System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<UnityEngine.Networking.ChannelQOS>::GetEnumerator()
inline Enumerator_t2F8B0C9500483A43B42F26A09356CEA1E8162787 List_1_GetEnumerator_mBC12FB54B3BD6D46D3D0041FC837BB9B5ABD5224 (List_1_t4A161C6204A381DADE144FA5F63CF0E3E7E11E33 * __this, const RuntimeMethod* method)
{
return (( Enumerator_t2F8B0C9500483A43B42F26A09356CEA1E8162787 (*) (List_1_t4A161C6204A381DADE144FA5F63CF0E3E7E11E33 *, const RuntimeMethod*))List_1_GetEnumerator_m1739A5E25DF502A6984F9B98CFCAC2D3FABCF233_gshared)(__this, method);
}
// !0 System.Collections.Generic.List`1/Enumerator<UnityEngine.Networking.ChannelQOS>::get_Current()
inline ChannelQOS_tF55C4AC4858FAFCFBDA366C6F6B1E2B35DFFF3DE * Enumerator_get_Current_mEC015BBE1981CD48D16AA43753CE5A52D359E57F_inline (Enumerator_t2F8B0C9500483A43B42F26A09356CEA1E8162787 * __this, const RuntimeMethod* method)
{
return (( ChannelQOS_tF55C4AC4858FAFCFBDA366C6F6B1E2B35DFFF3DE * (*) (Enumerator_t2F8B0C9500483A43B42F26A09356CEA1E8162787 *, const RuntimeMethod*))Enumerator_get_Current_m9C4EBBD2108B51885E750F927D7936290C8E20EE_gshared_inline)(__this, method);
}
// System.Void UnityEngine.Networking.ChannelQOS::.ctor(UnityEngine.Networking.ChannelQOS)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChannelQOS__ctor_m885E633D2A1D64E13E087DA039943C767E575DA8 (ChannelQOS_tF55C4AC4858FAFCFBDA366C6F6B1E2B35DFFF3DE * __this, ChannelQOS_tF55C4AC4858FAFCFBDA366C6F6B1E2B35DFFF3DE * ___channel0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<UnityEngine.Networking.ChannelQOS>::Add(!0)
inline void List_1_Add_m04CCA815BA538CCC717F5B0CEABEE87777C02191 (List_1_t4A161C6204A381DADE144FA5F63CF0E3E7E11E33 * __this, ChannelQOS_tF55C4AC4858FAFCFBDA366C6F6B1E2B35DFFF3DE * ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t4A161C6204A381DADE144FA5F63CF0E3E7E11E33 *, ChannelQOS_tF55C4AC4858FAFCFBDA366C6F6B1E2B35DFFF3DE *, const RuntimeMethod*))List_1_Add_mE5B3CBB3A625606D9BC4337FEAAF1D66BCB6F96E_gshared)(__this, ___item0, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Networking.ChannelQOS>::MoveNext()
inline bool Enumerator_MoveNext_mCF03F3EA00D810696408ABDA570EF4EF0976E030 (Enumerator_t2F8B0C9500483A43B42F26A09356CEA1E8162787 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t2F8B0C9500483A43B42F26A09356CEA1E8162787 *, const RuntimeMethod*))Enumerator_MoveNext_m2E56233762839CE55C67E00AC8DD3D4D3F6C0DF0_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Networking.ChannelQOS>::Dispose()
inline void Enumerator_Dispose_mCA5AF94E5CDC291C5024A38E2660C8CB19682EE0 (Enumerator_t2F8B0C9500483A43B42F26A09356CEA1E8162787 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t2F8B0C9500483A43B42F26A09356CEA1E8162787 *, const RuntimeMethod*))Enumerator_Dispose_mCFB225D9E5E597A1CC8F958E53BEA1367D8AC7B8_gshared)(__this, method);
}
// System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<System.Collections.Generic.List`1<System.Byte>>::GetEnumerator()
inline Enumerator_t0340BD53573C77700ED3FF138F75977DCBDF1DEE List_1_GetEnumerator_m795565AF9DAB5243B5CCB29CA6129D67F619C88E (List_1_t74C85CD2BEE64FE69AE8BF4BAB62A4186A73655B * __this, const RuntimeMethod* method)
{
return (( Enumerator_t0340BD53573C77700ED3FF138F75977DCBDF1DEE (*) (List_1_t74C85CD2BEE64FE69AE8BF4BAB62A4186A73655B *, const RuntimeMethod*))List_1_GetEnumerator_m1739A5E25DF502A6984F9B98CFCAC2D3FABCF233_gshared)(__this, method);
}
// !0 System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.List`1<System.Byte>>::get_Current()
inline List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF * Enumerator_get_Current_m9C6BB00A24C9CB4946A9E76569A445E8173A2B01_inline (Enumerator_t0340BD53573C77700ED3FF138F75977DCBDF1DEE * __this, const RuntimeMethod* method)
{
return (( List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF * (*) (Enumerator_t0340BD53573C77700ED3FF138F75977DCBDF1DEE *, const RuntimeMethod*))Enumerator_get_Current_m9C4EBBD2108B51885E750F927D7936290C8E20EE_gshared_inline)(__this, method);
}
// System.Void System.Collections.Generic.List`1<System.Collections.Generic.List`1<System.Byte>>::Add(!0)
inline void List_1_Add_m395F91C48816169EBE7E930528A1A8CE600FD060 (List_1_t74C85CD2BEE64FE69AE8BF4BAB62A4186A73655B * __this, List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF * ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t74C85CD2BEE64FE69AE8BF4BAB62A4186A73655B *, List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF *, const RuntimeMethod*))List_1_Add_mE5B3CBB3A625606D9BC4337FEAAF1D66BCB6F96E_gshared)(__this, ___item0, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.List`1<System.Byte>>::MoveNext()
inline bool Enumerator_MoveNext_mD073B0C912CA5B28B0809D9F5CA2848BDC176469 (Enumerator_t0340BD53573C77700ED3FF138F75977DCBDF1DEE * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t0340BD53573C77700ED3FF138F75977DCBDF1DEE *, const RuntimeMethod*))Enumerator_MoveNext_m2E56233762839CE55C67E00AC8DD3D4D3F6C0DF0_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.List`1<System.Byte>>::Dispose()
inline void Enumerator_Dispose_mC56BDC16EF132C1FF68A2DE409C105AD6B6EDB92 (Enumerator_t0340BD53573C77700ED3FF138F75977DCBDF1DEE * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t0340BD53573C77700ED3FF138F75977DCBDF1DEE *, const RuntimeMethod*))Enumerator_Dispose_mCFB225D9E5E597A1CC8F958E53BEA1367D8AC7B8_gshared)(__this, method);
}
// System.String System.Int32::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411 (int32_t* __this, const RuntimeMethod* method);
// System.String System.String::Concat(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B (String_t* ___str00, String_t* ___str11, const RuntimeMethod* method);
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * __this, String_t* ___paramName0, const RuntimeMethod* method);
// System.Int32 System.Collections.Generic.List`1<UnityEngine.Networking.ChannelQOS>::get_Count()
inline int32_t List_1_get_Count_m94137B698864A43E9459A65D4BE18DA911CA9939_inline (List_1_t4A161C6204A381DADE144FA5F63CF0E3E7E11E33 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t4A161C6204A381DADE144FA5F63CF0E3E7E11E33 *, const RuntimeMethod*))List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline)(__this, method);
}
// UnityEngine.RuntimePlatform UnityEngine.Application::get_platform()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Application_get_platform_mB22F7F39CDD46667C3EF64507E55BB7DA18F66C4 (const RuntimeMethod* method);
// System.Int32 System.Collections.Generic.List`1<System.Collections.Generic.List`1<System.Byte>>::get_Count()
inline int32_t List_1_get_Count_mB609C617D427D5EC266B009014EB41732F164150_inline (List_1_t74C85CD2BEE64FE69AE8BF4BAB62A4186A73655B * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t74C85CD2BEE64FE69AE8BF4BAB62A4186A73655B *, const RuntimeMethod*))List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline)(__this, method);
}
// System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E (RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 ___handle0, const RuntimeMethod* method);
// System.Boolean System.Enum::IsDefined(System.Type,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enum_IsDefined_m70E955627155998B426145940DE105ECEF213B96 (Type_t * ___enumType0, RuntimeObject * ___value1, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.ChannelQOS::.ctor(UnityEngine.Networking.QosType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChannelQOS__ctor_m27A6808139CF080A838D4BEB5F0E10246017335A (ChannelQOS_tF55C4AC4858FAFCFBDA366C6F6B1E2B35DFFF3DE * __this, int32_t ___value0, const RuntimeMethod* method);
// !0 System.Collections.Generic.List`1<UnityEngine.Networking.ChannelQOS>::get_Item(System.Int32)
inline ChannelQOS_tF55C4AC4858FAFCFBDA366C6F6B1E2B35DFFF3DE * List_1_get_Item_mEA12AB396EABC73A3E2E57BE233BC77763A61BFA_inline (List_1_t4A161C6204A381DADE144FA5F63CF0E3E7E11E33 * __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( ChannelQOS_tF55C4AC4858FAFCFBDA366C6F6B1E2B35DFFF3DE * (*) (List_1_t4A161C6204A381DADE144FA5F63CF0E3E7E11E33 *, int32_t, const RuntimeMethod*))List_1_get_Item_mF00B574E58FB078BB753B05A3B86DD0A7A266B63_gshared_inline)(__this, ___index0, method);
}
// UnityEngine.Networking.QosType UnityEngine.Networking.ChannelQOS::get_QOS()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ChannelQOS_get_QOS_mF5244DCF956770207F0E45F59EE694FA0647917B (ChannelQOS_tF55C4AC4858FAFCFBDA366C6F6B1E2B35DFFF3DE * __this, const RuntimeMethod* method);
// !0 System.Collections.Generic.List`1<System.Collections.Generic.List`1<System.Byte>>::get_Item(System.Int32)
inline List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF * List_1_get_Item_m68E7DB4815C63A275BDC11FF71FACD9235A7C562_inline (List_1_t74C85CD2BEE64FE69AE8BF4BAB62A4186A73655B * __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF * (*) (List_1_t74C85CD2BEE64FE69AE8BF4BAB62A4186A73655B *, int32_t, const RuntimeMethod*))List_1_get_Item_mF00B574E58FB078BB753B05A3B86DD0A7A266B63_gshared_inline)(__this, ___index0, method);
}
// System.Collections.ObjectModel.ReadOnlyCollection`1<!0> System.Collections.Generic.List`1<System.Byte>::AsReadOnly()
inline ReadOnlyCollection_1_t88367D6A0A0435F3B7F5A180EAE18DC0323A14E7 * List_1_AsReadOnly_m5B294C3B51BB4CD52DCA4DC740F05BA7A873859E (List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF * __this, const RuntimeMethod* method)
{
return (( ReadOnlyCollection_1_t88367D6A0A0435F3B7F5A180EAE18DC0323A14E7 * (*) (List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF *, const RuntimeMethod*))List_1_AsReadOnly_m5B294C3B51BB4CD52DCA4DC740F05BA7A873859E_gshared)(__this, method);
}
// System.IntPtr UnityEngine.Networking.ConnectionConfigInternal::InternalCreate()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t ConnectionConfigInternal_InternalCreate_m57E00EAD6FD85A7AEE88C4BABD2B76F028D26229 (const RuntimeMethod* method);
// System.UInt16 UnityEngine.Networking.ConnectionConfig::get_PacketSize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t ConnectionConfig_get_PacketSize_mF111FD026B1D2B89D5254278F879E81B3700AD87 (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.Networking.ConnectionConfigInternal::SetPacketSize(System.UInt16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConnectionConfigInternal_SetPacketSize_m53D38ACE88594D14DFB61BF99B2109FA35F5E4B3 (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, uint16_t ___value0, const RuntimeMethod* method);
// System.UInt16 UnityEngine.Networking.ConnectionConfig::get_FragmentSize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t ConnectionConfig_get_FragmentSize_m484053C0601EC4C11376B231262171C4514D8B62 (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.ConnectionConfigInternal::set_FragmentSize(System.UInt16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfigInternal_set_FragmentSize_m81A3C2E79C8CA333D4901A34E253916986870678 (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, uint16_t ___value0, const RuntimeMethod* method);
// System.UInt32 UnityEngine.Networking.ConnectionConfig::get_ResendTimeout()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t ConnectionConfig_get_ResendTimeout_mDF1507B518A47887277E53F0930DC1CA5A973FCF (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.ConnectionConfigInternal::set_ResendTimeout(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfigInternal_set_ResendTimeout_m52B7443A4BF5D1DC15E41BC1E3EA4B0890D06413 (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, uint32_t ___value0, const RuntimeMethod* method);
// System.UInt32 UnityEngine.Networking.ConnectionConfig::get_DisconnectTimeout()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t ConnectionConfig_get_DisconnectTimeout_m173B79C0C029B50A4250352F1219E8631D40586C (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.ConnectionConfigInternal::set_DisconnectTimeout(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfigInternal_set_DisconnectTimeout_m7B620F41E9B1F610CA2616939BBE5C636C073369 (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, uint32_t ___value0, const RuntimeMethod* method);
// System.UInt32 UnityEngine.Networking.ConnectionConfig::get_ConnectTimeout()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t ConnectionConfig_get_ConnectTimeout_mDCE83595DFC763E869D55FF4F120CFE7BE5E84DF (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.ConnectionConfigInternal::set_ConnectTimeout(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfigInternal_set_ConnectTimeout_mC4F96B2E33DB75AB6CFB251E28816294F4D629F2 (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, uint32_t ___value0, const RuntimeMethod* method);
// System.UInt32 UnityEngine.Networking.ConnectionConfig::get_MinUpdateTimeout()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t ConnectionConfig_get_MinUpdateTimeout_mAF0AEE59A6FDED5C2B37111FC8BB7875A6E13F65 (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.ConnectionConfigInternal::set_MinUpdateTimeout(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfigInternal_set_MinUpdateTimeout_mF4DA20AA8EAF8A4E82DA4471483A5B8A3601B2F7 (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, uint32_t ___value0, const RuntimeMethod* method);
// System.UInt32 UnityEngine.Networking.ConnectionConfig::get_PingTimeout()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t ConnectionConfig_get_PingTimeout_mC060D30B64D197917007D81E2DE93C3A85B2E601 (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.ConnectionConfigInternal::set_PingTimeout(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfigInternal_set_PingTimeout_m882CF8571F3F466C026F84FB48FD7BCAFC41FBF3 (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, uint32_t ___value0, const RuntimeMethod* method);
// System.UInt32 UnityEngine.Networking.ConnectionConfig::get_ReducedPingTimeout()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t ConnectionConfig_get_ReducedPingTimeout_m332075F8A61A51FBB2738BAE9DDD4313A507D979 (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.ConnectionConfigInternal::set_ReducedPingTimeout(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfigInternal_set_ReducedPingTimeout_m10956CD170C63491A8D04F4A95D048090831E8CE (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, uint32_t ___value0, const RuntimeMethod* method);
// System.UInt32 UnityEngine.Networking.ConnectionConfig::get_AllCostTimeout()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t ConnectionConfig_get_AllCostTimeout_m123FA29854A46EFE05048577E3B01FDB386472F9 (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.ConnectionConfigInternal::set_AllCostTimeout(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfigInternal_set_AllCostTimeout_m37CC810E66808CDCFBDA2DA785169927C8FE5553 (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, uint32_t ___value0, const RuntimeMethod* method);
// System.Byte UnityEngine.Networking.ConnectionConfig::get_NetworkDropThreshold()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t ConnectionConfig_get_NetworkDropThreshold_m73408CF1E684E9331CAB60214C1A4202FE38162F (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.ConnectionConfigInternal::set_NetworkDropThreshold(System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfigInternal_set_NetworkDropThreshold_m0E9A369B4625FDBE833B23D9A792E8CD111F5AF4 (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, uint8_t ___value0, const RuntimeMethod* method);
// System.Byte UnityEngine.Networking.ConnectionConfig::get_OverflowDropThreshold()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t ConnectionConfig_get_OverflowDropThreshold_m230A2787733CA84DC31F44330506F00E9F8B2833 (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.ConnectionConfigInternal::set_OverflowDropThreshold(System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfigInternal_set_OverflowDropThreshold_m4AD127798D39BC9B8034EC35DA235EAC85D87B18 (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, uint8_t ___value0, const RuntimeMethod* method);
// System.Byte UnityEngine.Networking.ConnectionConfig::get_MaxConnectionAttempt()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t ConnectionConfig_get_MaxConnectionAttempt_m00AABC69DE80B89AB2710361768544F0D380787B (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.ConnectionConfigInternal::set_MaxConnectionAttempt(System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfigInternal_set_MaxConnectionAttempt_m6A5DFC749DB71E05E4167E11ED8D1930D34A20A9 (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, uint8_t ___value0, const RuntimeMethod* method);
// System.UInt32 UnityEngine.Networking.ConnectionConfig::get_AckDelay()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t ConnectionConfig_get_AckDelay_m191F064DBF69779F634408012F65C838A823D7AA (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.ConnectionConfigInternal::set_AckDelay(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfigInternal_set_AckDelay_m39BC6D36B69AE86B8587FEDCA9B6232F7A9D1960 (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, uint32_t ___value0, const RuntimeMethod* method);
// System.UInt32 UnityEngine.Networking.ConnectionConfig::get_SendDelay()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t ConnectionConfig_get_SendDelay_mBEEE56DA650F2C5EC85E72A6422A2CD2A2FAD228 (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.ConnectionConfigInternal::set_SendDelay(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfigInternal_set_SendDelay_m6CDA97F9DB65D815562064D9FC5C6E92FDD735E3 (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, uint32_t ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.ConnectionConfigInternal::set_MaxCombinedReliableMessageSize(System.UInt16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfigInternal_set_MaxCombinedReliableMessageSize_mAD08AF5D34269E4648AA1630AE3524A0747433CC (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, uint16_t ___value0, const RuntimeMethod* method);
// System.UInt16 UnityEngine.Networking.ConnectionConfig::get_MaxCombinedReliableMessageCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t ConnectionConfig_get_MaxCombinedReliableMessageCount_mEC5C1ABA687D86DC5FCD020FEEC6423860AE2EE9 (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.ConnectionConfigInternal::set_MaxCombinedReliableMessageCount(System.UInt16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfigInternal_set_MaxCombinedReliableMessageCount_m477651B41F261E81BC43D3C854AA6664EBF7B541 (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, uint16_t ___value0, const RuntimeMethod* method);
// System.UInt16 UnityEngine.Networking.ConnectionConfig::get_MaxSentMessageQueueSize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t ConnectionConfig_get_MaxSentMessageQueueSize_m98D5D25BA1DD83103EDAEDBC8F11653CFFA8D848 (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.ConnectionConfigInternal::set_MaxSentMessageQueueSize(System.UInt16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfigInternal_set_MaxSentMessageQueueSize_m517343266C198505E7BD899AD4489AD6BD593AE1 (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, uint16_t ___value0, const RuntimeMethod* method);
// UnityEngine.Networking.ConnectionAcksType UnityEngine.Networking.ConnectionConfig::get_AcksType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConnectionConfig_get_AcksType_mE938983722B1EDBEB1ABD7D1292BDDA8847299FE (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.ConnectionConfigInternal::set_AcksType(System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfigInternal_set_AcksType_m9CB8EE193EE3AEDB5CC5E63D3DE5D768450523EE (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, uint8_t ___value0, const RuntimeMethod* method);
// System.Boolean UnityEngine.Networking.ConnectionConfig::get_UsePlatformSpecificProtocols()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConnectionConfig_get_UsePlatformSpecificProtocols_m4BE9E4483FAB5F015D560C2A31942F522B35AB85 (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.ConnectionConfigInternal::set_UsePlatformSpecificProtocols(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfigInternal_set_UsePlatformSpecificProtocols_m65F8757AA1E47534DD74441D8325B7F33320985E (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, bool ___value0, const RuntimeMethod* method);
// System.UInt32 UnityEngine.Networking.ConnectionConfig::get_InitialBandwidth()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t ConnectionConfig_get_InitialBandwidth_m7616A3F25FE1459562849DA4EB0F12BA80CB420B (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.ConnectionConfigInternal::set_InitialBandwidth(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfigInternal_set_InitialBandwidth_mF6348D56F65CED75B5809F6AE996C2DDB8903244 (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, uint32_t ___value0, const RuntimeMethod* method);
// System.Single UnityEngine.Networking.ConnectionConfig::get_BandwidthPeakFactor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float ConnectionConfig_get_BandwidthPeakFactor_mA1E5982C49A375FA7E347CAA42B2C89FD08B8B51 (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.ConnectionConfigInternal::set_BandwidthPeakFactor(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfigInternal_set_BandwidthPeakFactor_m3C43D6BD419D87787D18860D3927E7E1ABE1F9B7 (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, float ___value0, const RuntimeMethod* method);
// System.UInt16 UnityEngine.Networking.ConnectionConfig::get_WebSocketReceiveBufferMaxSize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t ConnectionConfig_get_WebSocketReceiveBufferMaxSize_m1B9EE2B09699C09651DF5DFEBB46199D33ADBC5B (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.ConnectionConfigInternal::set_WebSocketReceiveBufferMaxSize(System.UInt16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfigInternal_set_WebSocketReceiveBufferMaxSize_m02AD41DCF144B4EE187F705916F85BE3C1D5895F (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, uint16_t ___value0, const RuntimeMethod* method);
// System.UInt32 UnityEngine.Networking.ConnectionConfig::get_UdpSocketReceiveBufferMaxSize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t ConnectionConfig_get_UdpSocketReceiveBufferMaxSize_m55D6B396EA136644276C0752FA02B613F5915985 (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.ConnectionConfigInternal::set_UdpSocketReceiveBufferMaxSize(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfigInternal_set_UdpSocketReceiveBufferMaxSize_m04A8CBD90C0CD7F0E888BC09D78EA9378C74B019 (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, uint32_t ___value0, const RuntimeMethod* method);
// System.String UnityEngine.Networking.ConnectionConfig::get_SSLCertFilePath()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ConnectionConfig_get_SSLCertFilePath_m6AAC33A8DDF7077A4AFFBDCE3688E7589EF77425 (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.Networking.ConnectionConfigInternal::SetSSLCertFilePath(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConnectionConfigInternal_SetSSLCertFilePath_mE1BB6420E3CB9775AD1E55561D9973D7DA1794A4 (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, String_t* ___value0, const RuntimeMethod* method);
// System.String UnityEngine.Networking.ConnectionConfig::get_SSLPrivateKeyFilePath()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ConnectionConfig_get_SSLPrivateKeyFilePath_mAF3636A8502E6ADCCEB47FDDECC35C767E80118B (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.Networking.ConnectionConfigInternal::SetSSLPrivateKeyFilePath(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConnectionConfigInternal_SetSSLPrivateKeyFilePath_m97560CCDF198A876997E44D363018BA65C5929EB (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, String_t* ___value0, const RuntimeMethod* method);
// System.String UnityEngine.Networking.ConnectionConfig::get_SSLCAFilePath()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ConnectionConfig_get_SSLCAFilePath_m4C6D3C771C6E55B6789F03944B6A7DBDFCD4E9B8 (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.Networking.ConnectionConfigInternal::SetSSLCAFilePath(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConnectionConfigInternal_SetSSLCAFilePath_mC553B8CCC370BFC28CC8D26437CC6B1F0FD60315 (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, String_t* ___value0, const RuntimeMethod* method);
// UnityEngine.Networking.QosType UnityEngine.Networking.ConnectionConfig::GetChannel(System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConnectionConfig_GetChannel_m0473DB76B5FE9E1992A3500F37F3C88ACB6DA3D4 (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, uint8_t ___idx0, const RuntimeMethod* method);
// System.Byte UnityEngine.Networking.ConnectionConfigInternal::AddChannel(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t ConnectionConfigInternal_AddChannel_m6F0C7412C1B07FA22276ED59872E1B5280C07C14 (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Int32 UnityEngine.Networking.ConnectionConfig::get_ChannelCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConnectionConfig_get_ChannelCount_m932C1B881D3046BC18899207F5796698B7539C7C (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method);
// System.Collections.Generic.IList`1<System.Byte> UnityEngine.Networking.ConnectionConfig::GetSharedOrderChannels(System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConnectionConfig_GetSharedOrderChannels_m7DB0D9738F33E044807142B8C2CBB50DDA42A9EC (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, uint8_t ___idx0, const RuntimeMethod* method);
// System.Boolean UnityEngine.Networking.ConnectionConfigInternal::MakeChannelsSharedOrder(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConnectionConfigInternal_MakeChannelsSharedOrder_m386F46D817576653643A908AAAA1AB6DA136707E (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___values0, const RuntimeMethod* method);
// System.Int32 UnityEngine.Networking.ConnectionConfig::get_SharedOrderChannelCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConnectionConfig_get_SharedOrderChannelCount_m406DE1A3A83A15FCC644746D4C7A6180339A4853 (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method);
// System.Boolean System.IntPtr::op_Inequality(System.IntPtr,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IntPtr_op_Inequality_m212AF0E66AA81FEDC982B1C8A44ADDA24B995EB8 (intptr_t ___value10, intptr_t ___value21, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.ConnectionConfigInternal::InternalDestroy(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfigInternal_InternalDestroy_mA5ED8454D97B55A9BF3FDDC6DDE09D31E6DF20E9 (intptr_t ___ptr0, const RuntimeMethod* method);
// System.Void System.Object::Finalize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object_Finalize_mC59C83CF4F7707E425FFA6362931C25D4C36676A (RuntimeObject * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.ConnectionSimulatorConfig::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionSimulatorConfig_Dispose_m9148148B8B0005349005627999D7B3AF72020D95 (ConnectionSimulatorConfig_t1AE9575EDB85F7792DE5F22A4E096A4A08AEB935 * __this, const RuntimeMethod* method);
// System.IntPtr UnityEngine.Networking.ConnectionSimulatorConfigInternal::InternalCreate(System.Int32,System.Int32,System.Int32,System.Int32,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t ConnectionSimulatorConfigInternal_InternalCreate_m941ADF075D35E80C29D1F9DCEB3C54BC2371FF32 (int32_t ___outMinDelay0, int32_t ___outAvgDelay1, int32_t ___inMinDelay2, int32_t ___inAvgDelay3, float ___packetLossPercentage4, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.ConnectionSimulatorConfigInternal::InternalDestroy(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionSimulatorConfigInternal_InternalDestroy_m7B65F68816CC967FE0EFE2A8C2AE6DC9F81D7EB4 (intptr_t ___ptr0, const RuntimeMethod* method);
// System.Void System.GC::SuppressFinalize(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GC_SuppressFinalize_mEE880E988C6AF32AA2F67F2D62715281EAA41555 (RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.String UnityEngine.Networking.Match.Request::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Request_ToString_m4F51206BC7123325B3D8278BD9852C3D07FA7B26 (Request_tA1BC1936C153408449C4C207CA12D4358A7477FD * __this, const RuntimeMethod* method);
// System.String UnityEngine.Networking.Match.CreateMatchRequest::get_name()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* CreateMatchRequest_get_name_mDB5F67F45F566D176B840FFAABAF0A5072DB56A0_inline (CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * __this, const RuntimeMethod* method);
// System.UInt32 UnityEngine.Networking.Match.CreateMatchRequest::get_size()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t CreateMatchRequest_get_size_mD2818C6FA732FB6DAF315D665C3FF9E097F023EA_inline (CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * __this, const RuntimeMethod* method);
// System.String UnityEngine.Networking.Match.CreateMatchRequest::get_publicAddress()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* CreateMatchRequest_get_publicAddress_m500540EAFB70C64014B9DD733BCC7726473D006B_inline (CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * __this, const RuntimeMethod* method);
// System.String UnityEngine.Networking.Match.CreateMatchRequest::get_privateAddress()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* CreateMatchRequest_get_privateAddress_m2EA118F357CCA5EC32295C777B54469422D94AFA_inline (CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.Networking.Match.CreateMatchRequest::get_eloScore()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t CreateMatchRequest_get_eloScore_m71DD51B39B031421C1D43029075DD796137A05B7_inline (CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.Networking.Match.CreateMatchRequest::get_advertise()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool CreateMatchRequest_get_advertise_mC6F7A0C2EC590E0A5A5F6C02CB515D2F7FC5E044_inline (CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * __this, const RuntimeMethod* method);
// System.String UnityEngine.Networking.Match.CreateMatchRequest::get_password()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* CreateMatchRequest_get_password_mA3A25AEF3994F75CC2663A003D6B762E53470A90_inline (CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * __this, const RuntimeMethod* method);
// System.Boolean System.String::IsNullOrEmpty(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_IsNullOrEmpty_m9AFBB5335B441B94E884B8A9D4A27AD60E3D7F7C (String_t* ___value0, const RuntimeMethod* method);
// System.Collections.Generic.Dictionary`2<System.String,System.Int64> UnityEngine.Networking.Match.CreateMatchRequest::get_matchAttributes()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * CreateMatchRequest_get_matchAttributes_m5D65A1EAD26A45C236EDA8FEB400B542093C678E_inline (CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * __this, const RuntimeMethod* method);
// System.Int32 System.Collections.Generic.Dictionary`2<System.String,System.Int64>::get_Count()
inline int32_t Dictionary_2_get_Count_mCA15DE17B2ACAB05732DDD414A316442CC19E5FD (Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 *, const RuntimeMethod*))Dictionary_2_get_Count_m1E0B48196844CC81B3CBB413F0ACD4FE391AB9CB_gshared)(__this, method);
}
// System.String UnityEngine.UnityString::Format(System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityString_Format_m7A07C068ED408DD06F634070770FB55F13AA4EC9 (String_t* ___fmt0, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___args1, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.Request::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Request__ctor_m810E8C9AB15C195E42B5D49B95CE805DA5568993 (Request_tA1BC1936C153408449C4C207CA12D4358A7477FD * __this, const RuntimeMethod* method);
// System.String UnityEngine.Networking.Match.Response::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Response_ToString_mE1871457C6916CD280D417857BBE8081EDE5865A (Response_tEF5C8607FB2DC4F1E0E744F3F9BAD3869B4BCD6C * __this, const RuntimeMethod* method);
// System.String System.UInt64::ToString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UInt64_ToString_mFE48F1D174A1F741AB0795C1164BF45BF37F86E6 (uint64_t* __this, String_t* ___format0, const RuntimeMethod* method);
// System.String System.Enum::ToString(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Enum_ToString_m4F8C0882A819B1D1E3286920D14CC649200F24A1 (RuntimeObject * __this, String_t* ___format0, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.BasicResponse::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BasicResponse__ctor_m4C5BA6FDCDC2F728E13005AA17173DA8D5C7D18F (BasicResponse_t9579CCF321F1A381924A886EC1A6496DAC3FC484 * __this, const RuntimeMethod* method);
// UnityEngine.Networking.Types.NetworkID UnityEngine.Networking.Match.DestroyMatchRequest::get_networkId()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint64_t DestroyMatchRequest_get_networkId_m9A908C64FB1730FC9198940FE08C380E33C43455_inline (DestroyMatchRequest_t3AC8FF769CC153C425D7D76492693F00A76B81D0 * __this, const RuntimeMethod* method);
// UnityEngine.Networking.Types.NetworkID UnityEngine.Networking.Match.DropConnectionRequest::get_networkId()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint64_t DropConnectionRequest_get_networkId_m58D7BA9439346AD5B49293F499BED9C155C652CF_inline (DropConnectionRequest_t0BADA55738E8857768EE57C92027957659C0E8D1 * __this, const RuntimeMethod* method);
// UnityEngine.Networking.Types.NodeID UnityEngine.Networking.Match.DropConnectionRequest::get_nodeId()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint16_t DropConnectionRequest_get_nodeId_m7A1E99C6F45D801A6C6D6BC0F3D18AAC6424F6C8_inline (DropConnectionRequest_t0BADA55738E8857768EE57C92027957659C0E8D1 * __this, const RuntimeMethod* method);
// System.IntPtr UnityEngine.Networking.GlobalConfigInternal::InternalCreate()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t GlobalConfigInternal_InternalCreate_m68D5446714022799455D7C09C48BF18DC0EDEC90 (const RuntimeMethod* method);
// System.UInt32 UnityEngine.Networking.GlobalConfig::get_ThreadAwakeTimeout()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t GlobalConfig_get_ThreadAwakeTimeout_mD0B48A1B07BA6851A019B0EF69BE4FBBDDBC7552 (GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.GlobalConfigInternal::set_ThreadAwakeTimeout(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GlobalConfigInternal_set_ThreadAwakeTimeout_mE59BEC296BB2878EC5DBB317ADCA406852E49FCE (GlobalConfigInternal_t0F07F384FD03D7CE842BC781D7C747B5579F680F * __this, uint32_t ___value0, const RuntimeMethod* method);
// UnityEngine.Networking.ReactorModel UnityEngine.Networking.GlobalConfig::get_ReactorModel()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GlobalConfig_get_ReactorModel_m17AC0B9C3BFE6A06D5ED6287840B318B07FD7963 (GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.GlobalConfigInternal::set_ReactorModel(System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GlobalConfigInternal_set_ReactorModel_m370F4A7B85736E2A9A92760B8491B019E9309A8D (GlobalConfigInternal_t0F07F384FD03D7CE842BC781D7C747B5579F680F * __this, uint8_t ___value0, const RuntimeMethod* method);
// System.UInt16 UnityEngine.Networking.GlobalConfig::get_ReactorMaximumReceivedMessages()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t GlobalConfig_get_ReactorMaximumReceivedMessages_m587841C2DBAEA01D10B66F333CA376C3A61B6C33 (GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.GlobalConfigInternal::set_ReactorMaximumReceivedMessages(System.UInt16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GlobalConfigInternal_set_ReactorMaximumReceivedMessages_mF4B7494442A14194F16E04F41373E9CA2B7CC620 (GlobalConfigInternal_t0F07F384FD03D7CE842BC781D7C747B5579F680F * __this, uint16_t ___value0, const RuntimeMethod* method);
// System.UInt16 UnityEngine.Networking.GlobalConfig::get_ReactorMaximumSentMessages()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t GlobalConfig_get_ReactorMaximumSentMessages_m71E2AF5B8E8A777099B2FC9746F965935B95CD41 (GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.GlobalConfigInternal::set_ReactorMaximumSentMessages(System.UInt16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GlobalConfigInternal_set_ReactorMaximumSentMessages_m0869AE8CD72F55DDB159F32E1730B4C07B28C6CE (GlobalConfigInternal_t0F07F384FD03D7CE842BC781D7C747B5579F680F * __this, uint16_t ___value0, const RuntimeMethod* method);
// System.UInt16 UnityEngine.Networking.GlobalConfig::get_MaxPacketSize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t GlobalConfig_get_MaxPacketSize_mFC9F967F3D5F7BCA7AEF0CEA2A764FAC75884387 (GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.GlobalConfigInternal::set_MaxPacketSize(System.UInt16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GlobalConfigInternal_set_MaxPacketSize_m8C6143A73542A29FE2E2A299CC03BB1081C62D02 (GlobalConfigInternal_t0F07F384FD03D7CE842BC781D7C747B5579F680F * __this, uint16_t ___value0, const RuntimeMethod* method);
// System.UInt16 UnityEngine.Networking.GlobalConfig::get_MaxHosts()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t GlobalConfig_get_MaxHosts_m96B921B2164D801914BC596559B3373962DB4CC2 (GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.GlobalConfigInternal::set_MaxHosts(System.UInt16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GlobalConfigInternal_set_MaxHosts_m6E4D5FA13061E1D5BB12BAE76C2DE4CE1A48FA99 (GlobalConfigInternal_t0F07F384FD03D7CE842BC781D7C747B5579F680F * __this, uint16_t ___value0, const RuntimeMethod* method);
// System.Byte UnityEngine.Networking.GlobalConfig::get_ThreadPoolSize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t GlobalConfig_get_ThreadPoolSize_m3F884581529F6474406313B001354AA23885682C (GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Debug::LogWarning(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogWarning_m24085D883C9E74D7AB423F0625E13259923960E7 (RuntimeObject * ___message0, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.GlobalConfigInternal::set_ThreadPoolSize(System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GlobalConfigInternal_set_ThreadPoolSize_mA30F9BEAE6BBE337D7AA5CF85F22DE65A1AAB641 (GlobalConfigInternal_t0F07F384FD03D7CE842BC781D7C747B5579F680F * __this, uint8_t ___value0, const RuntimeMethod* method);
// System.UInt32 UnityEngine.Networking.GlobalConfig::get_MinTimerTimeout()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t GlobalConfig_get_MinTimerTimeout_m108C611D76E95BDA013E819EF86BCF902F977A7B (GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.GlobalConfigInternal::set_MinTimerTimeout(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GlobalConfigInternal_set_MinTimerTimeout_m2330A74449E798E17D30A685CC9AF0FDBAED53E1 (GlobalConfigInternal_t0F07F384FD03D7CE842BC781D7C747B5579F680F * __this, uint32_t ___value0, const RuntimeMethod* method);
// System.UInt32 UnityEngine.Networking.GlobalConfig::get_MaxTimerTimeout()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t GlobalConfig_get_MaxTimerTimeout_mCD5050AC59E0C337AA85E9C77EB33F8077649945 (GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.GlobalConfigInternal::set_MaxTimerTimeout(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GlobalConfigInternal_set_MaxTimerTimeout_mED89AE4816D8B7B39183849289738DF641C242CF (GlobalConfigInternal_t0F07F384FD03D7CE842BC781D7C747B5579F680F * __this, uint32_t ___value0, const RuntimeMethod* method);
// System.UInt32 UnityEngine.Networking.GlobalConfig::get_MinNetSimulatorTimeout()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t GlobalConfig_get_MinNetSimulatorTimeout_m4C6BB9D0CAA455E0AE2EED89EC8D2DEAAC39D7F4 (GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.GlobalConfigInternal::set_MinNetSimulatorTimeout(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GlobalConfigInternal_set_MinNetSimulatorTimeout_m54488C6614ED2EF9FFAB902757CC3CFE895E9834 (GlobalConfigInternal_t0F07F384FD03D7CE842BC781D7C747B5579F680F * __this, uint32_t ___value0, const RuntimeMethod* method);
// System.UInt32 UnityEngine.Networking.GlobalConfig::get_MaxNetSimulatorTimeout()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t GlobalConfig_get_MaxNetSimulatorTimeout_mD86F57F2E32CB417D44272936D24A04D35C0FE1E (GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.GlobalConfigInternal::set_MaxNetSimulatorTimeout(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GlobalConfigInternal_set_MaxNetSimulatorTimeout_m247688A48376F7FA4B9551DC3292FBD05309989D (GlobalConfigInternal_t0F07F384FD03D7CE842BC781D7C747B5579F680F * __this, uint32_t ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.GlobalConfigInternal::InternalDestroy(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GlobalConfigInternal_InternalDestroy_m82C15BED6D4EB877B4702894F1C07780AFD65B68 (intptr_t ___ptr0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<UnityEngine.Networking.ConnectionConfig>::.ctor()
inline void List_1__ctor_m1F4A4C6B76603E6A2DA8067FDC73F87532587024 (List_1_t46489AA4DB932B33C96BA58827F21F14C831C2DE * __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t46489AA4DB932B33C96BA58827F21F14C831C2DE *, const RuntimeMethod*))List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared)(__this, method);
}
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_mE43AFC74F5F3932913C023A04B24905E093C5005 (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * __this, String_t* ___paramName0, String_t* ___message1, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.ConnectionConfig::Validate(UnityEngine.Networking.ConnectionConfig)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfig_Validate_m84787B66F366FDC5EF3D074316F7041E84AA735F (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * ___config0, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.ConnectionConfig::.ctor(UnityEngine.Networking.ConnectionConfig)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfig__ctor_m1976654A083CE2C1858BECF7EED65005BFC16343 (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * ___config0, const RuntimeMethod* method);
// System.Int32 System.Collections.Generic.List`1<UnityEngine.Networking.ConnectionConfig>::get_Count()
inline int32_t List_1_get_Count_m2C0EC005D5C06E5F178A8FB94D48DA905506D907_inline (List_1_t46489AA4DB932B33C96BA58827F21F14C831C2DE * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t46489AA4DB932B33C96BA58827F21F14C831C2DE *, const RuntimeMethod*))List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline)(__this, method);
}
// System.Void System.ArgumentException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * __this, String_t* ___message0, const RuntimeMethod* method);
// !0 System.Collections.Generic.List`1<UnityEngine.Networking.ConnectionConfig>::get_Item(System.Int32)
inline ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * List_1_get_Item_mA887125ECBEEA92DEE8520B227EFE1CBF3FB6434_inline (List_1_t46489AA4DB932B33C96BA58827F21F14C831C2DE * __this, int32_t ___index0, const RuntimeMethod* method)
{
return (( ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * (*) (List_1_t46489AA4DB932B33C96BA58827F21F14C831C2DE *, int32_t, const RuntimeMethod*))List_1_get_Item_mF00B574E58FB078BB753B05A3B86DD0A7A266B63_gshared_inline)(__this, ___index0, method);
}
// UnityEngine.Networking.ConnectionConfig UnityEngine.Networking.HostTopology::get_DefaultConfig()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * HostTopology_get_DefaultConfig_m0E4C32CC256D7C901C1C91C86B38F33EBD03A0E3 (HostTopology_t268779309BB2D69F29D1A182662C79818813892B * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.ConnectionConfigInternal::.ctor(UnityEngine.Networking.ConnectionConfig)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfigInternal__ctor_m3159326166C18DBB931A215F34FDE777C78D2AC0 (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * ___config0, const RuntimeMethod* method);
// System.Int32 UnityEngine.Networking.HostTopology::get_MaxDefaultConnections()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HostTopology_get_MaxDefaultConnections_mBED404D3C504A13C5302198D237E509B664CFEAD (HostTopology_t268779309BB2D69F29D1A182662C79818813892B * __this, const RuntimeMethod* method);
// System.IntPtr UnityEngine.Networking.HostTopologyInternal::InternalCreate(UnityEngine.Networking.ConnectionConfigInternal,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t HostTopologyInternal_InternalCreate_m04CCA00F1B270054658A87CE635FB6E83ADD3551 (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * ___config0, int32_t ___maxDefaultConnections1, const RuntimeMethod* method);
// UnityEngine.Networking.ConnectionConfig UnityEngine.Networking.HostTopology::GetSpecialConnectionConfig(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * HostTopology_GetSpecialConnectionConfig_m52EB0C01DBCEFABCCA2999BA5AA4FC5200049BC1 (HostTopology_t268779309BB2D69F29D1A182662C79818813892B * __this, int32_t ___i0, const RuntimeMethod* method);
// System.UInt16 UnityEngine.Networking.HostTopologyInternal::AddSpecialConnectionConfig(UnityEngine.Networking.ConnectionConfigInternal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t HostTopologyInternal_AddSpecialConnectionConfig_m0A2F45F5745DC98599A7EE8359F3A17DBE66856C (HostTopologyInternal_tA95C0259BC91D8E3D227BAF3D4F7CEE5C5331E10 * __this, ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * ___config0, const RuntimeMethod* method);
// System.Int32 UnityEngine.Networking.HostTopology::get_SpecialConnectionConfigsCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HostTopology_get_SpecialConnectionConfigsCount_m34BCBF16F6499FF007E37C3C3657B1BAE8E8522C (HostTopology_t268779309BB2D69F29D1A182662C79818813892B * __this, const RuntimeMethod* method);
// System.UInt16 UnityEngine.Networking.HostTopology::get_ReceivedMessagePoolSize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t HostTopology_get_ReceivedMessagePoolSize_m37EAF773FF7EB9CB306E0BC20FE9B132C16880FD (HostTopology_t268779309BB2D69F29D1A182662C79818813892B * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.HostTopologyInternal::set_ReceivedMessagePoolSize(System.UInt16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HostTopologyInternal_set_ReceivedMessagePoolSize_m058306E23591D771402037081DA32C2FE60B1464 (HostTopologyInternal_tA95C0259BC91D8E3D227BAF3D4F7CEE5C5331E10 * __this, uint16_t ___value0, const RuntimeMethod* method);
// System.UInt16 UnityEngine.Networking.HostTopology::get_SentMessagePoolSize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t HostTopology_get_SentMessagePoolSize_m04C3CF4CEC53530BBB0CA64C753F9EFEAF6EB16A (HostTopology_t268779309BB2D69F29D1A182662C79818813892B * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.HostTopologyInternal::set_SentMessagePoolSize(System.UInt16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HostTopologyInternal_set_SentMessagePoolSize_mAB16B0D773E42DD470FBC0F2C79030B914DAABE1 (HostTopologyInternal_tA95C0259BC91D8E3D227BAF3D4F7CEE5C5331E10 * __this, uint16_t ___value0, const RuntimeMethod* method);
// System.Single UnityEngine.Networking.HostTopology::get_MessagePoolSizeGrowthFactor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float HostTopology_get_MessagePoolSizeGrowthFactor_m7A7ED02522613F0DB49B663F1F51B0104FC60FA0 (HostTopology_t268779309BB2D69F29D1A182662C79818813892B * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.HostTopologyInternal::set_MessagePoolSizeGrowthFactor(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HostTopologyInternal_set_MessagePoolSizeGrowthFactor_mE735BFC3E80552A0BD0C125B06BD80973563020A (HostTopologyInternal_tA95C0259BC91D8E3D227BAF3D4F7CEE5C5331E10 * __this, float ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.HostTopologyInternal::InternalDestroy(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HostTopologyInternal_InternalDestroy_m71E5CC3F9775FC938F4B1397F87811AEF3FCFECF (intptr_t ___ptr0, const RuntimeMethod* method);
// UnityEngine.Networking.Types.NetworkID UnityEngine.Networking.Match.JoinMatchRequest::get_networkId()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint64_t JoinMatchRequest_get_networkId_mF41427B1FE3C495530C0C7A366152446613F8B10_inline (JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A * __this, const RuntimeMethod* method);
// System.String UnityEngine.Networking.Match.JoinMatchRequest::get_publicAddress()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* JoinMatchRequest_get_publicAddress_mE052141FB172D009FE1BDB0F7AC52068A5DF3EE2_inline (JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A * __this, const RuntimeMethod* method);
// System.String UnityEngine.Networking.Match.JoinMatchRequest::get_privateAddress()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* JoinMatchRequest_get_privateAddress_m2DE574B58D8A69C731C815E2C46AB5CC3ADF8D8D_inline (JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.Networking.Match.JoinMatchRequest::get_eloScore()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t JoinMatchRequest_get_eloScore_mC0238C87F841D7DBD4C06765AD05B8A8A6B2F01E_inline (JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A * __this, const RuntimeMethod* method);
// System.String UnityEngine.Networking.Match.JoinMatchRequest::get_password()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* JoinMatchRequest_get_password_m0E7A0F73B7DB0E41E613A07195C3A7370C863B90_inline (JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.Networking.Match.ListMatchRequest::get_pageSize()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ListMatchRequest_get_pageSize_m0465C7613FBFF54BF422F014F27C26D6CE3AF1E1_inline (ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.Networking.Match.ListMatchRequest::get_pageNum()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ListMatchRequest_get_pageNum_mA6E74CFB9E814DB86AE540DB0E7CFD9A9637B10E_inline (ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * __this, const RuntimeMethod* method);
// System.String UnityEngine.Networking.Match.ListMatchRequest::get_nameFilter()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* ListMatchRequest_get_nameFilter_m3C0481F1E6046D75BCE05B1DD331B183F2CB1401_inline (ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.Networking.Match.ListMatchRequest::get_filterOutPrivateMatches()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ListMatchRequest_get_filterOutPrivateMatches_m0827128486C61327991B26DDCE1057BF56395B5A_inline (ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.Networking.Match.ListMatchRequest::get_eloScore()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ListMatchRequest_get_eloScore_m7CC5143EAD11A7CB152C7DD89D2DEE0C1E5F56CB_inline (ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * __this, const RuntimeMethod* method);
// System.Collections.Generic.Dictionary`2<System.String,System.Int64> UnityEngine.Networking.Match.ListMatchRequest::get_matchAttributeFilterLessThan()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * ListMatchRequest_get_matchAttributeFilterLessThan_m15EAF64DC665FCDE5A00D6AFF67E97E2250CDA65_inline (ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * __this, const RuntimeMethod* method);
// System.Collections.Generic.Dictionary`2<System.String,System.Int64> UnityEngine.Networking.Match.ListMatchRequest::get_matchAttributeFilterEqualTo()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * ListMatchRequest_get_matchAttributeFilterEqualTo_mCED2ECBE526824ACE9D65845F72CA54DEA42BEC8_inline (ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * __this, const RuntimeMethod* method);
// System.Collections.Generic.Dictionary`2<System.String,System.Int64> UnityEngine.Networking.Match.ListMatchRequest::get_matchAttributeFilterGreaterThan()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * ListMatchRequest_get_matchAttributeFilterGreaterThan_mF2D363A215A57DE53A14E0B82D4BA61D10736FDA_inline (ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<UnityEngine.Networking.Match.MatchDesc>::.ctor()
inline void List_1__ctor_m3EADFEE4B0D96863F5F2A9D440D718963CCF30A3 (List_1_t2502ACE8E86D49AF07B92705BD60DD75F6358030 * __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t2502ACE8E86D49AF07B92705BD60DD75F6358030 *, const RuntimeMethod*))List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared)(__this, method);
}
// System.Int32 System.Collections.Generic.List`1<UnityEngine.Networking.Match.MatchDesc>::get_Count()
inline int32_t List_1_get_Count_mB923AB9D42A3F44229B3E675D82767B5F449CBD1_inline (List_1_t2502ACE8E86D49AF07B92705BD60DD75F6358030 * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t2502ACE8E86D49AF07B92705BD60DD75F6358030 *, const RuntimeMethod*))List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline)(__this, method);
}
// System.String System.Object::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Object_ToString_m6EEDE9678ACEB962C586D13EC873DE2948668B06 (RuntimeObject * __this, const RuntimeMethod* method);
// System.Int32 System.Collections.Generic.List`1<UnityEngine.Networking.Match.MatchDirectConnectInfo>::get_Count()
inline int32_t List_1_get_Count_m4FAC089655B2026854C837BB67444B874CD2D9BF_inline (List_1_t634AFA3BC7CA26F185BBC2A460A21D2F89EE10FA * __this, const RuntimeMethod* method)
{
return (( int32_t (*) (List_1_t634AFA3BC7CA26F185BBC2A460A21D2F89EE10FA *, const RuntimeMethod*))List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline)(__this, method);
}
// System.Void UnityEngine.Networking.Match.MatchInfo::set_address(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MatchInfo_set_address_m3890A46355BE0177B9434F4EF1016C93E4C66E89_inline (MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67 * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.MatchInfo::set_port(System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MatchInfo_set_port_m4F079B17EE7B17FEB5018568E245CD7BE4E8A889_inline (MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67 * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.MatchInfo::set_domain(System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MatchInfo_set_domain_mD6A02961C3FCF81C65FF52F9E05AE1C9520C2057_inline (MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67 * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.MatchInfo::set_networkId(UnityEngine.Networking.Types.NetworkID)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MatchInfo_set_networkId_mF06B1A76AE877FEF8F90091550CBE7C04395249C_inline (MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67 * __this, uint64_t ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Types.NetworkAccessToken::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkAccessToken__ctor_m1BE41B5F2C9C380423AD3C4EC4FB9A273289505F (NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481 * __this, String_t* ___strArray0, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.MatchInfo::set_accessToken(UnityEngine.Networking.Types.NetworkAccessToken)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MatchInfo_set_accessToken_m359FEC01A40E84C1D44D7FE8B2B1A60F5D25A73F_inline (MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67 * __this, NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481 * ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.MatchInfo::set_nodeId(UnityEngine.Networking.Types.NodeID)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MatchInfo_set_nodeId_m33003F730A881B20E2971B5621FFE1C180F9B852_inline (MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67 * __this, uint16_t ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.MatchInfo::set_usingRelay(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MatchInfo_set_usingRelay_mDB319BCBB310B8BD802ED0DC5514ED75209B092A_inline (MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67 * __this, bool ___value0, const RuntimeMethod* method);
// UnityEngine.Networking.Types.NetworkID UnityEngine.Networking.Match.MatchInfo::get_networkId()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint64_t MatchInfo_get_networkId_m85F41C6EF913403668CF02D8E2161A97165B4F9F_inline (MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67 * __this, const RuntimeMethod* method);
// System.String UnityEngine.Networking.Match.MatchInfo::get_address()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* MatchInfo_get_address_mD2E2A1FACE5451D7191ADAF11F7A7C3DD2BAF475_inline (MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67 * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.Networking.Match.MatchInfo::get_port()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t MatchInfo_get_port_m927D4247843F4AEB1BD72AB83ED032DA92BDEEB7_inline (MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67 * __this, const RuntimeMethod* method);
// UnityEngine.Networking.Types.NodeID UnityEngine.Networking.Match.MatchInfo::get_nodeId()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint16_t MatchInfo_get_nodeId_m8E065595B2BD6F97873189C5697402E44DAC58C9_inline (MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.Networking.Match.MatchInfo::get_usingRelay()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool MatchInfo_get_usingRelay_m7256FADA60AF340CA978CBFBE1A67944EEC19771_inline (MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.MatchInfoSnapshot::set_networkId(UnityEngine.Networking.Types.NetworkID)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MatchInfoSnapshot_set_networkId_m42E6ADF32A3C61014374C3A1ED0D81E4C503399F_inline (MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0 * __this, uint64_t ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.MatchInfoSnapshot::set_hostNodeId(UnityEngine.Networking.Types.NodeID)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MatchInfoSnapshot_set_hostNodeId_m6F821EBAB54B742B9DB89C3A0D6D3F92594BFDCD_inline (MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0 * __this, uint16_t ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.MatchInfoSnapshot::set_name(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MatchInfoSnapshot_set_name_m1445121C935DCF0ECCC95C99BCD0BCCC48717E6D_inline (MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0 * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.MatchInfoSnapshot::set_averageEloScore(System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MatchInfoSnapshot_set_averageEloScore_mC3282AF93AB1EEC7A000CA6746368022D9A5C753_inline (MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0 * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.MatchInfoSnapshot::set_maxSize(System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MatchInfoSnapshot_set_maxSize_m3395A6A69B1FE1011D201373000CC619D48281A7_inline (MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0 * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.MatchInfoSnapshot::set_currentSize(System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MatchInfoSnapshot_set_currentSize_m6C711BD86215823980979BA1F641B3A2C4BCAED7_inline (MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0 * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.MatchInfoSnapshot::set_isPrivate(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MatchInfoSnapshot_set_isPrivate_m084E967180A94041EB3800784FF06C2772D41FBE_inline (MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.MatchInfoSnapshot::set_matchAttributes(System.Collections.Generic.Dictionary`2<System.String,System.Int64>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MatchInfoSnapshot_set_matchAttributes_m82974C5D806695B0029F02B2D85F324BA746BB84_inline (MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0 * __this, Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * ___value0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<UnityEngine.Networking.Match.MatchInfoSnapshot/MatchInfoDirectConnectSnapshot>::.ctor()
inline void List_1__ctor_m8897F69EB53EE9937B1CBFF754341A998840CAC5 (List_1_t25DD639486662E92B4B3EF461C654CEBB4202FFC * __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t25DD639486662E92B4B3EF461C654CEBB4202FFC *, const RuntimeMethod*))List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared)(__this, method);
}
// System.Void UnityEngine.Networking.Match.MatchInfoSnapshot::set_directConnectInfos(System.Collections.Generic.List`1<UnityEngine.Networking.Match.MatchInfoSnapshot/MatchInfoDirectConnectSnapshot>)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MatchInfoSnapshot_set_directConnectInfos_m77C6BD3239DD46327788981E828C5028709BE5ED_inline (MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0 * __this, List_1_t25DD639486662E92B4B3EF461C654CEBB4202FFC * ___value0, const RuntimeMethod* method);
// System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<UnityEngine.Networking.Match.MatchDirectConnectInfo>::GetEnumerator()
inline Enumerator_tB6D812E1E33FD08D6BB06CA775258CF6493EB5C6 List_1_GetEnumerator_m106D5C445A0F9D9A7F7C474EC7ECE771F547FA49 (List_1_t634AFA3BC7CA26F185BBC2A460A21D2F89EE10FA * __this, const RuntimeMethod* method)
{
return (( Enumerator_tB6D812E1E33FD08D6BB06CA775258CF6493EB5C6 (*) (List_1_t634AFA3BC7CA26F185BBC2A460A21D2F89EE10FA *, const RuntimeMethod*))List_1_GetEnumerator_m1739A5E25DF502A6984F9B98CFCAC2D3FABCF233_gshared)(__this, method);
}
// !0 System.Collections.Generic.List`1/Enumerator<UnityEngine.Networking.Match.MatchDirectConnectInfo>::get_Current()
inline MatchDirectConnectInfo_t79A507F1704A58987DFC695D74214C9726BF78A4 * Enumerator_get_Current_mC47AA20564FA3ABDFC9B2D9BE356BE78D7A93E02_inline (Enumerator_tB6D812E1E33FD08D6BB06CA775258CF6493EB5C6 * __this, const RuntimeMethod* method)
{
return (( MatchDirectConnectInfo_t79A507F1704A58987DFC695D74214C9726BF78A4 * (*) (Enumerator_tB6D812E1E33FD08D6BB06CA775258CF6493EB5C6 *, const RuntimeMethod*))Enumerator_get_Current_m9C4EBBD2108B51885E750F927D7936290C8E20EE_gshared_inline)(__this, method);
}
// System.Collections.Generic.List`1<UnityEngine.Networking.Match.MatchInfoSnapshot/MatchInfoDirectConnectSnapshot> UnityEngine.Networking.Match.MatchInfoSnapshot::get_directConnectInfos()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_t25DD639486662E92B4B3EF461C654CEBB4202FFC * MatchInfoSnapshot_get_directConnectInfos_m0B9DA5AC8C3BE0B9709195356BDA9F837166095C_inline (MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.MatchInfoSnapshot/MatchInfoDirectConnectSnapshot::.ctor(UnityEngine.Networking.Match.MatchDirectConnectInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchInfoDirectConnectSnapshot__ctor_m54187853AA7417564146819AFB578DE4905B2AFF (MatchInfoDirectConnectSnapshot_t82741E9963C92FE12F5CB64A40851676E4677F6C * __this, MatchDirectConnectInfo_t79A507F1704A58987DFC695D74214C9726BF78A4 * ___matchDirectConnectInfo0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<UnityEngine.Networking.Match.MatchInfoSnapshot/MatchInfoDirectConnectSnapshot>::Add(!0)
inline void List_1_Add_m5B19AB51FE854D02B9A506D94605914F9ED11873 (List_1_t25DD639486662E92B4B3EF461C654CEBB4202FFC * __this, MatchInfoDirectConnectSnapshot_t82741E9963C92FE12F5CB64A40851676E4677F6C * ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t25DD639486662E92B4B3EF461C654CEBB4202FFC *, MatchInfoDirectConnectSnapshot_t82741E9963C92FE12F5CB64A40851676E4677F6C *, const RuntimeMethod*))List_1_Add_mE5B3CBB3A625606D9BC4337FEAAF1D66BCB6F96E_gshared)(__this, ___item0, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Networking.Match.MatchDirectConnectInfo>::MoveNext()
inline bool Enumerator_MoveNext_mE2441137766623FBFEAF548F2538C35D4D61B23F (Enumerator_tB6D812E1E33FD08D6BB06CA775258CF6493EB5C6 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_tB6D812E1E33FD08D6BB06CA775258CF6493EB5C6 *, const RuntimeMethod*))Enumerator_MoveNext_m2E56233762839CE55C67E00AC8DD3D4D3F6C0DF0_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Networking.Match.MatchDirectConnectInfo>::Dispose()
inline void Enumerator_Dispose_m662A014112C06C898F29525911252A9642D16193 (Enumerator_tB6D812E1E33FD08D6BB06CA775258CF6493EB5C6 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_tB6D812E1E33FD08D6BB06CA775258CF6493EB5C6 *, const RuntimeMethod*))Enumerator_Dispose_mCFB225D9E5E597A1CC8F958E53BEA1367D8AC7B8_gshared)(__this, method);
}
// System.Byte[] System.Convert::FromBase64String(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* Convert_FromBase64String_mB2E4E2CD03B34DB7C2665694D5B2E967BC81E9A8 (String_t* ___s0, const RuntimeMethod* method);
// System.String System.Convert::ToBase64String(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Convert_ToBase64String_mE6E1FE504EF1E99DB2F8B92180A82A5F1512EF6A (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___inArray0, const RuntimeMethod* method);
// System.Void UnityEngine.Debug::LogError(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogError_m8850D65592770A364D494025FF3A73E8D4D70485 (RuntimeObject * ___message0, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.CreateMatchRequest::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CreateMatchRequest__ctor_mFC42C67684BC0A1D83C6E9C3DF5C6190DA03C024 (CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.CreateMatchRequest::set_name(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void CreateMatchRequest_set_name_mE0B8D4C54AE982080E74B8D40FFAA7529D09A0A8_inline (CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.CreateMatchRequest::set_size(System.UInt32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void CreateMatchRequest_set_size_m87F0CE15BF61656B21FFD4A7D7AD000752F90D0F_inline (CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * __this, uint32_t ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.CreateMatchRequest::set_advertise(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void CreateMatchRequest_set_advertise_m7A979119781F3358FD0166BDE484212579F27FED_inline (CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.CreateMatchRequest::set_password(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void CreateMatchRequest_set_password_m1ED11F41F58A9B3C2E87103625D46E4BB497A9AD_inline (CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.CreateMatchRequest::set_publicAddress(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void CreateMatchRequest_set_publicAddress_m8B3FFBDAC322E8818A1A9C97F32A3D7A87FC78E2_inline (CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.CreateMatchRequest::set_privateAddress(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void CreateMatchRequest_set_privateAddress_mDD2D5C34B6879086BAB56DD932BE91666BA370D3_inline (CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.CreateMatchRequest::set_eloScore(System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void CreateMatchRequest_set_eloScore_m029428732F257F688E21C3D69AF794FEA4E8EFC7_inline (CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.Request::set_domain(System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Request_set_domain_m5D9E2F4FC5FD9612666940E8ADB7C0E6F42354FC_inline (Request_tA1BC1936C153408449C4C207CA12D4358A7477FD * __this, int32_t ___value0, const RuntimeMethod* method);
// UnityEngine.Coroutine UnityEngine.Networking.Match.NetworkMatch::CreateMatch(UnityEngine.Networking.Match.CreateMatchRequest,UnityEngine.Networking.Match.NetworkMatch/DataResponseDelegate`1<UnityEngine.Networking.Match.MatchInfo>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * NetworkMatch_CreateMatch_mED032BA9E5A14614E19A4E0B665152E038BEEF5D (NetworkMatch_t520F80EBC98ADEE375884B456429236E5BBA0F3B * __this, CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * ___req0, DataResponseDelegate_1_t7F092A4A713EEB7DDA047E650E8F690094B5D733 * ___callback1, const RuntimeMethod* method);
// System.Void UnityEngine.Debug::Log(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_Log_mC26E5AD0D8D156C7FFD173AA15827F69225E9DB8 (RuntimeObject * ___message0, const RuntimeMethod* method);
// System.Uri UnityEngine.Networking.Match.NetworkMatch::get_baseUri()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * NetworkMatch_get_baseUri_m9B38E09829D78200CC4BD750427337581F702945 (NetworkMatch_t520F80EBC98ADEE375884B456429236E5BBA0F3B * __this, const RuntimeMethod* method);
// System.Void System.Uri::.ctor(System.Uri,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri__ctor_m0B44AFB01F3FEDE9319BA4556288340D16101F9D (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___baseUri0, String_t* ___relativeUri1, const RuntimeMethod* method);
// System.Void UnityEngine.WWWForm::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WWWForm__ctor_mA0987933892AF6FA9E01603B214E86EC52F6B055 (WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * __this, const RuntimeMethod* method);
// System.Void UnityEngine.WWWForm::AddField(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WWWForm_AddField_m20BED9E7C237D585E5D040A5D815D9C7DC16990C (WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * __this, String_t* ___fieldName0, int32_t ___i1, const RuntimeMethod* method);
// System.String UnityEngine.Application::get_cloudProjectId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Application_get_cloudProjectId_m4428D3F30727F38D42D63962932341043560E43D (const RuntimeMethod* method);
// System.Void UnityEngine.WWWForm::AddField(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WWWForm_AddField_m8ACDB7B2124FA6EAD7FC120BB469C6352C7B7696 (WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * __this, String_t* ___fieldName0, String_t* ___value1, const RuntimeMethod* method);
// UnityEngine.Networking.Types.SourceID UnityEngine.Networking.Utility::GetSourceID()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Utility_GetSourceID_m958E8557A6FBCAC4594B4B7A5014BBA266D8EDBE (const RuntimeMethod* method);
// System.Int32 UnityEngine.Networking.Match.Request::get_domain()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Request_get_domain_m37B9BBD8B6369C7170CBF3562A46C9094FB3360F_inline (Request_tA1BC1936C153408449C4C207CA12D4358A7477FD * __this, const RuntimeMethod* method);
// System.String System.UInt32::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UInt32_ToString_mEB55F257429D34ED2BF41AE9567096F1F969B9A0 (uint32_t* __this, const RuntimeMethod* method);
// System.String System.Boolean::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Boolean_ToString_m59BB8456DD05A874BBD756E57EA8AD983287015C (bool* __this, const RuntimeMethod* method);
// System.Collections.Generic.Dictionary`2<System.String,System.String> UnityEngine.WWWForm::get_headers()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5 * WWWForm_get_headers_m9F6A4222926792B110E9821AF5B23FF3FB9BD45A (WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.String,System.String>::set_Item(!0,!1)
inline void Dictionary_2_set_Item_m31C41E4FE938066440DAFD1E667C2F3986549668 (Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5 * __this, String_t* ___key0, String_t* ___value1, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5 *, String_t*, String_t*, const RuntimeMethod*))Dictionary_2_set_Item_mE6BF870B04922441F9F2760E782DEE6EE682615A_gshared)(__this, ___key0, ___value1, method);
}
// UnityEngine.Networking.UnityWebRequest UnityEngine.Networking.UnityWebRequest::Post(System.String,UnityEngine.WWWForm)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * UnityWebRequest_Post_m5F29B83B6FEDEAEAAC938DD26AE484A2750DB646 (String_t* ___uri0, WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * ___formData1, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.NetworkMatch/InternalResponseDelegate`2<UnityEngine.Networking.Match.CreateMatchResponse,UnityEngine.Networking.Match.NetworkMatch/DataResponseDelegate`1<UnityEngine.Networking.Match.MatchInfo>>::.ctor(System.Object,System.IntPtr)
inline void InternalResponseDelegate_2__ctor_mF17D4320A3FF8AE1DE3BAF5020DF0D0A35F4F368 (InternalResponseDelegate_2_tF18FC1B00D1213BC60AE7B8E0C6768ECC6864C08 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (InternalResponseDelegate_2_tF18FC1B00D1213BC60AE7B8E0C6768ECC6864C08 *, RuntimeObject *, intptr_t, const RuntimeMethod*))InternalResponseDelegate_2__ctor_m27DC3C2064C66120EDC086E2B385F818193A9E91_gshared)(__this, ___object0, ___method1, method);
}
// System.Collections.IEnumerator UnityEngine.Networking.Match.NetworkMatch::ProcessMatchResponse<UnityEngine.Networking.Match.CreateMatchResponse,UnityEngine.Networking.Match.NetworkMatch/DataResponseDelegate`1<UnityEngine.Networking.Match.MatchInfo>>(UnityEngine.Networking.UnityWebRequest,UnityEngine.Networking.Match.NetworkMatch/InternalResponseDelegate`2<JSONRESPONSE,USERRESPONSEDELEGATETYPE>,USERRESPONSEDELEGATETYPE)
inline RuntimeObject* NetworkMatch_ProcessMatchResponse_TisCreateMatchResponse_t1138835A2F19EA07436177C577ABC9984B9F93E2_TisDataResponseDelegate_1_t7F092A4A713EEB7DDA047E650E8F690094B5D733_m7A762CE8A0D3C5A40E18F753AD2110813658AEB9 (NetworkMatch_t520F80EBC98ADEE375884B456429236E5BBA0F3B * __this, UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * ___client0, InternalResponseDelegate_2_tF18FC1B00D1213BC60AE7B8E0C6768ECC6864C08 * ___internalCallback1, DataResponseDelegate_1_t7F092A4A713EEB7DDA047E650E8F690094B5D733 * ___userCallback2, const RuntimeMethod* method)
{
return (( RuntimeObject* (*) (NetworkMatch_t520F80EBC98ADEE375884B456429236E5BBA0F3B *, UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E *, InternalResponseDelegate_2_tF18FC1B00D1213BC60AE7B8E0C6768ECC6864C08 *, DataResponseDelegate_1_t7F092A4A713EEB7DDA047E650E8F690094B5D733 *, const RuntimeMethod*))NetworkMatch_ProcessMatchResponse_TisRuntimeObject_TisRuntimeObject_m07C8AFF99ACC623B15B76BC7A1F1E3D40633885C_gshared)(__this, ___client0, ___internalCallback1, ___userCallback2, method);
}
// UnityEngine.Coroutine UnityEngine.MonoBehaviour::StartCoroutine(System.Collections.IEnumerator)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * MonoBehaviour_StartCoroutine_m3E33706D38B23CDD179E99BAD61E32303E9CC719 (MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * __this, RuntimeObject* ___routine0, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Utility::SetAccessTokenForNetwork(UnityEngine.Networking.Types.NetworkID,UnityEngine.Networking.Types.NetworkAccessToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Utility_SetAccessTokenForNetwork_mD6FA81F2FD77F041C236152BAC57F4FCA5D892CF (uint64_t ___netId0, NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481 * ___accessToken1, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.MatchInfo::.ctor(UnityEngine.Networking.Match.CreateMatchResponse)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchInfo__ctor_mD6FE977742C8C750ED0FC8F2B9471AF38BA05BE3 (MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67 * __this, CreateMatchResponse_t1138835A2F19EA07436177C577ABC9984B9F93E2 * ___matchResponse0, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.NetworkMatch/DataResponseDelegate`1<UnityEngine.Networking.Match.MatchInfo>::Invoke(System.Boolean,System.String,T)
inline void DataResponseDelegate_1_Invoke_m30198CE2090F7EFDF95347F2D69012BC34BD1E30 (DataResponseDelegate_1_t7F092A4A713EEB7DDA047E650E8F690094B5D733 * __this, bool ___success0, String_t* ___extendedInfo1, MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67 * ___responseData2, const RuntimeMethod* method)
{
(( void (*) (DataResponseDelegate_1_t7F092A4A713EEB7DDA047E650E8F690094B5D733 *, bool, String_t*, MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67 *, const RuntimeMethod*))DataResponseDelegate_1_Invoke_m8101DBE1A97A7E1A7762DCECB0A9138FD12BAED4_gshared)(__this, ___success0, ___extendedInfo1, ___responseData2, method);
}
// System.Void UnityEngine.Networking.Match.JoinMatchRequest::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JoinMatchRequest__ctor_m044E97AD4881511506554BB7F54385EDB6B902BD (JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.JoinMatchRequest::set_networkId(UnityEngine.Networking.Types.NetworkID)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JoinMatchRequest_set_networkId_mA9CA6065937BD62F39138C9869BE6A5B686EA92C_inline (JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A * __this, uint64_t ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.JoinMatchRequest::set_password(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JoinMatchRequest_set_password_m2096D8C416175CF323600FBD5E1370E83FB8741C_inline (JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.JoinMatchRequest::set_publicAddress(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JoinMatchRequest_set_publicAddress_mB837E27EF72F8B9034A5B926F3F969044A9A7093_inline (JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.JoinMatchRequest::set_privateAddress(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JoinMatchRequest_set_privateAddress_mF07E855D339EE71B24EB95110B579262C74A55F1_inline (JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.JoinMatchRequest::set_eloScore(System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JoinMatchRequest_set_eloScore_mDA8EAC91C261AD2C6D6A45AD9F3C0422EEEAB73E_inline (JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A * __this, int32_t ___value0, const RuntimeMethod* method);
// UnityEngine.Coroutine UnityEngine.Networking.Match.NetworkMatch::JoinMatch(UnityEngine.Networking.Match.JoinMatchRequest,UnityEngine.Networking.Match.NetworkMatch/DataResponseDelegate`1<UnityEngine.Networking.Match.MatchInfo>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * NetworkMatch_JoinMatch_m8D1A3E7DC24DF44D1C2665D8E4A420E21E19A62B (NetworkMatch_t520F80EBC98ADEE375884B456429236E5BBA0F3B * __this, JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A * ___req0, DataResponseDelegate_1_t7F092A4A713EEB7DDA047E650E8F690094B5D733 * ___callback1, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.NetworkMatch/InternalResponseDelegate`2<UnityEngine.Networking.Match.JoinMatchResponse,UnityEngine.Networking.Match.NetworkMatch/DataResponseDelegate`1<UnityEngine.Networking.Match.MatchInfo>>::.ctor(System.Object,System.IntPtr)
inline void InternalResponseDelegate_2__ctor_mBAA32B07ABC3DA74B90D41F8CBBB52DF6CA6C2B3 (InternalResponseDelegate_2_t6995AD33A05E56F1CCEBBF8C0BAD6F4D0E1F4CA9 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (InternalResponseDelegate_2_t6995AD33A05E56F1CCEBBF8C0BAD6F4D0E1F4CA9 *, RuntimeObject *, intptr_t, const RuntimeMethod*))InternalResponseDelegate_2__ctor_m27DC3C2064C66120EDC086E2B385F818193A9E91_gshared)(__this, ___object0, ___method1, method);
}
// System.Collections.IEnumerator UnityEngine.Networking.Match.NetworkMatch::ProcessMatchResponse<UnityEngine.Networking.Match.JoinMatchResponse,UnityEngine.Networking.Match.NetworkMatch/DataResponseDelegate`1<UnityEngine.Networking.Match.MatchInfo>>(UnityEngine.Networking.UnityWebRequest,UnityEngine.Networking.Match.NetworkMatch/InternalResponseDelegate`2<JSONRESPONSE,USERRESPONSEDELEGATETYPE>,USERRESPONSEDELEGATETYPE)
inline RuntimeObject* NetworkMatch_ProcessMatchResponse_TisJoinMatchResponse_t6F5BCC11BC546B850CB72C9DEF63D520F4F6946D_TisDataResponseDelegate_1_t7F092A4A713EEB7DDA047E650E8F690094B5D733_m64042B909F0C8C3E900B2D26271E84C41FF4BA7A (NetworkMatch_t520F80EBC98ADEE375884B456429236E5BBA0F3B * __this, UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * ___client0, InternalResponseDelegate_2_t6995AD33A05E56F1CCEBBF8C0BAD6F4D0E1F4CA9 * ___internalCallback1, DataResponseDelegate_1_t7F092A4A713EEB7DDA047E650E8F690094B5D733 * ___userCallback2, const RuntimeMethod* method)
{
return (( RuntimeObject* (*) (NetworkMatch_t520F80EBC98ADEE375884B456429236E5BBA0F3B *, UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E *, InternalResponseDelegate_2_t6995AD33A05E56F1CCEBBF8C0BAD6F4D0E1F4CA9 *, DataResponseDelegate_1_t7F092A4A713EEB7DDA047E650E8F690094B5D733 *, const RuntimeMethod*))NetworkMatch_ProcessMatchResponse_TisRuntimeObject_TisRuntimeObject_m07C8AFF99ACC623B15B76BC7A1F1E3D40633885C_gshared)(__this, ___client0, ___internalCallback1, ___userCallback2, method);
}
// System.Void UnityEngine.Networking.Match.MatchInfo::.ctor(UnityEngine.Networking.Match.JoinMatchResponse)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchInfo__ctor_mEB97EE7C36641071264FEEC81AC2C6926E3B9657 (MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67 * __this, JoinMatchResponse_t6F5BCC11BC546B850CB72C9DEF63D520F4F6946D * ___matchResponse0, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.DestroyMatchRequest::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DestroyMatchRequest__ctor_m59325BCAA65F477839D3B78E318404F42E41BFE9 (DestroyMatchRequest_t3AC8FF769CC153C425D7D76492693F00A76B81D0 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.DestroyMatchRequest::set_networkId(UnityEngine.Networking.Types.NetworkID)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DestroyMatchRequest_set_networkId_mC1C51DCC3A6C729D2EF1EB763F56F38CA72FF68A_inline (DestroyMatchRequest_t3AC8FF769CC153C425D7D76492693F00A76B81D0 * __this, uint64_t ___value0, const RuntimeMethod* method);
// UnityEngine.Coroutine UnityEngine.Networking.Match.NetworkMatch::DestroyMatch(UnityEngine.Networking.Match.DestroyMatchRequest,UnityEngine.Networking.Match.NetworkMatch/BasicResponseDelegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * NetworkMatch_DestroyMatch_m76180F9B8FDEB6D40758EF28FE9057E907E9F965 (NetworkMatch_t520F80EBC98ADEE375884B456429236E5BBA0F3B * __this, DestroyMatchRequest_t3AC8FF769CC153C425D7D76492693F00A76B81D0 * ___req0, BasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A * ___callback1, const RuntimeMethod* method);
// UnityEngine.Networking.Types.NetworkAccessToken UnityEngine.Networking.Utility::GetAccessTokenForNetwork(UnityEngine.Networking.Types.NetworkID)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481 * Utility_GetAccessTokenForNetwork_m778FE11429F330727F46BDA237C28DD6956671C3 (uint64_t ___netId0, const RuntimeMethod* method);
// System.String UnityEngine.Networking.Types.NetworkAccessToken::GetByteString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NetworkAccessToken_GetByteString_m15886A9E88F5D490BB595D91F9282D458E1EB79F (NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.NetworkMatch/InternalResponseDelegate`2<UnityEngine.Networking.Match.BasicResponse,UnityEngine.Networking.Match.NetworkMatch/BasicResponseDelegate>::.ctor(System.Object,System.IntPtr)
inline void InternalResponseDelegate_2__ctor_mFC0084C0973B92D260D3B6DB5AD82EE3B9FF327B (InternalResponseDelegate_2_t9E637FC8AD9DFE78C53C017092E174FE94DAC443 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (InternalResponseDelegate_2_t9E637FC8AD9DFE78C53C017092E174FE94DAC443 *, RuntimeObject *, intptr_t, const RuntimeMethod*))InternalResponseDelegate_2__ctor_m27DC3C2064C66120EDC086E2B385F818193A9E91_gshared)(__this, ___object0, ___method1, method);
}
// System.Collections.IEnumerator UnityEngine.Networking.Match.NetworkMatch::ProcessMatchResponse<UnityEngine.Networking.Match.BasicResponse,UnityEngine.Networking.Match.NetworkMatch/BasicResponseDelegate>(UnityEngine.Networking.UnityWebRequest,UnityEngine.Networking.Match.NetworkMatch/InternalResponseDelegate`2<JSONRESPONSE,USERRESPONSEDELEGATETYPE>,USERRESPONSEDELEGATETYPE)
inline RuntimeObject* NetworkMatch_ProcessMatchResponse_TisBasicResponse_t9579CCF321F1A381924A886EC1A6496DAC3FC484_TisBasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A_mAE0660E27C201F0AB0F83AE64887924C7F11200C (NetworkMatch_t520F80EBC98ADEE375884B456429236E5BBA0F3B * __this, UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * ___client0, InternalResponseDelegate_2_t9E637FC8AD9DFE78C53C017092E174FE94DAC443 * ___internalCallback1, BasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A * ___userCallback2, const RuntimeMethod* method)
{
return (( RuntimeObject* (*) (NetworkMatch_t520F80EBC98ADEE375884B456429236E5BBA0F3B *, UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E *, InternalResponseDelegate_2_t9E637FC8AD9DFE78C53C017092E174FE94DAC443 *, BasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A *, const RuntimeMethod*))NetworkMatch_ProcessMatchResponse_TisRuntimeObject_TisRuntimeObject_m07C8AFF99ACC623B15B76BC7A1F1E3D40633885C_gshared)(__this, ___client0, ___internalCallback1, ___userCallback2, method);
}
// System.Void UnityEngine.Networking.Match.NetworkMatch/BasicResponseDelegate::Invoke(System.Boolean,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BasicResponseDelegate_Invoke_mD34E66B3E0583711275610B1BCF07FC56A61BCB1 (BasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A * __this, bool ___success0, String_t* ___extendedInfo1, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.DropConnectionRequest::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DropConnectionRequest__ctor_m5B721A711F6CBF239DFD8DD8F32D52F986B07932 (DropConnectionRequest_t0BADA55738E8857768EE57C92027957659C0E8D1 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.DropConnectionRequest::set_networkId(UnityEngine.Networking.Types.NetworkID)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DropConnectionRequest_set_networkId_mD980D5276D76AE525984AEC35B6F11A02F30F56C_inline (DropConnectionRequest_t0BADA55738E8857768EE57C92027957659C0E8D1 * __this, uint64_t ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.DropConnectionRequest::set_nodeId(UnityEngine.Networking.Types.NodeID)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DropConnectionRequest_set_nodeId_mDC0D89F76443E687896E8C8E6EEDF0FA5C2F7C27_inline (DropConnectionRequest_t0BADA55738E8857768EE57C92027957659C0E8D1 * __this, uint16_t ___value0, const RuntimeMethod* method);
// UnityEngine.Coroutine UnityEngine.Networking.Match.NetworkMatch::DropConnection(UnityEngine.Networking.Match.DropConnectionRequest,UnityEngine.Networking.Match.NetworkMatch/BasicResponseDelegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * NetworkMatch_DropConnection_mD2B76731238B4B247F4C8B7677ACE450C5C8461C (NetworkMatch_t520F80EBC98ADEE375884B456429236E5BBA0F3B * __this, DropConnectionRequest_t0BADA55738E8857768EE57C92027957659C0E8D1 * ___req0, BasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A * ___callback1, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.NetworkMatch/InternalResponseDelegate`2<UnityEngine.Networking.Match.DropConnectionResponse,UnityEngine.Networking.Match.NetworkMatch/BasicResponseDelegate>::.ctor(System.Object,System.IntPtr)
inline void InternalResponseDelegate_2__ctor_mE3D3CDC33CBC9039E9948C1B69F741122FEF4F69 (InternalResponseDelegate_2_t4C3380D090B02AF491ABFE36875D463E04A81BD7 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (InternalResponseDelegate_2_t4C3380D090B02AF491ABFE36875D463E04A81BD7 *, RuntimeObject *, intptr_t, const RuntimeMethod*))InternalResponseDelegate_2__ctor_m27DC3C2064C66120EDC086E2B385F818193A9E91_gshared)(__this, ___object0, ___method1, method);
}
// System.Collections.IEnumerator UnityEngine.Networking.Match.NetworkMatch::ProcessMatchResponse<UnityEngine.Networking.Match.DropConnectionResponse,UnityEngine.Networking.Match.NetworkMatch/BasicResponseDelegate>(UnityEngine.Networking.UnityWebRequest,UnityEngine.Networking.Match.NetworkMatch/InternalResponseDelegate`2<JSONRESPONSE,USERRESPONSEDELEGATETYPE>,USERRESPONSEDELEGATETYPE)
inline RuntimeObject* NetworkMatch_ProcessMatchResponse_TisDropConnectionResponse_tBAAA11B3A813A89B8D7C481BB80E24C1C94E1F31_TisBasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A_mFF6F93BBCEEB841440524930B28D4257627F9604 (NetworkMatch_t520F80EBC98ADEE375884B456429236E5BBA0F3B * __this, UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * ___client0, InternalResponseDelegate_2_t4C3380D090B02AF491ABFE36875D463E04A81BD7 * ___internalCallback1, BasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A * ___userCallback2, const RuntimeMethod* method)
{
return (( RuntimeObject* (*) (NetworkMatch_t520F80EBC98ADEE375884B456429236E5BBA0F3B *, UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E *, InternalResponseDelegate_2_t4C3380D090B02AF491ABFE36875D463E04A81BD7 *, BasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A *, const RuntimeMethod*))NetworkMatch_ProcessMatchResponse_TisRuntimeObject_TisRuntimeObject_m07C8AFF99ACC623B15B76BC7A1F1E3D40633885C_gshared)(__this, ___client0, ___internalCallback1, ___userCallback2, method);
}
// System.Void UnityEngine.Networking.Match.ListMatchRequest::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListMatchRequest__ctor_mB13721CACFED14B46B80AD98571D216350953772 (ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.ListMatchRequest::set_pageNum(System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ListMatchRequest_set_pageNum_m3716C07B600678E685711BFCD0B0661B0C842034_inline (ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.ListMatchRequest::set_pageSize(System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ListMatchRequest_set_pageSize_mB474132B156ACAFD88EB07D1A9408E79100B43B9_inline (ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.ListMatchRequest::set_nameFilter(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ListMatchRequest_set_nameFilter_mFBBD2943CA68B32FABFACFCA178416CF9AC3BAEA_inline (ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.ListMatchRequest::set_filterOutPrivateMatches(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ListMatchRequest_set_filterOutPrivateMatches_m38C559485A9D47FD1A3C5FBC2454DC58B7A9F754_inline (ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * __this, bool ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.ListMatchRequest::set_eloScore(System.Int32)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ListMatchRequest_set_eloScore_m80EB463CA251672D86AA00C6FEF024129E1D4C90_inline (ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * __this, int32_t ___value0, const RuntimeMethod* method);
// UnityEngine.Coroutine UnityEngine.Networking.Match.NetworkMatch::ListMatches(UnityEngine.Networking.Match.ListMatchRequest,UnityEngine.Networking.Match.NetworkMatch/DataResponseDelegate`1<System.Collections.Generic.List`1<UnityEngine.Networking.Match.MatchInfoSnapshot>>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * NetworkMatch_ListMatches_m31C5ADB12D6D39D2E396964684D975C1FF3028C6 (NetworkMatch_t520F80EBC98ADEE375884B456429236E5BBA0F3B * __this, ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * ___req0, DataResponseDelegate_1_t363D50BBAED9945828B06A89FE812F0AEF4ABBA1 * ___callback1, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.NetworkMatch/InternalResponseDelegate`2<UnityEngine.Networking.Match.ListMatchResponse,UnityEngine.Networking.Match.NetworkMatch/DataResponseDelegate`1<System.Collections.Generic.List`1<UnityEngine.Networking.Match.MatchInfoSnapshot>>>::.ctor(System.Object,System.IntPtr)
inline void InternalResponseDelegate_2__ctor_mDD46AD163E17C98C5AC76F522B0835E2C1C6A22B (InternalResponseDelegate_2_t516CE3343F339242F578AC9659FD83BD4FAEEAB5 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
{
(( void (*) (InternalResponseDelegate_2_t516CE3343F339242F578AC9659FD83BD4FAEEAB5 *, RuntimeObject *, intptr_t, const RuntimeMethod*))InternalResponseDelegate_2__ctor_m27DC3C2064C66120EDC086E2B385F818193A9E91_gshared)(__this, ___object0, ___method1, method);
}
// System.Collections.IEnumerator UnityEngine.Networking.Match.NetworkMatch::ProcessMatchResponse<UnityEngine.Networking.Match.ListMatchResponse,UnityEngine.Networking.Match.NetworkMatch/DataResponseDelegate`1<System.Collections.Generic.List`1<UnityEngine.Networking.Match.MatchInfoSnapshot>>>(UnityEngine.Networking.UnityWebRequest,UnityEngine.Networking.Match.NetworkMatch/InternalResponseDelegate`2<JSONRESPONSE,USERRESPONSEDELEGATETYPE>,USERRESPONSEDELEGATETYPE)
inline RuntimeObject* NetworkMatch_ProcessMatchResponse_TisListMatchResponse_tA778241617E0B4AF172DE6201E27F64EA6670900_TisDataResponseDelegate_1_t363D50BBAED9945828B06A89FE812F0AEF4ABBA1_mF201DF179B23CD9A0BFD49C736F0031D7CAA2C6C (NetworkMatch_t520F80EBC98ADEE375884B456429236E5BBA0F3B * __this, UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * ___client0, InternalResponseDelegate_2_t516CE3343F339242F578AC9659FD83BD4FAEEAB5 * ___internalCallback1, DataResponseDelegate_1_t363D50BBAED9945828B06A89FE812F0AEF4ABBA1 * ___userCallback2, const RuntimeMethod* method)
{
return (( RuntimeObject* (*) (NetworkMatch_t520F80EBC98ADEE375884B456429236E5BBA0F3B *, UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E *, InternalResponseDelegate_2_t516CE3343F339242F578AC9659FD83BD4FAEEAB5 *, DataResponseDelegate_1_t363D50BBAED9945828B06A89FE812F0AEF4ABBA1 *, const RuntimeMethod*))NetworkMatch_ProcessMatchResponse_TisRuntimeObject_TisRuntimeObject_m07C8AFF99ACC623B15B76BC7A1F1E3D40633885C_gshared)(__this, ___client0, ___internalCallback1, ___userCallback2, method);
}
// System.Void System.Collections.Generic.List`1<UnityEngine.Networking.Match.MatchInfoSnapshot>::.ctor()
inline void List_1__ctor_m3773D4925D11B4FA7DAC7E5BD75BDB92B1968695 (List_1_t6DE630FAF3A1BE1CC9F17F3D6CBF747283858F2F * __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t6DE630FAF3A1BE1CC9F17F3D6CBF747283858F2F *, const RuntimeMethod*))List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared)(__this, method);
}
// System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<UnityEngine.Networking.Match.MatchDesc>::GetEnumerator()
inline Enumerator_t86EF25ED3E988DA18AE99A12A25AFE07FFF02303 List_1_GetEnumerator_mF15DD1A3B8F7221CBA8F8559B46A1F4A4808A896 (List_1_t2502ACE8E86D49AF07B92705BD60DD75F6358030 * __this, const RuntimeMethod* method)
{
return (( Enumerator_t86EF25ED3E988DA18AE99A12A25AFE07FFF02303 (*) (List_1_t2502ACE8E86D49AF07B92705BD60DD75F6358030 *, const RuntimeMethod*))List_1_GetEnumerator_m1739A5E25DF502A6984F9B98CFCAC2D3FABCF233_gshared)(__this, method);
}
// !0 System.Collections.Generic.List`1/Enumerator<UnityEngine.Networking.Match.MatchDesc>::get_Current()
inline MatchDesc_t49F2F401AE3A8B8B80EDF9838F88127727B4108B * Enumerator_get_Current_m4267B331E0ABC96A43B93371D123FF3FDECB5FC5_inline (Enumerator_t86EF25ED3E988DA18AE99A12A25AFE07FFF02303 * __this, const RuntimeMethod* method)
{
return (( MatchDesc_t49F2F401AE3A8B8B80EDF9838F88127727B4108B * (*) (Enumerator_t86EF25ED3E988DA18AE99A12A25AFE07FFF02303 *, const RuntimeMethod*))Enumerator_get_Current_m9C4EBBD2108B51885E750F927D7936290C8E20EE_gshared_inline)(__this, method);
}
// System.Void UnityEngine.Networking.Match.MatchInfoSnapshot::.ctor(UnityEngine.Networking.Match.MatchDesc)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchInfoSnapshot__ctor_mE27E4F585E32808834F47DF38512AF92A9655B20 (MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0 * __this, MatchDesc_t49F2F401AE3A8B8B80EDF9838F88127727B4108B * ___matchDesc0, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<UnityEngine.Networking.Match.MatchInfoSnapshot>::Add(!0)
inline void List_1_Add_mA13FB34C0A81132F7FC1D7C667B242626801E3EB (List_1_t6DE630FAF3A1BE1CC9F17F3D6CBF747283858F2F * __this, MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0 * ___item0, const RuntimeMethod* method)
{
(( void (*) (List_1_t6DE630FAF3A1BE1CC9F17F3D6CBF747283858F2F *, MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0 *, const RuntimeMethod*))List_1_Add_mE5B3CBB3A625606D9BC4337FEAAF1D66BCB6F96E_gshared)(__this, ___item0, method);
}
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.Networking.Match.MatchDesc>::MoveNext()
inline bool Enumerator_MoveNext_m7172A06A4C2A5FBE567C435CBA16C373CA3219DC (Enumerator_t86EF25ED3E988DA18AE99A12A25AFE07FFF02303 * __this, const RuntimeMethod* method)
{
return (( bool (*) (Enumerator_t86EF25ED3E988DA18AE99A12A25AFE07FFF02303 *, const RuntimeMethod*))Enumerator_MoveNext_m2E56233762839CE55C67E00AC8DD3D4D3F6C0DF0_gshared)(__this, method);
}
// System.Void System.Collections.Generic.List`1/Enumerator<UnityEngine.Networking.Match.MatchDesc>::Dispose()
inline void Enumerator_Dispose_m7BFD0B40F427E95E5E560D817FC12EB5C2660D5D (Enumerator_t86EF25ED3E988DA18AE99A12A25AFE07FFF02303 * __this, const RuntimeMethod* method)
{
(( void (*) (Enumerator_t86EF25ED3E988DA18AE99A12A25AFE07FFF02303 *, const RuntimeMethod*))Enumerator_Dispose_mCFB225D9E5E597A1CC8F958E53BEA1367D8AC7B8_gshared)(__this, method);
}
// System.Void UnityEngine.Networking.Match.NetworkMatch/DataResponseDelegate`1<System.Collections.Generic.List`1<UnityEngine.Networking.Match.MatchInfoSnapshot>>::Invoke(System.Boolean,System.String,T)
inline void DataResponseDelegate_1_Invoke_m349C8857DB465CF5418C91EC90E94D4842457854 (DataResponseDelegate_1_t363D50BBAED9945828B06A89FE812F0AEF4ABBA1 * __this, bool ___success0, String_t* ___extendedInfo1, List_1_t6DE630FAF3A1BE1CC9F17F3D6CBF747283858F2F * ___responseData2, const RuntimeMethod* method)
{
(( void (*) (DataResponseDelegate_1_t363D50BBAED9945828B06A89FE812F0AEF4ABBA1 *, bool, String_t*, List_1_t6DE630FAF3A1BE1CC9F17F3D6CBF747283858F2F *, const RuntimeMethod*))DataResponseDelegate_1_Invoke_m8101DBE1A97A7E1A7762DCECB0A9138FD12BAED4_gshared)(__this, ___success0, ___extendedInfo1, ___responseData2, method);
}
// System.Void UnityEngine.Networking.Match.SetMatchAttributesRequest::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SetMatchAttributesRequest__ctor_m2110EB4B0BDE74BF1E6D04F17D02787525F2F1BA (SetMatchAttributesRequest_t22EC5198C69E086FC5BC8DB4E249E4B90FAFF2E2 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.SetMatchAttributesRequest::set_networkId(UnityEngine.Networking.Types.NetworkID)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SetMatchAttributesRequest_set_networkId_m9B646C9BA765B12830FCBA07AB25701A7335FE92_inline (SetMatchAttributesRequest_t22EC5198C69E086FC5BC8DB4E249E4B90FAFF2E2 * __this, uint64_t ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.SetMatchAttributesRequest::set_isListed(System.Boolean)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SetMatchAttributesRequest_set_isListed_m374284C0BCFAA377F665F9FB8E7871126D2ED7F7_inline (SetMatchAttributesRequest_t22EC5198C69E086FC5BC8DB4E249E4B90FAFF2E2 * __this, bool ___value0, const RuntimeMethod* method);
// UnityEngine.Coroutine UnityEngine.Networking.Match.NetworkMatch::SetMatchAttributes(UnityEngine.Networking.Match.SetMatchAttributesRequest,UnityEngine.Networking.Match.NetworkMatch/BasicResponseDelegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * NetworkMatch_SetMatchAttributes_m3288DDCDAB7842EDFEC10C7BF5B48FDEA549CF08 (NetworkMatch_t520F80EBC98ADEE375884B456429236E5BBA0F3B * __this, SetMatchAttributesRequest_t22EC5198C69E086FC5BC8DB4E249E4B90FAFF2E2 * ___req0, BasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A * ___callback1, const RuntimeMethod* method);
// UnityEngine.Networking.Types.NetworkID UnityEngine.Networking.Match.SetMatchAttributesRequest::get_networkId()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint64_t SetMatchAttributesRequest_get_networkId_m7FCEC07EFF3DB82CFDF40B7D6AEF6C11029BFCE0_inline (SetMatchAttributesRequest_t22EC5198C69E086FC5BC8DB4E249E4B90FAFF2E2 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.Networking.Match.SetMatchAttributesRequest::get_isListed()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool SetMatchAttributesRequest_get_isListed_m4AD05BE1E93CD550D5EFED8AFDC8C3A14F539999_inline (SetMatchAttributesRequest_t22EC5198C69E086FC5BC8DB4E249E4B90FAFF2E2 * __this, const RuntimeMethod* method);
// System.Void System.Uri::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri__ctor_m7724F43B1525624FFF97A774B6B909B075714D5C (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, String_t* ___uriString0, const RuntimeMethod* method);
// System.Void UnityEngine.MonoBehaviour::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoBehaviour__ctor_mC0995D847F6A95B1A553652636C38A2AA8B13BED (MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * __this, const RuntimeMethod* method);
// System.Type System.Object::GetType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B (RuntimeObject * __this, const RuntimeMethod* method);
// System.Boolean System.String::op_Equality(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method);
// System.Byte System.Net.SocketAddress::get_Item(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t SocketAddress_get_Item_m4ED599B209C73DFB72212B7B3621B1703A26C5FD (SocketAddress_tE8FA33C91254662406767AF97518C235382742D3 * __this, int32_t ___offset0, const RuntimeMethod* method);
// System.Void System.Runtime.CompilerServices.RuntimeHelpers::InitializeArray(System.Array,System.RuntimeFieldHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeHelpers_InitializeArray_mE27238308FED781F2D6A719F0903F2E1311B058F (RuntimeArray * ___array0, RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 ___fldHandle1, const RuntimeMethod* method);
// System.Boolean System.String::op_Inequality(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Inequality_mDDA2DDED3E7EF042987EB7180EE3E88105F0AAE2 (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method);
// System.Int32 System.Net.SocketAddress::get_Size()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t SocketAddress_get_Size_m6383C5C4F9200464ACB6D583020F81019602CFA4_inline (SocketAddress_tE8FA33C91254662406767AF97518C235382742D3 * __this, const RuntimeMethod* method);
// System.Int64 System.BitConverter::ToInt64(System.Byte[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BitConverter_ToInt64_m6B5A5B4C68D036256417E9348FA25A257015B37E (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___value0, int32_t ___startIndex1, const RuntimeMethod* method);
// System.Void System.IntPtr::.ctor(System.Int64)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IntPtr__ctor_m2CDDF5A1715E7BCFDFB6823D7A18339BD8EB0E90 (intptr_t* __this, int64_t ___value0, const RuntimeMethod* method);
// System.Boolean System.IntPtr::op_Equality(System.IntPtr,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IntPtr_op_Equality_mD94F3FE43A65684EFF984A7B95E70D2520C0AC73 (intptr_t ___value10, intptr_t ___value21, const RuntimeMethod* method);
// System.Void System.Runtime.InteropServices.Marshal::Copy(System.IntPtr,System.Byte[],System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Marshal_Copy_m057A8067BF7212A361510EA26B24022990A07AC0 (intptr_t ___source0, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___destination1, int32_t ___startIndex2, int32_t ___length3, const RuntimeMethod* method);
// System.Int32 UnityEngine.Networking.NetworkTransport::Internal_ConnectEndPoint(System.Int32,System.Byte[],System.Int32,System.Int32,System.Byte&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NetworkTransport_Internal_ConnectEndPoint_m0C217E6A0B5B421DCCEAF786E1383D5629DD1727 (int32_t ___hostId0, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___sockAddrStorage1, int32_t ___sockAddrStorageLen2, int32_t ___exceptionConnectionId3, uint8_t* ___error4, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.NetworkTransport::InitializeClass()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkTransport_InitializeClass_m885F41697D3E728B618EE20A48B7F88BBF596891 (const RuntimeMethod* method);
// System.Action`1<System.Int32> UnityEngine.Networking.GlobalConfig::get_NetworkEventAvailable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Action_1_t080BA8EFA9616A494EBB4DD352BFEF943792E05B * GlobalConfig_get_NetworkEventAvailable_m6D648DA928B1C86504ED603F268A3036FBDB457E (GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.NetworkTransport::SetNetworkEventAvailableCallback(System.Action`1<System.Int32>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkTransport_SetNetworkEventAvailableCallback_m9996DCB1B44D723DC6D555810D3A474B8A91B64F (Action_1_t080BA8EFA9616A494EBB4DD352BFEF943792E05B * ___callback0, const RuntimeMethod* method);
// System.Action`2<System.Int32,System.Int32> UnityEngine.Networking.GlobalConfig::get_ConnectionReadyForSend()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Action_2_tCC1DAEC9EBDBAB5891B0CF72C24B016C610EFF39 * GlobalConfig_get_ConnectionReadyForSend_m8F88B2A0D0C17D7A9800470C377CF827694F3EE6 (GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.NetworkTransport::SetConnectionReadyForSendCallback(System.Action`2<System.Int32,System.Int32>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkTransport_SetConnectionReadyForSendCallback_mD9660BB5DDC8630EBB844DC6A717D4F6CBF8EF05 (Action_2_tCC1DAEC9EBDBAB5891B0CF72C24B016C610EFF39 * ___callback0, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.GlobalConfigInternal::.ctor(UnityEngine.Networking.GlobalConfig)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GlobalConfigInternal__ctor_m9D3BDDFE489512D1B72565B516638C76564AAA68 (GlobalConfigInternal_t0F07F384FD03D7CE842BC781D7C747B5579F680F * __this, GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 * ___config0, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.NetworkTransport::InitializeClassWithConfig(UnityEngine.Networking.GlobalConfigInternal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkTransport_InitializeClassWithConfig_mA43ECAAD1DEFB5BA599591691AF2B3826F6A0BDC (GlobalConfigInternal_t0F07F384FD03D7CE842BC781D7C747B5579F680F * ___config0, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.NetworkTransport::CheckTopology(UnityEngine.Networking.HostTopology)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkTransport_CheckTopology_mCA4CDEBBD3AA34CE15D5110586307B01EAD7C1AA (HostTopology_t268779309BB2D69F29D1A182662C79818813892B * ___topology0, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.HostTopologyInternal::.ctor(UnityEngine.Networking.HostTopology)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HostTopologyInternal__ctor_m9DAA9FD8AC2102B55B9EB6E4F334C8B8555F5E43 (HostTopologyInternal_tA95C0259BC91D8E3D227BAF3D4F7CEE5C5331E10 * __this, HostTopology_t268779309BB2D69F29D1A182662C79818813892B * ___topology0, const RuntimeMethod* method);
// System.Int32 UnityEngine.Networking.NetworkTransport::AddHostInternal(UnityEngine.Networking.HostTopologyInternal,System.String,System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NetworkTransport_AddHostInternal_mE6C08100955EB6B0A84D2012C4539CCEFD21D78F (HostTopologyInternal_tA95C0259BC91D8E3D227BAF3D4F7CEE5C5331E10 * ___topologyInt0, String_t* ___ip1, int32_t ___port2, int32_t ___minTimeout3, int32_t ___maxTimeout4, const RuntimeMethod* method);
// System.Int32 UnityEngine.Networking.NetworkTransport::AddHostWithSimulator(UnityEngine.Networking.HostTopology,System.Int32,System.Int32,System.Int32,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NetworkTransport_AddHostWithSimulator_m7D2AA3190354AF70603B43E642EBABD8B014E2B8 (HostTopology_t268779309BB2D69F29D1A182662C79818813892B * ___topology0, int32_t ___minTimeout1, int32_t ___maxTimeout2, int32_t ___port3, String_t* ___ip4, const RuntimeMethod* method);
// System.Boolean UnityEngine.Networking.NetworkTransport::IsPortOpen(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NetworkTransport_IsPortOpen_mDE9CADB4888CF273569A783CD842A22D921AAFB4 (String_t* ___ip0, int32_t ___port1, const RuntimeMethod* method);
// System.String System.String::Concat(System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m89EAB4C6A96B0E5C3F87300D6BE78D386B9EFC44 (String_t* ___str00, String_t* ___str11, String_t* ___str22, const RuntimeMethod* method);
// System.Void System.InvalidOperationException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Int32 UnityEngine.Networking.NetworkTransport::AddWsHostInternal(UnityEngine.Networking.HostTopologyInternal,System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NetworkTransport_AddWsHostInternal_mC1C24C4B573DA481ED99DB6C68B44E29D30A6AB0 (HostTopologyInternal_tA95C0259BC91D8E3D227BAF3D4F7CEE5C5331E10 * ___topologyInt0, String_t* ___ip1, int32_t ___port2, const RuntimeMethod* method);
// System.TimeSpan System.TimeSpan::FromMilliseconds(System.Double)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 TimeSpan_FromMilliseconds_m12D90542B044C450FDFBCEA1CBC32369479483EC (double ___value0, const RuntimeMethod* method);
// System.Void System.Net.Sockets.TcpClient::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TcpClient__ctor_m04BD4EDA03D1AE7183FC99DB886BD93CF85D2F2C (TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * __this, const RuntimeMethod* method);
// System.IAsyncResult System.Net.Sockets.TcpClient::BeginConnect(System.String,System.Int32,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TcpClient_BeginConnect_mAF5D929DCA6FFD78BC0DE6E0F448B5F911CD8303 (TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * __this, String_t* ___host0, int32_t ___port1, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___requestCallback2, RuntimeObject * ___state3, const RuntimeMethod* method);
// System.Void System.Net.Sockets.TcpClient::EndConnect(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TcpClient_EndConnect_m8A878839804034D19DA751A6FC9C11736017782D (TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * __this, RuntimeObject* ___asyncResult0, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.NetworkTransport::ConnectAsNetworkHostInternal(System.Int32,System.String,System.Int32,System.UInt64,System.UInt64,System.UInt16,System.Byte&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkTransport_ConnectAsNetworkHostInternal_m94E35F271C763E9352979273766BCADE2119B737 (int32_t ___hostId0, String_t* ___address1, int32_t ___port2, uint64_t ___network3, uint64_t ___source4, uint16_t ___node5, uint8_t* ___error6, const RuntimeMethod* method);
// System.Int32 UnityEngine.Networking.NetworkTransport::ReceiveRelayEventFromHostInternal(System.Int32,System.Byte&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NetworkTransport_ReceiveRelayEventFromHostInternal_m95E08AB6EAA9551BBA636B8994B782AA59CDD616 (int32_t ___hostId0, uint8_t* ___error1, const RuntimeMethod* method);
// System.Int32 UnityEngine.Networking.NetworkTransport::ConnectToNetworkPeerInternal(System.Int32,System.String,System.Int32,System.Int32,System.Int32,System.UInt64,System.UInt64,System.UInt16,System.Int32,System.Single,System.Byte&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NetworkTransport_ConnectToNetworkPeerInternal_m8E3EFCA23270665D8A312C6B9B824F79EDD3E306 (int32_t ___hostId0, String_t* ___address1, int32_t ___port2, int32_t ___exceptionConnectionId3, int32_t ___relaySlotId4, uint64_t ___network5, uint64_t ___source6, uint16_t ___node7, int32_t ___bytesPerSec8, float ___bucketSizeFactor9, uint8_t* ___error10, const RuntimeMethod* method);
// System.Int32 UnityEngine.Networking.NetworkTransport::ConnectToNetworkPeer(System.Int32,System.String,System.Int32,System.Int32,System.Int32,UnityEngine.Networking.Types.NetworkID,UnityEngine.Networking.Types.SourceID,UnityEngine.Networking.Types.NodeID,System.Int32,System.Single,System.Byte&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NetworkTransport_ConnectToNetworkPeer_mFCFABDAEAF6C5B1BC3BB71FA26BD22132BFE2281 (int32_t ___hostId0, String_t* ___address1, int32_t ___port2, int32_t ___exceptionConnectionId3, int32_t ___relaySlotId4, uint64_t ___network5, uint64_t ___source6, uint16_t ___node7, int32_t ___bytesPerSec8, float ___bucketSizeFactor9, uint8_t* ___error10, const RuntimeMethod* method);
// System.String UnityEngine.Networking.NetworkTransport::GetConnectionInfo(System.Int32,System.Int32,System.Int32&,System.UInt64&,System.UInt16&,System.Byte&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NetworkTransport_GetConnectionInfo_m9C1C905E4C06B265514A87B380E4851795068A24 (int32_t ___hostId0, int32_t ___connectionId1, int32_t* ___port2, uint64_t* ___network3, uint16_t* ___dstNode4, uint8_t* ___error5, const RuntimeMethod* method);
// System.Boolean UnityEngine.Networking.NetworkTransport::IsStartedInternal()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NetworkTransport_IsStartedInternal_m90ABBFFB0BAD69105ACFB91ABEA5D53345C1145A (const RuntimeMethod* method);
// System.Void UnityEngine.Networking.ConnectionSimulatorConfigInternal::.ctor(UnityEngine.Networking.ConnectionSimulatorConfig)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionSimulatorConfigInternal__ctor_m06E528FBFBA47A5F5B3FCD8438C23055104CBBE5 (ConnectionSimulatorConfigInternal_tB19B4AE3F50ACB7661DC811F6198E37C08ACDB99 * __this, ConnectionSimulatorConfig_t1AE9575EDB85F7792DE5F22A4E096A4A08AEB935 * ___config0, const RuntimeMethod* method);
// System.Int32 UnityEngine.Networking.NetworkTransport::ConnectWithSimulatorInternal(System.Int32,System.String,System.Int32,System.Int32,System.Byte&,UnityEngine.Networking.ConnectionSimulatorConfigInternal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NetworkTransport_ConnectWithSimulatorInternal_m89044D238A13391ACC38F88E18D6EBE64AECB93C (int32_t ___hostId0, String_t* ___address1, int32_t ___port2, int32_t ___exeptionConnectionId3, uint8_t* ___error4, ConnectionSimulatorConfigInternal_tB19B4AE3F50ACB7661DC811F6198E37C08ACDB99 * ___conf5, const RuntimeMethod* method);
// System.Boolean UnityEngine.Networking.NetworkTransport::SendWrapper(System.Int32,System.Int32,System.Int32,System.Byte[],System.Int32,System.Byte&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NetworkTransport_SendWrapper_m2BEDC12E5B2E0AADC4E602DDEDA16552C29EBB5D (int32_t ___hostId0, int32_t ___connectionId1, int32_t ___channelId2, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___buffer3, int32_t ___size4, uint8_t* ___error5, const RuntimeMethod* method);
// System.Int32 UnityEngine.Networking.NetworkTransport::PopDataFromHost(System.Int32,System.Int32&,System.Int32&,System.Byte[],System.Int32,System.Int32&,System.Byte&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NetworkTransport_PopDataFromHost_mB17AEA581E92B7C403B4C14C01A796E55138D910 (int32_t ___hostId0, int32_t* ___connectionId1, int32_t* ___channelId2, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___buffer3, int32_t ___bufferSize4, int32_t* ___receivedSize5, uint8_t* ___error6, const RuntimeMethod* method);
// System.String System.String::Concat(System.String,System.String,System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m37A5BF26F8F8F1892D60D727303B23FB604FEE78 (String_t* ___str00, String_t* ___str11, String_t* ___str22, String_t* ___str33, const RuntimeMethod* method);
// System.Boolean UnityEngine.Networking.NetworkTransport::StartBroadcastDiscoveryWithoutData(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Byte&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NetworkTransport_StartBroadcastDiscoveryWithoutData_m985BE33A67959A02321F1780BB665662D46FD62B (int32_t ___hostId0, int32_t ___broadcastPort1, int32_t ___key2, int32_t ___version3, int32_t ___subversion4, int32_t ___timeout5, uint8_t* ___error6, const RuntimeMethod* method);
// System.Boolean UnityEngine.Networking.NetworkTransport::StartBroadcastDiscoveryWithData(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Byte[],System.Int32,System.Int32,System.Byte&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NetworkTransport_StartBroadcastDiscoveryWithData_mB0A23FD80B800FBE56A7A04E3FDB576B3A2F6E3C (int32_t ___hostId0, int32_t ___broadcastPort1, int32_t ___key2, int32_t ___version3, int32_t ___subversion4, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___buffer5, int32_t ___size6, int32_t ___timeout7, uint8_t* ___error8, const RuntimeMethod* method);
// System.String UnityEngine.Networking.NetworkTransport::GetBroadcastConnectionInfo(System.Int32,System.Int32&,System.Byte&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NetworkTransport_GetBroadcastConnectionInfo_m62F63910563D06061C43A1339D717939C785304A (int32_t ___hostId0, int32_t* ___port1, uint8_t* ___error2, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.NetworkTransport::GetBroadcastConnectionMessageInternal(System.Int32,System.Byte[],System.Int32,System.Int32&,System.Byte&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkTransport_GetBroadcastConnectionMessageInternal_mB15C89BE28F66259CFF5E24EBEAC2F6942793CB3 (int32_t ___hostId0, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___buffer1, int32_t ___bufferSize2, int32_t* ___receivedSize3, uint8_t* ___error4, const RuntimeMethod* method);
// System.Int32 UnityEngine.Networking.NetworkTransport::GetMaxPacketSize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NetworkTransport_GetMaxPacketSize_m98EE9A0A5FD4C30AEF12D0B7EE498B3043E929F1 (const RuntimeMethod* method);
// System.Collections.Generic.List`1<UnityEngine.Networking.ConnectionConfig> UnityEngine.Networking.HostTopology::get_SpecialConnectionConfigs()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t46489AA4DB932B33C96BA58827F21F14C831C2DE * HostTopology_get_SpecialConnectionConfigs_m6FA6CF1CD59EBC0DBBB9454048EDDACE322C029C (HostTopology_t268779309BB2D69F29D1A182662C79818813892B * __this, const RuntimeMethod* method);
// UnityEngine.Networking.Types.SourceID UnityEngine.Networking.Match.Request::get_sourceId()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint64_t Request_get_sourceId_m51B4838441451B97A9CD39654905F8497777C230_inline (Request_tA1BC1936C153408449C4C207CA12D4358A7477FD * __this, const RuntimeMethod* method);
// System.String UnityEngine.Networking.Match.Request::get_projectId()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* Request_get_projectId_m6F11899984870CE38D74843B1F3B1705B9E86ED0_inline (Request_tA1BC1936C153408449C4C207CA12D4358A7477FD * __this, const RuntimeMethod* method);
// System.String UnityEngine.Networking.Match.Request::get_accessTokenString()
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* Request_get_accessTokenString_m6D1262B00D9BD603880CBB45852A695711DA7042_inline (Request_tA1BC1936C153408449C4C207CA12D4358A7477FD * __this, const RuntimeMethod* method);
// System.String UnityEngine.SystemInfo::get_deviceUniqueIdentifier()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SystemInfo_get_deviceUniqueIdentifier_m12CA3C3D8C75E44FBFA73E2E34D9E743AF732B1E (const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2<UnityEngine.Networking.Types.NetworkID,UnityEngine.Networking.Types.NetworkAccessToken>::ContainsKey(!0)
inline bool Dictionary_2_ContainsKey_m7402E5AA50B26C1263364008B6293C58493B9700 (Dictionary_2_tF197FC5D732CB0BAFF2699E9BC01198A9264E0BA * __this, uint64_t ___key0, const RuntimeMethod* method)
{
return (( bool (*) (Dictionary_2_tF197FC5D732CB0BAFF2699E9BC01198A9264E0BA *, uint64_t, const RuntimeMethod*))Dictionary_2_ContainsKey_mD6F501A8918224BB6AF0D31664A2EB7A30E01CA7_gshared)(__this, ___key0, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2<UnityEngine.Networking.Types.NetworkID,UnityEngine.Networking.Types.NetworkAccessToken>::Remove(!0)
inline bool Dictionary_2_Remove_m6C9ADF70804F80C044BF0B3BBB2A6A08C53E1284 (Dictionary_2_tF197FC5D732CB0BAFF2699E9BC01198A9264E0BA * __this, uint64_t ___key0, const RuntimeMethod* method)
{
return (( bool (*) (Dictionary_2_tF197FC5D732CB0BAFF2699E9BC01198A9264E0BA *, uint64_t, const RuntimeMethod*))Dictionary_2_Remove_m276EF8288F37B1453611959B09FA022AFAF92A3B_gshared)(__this, ___key0, method);
}
// System.Void System.Collections.Generic.Dictionary`2<UnityEngine.Networking.Types.NetworkID,UnityEngine.Networking.Types.NetworkAccessToken>::Add(!0,!1)
inline void Dictionary_2_Add_mC9565B511D1371B68F07DB865095C9304A8F0D74 (Dictionary_2_tF197FC5D732CB0BAFF2699E9BC01198A9264E0BA * __this, uint64_t ___key0, NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481 * ___value1, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_tF197FC5D732CB0BAFF2699E9BC01198A9264E0BA *, uint64_t, NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481 *, const RuntimeMethod*))Dictionary_2_Add_mCC06FF610D911C8BA69694102546E3E5AC2A9350_gshared)(__this, ___key0, ___value1, method);
}
// System.Boolean System.Collections.Generic.Dictionary`2<UnityEngine.Networking.Types.NetworkID,UnityEngine.Networking.Types.NetworkAccessToken>::TryGetValue(!0,!1&)
inline bool Dictionary_2_TryGetValue_mBCDA7DD151F5870CC0A86694D90D169DCDDDF333 (Dictionary_2_tF197FC5D732CB0BAFF2699E9BC01198A9264E0BA * __this, uint64_t ___key0, NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481 ** ___value1, const RuntimeMethod* method)
{
return (( bool (*) (Dictionary_2_tF197FC5D732CB0BAFF2699E9BC01198A9264E0BA *, uint64_t, NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481 **, const RuntimeMethod*))Dictionary_2_TryGetValue_mC5F9112328E1B7D2F0227FCA3DA4ADBEF45DFA01_gshared)(__this, ___key0, ___value1, method);
}
// System.Void UnityEngine.Networking.Types.NetworkAccessToken::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkAccessToken__ctor_m2CF052E50D9B3171B669859E021ABF33959D6019 (NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481 * __this, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<UnityEngine.Networking.Types.NetworkID,UnityEngine.Networking.Types.NetworkAccessToken>::.ctor()
inline void Dictionary_2__ctor_m579860025819FDFA94E93CC9F43D1E0E1CB4ADCE (Dictionary_2_tF197FC5D732CB0BAFF2699E9BC01198A9264E0BA * __this, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_tF197FC5D732CB0BAFF2699E9BC01198A9264E0BA *, const RuntimeMethod*))Dictionary_2__ctor_m5FBC2BB88090791E9435F6F1437AAF58C6C3CB77_gshared)(__this, method);
}
// System.Void UnityEngine.Networking.Match.MatchInfoSnapshot/MatchInfoDirectConnectSnapshot::set_nodeId(UnityEngine.Networking.Types.NodeID)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MatchInfoDirectConnectSnapshot_set_nodeId_m6CEC68A411E5CF0BA8F117E2320183B8F2A7A427_inline (MatchInfoDirectConnectSnapshot_t82741E9963C92FE12F5CB64A40851676E4677F6C * __this, uint16_t ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.MatchInfoSnapshot/MatchInfoDirectConnectSnapshot::set_publicAddress(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MatchInfoDirectConnectSnapshot_set_publicAddress_mD2BE5562A61C27A943E18910A89C885CDB7A854D_inline (MatchInfoDirectConnectSnapshot_t82741E9963C92FE12F5CB64A40851676E4677F6C * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.MatchInfoSnapshot/MatchInfoDirectConnectSnapshot::set_privateAddress(System.String)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MatchInfoDirectConnectSnapshot_set_privateAddress_mB53B9DFB3F4E624E65A1A0D63B789F25948A3CDA_inline (MatchInfoDirectConnectSnapshot_t82741E9963C92FE12F5CB64A40851676E4677F6C * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Void UnityEngine.Networking.Match.MatchInfoSnapshot/MatchInfoDirectConnectSnapshot::set_hostPriority(UnityEngine.Networking.Types.HostPriority)
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MatchInfoDirectConnectSnapshot_set_hostPriority_m92F2A1B50E815DB131E65362A37E4BBEF0098CF9_inline (MatchInfoDirectConnectSnapshot_t82741E9963C92FE12F5CB64A40851676E4677F6C * __this, int32_t ___value0, const RuntimeMethod* method);
// System.Void System.ThrowHelper::ThrowArgumentOutOfRangeException()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_m4841366ABC2B2AFA37C10900551D7E07522C0929 (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
#ifdef __clang__
#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 UnityEngine.Networking.Match.BasicResponse::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BasicResponse__ctor_m4C5BA6FDCDC2F728E13005AA17173DA8D5C7D18F (BasicResponse_t9579CCF321F1A381924A886EC1A6496DAC3FC484 * __this, const RuntimeMethod* method)
{
{
Response__ctor_m06ECAE7C56D0AAAE1271485B6C7C520049201C9E(__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 UnityEngine.Networking.ChannelQOS::.ctor(UnityEngine.Networking.QosType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChannelQOS__ctor_m27A6808139CF080A838D4BEB5F0E10246017335A (ChannelQOS_tF55C4AC4858FAFCFBDA366C6F6B1E2B35DFFF3DE * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
int32_t L_0 = ___value0;
__this->set_m_Type_0(L_0);
__this->set_m_BelongsSharedOrderChannel_1((bool)0);
return;
}
}
// System.Void UnityEngine.Networking.ChannelQOS::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChannelQOS__ctor_mC81B2299638594A864108C3B898944CA10F7B146 (ChannelQOS_tF55C4AC4858FAFCFBDA366C6F6B1E2B35DFFF3DE * __this, const RuntimeMethod* method)
{
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
__this->set_m_Type_0(0);
__this->set_m_BelongsSharedOrderChannel_1((bool)0);
return;
}
}
// System.Void UnityEngine.Networking.ChannelQOS::.ctor(UnityEngine.Networking.ChannelQOS)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ChannelQOS__ctor_m885E633D2A1D64E13E087DA039943C767E575DA8 (ChannelQOS_tF55C4AC4858FAFCFBDA366C6F6B1E2B35DFFF3DE * __this, ChannelQOS_tF55C4AC4858FAFCFBDA366C6F6B1E2B35DFFF3DE * ___channel0, const RuntimeMethod* method)
{
bool V_0 = false;
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
ChannelQOS_tF55C4AC4858FAFCFBDA366C6F6B1E2B35DFFF3DE * L_0 = ___channel0;
V_0 = (bool)((((RuntimeObject*)(ChannelQOS_tF55C4AC4858FAFCFBDA366C6F6B1E2B35DFFF3DE *)L_0) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_001b;
}
}
{
NullReferenceException_t44B4F3CDE3111E74591952B8BE8707B28866D724 * L_2 = (NullReferenceException_t44B4F3CDE3111E74591952B8BE8707B28866D724 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NullReferenceException_t44B4F3CDE3111E74591952B8BE8707B28866D724_il2cpp_TypeInfo_var)));
NullReferenceException__ctor_mF1733893E10358B400E817297D686A48AB3FB7B3(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4DB1A45BB662D79231E9447F2CBFDE3B6CE19D71)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ChannelQOS__ctor_m885E633D2A1D64E13E087DA039943C767E575DA8_RuntimeMethod_var)));
}
IL_001b:
{
ChannelQOS_tF55C4AC4858FAFCFBDA366C6F6B1E2B35DFFF3DE * L_3 = ___channel0;
NullCheck(L_3);
int32_t L_4 = L_3->get_m_Type_0();
__this->set_m_Type_0(L_4);
ChannelQOS_tF55C4AC4858FAFCFBDA366C6F6B1E2B35DFFF3DE * L_5 = ___channel0;
NullCheck(L_5);
bool L_6 = L_5->get_m_BelongsSharedOrderChannel_1();
__this->set_m_BelongsSharedOrderChannel_1(L_6);
return;
}
}
// UnityEngine.Networking.QosType UnityEngine.Networking.ChannelQOS::get_QOS()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ChannelQOS_get_QOS_mF5244DCF956770207F0E45F59EE694FA0647917B (ChannelQOS_tF55C4AC4858FAFCFBDA366C6F6B1E2B35DFFF3DE * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = __this->get_m_Type_0();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
int32_t L_1 = V_0;
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
#ifdef __clang__
#pragma 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 UnityEngine.Networking.ConnectionConfig::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfig__ctor_mCB0E2B50103AB6B3917758DC5FC0E52AD153DED3 (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m07E75EC513A2A1B607C7C94D32F9F1DD52F9DC81_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m0F98CE6F7E0141E6A7388E6DA3FCC2F93802C219_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t4A161C6204A381DADE144FA5F63CF0E3E7E11E33_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t74C85CD2BEE64FE69AE8BF4BAB62A4186A73655B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
List_1_t4A161C6204A381DADE144FA5F63CF0E3E7E11E33 * L_0 = (List_1_t4A161C6204A381DADE144FA5F63CF0E3E7E11E33 *)il2cpp_codegen_object_new(List_1_t4A161C6204A381DADE144FA5F63CF0E3E7E11E33_il2cpp_TypeInfo_var);
List_1__ctor_m0F98CE6F7E0141E6A7388E6DA3FCC2F93802C219(L_0, /*hidden argument*/List_1__ctor_m0F98CE6F7E0141E6A7388E6DA3FCC2F93802C219_RuntimeMethod_var);
__this->set_m_Channels_27(L_0);
List_1_t74C85CD2BEE64FE69AE8BF4BAB62A4186A73655B * L_1 = (List_1_t74C85CD2BEE64FE69AE8BF4BAB62A4186A73655B *)il2cpp_codegen_object_new(List_1_t74C85CD2BEE64FE69AE8BF4BAB62A4186A73655B_il2cpp_TypeInfo_var);
List_1__ctor_m07E75EC513A2A1B607C7C94D32F9F1DD52F9DC81(L_1, /*hidden argument*/List_1__ctor_m07E75EC513A2A1B607C7C94D32F9F1DD52F9DC81_RuntimeMethod_var);
__this->set_m_SharedOrderChannels_28(L_1);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
__this->set_m_PacketSize_1((uint16_t)((int32_t)1440));
__this->set_m_FragmentSize_2((uint16_t)((int32_t)500));
__this->set_m_ResendTimeout_3(((int32_t)1200));
__this->set_m_DisconnectTimeout_4(((int32_t)2000));
__this->set_m_ConnectTimeout_5(((int32_t)2000));
__this->set_m_MinUpdateTimeout_6(((int32_t)10));
__this->set_m_PingTimeout_7(((int32_t)500));
__this->set_m_ReducedPingTimeout_8(((int32_t)100));
__this->set_m_AllCostTimeout_9(((int32_t)20));
__this->set_m_NetworkDropThreshold_10((uint8_t)5);
__this->set_m_OverflowDropThreshold_11((uint8_t)5);
__this->set_m_MaxConnectionAttempt_12((uint8_t)((int32_t)10));
__this->set_m_AckDelay_13(((int32_t)33));
__this->set_m_SendDelay_14(((int32_t)10));
__this->set_m_MaxCombinedReliableMessageSize_15((uint16_t)((int32_t)100));
__this->set_m_MaxCombinedReliableMessageCount_16((uint16_t)((int32_t)10));
__this->set_m_MaxSentMessageQueueSize_17((uint16_t)((int32_t)512));
__this->set_m_AcksType_18(1);
__this->set_m_UsePlatformSpecificProtocols_19((bool)0);
__this->set_m_InitialBandwidth_20(0);
__this->set_m_BandwidthPeakFactor_21((2.0f));
__this->set_m_WebSocketReceiveBufferMaxSize_22((uint16_t)0);
__this->set_m_UdpSocketReceiveBufferMaxSize_23(0);
__this->set_m_SSLCertFilePath_24((String_t*)NULL);
__this->set_m_SSLPrivateKeyFilePath_25((String_t*)NULL);
__this->set_m_SSLCAFilePath_26((String_t*)NULL);
return;
}
}
// System.Void UnityEngine.Networking.ConnectionConfig::.ctor(UnityEngine.Networking.ConnectionConfig)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfig__ctor_m1976654A083CE2C1858BECF7EED65005BFC16343 (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * ___config0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ChannelQOS_tF55C4AC4858FAFCFBDA366C6F6B1E2B35DFFF3DE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_mC56BDC16EF132C1FF68A2DE409C105AD6B6EDB92_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_mCA5AF94E5CDC291C5024A38E2660C8CB19682EE0_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_mCF03F3EA00D810696408ABDA570EF4EF0976E030_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_mD073B0C912CA5B28B0809D9F5CA2848BDC176469_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m9C6BB00A24C9CB4946A9E76569A445E8173A2B01_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mEC015BBE1981CD48D16AA43753CE5A52D359E57F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m04CCA815BA538CCC717F5B0CEABEE87777C02191_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m395F91C48816169EBE7E930528A1A8CE600FD060_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_m795565AF9DAB5243B5CCB29CA6129D67F619C88E_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_mBC12FB54B3BD6D46D3D0041FC837BB9B5ABD5224_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m07E75EC513A2A1B607C7C94D32F9F1DD52F9DC81_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m0F98CE6F7E0141E6A7388E6DA3FCC2F93802C219_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t4A161C6204A381DADE144FA5F63CF0E3E7E11E33_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t74C85CD2BEE64FE69AE8BF4BAB62A4186A73655B_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
Enumerator_t2F8B0C9500483A43B42F26A09356CEA1E8162787 V_2;
memset((&V_2), 0, sizeof(V_2));
ChannelQOS_tF55C4AC4858FAFCFBDA366C6F6B1E2B35DFFF3DE * V_3 = NULL;
Enumerator_t0340BD53573C77700ED3FF138F75977DCBDF1DEE V_4;
memset((&V_4), 0, sizeof(V_4));
List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF * V_5 = NULL;
Exception_t * __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 2> __leave_targets;
{
List_1_t4A161C6204A381DADE144FA5F63CF0E3E7E11E33 * L_0 = (List_1_t4A161C6204A381DADE144FA5F63CF0E3E7E11E33 *)il2cpp_codegen_object_new(List_1_t4A161C6204A381DADE144FA5F63CF0E3E7E11E33_il2cpp_TypeInfo_var);
List_1__ctor_m0F98CE6F7E0141E6A7388E6DA3FCC2F93802C219(L_0, /*hidden argument*/List_1__ctor_m0F98CE6F7E0141E6A7388E6DA3FCC2F93802C219_RuntimeMethod_var);
__this->set_m_Channels_27(L_0);
List_1_t74C85CD2BEE64FE69AE8BF4BAB62A4186A73655B * L_1 = (List_1_t74C85CD2BEE64FE69AE8BF4BAB62A4186A73655B *)il2cpp_codegen_object_new(List_1_t74C85CD2BEE64FE69AE8BF4BAB62A4186A73655B_il2cpp_TypeInfo_var);
List_1__ctor_m07E75EC513A2A1B607C7C94D32F9F1DD52F9DC81(L_1, /*hidden argument*/List_1__ctor_m07E75EC513A2A1B607C7C94D32F9F1DD52F9DC81_RuntimeMethod_var);
__this->set_m_SharedOrderChannels_28(L_1);
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_2 = ___config0;
V_0 = (bool)((((RuntimeObject*)(ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A *)L_2) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_3 = V_0;
if (!L_3)
{
goto IL_0031;
}
}
{
NullReferenceException_t44B4F3CDE3111E74591952B8BE8707B28866D724 * L_4 = (NullReferenceException_t44B4F3CDE3111E74591952B8BE8707B28866D724 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NullReferenceException_t44B4F3CDE3111E74591952B8BE8707B28866D724_il2cpp_TypeInfo_var)));
NullReferenceException__ctor_mF1733893E10358B400E817297D686A48AB3FB7B3(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral317EE74AF038EFA1EFB835A1A142AD358C5939C3)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ConnectionConfig__ctor_m1976654A083CE2C1858BECF7EED65005BFC16343_RuntimeMethod_var)));
}
IL_0031:
{
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_5 = ___config0;
NullCheck(L_5);
uint16_t L_6 = L_5->get_m_PacketSize_1();
__this->set_m_PacketSize_1(L_6);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_7 = ___config0;
NullCheck(L_7);
uint16_t L_8 = L_7->get_m_FragmentSize_2();
__this->set_m_FragmentSize_2(L_8);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_9 = ___config0;
NullCheck(L_9);
uint32_t L_10 = L_9->get_m_ResendTimeout_3();
__this->set_m_ResendTimeout_3(L_10);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_11 = ___config0;
NullCheck(L_11);
uint32_t L_12 = L_11->get_m_DisconnectTimeout_4();
__this->set_m_DisconnectTimeout_4(L_12);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_13 = ___config0;
NullCheck(L_13);
uint32_t L_14 = L_13->get_m_ConnectTimeout_5();
__this->set_m_ConnectTimeout_5(L_14);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_15 = ___config0;
NullCheck(L_15);
uint32_t L_16 = L_15->get_m_MinUpdateTimeout_6();
__this->set_m_MinUpdateTimeout_6(L_16);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_17 = ___config0;
NullCheck(L_17);
uint32_t L_18 = L_17->get_m_PingTimeout_7();
__this->set_m_PingTimeout_7(L_18);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_19 = ___config0;
NullCheck(L_19);
uint32_t L_20 = L_19->get_m_ReducedPingTimeout_8();
__this->set_m_ReducedPingTimeout_8(L_20);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_21 = ___config0;
NullCheck(L_21);
uint32_t L_22 = L_21->get_m_AllCostTimeout_9();
__this->set_m_AllCostTimeout_9(L_22);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_23 = ___config0;
NullCheck(L_23);
uint8_t L_24 = L_23->get_m_NetworkDropThreshold_10();
__this->set_m_NetworkDropThreshold_10(L_24);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_25 = ___config0;
NullCheck(L_25);
uint8_t L_26 = L_25->get_m_OverflowDropThreshold_11();
__this->set_m_OverflowDropThreshold_11(L_26);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_27 = ___config0;
NullCheck(L_27);
uint8_t L_28 = L_27->get_m_MaxConnectionAttempt_12();
__this->set_m_MaxConnectionAttempt_12(L_28);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_29 = ___config0;
NullCheck(L_29);
uint32_t L_30 = L_29->get_m_AckDelay_13();
__this->set_m_AckDelay_13(L_30);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_31 = ___config0;
NullCheck(L_31);
uint32_t L_32 = L_31->get_m_SendDelay_14();
__this->set_m_SendDelay_14(L_32);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_33 = ___config0;
NullCheck(L_33);
uint16_t L_34;
L_34 = ConnectionConfig_get_MaxCombinedReliableMessageSize_m9165A4E3AE23CDADE7CAEFA3FAC29401A6449CD1(L_33, /*hidden argument*/NULL);
__this->set_m_MaxCombinedReliableMessageSize_15(L_34);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_35 = ___config0;
NullCheck(L_35);
uint16_t L_36 = L_35->get_m_MaxCombinedReliableMessageCount_16();
__this->set_m_MaxCombinedReliableMessageCount_16(L_36);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_37 = ___config0;
NullCheck(L_37);
uint16_t L_38 = L_37->get_m_MaxSentMessageQueueSize_17();
__this->set_m_MaxSentMessageQueueSize_17(L_38);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_39 = ___config0;
NullCheck(L_39);
int32_t L_40 = L_39->get_m_AcksType_18();
__this->set_m_AcksType_18(L_40);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_41 = ___config0;
NullCheck(L_41);
bool L_42 = L_41->get_m_UsePlatformSpecificProtocols_19();
__this->set_m_UsePlatformSpecificProtocols_19(L_42);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_43 = ___config0;
NullCheck(L_43);
uint32_t L_44 = L_43->get_m_InitialBandwidth_20();
__this->set_m_InitialBandwidth_20(L_44);
uint32_t L_45 = __this->get_m_InitialBandwidth_20();
V_1 = (bool)((((int32_t)L_45) == ((int32_t)0))? 1 : 0);
bool L_46 = V_1;
if (!L_46)
{
goto IL_0149;
}
}
{
uint16_t L_47 = __this->get_m_PacketSize_1();
uint32_t L_48 = __this->get_m_MinUpdateTimeout_6();
__this->set_m_InitialBandwidth_20(((int32_t)((uint32_t)(int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_47, (int32_t)((int32_t)1000)))/(uint32_t)(int32_t)L_48)));
}
IL_0149:
{
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_49 = ___config0;
NullCheck(L_49);
float L_50 = L_49->get_m_BandwidthPeakFactor_21();
__this->set_m_BandwidthPeakFactor_21(L_50);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_51 = ___config0;
NullCheck(L_51);
uint16_t L_52 = L_51->get_m_WebSocketReceiveBufferMaxSize_22();
__this->set_m_WebSocketReceiveBufferMaxSize_22(L_52);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_53 = ___config0;
NullCheck(L_53);
uint32_t L_54 = L_53->get_m_UdpSocketReceiveBufferMaxSize_23();
__this->set_m_UdpSocketReceiveBufferMaxSize_23(L_54);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_55 = ___config0;
NullCheck(L_55);
String_t* L_56 = L_55->get_m_SSLCertFilePath_24();
__this->set_m_SSLCertFilePath_24(L_56);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_57 = ___config0;
NullCheck(L_57);
String_t* L_58 = L_57->get_m_SSLPrivateKeyFilePath_25();
__this->set_m_SSLPrivateKeyFilePath_25(L_58);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_59 = ___config0;
NullCheck(L_59);
String_t* L_60 = L_59->get_m_SSLCAFilePath_26();
__this->set_m_SSLCAFilePath_26(L_60);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_61 = ___config0;
NullCheck(L_61);
List_1_t4A161C6204A381DADE144FA5F63CF0E3E7E11E33 * L_62 = L_61->get_m_Channels_27();
NullCheck(L_62);
Enumerator_t2F8B0C9500483A43B42F26A09356CEA1E8162787 L_63;
L_63 = List_1_GetEnumerator_mBC12FB54B3BD6D46D3D0041FC837BB9B5ABD5224(L_62, /*hidden argument*/List_1_GetEnumerator_mBC12FB54B3BD6D46D3D0041FC837BB9B5ABD5224_RuntimeMethod_var);
V_2 = L_63;
}
IL_019e:
try
{ // begin try (depth: 1)
{
goto IL_01bc;
}
IL_01a0:
{
ChannelQOS_tF55C4AC4858FAFCFBDA366C6F6B1E2B35DFFF3DE * L_64;
L_64 = Enumerator_get_Current_mEC015BBE1981CD48D16AA43753CE5A52D359E57F_inline((Enumerator_t2F8B0C9500483A43B42F26A09356CEA1E8162787 *)(&V_2), /*hidden argument*/Enumerator_get_Current_mEC015BBE1981CD48D16AA43753CE5A52D359E57F_RuntimeMethod_var);
V_3 = L_64;
List_1_t4A161C6204A381DADE144FA5F63CF0E3E7E11E33 * L_65 = __this->get_m_Channels_27();
ChannelQOS_tF55C4AC4858FAFCFBDA366C6F6B1E2B35DFFF3DE * L_66 = V_3;
ChannelQOS_tF55C4AC4858FAFCFBDA366C6F6B1E2B35DFFF3DE * L_67 = (ChannelQOS_tF55C4AC4858FAFCFBDA366C6F6B1E2B35DFFF3DE *)il2cpp_codegen_object_new(ChannelQOS_tF55C4AC4858FAFCFBDA366C6F6B1E2B35DFFF3DE_il2cpp_TypeInfo_var);
ChannelQOS__ctor_m885E633D2A1D64E13E087DA039943C767E575DA8(L_67, L_66, /*hidden argument*/NULL);
NullCheck(L_65);
List_1_Add_m04CCA815BA538CCC717F5B0CEABEE87777C02191(L_65, L_67, /*hidden argument*/List_1_Add_m04CCA815BA538CCC717F5B0CEABEE87777C02191_RuntimeMethod_var);
}
IL_01bc:
{
bool L_68;
L_68 = Enumerator_MoveNext_mCF03F3EA00D810696408ABDA570EF4EF0976E030((Enumerator_t2F8B0C9500483A43B42F26A09356CEA1E8162787 *)(&V_2), /*hidden argument*/Enumerator_MoveNext_mCF03F3EA00D810696408ABDA570EF4EF0976E030_RuntimeMethod_var);
if (L_68)
{
goto IL_01a0;
}
}
IL_01c5:
{
IL2CPP_LEAVE(0x1D6, FINALLY_01c7);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_01c7;
}
FINALLY_01c7:
{ // begin finally (depth: 1)
Enumerator_Dispose_mCA5AF94E5CDC291C5024A38E2660C8CB19682EE0((Enumerator_t2F8B0C9500483A43B42F26A09356CEA1E8162787 *)(&V_2), /*hidden argument*/Enumerator_Dispose_mCA5AF94E5CDC291C5024A38E2660C8CB19682EE0_RuntimeMethod_var);
IL2CPP_END_FINALLY(455)
} // end finally (depth: 1)
IL2CPP_CLEANUP(455)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x1D6, IL_01d6)
}
IL_01d6:
{
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_69 = ___config0;
NullCheck(L_69);
List_1_t74C85CD2BEE64FE69AE8BF4BAB62A4186A73655B * L_70 = L_69->get_m_SharedOrderChannels_28();
NullCheck(L_70);
Enumerator_t0340BD53573C77700ED3FF138F75977DCBDF1DEE L_71;
L_71 = List_1_GetEnumerator_m795565AF9DAB5243B5CCB29CA6129D67F619C88E(L_70, /*hidden argument*/List_1_GetEnumerator_m795565AF9DAB5243B5CCB29CA6129D67F619C88E_RuntimeMethod_var);
V_4 = L_71;
}
IL_01e4:
try
{ // begin try (depth: 1)
{
goto IL_01ff;
}
IL_01e6:
{
List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF * L_72;
L_72 = Enumerator_get_Current_m9C6BB00A24C9CB4946A9E76569A445E8173A2B01_inline((Enumerator_t0340BD53573C77700ED3FF138F75977DCBDF1DEE *)(&V_4), /*hidden argument*/Enumerator_get_Current_m9C6BB00A24C9CB4946A9E76569A445E8173A2B01_RuntimeMethod_var);
V_5 = L_72;
List_1_t74C85CD2BEE64FE69AE8BF4BAB62A4186A73655B * L_73 = __this->get_m_SharedOrderChannels_28();
List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF * L_74 = V_5;
NullCheck(L_73);
List_1_Add_m395F91C48816169EBE7E930528A1A8CE600FD060(L_73, L_74, /*hidden argument*/List_1_Add_m395F91C48816169EBE7E930528A1A8CE600FD060_RuntimeMethod_var);
}
IL_01ff:
{
bool L_75;
L_75 = Enumerator_MoveNext_mD073B0C912CA5B28B0809D9F5CA2848BDC176469((Enumerator_t0340BD53573C77700ED3FF138F75977DCBDF1DEE *)(&V_4), /*hidden argument*/Enumerator_MoveNext_mD073B0C912CA5B28B0809D9F5CA2848BDC176469_RuntimeMethod_var);
if (L_75)
{
goto IL_01e6;
}
}
IL_0208:
{
IL2CPP_LEAVE(0x219, FINALLY_020a);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_020a;
}
FINALLY_020a:
{ // begin finally (depth: 1)
Enumerator_Dispose_mC56BDC16EF132C1FF68A2DE409C105AD6B6EDB92((Enumerator_t0340BD53573C77700ED3FF138F75977DCBDF1DEE *)(&V_4), /*hidden argument*/Enumerator_Dispose_mC56BDC16EF132C1FF68A2DE409C105AD6B6EDB92_RuntimeMethod_var);
IL2CPP_END_FINALLY(522)
} // end finally (depth: 1)
IL2CPP_CLEANUP(522)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x219, IL_0219)
}
IL_0219:
{
return;
}
}
// System.Void UnityEngine.Networking.ConnectionConfig::Validate(UnityEngine.Networking.ConnectionConfig)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfig_Validate_m84787B66F366FDC5EF3D074316F7041E84AA735F (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * ___config0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m94137B698864A43E9459A65D4BE18DA911CA9939_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t V_1 = 0;
bool V_2 = false;
bool V_3 = false;
{
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_0 = ___config0;
NullCheck(L_0);
uint16_t L_1 = L_0->get_m_PacketSize_1();
V_0 = (bool)((((int32_t)L_1) < ((int32_t)((int32_t)128)))? 1 : 0);
bool L_2 = V_0;
if (!L_2)
{
goto IL_002f;
}
}
{
V_1 = ((int32_t)128);
String_t* L_3;
L_3 = Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411((int32_t*)(&V_1), /*hidden argument*/NULL);
String_t* L_4;
L_4 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCDBC178854E256F8C61DC4C296BB7F91494D0D08)), L_3, /*hidden argument*/NULL);
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_5 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var)));
ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_5, L_4, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ConnectionConfig_Validate_m84787B66F366FDC5EF3D074316F7041E84AA735F_RuntimeMethod_var)));
}
IL_002f:
{
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_6 = ___config0;
NullCheck(L_6);
uint16_t L_7 = L_6->get_m_FragmentSize_2();
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_8 = ___config0;
NullCheck(L_8);
uint16_t L_9 = L_8->get_m_PacketSize_1();
V_2 = (bool)((((int32_t)((((int32_t)L_7) < ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)((int32_t)128)))))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_10 = V_2;
if (!L_10)
{
goto IL_0067;
}
}
{
V_1 = ((int32_t)128);
String_t* L_11;
L_11 = Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411((int32_t*)(&V_1), /*hidden argument*/NULL);
String_t* L_12;
L_12 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5A068CD5BEF2AF2FF0E3642874366761954C834B)), L_11, /*hidden argument*/NULL);
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_13 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var)));
ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_13, L_12, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ConnectionConfig_Validate_m84787B66F366FDC5EF3D074316F7041E84AA735F_RuntimeMethod_var)));
}
IL_0067:
{
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_14 = ___config0;
NullCheck(L_14);
List_1_t4A161C6204A381DADE144FA5F63CF0E3E7E11E33 * L_15 = L_14->get_m_Channels_27();
NullCheck(L_15);
int32_t L_16;
L_16 = List_1_get_Count_m94137B698864A43E9459A65D4BE18DA911CA9939_inline(L_15, /*hidden argument*/List_1_get_Count_m94137B698864A43E9459A65D4BE18DA911CA9939_RuntimeMethod_var);
V_3 = (bool)((((int32_t)L_16) > ((int32_t)((int32_t)255)))? 1 : 0);
bool L_17 = V_3;
if (!L_17)
{
goto IL_0088;
}
}
{
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_18 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var)));
ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_18, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDC4A22150C3582A362005292F9B7BDE6394836BA)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_18, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ConnectionConfig_Validate_m84787B66F366FDC5EF3D074316F7041E84AA735F_RuntimeMethod_var)));
}
IL_0088:
{
return;
}
}
// System.UInt16 UnityEngine.Networking.ConnectionConfig::get_PacketSize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t ConnectionConfig_get_PacketSize_mF111FD026B1D2B89D5254278F879E81B3700AD87 (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method)
{
uint16_t V_0 = 0;
{
uint16_t L_0 = __this->get_m_PacketSize_1();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
uint16_t L_1 = V_0;
return L_1;
}
}
// System.UInt16 UnityEngine.Networking.ConnectionConfig::get_FragmentSize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t ConnectionConfig_get_FragmentSize_m484053C0601EC4C11376B231262171C4514D8B62 (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method)
{
uint16_t V_0 = 0;
{
uint16_t L_0 = __this->get_m_FragmentSize_2();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
uint16_t L_1 = V_0;
return L_1;
}
}
// System.UInt32 UnityEngine.Networking.ConnectionConfig::get_ResendTimeout()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t ConnectionConfig_get_ResendTimeout_mDF1507B518A47887277E53F0930DC1CA5A973FCF (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method)
{
uint32_t V_0 = 0;
{
uint32_t L_0 = __this->get_m_ResendTimeout_3();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
uint32_t L_1 = V_0;
return L_1;
}
}
// System.UInt32 UnityEngine.Networking.ConnectionConfig::get_DisconnectTimeout()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t ConnectionConfig_get_DisconnectTimeout_m173B79C0C029B50A4250352F1219E8631D40586C (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method)
{
uint32_t V_0 = 0;
{
uint32_t L_0 = __this->get_m_DisconnectTimeout_4();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
uint32_t L_1 = V_0;
return L_1;
}
}
// System.UInt32 UnityEngine.Networking.ConnectionConfig::get_ConnectTimeout()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t ConnectionConfig_get_ConnectTimeout_mDCE83595DFC763E869D55FF4F120CFE7BE5E84DF (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method)
{
uint32_t V_0 = 0;
{
uint32_t L_0 = __this->get_m_ConnectTimeout_5();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
uint32_t L_1 = V_0;
return L_1;
}
}
// System.UInt32 UnityEngine.Networking.ConnectionConfig::get_MinUpdateTimeout()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t ConnectionConfig_get_MinUpdateTimeout_mAF0AEE59A6FDED5C2B37111FC8BB7875A6E13F65 (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method)
{
uint32_t V_0 = 0;
{
uint32_t L_0 = __this->get_m_MinUpdateTimeout_6();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
uint32_t L_1 = V_0;
return L_1;
}
}
// System.Void UnityEngine.Networking.ConnectionConfig::set_MinUpdateTimeout(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfig_set_MinUpdateTimeout_m9879D2D21137E06AD888D3A77928C98DB71C6101 (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, uint32_t ___value0, const RuntimeMethod* method)
{
bool V_0 = false;
{
uint32_t L_0 = ___value0;
V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_2 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var)));
ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral364CBA7CC7922443D723F08B65C6354BDEB51914)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ConnectionConfig_set_MinUpdateTimeout_m9879D2D21137E06AD888D3A77928C98DB71C6101_RuntimeMethod_var)));
}
IL_0014:
{
uint32_t L_3 = ___value0;
__this->set_m_MinUpdateTimeout_6(L_3);
return;
}
}
// System.UInt32 UnityEngine.Networking.ConnectionConfig::get_PingTimeout()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t ConnectionConfig_get_PingTimeout_mC060D30B64D197917007D81E2DE93C3A85B2E601 (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method)
{
uint32_t V_0 = 0;
{
uint32_t L_0 = __this->get_m_PingTimeout_7();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
uint32_t L_1 = V_0;
return L_1;
}
}
// System.UInt32 UnityEngine.Networking.ConnectionConfig::get_ReducedPingTimeout()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t ConnectionConfig_get_ReducedPingTimeout_m332075F8A61A51FBB2738BAE9DDD4313A507D979 (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method)
{
uint32_t V_0 = 0;
{
uint32_t L_0 = __this->get_m_ReducedPingTimeout_8();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
uint32_t L_1 = V_0;
return L_1;
}
}
// System.UInt32 UnityEngine.Networking.ConnectionConfig::get_AllCostTimeout()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t ConnectionConfig_get_AllCostTimeout_m123FA29854A46EFE05048577E3B01FDB386472F9 (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method)
{
uint32_t V_0 = 0;
{
uint32_t L_0 = __this->get_m_AllCostTimeout_9();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
uint32_t L_1 = V_0;
return L_1;
}
}
// System.Byte UnityEngine.Networking.ConnectionConfig::get_NetworkDropThreshold()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t ConnectionConfig_get_NetworkDropThreshold_m73408CF1E684E9331CAB60214C1A4202FE38162F (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method)
{
uint8_t V_0 = 0x0;
{
uint8_t L_0 = __this->get_m_NetworkDropThreshold_10();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
uint8_t L_1 = V_0;
return L_1;
}
}
// System.Byte UnityEngine.Networking.ConnectionConfig::get_OverflowDropThreshold()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t ConnectionConfig_get_OverflowDropThreshold_m230A2787733CA84DC31F44330506F00E9F8B2833 (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method)
{
uint8_t V_0 = 0x0;
{
uint8_t L_0 = __this->get_m_OverflowDropThreshold_11();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
uint8_t L_1 = V_0;
return L_1;
}
}
// System.Byte UnityEngine.Networking.ConnectionConfig::get_MaxConnectionAttempt()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t ConnectionConfig_get_MaxConnectionAttempt_m00AABC69DE80B89AB2710361768544F0D380787B (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method)
{
uint8_t V_0 = 0x0;
{
uint8_t L_0 = __this->get_m_MaxConnectionAttempt_12();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
uint8_t L_1 = V_0;
return L_1;
}
}
// System.UInt32 UnityEngine.Networking.ConnectionConfig::get_AckDelay()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t ConnectionConfig_get_AckDelay_m191F064DBF69779F634408012F65C838A823D7AA (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method)
{
uint32_t V_0 = 0;
{
uint32_t L_0 = __this->get_m_AckDelay_13();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
uint32_t L_1 = V_0;
return L_1;
}
}
// System.UInt32 UnityEngine.Networking.ConnectionConfig::get_SendDelay()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t ConnectionConfig_get_SendDelay_mBEEE56DA650F2C5EC85E72A6422A2CD2A2FAD228 (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method)
{
uint32_t V_0 = 0;
{
uint32_t L_0 = __this->get_m_SendDelay_14();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
uint32_t L_1 = V_0;
return L_1;
}
}
// System.UInt16 UnityEngine.Networking.ConnectionConfig::get_MaxCombinedReliableMessageSize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t ConnectionConfig_get_MaxCombinedReliableMessageSize_m9165A4E3AE23CDADE7CAEFA3FAC29401A6449CD1 (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method)
{
uint16_t V_0 = 0;
{
uint16_t L_0 = __this->get_m_MaxCombinedReliableMessageSize_15();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
uint16_t L_1 = V_0;
return L_1;
}
}
// System.UInt16 UnityEngine.Networking.ConnectionConfig::get_MaxCombinedReliableMessageCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t ConnectionConfig_get_MaxCombinedReliableMessageCount_mEC5C1ABA687D86DC5FCD020FEEC6423860AE2EE9 (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method)
{
uint16_t V_0 = 0;
{
uint16_t L_0 = __this->get_m_MaxCombinedReliableMessageCount_16();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
uint16_t L_1 = V_0;
return L_1;
}
}
// System.UInt16 UnityEngine.Networking.ConnectionConfig::get_MaxSentMessageQueueSize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t ConnectionConfig_get_MaxSentMessageQueueSize_m98D5D25BA1DD83103EDAEDBC8F11653CFFA8D848 (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method)
{
uint16_t V_0 = 0;
{
uint16_t L_0 = __this->get_m_MaxSentMessageQueueSize_17();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
uint16_t L_1 = V_0;
return L_1;
}
}
// UnityEngine.Networking.ConnectionAcksType UnityEngine.Networking.ConnectionConfig::get_AcksType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConnectionConfig_get_AcksType_mE938983722B1EDBEB1ABD7D1292BDDA8847299FE (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = __this->get_m_AcksType_18();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
int32_t L_1 = V_0;
return L_1;
}
}
// System.Boolean UnityEngine.Networking.ConnectionConfig::get_UsePlatformSpecificProtocols()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConnectionConfig_get_UsePlatformSpecificProtocols_m4BE9E4483FAB5F015D560C2A31942F522B35AB85 (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method)
{
bool V_0 = false;
{
bool L_0 = __this->get_m_UsePlatformSpecificProtocols_19();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
bool L_1 = V_0;
return L_1;
}
}
// System.Void UnityEngine.Networking.ConnectionConfig::set_UsePlatformSpecificProtocols(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfig_set_UsePlatformSpecificProtocols_m499F4E8B0E179F3B924B9AB3F9C55794D8CC2068 (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, bool ___value0, const RuntimeMethod* method)
{
bool V_0 = false;
int32_t G_B3_0 = 0;
{
bool L_0 = ___value0;
if (!L_0)
{
goto IL_0012;
}
}
{
int32_t L_1;
L_1 = Application_get_platform_mB22F7F39CDD46667C3EF64507E55BB7DA18F66C4(/*hidden argument*/NULL);
G_B3_0 = ((((int32_t)((((int32_t)L_1) == ((int32_t)((int32_t)25)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0013;
}
IL_0012:
{
G_B3_0 = 0;
}
IL_0013:
{
V_0 = (bool)G_B3_0;
bool L_2 = V_0;
if (!L_2)
{
goto IL_0022;
}
}
{
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_3 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var)));
ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral350D4B065F7614696CB93A92DB46F8A86E919CF1)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ConnectionConfig_set_UsePlatformSpecificProtocols_m499F4E8B0E179F3B924B9AB3F9C55794D8CC2068_RuntimeMethod_var)));
}
IL_0022:
{
bool L_4 = ___value0;
__this->set_m_UsePlatformSpecificProtocols_19(L_4);
return;
}
}
// System.UInt32 UnityEngine.Networking.ConnectionConfig::get_InitialBandwidth()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t ConnectionConfig_get_InitialBandwidth_m7616A3F25FE1459562849DA4EB0F12BA80CB420B (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method)
{
uint32_t V_0 = 0;
{
uint32_t L_0 = __this->get_m_InitialBandwidth_20();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
uint32_t L_1 = V_0;
return L_1;
}
}
// System.Single UnityEngine.Networking.ConnectionConfig::get_BandwidthPeakFactor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float ConnectionConfig_get_BandwidthPeakFactor_mA1E5982C49A375FA7E347CAA42B2C89FD08B8B51 (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method)
{
float V_0 = 0.0f;
{
float L_0 = __this->get_m_BandwidthPeakFactor_21();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
float L_1 = V_0;
return L_1;
}
}
// System.UInt16 UnityEngine.Networking.ConnectionConfig::get_WebSocketReceiveBufferMaxSize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t ConnectionConfig_get_WebSocketReceiveBufferMaxSize_m1B9EE2B09699C09651DF5DFEBB46199D33ADBC5B (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method)
{
uint16_t V_0 = 0;
{
uint16_t L_0 = __this->get_m_WebSocketReceiveBufferMaxSize_22();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
uint16_t L_1 = V_0;
return L_1;
}
}
// System.UInt32 UnityEngine.Networking.ConnectionConfig::get_UdpSocketReceiveBufferMaxSize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t ConnectionConfig_get_UdpSocketReceiveBufferMaxSize_m55D6B396EA136644276C0752FA02B613F5915985 (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method)
{
uint32_t V_0 = 0;
{
uint32_t L_0 = __this->get_m_UdpSocketReceiveBufferMaxSize_23();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
uint32_t L_1 = V_0;
return L_1;
}
}
// System.String UnityEngine.Networking.ConnectionConfig::get_SSLCertFilePath()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ConnectionConfig_get_SSLCertFilePath_m6AAC33A8DDF7077A4AFFBDCE3688E7589EF77425 (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method)
{
String_t* V_0 = NULL;
{
String_t* L_0 = __this->get_m_SSLCertFilePath_24();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
String_t* L_1 = V_0;
return L_1;
}
}
// System.String UnityEngine.Networking.ConnectionConfig::get_SSLPrivateKeyFilePath()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ConnectionConfig_get_SSLPrivateKeyFilePath_mAF3636A8502E6ADCCEB47FDDECC35C767E80118B (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method)
{
String_t* V_0 = NULL;
{
String_t* L_0 = __this->get_m_SSLPrivateKeyFilePath_25();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
String_t* L_1 = V_0;
return L_1;
}
}
// System.String UnityEngine.Networking.ConnectionConfig::get_SSLCAFilePath()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ConnectionConfig_get_SSLCAFilePath_m4C6D3C771C6E55B6789F03944B6A7DBDFCD4E9B8 (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method)
{
String_t* V_0 = NULL;
{
String_t* L_0 = __this->get_m_SSLCAFilePath_26();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
String_t* L_1 = V_0;
return L_1;
}
}
// System.Int32 UnityEngine.Networking.ConnectionConfig::get_ChannelCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConnectionConfig_get_ChannelCount_m932C1B881D3046BC18899207F5796698B7539C7C (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m94137B698864A43E9459A65D4BE18DA911CA9939_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
List_1_t4A161C6204A381DADE144FA5F63CF0E3E7E11E33 * L_0 = __this->get_m_Channels_27();
NullCheck(L_0);
int32_t L_1;
L_1 = List_1_get_Count_m94137B698864A43E9459A65D4BE18DA911CA9939_inline(L_0, /*hidden argument*/List_1_get_Count_m94137B698864A43E9459A65D4BE18DA911CA9939_RuntimeMethod_var);
V_0 = L_1;
goto IL_000f;
}
IL_000f:
{
int32_t L_2 = V_0;
return L_2;
}
}
// System.Int32 UnityEngine.Networking.ConnectionConfig::get_SharedOrderChannelCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConnectionConfig_get_SharedOrderChannelCount_m406DE1A3A83A15FCC644746D4C7A6180339A4853 (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mB609C617D427D5EC266B009014EB41732F164150_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
List_1_t74C85CD2BEE64FE69AE8BF4BAB62A4186A73655B * L_0 = __this->get_m_SharedOrderChannels_28();
NullCheck(L_0);
int32_t L_1;
L_1 = List_1_get_Count_mB609C617D427D5EC266B009014EB41732F164150_inline(L_0, /*hidden argument*/List_1_get_Count_mB609C617D427D5EC266B009014EB41732F164150_RuntimeMethod_var);
V_0 = L_1;
goto IL_000f;
}
IL_000f:
{
int32_t L_2 = V_0;
return L_2;
}
}
// System.Byte UnityEngine.Networking.ConnectionConfig::AddChannel(UnityEngine.Networking.QosType)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t ConnectionConfig_AddChannel_mED78D9A5780E5148E29F653CEB1CB0A54DA869E6 (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, int32_t ___value0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ChannelQOS_tF55C4AC4858FAFCFBDA366C6F6B1E2B35DFFF3DE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enum_t23B90B40F60E677A8025267341651C94AE079CDA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m04CCA815BA538CCC717F5B0CEABEE87777C02191_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m94137B698864A43E9459A65D4BE18DA911CA9939_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&QosType_tAD0DC2835CF976743FCBBFDD0B4BC1B6392A2293_0_0_0_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&QosType_tAD0DC2835CF976743FCBBFDD0B4BC1B6392A2293_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ChannelQOS_tF55C4AC4858FAFCFBDA366C6F6B1E2B35DFFF3DE * V_0 = NULL;
bool V_1 = false;
bool V_2 = false;
int32_t V_3 = 0;
uint8_t V_4 = 0x0;
{
List_1_t4A161C6204A381DADE144FA5F63CF0E3E7E11E33 * L_0 = __this->get_m_Channels_27();
NullCheck(L_0);
int32_t L_1;
L_1 = List_1_get_Count_m94137B698864A43E9459A65D4BE18DA911CA9939_inline(L_0, /*hidden argument*/List_1_get_Count_m94137B698864A43E9459A65D4BE18DA911CA9939_RuntimeMethod_var);
V_1 = (bool)((((int32_t)L_1) > ((int32_t)((int32_t)255)))? 1 : 0);
bool L_2 = V_1;
if (!L_2)
{
goto IL_0022;
}
}
{
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_3 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var)));
ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1F4F8DCA94A6832B1312A4D1589F77B40D6B6BA1)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ConnectionConfig_AddChannel_mED78D9A5780E5148E29F653CEB1CB0A54DA869E6_RuntimeMethod_var)));
}
IL_0022:
{
RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_4 = { reinterpret_cast<intptr_t> (QosType_tAD0DC2835CF976743FCBBFDD0B4BC1B6392A2293_0_0_0_var) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_5;
L_5 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_4, /*hidden argument*/NULL);
int32_t L_6 = ___value0;
int32_t L_7 = L_6;
RuntimeObject * L_8 = Box(QosType_tAD0DC2835CF976743FCBBFDD0B4BC1B6392A2293_il2cpp_TypeInfo_var, &L_7);
IL2CPP_RUNTIME_CLASS_INIT(Enum_t23B90B40F60E677A8025267341651C94AE079CDA_il2cpp_TypeInfo_var);
bool L_9;
L_9 = Enum_IsDefined_m70E955627155998B426145940DE105ECEF213B96(L_5, L_8, /*hidden argument*/NULL);
V_2 = (bool)((((int32_t)L_9) == ((int32_t)0))? 1 : 0);
bool L_10 = V_2;
if (!L_10)
{
goto IL_0058;
}
}
{
int32_t L_11 = ___value0;
V_3 = L_11;
String_t* L_12;
L_12 = Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411((int32_t*)(&V_3), /*hidden argument*/NULL);
String_t* L_13;
L_13 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDF5230F0D16A6901ED26AE1F9636F2A61DA5D6ED)), L_12, /*hidden argument*/NULL);
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_14 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var)));
ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_14, L_13, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ConnectionConfig_AddChannel_mED78D9A5780E5148E29F653CEB1CB0A54DA869E6_RuntimeMethod_var)));
}
IL_0058:
{
int32_t L_15 = ___value0;
ChannelQOS_tF55C4AC4858FAFCFBDA366C6F6B1E2B35DFFF3DE * L_16 = (ChannelQOS_tF55C4AC4858FAFCFBDA366C6F6B1E2B35DFFF3DE *)il2cpp_codegen_object_new(ChannelQOS_tF55C4AC4858FAFCFBDA366C6F6B1E2B35DFFF3DE_il2cpp_TypeInfo_var);
ChannelQOS__ctor_m27A6808139CF080A838D4BEB5F0E10246017335A(L_16, L_15, /*hidden argument*/NULL);
V_0 = L_16;
List_1_t4A161C6204A381DADE144FA5F63CF0E3E7E11E33 * L_17 = __this->get_m_Channels_27();
ChannelQOS_tF55C4AC4858FAFCFBDA366C6F6B1E2B35DFFF3DE * L_18 = V_0;
NullCheck(L_17);
List_1_Add_m04CCA815BA538CCC717F5B0CEABEE87777C02191(L_17, L_18, /*hidden argument*/List_1_Add_m04CCA815BA538CCC717F5B0CEABEE87777C02191_RuntimeMethod_var);
List_1_t4A161C6204A381DADE144FA5F63CF0E3E7E11E33 * L_19 = __this->get_m_Channels_27();
NullCheck(L_19);
int32_t L_20;
L_20 = List_1_get_Count_m94137B698864A43E9459A65D4BE18DA911CA9939_inline(L_19, /*hidden argument*/List_1_get_Count_m94137B698864A43E9459A65D4BE18DA911CA9939_RuntimeMethod_var);
V_4 = (uint8_t)((int32_t)((uint8_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_20, (int32_t)1))));
goto IL_007e;
}
IL_007e:
{
uint8_t L_21 = V_4;
return L_21;
}
}
// UnityEngine.Networking.QosType UnityEngine.Networking.ConnectionConfig::GetChannel(System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConnectionConfig_GetChannel_m0473DB76B5FE9E1992A3500F37F3C88ACB6DA3D4 (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, uint8_t ___idx0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m94137B698864A43E9459A65D4BE18DA911CA9939_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mEA12AB396EABC73A3E2E57BE233BC77763A61BFA_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t V_1 = 0;
{
uint8_t L_0 = ___idx0;
List_1_t4A161C6204A381DADE144FA5F63CF0E3E7E11E33 * L_1 = __this->get_m_Channels_27();
NullCheck(L_1);
int32_t L_2;
L_2 = List_1_get_Count_m94137B698864A43E9459A65D4BE18DA911CA9939_inline(L_1, /*hidden argument*/List_1_get_Count_m94137B698864A43E9459A65D4BE18DA911CA9939_RuntimeMethod_var);
V_0 = (bool)((((int32_t)((((int32_t)L_0) < ((int32_t)L_2))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_3 = V_0;
if (!L_3)
{
goto IL_0021;
}
}
{
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_4 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var)));
ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral970E2379B8ADD15A47FF04C1F1AE7051F01DA5DC)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ConnectionConfig_GetChannel_m0473DB76B5FE9E1992A3500F37F3C88ACB6DA3D4_RuntimeMethod_var)));
}
IL_0021:
{
List_1_t4A161C6204A381DADE144FA5F63CF0E3E7E11E33 * L_5 = __this->get_m_Channels_27();
uint8_t L_6 = ___idx0;
NullCheck(L_5);
ChannelQOS_tF55C4AC4858FAFCFBDA366C6F6B1E2B35DFFF3DE * L_7;
L_7 = List_1_get_Item_mEA12AB396EABC73A3E2E57BE233BC77763A61BFA_inline(L_5, L_6, /*hidden argument*/List_1_get_Item_mEA12AB396EABC73A3E2E57BE233BC77763A61BFA_RuntimeMethod_var);
NullCheck(L_7);
int32_t L_8;
L_8 = ChannelQOS_get_QOS_mF5244DCF956770207F0E45F59EE694FA0647917B(L_7, /*hidden argument*/NULL);
V_1 = L_8;
goto IL_0035;
}
IL_0035:
{
int32_t L_9 = V_1;
return L_9;
}
}
// System.Collections.Generic.IList`1<System.Byte> UnityEngine.Networking.ConnectionConfig::GetSharedOrderChannels(System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConnectionConfig_GetSharedOrderChannels_m7DB0D9738F33E044807142B8C2CBB50DDA42A9EC (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, uint8_t ___idx0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_AsReadOnly_m5B294C3B51BB4CD52DCA4DC740F05BA7A873859E_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mB609C617D427D5EC266B009014EB41732F164150_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m68E7DB4815C63A275BDC11FF71FACD9235A7C562_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
RuntimeObject* V_1 = NULL;
{
uint8_t L_0 = ___idx0;
List_1_t74C85CD2BEE64FE69AE8BF4BAB62A4186A73655B * L_1 = __this->get_m_SharedOrderChannels_28();
NullCheck(L_1);
int32_t L_2;
L_2 = List_1_get_Count_mB609C617D427D5EC266B009014EB41732F164150_inline(L_1, /*hidden argument*/List_1_get_Count_mB609C617D427D5EC266B009014EB41732F164150_RuntimeMethod_var);
V_0 = (bool)((((int32_t)((((int32_t)L_0) < ((int32_t)L_2))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_3 = V_0;
if (!L_3)
{
goto IL_0021;
}
}
{
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_4 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var)));
ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB7924E654A4528032CD5FC50B5878AA01E102C42)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ConnectionConfig_GetSharedOrderChannels_m7DB0D9738F33E044807142B8C2CBB50DDA42A9EC_RuntimeMethod_var)));
}
IL_0021:
{
List_1_t74C85CD2BEE64FE69AE8BF4BAB62A4186A73655B * L_5 = __this->get_m_SharedOrderChannels_28();
uint8_t L_6 = ___idx0;
NullCheck(L_5);
List_1_tD0117BC32B3DBF148E7E9AC108FC376C3D4922CF * L_7;
L_7 = List_1_get_Item_m68E7DB4815C63A275BDC11FF71FACD9235A7C562_inline(L_5, L_6, /*hidden argument*/List_1_get_Item_m68E7DB4815C63A275BDC11FF71FACD9235A7C562_RuntimeMethod_var);
NullCheck(L_7);
ReadOnlyCollection_1_t88367D6A0A0435F3B7F5A180EAE18DC0323A14E7 * L_8;
L_8 = List_1_AsReadOnly_m5B294C3B51BB4CD52DCA4DC740F05BA7A873859E(L_7, /*hidden argument*/List_1_AsReadOnly_m5B294C3B51BB4CD52DCA4DC740F05BA7A873859E_RuntimeMethod_var);
V_1 = (RuntimeObject*)L_8;
goto IL_0035;
}
IL_0035:
{
RuntimeObject* L_9 = V_1;
return L_9;
}
}
// System.Collections.Generic.List`1<UnityEngine.Networking.ChannelQOS> UnityEngine.Networking.ConnectionConfig::get_Channels()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t4A161C6204A381DADE144FA5F63CF0E3E7E11E33 * ConnectionConfig_get_Channels_mB6ACB57EA2F40BE8D4360EF33855A540F2C0147C (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * __this, const RuntimeMethod* method)
{
List_1_t4A161C6204A381DADE144FA5F63CF0E3E7E11E33 * V_0 = NULL;
{
List_1_t4A161C6204A381DADE144FA5F63CF0E3E7E11E33 * L_0 = __this->get_m_Channels_27();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
List_1_t4A161C6204A381DADE144FA5F63CF0E3E7E11E33 * L_1 = V_0;
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
// Conversion methods for marshalling of: UnityEngine.Networking.ConnectionConfigInternal
IL2CPP_EXTERN_C void ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078_marshal_pinvoke(const ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078& unmarshaled, ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078_marshaled_pinvoke& marshaled)
{
marshaled.___m_Ptr_0 = unmarshaled.get_m_Ptr_0();
}
IL2CPP_EXTERN_C void ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078_marshal_pinvoke_back(const ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078_marshaled_pinvoke& marshaled, ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078& unmarshaled)
{
intptr_t unmarshaled_m_Ptr_temp_0;
memset((&unmarshaled_m_Ptr_temp_0), 0, sizeof(unmarshaled_m_Ptr_temp_0));
unmarshaled_m_Ptr_temp_0 = marshaled.___m_Ptr_0;
unmarshaled.set_m_Ptr_0(unmarshaled_m_Ptr_temp_0);
}
// Conversion method for clean up from marshalling of: UnityEngine.Networking.ConnectionConfigInternal
IL2CPP_EXTERN_C void ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078_marshal_pinvoke_cleanup(ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.Networking.ConnectionConfigInternal
IL2CPP_EXTERN_C void ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078_marshal_com(const ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078& unmarshaled, ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078_marshaled_com& marshaled)
{
marshaled.___m_Ptr_0 = unmarshaled.get_m_Ptr_0();
}
IL2CPP_EXTERN_C void ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078_marshal_com_back(const ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078_marshaled_com& marshaled, ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078& unmarshaled)
{
intptr_t unmarshaled_m_Ptr_temp_0;
memset((&unmarshaled_m_Ptr_temp_0), 0, sizeof(unmarshaled_m_Ptr_temp_0));
unmarshaled_m_Ptr_temp_0 = marshaled.___m_Ptr_0;
unmarshaled.set_m_Ptr_0(unmarshaled_m_Ptr_temp_0);
}
// Conversion method for clean up from marshalling of: UnityEngine.Networking.ConnectionConfigInternal
IL2CPP_EXTERN_C void ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078_marshal_com_cleanup(ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078_marshaled_com& marshaled)
{
}
// System.Void UnityEngine.Networking.ConnectionConfigInternal::.ctor(UnityEngine.Networking.ConnectionConfig)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfigInternal__ctor_m3159326166C18DBB931A215F34FDE777C78D2AC0 (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * ___config0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_1_t5AB6E9D20BDB8A993042228A58C871DF8C3BCE87_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
bool V_2 = false;
int32_t V_3 = 0;
bool V_4 = false;
bool V_5 = false;
int32_t V_6 = 0;
bool V_7 = false;
bool V_8 = false;
int32_t V_9 = 0;
bool V_10 = false;
uint8_t V_11 = 0x0;
bool V_12 = false;
uint8_t V_13 = 0x0;
RuntimeObject* V_14 = NULL;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_15 = NULL;
bool V_16 = false;
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_0 = ___config0;
V_0 = (bool)((((RuntimeObject*)(ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A *)L_0) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_001b;
}
}
{
NullReferenceException_t44B4F3CDE3111E74591952B8BE8707B28866D724 * L_2 = (NullReferenceException_t44B4F3CDE3111E74591952B8BE8707B28866D724 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NullReferenceException_t44B4F3CDE3111E74591952B8BE8707B28866D724_il2cpp_TypeInfo_var)));
NullReferenceException__ctor_mF1733893E10358B400E817297D686A48AB3FB7B3(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral317EE74AF038EFA1EFB835A1A142AD358C5939C3)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ConnectionConfigInternal__ctor_m3159326166C18DBB931A215F34FDE777C78D2AC0_RuntimeMethod_var)));
}
IL_001b:
{
intptr_t L_3;
L_3 = ConnectionConfigInternal_InternalCreate_m57E00EAD6FD85A7AEE88C4BABD2B76F028D26229(/*hidden argument*/NULL);
__this->set_m_Ptr_0((intptr_t)L_3);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_4 = ___config0;
NullCheck(L_4);
uint16_t L_5;
L_5 = ConnectionConfig_get_PacketSize_mF111FD026B1D2B89D5254278F879E81B3700AD87(L_4, /*hidden argument*/NULL);
bool L_6;
L_6 = ConnectionConfigInternal_SetPacketSize_m53D38ACE88594D14DFB61BF99B2109FA35F5E4B3(__this, L_5, /*hidden argument*/NULL);
V_1 = (bool)((((int32_t)L_6) == ((int32_t)0))? 1 : 0);
bool L_7 = V_1;
if (!L_7)
{
goto IL_0044;
}
}
{
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_8 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var)));
ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_8, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6BD2C10566F502C3C2BF829339E1CCBA316C993F)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ConnectionConfigInternal__ctor_m3159326166C18DBB931A215F34FDE777C78D2AC0_RuntimeMethod_var)));
}
IL_0044:
{
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_9 = ___config0;
NullCheck(L_9);
uint16_t L_10;
L_10 = ConnectionConfig_get_FragmentSize_m484053C0601EC4C11376B231262171C4514D8B62(L_9, /*hidden argument*/NULL);
ConnectionConfigInternal_set_FragmentSize_m81A3C2E79C8CA333D4901A34E253916986870678(__this, L_10, /*hidden argument*/NULL);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_11 = ___config0;
NullCheck(L_11);
uint32_t L_12;
L_12 = ConnectionConfig_get_ResendTimeout_mDF1507B518A47887277E53F0930DC1CA5A973FCF(L_11, /*hidden argument*/NULL);
ConnectionConfigInternal_set_ResendTimeout_m52B7443A4BF5D1DC15E41BC1E3EA4B0890D06413(__this, L_12, /*hidden argument*/NULL);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_13 = ___config0;
NullCheck(L_13);
uint32_t L_14;
L_14 = ConnectionConfig_get_DisconnectTimeout_m173B79C0C029B50A4250352F1219E8631D40586C(L_13, /*hidden argument*/NULL);
ConnectionConfigInternal_set_DisconnectTimeout_m7B620F41E9B1F610CA2616939BBE5C636C073369(__this, L_14, /*hidden argument*/NULL);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_15 = ___config0;
NullCheck(L_15);
uint32_t L_16;
L_16 = ConnectionConfig_get_ConnectTimeout_mDCE83595DFC763E869D55FF4F120CFE7BE5E84DF(L_15, /*hidden argument*/NULL);
ConnectionConfigInternal_set_ConnectTimeout_mC4F96B2E33DB75AB6CFB251E28816294F4D629F2(__this, L_16, /*hidden argument*/NULL);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_17 = ___config0;
NullCheck(L_17);
uint32_t L_18;
L_18 = ConnectionConfig_get_MinUpdateTimeout_mAF0AEE59A6FDED5C2B37111FC8BB7875A6E13F65(L_17, /*hidden argument*/NULL);
ConnectionConfigInternal_set_MinUpdateTimeout_mF4DA20AA8EAF8A4E82DA4471483A5B8A3601B2F7(__this, L_18, /*hidden argument*/NULL);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_19 = ___config0;
NullCheck(L_19);
uint32_t L_20;
L_20 = ConnectionConfig_get_PingTimeout_mC060D30B64D197917007D81E2DE93C3A85B2E601(L_19, /*hidden argument*/NULL);
ConnectionConfigInternal_set_PingTimeout_m882CF8571F3F466C026F84FB48FD7BCAFC41FBF3(__this, L_20, /*hidden argument*/NULL);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_21 = ___config0;
NullCheck(L_21);
uint32_t L_22;
L_22 = ConnectionConfig_get_ReducedPingTimeout_m332075F8A61A51FBB2738BAE9DDD4313A507D979(L_21, /*hidden argument*/NULL);
ConnectionConfigInternal_set_ReducedPingTimeout_m10956CD170C63491A8D04F4A95D048090831E8CE(__this, L_22, /*hidden argument*/NULL);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_23 = ___config0;
NullCheck(L_23);
uint32_t L_24;
L_24 = ConnectionConfig_get_AllCostTimeout_m123FA29854A46EFE05048577E3B01FDB386472F9(L_23, /*hidden argument*/NULL);
ConnectionConfigInternal_set_AllCostTimeout_m37CC810E66808CDCFBDA2DA785169927C8FE5553(__this, L_24, /*hidden argument*/NULL);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_25 = ___config0;
NullCheck(L_25);
uint8_t L_26;
L_26 = ConnectionConfig_get_NetworkDropThreshold_m73408CF1E684E9331CAB60214C1A4202FE38162F(L_25, /*hidden argument*/NULL);
ConnectionConfigInternal_set_NetworkDropThreshold_m0E9A369B4625FDBE833B23D9A792E8CD111F5AF4(__this, L_26, /*hidden argument*/NULL);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_27 = ___config0;
NullCheck(L_27);
uint8_t L_28;
L_28 = ConnectionConfig_get_OverflowDropThreshold_m230A2787733CA84DC31F44330506F00E9F8B2833(L_27, /*hidden argument*/NULL);
ConnectionConfigInternal_set_OverflowDropThreshold_m4AD127798D39BC9B8034EC35DA235EAC85D87B18(__this, L_28, /*hidden argument*/NULL);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_29 = ___config0;
NullCheck(L_29);
uint8_t L_30;
L_30 = ConnectionConfig_get_MaxConnectionAttempt_m00AABC69DE80B89AB2710361768544F0D380787B(L_29, /*hidden argument*/NULL);
ConnectionConfigInternal_set_MaxConnectionAttempt_m6A5DFC749DB71E05E4167E11ED8D1930D34A20A9(__this, L_30, /*hidden argument*/NULL);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_31 = ___config0;
NullCheck(L_31);
uint32_t L_32;
L_32 = ConnectionConfig_get_AckDelay_m191F064DBF69779F634408012F65C838A823D7AA(L_31, /*hidden argument*/NULL);
ConnectionConfigInternal_set_AckDelay_m39BC6D36B69AE86B8587FEDCA9B6232F7A9D1960(__this, L_32, /*hidden argument*/NULL);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_33 = ___config0;
NullCheck(L_33);
uint32_t L_34;
L_34 = ConnectionConfig_get_SendDelay_mBEEE56DA650F2C5EC85E72A6422A2CD2A2FAD228(L_33, /*hidden argument*/NULL);
ConnectionConfigInternal_set_SendDelay_m6CDA97F9DB65D815562064D9FC5C6E92FDD735E3(__this, L_34, /*hidden argument*/NULL);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_35 = ___config0;
NullCheck(L_35);
uint16_t L_36;
L_36 = ConnectionConfig_get_MaxCombinedReliableMessageSize_m9165A4E3AE23CDADE7CAEFA3FAC29401A6449CD1(L_35, /*hidden argument*/NULL);
ConnectionConfigInternal_set_MaxCombinedReliableMessageSize_mAD08AF5D34269E4648AA1630AE3524A0747433CC(__this, L_36, /*hidden argument*/NULL);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_37 = ___config0;
NullCheck(L_37);
uint16_t L_38;
L_38 = ConnectionConfig_get_MaxCombinedReliableMessageCount_mEC5C1ABA687D86DC5FCD020FEEC6423860AE2EE9(L_37, /*hidden argument*/NULL);
ConnectionConfigInternal_set_MaxCombinedReliableMessageCount_m477651B41F261E81BC43D3C854AA6664EBF7B541(__this, L_38, /*hidden argument*/NULL);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_39 = ___config0;
NullCheck(L_39);
uint16_t L_40;
L_40 = ConnectionConfig_get_MaxSentMessageQueueSize_m98D5D25BA1DD83103EDAEDBC8F11653CFFA8D848(L_39, /*hidden argument*/NULL);
ConnectionConfigInternal_set_MaxSentMessageQueueSize_m517343266C198505E7BD899AD4489AD6BD593AE1(__this, L_40, /*hidden argument*/NULL);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_41 = ___config0;
NullCheck(L_41);
int32_t L_42;
L_42 = ConnectionConfig_get_AcksType_mE938983722B1EDBEB1ABD7D1292BDDA8847299FE(L_41, /*hidden argument*/NULL);
ConnectionConfigInternal_set_AcksType_m9CB8EE193EE3AEDB5CC5E63D3DE5D768450523EE(__this, (uint8_t)((int32_t)((uint8_t)L_42)), /*hidden argument*/NULL);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_43 = ___config0;
NullCheck(L_43);
bool L_44;
L_44 = ConnectionConfig_get_UsePlatformSpecificProtocols_m4BE9E4483FAB5F015D560C2A31942F522B35AB85(L_43, /*hidden argument*/NULL);
ConnectionConfigInternal_set_UsePlatformSpecificProtocols_m65F8757AA1E47534DD74441D8325B7F33320985E(__this, L_44, /*hidden argument*/NULL);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_45 = ___config0;
NullCheck(L_45);
uint32_t L_46;
L_46 = ConnectionConfig_get_InitialBandwidth_m7616A3F25FE1459562849DA4EB0F12BA80CB420B(L_45, /*hidden argument*/NULL);
ConnectionConfigInternal_set_InitialBandwidth_mF6348D56F65CED75B5809F6AE996C2DDB8903244(__this, L_46, /*hidden argument*/NULL);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_47 = ___config0;
NullCheck(L_47);
float L_48;
L_48 = ConnectionConfig_get_BandwidthPeakFactor_mA1E5982C49A375FA7E347CAA42B2C89FD08B8B51(L_47, /*hidden argument*/NULL);
ConnectionConfigInternal_set_BandwidthPeakFactor_m3C43D6BD419D87787D18860D3927E7E1ABE1F9B7(__this, L_48, /*hidden argument*/NULL);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_49 = ___config0;
NullCheck(L_49);
uint16_t L_50;
L_50 = ConnectionConfig_get_WebSocketReceiveBufferMaxSize_m1B9EE2B09699C09651DF5DFEBB46199D33ADBC5B(L_49, /*hidden argument*/NULL);
ConnectionConfigInternal_set_WebSocketReceiveBufferMaxSize_m02AD41DCF144B4EE187F705916F85BE3C1D5895F(__this, L_50, /*hidden argument*/NULL);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_51 = ___config0;
NullCheck(L_51);
uint32_t L_52;
L_52 = ConnectionConfig_get_UdpSocketReceiveBufferMaxSize_m55D6B396EA136644276C0752FA02B613F5915985(L_51, /*hidden argument*/NULL);
ConnectionConfigInternal_set_UdpSocketReceiveBufferMaxSize_m04A8CBD90C0CD7F0E888BC09D78EA9378C74B019(__this, L_52, /*hidden argument*/NULL);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_53 = ___config0;
NullCheck(L_53);
String_t* L_54;
L_54 = ConnectionConfig_get_SSLCertFilePath_m6AAC33A8DDF7077A4AFFBDCE3688E7589EF77425(L_53, /*hidden argument*/NULL);
V_2 = (bool)((!(((RuntimeObject*)(String_t*)L_54) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
bool L_55 = V_2;
if (!L_55)
{
goto IL_01a0;
}
}
{
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_56 = ___config0;
NullCheck(L_56);
String_t* L_57;
L_57 = ConnectionConfig_get_SSLCertFilePath_m6AAC33A8DDF7077A4AFFBDCE3688E7589EF77425(L_56, /*hidden argument*/NULL);
int32_t L_58;
L_58 = ConnectionConfigInternal_SetSSLCertFilePath_mE1BB6420E3CB9775AD1E55561D9973D7DA1794A4(__this, L_57, /*hidden argument*/NULL);
V_3 = L_58;
int32_t L_59 = V_3;
V_4 = (bool)((!(((uint32_t)L_59) <= ((uint32_t)0)))? 1 : 0);
bool L_60 = V_4;
if (!L_60)
{
goto IL_019f;
}
}
{
String_t* L_61;
L_61 = Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411((int32_t*)(&V_3), /*hidden argument*/NULL);
String_t* L_62;
L_62 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral56FC7ACF83761F215C42F94457870B28C159AD13)), L_61, /*hidden argument*/NULL);
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_63 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var)));
ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_63, L_62, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_63, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ConnectionConfigInternal__ctor_m3159326166C18DBB931A215F34FDE777C78D2AC0_RuntimeMethod_var)));
}
IL_019f:
{
}
IL_01a0:
{
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_64 = ___config0;
NullCheck(L_64);
String_t* L_65;
L_65 = ConnectionConfig_get_SSLPrivateKeyFilePath_mAF3636A8502E6ADCCEB47FDDECC35C767E80118B(L_64, /*hidden argument*/NULL);
V_5 = (bool)((!(((RuntimeObject*)(String_t*)L_65) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
bool L_66 = V_5;
if (!L_66)
{
goto IL_01e1;
}
}
{
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_67 = ___config0;
NullCheck(L_67);
String_t* L_68;
L_68 = ConnectionConfig_get_SSLPrivateKeyFilePath_mAF3636A8502E6ADCCEB47FDDECC35C767E80118B(L_67, /*hidden argument*/NULL);
int32_t L_69;
L_69 = ConnectionConfigInternal_SetSSLPrivateKeyFilePath_m97560CCDF198A876997E44D363018BA65C5929EB(__this, L_68, /*hidden argument*/NULL);
V_6 = L_69;
int32_t L_70 = V_6;
V_7 = (bool)((!(((uint32_t)L_70) <= ((uint32_t)0)))? 1 : 0);
bool L_71 = V_7;
if (!L_71)
{
goto IL_01e0;
}
}
{
String_t* L_72;
L_72 = Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411((int32_t*)(&V_6), /*hidden argument*/NULL);
String_t* L_73;
L_73 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7BD2BAAE773711A25E2A86E4644B6FA5287BE9CB)), L_72, /*hidden argument*/NULL);
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_74 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var)));
ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_74, L_73, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_74, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ConnectionConfigInternal__ctor_m3159326166C18DBB931A215F34FDE777C78D2AC0_RuntimeMethod_var)));
}
IL_01e0:
{
}
IL_01e1:
{
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_75 = ___config0;
NullCheck(L_75);
String_t* L_76;
L_76 = ConnectionConfig_get_SSLCAFilePath_m4C6D3C771C6E55B6789F03944B6A7DBDFCD4E9B8(L_75, /*hidden argument*/NULL);
V_8 = (bool)((!(((RuntimeObject*)(String_t*)L_76) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
bool L_77 = V_8;
if (!L_77)
{
goto IL_0222;
}
}
{
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_78 = ___config0;
NullCheck(L_78);
String_t* L_79;
L_79 = ConnectionConfig_get_SSLCAFilePath_m4C6D3C771C6E55B6789F03944B6A7DBDFCD4E9B8(L_78, /*hidden argument*/NULL);
int32_t L_80;
L_80 = ConnectionConfigInternal_SetSSLCAFilePath_mC553B8CCC370BFC28CC8D26437CC6B1F0FD60315(__this, L_79, /*hidden argument*/NULL);
V_9 = L_80;
int32_t L_81 = V_9;
V_10 = (bool)((!(((uint32_t)L_81) <= ((uint32_t)0)))? 1 : 0);
bool L_82 = V_10;
if (!L_82)
{
goto IL_0221;
}
}
{
String_t* L_83;
L_83 = Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411((int32_t*)(&V_9), /*hidden argument*/NULL);
String_t* L_84;
L_84 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3866C00AAA41CBA51BF961FDAB79035290665796)), L_83, /*hidden argument*/NULL);
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_85 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var)));
ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_85, L_84, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_85, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ConnectionConfigInternal__ctor_m3159326166C18DBB931A215F34FDE777C78D2AC0_RuntimeMethod_var)));
}
IL_0221:
{
}
IL_0222:
{
V_11 = (uint8_t)0;
goto IL_0240;
}
IL_0227:
{
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_86 = ___config0;
uint8_t L_87 = V_11;
NullCheck(L_86);
int32_t L_88;
L_88 = ConnectionConfig_GetChannel_m0473DB76B5FE9E1992A3500F37F3C88ACB6DA3D4(L_86, L_87, /*hidden argument*/NULL);
uint8_t L_89;
L_89 = ConnectionConfigInternal_AddChannel_m6F0C7412C1B07FA22276ED59872E1B5280C07C14(__this, ((int32_t)((uint8_t)L_88)), /*hidden argument*/NULL);
uint8_t L_90 = V_11;
V_11 = (uint8_t)((int32_t)((uint8_t)((int32_t)il2cpp_codegen_add((int32_t)L_90, (int32_t)1))));
}
IL_0240:
{
uint8_t L_91 = V_11;
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_92 = ___config0;
NullCheck(L_92);
int32_t L_93;
L_93 = ConnectionConfig_get_ChannelCount_m932C1B881D3046BC18899207F5796698B7539C7C(L_92, /*hidden argument*/NULL);
V_12 = (bool)((((int32_t)L_91) < ((int32_t)L_93))? 1 : 0);
bool L_94 = V_12;
if (L_94)
{
goto IL_0227;
}
}
{
V_13 = (uint8_t)0;
goto IL_028a;
}
IL_0255:
{
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_95 = ___config0;
uint8_t L_96 = V_13;
NullCheck(L_95);
RuntimeObject* L_97;
L_97 = ConnectionConfig_GetSharedOrderChannels_m7DB0D9738F33E044807142B8C2CBB50DDA42A9EC(L_95, L_96, /*hidden argument*/NULL);
V_14 = L_97;
RuntimeObject* L_98 = V_14;
NullCheck(L_98);
int32_t L_99;
L_99 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 System.Collections.Generic.ICollection`1<System.Byte>::get_Count() */, ICollection_1_t5AB6E9D20BDB8A993042228A58C871DF8C3BCE87_il2cpp_TypeInfo_var, L_98);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_100 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)L_99);
V_15 = L_100;
RuntimeObject* L_101 = V_14;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_102 = V_15;
NullCheck(L_101);
InterfaceActionInvoker2< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t >::Invoke(5 /* System.Void System.Collections.Generic.ICollection`1<System.Byte>::CopyTo(!0[],System.Int32) */, ICollection_1_t5AB6E9D20BDB8A993042228A58C871DF8C3BCE87_il2cpp_TypeInfo_var, L_101, L_102, 0);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_103 = V_15;
bool L_104;
L_104 = ConnectionConfigInternal_MakeChannelsSharedOrder_m386F46D817576653643A908AAAA1AB6DA136707E(__this, L_103, /*hidden argument*/NULL);
uint8_t L_105 = V_13;
V_13 = (uint8_t)((int32_t)((uint8_t)((int32_t)il2cpp_codegen_add((int32_t)L_105, (int32_t)1))));
}
IL_028a:
{
uint8_t L_106 = V_13;
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_107 = ___config0;
NullCheck(L_107);
int32_t L_108;
L_108 = ConnectionConfig_get_SharedOrderChannelCount_m406DE1A3A83A15FCC644746D4C7A6180339A4853(L_107, /*hidden argument*/NULL);
V_16 = (bool)((((int32_t)L_106) < ((int32_t)L_108))? 1 : 0);
bool L_109 = V_16;
if (L_109)
{
goto IL_0255;
}
}
{
return;
}
}
// System.Void UnityEngine.Networking.ConnectionConfigInternal::Dispose(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfigInternal_Dispose_m4161119120EC3447F951143746AA3822B262C590 (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, bool ___disposing0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
intptr_t L_0 = __this->get_m_Ptr_0();
bool L_1;
L_1 = IntPtr_op_Inequality_m212AF0E66AA81FEDC982B1C8A44ADDA24B995EB8((intptr_t)L_0, (intptr_t)(0), /*hidden argument*/NULL);
V_0 = L_1;
bool L_2 = V_0;
if (!L_2)
{
goto IL_002e;
}
}
{
intptr_t L_3 = __this->get_m_Ptr_0();
ConnectionConfigInternal_InternalDestroy_mA5ED8454D97B55A9BF3FDDC6DDE09D31E6DF20E9((intptr_t)L_3, /*hidden argument*/NULL);
__this->set_m_Ptr_0((intptr_t)(0));
}
IL_002e:
{
return;
}
}
// System.Void UnityEngine.Networking.ConnectionConfigInternal::Finalize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfigInternal_Finalize_m86CE7D1789FE804A8A655C1C5C81CFAE2097918D (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, const RuntimeMethod* method)
{
Exception_t * __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
{
}
IL_0001:
try
{ // begin try (depth: 1)
VirtActionInvoker1< bool >::Invoke(5 /* System.Void UnityEngine.Networking.ConnectionConfigInternal::Dispose(System.Boolean) */, __this, (bool)0);
IL2CPP_LEAVE(0x14, FINALLY_000c);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_000c;
}
FINALLY_000c:
{ // begin finally (depth: 1)
Object_Finalize_mC59C83CF4F7707E425FFA6362931C25D4C36676A(__this, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(12)
} // end finally (depth: 1)
IL2CPP_CLEANUP(12)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x14, IL_0014)
}
IL_0014:
{
return;
}
}
// System.Void UnityEngine.Networking.ConnectionConfigInternal::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfigInternal_Dispose_m5105F829E0DD5CB86927351FC94BF5AE14B8493E (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
intptr_t L_0 = __this->get_m_Ptr_0();
bool L_1;
L_1 = IntPtr_op_Inequality_m212AF0E66AA81FEDC982B1C8A44ADDA24B995EB8((intptr_t)L_0, (intptr_t)(0), /*hidden argument*/NULL);
V_0 = L_1;
bool L_2 = V_0;
if (!L_2)
{
goto IL_002e;
}
}
{
intptr_t L_3 = __this->get_m_Ptr_0();
ConnectionConfigInternal_InternalDestroy_mA5ED8454D97B55A9BF3FDDC6DDE09D31E6DF20E9((intptr_t)L_3, /*hidden argument*/NULL);
__this->set_m_Ptr_0((intptr_t)(0));
}
IL_002e:
{
return;
}
}
// System.IntPtr UnityEngine.Networking.ConnectionConfigInternal::InternalCreate()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t ConnectionConfigInternal_InternalCreate_m57E00EAD6FD85A7AEE88C4BABD2B76F028D26229 (const RuntimeMethod* method)
{
typedef intptr_t (*ConnectionConfigInternal_InternalCreate_m57E00EAD6FD85A7AEE88C4BABD2B76F028D26229_ftn) ();
static ConnectionConfigInternal_InternalCreate_m57E00EAD6FD85A7AEE88C4BABD2B76F028D26229_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (ConnectionConfigInternal_InternalCreate_m57E00EAD6FD85A7AEE88C4BABD2B76F028D26229_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.ConnectionConfigInternal::InternalCreate()");
intptr_t icallRetVal = _il2cpp_icall_func();
return icallRetVal;
}
// System.Void UnityEngine.Networking.ConnectionConfigInternal::InternalDestroy(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfigInternal_InternalDestroy_mA5ED8454D97B55A9BF3FDDC6DDE09D31E6DF20E9 (intptr_t ___ptr0, const RuntimeMethod* method)
{
typedef void (*ConnectionConfigInternal_InternalDestroy_mA5ED8454D97B55A9BF3FDDC6DDE09D31E6DF20E9_ftn) (intptr_t);
static ConnectionConfigInternal_InternalDestroy_mA5ED8454D97B55A9BF3FDDC6DDE09D31E6DF20E9_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (ConnectionConfigInternal_InternalDestroy_mA5ED8454D97B55A9BF3FDDC6DDE09D31E6DF20E9_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.ConnectionConfigInternal::InternalDestroy(System.IntPtr)");
_il2cpp_icall_func(___ptr0);
}
// System.Byte UnityEngine.Networking.ConnectionConfigInternal::AddChannel(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t ConnectionConfigInternal_AddChannel_m6F0C7412C1B07FA22276ED59872E1B5280C07C14 (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, int32_t ___value0, const RuntimeMethod* method)
{
typedef uint8_t (*ConnectionConfigInternal_AddChannel_m6F0C7412C1B07FA22276ED59872E1B5280C07C14_ftn) (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 *, int32_t);
static ConnectionConfigInternal_AddChannel_m6F0C7412C1B07FA22276ED59872E1B5280C07C14_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (ConnectionConfigInternal_AddChannel_m6F0C7412C1B07FA22276ED59872E1B5280C07C14_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.ConnectionConfigInternal::AddChannel(System.Int32)");
uint8_t icallRetVal = _il2cpp_icall_func(__this, ___value0);
return icallRetVal;
}
// System.Boolean UnityEngine.Networking.ConnectionConfigInternal::SetPacketSize(System.UInt16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConnectionConfigInternal_SetPacketSize_m53D38ACE88594D14DFB61BF99B2109FA35F5E4B3 (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, uint16_t ___value0, const RuntimeMethod* method)
{
typedef bool (*ConnectionConfigInternal_SetPacketSize_m53D38ACE88594D14DFB61BF99B2109FA35F5E4B3_ftn) (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 *, uint16_t);
static ConnectionConfigInternal_SetPacketSize_m53D38ACE88594D14DFB61BF99B2109FA35F5E4B3_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (ConnectionConfigInternal_SetPacketSize_m53D38ACE88594D14DFB61BF99B2109FA35F5E4B3_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.ConnectionConfigInternal::SetPacketSize(System.UInt16)");
bool icallRetVal = _il2cpp_icall_func(__this, ___value0);
return icallRetVal;
}
// System.Void UnityEngine.Networking.ConnectionConfigInternal::set_FragmentSize(System.UInt16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfigInternal_set_FragmentSize_m81A3C2E79C8CA333D4901A34E253916986870678 (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, uint16_t ___value0, const RuntimeMethod* method)
{
typedef void (*ConnectionConfigInternal_set_FragmentSize_m81A3C2E79C8CA333D4901A34E253916986870678_ftn) (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 *, uint16_t);
static ConnectionConfigInternal_set_FragmentSize_m81A3C2E79C8CA333D4901A34E253916986870678_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (ConnectionConfigInternal_set_FragmentSize_m81A3C2E79C8CA333D4901A34E253916986870678_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.ConnectionConfigInternal::set_FragmentSize(System.UInt16)");
_il2cpp_icall_func(__this, ___value0);
}
// System.Void UnityEngine.Networking.ConnectionConfigInternal::set_ResendTimeout(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfigInternal_set_ResendTimeout_m52B7443A4BF5D1DC15E41BC1E3EA4B0890D06413 (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, uint32_t ___value0, const RuntimeMethod* method)
{
typedef void (*ConnectionConfigInternal_set_ResendTimeout_m52B7443A4BF5D1DC15E41BC1E3EA4B0890D06413_ftn) (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 *, uint32_t);
static ConnectionConfigInternal_set_ResendTimeout_m52B7443A4BF5D1DC15E41BC1E3EA4B0890D06413_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (ConnectionConfigInternal_set_ResendTimeout_m52B7443A4BF5D1DC15E41BC1E3EA4B0890D06413_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.ConnectionConfigInternal::set_ResendTimeout(System.UInt32)");
_il2cpp_icall_func(__this, ___value0);
}
// System.Void UnityEngine.Networking.ConnectionConfigInternal::set_DisconnectTimeout(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfigInternal_set_DisconnectTimeout_m7B620F41E9B1F610CA2616939BBE5C636C073369 (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, uint32_t ___value0, const RuntimeMethod* method)
{
typedef void (*ConnectionConfigInternal_set_DisconnectTimeout_m7B620F41E9B1F610CA2616939BBE5C636C073369_ftn) (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 *, uint32_t);
static ConnectionConfigInternal_set_DisconnectTimeout_m7B620F41E9B1F610CA2616939BBE5C636C073369_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (ConnectionConfigInternal_set_DisconnectTimeout_m7B620F41E9B1F610CA2616939BBE5C636C073369_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.ConnectionConfigInternal::set_DisconnectTimeout(System.UInt32)");
_il2cpp_icall_func(__this, ___value0);
}
// System.Void UnityEngine.Networking.ConnectionConfigInternal::set_ConnectTimeout(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfigInternal_set_ConnectTimeout_mC4F96B2E33DB75AB6CFB251E28816294F4D629F2 (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, uint32_t ___value0, const RuntimeMethod* method)
{
typedef void (*ConnectionConfigInternal_set_ConnectTimeout_mC4F96B2E33DB75AB6CFB251E28816294F4D629F2_ftn) (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 *, uint32_t);
static ConnectionConfigInternal_set_ConnectTimeout_mC4F96B2E33DB75AB6CFB251E28816294F4D629F2_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (ConnectionConfigInternal_set_ConnectTimeout_mC4F96B2E33DB75AB6CFB251E28816294F4D629F2_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.ConnectionConfigInternal::set_ConnectTimeout(System.UInt32)");
_il2cpp_icall_func(__this, ___value0);
}
// System.Void UnityEngine.Networking.ConnectionConfigInternal::set_MinUpdateTimeout(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfigInternal_set_MinUpdateTimeout_mF4DA20AA8EAF8A4E82DA4471483A5B8A3601B2F7 (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, uint32_t ___value0, const RuntimeMethod* method)
{
typedef void (*ConnectionConfigInternal_set_MinUpdateTimeout_mF4DA20AA8EAF8A4E82DA4471483A5B8A3601B2F7_ftn) (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 *, uint32_t);
static ConnectionConfigInternal_set_MinUpdateTimeout_mF4DA20AA8EAF8A4E82DA4471483A5B8A3601B2F7_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (ConnectionConfigInternal_set_MinUpdateTimeout_mF4DA20AA8EAF8A4E82DA4471483A5B8A3601B2F7_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.ConnectionConfigInternal::set_MinUpdateTimeout(System.UInt32)");
_il2cpp_icall_func(__this, ___value0);
}
// System.Void UnityEngine.Networking.ConnectionConfigInternal::set_PingTimeout(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfigInternal_set_PingTimeout_m882CF8571F3F466C026F84FB48FD7BCAFC41FBF3 (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, uint32_t ___value0, const RuntimeMethod* method)
{
typedef void (*ConnectionConfigInternal_set_PingTimeout_m882CF8571F3F466C026F84FB48FD7BCAFC41FBF3_ftn) (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 *, uint32_t);
static ConnectionConfigInternal_set_PingTimeout_m882CF8571F3F466C026F84FB48FD7BCAFC41FBF3_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (ConnectionConfigInternal_set_PingTimeout_m882CF8571F3F466C026F84FB48FD7BCAFC41FBF3_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.ConnectionConfigInternal::set_PingTimeout(System.UInt32)");
_il2cpp_icall_func(__this, ___value0);
}
// System.Void UnityEngine.Networking.ConnectionConfigInternal::set_ReducedPingTimeout(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfigInternal_set_ReducedPingTimeout_m10956CD170C63491A8D04F4A95D048090831E8CE (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, uint32_t ___value0, const RuntimeMethod* method)
{
typedef void (*ConnectionConfigInternal_set_ReducedPingTimeout_m10956CD170C63491A8D04F4A95D048090831E8CE_ftn) (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 *, uint32_t);
static ConnectionConfigInternal_set_ReducedPingTimeout_m10956CD170C63491A8D04F4A95D048090831E8CE_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (ConnectionConfigInternal_set_ReducedPingTimeout_m10956CD170C63491A8D04F4A95D048090831E8CE_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.ConnectionConfigInternal::set_ReducedPingTimeout(System.UInt32)");
_il2cpp_icall_func(__this, ___value0);
}
// System.Void UnityEngine.Networking.ConnectionConfigInternal::set_AllCostTimeout(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfigInternal_set_AllCostTimeout_m37CC810E66808CDCFBDA2DA785169927C8FE5553 (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, uint32_t ___value0, const RuntimeMethod* method)
{
typedef void (*ConnectionConfigInternal_set_AllCostTimeout_m37CC810E66808CDCFBDA2DA785169927C8FE5553_ftn) (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 *, uint32_t);
static ConnectionConfigInternal_set_AllCostTimeout_m37CC810E66808CDCFBDA2DA785169927C8FE5553_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (ConnectionConfigInternal_set_AllCostTimeout_m37CC810E66808CDCFBDA2DA785169927C8FE5553_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.ConnectionConfigInternal::set_AllCostTimeout(System.UInt32)");
_il2cpp_icall_func(__this, ___value0);
}
// System.Void UnityEngine.Networking.ConnectionConfigInternal::set_NetworkDropThreshold(System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfigInternal_set_NetworkDropThreshold_m0E9A369B4625FDBE833B23D9A792E8CD111F5AF4 (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, uint8_t ___value0, const RuntimeMethod* method)
{
typedef void (*ConnectionConfigInternal_set_NetworkDropThreshold_m0E9A369B4625FDBE833B23D9A792E8CD111F5AF4_ftn) (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 *, uint8_t);
static ConnectionConfigInternal_set_NetworkDropThreshold_m0E9A369B4625FDBE833B23D9A792E8CD111F5AF4_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (ConnectionConfigInternal_set_NetworkDropThreshold_m0E9A369B4625FDBE833B23D9A792E8CD111F5AF4_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.ConnectionConfigInternal::set_NetworkDropThreshold(System.Byte)");
_il2cpp_icall_func(__this, ___value0);
}
// System.Void UnityEngine.Networking.ConnectionConfigInternal::set_OverflowDropThreshold(System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfigInternal_set_OverflowDropThreshold_m4AD127798D39BC9B8034EC35DA235EAC85D87B18 (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, uint8_t ___value0, const RuntimeMethod* method)
{
typedef void (*ConnectionConfigInternal_set_OverflowDropThreshold_m4AD127798D39BC9B8034EC35DA235EAC85D87B18_ftn) (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 *, uint8_t);
static ConnectionConfigInternal_set_OverflowDropThreshold_m4AD127798D39BC9B8034EC35DA235EAC85D87B18_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (ConnectionConfigInternal_set_OverflowDropThreshold_m4AD127798D39BC9B8034EC35DA235EAC85D87B18_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.ConnectionConfigInternal::set_OverflowDropThreshold(System.Byte)");
_il2cpp_icall_func(__this, ___value0);
}
// System.Void UnityEngine.Networking.ConnectionConfigInternal::set_MaxConnectionAttempt(System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfigInternal_set_MaxConnectionAttempt_m6A5DFC749DB71E05E4167E11ED8D1930D34A20A9 (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, uint8_t ___value0, const RuntimeMethod* method)
{
typedef void (*ConnectionConfigInternal_set_MaxConnectionAttempt_m6A5DFC749DB71E05E4167E11ED8D1930D34A20A9_ftn) (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 *, uint8_t);
static ConnectionConfigInternal_set_MaxConnectionAttempt_m6A5DFC749DB71E05E4167E11ED8D1930D34A20A9_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (ConnectionConfigInternal_set_MaxConnectionAttempt_m6A5DFC749DB71E05E4167E11ED8D1930D34A20A9_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.ConnectionConfigInternal::set_MaxConnectionAttempt(System.Byte)");
_il2cpp_icall_func(__this, ___value0);
}
// System.Void UnityEngine.Networking.ConnectionConfigInternal::set_AckDelay(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfigInternal_set_AckDelay_m39BC6D36B69AE86B8587FEDCA9B6232F7A9D1960 (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, uint32_t ___value0, const RuntimeMethod* method)
{
typedef void (*ConnectionConfigInternal_set_AckDelay_m39BC6D36B69AE86B8587FEDCA9B6232F7A9D1960_ftn) (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 *, uint32_t);
static ConnectionConfigInternal_set_AckDelay_m39BC6D36B69AE86B8587FEDCA9B6232F7A9D1960_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (ConnectionConfigInternal_set_AckDelay_m39BC6D36B69AE86B8587FEDCA9B6232F7A9D1960_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.ConnectionConfigInternal::set_AckDelay(System.UInt32)");
_il2cpp_icall_func(__this, ___value0);
}
// System.Void UnityEngine.Networking.ConnectionConfigInternal::set_SendDelay(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfigInternal_set_SendDelay_m6CDA97F9DB65D815562064D9FC5C6E92FDD735E3 (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, uint32_t ___value0, const RuntimeMethod* method)
{
typedef void (*ConnectionConfigInternal_set_SendDelay_m6CDA97F9DB65D815562064D9FC5C6E92FDD735E3_ftn) (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 *, uint32_t);
static ConnectionConfigInternal_set_SendDelay_m6CDA97F9DB65D815562064D9FC5C6E92FDD735E3_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (ConnectionConfigInternal_set_SendDelay_m6CDA97F9DB65D815562064D9FC5C6E92FDD735E3_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.ConnectionConfigInternal::set_SendDelay(System.UInt32)");
_il2cpp_icall_func(__this, ___value0);
}
// System.Void UnityEngine.Networking.ConnectionConfigInternal::set_MaxCombinedReliableMessageSize(System.UInt16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfigInternal_set_MaxCombinedReliableMessageSize_mAD08AF5D34269E4648AA1630AE3524A0747433CC (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, uint16_t ___value0, const RuntimeMethod* method)
{
typedef void (*ConnectionConfigInternal_set_MaxCombinedReliableMessageSize_mAD08AF5D34269E4648AA1630AE3524A0747433CC_ftn) (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 *, uint16_t);
static ConnectionConfigInternal_set_MaxCombinedReliableMessageSize_mAD08AF5D34269E4648AA1630AE3524A0747433CC_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (ConnectionConfigInternal_set_MaxCombinedReliableMessageSize_mAD08AF5D34269E4648AA1630AE3524A0747433CC_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.ConnectionConfigInternal::set_MaxCombinedReliableMessageSize(System.UInt16)");
_il2cpp_icall_func(__this, ___value0);
}
// System.Void UnityEngine.Networking.ConnectionConfigInternal::set_MaxCombinedReliableMessageCount(System.UInt16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfigInternal_set_MaxCombinedReliableMessageCount_m477651B41F261E81BC43D3C854AA6664EBF7B541 (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, uint16_t ___value0, const RuntimeMethod* method)
{
typedef void (*ConnectionConfigInternal_set_MaxCombinedReliableMessageCount_m477651B41F261E81BC43D3C854AA6664EBF7B541_ftn) (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 *, uint16_t);
static ConnectionConfigInternal_set_MaxCombinedReliableMessageCount_m477651B41F261E81BC43D3C854AA6664EBF7B541_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (ConnectionConfigInternal_set_MaxCombinedReliableMessageCount_m477651B41F261E81BC43D3C854AA6664EBF7B541_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.ConnectionConfigInternal::set_MaxCombinedReliableMessageCount(System.UInt16)");
_il2cpp_icall_func(__this, ___value0);
}
// System.Void UnityEngine.Networking.ConnectionConfigInternal::set_MaxSentMessageQueueSize(System.UInt16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfigInternal_set_MaxSentMessageQueueSize_m517343266C198505E7BD899AD4489AD6BD593AE1 (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, uint16_t ___value0, const RuntimeMethod* method)
{
typedef void (*ConnectionConfigInternal_set_MaxSentMessageQueueSize_m517343266C198505E7BD899AD4489AD6BD593AE1_ftn) (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 *, uint16_t);
static ConnectionConfigInternal_set_MaxSentMessageQueueSize_m517343266C198505E7BD899AD4489AD6BD593AE1_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (ConnectionConfigInternal_set_MaxSentMessageQueueSize_m517343266C198505E7BD899AD4489AD6BD593AE1_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.ConnectionConfigInternal::set_MaxSentMessageQueueSize(System.UInt16)");
_il2cpp_icall_func(__this, ___value0);
}
// System.Void UnityEngine.Networking.ConnectionConfigInternal::set_AcksType(System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfigInternal_set_AcksType_m9CB8EE193EE3AEDB5CC5E63D3DE5D768450523EE (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, uint8_t ___value0, const RuntimeMethod* method)
{
typedef void (*ConnectionConfigInternal_set_AcksType_m9CB8EE193EE3AEDB5CC5E63D3DE5D768450523EE_ftn) (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 *, uint8_t);
static ConnectionConfigInternal_set_AcksType_m9CB8EE193EE3AEDB5CC5E63D3DE5D768450523EE_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (ConnectionConfigInternal_set_AcksType_m9CB8EE193EE3AEDB5CC5E63D3DE5D768450523EE_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.ConnectionConfigInternal::set_AcksType(System.Byte)");
_il2cpp_icall_func(__this, ___value0);
}
// System.Void UnityEngine.Networking.ConnectionConfigInternal::set_UsePlatformSpecificProtocols(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfigInternal_set_UsePlatformSpecificProtocols_m65F8757AA1E47534DD74441D8325B7F33320985E (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, bool ___value0, const RuntimeMethod* method)
{
typedef void (*ConnectionConfigInternal_set_UsePlatformSpecificProtocols_m65F8757AA1E47534DD74441D8325B7F33320985E_ftn) (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 *, bool);
static ConnectionConfigInternal_set_UsePlatformSpecificProtocols_m65F8757AA1E47534DD74441D8325B7F33320985E_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (ConnectionConfigInternal_set_UsePlatformSpecificProtocols_m65F8757AA1E47534DD74441D8325B7F33320985E_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.ConnectionConfigInternal::set_UsePlatformSpecificProtocols(System.Boolean)");
_il2cpp_icall_func(__this, ___value0);
}
// System.Void UnityEngine.Networking.ConnectionConfigInternal::set_InitialBandwidth(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfigInternal_set_InitialBandwidth_mF6348D56F65CED75B5809F6AE996C2DDB8903244 (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, uint32_t ___value0, const RuntimeMethod* method)
{
typedef void (*ConnectionConfigInternal_set_InitialBandwidth_mF6348D56F65CED75B5809F6AE996C2DDB8903244_ftn) (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 *, uint32_t);
static ConnectionConfigInternal_set_InitialBandwidth_mF6348D56F65CED75B5809F6AE996C2DDB8903244_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (ConnectionConfigInternal_set_InitialBandwidth_mF6348D56F65CED75B5809F6AE996C2DDB8903244_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.ConnectionConfigInternal::set_InitialBandwidth(System.UInt32)");
_il2cpp_icall_func(__this, ___value0);
}
// System.Void UnityEngine.Networking.ConnectionConfigInternal::set_BandwidthPeakFactor(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfigInternal_set_BandwidthPeakFactor_m3C43D6BD419D87787D18860D3927E7E1ABE1F9B7 (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, float ___value0, const RuntimeMethod* method)
{
typedef void (*ConnectionConfigInternal_set_BandwidthPeakFactor_m3C43D6BD419D87787D18860D3927E7E1ABE1F9B7_ftn) (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 *, float);
static ConnectionConfigInternal_set_BandwidthPeakFactor_m3C43D6BD419D87787D18860D3927E7E1ABE1F9B7_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (ConnectionConfigInternal_set_BandwidthPeakFactor_m3C43D6BD419D87787D18860D3927E7E1ABE1F9B7_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.ConnectionConfigInternal::set_BandwidthPeakFactor(System.Single)");
_il2cpp_icall_func(__this, ___value0);
}
// System.Void UnityEngine.Networking.ConnectionConfigInternal::set_WebSocketReceiveBufferMaxSize(System.UInt16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfigInternal_set_WebSocketReceiveBufferMaxSize_m02AD41DCF144B4EE187F705916F85BE3C1D5895F (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, uint16_t ___value0, const RuntimeMethod* method)
{
typedef void (*ConnectionConfigInternal_set_WebSocketReceiveBufferMaxSize_m02AD41DCF144B4EE187F705916F85BE3C1D5895F_ftn) (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 *, uint16_t);
static ConnectionConfigInternal_set_WebSocketReceiveBufferMaxSize_m02AD41DCF144B4EE187F705916F85BE3C1D5895F_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (ConnectionConfigInternal_set_WebSocketReceiveBufferMaxSize_m02AD41DCF144B4EE187F705916F85BE3C1D5895F_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.ConnectionConfigInternal::set_WebSocketReceiveBufferMaxSize(System.UInt16)");
_il2cpp_icall_func(__this, ___value0);
}
// System.Void UnityEngine.Networking.ConnectionConfigInternal::set_UdpSocketReceiveBufferMaxSize(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionConfigInternal_set_UdpSocketReceiveBufferMaxSize_m04A8CBD90C0CD7F0E888BC09D78EA9378C74B019 (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, uint32_t ___value0, const RuntimeMethod* method)
{
typedef void (*ConnectionConfigInternal_set_UdpSocketReceiveBufferMaxSize_m04A8CBD90C0CD7F0E888BC09D78EA9378C74B019_ftn) (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 *, uint32_t);
static ConnectionConfigInternal_set_UdpSocketReceiveBufferMaxSize_m04A8CBD90C0CD7F0E888BC09D78EA9378C74B019_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (ConnectionConfigInternal_set_UdpSocketReceiveBufferMaxSize_m04A8CBD90C0CD7F0E888BC09D78EA9378C74B019_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.ConnectionConfigInternal::set_UdpSocketReceiveBufferMaxSize(System.UInt32)");
_il2cpp_icall_func(__this, ___value0);
}
// System.Int32 UnityEngine.Networking.ConnectionConfigInternal::SetSSLCertFilePath(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConnectionConfigInternal_SetSSLCertFilePath_mE1BB6420E3CB9775AD1E55561D9973D7DA1794A4 (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, String_t* ___value0, const RuntimeMethod* method)
{
typedef int32_t (*ConnectionConfigInternal_SetSSLCertFilePath_mE1BB6420E3CB9775AD1E55561D9973D7DA1794A4_ftn) (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 *, String_t*);
static ConnectionConfigInternal_SetSSLCertFilePath_mE1BB6420E3CB9775AD1E55561D9973D7DA1794A4_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (ConnectionConfigInternal_SetSSLCertFilePath_mE1BB6420E3CB9775AD1E55561D9973D7DA1794A4_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.ConnectionConfigInternal::SetSSLCertFilePath(System.String)");
int32_t icallRetVal = _il2cpp_icall_func(__this, ___value0);
return icallRetVal;
}
// System.Int32 UnityEngine.Networking.ConnectionConfigInternal::SetSSLPrivateKeyFilePath(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConnectionConfigInternal_SetSSLPrivateKeyFilePath_m97560CCDF198A876997E44D363018BA65C5929EB (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, String_t* ___value0, const RuntimeMethod* method)
{
typedef int32_t (*ConnectionConfigInternal_SetSSLPrivateKeyFilePath_m97560CCDF198A876997E44D363018BA65C5929EB_ftn) (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 *, String_t*);
static ConnectionConfigInternal_SetSSLPrivateKeyFilePath_m97560CCDF198A876997E44D363018BA65C5929EB_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (ConnectionConfigInternal_SetSSLPrivateKeyFilePath_m97560CCDF198A876997E44D363018BA65C5929EB_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.ConnectionConfigInternal::SetSSLPrivateKeyFilePath(System.String)");
int32_t icallRetVal = _il2cpp_icall_func(__this, ___value0);
return icallRetVal;
}
// System.Int32 UnityEngine.Networking.ConnectionConfigInternal::SetSSLCAFilePath(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConnectionConfigInternal_SetSSLCAFilePath_mC553B8CCC370BFC28CC8D26437CC6B1F0FD60315 (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, String_t* ___value0, const RuntimeMethod* method)
{
typedef int32_t (*ConnectionConfigInternal_SetSSLCAFilePath_mC553B8CCC370BFC28CC8D26437CC6B1F0FD60315_ftn) (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 *, String_t*);
static ConnectionConfigInternal_SetSSLCAFilePath_mC553B8CCC370BFC28CC8D26437CC6B1F0FD60315_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (ConnectionConfigInternal_SetSSLCAFilePath_mC553B8CCC370BFC28CC8D26437CC6B1F0FD60315_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.ConnectionConfigInternal::SetSSLCAFilePath(System.String)");
int32_t icallRetVal = _il2cpp_icall_func(__this, ___value0);
return icallRetVal;
}
// System.Boolean UnityEngine.Networking.ConnectionConfigInternal::MakeChannelsSharedOrder(System.Byte[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConnectionConfigInternal_MakeChannelsSharedOrder_m386F46D817576653643A908AAAA1AB6DA136707E (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___values0, const RuntimeMethod* method)
{
typedef bool (*ConnectionConfigInternal_MakeChannelsSharedOrder_m386F46D817576653643A908AAAA1AB6DA136707E_ftn) (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 *, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*);
static ConnectionConfigInternal_MakeChannelsSharedOrder_m386F46D817576653643A908AAAA1AB6DA136707E_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (ConnectionConfigInternal_MakeChannelsSharedOrder_m386F46D817576653643A908AAAA1AB6DA136707E_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.ConnectionConfigInternal::MakeChannelsSharedOrder(System.Byte[])");
bool icallRetVal = _il2cpp_icall_func(__this, ___values0);
return icallRetVal;
}
#ifdef __clang__
#pragma 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 UnityEngine.Networking.ConnectionSimulatorConfig::.ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionSimulatorConfig__ctor_m015995F95408E601465041AEC9FABD3BCC747D94 (ConnectionSimulatorConfig_t1AE9575EDB85F7792DE5F22A4E096A4A08AEB935 * __this, int32_t ___outMinDelay0, int32_t ___outAvgDelay1, int32_t ___inMinDelay2, int32_t ___inAvgDelay3, float ___packetLossPercentage4, const RuntimeMethod* method)
{
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
int32_t L_0 = ___outMinDelay0;
__this->set_m_OutMinDelay_0(L_0);
int32_t L_1 = ___outAvgDelay1;
__this->set_m_OutAvgDelay_1(L_1);
int32_t L_2 = ___inMinDelay2;
__this->set_m_InMinDelay_2(L_2);
int32_t L_3 = ___inAvgDelay3;
__this->set_m_InAvgDelay_3(L_3);
float L_4 = ___packetLossPercentage4;
__this->set_m_PacketLossPercentage_4(L_4);
return;
}
}
// System.Void UnityEngine.Networking.ConnectionSimulatorConfig::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionSimulatorConfig_Dispose_m9148148B8B0005349005627999D7B3AF72020D95 (ConnectionSimulatorConfig_t1AE9575EDB85F7792DE5F22A4E096A4A08AEB935 * __this, const RuntimeMethod* method)
{
{
return;
}
}
// System.Void UnityEngine.Networking.ConnectionSimulatorConfig::Finalize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionSimulatorConfig_Finalize_m102F91174589CCD61CC36B903EF7926A2EB578A6 (ConnectionSimulatorConfig_t1AE9575EDB85F7792DE5F22A4E096A4A08AEB935 * __this, const RuntimeMethod* method)
{
Exception_t * __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
{
}
IL_0001:
try
{ // begin try (depth: 1)
ConnectionSimulatorConfig_Dispose_m9148148B8B0005349005627999D7B3AF72020D95(__this, /*hidden argument*/NULL);
IL2CPP_LEAVE(0x13, FINALLY_000b);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_000b;
}
FINALLY_000b:
{ // begin finally (depth: 1)
Object_Finalize_mC59C83CF4F7707E425FFA6362931C25D4C36676A(__this, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(11)
} // end finally (depth: 1)
IL2CPP_CLEANUP(11)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x13, IL_0013)
}
IL_0013:
{
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 UnityEngine.Networking.ConnectionSimulatorConfigInternal::.ctor(UnityEngine.Networking.ConnectionSimulatorConfig)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionSimulatorConfigInternal__ctor_m06E528FBFBA47A5F5B3FCD8438C23055104CBBE5 (ConnectionSimulatorConfigInternal_tB19B4AE3F50ACB7661DC811F6198E37C08ACDB99 * __this, ConnectionSimulatorConfig_t1AE9575EDB85F7792DE5F22A4E096A4A08AEB935 * ___config0, const RuntimeMethod* method)
{
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
ConnectionSimulatorConfig_t1AE9575EDB85F7792DE5F22A4E096A4A08AEB935 * L_0 = ___config0;
NullCheck(L_0);
int32_t L_1 = L_0->get_m_OutMinDelay_0();
ConnectionSimulatorConfig_t1AE9575EDB85F7792DE5F22A4E096A4A08AEB935 * L_2 = ___config0;
NullCheck(L_2);
int32_t L_3 = L_2->get_m_OutAvgDelay_1();
ConnectionSimulatorConfig_t1AE9575EDB85F7792DE5F22A4E096A4A08AEB935 * L_4 = ___config0;
NullCheck(L_4);
int32_t L_5 = L_4->get_m_InMinDelay_2();
ConnectionSimulatorConfig_t1AE9575EDB85F7792DE5F22A4E096A4A08AEB935 * L_6 = ___config0;
NullCheck(L_6);
int32_t L_7 = L_6->get_m_InAvgDelay_3();
ConnectionSimulatorConfig_t1AE9575EDB85F7792DE5F22A4E096A4A08AEB935 * L_8 = ___config0;
NullCheck(L_8);
float L_9 = L_8->get_m_PacketLossPercentage_4();
intptr_t L_10;
L_10 = ConnectionSimulatorConfigInternal_InternalCreate_m941ADF075D35E80C29D1F9DCEB3C54BC2371FF32(L_1, L_3, L_5, L_7, L_9, /*hidden argument*/NULL);
__this->set_m_Ptr_0((intptr_t)L_10);
return;
}
}
// System.Void UnityEngine.Networking.ConnectionSimulatorConfigInternal::Dispose(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionSimulatorConfigInternal_Dispose_m15E2C4F854D39FD7EE083FE7EC87270C40B4351E (ConnectionSimulatorConfigInternal_tB19B4AE3F50ACB7661DC811F6198E37C08ACDB99 * __this, bool ___disposing0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GC_tD6F0377620BF01385965FD29272CF088A4309C0D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
intptr_t L_0 = __this->get_m_Ptr_0();
bool L_1;
L_1 = IntPtr_op_Inequality_m212AF0E66AA81FEDC982B1C8A44ADDA24B995EB8((intptr_t)L_0, (intptr_t)(0), /*hidden argument*/NULL);
V_0 = L_1;
bool L_2 = V_0;
if (!L_2)
{
goto IL_002e;
}
}
{
intptr_t L_3 = __this->get_m_Ptr_0();
ConnectionSimulatorConfigInternal_InternalDestroy_m7B65F68816CC967FE0EFE2A8C2AE6DC9F81D7EB4((intptr_t)L_3, /*hidden argument*/NULL);
__this->set_m_Ptr_0((intptr_t)(0));
}
IL_002e:
{
IL2CPP_RUNTIME_CLASS_INIT(GC_tD6F0377620BF01385965FD29272CF088A4309C0D_il2cpp_TypeInfo_var);
GC_SuppressFinalize_mEE880E988C6AF32AA2F67F2D62715281EAA41555(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Networking.ConnectionSimulatorConfigInternal::Finalize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionSimulatorConfigInternal_Finalize_m5E7E4D2E3B9344061833EBB99082F0394D5D49D5 (ConnectionSimulatorConfigInternal_tB19B4AE3F50ACB7661DC811F6198E37C08ACDB99 * __this, const RuntimeMethod* method)
{
Exception_t * __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
{
}
IL_0001:
try
{ // begin try (depth: 1)
VirtActionInvoker1< bool >::Invoke(5 /* System.Void UnityEngine.Networking.ConnectionSimulatorConfigInternal::Dispose(System.Boolean) */, __this, (bool)0);
IL2CPP_LEAVE(0x14, FINALLY_000c);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_000c;
}
FINALLY_000c:
{ // begin finally (depth: 1)
Object_Finalize_mC59C83CF4F7707E425FFA6362931C25D4C36676A(__this, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(12)
} // end finally (depth: 1)
IL2CPP_CLEANUP(12)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x14, IL_0014)
}
IL_0014:
{
return;
}
}
// System.Void UnityEngine.Networking.ConnectionSimulatorConfigInternal::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionSimulatorConfigInternal_Dispose_mA689CDB369FBB11F89AE41F8AD10911E36B88BB4 (ConnectionSimulatorConfigInternal_tB19B4AE3F50ACB7661DC811F6198E37C08ACDB99 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
intptr_t L_0 = __this->get_m_Ptr_0();
bool L_1;
L_1 = IntPtr_op_Inequality_m212AF0E66AA81FEDC982B1C8A44ADDA24B995EB8((intptr_t)L_0, (intptr_t)(0), /*hidden argument*/NULL);
V_0 = L_1;
bool L_2 = V_0;
if (!L_2)
{
goto IL_002e;
}
}
{
intptr_t L_3 = __this->get_m_Ptr_0();
ConnectionSimulatorConfigInternal_InternalDestroy_m7B65F68816CC967FE0EFE2A8C2AE6DC9F81D7EB4((intptr_t)L_3, /*hidden argument*/NULL);
__this->set_m_Ptr_0((intptr_t)(0));
}
IL_002e:
{
return;
}
}
// System.IntPtr UnityEngine.Networking.ConnectionSimulatorConfigInternal::InternalCreate(System.Int32,System.Int32,System.Int32,System.Int32,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t ConnectionSimulatorConfigInternal_InternalCreate_m941ADF075D35E80C29D1F9DCEB3C54BC2371FF32 (int32_t ___outMinDelay0, int32_t ___outAvgDelay1, int32_t ___inMinDelay2, int32_t ___inAvgDelay3, float ___packetLossPercentage4, const RuntimeMethod* method)
{
typedef intptr_t (*ConnectionSimulatorConfigInternal_InternalCreate_m941ADF075D35E80C29D1F9DCEB3C54BC2371FF32_ftn) (int32_t, int32_t, int32_t, int32_t, float);
static ConnectionSimulatorConfigInternal_InternalCreate_m941ADF075D35E80C29D1F9DCEB3C54BC2371FF32_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (ConnectionSimulatorConfigInternal_InternalCreate_m941ADF075D35E80C29D1F9DCEB3C54BC2371FF32_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.ConnectionSimulatorConfigInternal::InternalCreate(System.Int32,System.Int32,System.Int32,System.Int32,System.Single)");
intptr_t icallRetVal = _il2cpp_icall_func(___outMinDelay0, ___outAvgDelay1, ___inMinDelay2, ___inAvgDelay3, ___packetLossPercentage4);
return icallRetVal;
}
// System.Void UnityEngine.Networking.ConnectionSimulatorConfigInternal::InternalDestroy(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConnectionSimulatorConfigInternal_InternalDestroy_m7B65F68816CC967FE0EFE2A8C2AE6DC9F81D7EB4 (intptr_t ___ptr0, const RuntimeMethod* method)
{
typedef void (*ConnectionSimulatorConfigInternal_InternalDestroy_m7B65F68816CC967FE0EFE2A8C2AE6DC9F81D7EB4_ftn) (intptr_t);
static ConnectionSimulatorConfigInternal_InternalDestroy_m7B65F68816CC967FE0EFE2A8C2AE6DC9F81D7EB4_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (ConnectionSimulatorConfigInternal_InternalDestroy_m7B65F68816CC967FE0EFE2A8C2AE6DC9F81D7EB4_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.ConnectionSimulatorConfigInternal::InternalDestroy(System.IntPtr)");
_il2cpp_icall_func(___ptr0);
}
#ifdef __clang__
#pragma 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 UnityEngine.Networking.Match.CreateMatchRequest::get_name()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CreateMatchRequest_get_name_mDB5F67F45F566D176B840FFAABAF0A5072DB56A0 (CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_U3CnameU3Ek__BackingField_5();
return L_0;
}
}
// System.Void UnityEngine.Networking.Match.CreateMatchRequest::set_name(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CreateMatchRequest_set_name_mE0B8D4C54AE982080E74B8D40FFAA7529D09A0A8 (CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CnameU3Ek__BackingField_5(L_0);
return;
}
}
// System.UInt32 UnityEngine.Networking.Match.CreateMatchRequest::get_size()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t CreateMatchRequest_get_size_mD2818C6FA732FB6DAF315D665C3FF9E097F023EA (CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * __this, const RuntimeMethod* method)
{
{
uint32_t L_0 = __this->get_U3CsizeU3Ek__BackingField_6();
return L_0;
}
}
// System.Void UnityEngine.Networking.Match.CreateMatchRequest::set_size(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CreateMatchRequest_set_size_m87F0CE15BF61656B21FFD4A7D7AD000752F90D0F (CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * __this, uint32_t ___value0, const RuntimeMethod* method)
{
{
uint32_t L_0 = ___value0;
__this->set_U3CsizeU3Ek__BackingField_6(L_0);
return;
}
}
// System.String UnityEngine.Networking.Match.CreateMatchRequest::get_publicAddress()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CreateMatchRequest_get_publicAddress_m500540EAFB70C64014B9DD733BCC7726473D006B (CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_U3CpublicAddressU3Ek__BackingField_7();
return L_0;
}
}
// System.Void UnityEngine.Networking.Match.CreateMatchRequest::set_publicAddress(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CreateMatchRequest_set_publicAddress_m8B3FFBDAC322E8818A1A9C97F32A3D7A87FC78E2 (CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CpublicAddressU3Ek__BackingField_7(L_0);
return;
}
}
// System.String UnityEngine.Networking.Match.CreateMatchRequest::get_privateAddress()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CreateMatchRequest_get_privateAddress_m2EA118F357CCA5EC32295C777B54469422D94AFA (CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_U3CprivateAddressU3Ek__BackingField_8();
return L_0;
}
}
// System.Void UnityEngine.Networking.Match.CreateMatchRequest::set_privateAddress(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CreateMatchRequest_set_privateAddress_mDD2D5C34B6879086BAB56DD932BE91666BA370D3 (CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CprivateAddressU3Ek__BackingField_8(L_0);
return;
}
}
// System.Int32 UnityEngine.Networking.Match.CreateMatchRequest::get_eloScore()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t CreateMatchRequest_get_eloScore_m71DD51B39B031421C1D43029075DD796137A05B7 (CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_U3CeloScoreU3Ek__BackingField_9();
return L_0;
}
}
// System.Void UnityEngine.Networking.Match.CreateMatchRequest::set_eloScore(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CreateMatchRequest_set_eloScore_m029428732F257F688E21C3D69AF794FEA4E8EFC7 (CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set_U3CeloScoreU3Ek__BackingField_9(L_0);
return;
}
}
// System.Boolean UnityEngine.Networking.Match.CreateMatchRequest::get_advertise()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CreateMatchRequest_get_advertise_mC6F7A0C2EC590E0A5A5F6C02CB515D2F7FC5E044 (CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CadvertiseU3Ek__BackingField_10();
return L_0;
}
}
// System.Void UnityEngine.Networking.Match.CreateMatchRequest::set_advertise(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CreateMatchRequest_set_advertise_m7A979119781F3358FD0166BDE484212579F27FED (CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CadvertiseU3Ek__BackingField_10(L_0);
return;
}
}
// System.String UnityEngine.Networking.Match.CreateMatchRequest::get_password()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CreateMatchRequest_get_password_mA3A25AEF3994F75CC2663A003D6B762E53470A90 (CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_U3CpasswordU3Ek__BackingField_11();
return L_0;
}
}
// System.Void UnityEngine.Networking.Match.CreateMatchRequest::set_password(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CreateMatchRequest_set_password_m1ED11F41F58A9B3C2E87103625D46E4BB497A9AD (CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CpasswordU3Ek__BackingField_11(L_0);
return;
}
}
// System.Collections.Generic.Dictionary`2<System.String,System.Int64> UnityEngine.Networking.Match.CreateMatchRequest::get_matchAttributes()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * CreateMatchRequest_get_matchAttributes_m5D65A1EAD26A45C236EDA8FEB400B542093C678E (CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * __this, const RuntimeMethod* method)
{
{
Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * L_0 = __this->get_U3CmatchAttributesU3Ek__BackingField_12();
return L_0;
}
}
// System.String UnityEngine.Networking.Match.CreateMatchRequest::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CreateMatchRequest_ToString_m700D77533D6BECF54C0D0664C44C1CD981B5EAFF (CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Count_mCA15DE17B2ACAB05732DDD414A316442CC19E5FD_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UInt32_tE60352A06233E4E69DD198BCC67142159F686B15_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral11CE95773B1A28A89056F630BA32649A0210CA48);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7471FC92FC1AA570D64A46C83CB352615E0781C2);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD8F50872454B1DDA643F3A29398B40D5880A7DDA);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
int32_t G_B2_0 = 0;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B2_1 = NULL;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B2_2 = NULL;
String_t* G_B2_3 = NULL;
int32_t G_B1_0 = 0;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B1_1 = NULL;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B1_2 = NULL;
String_t* G_B1_3 = NULL;
String_t* G_B3_0 = NULL;
int32_t G_B3_1 = 0;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B3_2 = NULL;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B3_3 = NULL;
String_t* G_B3_4 = NULL;
int32_t G_B5_0 = 0;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B5_1 = NULL;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B5_2 = NULL;
String_t* G_B5_3 = NULL;
int32_t G_B4_0 = 0;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B4_1 = NULL;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B4_2 = NULL;
String_t* G_B4_3 = NULL;
int32_t G_B6_0 = 0;
int32_t G_B6_1 = 0;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B6_2 = NULL;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B6_3 = NULL;
String_t* G_B6_4 = NULL;
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)((int32_t)9));
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = L_0;
String_t* L_2;
L_2 = Request_ToString_m4F51206BC7123325B3D8278BD9852C3D07FA7B26(__this, /*hidden argument*/NULL);
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_2);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_2);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_3 = L_1;
String_t* L_4;
L_4 = CreateMatchRequest_get_name_mDB5F67F45F566D176B840FFAABAF0A5072DB56A0_inline(__this, /*hidden argument*/NULL);
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_4);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_4);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_5 = L_3;
uint32_t L_6;
L_6 = CreateMatchRequest_get_size_mD2818C6FA732FB6DAF315D665C3FF9E097F023EA_inline(__this, /*hidden argument*/NULL);
uint32_t L_7 = L_6;
RuntimeObject * L_8 = Box(UInt32_tE60352A06233E4E69DD198BCC67142159F686B15_il2cpp_TypeInfo_var, &L_7);
NullCheck(L_5);
ArrayElementTypeCheck (L_5, L_8);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_8);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_9 = L_5;
String_t* L_10;
L_10 = CreateMatchRequest_get_publicAddress_m500540EAFB70C64014B9DD733BCC7726473D006B_inline(__this, /*hidden argument*/NULL);
NullCheck(L_9);
ArrayElementTypeCheck (L_9, L_10);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_10);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_11 = L_9;
String_t* L_12;
L_12 = CreateMatchRequest_get_privateAddress_m2EA118F357CCA5EC32295C777B54469422D94AFA_inline(__this, /*hidden argument*/NULL);
NullCheck(L_11);
ArrayElementTypeCheck (L_11, L_12);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(4), (RuntimeObject *)L_12);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_13 = L_11;
int32_t L_14;
L_14 = CreateMatchRequest_get_eloScore_m71DD51B39B031421C1D43029075DD796137A05B7_inline(__this, /*hidden argument*/NULL);
int32_t L_15 = L_14;
RuntimeObject * L_16 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_15);
NullCheck(L_13);
ArrayElementTypeCheck (L_13, L_16);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(5), (RuntimeObject *)L_16);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_17 = L_13;
bool L_18;
L_18 = CreateMatchRequest_get_advertise_mC6F7A0C2EC590E0A5A5F6C02CB515D2F7FC5E044_inline(__this, /*hidden argument*/NULL);
bool L_19 = L_18;
RuntimeObject * L_20 = Box(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var, &L_19);
NullCheck(L_17);
ArrayElementTypeCheck (L_17, L_20);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(6), (RuntimeObject *)L_20);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_21 = L_17;
String_t* L_22;
L_22 = CreateMatchRequest_get_password_mA3A25AEF3994F75CC2663A003D6B762E53470A90_inline(__this, /*hidden argument*/NULL);
bool L_23;
L_23 = String_IsNullOrEmpty_m9AFBB5335B441B94E884B8A9D4A27AD60E3D7F7C(L_22, /*hidden argument*/NULL);
G_B1_0 = 7;
G_B1_1 = L_21;
G_B1_2 = L_21;
G_B1_3 = _stringLiteral11CE95773B1A28A89056F630BA32649A0210CA48;
if (L_23)
{
G_B2_0 = 7;
G_B2_1 = L_21;
G_B2_2 = L_21;
G_B2_3 = _stringLiteral11CE95773B1A28A89056F630BA32649A0210CA48;
goto IL_0071;
}
}
{
G_B3_0 = _stringLiteralD8F50872454B1DDA643F3A29398B40D5880A7DDA;
G_B3_1 = G_B1_0;
G_B3_2 = G_B1_1;
G_B3_3 = G_B1_2;
G_B3_4 = G_B1_3;
goto IL_0076;
}
IL_0071:
{
G_B3_0 = _stringLiteral7471FC92FC1AA570D64A46C83CB352615E0781C2;
G_B3_1 = G_B2_0;
G_B3_2 = G_B2_1;
G_B3_3 = G_B2_2;
G_B3_4 = G_B2_3;
}
IL_0076:
{
NullCheck(G_B3_2);
ArrayElementTypeCheck (G_B3_2, G_B3_0);
(G_B3_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B3_1), (RuntimeObject *)G_B3_0);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_24 = G_B3_3;
Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * L_25;
L_25 = CreateMatchRequest_get_matchAttributes_m5D65A1EAD26A45C236EDA8FEB400B542093C678E_inline(__this, /*hidden argument*/NULL);
G_B4_0 = 8;
G_B4_1 = L_24;
G_B4_2 = L_24;
G_B4_3 = G_B3_4;
if (!L_25)
{
G_B5_0 = 8;
G_B5_1 = L_24;
G_B5_2 = L_24;
G_B5_3 = G_B3_4;
goto IL_008e;
}
}
{
Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * L_26;
L_26 = CreateMatchRequest_get_matchAttributes_m5D65A1EAD26A45C236EDA8FEB400B542093C678E_inline(__this, /*hidden argument*/NULL);
NullCheck(L_26);
int32_t L_27;
L_27 = Dictionary_2_get_Count_mCA15DE17B2ACAB05732DDD414A316442CC19E5FD(L_26, /*hidden argument*/Dictionary_2_get_Count_mCA15DE17B2ACAB05732DDD414A316442CC19E5FD_RuntimeMethod_var);
G_B6_0 = L_27;
G_B6_1 = G_B4_0;
G_B6_2 = G_B4_1;
G_B6_3 = G_B4_2;
G_B6_4 = G_B4_3;
goto IL_008f;
}
IL_008e:
{
G_B6_0 = 0;
G_B6_1 = G_B5_0;
G_B6_2 = G_B5_1;
G_B6_3 = G_B5_2;
G_B6_4 = G_B5_3;
}
IL_008f:
{
int32_t L_28 = G_B6_0;
RuntimeObject * L_29 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_28);
NullCheck(G_B6_2);
ArrayElementTypeCheck (G_B6_2, L_29);
(G_B6_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B6_1), (RuntimeObject *)L_29);
String_t* L_30;
L_30 = UnityString_Format_m7A07C068ED408DD06F634070770FB55F13AA4EC9(G_B6_4, G_B6_3, /*hidden argument*/NULL);
V_0 = L_30;
goto IL_009d;
}
IL_009d:
{
String_t* L_31 = V_0;
return L_31;
}
}
// System.Void UnityEngine.Networking.Match.CreateMatchRequest::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CreateMatchRequest__ctor_mFC42C67684BC0A1D83C6E9C3DF5C6190DA03C024 (CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Request_tA1BC1936C153408449C4C207CA12D4358A7477FD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Request_tA1BC1936C153408449C4C207CA12D4358A7477FD_il2cpp_TypeInfo_var);
Request__ctor_m810E8C9AB15C195E42B5D49B95CE805DA5568993(__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.String UnityEngine.Networking.Match.CreateMatchResponse::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* CreateMatchResponse_ToString_m83FA8410533B35F9AB032A22273BB999DA2C01C4 (CreateMatchResponse_t1138835A2F19EA07436177C577ABC9984B9F93E2 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NodeID_t07417F7D8D30332570E9D4A123D9E8B7CA1D1E80_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC8ECFEDB46D550F91F24515968D3BD0036B15402);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD5D2875F228D651E1289522AEAAB8C492001C1BE);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)7);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = L_0;
String_t* L_2;
L_2 = Response_ToString_mE1871457C6916CD280D417857BBE8081EDE5865A(__this, /*hidden argument*/NULL);
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_2);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_2);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_3 = L_1;
String_t* L_4 = __this->get_address_2();
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_4);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_4);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_5 = L_3;
int32_t L_6 = __this->get_port_3();
int32_t L_7 = L_6;
RuntimeObject * L_8 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_7);
NullCheck(L_5);
ArrayElementTypeCheck (L_5, L_8);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_8);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_9 = L_5;
uint64_t* L_10 = __this->get_address_of_networkId_5();
String_t* L_11;
L_11 = UInt64_ToString_mFE48F1D174A1F741AB0795C1164BF45BF37F86E6((uint64_t*)L_10, _stringLiteralD5D2875F228D651E1289522AEAAB8C492001C1BE, /*hidden argument*/NULL);
NullCheck(L_9);
ArrayElementTypeCheck (L_9, L_11);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_11);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_12 = L_9;
String_t* L_13 = __this->get_accessTokenString_6();
bool L_14;
L_14 = String_IsNullOrEmpty_m9AFBB5335B441B94E884B8A9D4A27AD60E3D7F7C(L_13, /*hidden argument*/NULL);
bool L_15 = L_14;
RuntimeObject * L_16 = Box(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var, &L_15);
NullCheck(L_12);
ArrayElementTypeCheck (L_12, L_16);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(4), (RuntimeObject *)L_16);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_17 = L_12;
uint16_t L_18 = __this->get_nodeId_7();
uint16_t L_19 = L_18;
RuntimeObject * L_20 = Box(NodeID_t07417F7D8D30332570E9D4A123D9E8B7CA1D1E80_il2cpp_TypeInfo_var, &L_19);
NullCheck((Enum_t23B90B40F60E677A8025267341651C94AE079CDA *)L_20);
String_t* L_21;
L_21 = Enum_ToString_m4F8C0882A819B1D1E3286920D14CC649200F24A1((Enum_t23B90B40F60E677A8025267341651C94AE079CDA *)L_20, _stringLiteralD5D2875F228D651E1289522AEAAB8C492001C1BE, /*hidden argument*/NULL);
NullCheck(L_17);
ArrayElementTypeCheck (L_17, L_21);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(5), (RuntimeObject *)L_21);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_22 = L_17;
bool L_23 = __this->get_usingRelay_8();
bool L_24 = L_23;
RuntimeObject * L_25 = Box(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var, &L_24);
NullCheck(L_22);
ArrayElementTypeCheck (L_22, L_25);
(L_22)->SetAt(static_cast<il2cpp_array_size_t>(6), (RuntimeObject *)L_25);
String_t* L_26;
L_26 = UnityString_Format_m7A07C068ED408DD06F634070770FB55F13AA4EC9(_stringLiteralC8ECFEDB46D550F91F24515968D3BD0036B15402, L_22, /*hidden argument*/NULL);
V_0 = L_26;
goto IL_0080;
}
IL_0080:
{
String_t* L_27 = V_0;
return L_27;
}
}
// System.Void UnityEngine.Networking.Match.CreateMatchResponse::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CreateMatchResponse__ctor_m85BED3071CCB8AF4DAFCCF13B2C36BF1EAA1227A (CreateMatchResponse_t1138835A2F19EA07436177C577ABC9984B9F93E2 * __this, const RuntimeMethod* method)
{
{
__this->set_domain_4(0);
BasicResponse__ctor_m4C5BA6FDCDC2F728E13005AA17173DA8D5C7D18F(__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
// UnityEngine.Networking.Types.NetworkID UnityEngine.Networking.Match.DestroyMatchRequest::get_networkId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t DestroyMatchRequest_get_networkId_m9A908C64FB1730FC9198940FE08C380E33C43455 (DestroyMatchRequest_t3AC8FF769CC153C425D7D76492693F00A76B81D0 * __this, const RuntimeMethod* method)
{
{
uint64_t L_0 = __this->get_U3CnetworkIdU3Ek__BackingField_5();
return L_0;
}
}
// System.Void UnityEngine.Networking.Match.DestroyMatchRequest::set_networkId(UnityEngine.Networking.Types.NetworkID)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DestroyMatchRequest_set_networkId_mC1C51DCC3A6C729D2EF1EB763F56F38CA72FF68A (DestroyMatchRequest_t3AC8FF769CC153C425D7D76492693F00A76B81D0 * __this, uint64_t ___value0, const RuntimeMethod* method)
{
{
uint64_t L_0 = ___value0;
__this->set_U3CnetworkIdU3Ek__BackingField_5(L_0);
return;
}
}
// System.String UnityEngine.Networking.Match.DestroyMatchRequest::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DestroyMatchRequest_ToString_mD8E9479DA6D038F455C3DF472F85E55F391D280C (DestroyMatchRequest_t3AC8FF769CC153C425D7D76492693F00A76B81D0 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkID_tA7160DE9FBEE6E236564AEA6C328B6180FC368C3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD5D2875F228D651E1289522AEAAB8C492001C1BE);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD8ADA7FA0ED6488A1BB80EC2DD7DEDCD5AD6F190);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = L_0;
String_t* L_2;
L_2 = Request_ToString_m4F51206BC7123325B3D8278BD9852C3D07FA7B26(__this, /*hidden argument*/NULL);
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_2);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_2);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_3 = L_1;
uint64_t L_4;
L_4 = DestroyMatchRequest_get_networkId_m9A908C64FB1730FC9198940FE08C380E33C43455_inline(__this, /*hidden argument*/NULL);
uint64_t L_5 = L_4;
RuntimeObject * L_6 = Box(NetworkID_tA7160DE9FBEE6E236564AEA6C328B6180FC368C3_il2cpp_TypeInfo_var, &L_5);
NullCheck((Enum_t23B90B40F60E677A8025267341651C94AE079CDA *)L_6);
String_t* L_7;
L_7 = Enum_ToString_m4F8C0882A819B1D1E3286920D14CC649200F24A1((Enum_t23B90B40F60E677A8025267341651C94AE079CDA *)L_6, _stringLiteralD5D2875F228D651E1289522AEAAB8C492001C1BE, /*hidden argument*/NULL);
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_7);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_7);
String_t* L_8;
L_8 = UnityString_Format_m7A07C068ED408DD06F634070770FB55F13AA4EC9(_stringLiteralD8ADA7FA0ED6488A1BB80EC2DD7DEDCD5AD6F190, L_3, /*hidden argument*/NULL);
V_0 = L_8;
goto IL_0035;
}
IL_0035:
{
String_t* L_9 = V_0;
return L_9;
}
}
// System.Void UnityEngine.Networking.Match.DestroyMatchRequest::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DestroyMatchRequest__ctor_m59325BCAA65F477839D3B78E318404F42E41BFE9 (DestroyMatchRequest_t3AC8FF769CC153C425D7D76492693F00A76B81D0 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Request_tA1BC1936C153408449C4C207CA12D4358A7477FD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Request_tA1BC1936C153408449C4C207CA12D4358A7477FD_il2cpp_TypeInfo_var);
Request__ctor_m810E8C9AB15C195E42B5D49B95CE805DA5568993(__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
// UnityEngine.Networking.Types.NetworkID UnityEngine.Networking.Match.DropConnectionRequest::get_networkId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t DropConnectionRequest_get_networkId_m58D7BA9439346AD5B49293F499BED9C155C652CF (DropConnectionRequest_t0BADA55738E8857768EE57C92027957659C0E8D1 * __this, const RuntimeMethod* method)
{
{
uint64_t L_0 = __this->get_U3CnetworkIdU3Ek__BackingField_5();
return L_0;
}
}
// System.Void UnityEngine.Networking.Match.DropConnectionRequest::set_networkId(UnityEngine.Networking.Types.NetworkID)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DropConnectionRequest_set_networkId_mD980D5276D76AE525984AEC35B6F11A02F30F56C (DropConnectionRequest_t0BADA55738E8857768EE57C92027957659C0E8D1 * __this, uint64_t ___value0, const RuntimeMethod* method)
{
{
uint64_t L_0 = ___value0;
__this->set_U3CnetworkIdU3Ek__BackingField_5(L_0);
return;
}
}
// UnityEngine.Networking.Types.NodeID UnityEngine.Networking.Match.DropConnectionRequest::get_nodeId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t DropConnectionRequest_get_nodeId_m7A1E99C6F45D801A6C6D6BC0F3D18AAC6424F6C8 (DropConnectionRequest_t0BADA55738E8857768EE57C92027957659C0E8D1 * __this, const RuntimeMethod* method)
{
{
uint16_t L_0 = __this->get_U3CnodeIdU3Ek__BackingField_6();
return L_0;
}
}
// System.Void UnityEngine.Networking.Match.DropConnectionRequest::set_nodeId(UnityEngine.Networking.Types.NodeID)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DropConnectionRequest_set_nodeId_mDC0D89F76443E687896E8C8E6EEDF0FA5C2F7C27 (DropConnectionRequest_t0BADA55738E8857768EE57C92027957659C0E8D1 * __this, uint16_t ___value0, const RuntimeMethod* method)
{
{
uint16_t L_0 = ___value0;
__this->set_U3CnodeIdU3Ek__BackingField_6(L_0);
return;
}
}
// System.String UnityEngine.Networking.Match.DropConnectionRequest::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DropConnectionRequest_ToString_mE95844A55BDFD1D7A25CFB2A9DD23BF9A04B2C28 (DropConnectionRequest_t0BADA55738E8857768EE57C92027957659C0E8D1 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkID_tA7160DE9FBEE6E236564AEA6C328B6180FC368C3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NodeID_t07417F7D8D30332570E9D4A123D9E8B7CA1D1E80_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD06B515DEC71AED37A82FDDDBDE63F1D1DFE16C3);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD5D2875F228D651E1289522AEAAB8C492001C1BE);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)3);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = L_0;
String_t* L_2;
L_2 = Request_ToString_m4F51206BC7123325B3D8278BD9852C3D07FA7B26(__this, /*hidden argument*/NULL);
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_2);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_2);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_3 = L_1;
uint64_t L_4;
L_4 = DropConnectionRequest_get_networkId_m58D7BA9439346AD5B49293F499BED9C155C652CF_inline(__this, /*hidden argument*/NULL);
uint64_t L_5 = L_4;
RuntimeObject * L_6 = Box(NetworkID_tA7160DE9FBEE6E236564AEA6C328B6180FC368C3_il2cpp_TypeInfo_var, &L_5);
NullCheck((Enum_t23B90B40F60E677A8025267341651C94AE079CDA *)L_6);
String_t* L_7;
L_7 = Enum_ToString_m4F8C0882A819B1D1E3286920D14CC649200F24A1((Enum_t23B90B40F60E677A8025267341651C94AE079CDA *)L_6, _stringLiteralD5D2875F228D651E1289522AEAAB8C492001C1BE, /*hidden argument*/NULL);
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_7);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_7);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_8 = L_3;
uint16_t L_9;
L_9 = DropConnectionRequest_get_nodeId_m7A1E99C6F45D801A6C6D6BC0F3D18AAC6424F6C8_inline(__this, /*hidden argument*/NULL);
uint16_t L_10 = L_9;
RuntimeObject * L_11 = Box(NodeID_t07417F7D8D30332570E9D4A123D9E8B7CA1D1E80_il2cpp_TypeInfo_var, &L_10);
NullCheck((Enum_t23B90B40F60E677A8025267341651C94AE079CDA *)L_11);
String_t* L_12;
L_12 = Enum_ToString_m4F8C0882A819B1D1E3286920D14CC649200F24A1((Enum_t23B90B40F60E677A8025267341651C94AE079CDA *)L_11, _stringLiteralD5D2875F228D651E1289522AEAAB8C492001C1BE, /*hidden argument*/NULL);
NullCheck(L_8);
ArrayElementTypeCheck (L_8, L_12);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_12);
String_t* L_13;
L_13 = UnityString_Format_m7A07C068ED408DD06F634070770FB55F13AA4EC9(_stringLiteralD06B515DEC71AED37A82FDDDBDE63F1D1DFE16C3, L_8, /*hidden argument*/NULL);
V_0 = L_13;
goto IL_004d;
}
IL_004d:
{
String_t* L_14 = V_0;
return L_14;
}
}
// System.Void UnityEngine.Networking.Match.DropConnectionRequest::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DropConnectionRequest__ctor_m5B721A711F6CBF239DFD8DD8F32D52F986B07932 (DropConnectionRequest_t0BADA55738E8857768EE57C92027957659C0E8D1 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Request_tA1BC1936C153408449C4C207CA12D4358A7477FD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Request_tA1BC1936C153408449C4C207CA12D4358A7477FD_il2cpp_TypeInfo_var);
Request__ctor_m810E8C9AB15C195E42B5D49B95CE805DA5568993(__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.String UnityEngine.Networking.Match.DropConnectionResponse::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DropConnectionResponse_ToString_m7126FAF790FF5E403C667EB25B0B392F1F7E4204 (DropConnectionResponse_tBAAA11B3A813A89B8D7C481BB80E24C1C94E1F31 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD5D2875F228D651E1289522AEAAB8C492001C1BE);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF7BFCB567D48E3E6782D1C51FD5DEDFBFCAB1C48);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = L_0;
String_t* L_2;
L_2 = Response_ToString_mE1871457C6916CD280D417857BBE8081EDE5865A(__this, /*hidden argument*/NULL);
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_2);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_2);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_3 = L_1;
uint64_t* L_4 = __this->get_address_of_networkId_2();
String_t* L_5;
L_5 = UInt64_ToString_mFE48F1D174A1F741AB0795C1164BF45BF37F86E6((uint64_t*)L_4, _stringLiteralD5D2875F228D651E1289522AEAAB8C492001C1BE, /*hidden argument*/NULL);
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_5);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_5);
String_t* L_6;
L_6 = UnityString_Format_m7A07C068ED408DD06F634070770FB55F13AA4EC9(_stringLiteralF7BFCB567D48E3E6782D1C51FD5DEDFBFCAB1C48, L_3, /*hidden argument*/NULL);
V_0 = L_6;
goto IL_0030;
}
IL_0030:
{
String_t* L_7 = V_0;
return L_7;
}
}
// System.Void UnityEngine.Networking.Match.DropConnectionResponse::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DropConnectionResponse__ctor_mE3C2F5D20F9E200981A61D5B657D0D85941C52A1 (DropConnectionResponse_tBAAA11B3A813A89B8D7C481BB80E24C1C94E1F31 * __this, const RuntimeMethod* method)
{
{
Response__ctor_m06ECAE7C56D0AAAE1271485B6C7C520049201C9E(__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 UnityEngine.Networking.GlobalConfig::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GlobalConfig__ctor_m866AAD8ED24D864385AD4E717249FCFDBC1C2888 (GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 * __this, const RuntimeMethod* method)
{
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
__this->set_m_ThreadAwakeTimeout_3(1);
__this->set_m_ReactorModel_4(0);
__this->set_m_ReactorMaximumReceivedMessages_5((uint16_t)((int32_t)1024));
__this->set_m_ReactorMaximumSentMessages_6((uint16_t)((int32_t)1024));
__this->set_m_MaxPacketSize_7((uint16_t)((int32_t)2000));
__this->set_m_MaxHosts_8((uint16_t)((int32_t)16));
__this->set_m_ThreadPoolSize_9((uint8_t)1);
__this->set_m_MinTimerTimeout_10(1);
__this->set_m_MaxTimerTimeout_11(((int32_t)12000));
__this->set_m_MinNetSimulatorTimeout_12(1);
__this->set_m_MaxNetSimulatorTimeout_13(((int32_t)12000));
__this->set_m_ConnectionReadyForSend_14((Action_2_tCC1DAEC9EBDBAB5891B0CF72C24B016C610EFF39 *)NULL);
__this->set_m_NetworkEventAvailable_15((Action_1_t080BA8EFA9616A494EBB4DD352BFEF943792E05B *)NULL);
return;
}
}
// System.UInt32 UnityEngine.Networking.GlobalConfig::get_ThreadAwakeTimeout()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t GlobalConfig_get_ThreadAwakeTimeout_mD0B48A1B07BA6851A019B0EF69BE4FBBDDBC7552 (GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 * __this, const RuntimeMethod* method)
{
uint32_t V_0 = 0;
{
uint32_t L_0 = __this->get_m_ThreadAwakeTimeout_3();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
uint32_t L_1 = V_0;
return L_1;
}
}
// System.Void UnityEngine.Networking.GlobalConfig::set_ThreadAwakeTimeout(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GlobalConfig_set_ThreadAwakeTimeout_m11AE6BA88859ED3F6FA86D986B2D42BE95ACB29E (GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 * __this, uint32_t ___value0, const RuntimeMethod* method)
{
bool V_0 = false;
{
uint32_t L_0 = ___value0;
V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_2 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var)));
ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral574EAFB007F2E7E398E934C28531F3E45502C792)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&GlobalConfig_set_ThreadAwakeTimeout_m11AE6BA88859ED3F6FA86D986B2D42BE95ACB29E_RuntimeMethod_var)));
}
IL_0014:
{
uint32_t L_3 = ___value0;
__this->set_m_ThreadAwakeTimeout_3(L_3);
return;
}
}
// UnityEngine.Networking.ReactorModel UnityEngine.Networking.GlobalConfig::get_ReactorModel()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GlobalConfig_get_ReactorModel_m17AC0B9C3BFE6A06D5ED6287840B318B07FD7963 (GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = __this->get_m_ReactorModel_4();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
int32_t L_1 = V_0;
return L_1;
}
}
// System.UInt16 UnityEngine.Networking.GlobalConfig::get_ReactorMaximumReceivedMessages()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t GlobalConfig_get_ReactorMaximumReceivedMessages_m587841C2DBAEA01D10B66F333CA376C3A61B6C33 (GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 * __this, const RuntimeMethod* method)
{
uint16_t V_0 = 0;
{
uint16_t L_0 = __this->get_m_ReactorMaximumReceivedMessages_5();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
uint16_t L_1 = V_0;
return L_1;
}
}
// System.UInt16 UnityEngine.Networking.GlobalConfig::get_ReactorMaximumSentMessages()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t GlobalConfig_get_ReactorMaximumSentMessages_m71E2AF5B8E8A777099B2FC9746F965935B95CD41 (GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 * __this, const RuntimeMethod* method)
{
uint16_t V_0 = 0;
{
uint16_t L_0 = __this->get_m_ReactorMaximumSentMessages_6();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
uint16_t L_1 = V_0;
return L_1;
}
}
// System.UInt16 UnityEngine.Networking.GlobalConfig::get_MaxPacketSize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t GlobalConfig_get_MaxPacketSize_mFC9F967F3D5F7BCA7AEF0CEA2A764FAC75884387 (GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 * __this, const RuntimeMethod* method)
{
uint16_t V_0 = 0;
{
uint16_t L_0 = __this->get_m_MaxPacketSize_7();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
uint16_t L_1 = V_0;
return L_1;
}
}
// System.UInt16 UnityEngine.Networking.GlobalConfig::get_MaxHosts()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t GlobalConfig_get_MaxHosts_m96B921B2164D801914BC596559B3373962DB4CC2 (GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 * __this, const RuntimeMethod* method)
{
uint16_t V_0 = 0;
{
uint16_t L_0 = __this->get_m_MaxHosts_8();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
uint16_t L_1 = V_0;
return L_1;
}
}
// System.Byte UnityEngine.Networking.GlobalConfig::get_ThreadPoolSize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t GlobalConfig_get_ThreadPoolSize_m3F884581529F6474406313B001354AA23885682C (GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 * __this, const RuntimeMethod* method)
{
uint8_t V_0 = 0x0;
{
uint8_t L_0 = __this->get_m_ThreadPoolSize_9();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
uint8_t L_1 = V_0;
return L_1;
}
}
// System.UInt32 UnityEngine.Networking.GlobalConfig::get_MinTimerTimeout()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t GlobalConfig_get_MinTimerTimeout_m108C611D76E95BDA013E819EF86BCF902F977A7B (GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 * __this, const RuntimeMethod* method)
{
uint32_t V_0 = 0;
{
uint32_t L_0 = __this->get_m_MinTimerTimeout_10();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
uint32_t L_1 = V_0;
return L_1;
}
}
// System.UInt32 UnityEngine.Networking.GlobalConfig::get_MaxTimerTimeout()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t GlobalConfig_get_MaxTimerTimeout_mCD5050AC59E0C337AA85E9C77EB33F8077649945 (GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 * __this, const RuntimeMethod* method)
{
uint32_t V_0 = 0;
{
uint32_t L_0 = __this->get_m_MaxTimerTimeout_11();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
uint32_t L_1 = V_0;
return L_1;
}
}
// System.UInt32 UnityEngine.Networking.GlobalConfig::get_MinNetSimulatorTimeout()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t GlobalConfig_get_MinNetSimulatorTimeout_m4C6BB9D0CAA455E0AE2EED89EC8D2DEAAC39D7F4 (GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 * __this, const RuntimeMethod* method)
{
uint32_t V_0 = 0;
{
uint32_t L_0 = __this->get_m_MinNetSimulatorTimeout_12();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
uint32_t L_1 = V_0;
return L_1;
}
}
// System.UInt32 UnityEngine.Networking.GlobalConfig::get_MaxNetSimulatorTimeout()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t GlobalConfig_get_MaxNetSimulatorTimeout_mD86F57F2E32CB417D44272936D24A04D35C0FE1E (GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 * __this, const RuntimeMethod* method)
{
uint32_t V_0 = 0;
{
uint32_t L_0 = __this->get_m_MaxNetSimulatorTimeout_13();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
uint32_t L_1 = V_0;
return L_1;
}
}
// System.Action`1<System.Int32> UnityEngine.Networking.GlobalConfig::get_NetworkEventAvailable()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Action_1_t080BA8EFA9616A494EBB4DD352BFEF943792E05B * GlobalConfig_get_NetworkEventAvailable_m6D648DA928B1C86504ED603F268A3036FBDB457E (GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 * __this, const RuntimeMethod* method)
{
Action_1_t080BA8EFA9616A494EBB4DD352BFEF943792E05B * V_0 = NULL;
{
Action_1_t080BA8EFA9616A494EBB4DD352BFEF943792E05B * L_0 = __this->get_m_NetworkEventAvailable_15();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
Action_1_t080BA8EFA9616A494EBB4DD352BFEF943792E05B * L_1 = V_0;
return L_1;
}
}
// System.Action`2<System.Int32,System.Int32> UnityEngine.Networking.GlobalConfig::get_ConnectionReadyForSend()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Action_2_tCC1DAEC9EBDBAB5891B0CF72C24B016C610EFF39 * GlobalConfig_get_ConnectionReadyForSend_m8F88B2A0D0C17D7A9800470C377CF827694F3EE6 (GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 * __this, const RuntimeMethod* method)
{
Action_2_tCC1DAEC9EBDBAB5891B0CF72C24B016C610EFF39 * V_0 = NULL;
{
Action_2_tCC1DAEC9EBDBAB5891B0CF72C24B016C610EFF39 * L_0 = __this->get_m_ConnectionReadyForSend_14();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
Action_2_tCC1DAEC9EBDBAB5891B0CF72C24B016C610EFF39 * L_1 = V_0;
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 UnityEngine.Networking.GlobalConfigInternal::.ctor(UnityEngine.Networking.GlobalConfig)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GlobalConfigInternal__ctor_m9D3BDDFE489512D1B72565B516638C76564AAA68 (GlobalConfigInternal_t0F07F384FD03D7CE842BC781D7C747B5579F680F * __this, GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 * ___config0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral85680EDBC3A789EE54201869637026FD805F2948);
s_Il2CppMethodInitialized = true;
}
uint8_t V_0 = 0x0;
bool V_1 = false;
bool V_2 = false;
bool V_3 = false;
int32_t G_B5_0 = 0;
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 * L_0 = ___config0;
V_1 = (bool)((((RuntimeObject*)(GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 *)L_0) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_1 = V_1;
if (!L_1)
{
goto IL_001b;
}
}
{
NullReferenceException_t44B4F3CDE3111E74591952B8BE8707B28866D724 * L_2 = (NullReferenceException_t44B4F3CDE3111E74591952B8BE8707B28866D724 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NullReferenceException_t44B4F3CDE3111E74591952B8BE8707B28866D724_il2cpp_TypeInfo_var)));
NullReferenceException__ctor_mF1733893E10358B400E817297D686A48AB3FB7B3(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral317EE74AF038EFA1EFB835A1A142AD358C5939C3)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&GlobalConfigInternal__ctor_m9D3BDDFE489512D1B72565B516638C76564AAA68_RuntimeMethod_var)));
}
IL_001b:
{
intptr_t L_3;
L_3 = GlobalConfigInternal_InternalCreate_m68D5446714022799455D7C09C48BF18DC0EDEC90(/*hidden argument*/NULL);
__this->set_m_Ptr_0((intptr_t)L_3);
GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 * L_4 = ___config0;
NullCheck(L_4);
uint32_t L_5;
L_5 = GlobalConfig_get_ThreadAwakeTimeout_mD0B48A1B07BA6851A019B0EF69BE4FBBDDBC7552(L_4, /*hidden argument*/NULL);
GlobalConfigInternal_set_ThreadAwakeTimeout_mE59BEC296BB2878EC5DBB317ADCA406852E49FCE(__this, L_5, /*hidden argument*/NULL);
GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 * L_6 = ___config0;
NullCheck(L_6);
int32_t L_7;
L_7 = GlobalConfig_get_ReactorModel_m17AC0B9C3BFE6A06D5ED6287840B318B07FD7963(L_6, /*hidden argument*/NULL);
GlobalConfigInternal_set_ReactorModel_m370F4A7B85736E2A9A92760B8491B019E9309A8D(__this, (uint8_t)((int32_t)((uint8_t)L_7)), /*hidden argument*/NULL);
GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 * L_8 = ___config0;
NullCheck(L_8);
uint16_t L_9;
L_9 = GlobalConfig_get_ReactorMaximumReceivedMessages_m587841C2DBAEA01D10B66F333CA376C3A61B6C33(L_8, /*hidden argument*/NULL);
GlobalConfigInternal_set_ReactorMaximumReceivedMessages_mF4B7494442A14194F16E04F41373E9CA2B7CC620(__this, L_9, /*hidden argument*/NULL);
GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 * L_10 = ___config0;
NullCheck(L_10);
uint16_t L_11;
L_11 = GlobalConfig_get_ReactorMaximumSentMessages_m71E2AF5B8E8A777099B2FC9746F965935B95CD41(L_10, /*hidden argument*/NULL);
GlobalConfigInternal_set_ReactorMaximumSentMessages_m0869AE8CD72F55DDB159F32E1730B4C07B28C6CE(__this, L_11, /*hidden argument*/NULL);
GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 * L_12 = ___config0;
NullCheck(L_12);
uint16_t L_13;
L_13 = GlobalConfig_get_MaxPacketSize_mFC9F967F3D5F7BCA7AEF0CEA2A764FAC75884387(L_12, /*hidden argument*/NULL);
GlobalConfigInternal_set_MaxPacketSize_m8C6143A73542A29FE2E2A299CC03BB1081C62D02(__this, L_13, /*hidden argument*/NULL);
GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 * L_14 = ___config0;
NullCheck(L_14);
uint16_t L_15;
L_15 = GlobalConfig_get_MaxHosts_m96B921B2164D801914BC596559B3373962DB4CC2(L_14, /*hidden argument*/NULL);
GlobalConfigInternal_set_MaxHosts_m6E4D5FA13061E1D5BB12BAE76C2DE4CE1A48FA99(__this, L_15, /*hidden argument*/NULL);
GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 * L_16 = ___config0;
NullCheck(L_16);
uint8_t L_17;
L_17 = GlobalConfig_get_ThreadPoolSize_m3F884581529F6474406313B001354AA23885682C(L_16, /*hidden argument*/NULL);
if (!L_17)
{
goto IL_008c;
}
}
{
GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 * L_18 = ___config0;
NullCheck(L_18);
uint8_t L_19;
L_19 = GlobalConfig_get_ThreadPoolSize_m3F884581529F6474406313B001354AA23885682C(L_18, /*hidden argument*/NULL);
G_B5_0 = ((((int32_t)L_19) > ((int32_t)((int32_t)254)))? 1 : 0);
goto IL_008d;
}
IL_008c:
{
G_B5_0 = 1;
}
IL_008d:
{
V_2 = (bool)G_B5_0;
bool L_20 = V_2;
if (!L_20)
{
goto IL_009c;
}
}
{
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_21 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var)));
ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_21, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral087D31DBCB0C14AB130B18593F0AAF5E885A1617)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&GlobalConfigInternal__ctor_m9D3BDDFE489512D1B72565B516638C76564AAA68_RuntimeMethod_var)));
}
IL_009c:
{
GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 * L_22 = ___config0;
NullCheck(L_22);
uint8_t L_23;
L_23 = GlobalConfig_get_ThreadPoolSize_m3F884581529F6474406313B001354AA23885682C(L_22, /*hidden argument*/NULL);
V_0 = L_23;
GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 * L_24 = ___config0;
NullCheck(L_24);
uint8_t L_25;
L_25 = GlobalConfig_get_ThreadPoolSize_m3F884581529F6474406313B001354AA23885682C(L_24, /*hidden argument*/NULL);
V_3 = (bool)((((int32_t)L_25) > ((int32_t)1))? 1 : 0);
bool L_26 = V_3;
if (!L_26)
{
goto IL_00bf;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var);
Debug_LogWarning_m24085D883C9E74D7AB423F0625E13259923960E7(_stringLiteral85680EDBC3A789EE54201869637026FD805F2948, /*hidden argument*/NULL);
V_0 = (uint8_t)1;
}
IL_00bf:
{
uint8_t L_27 = V_0;
GlobalConfigInternal_set_ThreadPoolSize_mA30F9BEAE6BBE337D7AA5CF85F22DE65A1AAB641(__this, L_27, /*hidden argument*/NULL);
GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 * L_28 = ___config0;
NullCheck(L_28);
uint32_t L_29;
L_29 = GlobalConfig_get_MinTimerTimeout_m108C611D76E95BDA013E819EF86BCF902F977A7B(L_28, /*hidden argument*/NULL);
GlobalConfigInternal_set_MinTimerTimeout_m2330A74449E798E17D30A685CC9AF0FDBAED53E1(__this, L_29, /*hidden argument*/NULL);
GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 * L_30 = ___config0;
NullCheck(L_30);
uint32_t L_31;
L_31 = GlobalConfig_get_MaxTimerTimeout_mCD5050AC59E0C337AA85E9C77EB33F8077649945(L_30, /*hidden argument*/NULL);
GlobalConfigInternal_set_MaxTimerTimeout_mED89AE4816D8B7B39183849289738DF641C242CF(__this, L_31, /*hidden argument*/NULL);
GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 * L_32 = ___config0;
NullCheck(L_32);
uint32_t L_33;
L_33 = GlobalConfig_get_MinNetSimulatorTimeout_m4C6BB9D0CAA455E0AE2EED89EC8D2DEAAC39D7F4(L_32, /*hidden argument*/NULL);
GlobalConfigInternal_set_MinNetSimulatorTimeout_m54488C6614ED2EF9FFAB902757CC3CFE895E9834(__this, L_33, /*hidden argument*/NULL);
GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 * L_34 = ___config0;
NullCheck(L_34);
uint32_t L_35;
L_35 = GlobalConfig_get_MaxNetSimulatorTimeout_mD86F57F2E32CB417D44272936D24A04D35C0FE1E(L_34, /*hidden argument*/NULL);
GlobalConfigInternal_set_MaxNetSimulatorTimeout_m247688A48376F7FA4B9551DC3292FBD05309989D(__this, L_35, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Networking.GlobalConfigInternal::Dispose(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GlobalConfigInternal_Dispose_m52DC0B3749B578FB9D4F63E79820FA7AAC3DDA53 (GlobalConfigInternal_t0F07F384FD03D7CE842BC781D7C747B5579F680F * __this, bool ___disposing0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
intptr_t L_0 = __this->get_m_Ptr_0();
bool L_1;
L_1 = IntPtr_op_Inequality_m212AF0E66AA81FEDC982B1C8A44ADDA24B995EB8((intptr_t)L_0, (intptr_t)(0), /*hidden argument*/NULL);
V_0 = L_1;
bool L_2 = V_0;
if (!L_2)
{
goto IL_002e;
}
}
{
intptr_t L_3 = __this->get_m_Ptr_0();
GlobalConfigInternal_InternalDestroy_m82C15BED6D4EB877B4702894F1C07780AFD65B68((intptr_t)L_3, /*hidden argument*/NULL);
__this->set_m_Ptr_0((intptr_t)(0));
}
IL_002e:
{
return;
}
}
// System.Void UnityEngine.Networking.GlobalConfigInternal::Finalize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GlobalConfigInternal_Finalize_mFFA149D255A46213D5CBCD1745EBC147B3A89330 (GlobalConfigInternal_t0F07F384FD03D7CE842BC781D7C747B5579F680F * __this, const RuntimeMethod* method)
{
Exception_t * __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
{
}
IL_0001:
try
{ // begin try (depth: 1)
VirtActionInvoker1< bool >::Invoke(5 /* System.Void UnityEngine.Networking.GlobalConfigInternal::Dispose(System.Boolean) */, __this, (bool)0);
IL2CPP_LEAVE(0x14, FINALLY_000c);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_000c;
}
FINALLY_000c:
{ // begin finally (depth: 1)
Object_Finalize_mC59C83CF4F7707E425FFA6362931C25D4C36676A(__this, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(12)
} // end finally (depth: 1)
IL2CPP_CLEANUP(12)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x14, IL_0014)
}
IL_0014:
{
return;
}
}
// System.Void UnityEngine.Networking.GlobalConfigInternal::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GlobalConfigInternal_Dispose_m8211C847457CFF6475989864B152A6F7B458D6D6 (GlobalConfigInternal_t0F07F384FD03D7CE842BC781D7C747B5579F680F * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
intptr_t L_0 = __this->get_m_Ptr_0();
bool L_1;
L_1 = IntPtr_op_Inequality_m212AF0E66AA81FEDC982B1C8A44ADDA24B995EB8((intptr_t)L_0, (intptr_t)(0), /*hidden argument*/NULL);
V_0 = L_1;
bool L_2 = V_0;
if (!L_2)
{
goto IL_002e;
}
}
{
intptr_t L_3 = __this->get_m_Ptr_0();
GlobalConfigInternal_InternalDestroy_m82C15BED6D4EB877B4702894F1C07780AFD65B68((intptr_t)L_3, /*hidden argument*/NULL);
__this->set_m_Ptr_0((intptr_t)(0));
}
IL_002e:
{
return;
}
}
// System.IntPtr UnityEngine.Networking.GlobalConfigInternal::InternalCreate()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t GlobalConfigInternal_InternalCreate_m68D5446714022799455D7C09C48BF18DC0EDEC90 (const RuntimeMethod* method)
{
typedef intptr_t (*GlobalConfigInternal_InternalCreate_m68D5446714022799455D7C09C48BF18DC0EDEC90_ftn) ();
static GlobalConfigInternal_InternalCreate_m68D5446714022799455D7C09C48BF18DC0EDEC90_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (GlobalConfigInternal_InternalCreate_m68D5446714022799455D7C09C48BF18DC0EDEC90_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.GlobalConfigInternal::InternalCreate()");
intptr_t icallRetVal = _il2cpp_icall_func();
return icallRetVal;
}
// System.Void UnityEngine.Networking.GlobalConfigInternal::InternalDestroy(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GlobalConfigInternal_InternalDestroy_m82C15BED6D4EB877B4702894F1C07780AFD65B68 (intptr_t ___ptr0, const RuntimeMethod* method)
{
typedef void (*GlobalConfigInternal_InternalDestroy_m82C15BED6D4EB877B4702894F1C07780AFD65B68_ftn) (intptr_t);
static GlobalConfigInternal_InternalDestroy_m82C15BED6D4EB877B4702894F1C07780AFD65B68_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (GlobalConfigInternal_InternalDestroy_m82C15BED6D4EB877B4702894F1C07780AFD65B68_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.GlobalConfigInternal::InternalDestroy(System.IntPtr)");
_il2cpp_icall_func(___ptr0);
}
// System.Void UnityEngine.Networking.GlobalConfigInternal::set_ThreadAwakeTimeout(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GlobalConfigInternal_set_ThreadAwakeTimeout_mE59BEC296BB2878EC5DBB317ADCA406852E49FCE (GlobalConfigInternal_t0F07F384FD03D7CE842BC781D7C747B5579F680F * __this, uint32_t ___value0, const RuntimeMethod* method)
{
typedef void (*GlobalConfigInternal_set_ThreadAwakeTimeout_mE59BEC296BB2878EC5DBB317ADCA406852E49FCE_ftn) (GlobalConfigInternal_t0F07F384FD03D7CE842BC781D7C747B5579F680F *, uint32_t);
static GlobalConfigInternal_set_ThreadAwakeTimeout_mE59BEC296BB2878EC5DBB317ADCA406852E49FCE_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (GlobalConfigInternal_set_ThreadAwakeTimeout_mE59BEC296BB2878EC5DBB317ADCA406852E49FCE_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.GlobalConfigInternal::set_ThreadAwakeTimeout(System.UInt32)");
_il2cpp_icall_func(__this, ___value0);
}
// System.Void UnityEngine.Networking.GlobalConfigInternal::set_ReactorModel(System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GlobalConfigInternal_set_ReactorModel_m370F4A7B85736E2A9A92760B8491B019E9309A8D (GlobalConfigInternal_t0F07F384FD03D7CE842BC781D7C747B5579F680F * __this, uint8_t ___value0, const RuntimeMethod* method)
{
typedef void (*GlobalConfigInternal_set_ReactorModel_m370F4A7B85736E2A9A92760B8491B019E9309A8D_ftn) (GlobalConfigInternal_t0F07F384FD03D7CE842BC781D7C747B5579F680F *, uint8_t);
static GlobalConfigInternal_set_ReactorModel_m370F4A7B85736E2A9A92760B8491B019E9309A8D_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (GlobalConfigInternal_set_ReactorModel_m370F4A7B85736E2A9A92760B8491B019E9309A8D_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.GlobalConfigInternal::set_ReactorModel(System.Byte)");
_il2cpp_icall_func(__this, ___value0);
}
// System.Void UnityEngine.Networking.GlobalConfigInternal::set_ReactorMaximumReceivedMessages(System.UInt16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GlobalConfigInternal_set_ReactorMaximumReceivedMessages_mF4B7494442A14194F16E04F41373E9CA2B7CC620 (GlobalConfigInternal_t0F07F384FD03D7CE842BC781D7C747B5579F680F * __this, uint16_t ___value0, const RuntimeMethod* method)
{
typedef void (*GlobalConfigInternal_set_ReactorMaximumReceivedMessages_mF4B7494442A14194F16E04F41373E9CA2B7CC620_ftn) (GlobalConfigInternal_t0F07F384FD03D7CE842BC781D7C747B5579F680F *, uint16_t);
static GlobalConfigInternal_set_ReactorMaximumReceivedMessages_mF4B7494442A14194F16E04F41373E9CA2B7CC620_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (GlobalConfigInternal_set_ReactorMaximumReceivedMessages_mF4B7494442A14194F16E04F41373E9CA2B7CC620_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.GlobalConfigInternal::set_ReactorMaximumReceivedMessages(System.UInt16)");
_il2cpp_icall_func(__this, ___value0);
}
// System.Void UnityEngine.Networking.GlobalConfigInternal::set_ReactorMaximumSentMessages(System.UInt16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GlobalConfigInternal_set_ReactorMaximumSentMessages_m0869AE8CD72F55DDB159F32E1730B4C07B28C6CE (GlobalConfigInternal_t0F07F384FD03D7CE842BC781D7C747B5579F680F * __this, uint16_t ___value0, const RuntimeMethod* method)
{
typedef void (*GlobalConfigInternal_set_ReactorMaximumSentMessages_m0869AE8CD72F55DDB159F32E1730B4C07B28C6CE_ftn) (GlobalConfigInternal_t0F07F384FD03D7CE842BC781D7C747B5579F680F *, uint16_t);
static GlobalConfigInternal_set_ReactorMaximumSentMessages_m0869AE8CD72F55DDB159F32E1730B4C07B28C6CE_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (GlobalConfigInternal_set_ReactorMaximumSentMessages_m0869AE8CD72F55DDB159F32E1730B4C07B28C6CE_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.GlobalConfigInternal::set_ReactorMaximumSentMessages(System.UInt16)");
_il2cpp_icall_func(__this, ___value0);
}
// System.Void UnityEngine.Networking.GlobalConfigInternal::set_MaxPacketSize(System.UInt16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GlobalConfigInternal_set_MaxPacketSize_m8C6143A73542A29FE2E2A299CC03BB1081C62D02 (GlobalConfigInternal_t0F07F384FD03D7CE842BC781D7C747B5579F680F * __this, uint16_t ___value0, const RuntimeMethod* method)
{
typedef void (*GlobalConfigInternal_set_MaxPacketSize_m8C6143A73542A29FE2E2A299CC03BB1081C62D02_ftn) (GlobalConfigInternal_t0F07F384FD03D7CE842BC781D7C747B5579F680F *, uint16_t);
static GlobalConfigInternal_set_MaxPacketSize_m8C6143A73542A29FE2E2A299CC03BB1081C62D02_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (GlobalConfigInternal_set_MaxPacketSize_m8C6143A73542A29FE2E2A299CC03BB1081C62D02_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.GlobalConfigInternal::set_MaxPacketSize(System.UInt16)");
_il2cpp_icall_func(__this, ___value0);
}
// System.Void UnityEngine.Networking.GlobalConfigInternal::set_MaxHosts(System.UInt16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GlobalConfigInternal_set_MaxHosts_m6E4D5FA13061E1D5BB12BAE76C2DE4CE1A48FA99 (GlobalConfigInternal_t0F07F384FD03D7CE842BC781D7C747B5579F680F * __this, uint16_t ___value0, const RuntimeMethod* method)
{
typedef void (*GlobalConfigInternal_set_MaxHosts_m6E4D5FA13061E1D5BB12BAE76C2DE4CE1A48FA99_ftn) (GlobalConfigInternal_t0F07F384FD03D7CE842BC781D7C747B5579F680F *, uint16_t);
static GlobalConfigInternal_set_MaxHosts_m6E4D5FA13061E1D5BB12BAE76C2DE4CE1A48FA99_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (GlobalConfigInternal_set_MaxHosts_m6E4D5FA13061E1D5BB12BAE76C2DE4CE1A48FA99_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.GlobalConfigInternal::set_MaxHosts(System.UInt16)");
_il2cpp_icall_func(__this, ___value0);
}
// System.Void UnityEngine.Networking.GlobalConfigInternal::set_ThreadPoolSize(System.Byte)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GlobalConfigInternal_set_ThreadPoolSize_mA30F9BEAE6BBE337D7AA5CF85F22DE65A1AAB641 (GlobalConfigInternal_t0F07F384FD03D7CE842BC781D7C747B5579F680F * __this, uint8_t ___value0, const RuntimeMethod* method)
{
typedef void (*GlobalConfigInternal_set_ThreadPoolSize_mA30F9BEAE6BBE337D7AA5CF85F22DE65A1AAB641_ftn) (GlobalConfigInternal_t0F07F384FD03D7CE842BC781D7C747B5579F680F *, uint8_t);
static GlobalConfigInternal_set_ThreadPoolSize_mA30F9BEAE6BBE337D7AA5CF85F22DE65A1AAB641_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (GlobalConfigInternal_set_ThreadPoolSize_mA30F9BEAE6BBE337D7AA5CF85F22DE65A1AAB641_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.GlobalConfigInternal::set_ThreadPoolSize(System.Byte)");
_il2cpp_icall_func(__this, ___value0);
}
// System.Void UnityEngine.Networking.GlobalConfigInternal::set_MinTimerTimeout(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GlobalConfigInternal_set_MinTimerTimeout_m2330A74449E798E17D30A685CC9AF0FDBAED53E1 (GlobalConfigInternal_t0F07F384FD03D7CE842BC781D7C747B5579F680F * __this, uint32_t ___value0, const RuntimeMethod* method)
{
typedef void (*GlobalConfigInternal_set_MinTimerTimeout_m2330A74449E798E17D30A685CC9AF0FDBAED53E1_ftn) (GlobalConfigInternal_t0F07F384FD03D7CE842BC781D7C747B5579F680F *, uint32_t);
static GlobalConfigInternal_set_MinTimerTimeout_m2330A74449E798E17D30A685CC9AF0FDBAED53E1_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (GlobalConfigInternal_set_MinTimerTimeout_m2330A74449E798E17D30A685CC9AF0FDBAED53E1_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.GlobalConfigInternal::set_MinTimerTimeout(System.UInt32)");
_il2cpp_icall_func(__this, ___value0);
}
// System.Void UnityEngine.Networking.GlobalConfigInternal::set_MaxTimerTimeout(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GlobalConfigInternal_set_MaxTimerTimeout_mED89AE4816D8B7B39183849289738DF641C242CF (GlobalConfigInternal_t0F07F384FD03D7CE842BC781D7C747B5579F680F * __this, uint32_t ___value0, const RuntimeMethod* method)
{
typedef void (*GlobalConfigInternal_set_MaxTimerTimeout_mED89AE4816D8B7B39183849289738DF641C242CF_ftn) (GlobalConfigInternal_t0F07F384FD03D7CE842BC781D7C747B5579F680F *, uint32_t);
static GlobalConfigInternal_set_MaxTimerTimeout_mED89AE4816D8B7B39183849289738DF641C242CF_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (GlobalConfigInternal_set_MaxTimerTimeout_mED89AE4816D8B7B39183849289738DF641C242CF_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.GlobalConfigInternal::set_MaxTimerTimeout(System.UInt32)");
_il2cpp_icall_func(__this, ___value0);
}
// System.Void UnityEngine.Networking.GlobalConfigInternal::set_MinNetSimulatorTimeout(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GlobalConfigInternal_set_MinNetSimulatorTimeout_m54488C6614ED2EF9FFAB902757CC3CFE895E9834 (GlobalConfigInternal_t0F07F384FD03D7CE842BC781D7C747B5579F680F * __this, uint32_t ___value0, const RuntimeMethod* method)
{
typedef void (*GlobalConfigInternal_set_MinNetSimulatorTimeout_m54488C6614ED2EF9FFAB902757CC3CFE895E9834_ftn) (GlobalConfigInternal_t0F07F384FD03D7CE842BC781D7C747B5579F680F *, uint32_t);
static GlobalConfigInternal_set_MinNetSimulatorTimeout_m54488C6614ED2EF9FFAB902757CC3CFE895E9834_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (GlobalConfigInternal_set_MinNetSimulatorTimeout_m54488C6614ED2EF9FFAB902757CC3CFE895E9834_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.GlobalConfigInternal::set_MinNetSimulatorTimeout(System.UInt32)");
_il2cpp_icall_func(__this, ___value0);
}
// System.Void UnityEngine.Networking.GlobalConfigInternal::set_MaxNetSimulatorTimeout(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GlobalConfigInternal_set_MaxNetSimulatorTimeout_m247688A48376F7FA4B9551DC3292FBD05309989D (GlobalConfigInternal_t0F07F384FD03D7CE842BC781D7C747B5579F680F * __this, uint32_t ___value0, const RuntimeMethod* method)
{
typedef void (*GlobalConfigInternal_set_MaxNetSimulatorTimeout_m247688A48376F7FA4B9551DC3292FBD05309989D_ftn) (GlobalConfigInternal_t0F07F384FD03D7CE842BC781D7C747B5579F680F *, uint32_t);
static GlobalConfigInternal_set_MaxNetSimulatorTimeout_m247688A48376F7FA4B9551DC3292FBD05309989D_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (GlobalConfigInternal_set_MaxNetSimulatorTimeout_m247688A48376F7FA4B9551DC3292FBD05309989D_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.GlobalConfigInternal::set_MaxNetSimulatorTimeout(System.UInt32)");
_il2cpp_icall_func(__this, ___value0);
}
#ifdef __clang__
#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 UnityEngine.Networking.HostTopology::.ctor(UnityEngine.Networking.ConnectionConfig,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HostTopology__ctor_m402906F2EFF083571541B3EDED1729CA3FDB6244 (HostTopology_t268779309BB2D69F29D1A182662C79818813892B * __this, ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * ___defaultConfig0, int32_t ___maxDefaultConnections1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m1F4A4C6B76603E6A2DA8067FDC73F87532587024_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t46489AA4DB932B33C96BA58827F21F14C831C2DE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
bool V_2 = false;
{
__this->set_m_DefConfig_0((ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A *)NULL);
__this->set_m_MaxDefConnections_1(0);
List_1_t46489AA4DB932B33C96BA58827F21F14C831C2DE * L_0 = (List_1_t46489AA4DB932B33C96BA58827F21F14C831C2DE *)il2cpp_codegen_object_new(List_1_t46489AA4DB932B33C96BA58827F21F14C831C2DE_il2cpp_TypeInfo_var);
List_1__ctor_m1F4A4C6B76603E6A2DA8067FDC73F87532587024(L_0, /*hidden argument*/List_1__ctor_m1F4A4C6B76603E6A2DA8067FDC73F87532587024_RuntimeMethod_var);
__this->set_m_SpecialConnections_2(L_0);
__this->set_m_ReceivedMessagePoolSize_3((uint16_t)((int32_t)1024));
__this->set_m_SentMessagePoolSize_4((uint16_t)((int32_t)1024));
__this->set_m_MessagePoolSizeGrowthFactor_5((0.75f));
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_1 = ___defaultConfig0;
V_0 = (bool)((((RuntimeObject*)(ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A *)L_1) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_2 = V_0;
if (!L_2)
{
goto IL_0055;
}
}
{
NullReferenceException_t44B4F3CDE3111E74591952B8BE8707B28866D724 * L_3 = (NullReferenceException_t44B4F3CDE3111E74591952B8BE8707B28866D724 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NullReferenceException_t44B4F3CDE3111E74591952B8BE8707B28866D724_il2cpp_TypeInfo_var)));
NullReferenceException__ctor_mF1733893E10358B400E817297D686A48AB3FB7B3(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral317EE74AF038EFA1EFB835A1A142AD358C5939C3)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&HostTopology__ctor_m402906F2EFF083571541B3EDED1729CA3FDB6244_RuntimeMethod_var)));
}
IL_0055:
{
int32_t L_4 = ___maxDefaultConnections1;
V_1 = (bool)((((int32_t)((((int32_t)L_4) > ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_5 = V_1;
if (!L_5)
{
goto IL_0070;
}
}
{
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_6 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var)));
ArgumentOutOfRangeException__ctor_mE43AFC74F5F3932913C023A04B24905E093C5005(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9CB64D4DAF8CDF7B5A2130FCCDD62ECE720AFE8E)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral572189F4EA97569D6C0D3A4A68C98F20D9FC95A5)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&HostTopology__ctor_m402906F2EFF083571541B3EDED1729CA3FDB6244_RuntimeMethod_var)));
}
IL_0070:
{
int32_t L_7 = ___maxDefaultConnections1;
V_2 = (bool)((((int32_t)((((int32_t)L_7) < ((int32_t)((int32_t)65535)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_8 = V_2;
if (!L_8)
{
goto IL_008f;
}
}
{
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_9 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var)));
ArgumentOutOfRangeException__ctor_mE43AFC74F5F3932913C023A04B24905E093C5005(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9CB64D4DAF8CDF7B5A2130FCCDD62ECE720AFE8E)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC94B47F32002FEDF4A271879FE7A0BC4157B2A6F)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&HostTopology__ctor_m402906F2EFF083571541B3EDED1729CA3FDB6244_RuntimeMethod_var)));
}
IL_008f:
{
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_10 = ___defaultConfig0;
ConnectionConfig_Validate_m84787B66F366FDC5EF3D074316F7041E84AA735F(L_10, /*hidden argument*/NULL);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_11 = ___defaultConfig0;
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_12 = (ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A *)il2cpp_codegen_object_new(ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A_il2cpp_TypeInfo_var);
ConnectionConfig__ctor_m1976654A083CE2C1858BECF7EED65005BFC16343(L_12, L_11, /*hidden argument*/NULL);
__this->set_m_DefConfig_0(L_12);
int32_t L_13 = ___maxDefaultConnections1;
__this->set_m_MaxDefConnections_1(L_13);
return;
}
}
// System.Void UnityEngine.Networking.HostTopology::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HostTopology__ctor_mA0D7BC0F1CC6956ABFBDAC61941B38E75B00D87D (HostTopology_t268779309BB2D69F29D1A182662C79818813892B * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m1F4A4C6B76603E6A2DA8067FDC73F87532587024_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t46489AA4DB932B33C96BA58827F21F14C831C2DE_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
__this->set_m_DefConfig_0((ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A *)NULL);
__this->set_m_MaxDefConnections_1(0);
List_1_t46489AA4DB932B33C96BA58827F21F14C831C2DE * L_0 = (List_1_t46489AA4DB932B33C96BA58827F21F14C831C2DE *)il2cpp_codegen_object_new(List_1_t46489AA4DB932B33C96BA58827F21F14C831C2DE_il2cpp_TypeInfo_var);
List_1__ctor_m1F4A4C6B76603E6A2DA8067FDC73F87532587024(L_0, /*hidden argument*/List_1__ctor_m1F4A4C6B76603E6A2DA8067FDC73F87532587024_RuntimeMethod_var);
__this->set_m_SpecialConnections_2(L_0);
__this->set_m_ReceivedMessagePoolSize_3((uint16_t)((int32_t)1024));
__this->set_m_SentMessagePoolSize_4((uint16_t)((int32_t)1024));
__this->set_m_MessagePoolSizeGrowthFactor_5((0.75f));
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
return;
}
}
// UnityEngine.Networking.ConnectionConfig UnityEngine.Networking.HostTopology::get_DefaultConfig()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * HostTopology_get_DefaultConfig_m0E4C32CC256D7C901C1C91C86B38F33EBD03A0E3 (HostTopology_t268779309BB2D69F29D1A182662C79818813892B * __this, const RuntimeMethod* method)
{
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * V_0 = NULL;
{
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_0 = __this->get_m_DefConfig_0();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_1 = V_0;
return L_1;
}
}
// System.Int32 UnityEngine.Networking.HostTopology::get_MaxDefaultConnections()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HostTopology_get_MaxDefaultConnections_mBED404D3C504A13C5302198D237E509B664CFEAD (HostTopology_t268779309BB2D69F29D1A182662C79818813892B * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = __this->get_m_MaxDefConnections_1();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
int32_t L_1 = V_0;
return L_1;
}
}
// System.Int32 UnityEngine.Networking.HostTopology::get_SpecialConnectionConfigsCount()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HostTopology_get_SpecialConnectionConfigsCount_m34BCBF16F6499FF007E37C3C3657B1BAE8E8522C (HostTopology_t268779309BB2D69F29D1A182662C79818813892B * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m2C0EC005D5C06E5F178A8FB94D48DA905506D907_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
List_1_t46489AA4DB932B33C96BA58827F21F14C831C2DE * L_0 = __this->get_m_SpecialConnections_2();
NullCheck(L_0);
int32_t L_1;
L_1 = List_1_get_Count_m2C0EC005D5C06E5F178A8FB94D48DA905506D907_inline(L_0, /*hidden argument*/List_1_get_Count_m2C0EC005D5C06E5F178A8FB94D48DA905506D907_RuntimeMethod_var);
V_0 = L_1;
goto IL_000f;
}
IL_000f:
{
int32_t L_2 = V_0;
return L_2;
}
}
// System.Collections.Generic.List`1<UnityEngine.Networking.ConnectionConfig> UnityEngine.Networking.HostTopology::get_SpecialConnectionConfigs()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t46489AA4DB932B33C96BA58827F21F14C831C2DE * HostTopology_get_SpecialConnectionConfigs_m6FA6CF1CD59EBC0DBBB9454048EDDACE322C029C (HostTopology_t268779309BB2D69F29D1A182662C79818813892B * __this, const RuntimeMethod* method)
{
List_1_t46489AA4DB932B33C96BA58827F21F14C831C2DE * V_0 = NULL;
{
List_1_t46489AA4DB932B33C96BA58827F21F14C831C2DE * L_0 = __this->get_m_SpecialConnections_2();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
List_1_t46489AA4DB932B33C96BA58827F21F14C831C2DE * L_1 = V_0;
return L_1;
}
}
// UnityEngine.Networking.ConnectionConfig UnityEngine.Networking.HostTopology::GetSpecialConnectionConfig(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * HostTopology_GetSpecialConnectionConfig_m52EB0C01DBCEFABCCA2999BA5AA4FC5200049BC1 (HostTopology_t268779309BB2D69F29D1A182662C79818813892B * __this, int32_t ___i0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m2C0EC005D5C06E5F178A8FB94D48DA905506D907_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mA887125ECBEEA92DEE8520B227EFE1CBF3FB6434_RuntimeMethod_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * V_1 = NULL;
int32_t G_B3_0 = 0;
{
int32_t L_0 = ___i0;
List_1_t46489AA4DB932B33C96BA58827F21F14C831C2DE * L_1 = __this->get_m_SpecialConnections_2();
NullCheck(L_1);
int32_t L_2;
L_2 = List_1_get_Count_m2C0EC005D5C06E5F178A8FB94D48DA905506D907_inline(L_1, /*hidden argument*/List_1_get_Count_m2C0EC005D5C06E5F178A8FB94D48DA905506D907_RuntimeMethod_var);
if ((((int32_t)L_0) > ((int32_t)L_2)))
{
goto IL_0015;
}
}
{
int32_t L_3 = ___i0;
G_B3_0 = ((((int32_t)L_3) == ((int32_t)0))? 1 : 0);
goto IL_0016;
}
IL_0015:
{
G_B3_0 = 1;
}
IL_0016:
{
V_0 = (bool)G_B3_0;
bool L_4 = V_0;
if (!L_4)
{
goto IL_0025;
}
}
{
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_5 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)));
ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8A4CACA68D0889BCC0B193D3EB8B384C328208A3)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&HostTopology_GetSpecialConnectionConfig_m52EB0C01DBCEFABCCA2999BA5AA4FC5200049BC1_RuntimeMethod_var)));
}
IL_0025:
{
List_1_t46489AA4DB932B33C96BA58827F21F14C831C2DE * L_6 = __this->get_m_SpecialConnections_2();
int32_t L_7 = ___i0;
NullCheck(L_6);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_8;
L_8 = List_1_get_Item_mA887125ECBEEA92DEE8520B227EFE1CBF3FB6434_inline(L_6, ((int32_t)il2cpp_codegen_subtract((int32_t)L_7, (int32_t)1)), /*hidden argument*/List_1_get_Item_mA887125ECBEEA92DEE8520B227EFE1CBF3FB6434_RuntimeMethod_var);
V_1 = L_8;
goto IL_0036;
}
IL_0036:
{
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_9 = V_1;
return L_9;
}
}
// System.UInt16 UnityEngine.Networking.HostTopology::get_ReceivedMessagePoolSize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t HostTopology_get_ReceivedMessagePoolSize_m37EAF773FF7EB9CB306E0BC20FE9B132C16880FD (HostTopology_t268779309BB2D69F29D1A182662C79818813892B * __this, const RuntimeMethod* method)
{
uint16_t V_0 = 0;
{
uint16_t L_0 = __this->get_m_ReceivedMessagePoolSize_3();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
uint16_t L_1 = V_0;
return L_1;
}
}
// System.UInt16 UnityEngine.Networking.HostTopology::get_SentMessagePoolSize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t HostTopology_get_SentMessagePoolSize_m04C3CF4CEC53530BBB0CA64C753F9EFEAF6EB16A (HostTopology_t268779309BB2D69F29D1A182662C79818813892B * __this, const RuntimeMethod* method)
{
uint16_t V_0 = 0;
{
uint16_t L_0 = __this->get_m_SentMessagePoolSize_4();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
uint16_t L_1 = V_0;
return L_1;
}
}
// System.Single UnityEngine.Networking.HostTopology::get_MessagePoolSizeGrowthFactor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float HostTopology_get_MessagePoolSizeGrowthFactor_m7A7ED02522613F0DB49B663F1F51B0104FC60FA0 (HostTopology_t268779309BB2D69F29D1A182662C79818813892B * __this, const RuntimeMethod* method)
{
float V_0 = 0.0f;
{
float L_0 = __this->get_m_MessagePoolSizeGrowthFactor_5();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
float L_1 = V_0;
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 UnityEngine.Networking.HostTopologyInternal::.ctor(UnityEngine.Networking.HostTopology)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HostTopologyInternal__ctor_m9DAA9FD8AC2102B55B9EB6E4F334C8B8555F5E43 (HostTopologyInternal_tA95C0259BC91D8E3D227BAF3D4F7CEE5C5331E10 * __this, HostTopology_t268779309BB2D69F29D1A182662C79818813892B * ___topology0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * V_0 = NULL;
int32_t V_1 = 0;
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * V_2 = NULL;
ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * V_3 = NULL;
bool V_4 = false;
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
HostTopology_t268779309BB2D69F29D1A182662C79818813892B * L_0 = ___topology0;
NullCheck(L_0);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_1;
L_1 = HostTopology_get_DefaultConfig_m0E4C32CC256D7C901C1C91C86B38F33EBD03A0E3(L_0, /*hidden argument*/NULL);
ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * L_2 = (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 *)il2cpp_codegen_object_new(ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078_il2cpp_TypeInfo_var);
ConnectionConfigInternal__ctor_m3159326166C18DBB931A215F34FDE777C78D2AC0(L_2, L_1, /*hidden argument*/NULL);
V_0 = L_2;
ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * L_3 = V_0;
HostTopology_t268779309BB2D69F29D1A182662C79818813892B * L_4 = ___topology0;
NullCheck(L_4);
int32_t L_5;
L_5 = HostTopology_get_MaxDefaultConnections_mBED404D3C504A13C5302198D237E509B664CFEAD(L_4, /*hidden argument*/NULL);
intptr_t L_6;
L_6 = HostTopologyInternal_InternalCreate_m04CCA00F1B270054658A87CE635FB6E83ADD3551(L_3, L_5, /*hidden argument*/NULL);
__this->set_m_Ptr_0((intptr_t)L_6);
V_1 = 1;
goto IL_0047;
}
IL_002a:
{
HostTopology_t268779309BB2D69F29D1A182662C79818813892B * L_7 = ___topology0;
int32_t L_8 = V_1;
NullCheck(L_7);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_9;
L_9 = HostTopology_GetSpecialConnectionConfig_m52EB0C01DBCEFABCCA2999BA5AA4FC5200049BC1(L_7, L_8, /*hidden argument*/NULL);
V_2 = L_9;
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_10 = V_2;
ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * L_11 = (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 *)il2cpp_codegen_object_new(ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078_il2cpp_TypeInfo_var);
ConnectionConfigInternal__ctor_m3159326166C18DBB931A215F34FDE777C78D2AC0(L_11, L_10, /*hidden argument*/NULL);
V_3 = L_11;
ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * L_12 = V_3;
uint16_t L_13;
L_13 = HostTopologyInternal_AddSpecialConnectionConfig_m0A2F45F5745DC98599A7EE8359F3A17DBE66856C(__this, L_12, /*hidden argument*/NULL);
int32_t L_14 = V_1;
V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1));
}
IL_0047:
{
int32_t L_15 = V_1;
HostTopology_t268779309BB2D69F29D1A182662C79818813892B * L_16 = ___topology0;
NullCheck(L_16);
int32_t L_17;
L_17 = HostTopology_get_SpecialConnectionConfigsCount_m34BCBF16F6499FF007E37C3C3657B1BAE8E8522C(L_16, /*hidden argument*/NULL);
V_4 = (bool)((((int32_t)((((int32_t)L_15) > ((int32_t)L_17))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_18 = V_4;
if (L_18)
{
goto IL_002a;
}
}
{
HostTopology_t268779309BB2D69F29D1A182662C79818813892B * L_19 = ___topology0;
NullCheck(L_19);
uint16_t L_20;
L_20 = HostTopology_get_ReceivedMessagePoolSize_m37EAF773FF7EB9CB306E0BC20FE9B132C16880FD(L_19, /*hidden argument*/NULL);
HostTopologyInternal_set_ReceivedMessagePoolSize_m058306E23591D771402037081DA32C2FE60B1464(__this, L_20, /*hidden argument*/NULL);
HostTopology_t268779309BB2D69F29D1A182662C79818813892B * L_21 = ___topology0;
NullCheck(L_21);
uint16_t L_22;
L_22 = HostTopology_get_SentMessagePoolSize_m04C3CF4CEC53530BBB0CA64C753F9EFEAF6EB16A(L_21, /*hidden argument*/NULL);
HostTopologyInternal_set_SentMessagePoolSize_mAB16B0D773E42DD470FBC0F2C79030B914DAABE1(__this, L_22, /*hidden argument*/NULL);
HostTopology_t268779309BB2D69F29D1A182662C79818813892B * L_23 = ___topology0;
NullCheck(L_23);
float L_24;
L_24 = HostTopology_get_MessagePoolSizeGrowthFactor_m7A7ED02522613F0DB49B663F1F51B0104FC60FA0(L_23, /*hidden argument*/NULL);
HostTopologyInternal_set_MessagePoolSizeGrowthFactor_mE735BFC3E80552A0BD0C125B06BD80973563020A(__this, L_24, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Networking.HostTopologyInternal::Dispose(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HostTopologyInternal_Dispose_m083CAFDDE99B9C65B901855E17687C86ED981E7F (HostTopologyInternal_tA95C0259BC91D8E3D227BAF3D4F7CEE5C5331E10 * __this, bool ___disposing0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
intptr_t L_0 = __this->get_m_Ptr_0();
bool L_1;
L_1 = IntPtr_op_Inequality_m212AF0E66AA81FEDC982B1C8A44ADDA24B995EB8((intptr_t)L_0, (intptr_t)(0), /*hidden argument*/NULL);
V_0 = L_1;
bool L_2 = V_0;
if (!L_2)
{
goto IL_002e;
}
}
{
intptr_t L_3 = __this->get_m_Ptr_0();
HostTopologyInternal_InternalDestroy_m71E5CC3F9775FC938F4B1397F87811AEF3FCFECF((intptr_t)L_3, /*hidden argument*/NULL);
__this->set_m_Ptr_0((intptr_t)(0));
}
IL_002e:
{
return;
}
}
// System.Void UnityEngine.Networking.HostTopologyInternal::Finalize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HostTopologyInternal_Finalize_mDB9371DF591F3F2EC5988C3E76ADDC3076F077BA (HostTopologyInternal_tA95C0259BC91D8E3D227BAF3D4F7CEE5C5331E10 * __this, const RuntimeMethod* method)
{
Exception_t * __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
{
}
IL_0001:
try
{ // begin try (depth: 1)
VirtActionInvoker1< bool >::Invoke(5 /* System.Void UnityEngine.Networking.HostTopologyInternal::Dispose(System.Boolean) */, __this, (bool)0);
IL2CPP_LEAVE(0x14, FINALLY_000c);
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_000c;
}
FINALLY_000c:
{ // begin finally (depth: 1)
Object_Finalize_mC59C83CF4F7707E425FFA6362931C25D4C36676A(__this, /*hidden argument*/NULL);
IL2CPP_END_FINALLY(12)
} // end finally (depth: 1)
IL2CPP_CLEANUP(12)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x14, IL_0014)
}
IL_0014:
{
return;
}
}
// System.Void UnityEngine.Networking.HostTopologyInternal::Dispose()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HostTopologyInternal_Dispose_mC632F73CFD4F9D9558C4A6B19A1B594011A46D8E (HostTopologyInternal_tA95C0259BC91D8E3D227BAF3D4F7CEE5C5331E10 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
intptr_t L_0 = __this->get_m_Ptr_0();
bool L_1;
L_1 = IntPtr_op_Inequality_m212AF0E66AA81FEDC982B1C8A44ADDA24B995EB8((intptr_t)L_0, (intptr_t)(0), /*hidden argument*/NULL);
V_0 = L_1;
bool L_2 = V_0;
if (!L_2)
{
goto IL_002e;
}
}
{
intptr_t L_3 = __this->get_m_Ptr_0();
HostTopologyInternal_InternalDestroy_m71E5CC3F9775FC938F4B1397F87811AEF3FCFECF((intptr_t)L_3, /*hidden argument*/NULL);
__this->set_m_Ptr_0((intptr_t)(0));
}
IL_002e:
{
return;
}
}
// System.IntPtr UnityEngine.Networking.HostTopologyInternal::InternalCreate(UnityEngine.Networking.ConnectionConfigInternal,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t HostTopologyInternal_InternalCreate_m04CCA00F1B270054658A87CE635FB6E83ADD3551 (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * ___config0, int32_t ___maxDefaultConnections1, const RuntimeMethod* method)
{
typedef intptr_t (*HostTopologyInternal_InternalCreate_m04CCA00F1B270054658A87CE635FB6E83ADD3551_ftn) (ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 *, int32_t);
static HostTopologyInternal_InternalCreate_m04CCA00F1B270054658A87CE635FB6E83ADD3551_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (HostTopologyInternal_InternalCreate_m04CCA00F1B270054658A87CE635FB6E83ADD3551_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.HostTopologyInternal::InternalCreate(UnityEngine.Networking.ConnectionConfigInternal,System.Int32)");
intptr_t icallRetVal = _il2cpp_icall_func(___config0, ___maxDefaultConnections1);
return icallRetVal;
}
// System.Void UnityEngine.Networking.HostTopologyInternal::InternalDestroy(System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HostTopologyInternal_InternalDestroy_m71E5CC3F9775FC938F4B1397F87811AEF3FCFECF (intptr_t ___ptr0, const RuntimeMethod* method)
{
typedef void (*HostTopologyInternal_InternalDestroy_m71E5CC3F9775FC938F4B1397F87811AEF3FCFECF_ftn) (intptr_t);
static HostTopologyInternal_InternalDestroy_m71E5CC3F9775FC938F4B1397F87811AEF3FCFECF_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (HostTopologyInternal_InternalDestroy_m71E5CC3F9775FC938F4B1397F87811AEF3FCFECF_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.HostTopologyInternal::InternalDestroy(System.IntPtr)");
_il2cpp_icall_func(___ptr0);
}
// System.UInt16 UnityEngine.Networking.HostTopologyInternal::AddSpecialConnectionConfig(UnityEngine.Networking.ConnectionConfigInternal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t HostTopologyInternal_AddSpecialConnectionConfig_m0A2F45F5745DC98599A7EE8359F3A17DBE66856C (HostTopologyInternal_tA95C0259BC91D8E3D227BAF3D4F7CEE5C5331E10 * __this, ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 * ___config0, const RuntimeMethod* method)
{
typedef uint16_t (*HostTopologyInternal_AddSpecialConnectionConfig_m0A2F45F5745DC98599A7EE8359F3A17DBE66856C_ftn) (HostTopologyInternal_tA95C0259BC91D8E3D227BAF3D4F7CEE5C5331E10 *, ConnectionConfigInternal_tA4BD9D163516820771949053DE20639A8A7D8078 *);
static HostTopologyInternal_AddSpecialConnectionConfig_m0A2F45F5745DC98599A7EE8359F3A17DBE66856C_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (HostTopologyInternal_AddSpecialConnectionConfig_m0A2F45F5745DC98599A7EE8359F3A17DBE66856C_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.HostTopologyInternal::AddSpecialConnectionConfig(UnityEngine.Networking.ConnectionConfigInternal)");
uint16_t icallRetVal = _il2cpp_icall_func(__this, ___config0);
return icallRetVal;
}
// System.Void UnityEngine.Networking.HostTopologyInternal::set_ReceivedMessagePoolSize(System.UInt16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HostTopologyInternal_set_ReceivedMessagePoolSize_m058306E23591D771402037081DA32C2FE60B1464 (HostTopologyInternal_tA95C0259BC91D8E3D227BAF3D4F7CEE5C5331E10 * __this, uint16_t ___value0, const RuntimeMethod* method)
{
typedef void (*HostTopologyInternal_set_ReceivedMessagePoolSize_m058306E23591D771402037081DA32C2FE60B1464_ftn) (HostTopologyInternal_tA95C0259BC91D8E3D227BAF3D4F7CEE5C5331E10 *, uint16_t);
static HostTopologyInternal_set_ReceivedMessagePoolSize_m058306E23591D771402037081DA32C2FE60B1464_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (HostTopologyInternal_set_ReceivedMessagePoolSize_m058306E23591D771402037081DA32C2FE60B1464_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.HostTopologyInternal::set_ReceivedMessagePoolSize(System.UInt16)");
_il2cpp_icall_func(__this, ___value0);
}
// System.Void UnityEngine.Networking.HostTopologyInternal::set_SentMessagePoolSize(System.UInt16)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HostTopologyInternal_set_SentMessagePoolSize_mAB16B0D773E42DD470FBC0F2C79030B914DAABE1 (HostTopologyInternal_tA95C0259BC91D8E3D227BAF3D4F7CEE5C5331E10 * __this, uint16_t ___value0, const RuntimeMethod* method)
{
typedef void (*HostTopologyInternal_set_SentMessagePoolSize_mAB16B0D773E42DD470FBC0F2C79030B914DAABE1_ftn) (HostTopologyInternal_tA95C0259BC91D8E3D227BAF3D4F7CEE5C5331E10 *, uint16_t);
static HostTopologyInternal_set_SentMessagePoolSize_mAB16B0D773E42DD470FBC0F2C79030B914DAABE1_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (HostTopologyInternal_set_SentMessagePoolSize_mAB16B0D773E42DD470FBC0F2C79030B914DAABE1_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.HostTopologyInternal::set_SentMessagePoolSize(System.UInt16)");
_il2cpp_icall_func(__this, ___value0);
}
// System.Void UnityEngine.Networking.HostTopologyInternal::set_MessagePoolSizeGrowthFactor(System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HostTopologyInternal_set_MessagePoolSizeGrowthFactor_mE735BFC3E80552A0BD0C125B06BD80973563020A (HostTopologyInternal_tA95C0259BC91D8E3D227BAF3D4F7CEE5C5331E10 * __this, float ___value0, const RuntimeMethod* method)
{
typedef void (*HostTopologyInternal_set_MessagePoolSizeGrowthFactor_mE735BFC3E80552A0BD0C125B06BD80973563020A_ftn) (HostTopologyInternal_tA95C0259BC91D8E3D227BAF3D4F7CEE5C5331E10 *, float);
static HostTopologyInternal_set_MessagePoolSizeGrowthFactor_mE735BFC3E80552A0BD0C125B06BD80973563020A_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (HostTopologyInternal_set_MessagePoolSizeGrowthFactor_mE735BFC3E80552A0BD0C125B06BD80973563020A_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.HostTopologyInternal::set_MessagePoolSizeGrowthFactor(System.Single)");
_il2cpp_icall_func(__this, ___value0);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Networking.Types.NetworkID UnityEngine.Networking.Match.JoinMatchRequest::get_networkId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t JoinMatchRequest_get_networkId_mF41427B1FE3C495530C0C7A366152446613F8B10 (JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A * __this, const RuntimeMethod* method)
{
{
uint64_t L_0 = __this->get_U3CnetworkIdU3Ek__BackingField_5();
return L_0;
}
}
// System.Void UnityEngine.Networking.Match.JoinMatchRequest::set_networkId(UnityEngine.Networking.Types.NetworkID)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JoinMatchRequest_set_networkId_mA9CA6065937BD62F39138C9869BE6A5B686EA92C (JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A * __this, uint64_t ___value0, const RuntimeMethod* method)
{
{
uint64_t L_0 = ___value0;
__this->set_U3CnetworkIdU3Ek__BackingField_5(L_0);
return;
}
}
// System.String UnityEngine.Networking.Match.JoinMatchRequest::get_publicAddress()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JoinMatchRequest_get_publicAddress_mE052141FB172D009FE1BDB0F7AC52068A5DF3EE2 (JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_U3CpublicAddressU3Ek__BackingField_6();
return L_0;
}
}
// System.Void UnityEngine.Networking.Match.JoinMatchRequest::set_publicAddress(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JoinMatchRequest_set_publicAddress_mB837E27EF72F8B9034A5B926F3F969044A9A7093 (JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CpublicAddressU3Ek__BackingField_6(L_0);
return;
}
}
// System.String UnityEngine.Networking.Match.JoinMatchRequest::get_privateAddress()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JoinMatchRequest_get_privateAddress_m2DE574B58D8A69C731C815E2C46AB5CC3ADF8D8D (JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_U3CprivateAddressU3Ek__BackingField_7();
return L_0;
}
}
// System.Void UnityEngine.Networking.Match.JoinMatchRequest::set_privateAddress(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JoinMatchRequest_set_privateAddress_mF07E855D339EE71B24EB95110B579262C74A55F1 (JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CprivateAddressU3Ek__BackingField_7(L_0);
return;
}
}
// System.Int32 UnityEngine.Networking.Match.JoinMatchRequest::get_eloScore()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JoinMatchRequest_get_eloScore_mC0238C87F841D7DBD4C06765AD05B8A8A6B2F01E (JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_U3CeloScoreU3Ek__BackingField_8();
return L_0;
}
}
// System.Void UnityEngine.Networking.Match.JoinMatchRequest::set_eloScore(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JoinMatchRequest_set_eloScore_mDA8EAC91C261AD2C6D6A45AD9F3C0422EEEAB73E (JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set_U3CeloScoreU3Ek__BackingField_8(L_0);
return;
}
}
// System.String UnityEngine.Networking.Match.JoinMatchRequest::get_password()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JoinMatchRequest_get_password_m0E7A0F73B7DB0E41E613A07195C3A7370C863B90 (JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_U3CpasswordU3Ek__BackingField_9();
return L_0;
}
}
// System.Void UnityEngine.Networking.Match.JoinMatchRequest::set_password(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JoinMatchRequest_set_password_m2096D8C416175CF323600FBD5E1370E83FB8741C (JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CpasswordU3Ek__BackingField_9(L_0);
return;
}
}
// System.String UnityEngine.Networking.Match.JoinMatchRequest::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JoinMatchRequest_ToString_m7CA4CAE33622AF841CF73BB010D7EC393418D1E6 (JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkID_tA7160DE9FBEE6E236564AEA6C328B6180FC368C3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7471FC92FC1AA570D64A46C83CB352615E0781C2);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD5D2875F228D651E1289522AEAAB8C492001C1BE);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD8F50872454B1DDA643F3A29398B40D5880A7DDA);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFE395372133BD4424644B83D8FEC81DEFE538A4F);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
int32_t G_B2_0 = 0;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B2_1 = NULL;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B2_2 = NULL;
String_t* G_B2_3 = NULL;
int32_t G_B1_0 = 0;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B1_1 = NULL;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B1_2 = NULL;
String_t* G_B1_3 = NULL;
String_t* G_B3_0 = NULL;
int32_t G_B3_1 = 0;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B3_2 = NULL;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B3_3 = NULL;
String_t* G_B3_4 = NULL;
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)6);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = L_0;
String_t* L_2;
L_2 = Request_ToString_m4F51206BC7123325B3D8278BD9852C3D07FA7B26(__this, /*hidden argument*/NULL);
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_2);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_2);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_3 = L_1;
uint64_t L_4;
L_4 = JoinMatchRequest_get_networkId_mF41427B1FE3C495530C0C7A366152446613F8B10_inline(__this, /*hidden argument*/NULL);
uint64_t L_5 = L_4;
RuntimeObject * L_6 = Box(NetworkID_tA7160DE9FBEE6E236564AEA6C328B6180FC368C3_il2cpp_TypeInfo_var, &L_5);
NullCheck((Enum_t23B90B40F60E677A8025267341651C94AE079CDA *)L_6);
String_t* L_7;
L_7 = Enum_ToString_m4F8C0882A819B1D1E3286920D14CC649200F24A1((Enum_t23B90B40F60E677A8025267341651C94AE079CDA *)L_6, _stringLiteralD5D2875F228D651E1289522AEAAB8C492001C1BE, /*hidden argument*/NULL);
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_7);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_7);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_8 = L_3;
String_t* L_9;
L_9 = JoinMatchRequest_get_publicAddress_mE052141FB172D009FE1BDB0F7AC52068A5DF3EE2_inline(__this, /*hidden argument*/NULL);
NullCheck(L_8);
ArrayElementTypeCheck (L_8, L_9);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_9);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_10 = L_8;
String_t* L_11;
L_11 = JoinMatchRequest_get_privateAddress_m2DE574B58D8A69C731C815E2C46AB5CC3ADF8D8D_inline(__this, /*hidden argument*/NULL);
NullCheck(L_10);
ArrayElementTypeCheck (L_10, L_11);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_11);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_12 = L_10;
int32_t L_13;
L_13 = JoinMatchRequest_get_eloScore_mC0238C87F841D7DBD4C06765AD05B8A8A6B2F01E_inline(__this, /*hidden argument*/NULL);
int32_t L_14 = L_13;
RuntimeObject * L_15 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_14);
NullCheck(L_12);
ArrayElementTypeCheck (L_12, L_15);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(4), (RuntimeObject *)L_15);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_16 = L_12;
String_t* L_17;
L_17 = JoinMatchRequest_get_password_m0E7A0F73B7DB0E41E613A07195C3A7370C863B90_inline(__this, /*hidden argument*/NULL);
bool L_18;
L_18 = String_IsNullOrEmpty_m9AFBB5335B441B94E884B8A9D4A27AD60E3D7F7C(L_17, /*hidden argument*/NULL);
G_B1_0 = 5;
G_B1_1 = L_16;
G_B1_2 = L_16;
G_B1_3 = _stringLiteralFE395372133BD4424644B83D8FEC81DEFE538A4F;
if (L_18)
{
G_B2_0 = 5;
G_B2_1 = L_16;
G_B2_2 = L_16;
G_B2_3 = _stringLiteralFE395372133BD4424644B83D8FEC81DEFE538A4F;
goto IL_0063;
}
}
{
G_B3_0 = _stringLiteralD8F50872454B1DDA643F3A29398B40D5880A7DDA;
G_B3_1 = G_B1_0;
G_B3_2 = G_B1_1;
G_B3_3 = G_B1_2;
G_B3_4 = G_B1_3;
goto IL_0068;
}
IL_0063:
{
G_B3_0 = _stringLiteral7471FC92FC1AA570D64A46C83CB352615E0781C2;
G_B3_1 = G_B2_0;
G_B3_2 = G_B2_1;
G_B3_3 = G_B2_2;
G_B3_4 = G_B2_3;
}
IL_0068:
{
NullCheck(G_B3_2);
ArrayElementTypeCheck (G_B3_2, G_B3_0);
(G_B3_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B3_1), (RuntimeObject *)G_B3_0);
String_t* L_19;
L_19 = UnityString_Format_m7A07C068ED408DD06F634070770FB55F13AA4EC9(G_B3_4, G_B3_3, /*hidden argument*/NULL);
V_0 = L_19;
goto IL_0071;
}
IL_0071:
{
String_t* L_20 = V_0;
return L_20;
}
}
// System.Void UnityEngine.Networking.Match.JoinMatchRequest::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JoinMatchRequest__ctor_m044E97AD4881511506554BB7F54385EDB6B902BD (JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Request_tA1BC1936C153408449C4C207CA12D4358A7477FD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Request_tA1BC1936C153408449C4C207CA12D4358A7477FD_il2cpp_TypeInfo_var);
Request__ctor_m810E8C9AB15C195E42B5D49B95CE805DA5568993(__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.String UnityEngine.Networking.Match.JoinMatchResponse::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* JoinMatchResponse_ToString_m550B1A03AEAFE2B4C7BAF6DFAD09A4581AB7E939 (JoinMatchResponse_t6F5BCC11BC546B850CB72C9DEF63D520F4F6946D * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NodeID_t07417F7D8D30332570E9D4A123D9E8B7CA1D1E80_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC8ECFEDB46D550F91F24515968D3BD0036B15402);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD5D2875F228D651E1289522AEAAB8C492001C1BE);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)7);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = L_0;
String_t* L_2;
L_2 = Response_ToString_mE1871457C6916CD280D417857BBE8081EDE5865A(__this, /*hidden argument*/NULL);
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_2);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_2);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_3 = L_1;
String_t* L_4 = __this->get_address_2();
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_4);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_4);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_5 = L_3;
int32_t L_6 = __this->get_port_3();
int32_t L_7 = L_6;
RuntimeObject * L_8 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_7);
NullCheck(L_5);
ArrayElementTypeCheck (L_5, L_8);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_8);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_9 = L_5;
uint64_t* L_10 = __this->get_address_of_networkId_5();
String_t* L_11;
L_11 = UInt64_ToString_mFE48F1D174A1F741AB0795C1164BF45BF37F86E6((uint64_t*)L_10, _stringLiteralD5D2875F228D651E1289522AEAAB8C492001C1BE, /*hidden argument*/NULL);
NullCheck(L_9);
ArrayElementTypeCheck (L_9, L_11);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_11);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_12 = L_9;
String_t* L_13 = __this->get_accessTokenString_6();
bool L_14;
L_14 = String_IsNullOrEmpty_m9AFBB5335B441B94E884B8A9D4A27AD60E3D7F7C(L_13, /*hidden argument*/NULL);
bool L_15 = L_14;
RuntimeObject * L_16 = Box(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var, &L_15);
NullCheck(L_12);
ArrayElementTypeCheck (L_12, L_16);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(4), (RuntimeObject *)L_16);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_17 = L_12;
uint16_t L_18 = __this->get_nodeId_7();
uint16_t L_19 = L_18;
RuntimeObject * L_20 = Box(NodeID_t07417F7D8D30332570E9D4A123D9E8B7CA1D1E80_il2cpp_TypeInfo_var, &L_19);
NullCheck((Enum_t23B90B40F60E677A8025267341651C94AE079CDA *)L_20);
String_t* L_21;
L_21 = Enum_ToString_m4F8C0882A819B1D1E3286920D14CC649200F24A1((Enum_t23B90B40F60E677A8025267341651C94AE079CDA *)L_20, _stringLiteralD5D2875F228D651E1289522AEAAB8C492001C1BE, /*hidden argument*/NULL);
NullCheck(L_17);
ArrayElementTypeCheck (L_17, L_21);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(5), (RuntimeObject *)L_21);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_22 = L_17;
bool L_23 = __this->get_usingRelay_8();
bool L_24 = L_23;
RuntimeObject * L_25 = Box(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var, &L_24);
NullCheck(L_22);
ArrayElementTypeCheck (L_22, L_25);
(L_22)->SetAt(static_cast<il2cpp_array_size_t>(6), (RuntimeObject *)L_25);
String_t* L_26;
L_26 = UnityString_Format_m7A07C068ED408DD06F634070770FB55F13AA4EC9(_stringLiteralC8ECFEDB46D550F91F24515968D3BD0036B15402, L_22, /*hidden argument*/NULL);
V_0 = L_26;
goto IL_0080;
}
IL_0080:
{
String_t* L_27 = V_0;
return L_27;
}
}
// System.Void UnityEngine.Networking.Match.JoinMatchResponse::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JoinMatchResponse__ctor_m222FE3C808F0BF02E3B18C0778B1BFC3543EAD67 (JoinMatchResponse_t6F5BCC11BC546B850CB72C9DEF63D520F4F6946D * __this, const RuntimeMethod* method)
{
{
__this->set_domain_4(0);
BasicResponse__ctor_m4C5BA6FDCDC2F728E13005AA17173DA8D5C7D18F(__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.Int32 UnityEngine.Networking.Match.ListMatchRequest::get_pageSize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ListMatchRequest_get_pageSize_m0465C7613FBFF54BF422F014F27C26D6CE3AF1E1 (ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_U3CpageSizeU3Ek__BackingField_5();
return L_0;
}
}
// System.Void UnityEngine.Networking.Match.ListMatchRequest::set_pageSize(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListMatchRequest_set_pageSize_mB474132B156ACAFD88EB07D1A9408E79100B43B9 (ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set_U3CpageSizeU3Ek__BackingField_5(L_0);
return;
}
}
// System.Int32 UnityEngine.Networking.Match.ListMatchRequest::get_pageNum()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ListMatchRequest_get_pageNum_mA6E74CFB9E814DB86AE540DB0E7CFD9A9637B10E (ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_U3CpageNumU3Ek__BackingField_6();
return L_0;
}
}
// System.Void UnityEngine.Networking.Match.ListMatchRequest::set_pageNum(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListMatchRequest_set_pageNum_m3716C07B600678E685711BFCD0B0661B0C842034 (ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set_U3CpageNumU3Ek__BackingField_6(L_0);
return;
}
}
// System.String UnityEngine.Networking.Match.ListMatchRequest::get_nameFilter()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ListMatchRequest_get_nameFilter_m3C0481F1E6046D75BCE05B1DD331B183F2CB1401 (ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_U3CnameFilterU3Ek__BackingField_7();
return L_0;
}
}
// System.Void UnityEngine.Networking.Match.ListMatchRequest::set_nameFilter(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListMatchRequest_set_nameFilter_mFBBD2943CA68B32FABFACFCA178416CF9AC3BAEA (ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CnameFilterU3Ek__BackingField_7(L_0);
return;
}
}
// System.Boolean UnityEngine.Networking.Match.ListMatchRequest::get_filterOutPrivateMatches()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ListMatchRequest_get_filterOutPrivateMatches_m0827128486C61327991B26DDCE1057BF56395B5A (ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CfilterOutPrivateMatchesU3Ek__BackingField_8();
return L_0;
}
}
// System.Void UnityEngine.Networking.Match.ListMatchRequest::set_filterOutPrivateMatches(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListMatchRequest_set_filterOutPrivateMatches_m38C559485A9D47FD1A3C5FBC2454DC58B7A9F754 (ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CfilterOutPrivateMatchesU3Ek__BackingField_8(L_0);
return;
}
}
// System.Int32 UnityEngine.Networking.Match.ListMatchRequest::get_eloScore()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ListMatchRequest_get_eloScore_m7CC5143EAD11A7CB152C7DD89D2DEE0C1E5F56CB (ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_U3CeloScoreU3Ek__BackingField_9();
return L_0;
}
}
// System.Void UnityEngine.Networking.Match.ListMatchRequest::set_eloScore(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListMatchRequest_set_eloScore_m80EB463CA251672D86AA00C6FEF024129E1D4C90 (ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set_U3CeloScoreU3Ek__BackingField_9(L_0);
return;
}
}
// System.Collections.Generic.Dictionary`2<System.String,System.Int64> UnityEngine.Networking.Match.ListMatchRequest::get_matchAttributeFilterLessThan()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * ListMatchRequest_get_matchAttributeFilterLessThan_m15EAF64DC665FCDE5A00D6AFF67E97E2250CDA65 (ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * __this, const RuntimeMethod* method)
{
{
Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * L_0 = __this->get_U3CmatchAttributeFilterLessThanU3Ek__BackingField_10();
return L_0;
}
}
// System.Collections.Generic.Dictionary`2<System.String,System.Int64> UnityEngine.Networking.Match.ListMatchRequest::get_matchAttributeFilterEqualTo()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * ListMatchRequest_get_matchAttributeFilterEqualTo_mCED2ECBE526824ACE9D65845F72CA54DEA42BEC8 (ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * __this, const RuntimeMethod* method)
{
{
Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * L_0 = __this->get_U3CmatchAttributeFilterEqualToU3Ek__BackingField_11();
return L_0;
}
}
// System.Collections.Generic.Dictionary`2<System.String,System.Int64> UnityEngine.Networking.Match.ListMatchRequest::get_matchAttributeFilterGreaterThan()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * ListMatchRequest_get_matchAttributeFilterGreaterThan_mF2D363A215A57DE53A14E0B82D4BA61D10736FDA (ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * __this, const RuntimeMethod* method)
{
{
Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * L_0 = __this->get_U3CmatchAttributeFilterGreaterThanU3Ek__BackingField_12();
return L_0;
}
}
// System.String UnityEngine.Networking.Match.ListMatchRequest::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ListMatchRequest_ToString_m9DC028A752785A03D20165DD8D23E3F63B9A5572 (ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Count_mCA15DE17B2ACAB05732DDD414A316442CC19E5FD_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCA636F68360653EC2357E195A0370D0FFA121B60);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
int32_t G_B2_0 = 0;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B2_1 = NULL;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B2_2 = NULL;
String_t* G_B2_3 = NULL;
int32_t G_B1_0 = 0;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B1_1 = NULL;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B1_2 = NULL;
String_t* G_B1_3 = NULL;
int32_t G_B3_0 = 0;
int32_t G_B3_1 = 0;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B3_2 = NULL;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B3_3 = NULL;
String_t* G_B3_4 = NULL;
int32_t G_B5_0 = 0;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B5_1 = NULL;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B5_2 = NULL;
String_t* G_B5_3 = NULL;
int32_t G_B4_0 = 0;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B4_1 = NULL;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B4_2 = NULL;
String_t* G_B4_3 = NULL;
int32_t G_B6_0 = 0;
int32_t G_B6_1 = 0;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B6_2 = NULL;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B6_3 = NULL;
String_t* G_B6_4 = NULL;
int32_t G_B8_0 = 0;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B8_1 = NULL;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B8_2 = NULL;
String_t* G_B8_3 = NULL;
int32_t G_B7_0 = 0;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B7_1 = NULL;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B7_2 = NULL;
String_t* G_B7_3 = NULL;
int32_t G_B9_0 = 0;
int32_t G_B9_1 = 0;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B9_2 = NULL;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B9_3 = NULL;
String_t* G_B9_4 = NULL;
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)((int32_t)9));
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = L_0;
String_t* L_2;
L_2 = Request_ToString_m4F51206BC7123325B3D8278BD9852C3D07FA7B26(__this, /*hidden argument*/NULL);
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_2);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_2);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_3 = L_1;
int32_t L_4;
L_4 = ListMatchRequest_get_pageSize_m0465C7613FBFF54BF422F014F27C26D6CE3AF1E1_inline(__this, /*hidden argument*/NULL);
int32_t L_5 = L_4;
RuntimeObject * L_6 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_5);
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_6);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_6);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_7 = L_3;
int32_t L_8;
L_8 = ListMatchRequest_get_pageNum_mA6E74CFB9E814DB86AE540DB0E7CFD9A9637B10E_inline(__this, /*hidden argument*/NULL);
int32_t L_9 = L_8;
RuntimeObject * L_10 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_9);
NullCheck(L_7);
ArrayElementTypeCheck (L_7, L_10);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_10);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_11 = L_7;
String_t* L_12;
L_12 = ListMatchRequest_get_nameFilter_m3C0481F1E6046D75BCE05B1DD331B183F2CB1401_inline(__this, /*hidden argument*/NULL);
NullCheck(L_11);
ArrayElementTypeCheck (L_11, L_12);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_12);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_13 = L_11;
bool L_14;
L_14 = ListMatchRequest_get_filterOutPrivateMatches_m0827128486C61327991B26DDCE1057BF56395B5A_inline(__this, /*hidden argument*/NULL);
bool L_15 = L_14;
RuntimeObject * L_16 = Box(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var, &L_15);
NullCheck(L_13);
ArrayElementTypeCheck (L_13, L_16);
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(4), (RuntimeObject *)L_16);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_17 = L_13;
int32_t L_18;
L_18 = ListMatchRequest_get_eloScore_m7CC5143EAD11A7CB152C7DD89D2DEE0C1E5F56CB_inline(__this, /*hidden argument*/NULL);
int32_t L_19 = L_18;
RuntimeObject * L_20 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_19);
NullCheck(L_17);
ArrayElementTypeCheck (L_17, L_20);
(L_17)->SetAt(static_cast<il2cpp_array_size_t>(5), (RuntimeObject *)L_20);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_21 = L_17;
Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * L_22;
L_22 = ListMatchRequest_get_matchAttributeFilterLessThan_m15EAF64DC665FCDE5A00D6AFF67E97E2250CDA65_inline(__this, /*hidden argument*/NULL);
G_B1_0 = 6;
G_B1_1 = L_21;
G_B1_2 = L_21;
G_B1_3 = _stringLiteralCA636F68360653EC2357E195A0370D0FFA121B60;
if (!L_22)
{
G_B2_0 = 6;
G_B2_1 = L_21;
G_B2_2 = L_21;
G_B2_3 = _stringLiteralCA636F68360653EC2357E195A0370D0FFA121B60;
goto IL_006e;
}
}
{
Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * L_23;
L_23 = ListMatchRequest_get_matchAttributeFilterLessThan_m15EAF64DC665FCDE5A00D6AFF67E97E2250CDA65_inline(__this, /*hidden argument*/NULL);
NullCheck(L_23);
int32_t L_24;
L_24 = Dictionary_2_get_Count_mCA15DE17B2ACAB05732DDD414A316442CC19E5FD(L_23, /*hidden argument*/Dictionary_2_get_Count_mCA15DE17B2ACAB05732DDD414A316442CC19E5FD_RuntimeMethod_var);
G_B3_0 = L_24;
G_B3_1 = G_B1_0;
G_B3_2 = G_B1_1;
G_B3_3 = G_B1_2;
G_B3_4 = G_B1_3;
goto IL_006f;
}
IL_006e:
{
G_B3_0 = 0;
G_B3_1 = G_B2_0;
G_B3_2 = G_B2_1;
G_B3_3 = G_B2_2;
G_B3_4 = G_B2_3;
}
IL_006f:
{
int32_t L_25 = G_B3_0;
RuntimeObject * L_26 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_25);
NullCheck(G_B3_2);
ArrayElementTypeCheck (G_B3_2, L_26);
(G_B3_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B3_1), (RuntimeObject *)L_26);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_27 = G_B3_3;
Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * L_28;
L_28 = ListMatchRequest_get_matchAttributeFilterEqualTo_mCED2ECBE526824ACE9D65845F72CA54DEA42BEC8_inline(__this, /*hidden argument*/NULL);
G_B4_0 = 7;
G_B4_1 = L_27;
G_B4_2 = L_27;
G_B4_3 = G_B3_4;
if (!L_28)
{
G_B5_0 = 7;
G_B5_1 = L_27;
G_B5_2 = L_27;
G_B5_3 = G_B3_4;
goto IL_008c;
}
}
{
Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * L_29;
L_29 = ListMatchRequest_get_matchAttributeFilterEqualTo_mCED2ECBE526824ACE9D65845F72CA54DEA42BEC8_inline(__this, /*hidden argument*/NULL);
NullCheck(L_29);
int32_t L_30;
L_30 = Dictionary_2_get_Count_mCA15DE17B2ACAB05732DDD414A316442CC19E5FD(L_29, /*hidden argument*/Dictionary_2_get_Count_mCA15DE17B2ACAB05732DDD414A316442CC19E5FD_RuntimeMethod_var);
G_B6_0 = L_30;
G_B6_1 = G_B4_0;
G_B6_2 = G_B4_1;
G_B6_3 = G_B4_2;
G_B6_4 = G_B4_3;
goto IL_008d;
}
IL_008c:
{
G_B6_0 = 0;
G_B6_1 = G_B5_0;
G_B6_2 = G_B5_1;
G_B6_3 = G_B5_2;
G_B6_4 = G_B5_3;
}
IL_008d:
{
int32_t L_31 = G_B6_0;
RuntimeObject * L_32 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_31);
NullCheck(G_B6_2);
ArrayElementTypeCheck (G_B6_2, L_32);
(G_B6_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B6_1), (RuntimeObject *)L_32);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_33 = G_B6_3;
Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * L_34;
L_34 = ListMatchRequest_get_matchAttributeFilterGreaterThan_mF2D363A215A57DE53A14E0B82D4BA61D10736FDA_inline(__this, /*hidden argument*/NULL);
G_B7_0 = 8;
G_B7_1 = L_33;
G_B7_2 = L_33;
G_B7_3 = G_B6_4;
if (!L_34)
{
G_B8_0 = 8;
G_B8_1 = L_33;
G_B8_2 = L_33;
G_B8_3 = G_B6_4;
goto IL_00aa;
}
}
{
Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * L_35;
L_35 = ListMatchRequest_get_matchAttributeFilterGreaterThan_mF2D363A215A57DE53A14E0B82D4BA61D10736FDA_inline(__this, /*hidden argument*/NULL);
NullCheck(L_35);
int32_t L_36;
L_36 = Dictionary_2_get_Count_mCA15DE17B2ACAB05732DDD414A316442CC19E5FD(L_35, /*hidden argument*/Dictionary_2_get_Count_mCA15DE17B2ACAB05732DDD414A316442CC19E5FD_RuntimeMethod_var);
G_B9_0 = L_36;
G_B9_1 = G_B7_0;
G_B9_2 = G_B7_1;
G_B9_3 = G_B7_2;
G_B9_4 = G_B7_3;
goto IL_00ab;
}
IL_00aa:
{
G_B9_0 = 0;
G_B9_1 = G_B8_0;
G_B9_2 = G_B8_1;
G_B9_3 = G_B8_2;
G_B9_4 = G_B8_3;
}
IL_00ab:
{
int32_t L_37 = G_B9_0;
RuntimeObject * L_38 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_37);
NullCheck(G_B9_2);
ArrayElementTypeCheck (G_B9_2, L_38);
(G_B9_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B9_1), (RuntimeObject *)L_38);
String_t* L_39;
L_39 = UnityString_Format_m7A07C068ED408DD06F634070770FB55F13AA4EC9(G_B9_4, G_B9_3, /*hidden argument*/NULL);
V_0 = L_39;
goto IL_00b9;
}
IL_00b9:
{
String_t* L_40 = V_0;
return L_40;
}
}
// System.Void UnityEngine.Networking.Match.ListMatchRequest::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListMatchRequest__ctor_mB13721CACFED14B46B80AD98571D216350953772 (ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Request_tA1BC1936C153408449C4C207CA12D4358A7477FD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Request_tA1BC1936C153408449C4C207CA12D4358A7477FD_il2cpp_TypeInfo_var);
Request__ctor_m810E8C9AB15C195E42B5D49B95CE805DA5568993(__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 UnityEngine.Networking.Match.ListMatchResponse::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ListMatchResponse__ctor_mC4F44D3F821713F0D5F04739C9AF868CE17B4F6F (ListMatchResponse_tA778241617E0B4AF172DE6201E27F64EA6670900 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m3EADFEE4B0D96863F5F2A9D440D718963CCF30A3_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t2502ACE8E86D49AF07B92705BD60DD75F6358030_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
BasicResponse__ctor_m4C5BA6FDCDC2F728E13005AA17173DA8D5C7D18F(__this, /*hidden argument*/NULL);
List_1_t2502ACE8E86D49AF07B92705BD60DD75F6358030 * L_0 = (List_1_t2502ACE8E86D49AF07B92705BD60DD75F6358030 *)il2cpp_codegen_object_new(List_1_t2502ACE8E86D49AF07B92705BD60DD75F6358030_il2cpp_TypeInfo_var);
List_1__ctor_m3EADFEE4B0D96863F5F2A9D440D718963CCF30A3(L_0, /*hidden argument*/List_1__ctor_m3EADFEE4B0D96863F5F2A9D440D718963CCF30A3_RuntimeMethod_var);
__this->set_matches_2(L_0);
return;
}
}
// System.String UnityEngine.Networking.Match.ListMatchResponse::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ListMatchResponse_ToString_mCC92441DA48598256C8EEF6F704640A6CC50FEFD (ListMatchResponse_tA778241617E0B4AF172DE6201E27F64EA6670900 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mB923AB9D42A3F44229B3E675D82767B5F449CBD1_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAA8C43830C5083F7E4CB7028748C40B450C3BF24);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
int32_t G_B2_0 = 0;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B2_1 = NULL;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B2_2 = NULL;
String_t* G_B2_3 = NULL;
int32_t G_B1_0 = 0;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B1_1 = NULL;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B1_2 = NULL;
String_t* G_B1_3 = NULL;
int32_t G_B3_0 = 0;
int32_t G_B3_1 = 0;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B3_2 = NULL;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B3_3 = NULL;
String_t* G_B3_4 = NULL;
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)2);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = L_0;
String_t* L_2;
L_2 = Response_ToString_mE1871457C6916CD280D417857BBE8081EDE5865A(__this, /*hidden argument*/NULL);
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_2);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_2);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_3 = L_1;
List_1_t2502ACE8E86D49AF07B92705BD60DD75F6358030 * L_4 = __this->get_matches_2();
G_B1_0 = 1;
G_B1_1 = L_3;
G_B1_2 = L_3;
G_B1_3 = _stringLiteralAA8C43830C5083F7E4CB7028748C40B450C3BF24;
if (!L_4)
{
G_B2_0 = 1;
G_B2_1 = L_3;
G_B2_2 = L_3;
G_B2_3 = _stringLiteralAA8C43830C5083F7E4CB7028748C40B450C3BF24;
goto IL_002c;
}
}
{
List_1_t2502ACE8E86D49AF07B92705BD60DD75F6358030 * L_5 = __this->get_matches_2();
NullCheck(L_5);
int32_t L_6;
L_6 = List_1_get_Count_mB923AB9D42A3F44229B3E675D82767B5F449CBD1_inline(L_5, /*hidden argument*/List_1_get_Count_mB923AB9D42A3F44229B3E675D82767B5F449CBD1_RuntimeMethod_var);
G_B3_0 = L_6;
G_B3_1 = G_B1_0;
G_B3_2 = G_B1_1;
G_B3_3 = G_B1_2;
G_B3_4 = G_B1_3;
goto IL_002d;
}
IL_002c:
{
G_B3_0 = 0;
G_B3_1 = G_B2_0;
G_B3_2 = G_B2_1;
G_B3_3 = G_B2_2;
G_B3_4 = G_B2_3;
}
IL_002d:
{
int32_t L_7 = G_B3_0;
RuntimeObject * L_8 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_7);
NullCheck(G_B3_2);
ArrayElementTypeCheck (G_B3_2, L_8);
(G_B3_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B3_1), (RuntimeObject *)L_8);
String_t* L_9;
L_9 = UnityString_Format_m7A07C068ED408DD06F634070770FB55F13AA4EC9(G_B3_4, G_B3_3, /*hidden argument*/NULL);
V_0 = L_9;
goto IL_003b;
}
IL_003b:
{
String_t* L_10 = V_0;
return L_10;
}
}
#ifdef __clang__
#pragma 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 UnityEngine.Networking.Match.MatchDesc::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MatchDesc_ToString_m07BC471D7DE0D5CA49E052C63C5DDCC1ED316611 (MatchDesc_t49F2F401AE3A8B8B80EDF9838F88127727B4108B * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Count_mCA15DE17B2ACAB05732DDD414A316442CC19E5FD_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m4FAC089655B2026854C837BB67444B874CD2D9BF_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NodeID_t07417F7D8D30332570E9D4A123D9E8B7CA1D1E80_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral53441C037FB00AA5DF2BEDB7347FBE060552F187);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD5D2875F228D651E1289522AEAAB8C492001C1BE);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
int32_t G_B2_0 = 0;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B2_1 = NULL;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B2_2 = NULL;
String_t* G_B2_3 = NULL;
int32_t G_B1_0 = 0;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B1_1 = NULL;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B1_2 = NULL;
String_t* G_B1_3 = NULL;
int32_t G_B3_0 = 0;
int32_t G_B3_1 = 0;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B3_2 = NULL;
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* G_B3_3 = NULL;
String_t* G_B3_4 = NULL;
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)((int32_t)10));
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = L_0;
String_t* L_2;
L_2 = Object_ToString_m6EEDE9678ACEB962C586D13EC873DE2948668B06(__this, /*hidden argument*/NULL);
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_2);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_2);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_3 = L_1;
uint64_t* L_4 = __this->get_address_of_networkId_0();
String_t* L_5;
L_5 = UInt64_ToString_mFE48F1D174A1F741AB0795C1164BF45BF37F86E6((uint64_t*)L_4, _stringLiteralD5D2875F228D651E1289522AEAAB8C492001C1BE, /*hidden argument*/NULL);
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_5);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_5);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_6 = L_3;
String_t* L_7 = __this->get_name_1();
NullCheck(L_6);
ArrayElementTypeCheck (L_6, L_7);
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_7);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_8 = L_6;
int32_t L_9 = __this->get_averageEloScore_2();
int32_t L_10 = L_9;
RuntimeObject * L_11 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_10);
NullCheck(L_8);
ArrayElementTypeCheck (L_8, L_11);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_11);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_12 = L_8;
int32_t L_13 = __this->get_maxSize_3();
int32_t L_14 = L_13;
RuntimeObject * L_15 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_14);
NullCheck(L_12);
ArrayElementTypeCheck (L_12, L_15);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(4), (RuntimeObject *)L_15);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_16 = L_12;
int32_t L_17 = __this->get_currentSize_4();
int32_t L_18 = L_17;
RuntimeObject * L_19 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_18);
NullCheck(L_16);
ArrayElementTypeCheck (L_16, L_19);
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(5), (RuntimeObject *)L_19);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_20 = L_16;
bool L_21 = __this->get_isPrivate_5();
bool L_22 = L_21;
RuntimeObject * L_23 = Box(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var, &L_22);
NullCheck(L_20);
ArrayElementTypeCheck (L_20, L_23);
(L_20)->SetAt(static_cast<il2cpp_array_size_t>(6), (RuntimeObject *)L_23);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_24 = L_20;
Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * L_25 = __this->get_matchAttributes_6();
G_B1_0 = 7;
G_B1_1 = L_24;
G_B1_2 = L_24;
G_B1_3 = _stringLiteral53441C037FB00AA5DF2BEDB7347FBE060552F187;
if (!L_25)
{
G_B2_0 = 7;
G_B2_1 = L_24;
G_B2_2 = L_24;
G_B2_3 = _stringLiteral53441C037FB00AA5DF2BEDB7347FBE060552F187;
goto IL_0081;
}
}
{
Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * L_26 = __this->get_matchAttributes_6();
NullCheck(L_26);
int32_t L_27;
L_27 = Dictionary_2_get_Count_mCA15DE17B2ACAB05732DDD414A316442CC19E5FD(L_26, /*hidden argument*/Dictionary_2_get_Count_mCA15DE17B2ACAB05732DDD414A316442CC19E5FD_RuntimeMethod_var);
G_B3_0 = L_27;
G_B3_1 = G_B1_0;
G_B3_2 = G_B1_1;
G_B3_3 = G_B1_2;
G_B3_4 = G_B1_3;
goto IL_0082;
}
IL_0081:
{
G_B3_0 = 0;
G_B3_1 = G_B2_0;
G_B3_2 = G_B2_1;
G_B3_3 = G_B2_2;
G_B3_4 = G_B2_3;
}
IL_0082:
{
int32_t L_28 = G_B3_0;
RuntimeObject * L_29 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_28);
NullCheck(G_B3_2);
ArrayElementTypeCheck (G_B3_2, L_29);
(G_B3_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B3_1), (RuntimeObject *)L_29);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_30 = G_B3_3;
uint16_t L_31 = __this->get_hostNodeId_7();
uint16_t L_32 = L_31;
RuntimeObject * L_33 = Box(NodeID_t07417F7D8D30332570E9D4A123D9E8B7CA1D1E80_il2cpp_TypeInfo_var, &L_32);
NullCheck(L_30);
ArrayElementTypeCheck (L_30, L_33);
(L_30)->SetAt(static_cast<il2cpp_array_size_t>(8), (RuntimeObject *)L_33);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_34 = L_30;
List_1_t634AFA3BC7CA26F185BBC2A460A21D2F89EE10FA * L_35 = __this->get_directConnectInfos_8();
NullCheck(L_35);
int32_t L_36;
L_36 = List_1_get_Count_m4FAC089655B2026854C837BB67444B874CD2D9BF_inline(L_35, /*hidden argument*/List_1_get_Count_m4FAC089655B2026854C837BB67444B874CD2D9BF_RuntimeMethod_var);
int32_t L_37 = L_36;
RuntimeObject * L_38 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_37);
NullCheck(L_34);
ArrayElementTypeCheck (L_34, L_38);
(L_34)->SetAt(static_cast<il2cpp_array_size_t>(((int32_t)9)), (RuntimeObject *)L_38);
String_t* L_39;
L_39 = UnityString_Format_m7A07C068ED408DD06F634070770FB55F13AA4EC9(G_B3_4, L_34, /*hidden argument*/NULL);
V_0 = L_39;
goto IL_00b2;
}
IL_00b2:
{
String_t* L_40 = V_0;
return L_40;
}
}
// System.Void UnityEngine.Networking.Match.MatchDesc::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchDesc__ctor_m88910B8977D22C33F719785F68C7DECDF12D130D (MatchDesc_t49F2F401AE3A8B8B80EDF9838F88127727B4108B * __this, const RuntimeMethod* method)
{
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__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.String UnityEngine.Networking.Match.MatchDirectConnectInfo::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MatchDirectConnectInfo_ToString_mD1427714620656C332AC9DC900A9A2439F7919FD (MatchDirectConnectInfo_t79A507F1704A58987DFC695D74214C9726BF78A4 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HostPriority_tA55AD7007516BAA3ADFF8CDC72576479ACA864A0_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NodeID_t07417F7D8D30332570E9D4A123D9E8B7CA1D1E80_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB9A0D800389286793EC08A8AEE5AF22205CE1918);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)5);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = L_0;
String_t* L_2;
L_2 = Object_ToString_m6EEDE9678ACEB962C586D13EC873DE2948668B06(__this, /*hidden argument*/NULL);
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_2);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_2);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_3 = L_1;
uint16_t L_4 = __this->get_nodeId_0();
uint16_t L_5 = L_4;
RuntimeObject * L_6 = Box(NodeID_t07417F7D8D30332570E9D4A123D9E8B7CA1D1E80_il2cpp_TypeInfo_var, &L_5);
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_6);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_6);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_7 = L_3;
String_t* L_8 = __this->get_publicAddress_1();
NullCheck(L_7);
ArrayElementTypeCheck (L_7, L_8);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_8);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_9 = L_7;
String_t* L_10 = __this->get_privateAddress_2();
NullCheck(L_9);
ArrayElementTypeCheck (L_9, L_10);
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_10);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_11 = L_9;
int32_t L_12 = __this->get_hostPriority_3();
int32_t L_13 = L_12;
RuntimeObject * L_14 = Box(HostPriority_tA55AD7007516BAA3ADFF8CDC72576479ACA864A0_il2cpp_TypeInfo_var, &L_13);
NullCheck(L_11);
ArrayElementTypeCheck (L_11, L_14);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(4), (RuntimeObject *)L_14);
String_t* L_15;
L_15 = UnityString_Format_m7A07C068ED408DD06F634070770FB55F13AA4EC9(_stringLiteralB9A0D800389286793EC08A8AEE5AF22205CE1918, L_11, /*hidden argument*/NULL);
V_0 = L_15;
goto IL_004b;
}
IL_004b:
{
String_t* L_16 = V_0;
return L_16;
}
}
// System.Void UnityEngine.Networking.Match.MatchDirectConnectInfo::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchDirectConnectInfo__ctor_mF5914A68B2967CFB7BDFECC2BB4A52B0859FF886 (MatchDirectConnectInfo_t79A507F1704A58987DFC695D74214C9726BF78A4 * __this, const RuntimeMethod* method)
{
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__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.String UnityEngine.Networking.Match.MatchInfo::get_address()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MatchInfo_get_address_mD2E2A1FACE5451D7191ADAF11F7A7C3DD2BAF475 (MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_U3CaddressU3Ek__BackingField_0();
return L_0;
}
}
// System.Void UnityEngine.Networking.Match.MatchInfo::set_address(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchInfo_set_address_m3890A46355BE0177B9434F4EF1016C93E4C66E89 (MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CaddressU3Ek__BackingField_0(L_0);
return;
}
}
// System.Int32 UnityEngine.Networking.Match.MatchInfo::get_port()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MatchInfo_get_port_m927D4247843F4AEB1BD72AB83ED032DA92BDEEB7 (MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_U3CportU3Ek__BackingField_1();
return L_0;
}
}
// System.Void UnityEngine.Networking.Match.MatchInfo::set_port(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchInfo_set_port_m4F079B17EE7B17FEB5018568E245CD7BE4E8A889 (MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set_U3CportU3Ek__BackingField_1(L_0);
return;
}
}
// System.Int32 UnityEngine.Networking.Match.MatchInfo::get_domain()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t MatchInfo_get_domain_mB804D5569C380E91E62A56832EEFCD742953291A (MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_U3CdomainU3Ek__BackingField_2();
return L_0;
}
}
// System.Void UnityEngine.Networking.Match.MatchInfo::set_domain(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchInfo_set_domain_mD6A02961C3FCF81C65FF52F9E05AE1C9520C2057 (MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set_U3CdomainU3Ek__BackingField_2(L_0);
return;
}
}
// UnityEngine.Networking.Types.NetworkID UnityEngine.Networking.Match.MatchInfo::get_networkId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t MatchInfo_get_networkId_m85F41C6EF913403668CF02D8E2161A97165B4F9F (MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67 * __this, const RuntimeMethod* method)
{
{
uint64_t L_0 = __this->get_U3CnetworkIdU3Ek__BackingField_3();
return L_0;
}
}
// System.Void UnityEngine.Networking.Match.MatchInfo::set_networkId(UnityEngine.Networking.Types.NetworkID)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchInfo_set_networkId_mF06B1A76AE877FEF8F90091550CBE7C04395249C (MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67 * __this, uint64_t ___value0, const RuntimeMethod* method)
{
{
uint64_t L_0 = ___value0;
__this->set_U3CnetworkIdU3Ek__BackingField_3(L_0);
return;
}
}
// System.Void UnityEngine.Networking.Match.MatchInfo::set_accessToken(UnityEngine.Networking.Types.NetworkAccessToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchInfo_set_accessToken_m359FEC01A40E84C1D44D7FE8B2B1A60F5D25A73F (MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67 * __this, NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481 * ___value0, const RuntimeMethod* method)
{
{
NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481 * L_0 = ___value0;
__this->set_U3CaccessTokenU3Ek__BackingField_4(L_0);
return;
}
}
// UnityEngine.Networking.Types.NodeID UnityEngine.Networking.Match.MatchInfo::get_nodeId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t MatchInfo_get_nodeId_m8E065595B2BD6F97873189C5697402E44DAC58C9 (MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67 * __this, const RuntimeMethod* method)
{
{
uint16_t L_0 = __this->get_U3CnodeIdU3Ek__BackingField_5();
return L_0;
}
}
// System.Void UnityEngine.Networking.Match.MatchInfo::set_nodeId(UnityEngine.Networking.Types.NodeID)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchInfo_set_nodeId_m33003F730A881B20E2971B5621FFE1C180F9B852 (MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67 * __this, uint16_t ___value0, const RuntimeMethod* method)
{
{
uint16_t L_0 = ___value0;
__this->set_U3CnodeIdU3Ek__BackingField_5(L_0);
return;
}
}
// System.Boolean UnityEngine.Networking.Match.MatchInfo::get_usingRelay()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MatchInfo_get_usingRelay_m7256FADA60AF340CA978CBFBE1A67944EEC19771 (MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CusingRelayU3Ek__BackingField_6();
return L_0;
}
}
// System.Void UnityEngine.Networking.Match.MatchInfo::set_usingRelay(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchInfo_set_usingRelay_mDB319BCBB310B8BD802ED0DC5514ED75209B092A (MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67 * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CusingRelayU3Ek__BackingField_6(L_0);
return;
}
}
// System.Void UnityEngine.Networking.Match.MatchInfo::.ctor(UnityEngine.Networking.Match.CreateMatchResponse)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchInfo__ctor_mD6FE977742C8C750ED0FC8F2B9471AF38BA05BE3 (MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67 * __this, CreateMatchResponse_t1138835A2F19EA07436177C577ABC9984B9F93E2 * ___matchResponse0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
CreateMatchResponse_t1138835A2F19EA07436177C577ABC9984B9F93E2 * L_0 = ___matchResponse0;
NullCheck(L_0);
String_t* L_1 = L_0->get_address_2();
MatchInfo_set_address_m3890A46355BE0177B9434F4EF1016C93E4C66E89_inline(__this, L_1, /*hidden argument*/NULL);
CreateMatchResponse_t1138835A2F19EA07436177C577ABC9984B9F93E2 * L_2 = ___matchResponse0;
NullCheck(L_2);
int32_t L_3 = L_2->get_port_3();
MatchInfo_set_port_m4F079B17EE7B17FEB5018568E245CD7BE4E8A889_inline(__this, L_3, /*hidden argument*/NULL);
CreateMatchResponse_t1138835A2F19EA07436177C577ABC9984B9F93E2 * L_4 = ___matchResponse0;
NullCheck(L_4);
int32_t L_5 = L_4->get_domain_4();
MatchInfo_set_domain_mD6A02961C3FCF81C65FF52F9E05AE1C9520C2057_inline(__this, L_5, /*hidden argument*/NULL);
CreateMatchResponse_t1138835A2F19EA07436177C577ABC9984B9F93E2 * L_6 = ___matchResponse0;
NullCheck(L_6);
uint64_t L_7 = L_6->get_networkId_5();
MatchInfo_set_networkId_mF06B1A76AE877FEF8F90091550CBE7C04395249C_inline(__this, L_7, /*hidden argument*/NULL);
CreateMatchResponse_t1138835A2F19EA07436177C577ABC9984B9F93E2 * L_8 = ___matchResponse0;
NullCheck(L_8);
String_t* L_9 = L_8->get_accessTokenString_6();
NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481 * L_10 = (NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481 *)il2cpp_codegen_object_new(NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481_il2cpp_TypeInfo_var);
NetworkAccessToken__ctor_m1BE41B5F2C9C380423AD3C4EC4FB9A273289505F(L_10, L_9, /*hidden argument*/NULL);
MatchInfo_set_accessToken_m359FEC01A40E84C1D44D7FE8B2B1A60F5D25A73F_inline(__this, L_10, /*hidden argument*/NULL);
CreateMatchResponse_t1138835A2F19EA07436177C577ABC9984B9F93E2 * L_11 = ___matchResponse0;
NullCheck(L_11);
uint16_t L_12 = L_11->get_nodeId_7();
MatchInfo_set_nodeId_m33003F730A881B20E2971B5621FFE1C180F9B852_inline(__this, L_12, /*hidden argument*/NULL);
CreateMatchResponse_t1138835A2F19EA07436177C577ABC9984B9F93E2 * L_13 = ___matchResponse0;
NullCheck(L_13);
bool L_14 = L_13->get_usingRelay_8();
MatchInfo_set_usingRelay_mDB319BCBB310B8BD802ED0DC5514ED75209B092A_inline(__this, L_14, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Networking.Match.MatchInfo::.ctor(UnityEngine.Networking.Match.JoinMatchResponse)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchInfo__ctor_mEB97EE7C36641071264FEEC81AC2C6926E3B9657 (MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67 * __this, JoinMatchResponse_t6F5BCC11BC546B850CB72C9DEF63D520F4F6946D * ___matchResponse0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
JoinMatchResponse_t6F5BCC11BC546B850CB72C9DEF63D520F4F6946D * L_0 = ___matchResponse0;
NullCheck(L_0);
String_t* L_1 = L_0->get_address_2();
MatchInfo_set_address_m3890A46355BE0177B9434F4EF1016C93E4C66E89_inline(__this, L_1, /*hidden argument*/NULL);
JoinMatchResponse_t6F5BCC11BC546B850CB72C9DEF63D520F4F6946D * L_2 = ___matchResponse0;
NullCheck(L_2);
int32_t L_3 = L_2->get_port_3();
MatchInfo_set_port_m4F079B17EE7B17FEB5018568E245CD7BE4E8A889_inline(__this, L_3, /*hidden argument*/NULL);
JoinMatchResponse_t6F5BCC11BC546B850CB72C9DEF63D520F4F6946D * L_4 = ___matchResponse0;
NullCheck(L_4);
int32_t L_5 = L_4->get_domain_4();
MatchInfo_set_domain_mD6A02961C3FCF81C65FF52F9E05AE1C9520C2057_inline(__this, L_5, /*hidden argument*/NULL);
JoinMatchResponse_t6F5BCC11BC546B850CB72C9DEF63D520F4F6946D * L_6 = ___matchResponse0;
NullCheck(L_6);
uint64_t L_7 = L_6->get_networkId_5();
MatchInfo_set_networkId_mF06B1A76AE877FEF8F90091550CBE7C04395249C_inline(__this, L_7, /*hidden argument*/NULL);
JoinMatchResponse_t6F5BCC11BC546B850CB72C9DEF63D520F4F6946D * L_8 = ___matchResponse0;
NullCheck(L_8);
String_t* L_9 = L_8->get_accessTokenString_6();
NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481 * L_10 = (NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481 *)il2cpp_codegen_object_new(NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481_il2cpp_TypeInfo_var);
NetworkAccessToken__ctor_m1BE41B5F2C9C380423AD3C4EC4FB9A273289505F(L_10, L_9, /*hidden argument*/NULL);
MatchInfo_set_accessToken_m359FEC01A40E84C1D44D7FE8B2B1A60F5D25A73F_inline(__this, L_10, /*hidden argument*/NULL);
JoinMatchResponse_t6F5BCC11BC546B850CB72C9DEF63D520F4F6946D * L_11 = ___matchResponse0;
NullCheck(L_11);
uint16_t L_12 = L_11->get_nodeId_7();
MatchInfo_set_nodeId_m33003F730A881B20E2971B5621FFE1C180F9B852_inline(__this, L_12, /*hidden argument*/NULL);
JoinMatchResponse_t6F5BCC11BC546B850CB72C9DEF63D520F4F6946D * L_13 = ___matchResponse0;
NullCheck(L_13);
bool L_14 = L_13->get_usingRelay_8();
MatchInfo_set_usingRelay_mDB319BCBB310B8BD802ED0DC5514ED75209B092A_inline(__this, L_14, /*hidden argument*/NULL);
return;
}
}
// System.String UnityEngine.Networking.Match.MatchInfo::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MatchInfo_ToString_mCA202826607DB4B9A62CC0E2406BE48A4675C894 (MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkID_tA7160DE9FBEE6E236564AEA6C328B6180FC368C3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NodeID_t07417F7D8D30332570E9D4A123D9E8B7CA1D1E80_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1982FBA5FFA052139BF60A6A80D09A1F2C54D0E5);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)5);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = L_0;
uint64_t L_2;
L_2 = MatchInfo_get_networkId_m85F41C6EF913403668CF02D8E2161A97165B4F9F_inline(__this, /*hidden argument*/NULL);
uint64_t L_3 = L_2;
RuntimeObject * L_4 = Box(NetworkID_tA7160DE9FBEE6E236564AEA6C328B6180FC368C3_il2cpp_TypeInfo_var, &L_3);
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_4);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_4);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_5 = L_1;
String_t* L_6;
L_6 = MatchInfo_get_address_mD2E2A1FACE5451D7191ADAF11F7A7C3DD2BAF475_inline(__this, /*hidden argument*/NULL);
NullCheck(L_5);
ArrayElementTypeCheck (L_5, L_6);
(L_5)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_6);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_7 = L_5;
int32_t L_8;
L_8 = MatchInfo_get_port_m927D4247843F4AEB1BD72AB83ED032DA92BDEEB7_inline(__this, /*hidden argument*/NULL);
int32_t L_9 = L_8;
RuntimeObject * L_10 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_9);
NullCheck(L_7);
ArrayElementTypeCheck (L_7, L_10);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_10);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_11 = L_7;
uint16_t L_12;
L_12 = MatchInfo_get_nodeId_m8E065595B2BD6F97873189C5697402E44DAC58C9_inline(__this, /*hidden argument*/NULL);
uint16_t L_13 = L_12;
RuntimeObject * L_14 = Box(NodeID_t07417F7D8D30332570E9D4A123D9E8B7CA1D1E80_il2cpp_TypeInfo_var, &L_13);
NullCheck(L_11);
ArrayElementTypeCheck (L_11, L_14);
(L_11)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_14);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_15 = L_11;
bool L_16;
L_16 = MatchInfo_get_usingRelay_m7256FADA60AF340CA978CBFBE1A67944EEC19771_inline(__this, /*hidden argument*/NULL);
bool L_17 = L_16;
RuntimeObject * L_18 = Box(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var, &L_17);
NullCheck(L_15);
ArrayElementTypeCheck (L_15, L_18);
(L_15)->SetAt(static_cast<il2cpp_array_size_t>(4), (RuntimeObject *)L_18);
String_t* L_19;
L_19 = UnityString_Format_m7A07C068ED408DD06F634070770FB55F13AA4EC9(_stringLiteral1982FBA5FFA052139BF60A6A80D09A1F2C54D0E5, L_15, /*hidden argument*/NULL);
V_0 = L_19;
goto IL_0055;
}
IL_0055:
{
String_t* L_20 = V_0;
return L_20;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Networking.Types.NetworkID UnityEngine.Networking.Match.MatchInfoSnapshot::get_networkId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t MatchInfoSnapshot_get_networkId_mF5A80C279C96F9E3DF9DEE15EF30513905FF1D94 (MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0 * __this, const RuntimeMethod* method)
{
{
uint64_t L_0 = __this->get_U3CnetworkIdU3Ek__BackingField_0();
return L_0;
}
}
// System.Void UnityEngine.Networking.Match.MatchInfoSnapshot::set_networkId(UnityEngine.Networking.Types.NetworkID)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchInfoSnapshot_set_networkId_m42E6ADF32A3C61014374C3A1ED0D81E4C503399F (MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0 * __this, uint64_t ___value0, const RuntimeMethod* method)
{
{
uint64_t L_0 = ___value0;
__this->set_U3CnetworkIdU3Ek__BackingField_0(L_0);
return;
}
}
// System.Void UnityEngine.Networking.Match.MatchInfoSnapshot::set_hostNodeId(UnityEngine.Networking.Types.NodeID)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchInfoSnapshot_set_hostNodeId_m6F821EBAB54B742B9DB89C3A0D6D3F92594BFDCD (MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0 * __this, uint16_t ___value0, const RuntimeMethod* method)
{
{
uint16_t L_0 = ___value0;
__this->set_U3ChostNodeIdU3Ek__BackingField_1(L_0);
return;
}
}
// System.String UnityEngine.Networking.Match.MatchInfoSnapshot::get_name()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* MatchInfoSnapshot_get_name_m237C7E9A504A0859BCD11E64E0673BA24CC70098 (MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_U3CnameU3Ek__BackingField_2();
return L_0;
}
}
// System.Void UnityEngine.Networking.Match.MatchInfoSnapshot::set_name(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchInfoSnapshot_set_name_m1445121C935DCF0ECCC95C99BCD0BCCC48717E6D (MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CnameU3Ek__BackingField_2(L_0);
return;
}
}
// System.Void UnityEngine.Networking.Match.MatchInfoSnapshot::set_averageEloScore(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchInfoSnapshot_set_averageEloScore_mC3282AF93AB1EEC7A000CA6746368022D9A5C753 (MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set_U3CaverageEloScoreU3Ek__BackingField_3(L_0);
return;
}
}
// System.Void UnityEngine.Networking.Match.MatchInfoSnapshot::set_maxSize(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchInfoSnapshot_set_maxSize_m3395A6A69B1FE1011D201373000CC619D48281A7 (MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set_U3CmaxSizeU3Ek__BackingField_4(L_0);
return;
}
}
// System.Void UnityEngine.Networking.Match.MatchInfoSnapshot::set_currentSize(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchInfoSnapshot_set_currentSize_m6C711BD86215823980979BA1F641B3A2C4BCAED7 (MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set_U3CcurrentSizeU3Ek__BackingField_5(L_0);
return;
}
}
// System.Void UnityEngine.Networking.Match.MatchInfoSnapshot::set_isPrivate(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchInfoSnapshot_set_isPrivate_m084E967180A94041EB3800784FF06C2772D41FBE (MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0 * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CisPrivateU3Ek__BackingField_6(L_0);
return;
}
}
// System.Void UnityEngine.Networking.Match.MatchInfoSnapshot::set_matchAttributes(System.Collections.Generic.Dictionary`2<System.String,System.Int64>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchInfoSnapshot_set_matchAttributes_m82974C5D806695B0029F02B2D85F324BA746BB84 (MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0 * __this, Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * ___value0, const RuntimeMethod* method)
{
{
Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * L_0 = ___value0;
__this->set_U3CmatchAttributesU3Ek__BackingField_7(L_0);
return;
}
}
// System.Collections.Generic.List`1<UnityEngine.Networking.Match.MatchInfoSnapshot/MatchInfoDirectConnectSnapshot> UnityEngine.Networking.Match.MatchInfoSnapshot::get_directConnectInfos()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t25DD639486662E92B4B3EF461C654CEBB4202FFC * MatchInfoSnapshot_get_directConnectInfos_m0B9DA5AC8C3BE0B9709195356BDA9F837166095C (MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0 * __this, const RuntimeMethod* method)
{
{
List_1_t25DD639486662E92B4B3EF461C654CEBB4202FFC * L_0 = __this->get_U3CdirectConnectInfosU3Ek__BackingField_8();
return L_0;
}
}
// System.Void UnityEngine.Networking.Match.MatchInfoSnapshot::set_directConnectInfos(System.Collections.Generic.List`1<UnityEngine.Networking.Match.MatchInfoSnapshot/MatchInfoDirectConnectSnapshot>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchInfoSnapshot_set_directConnectInfos_m77C6BD3239DD46327788981E828C5028709BE5ED (MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0 * __this, List_1_t25DD639486662E92B4B3EF461C654CEBB4202FFC * ___value0, const RuntimeMethod* method)
{
{
List_1_t25DD639486662E92B4B3EF461C654CEBB4202FFC * L_0 = ___value0;
__this->set_U3CdirectConnectInfosU3Ek__BackingField_8(L_0);
return;
}
}
// System.Void UnityEngine.Networking.Match.MatchInfoSnapshot::.ctor(UnityEngine.Networking.Match.MatchDesc)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchInfoSnapshot__ctor_mE27E4F585E32808834F47DF38512AF92A9655B20 (MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0 * __this, MatchDesc_t49F2F401AE3A8B8B80EDF9838F88127727B4108B * ___matchDesc0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m662A014112C06C898F29525911252A9642D16193_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_mE2441137766623FBFEAF548F2538C35D4D61B23F_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mC47AA20564FA3ABDFC9B2D9BE356BE78D7A93E02_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m5B19AB51FE854D02B9A506D94605914F9ED11873_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_m106D5C445A0F9D9A7F7C474EC7ECE771F547FA49_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m8897F69EB53EE9937B1CBFF754341A998840CAC5_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t25DD639486662E92B4B3EF461C654CEBB4202FFC_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MatchInfoDirectConnectSnapshot_t82741E9963C92FE12F5CB64A40851676E4677F6C_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Enumerator_tB6D812E1E33FD08D6BB06CA775258CF6493EB5C6 V_0;
memset((&V_0), 0, sizeof(V_0));
MatchDirectConnectInfo_t79A507F1704A58987DFC695D74214C9726BF78A4 * V_1 = NULL;
Exception_t * __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
MatchDesc_t49F2F401AE3A8B8B80EDF9838F88127727B4108B * L_0 = ___matchDesc0;
NullCheck(L_0);
uint64_t L_1 = L_0->get_networkId_0();
MatchInfoSnapshot_set_networkId_m42E6ADF32A3C61014374C3A1ED0D81E4C503399F_inline(__this, L_1, /*hidden argument*/NULL);
MatchDesc_t49F2F401AE3A8B8B80EDF9838F88127727B4108B * L_2 = ___matchDesc0;
NullCheck(L_2);
uint16_t L_3 = L_2->get_hostNodeId_7();
MatchInfoSnapshot_set_hostNodeId_m6F821EBAB54B742B9DB89C3A0D6D3F92594BFDCD_inline(__this, L_3, /*hidden argument*/NULL);
MatchDesc_t49F2F401AE3A8B8B80EDF9838F88127727B4108B * L_4 = ___matchDesc0;
NullCheck(L_4);
String_t* L_5 = L_4->get_name_1();
MatchInfoSnapshot_set_name_m1445121C935DCF0ECCC95C99BCD0BCCC48717E6D_inline(__this, L_5, /*hidden argument*/NULL);
MatchDesc_t49F2F401AE3A8B8B80EDF9838F88127727B4108B * L_6 = ___matchDesc0;
NullCheck(L_6);
int32_t L_7 = L_6->get_averageEloScore_2();
MatchInfoSnapshot_set_averageEloScore_mC3282AF93AB1EEC7A000CA6746368022D9A5C753_inline(__this, L_7, /*hidden argument*/NULL);
MatchDesc_t49F2F401AE3A8B8B80EDF9838F88127727B4108B * L_8 = ___matchDesc0;
NullCheck(L_8);
int32_t L_9 = L_8->get_maxSize_3();
MatchInfoSnapshot_set_maxSize_m3395A6A69B1FE1011D201373000CC619D48281A7_inline(__this, L_9, /*hidden argument*/NULL);
MatchDesc_t49F2F401AE3A8B8B80EDF9838F88127727B4108B * L_10 = ___matchDesc0;
NullCheck(L_10);
int32_t L_11 = L_10->get_currentSize_4();
MatchInfoSnapshot_set_currentSize_m6C711BD86215823980979BA1F641B3A2C4BCAED7_inline(__this, L_11, /*hidden argument*/NULL);
MatchDesc_t49F2F401AE3A8B8B80EDF9838F88127727B4108B * L_12 = ___matchDesc0;
NullCheck(L_12);
bool L_13 = L_12->get_isPrivate_5();
MatchInfoSnapshot_set_isPrivate_m084E967180A94041EB3800784FF06C2772D41FBE_inline(__this, L_13, /*hidden argument*/NULL);
MatchDesc_t49F2F401AE3A8B8B80EDF9838F88127727B4108B * L_14 = ___matchDesc0;
NullCheck(L_14);
Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * L_15 = L_14->get_matchAttributes_6();
MatchInfoSnapshot_set_matchAttributes_m82974C5D806695B0029F02B2D85F324BA746BB84_inline(__this, L_15, /*hidden argument*/NULL);
List_1_t25DD639486662E92B4B3EF461C654CEBB4202FFC * L_16 = (List_1_t25DD639486662E92B4B3EF461C654CEBB4202FFC *)il2cpp_codegen_object_new(List_1_t25DD639486662E92B4B3EF461C654CEBB4202FFC_il2cpp_TypeInfo_var);
List_1__ctor_m8897F69EB53EE9937B1CBFF754341A998840CAC5(L_16, /*hidden argument*/List_1__ctor_m8897F69EB53EE9937B1CBFF754341A998840CAC5_RuntimeMethod_var);
MatchInfoSnapshot_set_directConnectInfos_m77C6BD3239DD46327788981E828C5028709BE5ED_inline(__this, L_16, /*hidden argument*/NULL);
MatchDesc_t49F2F401AE3A8B8B80EDF9838F88127727B4108B * L_17 = ___matchDesc0;
NullCheck(L_17);
List_1_t634AFA3BC7CA26F185BBC2A460A21D2F89EE10FA * L_18 = L_17->get_directConnectInfos_8();
NullCheck(L_18);
Enumerator_tB6D812E1E33FD08D6BB06CA775258CF6493EB5C6 L_19;
L_19 = List_1_GetEnumerator_m106D5C445A0F9D9A7F7C474EC7ECE771F547FA49(L_18, /*hidden argument*/List_1_GetEnumerator_m106D5C445A0F9D9A7F7C474EC7ECE771F547FA49_RuntimeMethod_var);
V_0 = L_19;
}
IL_0089:
try
{ // begin try (depth: 1)
{
goto IL_00a7;
}
IL_008b:
{
MatchDirectConnectInfo_t79A507F1704A58987DFC695D74214C9726BF78A4 * L_20;
L_20 = Enumerator_get_Current_mC47AA20564FA3ABDFC9B2D9BE356BE78D7A93E02_inline((Enumerator_tB6D812E1E33FD08D6BB06CA775258CF6493EB5C6 *)(&V_0), /*hidden argument*/Enumerator_get_Current_mC47AA20564FA3ABDFC9B2D9BE356BE78D7A93E02_RuntimeMethod_var);
V_1 = L_20;
List_1_t25DD639486662E92B4B3EF461C654CEBB4202FFC * L_21;
L_21 = MatchInfoSnapshot_get_directConnectInfos_m0B9DA5AC8C3BE0B9709195356BDA9F837166095C_inline(__this, /*hidden argument*/NULL);
MatchDirectConnectInfo_t79A507F1704A58987DFC695D74214C9726BF78A4 * L_22 = V_1;
MatchInfoDirectConnectSnapshot_t82741E9963C92FE12F5CB64A40851676E4677F6C * L_23 = (MatchInfoDirectConnectSnapshot_t82741E9963C92FE12F5CB64A40851676E4677F6C *)il2cpp_codegen_object_new(MatchInfoDirectConnectSnapshot_t82741E9963C92FE12F5CB64A40851676E4677F6C_il2cpp_TypeInfo_var);
MatchInfoDirectConnectSnapshot__ctor_m54187853AA7417564146819AFB578DE4905B2AFF(L_23, L_22, /*hidden argument*/NULL);
NullCheck(L_21);
List_1_Add_m5B19AB51FE854D02B9A506D94605914F9ED11873(L_21, L_23, /*hidden argument*/List_1_Add_m5B19AB51FE854D02B9A506D94605914F9ED11873_RuntimeMethod_var);
}
IL_00a7:
{
bool L_24;
L_24 = Enumerator_MoveNext_mE2441137766623FBFEAF548F2538C35D4D61B23F((Enumerator_tB6D812E1E33FD08D6BB06CA775258CF6493EB5C6 *)(&V_0), /*hidden argument*/Enumerator_MoveNext_mE2441137766623FBFEAF548F2538C35D4D61B23F_RuntimeMethod_var);
if (L_24)
{
goto IL_008b;
}
}
IL_00b0:
{
IL2CPP_LEAVE(0xC1, FINALLY_00b2);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_00b2;
}
FINALLY_00b2:
{ // begin finally (depth: 1)
Enumerator_Dispose_m662A014112C06C898F29525911252A9642D16193((Enumerator_tB6D812E1E33FD08D6BB06CA775258CF6493EB5C6 *)(&V_0), /*hidden argument*/Enumerator_Dispose_m662A014112C06C898F29525911252A9642D16193_RuntimeMethod_var);
IL2CPP_END_FINALLY(178)
} // end finally (depth: 1)
IL2CPP_CLEANUP(178)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0xC1, IL_00c1)
}
IL_00c1:
{
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 UnityEngine.Networking.Types.NetworkAccessToken::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkAccessToken__ctor_m2CF052E50D9B3171B669859E021ABF33959D6019 (NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)((int32_t)64));
__this->set_array_1(L_0);
return;
}
}
// System.Void UnityEngine.Networking.Types.NetworkAccessToken::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkAccessToken__ctor_m1BE41B5F2C9C380423AD3C4EC4FB9A273289505F (NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481 * __this, String_t* ___strArray0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
il2cpp::utils::ExceptionSupportStack<int32_t, 2> __leave_targets;
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
}
IL_0008:
try
{ // begin try (depth: 1)
String_t* L_0 = ___strArray0;
IL2CPP_RUNTIME_CLASS_INIT(Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1;
L_1 = Convert_FromBase64String_mB2E4E2CD03B34DB7C2665694D5B2E967BC81E9A8(L_0, /*hidden argument*/NULL);
__this->set_array_1(L_1);
goto IL_002a;
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0018;
}
throw e;
}
CATCH_0018:
{ // begin catch(System.Exception)
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var)), (uint32_t)((int32_t)64));
__this->set_array_1(L_2);
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_002a;
} // end catch (depth: 1)
IL_002a:
{
return;
}
}
// System.String UnityEngine.Networking.Types.NetworkAccessToken::GetByteString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NetworkAccessToken_GetByteString_m15886A9E88F5D490BB595D91F9282D458E1EB79F (NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = __this->get_array_1();
IL2CPP_RUNTIME_CLASS_INIT(Convert_tDA947A979C1DAB4F09C461FAFD94FE194743A671_il2cpp_TypeInfo_var);
String_t* L_1;
L_1 = Convert_ToBase64String_mE6E1FE504EF1E99DB2F8B92180A82A5F1512EF6A(L_0, /*hidden argument*/NULL);
V_0 = L_1;
goto IL_000f;
}
IL_000f:
{
String_t* L_2 = V_0;
return L_2;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#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.Uri UnityEngine.Networking.Match.NetworkMatch::get_baseUri()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * NetworkMatch_get_baseUri_m9B38E09829D78200CC4BD750427337581F702945 (NetworkMatch_t520F80EBC98ADEE375884B456429236E5BBA0F3B * __this, const RuntimeMethod* method)
{
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * V_0 = NULL;
{
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_0 = __this->get_m_BaseUri_4();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_1 = V_0;
return L_1;
}
}
// System.Void UnityEngine.Networking.Match.NetworkMatch::set_baseUri(System.Uri)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkMatch_set_baseUri_mFFFF9F969971517404E1E893DF49C635861B2224 (NetworkMatch_t520F80EBC98ADEE375884B456429236E5BBA0F3B * __this, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___value0, const RuntimeMethod* method)
{
{
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_0 = ___value0;
__this->set_m_BaseUri_4(L_0);
return;
}
}
// System.Void UnityEngine.Networking.Match.NetworkMatch::SetProgramAppID(UnityEngine.Networking.Types.AppID)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkMatch_SetProgramAppID_mE5B7AEF38F1F9DB067FE6C4087873147B7681713 (NetworkMatch_t520F80EBC98ADEE375884B456429236E5BBA0F3B * __this, uint64_t ___programAppID0, const RuntimeMethod* method)
{
{
return;
}
}
// UnityEngine.Coroutine UnityEngine.Networking.Match.NetworkMatch::CreateMatch(System.String,System.UInt32,System.Boolean,System.String,System.String,System.String,System.Int32,System.Int32,UnityEngine.Networking.Match.NetworkMatch/DataResponseDelegate`1<UnityEngine.Networking.Match.MatchInfo>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * NetworkMatch_CreateMatch_m3E52ED760F4487B802CCF26700290D7171D92952 (NetworkMatch_t520F80EBC98ADEE375884B456429236E5BBA0F3B * __this, String_t* ___matchName0, uint32_t ___matchSize1, bool ___matchAdvertise2, String_t* ___matchPassword3, String_t* ___publicClientAddress4, String_t* ___privateClientAddress5, int32_t ___eloScoreForMatch6, int32_t ___requestDomain7, DataResponseDelegate_1_t7F092A4A713EEB7DDA047E650E8F690094B5D733 * ___callback8, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7896E01D34168C60ECE45B2AD00FB87A6632B332);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * V_1 = NULL;
{
int32_t L_0;
L_0 = Application_get_platform_mB22F7F39CDD46667C3EF64507E55BB7DA18F66C4(/*hidden argument*/NULL);
V_0 = (bool)((((int32_t)L_0) == ((int32_t)((int32_t)17)))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_001e;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var);
Debug_LogError_m8850D65592770A364D494025FF3A73E8D4D70485(_stringLiteral7896E01D34168C60ECE45B2AD00FB87A6632B332, /*hidden argument*/NULL);
V_1 = (Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 *)NULL;
goto IL_0073;
}
IL_001e:
{
CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * L_2 = (CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B *)il2cpp_codegen_object_new(CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B_il2cpp_TypeInfo_var);
CreateMatchRequest__ctor_mFC42C67684BC0A1D83C6E9C3DF5C6190DA03C024(L_2, /*hidden argument*/NULL);
CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * L_3 = L_2;
String_t* L_4 = ___matchName0;
NullCheck(L_3);
CreateMatchRequest_set_name_mE0B8D4C54AE982080E74B8D40FFAA7529D09A0A8_inline(L_3, L_4, /*hidden argument*/NULL);
CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * L_5 = L_3;
uint32_t L_6 = ___matchSize1;
NullCheck(L_5);
CreateMatchRequest_set_size_m87F0CE15BF61656B21FFD4A7D7AD000752F90D0F_inline(L_5, L_6, /*hidden argument*/NULL);
CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * L_7 = L_5;
bool L_8 = ___matchAdvertise2;
NullCheck(L_7);
CreateMatchRequest_set_advertise_m7A979119781F3358FD0166BDE484212579F27FED_inline(L_7, L_8, /*hidden argument*/NULL);
CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * L_9 = L_7;
String_t* L_10 = ___matchPassword3;
NullCheck(L_9);
CreateMatchRequest_set_password_m1ED11F41F58A9B3C2E87103625D46E4BB497A9AD_inline(L_9, L_10, /*hidden argument*/NULL);
CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * L_11 = L_9;
String_t* L_12 = ___publicClientAddress4;
NullCheck(L_11);
CreateMatchRequest_set_publicAddress_m8B3FFBDAC322E8818A1A9C97F32A3D7A87FC78E2_inline(L_11, L_12, /*hidden argument*/NULL);
CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * L_13 = L_11;
String_t* L_14 = ___privateClientAddress5;
NullCheck(L_13);
CreateMatchRequest_set_privateAddress_mDD2D5C34B6879086BAB56DD932BE91666BA370D3_inline(L_13, L_14, /*hidden argument*/NULL);
CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * L_15 = L_13;
int32_t L_16 = ___eloScoreForMatch6;
NullCheck(L_15);
CreateMatchRequest_set_eloScore_m029428732F257F688E21C3D69AF794FEA4E8EFC7_inline(L_15, L_16, /*hidden argument*/NULL);
CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * L_17 = L_15;
int32_t L_18 = ___requestDomain7;
NullCheck(L_17);
Request_set_domain_m5D9E2F4FC5FD9612666940E8ADB7C0E6F42354FC_inline(L_17, L_18, /*hidden argument*/NULL);
DataResponseDelegate_1_t7F092A4A713EEB7DDA047E650E8F690094B5D733 * L_19 = ___callback8;
Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * L_20;
L_20 = NetworkMatch_CreateMatch_mED032BA9E5A14614E19A4E0B665152E038BEEF5D(__this, L_17, L_19, /*hidden argument*/NULL);
V_1 = L_20;
goto IL_0073;
}
IL_0073:
{
Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * L_21 = V_1;
return L_21;
}
}
// UnityEngine.Coroutine UnityEngine.Networking.Match.NetworkMatch::CreateMatch(UnityEngine.Networking.Match.CreateMatchRequest,UnityEngine.Networking.Match.NetworkMatch/DataResponseDelegate`1<UnityEngine.Networking.Match.MatchInfo>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * NetworkMatch_CreateMatch_mED032BA9E5A14614E19A4E0B665152E038BEEF5D (NetworkMatch_t520F80EBC98ADEE375884B456429236E5BBA0F3B * __this, CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * ___req0, DataResponseDelegate_1_t7F092A4A713EEB7DDA047E650E8F690094B5D733 * ___callback1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_set_Item_m31C41E4FE938066440DAFD1E667C2F3986549668_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InternalResponseDelegate_2__ctor_mF17D4320A3FF8AE1DE3BAF5020DF0D0A35F4F368_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InternalResponseDelegate_2_tF18FC1B00D1213BC60AE7B8E0C6768ECC6864C08_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkMatch_ProcessMatchResponse_TisCreateMatchResponse_t1138835A2F19EA07436177C577ABC9984B9F93E2_TisDataResponseDelegate_1_t7F092A4A713EEB7DDA047E650E8F690094B5D733_m7A762CE8A0D3C5A40E18F753AD2110813658AEB9_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Request_tA1BC1936C153408449C4C207CA12D4358A7477FD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SourceID_tBE00015EA0F2E5DAEBEC7D0210216A18EB6DA62D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utility_t1BA2108022A500F65615E46E75D6A58D03F1E874_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral08B765E9CCC2538FF59EF166FFEF6E41729AD494);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral11E42B7A5E1CF74E4375D71D8CE94F3D8D446DBA);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral14693920B7544ED151BF377173FB1F4A2488E785);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral16D46E00A879AD1C9053ED90B4B148D721A45E92);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3EE5A4671A4E5AEBD31CA5F013A7773DC18ED22B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral45DE596A22B9D99D208C584D76366FDDF8249A1C);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4D60F161B5C88B523D921345EE1BB37229C991D0);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral595320BA056F8106150E19C7F57653801E2B706A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral64058CC688A96A90239811EF06C9D20DB0499C3E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6EB30FE58A07B67E9CD022AE66788504FFEB1F39);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral99DF20B789B50B8C4A99635D3CCE3CD00E34953E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA009B6D2A048B8DC6D18F008E2ED77A79DDCE1C2);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCE18B047107AA23D1AA9B2ED32D316148E02655F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD2D2F8D3F9F04A081FFBE6B2AF7917BAAADFC052);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDE5E7F5D6D66C3421E5F09BD52048AA05EFC584B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE8F97FBA9104D1EA5047948E6DFB67FACD9F5B73);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFBFA6E6B8A316BF610915064DCF9AE580CE1C11D);
s_Il2CppMethodInitialized = true;
}
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * V_0 = NULL;
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * V_1 = NULL;
UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * V_2 = NULL;
bool V_3 = false;
Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * V_4 = NULL;
uint64_t V_5 = 0;
uint32_t V_6 = 0;
bool V_7 = false;
int32_t V_8 = 0;
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * G_B4_0 = NULL;
String_t* G_B4_1 = NULL;
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * G_B3_0 = NULL;
String_t* G_B3_1 = NULL;
String_t* G_B5_0 = NULL;
String_t* G_B5_1 = NULL;
{
DataResponseDelegate_1_t7F092A4A713EEB7DDA047E650E8F690094B5D733 * L_0 = ___callback1;
V_3 = (bool)((((RuntimeObject*)(DataResponseDelegate_1_t7F092A4A713EEB7DDA047E650E8F690094B5D733 *)L_0) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_1 = V_3;
if (!L_1)
{
goto IL_001d;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var);
Debug_Log_mC26E5AD0D8D156C7FFD173AA15827F69225E9DB8(_stringLiteral99DF20B789B50B8C4A99635D3CCE3CD00E34953E, /*hidden argument*/NULL);
V_4 = (Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 *)NULL;
goto IL_018d;
}
IL_001d:
{
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_2;
L_2 = NetworkMatch_get_baseUri_m9B38E09829D78200CC4BD750427337581F702945(__this, /*hidden argument*/NULL);
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_3 = (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 *)il2cpp_codegen_object_new(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var);
Uri__ctor_m0B44AFB01F3FEDE9319BA4556288340D16101F9D(L_3, L_2, _stringLiteral4D60F161B5C88B523D921345EE1BB37229C991D0, /*hidden argument*/NULL);
V_0 = L_3;
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_4 = V_0;
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_5 = L_4;
G_B3_0 = L_5;
G_B3_1 = _stringLiteral6EB30FE58A07B67E9CD022AE66788504FFEB1F39;
if (L_5)
{
G_B4_0 = L_5;
G_B4_1 = _stringLiteral6EB30FE58A07B67E9CD022AE66788504FFEB1F39;
goto IL_003b;
}
}
{
G_B5_0 = ((String_t*)(NULL));
G_B5_1 = G_B3_1;
goto IL_0040;
}
IL_003b:
{
NullCheck(G_B4_0);
String_t* L_6;
L_6 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, G_B4_0);
G_B5_0 = L_6;
G_B5_1 = G_B4_1;
}
IL_0040:
{
String_t* L_7;
L_7 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(G_B5_1, G_B5_0, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var);
Debug_Log_mC26E5AD0D8D156C7FFD173AA15827F69225E9DB8(L_7, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_8 = (WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB *)il2cpp_codegen_object_new(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var);
WWWForm__ctor_mA0987933892AF6FA9E01603B214E86EC52F6B055(L_8, /*hidden argument*/NULL);
V_1 = L_8;
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_9 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Request_tA1BC1936C153408449C4C207CA12D4358A7477FD_il2cpp_TypeInfo_var);
int32_t L_10 = ((Request_tA1BC1936C153408449C4C207CA12D4358A7477FD_StaticFields*)il2cpp_codegen_static_fields_for(Request_tA1BC1936C153408449C4C207CA12D4358A7477FD_il2cpp_TypeInfo_var))->get_currentVersion_0();
NullCheck(L_9);
WWWForm_AddField_m20BED9E7C237D585E5D040A5D815D9C7DC16990C(L_9, _stringLiteralD2D2F8D3F9F04A081FFBE6B2AF7917BAAADFC052, L_10, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_11 = V_1;
String_t* L_12;
L_12 = Application_get_cloudProjectId_m4428D3F30727F38D42D63962932341043560E43D(/*hidden argument*/NULL);
NullCheck(L_11);
WWWForm_AddField_m8ACDB7B2124FA6EAD7FC120BB469C6352C7B7696(L_11, _stringLiteral595320BA056F8106150E19C7F57653801E2B706A, L_12, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_13 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Utility_t1BA2108022A500F65615E46E75D6A58D03F1E874_il2cpp_TypeInfo_var);
uint64_t L_14;
L_14 = Utility_GetSourceID_m958E8557A6FBCAC4594B4B7A5014BBA266D8EDBE(/*hidden argument*/NULL);
V_5 = L_14;
RuntimeObject * L_15 = Box(SourceID_tBE00015EA0F2E5DAEBEC7D0210216A18EB6DA62D_il2cpp_TypeInfo_var, (&V_5));
NullCheck(L_15);
String_t* L_16;
L_16 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_15);
V_5 = *(uint64_t*)UnBox(L_15);
NullCheck(L_13);
WWWForm_AddField_m8ACDB7B2124FA6EAD7FC120BB469C6352C7B7696(L_13, _stringLiteralA009B6D2A048B8DC6D18F008E2ED77A79DDCE1C2, L_16, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_17 = V_1;
NullCheck(L_17);
WWWForm_AddField_m20BED9E7C237D585E5D040A5D815D9C7DC16990C(L_17, _stringLiteral14693920B7544ED151BF377173FB1F4A2488E785, 0, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_18 = V_1;
CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * L_19 = ___req0;
NullCheck(L_19);
int32_t L_20;
L_20 = Request_get_domain_m37B9BBD8B6369C7170CBF3562A46C9094FB3360F_inline(L_19, /*hidden argument*/NULL);
NullCheck(L_18);
WWWForm_AddField_m20BED9E7C237D585E5D040A5D815D9C7DC16990C(L_18, _stringLiteral11E42B7A5E1CF74E4375D71D8CE94F3D8D446DBA, L_20, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_21 = V_1;
CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * L_22 = ___req0;
NullCheck(L_22);
String_t* L_23;
L_23 = CreateMatchRequest_get_name_mDB5F67F45F566D176B840FFAABAF0A5072DB56A0_inline(L_22, /*hidden argument*/NULL);
NullCheck(L_21);
WWWForm_AddField_m8ACDB7B2124FA6EAD7FC120BB469C6352C7B7696(L_21, _stringLiteralCE18B047107AA23D1AA9B2ED32D316148E02655F, L_23, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_24 = V_1;
CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * L_25 = ___req0;
NullCheck(L_25);
uint32_t L_26;
L_26 = CreateMatchRequest_get_size_mD2818C6FA732FB6DAF315D665C3FF9E097F023EA_inline(L_25, /*hidden argument*/NULL);
V_6 = L_26;
String_t* L_27;
L_27 = UInt32_ToString_mEB55F257429D34ED2BF41AE9567096F1F969B9A0((uint32_t*)(&V_6), /*hidden argument*/NULL);
NullCheck(L_24);
WWWForm_AddField_m8ACDB7B2124FA6EAD7FC120BB469C6352C7B7696(L_24, _stringLiteral3EE5A4671A4E5AEBD31CA5F013A7773DC18ED22B, L_27, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_28 = V_1;
CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * L_29 = ___req0;
NullCheck(L_29);
bool L_30;
L_30 = CreateMatchRequest_get_advertise_mC6F7A0C2EC590E0A5A5F6C02CB515D2F7FC5E044_inline(L_29, /*hidden argument*/NULL);
V_7 = L_30;
String_t* L_31;
L_31 = Boolean_ToString_m59BB8456DD05A874BBD756E57EA8AD983287015C((bool*)(&V_7), /*hidden argument*/NULL);
NullCheck(L_28);
WWWForm_AddField_m8ACDB7B2124FA6EAD7FC120BB469C6352C7B7696(L_28, _stringLiteral45DE596A22B9D99D208C584D76366FDDF8249A1C, L_31, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_32 = V_1;
CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * L_33 = ___req0;
NullCheck(L_33);
String_t* L_34;
L_34 = CreateMatchRequest_get_password_mA3A25AEF3994F75CC2663A003D6B762E53470A90_inline(L_33, /*hidden argument*/NULL);
NullCheck(L_32);
WWWForm_AddField_m8ACDB7B2124FA6EAD7FC120BB469C6352C7B7696(L_32, _stringLiteralE8F97FBA9104D1EA5047948E6DFB67FACD9F5B73, L_34, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_35 = V_1;
CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * L_36 = ___req0;
NullCheck(L_36);
String_t* L_37;
L_37 = CreateMatchRequest_get_publicAddress_m500540EAFB70C64014B9DD733BCC7726473D006B_inline(L_36, /*hidden argument*/NULL);
NullCheck(L_35);
WWWForm_AddField_m8ACDB7B2124FA6EAD7FC120BB469C6352C7B7696(L_35, _stringLiteral08B765E9CCC2538FF59EF166FFEF6E41729AD494, L_37, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_38 = V_1;
CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * L_39 = ___req0;
NullCheck(L_39);
String_t* L_40;
L_40 = CreateMatchRequest_get_privateAddress_m2EA118F357CCA5EC32295C777B54469422D94AFA_inline(L_39, /*hidden argument*/NULL);
NullCheck(L_38);
WWWForm_AddField_m8ACDB7B2124FA6EAD7FC120BB469C6352C7B7696(L_38, _stringLiteralDE5E7F5D6D66C3421E5F09BD52048AA05EFC584B, L_40, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_41 = V_1;
CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * L_42 = ___req0;
NullCheck(L_42);
int32_t L_43;
L_43 = CreateMatchRequest_get_eloScore_m71DD51B39B031421C1D43029075DD796137A05B7_inline(L_42, /*hidden argument*/NULL);
V_8 = L_43;
String_t* L_44;
L_44 = Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411((int32_t*)(&V_8), /*hidden argument*/NULL);
NullCheck(L_41);
WWWForm_AddField_m8ACDB7B2124FA6EAD7FC120BB469C6352C7B7696(L_41, _stringLiteralFBFA6E6B8A316BF610915064DCF9AE580CE1C11D, L_44, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_45 = V_1;
NullCheck(L_45);
Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5 * L_46;
L_46 = WWWForm_get_headers_m9F6A4222926792B110E9821AF5B23FF3FB9BD45A(L_45, /*hidden argument*/NULL);
NullCheck(L_46);
Dictionary_2_set_Item_m31C41E4FE938066440DAFD1E667C2F3986549668(L_46, _stringLiteral16D46E00A879AD1C9053ED90B4B148D721A45E92, _stringLiteral64058CC688A96A90239811EF06C9D20DB0499C3E, /*hidden argument*/Dictionary_2_set_Item_m31C41E4FE938066440DAFD1E667C2F3986549668_RuntimeMethod_var);
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_47 = V_0;
NullCheck(L_47);
String_t* L_48;
L_48 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_47);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_49 = V_1;
UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * L_50;
L_50 = UnityWebRequest_Post_m5F29B83B6FEDEAEAAC938DD26AE484A2750DB646(L_48, L_49, /*hidden argument*/NULL);
V_2 = L_50;
UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * L_51 = V_2;
InternalResponseDelegate_2_tF18FC1B00D1213BC60AE7B8E0C6768ECC6864C08 * L_52 = (InternalResponseDelegate_2_tF18FC1B00D1213BC60AE7B8E0C6768ECC6864C08 *)il2cpp_codegen_object_new(InternalResponseDelegate_2_tF18FC1B00D1213BC60AE7B8E0C6768ECC6864C08_il2cpp_TypeInfo_var);
InternalResponseDelegate_2__ctor_mF17D4320A3FF8AE1DE3BAF5020DF0D0A35F4F368(L_52, __this, (intptr_t)((intptr_t)GetVirtualMethodInfo(__this, 4)), /*hidden argument*/InternalResponseDelegate_2__ctor_mF17D4320A3FF8AE1DE3BAF5020DF0D0A35F4F368_RuntimeMethod_var);
DataResponseDelegate_1_t7F092A4A713EEB7DDA047E650E8F690094B5D733 * L_53 = ___callback1;
RuntimeObject* L_54;
L_54 = NetworkMatch_ProcessMatchResponse_TisCreateMatchResponse_t1138835A2F19EA07436177C577ABC9984B9F93E2_TisDataResponseDelegate_1_t7F092A4A713EEB7DDA047E650E8F690094B5D733_m7A762CE8A0D3C5A40E18F753AD2110813658AEB9(__this, L_51, L_52, L_53, /*hidden argument*/NetworkMatch_ProcessMatchResponse_TisCreateMatchResponse_t1138835A2F19EA07436177C577ABC9984B9F93E2_TisDataResponseDelegate_1_t7F092A4A713EEB7DDA047E650E8F690094B5D733_m7A762CE8A0D3C5A40E18F753AD2110813658AEB9_RuntimeMethod_var);
Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * L_55;
L_55 = MonoBehaviour_StartCoroutine_m3E33706D38B23CDD179E99BAD61E32303E9CC719(__this, L_54, /*hidden argument*/NULL);
V_4 = L_55;
goto IL_018d;
}
IL_018d:
{
Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * L_56 = V_4;
return L_56;
}
}
// System.Void UnityEngine.Networking.Match.NetworkMatch::OnMatchCreate(UnityEngine.Networking.Match.CreateMatchResponse,UnityEngine.Networking.Match.NetworkMatch/DataResponseDelegate`1<UnityEngine.Networking.Match.MatchInfo>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkMatch_OnMatchCreate_m199572AD6B17D360784A3E9E33EC13050092605D (NetworkMatch_t520F80EBC98ADEE375884B456429236E5BBA0F3B * __this, CreateMatchResponse_t1138835A2F19EA07436177C577ABC9984B9F93E2 * ___response0, DataResponseDelegate_1_t7F092A4A713EEB7DDA047E650E8F690094B5D733 * ___userCallback1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataResponseDelegate_1_Invoke_m30198CE2090F7EFDF95347F2D69012BC34BD1E30_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utility_t1BA2108022A500F65615E46E75D6A58D03F1E874_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
CreateMatchResponse_t1138835A2F19EA07436177C577ABC9984B9F93E2 * L_0 = ___response0;
NullCheck(L_0);
bool L_1 = ((Response_tEF5C8607FB2DC4F1E0E744F3F9BAD3869B4BCD6C *)L_0)->get_success_0();
V_0 = L_1;
bool L_2 = V_0;
if (!L_2)
{
goto IL_0022;
}
}
{
CreateMatchResponse_t1138835A2F19EA07436177C577ABC9984B9F93E2 * L_3 = ___response0;
NullCheck(L_3);
uint64_t L_4 = L_3->get_networkId_5();
CreateMatchResponse_t1138835A2F19EA07436177C577ABC9984B9F93E2 * L_5 = ___response0;
NullCheck(L_5);
String_t* L_6 = L_5->get_accessTokenString_6();
NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481 * L_7 = (NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481 *)il2cpp_codegen_object_new(NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481_il2cpp_TypeInfo_var);
NetworkAccessToken__ctor_m1BE41B5F2C9C380423AD3C4EC4FB9A273289505F(L_7, L_6, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Utility_t1BA2108022A500F65615E46E75D6A58D03F1E874_il2cpp_TypeInfo_var);
Utility_SetAccessTokenForNetwork_mD6FA81F2FD77F041C236152BAC57F4FCA5D892CF(L_4, L_7, /*hidden argument*/NULL);
}
IL_0022:
{
DataResponseDelegate_1_t7F092A4A713EEB7DDA047E650E8F690094B5D733 * L_8 = ___userCallback1;
CreateMatchResponse_t1138835A2F19EA07436177C577ABC9984B9F93E2 * L_9 = ___response0;
NullCheck(L_9);
bool L_10 = ((Response_tEF5C8607FB2DC4F1E0E744F3F9BAD3869B4BCD6C *)L_9)->get_success_0();
CreateMatchResponse_t1138835A2F19EA07436177C577ABC9984B9F93E2 * L_11 = ___response0;
NullCheck(L_11);
String_t* L_12 = ((Response_tEF5C8607FB2DC4F1E0E744F3F9BAD3869B4BCD6C *)L_11)->get_extendedInfo_1();
CreateMatchResponse_t1138835A2F19EA07436177C577ABC9984B9F93E2 * L_13 = ___response0;
MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67 * L_14 = (MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67 *)il2cpp_codegen_object_new(MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67_il2cpp_TypeInfo_var);
MatchInfo__ctor_mD6FE977742C8C750ED0FC8F2B9471AF38BA05BE3(L_14, L_13, /*hidden argument*/NULL);
NullCheck(L_8);
DataResponseDelegate_1_Invoke_m30198CE2090F7EFDF95347F2D69012BC34BD1E30(L_8, L_10, L_12, L_14, /*hidden argument*/DataResponseDelegate_1_Invoke_m30198CE2090F7EFDF95347F2D69012BC34BD1E30_RuntimeMethod_var);
return;
}
}
// UnityEngine.Coroutine UnityEngine.Networking.Match.NetworkMatch::JoinMatch(UnityEngine.Networking.Types.NetworkID,System.String,System.String,System.String,System.Int32,System.Int32,UnityEngine.Networking.Match.NetworkMatch/DataResponseDelegate`1<UnityEngine.Networking.Match.MatchInfo>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * NetworkMatch_JoinMatch_m943446E9B318B8799BF6D9D04F55BBB439EAF025 (NetworkMatch_t520F80EBC98ADEE375884B456429236E5BBA0F3B * __this, uint64_t ___netId0, String_t* ___matchPassword1, String_t* ___publicClientAddress2, String_t* ___privateClientAddress3, int32_t ___eloScoreForClient4, int32_t ___requestDomain5, DataResponseDelegate_1_t7F092A4A713EEB7DDA047E650E8F690094B5D733 * ___callback6, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * V_0 = NULL;
{
JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A * L_0 = (JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A *)il2cpp_codegen_object_new(JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A_il2cpp_TypeInfo_var);
JoinMatchRequest__ctor_m044E97AD4881511506554BB7F54385EDB6B902BD(L_0, /*hidden argument*/NULL);
JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A * L_1 = L_0;
uint64_t L_2 = ___netId0;
NullCheck(L_1);
JoinMatchRequest_set_networkId_mA9CA6065937BD62F39138C9869BE6A5B686EA92C_inline(L_1, L_2, /*hidden argument*/NULL);
JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A * L_3 = L_1;
String_t* L_4 = ___matchPassword1;
NullCheck(L_3);
JoinMatchRequest_set_password_m2096D8C416175CF323600FBD5E1370E83FB8741C_inline(L_3, L_4, /*hidden argument*/NULL);
JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A * L_5 = L_3;
String_t* L_6 = ___publicClientAddress2;
NullCheck(L_5);
JoinMatchRequest_set_publicAddress_mB837E27EF72F8B9034A5B926F3F969044A9A7093_inline(L_5, L_6, /*hidden argument*/NULL);
JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A * L_7 = L_5;
String_t* L_8 = ___privateClientAddress3;
NullCheck(L_7);
JoinMatchRequest_set_privateAddress_mF07E855D339EE71B24EB95110B579262C74A55F1_inline(L_7, L_8, /*hidden argument*/NULL);
JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A * L_9 = L_7;
int32_t L_10 = ___eloScoreForClient4;
NullCheck(L_9);
JoinMatchRequest_set_eloScore_mDA8EAC91C261AD2C6D6A45AD9F3C0422EEEAB73E_inline(L_9, L_10, /*hidden argument*/NULL);
JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A * L_11 = L_9;
int32_t L_12 = ___requestDomain5;
NullCheck(L_11);
Request_set_domain_m5D9E2F4FC5FD9612666940E8ADB7C0E6F42354FC_inline(L_11, L_12, /*hidden argument*/NULL);
DataResponseDelegate_1_t7F092A4A713EEB7DDA047E650E8F690094B5D733 * L_13 = ___callback6;
Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * L_14;
L_14 = NetworkMatch_JoinMatch_m8D1A3E7DC24DF44D1C2665D8E4A420E21E19A62B(__this, L_11, L_13, /*hidden argument*/NULL);
V_0 = L_14;
goto IL_0044;
}
IL_0044:
{
Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * L_15 = V_0;
return L_15;
}
}
// UnityEngine.Coroutine UnityEngine.Networking.Match.NetworkMatch::JoinMatch(UnityEngine.Networking.Match.JoinMatchRequest,UnityEngine.Networking.Match.NetworkMatch/DataResponseDelegate`1<UnityEngine.Networking.Match.MatchInfo>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * NetworkMatch_JoinMatch_m8D1A3E7DC24DF44D1C2665D8E4A420E21E19A62B (NetworkMatch_t520F80EBC98ADEE375884B456429236E5BBA0F3B * __this, JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A * ___req0, DataResponseDelegate_1_t7F092A4A713EEB7DDA047E650E8F690094B5D733 * ___callback1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_set_Item_m31C41E4FE938066440DAFD1E667C2F3986549668_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InternalResponseDelegate_2__ctor_mBAA32B07ABC3DA74B90D41F8CBBB52DF6CA6C2B3_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InternalResponseDelegate_2_t6995AD33A05E56F1CCEBBF8C0BAD6F4D0E1F4CA9_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkID_tA7160DE9FBEE6E236564AEA6C328B6180FC368C3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkMatch_OnMatchJoined_m0E7184A2CE1469F31F1916DC05EB5C90D35496A6_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkMatch_ProcessMatchResponse_TisJoinMatchResponse_t6F5BCC11BC546B850CB72C9DEF63D520F4F6946D_TisDataResponseDelegate_1_t7F092A4A713EEB7DDA047E650E8F690094B5D733_m64042B909F0C8C3E900B2D26271E84C41FF4BA7A_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Request_tA1BC1936C153408449C4C207CA12D4358A7477FD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SourceID_tBE00015EA0F2E5DAEBEC7D0210216A18EB6DA62D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utility_t1BA2108022A500F65615E46E75D6A58D03F1E874_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral08B765E9CCC2538FF59EF166FFEF6E41729AD494);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral11E42B7A5E1CF74E4375D71D8CE94F3D8D446DBA);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral14693920B7544ED151BF377173FB1F4A2488E785);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral16D46E00A879AD1C9053ED90B4B148D721A45E92);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3BD06732BCAB068A09DACE7B5D433AB7A22BBE48);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral595320BA056F8106150E19C7F57653801E2B706A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral64058CC688A96A90239811EF06C9D20DB0499C3E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral736422D0BE3EE3D267772720ADB77AA1B2485ED7);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral84B38E695ADFA5AA7B76F9A941E6C4096293F660);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA009B6D2A048B8DC6D18F008E2ED77A79DDCE1C2);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD2D2F8D3F9F04A081FFBE6B2AF7917BAAADFC052);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDE5E7F5D6D66C3421E5F09BD52048AA05EFC584B);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE803E3877828CE008C6F327F3B0DF52DE76F9F73);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE8F97FBA9104D1EA5047948E6DFB67FACD9F5B73);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFBFA6E6B8A316BF610915064DCF9AE580CE1C11D);
s_Il2CppMethodInitialized = true;
}
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * V_0 = NULL;
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * V_1 = NULL;
UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * V_2 = NULL;
bool V_3 = false;
Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * V_4 = NULL;
uint64_t V_5 = 0;
uint64_t V_6 = 0;
int32_t V_7 = 0;
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * G_B4_0 = NULL;
String_t* G_B4_1 = NULL;
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * G_B3_0 = NULL;
String_t* G_B3_1 = NULL;
String_t* G_B5_0 = NULL;
String_t* G_B5_1 = NULL;
{
DataResponseDelegate_1_t7F092A4A713EEB7DDA047E650E8F690094B5D733 * L_0 = ___callback1;
V_3 = (bool)((((RuntimeObject*)(DataResponseDelegate_1_t7F092A4A713EEB7DDA047E650E8F690094B5D733 *)L_0) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_1 = V_3;
if (!L_1)
{
goto IL_001d;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var);
Debug_Log_mC26E5AD0D8D156C7FFD173AA15827F69225E9DB8(_stringLiteralE803E3877828CE008C6F327F3B0DF52DE76F9F73, /*hidden argument*/NULL);
V_4 = (Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 *)NULL;
goto IL_0165;
}
IL_001d:
{
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_2;
L_2 = NetworkMatch_get_baseUri_m9B38E09829D78200CC4BD750427337581F702945(__this, /*hidden argument*/NULL);
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_3 = (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 *)il2cpp_codegen_object_new(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var);
Uri__ctor_m0B44AFB01F3FEDE9319BA4556288340D16101F9D(L_3, L_2, _stringLiteral736422D0BE3EE3D267772720ADB77AA1B2485ED7, /*hidden argument*/NULL);
V_0 = L_3;
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_4 = V_0;
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_5 = L_4;
G_B3_0 = L_5;
G_B3_1 = _stringLiteral84B38E695ADFA5AA7B76F9A941E6C4096293F660;
if (L_5)
{
G_B4_0 = L_5;
G_B4_1 = _stringLiteral84B38E695ADFA5AA7B76F9A941E6C4096293F660;
goto IL_003b;
}
}
{
G_B5_0 = ((String_t*)(NULL));
G_B5_1 = G_B3_1;
goto IL_0040;
}
IL_003b:
{
NullCheck(G_B4_0);
String_t* L_6;
L_6 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, G_B4_0);
G_B5_0 = L_6;
G_B5_1 = G_B4_1;
}
IL_0040:
{
String_t* L_7;
L_7 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(G_B5_1, G_B5_0, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var);
Debug_Log_mC26E5AD0D8D156C7FFD173AA15827F69225E9DB8(L_7, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_8 = (WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB *)il2cpp_codegen_object_new(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var);
WWWForm__ctor_mA0987933892AF6FA9E01603B214E86EC52F6B055(L_8, /*hidden argument*/NULL);
V_1 = L_8;
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_9 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Request_tA1BC1936C153408449C4C207CA12D4358A7477FD_il2cpp_TypeInfo_var);
int32_t L_10 = ((Request_tA1BC1936C153408449C4C207CA12D4358A7477FD_StaticFields*)il2cpp_codegen_static_fields_for(Request_tA1BC1936C153408449C4C207CA12D4358A7477FD_il2cpp_TypeInfo_var))->get_currentVersion_0();
NullCheck(L_9);
WWWForm_AddField_m20BED9E7C237D585E5D040A5D815D9C7DC16990C(L_9, _stringLiteralD2D2F8D3F9F04A081FFBE6B2AF7917BAAADFC052, L_10, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_11 = V_1;
String_t* L_12;
L_12 = Application_get_cloudProjectId_m4428D3F30727F38D42D63962932341043560E43D(/*hidden argument*/NULL);
NullCheck(L_11);
WWWForm_AddField_m8ACDB7B2124FA6EAD7FC120BB469C6352C7B7696(L_11, _stringLiteral595320BA056F8106150E19C7F57653801E2B706A, L_12, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_13 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Utility_t1BA2108022A500F65615E46E75D6A58D03F1E874_il2cpp_TypeInfo_var);
uint64_t L_14;
L_14 = Utility_GetSourceID_m958E8557A6FBCAC4594B4B7A5014BBA266D8EDBE(/*hidden argument*/NULL);
V_5 = L_14;
RuntimeObject * L_15 = Box(SourceID_tBE00015EA0F2E5DAEBEC7D0210216A18EB6DA62D_il2cpp_TypeInfo_var, (&V_5));
NullCheck(L_15);
String_t* L_16;
L_16 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_15);
V_5 = *(uint64_t*)UnBox(L_15);
NullCheck(L_13);
WWWForm_AddField_m8ACDB7B2124FA6EAD7FC120BB469C6352C7B7696(L_13, _stringLiteralA009B6D2A048B8DC6D18F008E2ED77A79DDCE1C2, L_16, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_17 = V_1;
NullCheck(L_17);
WWWForm_AddField_m20BED9E7C237D585E5D040A5D815D9C7DC16990C(L_17, _stringLiteral14693920B7544ED151BF377173FB1F4A2488E785, 0, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_18 = V_1;
JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A * L_19 = ___req0;
NullCheck(L_19);
int32_t L_20;
L_20 = Request_get_domain_m37B9BBD8B6369C7170CBF3562A46C9094FB3360F_inline(L_19, /*hidden argument*/NULL);
NullCheck(L_18);
WWWForm_AddField_m20BED9E7C237D585E5D040A5D815D9C7DC16990C(L_18, _stringLiteral11E42B7A5E1CF74E4375D71D8CE94F3D8D446DBA, L_20, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_21 = V_1;
JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A * L_22 = ___req0;
NullCheck(L_22);
uint64_t L_23;
L_23 = JoinMatchRequest_get_networkId_mF41427B1FE3C495530C0C7A366152446613F8B10_inline(L_22, /*hidden argument*/NULL);
V_6 = L_23;
RuntimeObject * L_24 = Box(NetworkID_tA7160DE9FBEE6E236564AEA6C328B6180FC368C3_il2cpp_TypeInfo_var, (&V_6));
NullCheck(L_24);
String_t* L_25;
L_25 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_24);
V_6 = *(uint64_t*)UnBox(L_24);
NullCheck(L_21);
WWWForm_AddField_m8ACDB7B2124FA6EAD7FC120BB469C6352C7B7696(L_21, _stringLiteral3BD06732BCAB068A09DACE7B5D433AB7A22BBE48, L_25, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_26 = V_1;
JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A * L_27 = ___req0;
NullCheck(L_27);
String_t* L_28;
L_28 = JoinMatchRequest_get_password_m0E7A0F73B7DB0E41E613A07195C3A7370C863B90_inline(L_27, /*hidden argument*/NULL);
NullCheck(L_26);
WWWForm_AddField_m8ACDB7B2124FA6EAD7FC120BB469C6352C7B7696(L_26, _stringLiteralE8F97FBA9104D1EA5047948E6DFB67FACD9F5B73, L_28, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_29 = V_1;
JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A * L_30 = ___req0;
NullCheck(L_30);
String_t* L_31;
L_31 = JoinMatchRequest_get_publicAddress_mE052141FB172D009FE1BDB0F7AC52068A5DF3EE2_inline(L_30, /*hidden argument*/NULL);
NullCheck(L_29);
WWWForm_AddField_m8ACDB7B2124FA6EAD7FC120BB469C6352C7B7696(L_29, _stringLiteral08B765E9CCC2538FF59EF166FFEF6E41729AD494, L_31, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_32 = V_1;
JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A * L_33 = ___req0;
NullCheck(L_33);
String_t* L_34;
L_34 = JoinMatchRequest_get_privateAddress_m2DE574B58D8A69C731C815E2C46AB5CC3ADF8D8D_inline(L_33, /*hidden argument*/NULL);
NullCheck(L_32);
WWWForm_AddField_m8ACDB7B2124FA6EAD7FC120BB469C6352C7B7696(L_32, _stringLiteralDE5E7F5D6D66C3421E5F09BD52048AA05EFC584B, L_34, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_35 = V_1;
JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A * L_36 = ___req0;
NullCheck(L_36);
int32_t L_37;
L_37 = JoinMatchRequest_get_eloScore_mC0238C87F841D7DBD4C06765AD05B8A8A6B2F01E_inline(L_36, /*hidden argument*/NULL);
V_7 = L_37;
String_t* L_38;
L_38 = Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411((int32_t*)(&V_7), /*hidden argument*/NULL);
NullCheck(L_35);
WWWForm_AddField_m8ACDB7B2124FA6EAD7FC120BB469C6352C7B7696(L_35, _stringLiteralFBFA6E6B8A316BF610915064DCF9AE580CE1C11D, L_38, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_39 = V_1;
NullCheck(L_39);
Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5 * L_40;
L_40 = WWWForm_get_headers_m9F6A4222926792B110E9821AF5B23FF3FB9BD45A(L_39, /*hidden argument*/NULL);
NullCheck(L_40);
Dictionary_2_set_Item_m31C41E4FE938066440DAFD1E667C2F3986549668(L_40, _stringLiteral16D46E00A879AD1C9053ED90B4B148D721A45E92, _stringLiteral64058CC688A96A90239811EF06C9D20DB0499C3E, /*hidden argument*/Dictionary_2_set_Item_m31C41E4FE938066440DAFD1E667C2F3986549668_RuntimeMethod_var);
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_41 = V_0;
NullCheck(L_41);
String_t* L_42;
L_42 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_41);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_43 = V_1;
UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * L_44;
L_44 = UnityWebRequest_Post_m5F29B83B6FEDEAEAAC938DD26AE484A2750DB646(L_42, L_43, /*hidden argument*/NULL);
V_2 = L_44;
UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * L_45 = V_2;
InternalResponseDelegate_2_t6995AD33A05E56F1CCEBBF8C0BAD6F4D0E1F4CA9 * L_46 = (InternalResponseDelegate_2_t6995AD33A05E56F1CCEBBF8C0BAD6F4D0E1F4CA9 *)il2cpp_codegen_object_new(InternalResponseDelegate_2_t6995AD33A05E56F1CCEBBF8C0BAD6F4D0E1F4CA9_il2cpp_TypeInfo_var);
InternalResponseDelegate_2__ctor_mBAA32B07ABC3DA74B90D41F8CBBB52DF6CA6C2B3(L_46, __this, (intptr_t)((intptr_t)NetworkMatch_OnMatchJoined_m0E7184A2CE1469F31F1916DC05EB5C90D35496A6_RuntimeMethod_var), /*hidden argument*/InternalResponseDelegate_2__ctor_mBAA32B07ABC3DA74B90D41F8CBBB52DF6CA6C2B3_RuntimeMethod_var);
DataResponseDelegate_1_t7F092A4A713EEB7DDA047E650E8F690094B5D733 * L_47 = ___callback1;
RuntimeObject* L_48;
L_48 = NetworkMatch_ProcessMatchResponse_TisJoinMatchResponse_t6F5BCC11BC546B850CB72C9DEF63D520F4F6946D_TisDataResponseDelegate_1_t7F092A4A713EEB7DDA047E650E8F690094B5D733_m64042B909F0C8C3E900B2D26271E84C41FF4BA7A(__this, L_45, L_46, L_47, /*hidden argument*/NetworkMatch_ProcessMatchResponse_TisJoinMatchResponse_t6F5BCC11BC546B850CB72C9DEF63D520F4F6946D_TisDataResponseDelegate_1_t7F092A4A713EEB7DDA047E650E8F690094B5D733_m64042B909F0C8C3E900B2D26271E84C41FF4BA7A_RuntimeMethod_var);
Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * L_49;
L_49 = MonoBehaviour_StartCoroutine_m3E33706D38B23CDD179E99BAD61E32303E9CC719(__this, L_48, /*hidden argument*/NULL);
V_4 = L_49;
goto IL_0165;
}
IL_0165:
{
Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * L_50 = V_4;
return L_50;
}
}
// System.Void UnityEngine.Networking.Match.NetworkMatch::OnMatchJoined(UnityEngine.Networking.Match.JoinMatchResponse,UnityEngine.Networking.Match.NetworkMatch/DataResponseDelegate`1<UnityEngine.Networking.Match.MatchInfo>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkMatch_OnMatchJoined_m0E7184A2CE1469F31F1916DC05EB5C90D35496A6 (NetworkMatch_t520F80EBC98ADEE375884B456429236E5BBA0F3B * __this, JoinMatchResponse_t6F5BCC11BC546B850CB72C9DEF63D520F4F6946D * ___response0, DataResponseDelegate_1_t7F092A4A713EEB7DDA047E650E8F690094B5D733 * ___userCallback1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataResponseDelegate_1_Invoke_m30198CE2090F7EFDF95347F2D69012BC34BD1E30_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utility_t1BA2108022A500F65615E46E75D6A58D03F1E874_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
JoinMatchResponse_t6F5BCC11BC546B850CB72C9DEF63D520F4F6946D * L_0 = ___response0;
NullCheck(L_0);
bool L_1 = ((Response_tEF5C8607FB2DC4F1E0E744F3F9BAD3869B4BCD6C *)L_0)->get_success_0();
V_0 = L_1;
bool L_2 = V_0;
if (!L_2)
{
goto IL_0022;
}
}
{
JoinMatchResponse_t6F5BCC11BC546B850CB72C9DEF63D520F4F6946D * L_3 = ___response0;
NullCheck(L_3);
uint64_t L_4 = L_3->get_networkId_5();
JoinMatchResponse_t6F5BCC11BC546B850CB72C9DEF63D520F4F6946D * L_5 = ___response0;
NullCheck(L_5);
String_t* L_6 = L_5->get_accessTokenString_6();
NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481 * L_7 = (NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481 *)il2cpp_codegen_object_new(NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481_il2cpp_TypeInfo_var);
NetworkAccessToken__ctor_m1BE41B5F2C9C380423AD3C4EC4FB9A273289505F(L_7, L_6, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Utility_t1BA2108022A500F65615E46E75D6A58D03F1E874_il2cpp_TypeInfo_var);
Utility_SetAccessTokenForNetwork_mD6FA81F2FD77F041C236152BAC57F4FCA5D892CF(L_4, L_7, /*hidden argument*/NULL);
}
IL_0022:
{
DataResponseDelegate_1_t7F092A4A713EEB7DDA047E650E8F690094B5D733 * L_8 = ___userCallback1;
JoinMatchResponse_t6F5BCC11BC546B850CB72C9DEF63D520F4F6946D * L_9 = ___response0;
NullCheck(L_9);
bool L_10 = ((Response_tEF5C8607FB2DC4F1E0E744F3F9BAD3869B4BCD6C *)L_9)->get_success_0();
JoinMatchResponse_t6F5BCC11BC546B850CB72C9DEF63D520F4F6946D * L_11 = ___response0;
NullCheck(L_11);
String_t* L_12 = ((Response_tEF5C8607FB2DC4F1E0E744F3F9BAD3869B4BCD6C *)L_11)->get_extendedInfo_1();
JoinMatchResponse_t6F5BCC11BC546B850CB72C9DEF63D520F4F6946D * L_13 = ___response0;
MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67 * L_14 = (MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67 *)il2cpp_codegen_object_new(MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67_il2cpp_TypeInfo_var);
MatchInfo__ctor_mEB97EE7C36641071264FEEC81AC2C6926E3B9657(L_14, L_13, /*hidden argument*/NULL);
NullCheck(L_8);
DataResponseDelegate_1_Invoke_m30198CE2090F7EFDF95347F2D69012BC34BD1E30(L_8, L_10, L_12, L_14, /*hidden argument*/DataResponseDelegate_1_Invoke_m30198CE2090F7EFDF95347F2D69012BC34BD1E30_RuntimeMethod_var);
return;
}
}
// UnityEngine.Coroutine UnityEngine.Networking.Match.NetworkMatch::DestroyMatch(UnityEngine.Networking.Types.NetworkID,System.Int32,UnityEngine.Networking.Match.NetworkMatch/BasicResponseDelegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * NetworkMatch_DestroyMatch_mE565D125D26081658C74B7239D2B21E34A8E4D6C (NetworkMatch_t520F80EBC98ADEE375884B456429236E5BBA0F3B * __this, uint64_t ___netId0, int32_t ___requestDomain1, BasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A * ___callback2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DestroyMatchRequest_t3AC8FF769CC153C425D7D76492693F00A76B81D0_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * V_0 = NULL;
{
DestroyMatchRequest_t3AC8FF769CC153C425D7D76492693F00A76B81D0 * L_0 = (DestroyMatchRequest_t3AC8FF769CC153C425D7D76492693F00A76B81D0 *)il2cpp_codegen_object_new(DestroyMatchRequest_t3AC8FF769CC153C425D7D76492693F00A76B81D0_il2cpp_TypeInfo_var);
DestroyMatchRequest__ctor_m59325BCAA65F477839D3B78E318404F42E41BFE9(L_0, /*hidden argument*/NULL);
DestroyMatchRequest_t3AC8FF769CC153C425D7D76492693F00A76B81D0 * L_1 = L_0;
uint64_t L_2 = ___netId0;
NullCheck(L_1);
DestroyMatchRequest_set_networkId_mC1C51DCC3A6C729D2EF1EB763F56F38CA72FF68A_inline(L_1, L_2, /*hidden argument*/NULL);
DestroyMatchRequest_t3AC8FF769CC153C425D7D76492693F00A76B81D0 * L_3 = L_1;
int32_t L_4 = ___requestDomain1;
NullCheck(L_3);
Request_set_domain_m5D9E2F4FC5FD9612666940E8ADB7C0E6F42354FC_inline(L_3, L_4, /*hidden argument*/NULL);
BasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A * L_5 = ___callback2;
Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * L_6;
L_6 = NetworkMatch_DestroyMatch_m76180F9B8FDEB6D40758EF28FE9057E907E9F965(__this, L_3, L_5, /*hidden argument*/NULL);
V_0 = L_6;
goto IL_0020;
}
IL_0020:
{
Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * L_7 = V_0;
return L_7;
}
}
// UnityEngine.Coroutine UnityEngine.Networking.Match.NetworkMatch::DestroyMatch(UnityEngine.Networking.Match.DestroyMatchRequest,UnityEngine.Networking.Match.NetworkMatch/BasicResponseDelegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * NetworkMatch_DestroyMatch_m76180F9B8FDEB6D40758EF28FE9057E907E9F965 (NetworkMatch_t520F80EBC98ADEE375884B456429236E5BBA0F3B * __this, DestroyMatchRequest_t3AC8FF769CC153C425D7D76492693F00A76B81D0 * ___req0, BasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A * ___callback1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_set_Item_m31C41E4FE938066440DAFD1E667C2F3986549668_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InternalResponseDelegate_2__ctor_mFC0084C0973B92D260D3B6DB5AD82EE3B9FF327B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InternalResponseDelegate_2_t9E637FC8AD9DFE78C53C017092E174FE94DAC443_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkID_tA7160DE9FBEE6E236564AEA6C328B6180FC368C3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkMatch_OnMatchDestroyed_mE1D44CA6E72D3791B8C0CED6AEA09D5F01858858_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkMatch_ProcessMatchResponse_TisBasicResponse_t9579CCF321F1A381924A886EC1A6496DAC3FC484_TisBasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A_mAE0660E27C201F0AB0F83AE64887924C7F11200C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Request_tA1BC1936C153408449C4C207CA12D4358A7477FD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SourceID_tBE00015EA0F2E5DAEBEC7D0210216A18EB6DA62D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utility_t1BA2108022A500F65615E46E75D6A58D03F1E874_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral11E42B7A5E1CF74E4375D71D8CE94F3D8D446DBA);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral14693920B7544ED151BF377173FB1F4A2488E785);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral16D46E00A879AD1C9053ED90B4B148D721A45E92);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral29E20EECD413DC9AD65630FD9812ACB09F835F9F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3BD06732BCAB068A09DACE7B5D433AB7A22BBE48);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral595320BA056F8106150E19C7F57653801E2B706A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5E667949D5E0A7C4D860B15F9809BE75BA39E7E9);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral64058CC688A96A90239811EF06C9D20DB0499C3E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral641FFED502231E55D5798D2B06509B8059C32635);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA009B6D2A048B8DC6D18F008E2ED77A79DDCE1C2);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD2D2F8D3F9F04A081FFBE6B2AF7917BAAADFC052);
s_Il2CppMethodInitialized = true;
}
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * V_0 = NULL;
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * V_1 = NULL;
UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * V_2 = NULL;
bool V_3 = false;
Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * V_4 = NULL;
uint64_t V_5 = 0;
uint64_t V_6 = 0;
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * G_B4_0 = NULL;
String_t* G_B4_1 = NULL;
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * G_B3_0 = NULL;
String_t* G_B3_1 = NULL;
String_t* G_B5_0 = NULL;
String_t* G_B5_1 = NULL;
{
BasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A * L_0 = ___callback1;
V_3 = (bool)((((RuntimeObject*)(BasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A *)L_0) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_1 = V_3;
if (!L_1)
{
goto IL_001d;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var);
Debug_Log_mC26E5AD0D8D156C7FFD173AA15827F69225E9DB8(_stringLiteral641FFED502231E55D5798D2B06509B8059C32635, /*hidden argument*/NULL);
V_4 = (Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 *)NULL;
goto IL_0123;
}
IL_001d:
{
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_2;
L_2 = NetworkMatch_get_baseUri_m9B38E09829D78200CC4BD750427337581F702945(__this, /*hidden argument*/NULL);
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_3 = (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 *)il2cpp_codegen_object_new(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var);
Uri__ctor_m0B44AFB01F3FEDE9319BA4556288340D16101F9D(L_3, L_2, _stringLiteral5E667949D5E0A7C4D860B15F9809BE75BA39E7E9, /*hidden argument*/NULL);
V_0 = L_3;
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_4 = V_0;
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_5 = L_4;
G_B3_0 = L_5;
G_B3_1 = _stringLiteral29E20EECD413DC9AD65630FD9812ACB09F835F9F;
if (L_5)
{
G_B4_0 = L_5;
G_B4_1 = _stringLiteral29E20EECD413DC9AD65630FD9812ACB09F835F9F;
goto IL_003b;
}
}
{
G_B5_0 = ((String_t*)(NULL));
G_B5_1 = G_B3_1;
goto IL_0040;
}
IL_003b:
{
NullCheck(G_B4_0);
String_t* L_6;
L_6 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, G_B4_0);
G_B5_0 = L_6;
G_B5_1 = G_B4_1;
}
IL_0040:
{
String_t* L_7;
L_7 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(G_B5_1, G_B5_0, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var);
Debug_Log_mC26E5AD0D8D156C7FFD173AA15827F69225E9DB8(L_7, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_8 = (WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB *)il2cpp_codegen_object_new(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var);
WWWForm__ctor_mA0987933892AF6FA9E01603B214E86EC52F6B055(L_8, /*hidden argument*/NULL);
V_1 = L_8;
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_9 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Request_tA1BC1936C153408449C4C207CA12D4358A7477FD_il2cpp_TypeInfo_var);
int32_t L_10 = ((Request_tA1BC1936C153408449C4C207CA12D4358A7477FD_StaticFields*)il2cpp_codegen_static_fields_for(Request_tA1BC1936C153408449C4C207CA12D4358A7477FD_il2cpp_TypeInfo_var))->get_currentVersion_0();
NullCheck(L_9);
WWWForm_AddField_m20BED9E7C237D585E5D040A5D815D9C7DC16990C(L_9, _stringLiteralD2D2F8D3F9F04A081FFBE6B2AF7917BAAADFC052, L_10, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_11 = V_1;
String_t* L_12;
L_12 = Application_get_cloudProjectId_m4428D3F30727F38D42D63962932341043560E43D(/*hidden argument*/NULL);
NullCheck(L_11);
WWWForm_AddField_m8ACDB7B2124FA6EAD7FC120BB469C6352C7B7696(L_11, _stringLiteral595320BA056F8106150E19C7F57653801E2B706A, L_12, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_13 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Utility_t1BA2108022A500F65615E46E75D6A58D03F1E874_il2cpp_TypeInfo_var);
uint64_t L_14;
L_14 = Utility_GetSourceID_m958E8557A6FBCAC4594B4B7A5014BBA266D8EDBE(/*hidden argument*/NULL);
V_5 = L_14;
RuntimeObject * L_15 = Box(SourceID_tBE00015EA0F2E5DAEBEC7D0210216A18EB6DA62D_il2cpp_TypeInfo_var, (&V_5));
NullCheck(L_15);
String_t* L_16;
L_16 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_15);
V_5 = *(uint64_t*)UnBox(L_15);
NullCheck(L_13);
WWWForm_AddField_m8ACDB7B2124FA6EAD7FC120BB469C6352C7B7696(L_13, _stringLiteralA009B6D2A048B8DC6D18F008E2ED77A79DDCE1C2, L_16, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_17 = V_1;
DestroyMatchRequest_t3AC8FF769CC153C425D7D76492693F00A76B81D0 * L_18 = ___req0;
NullCheck(L_18);
uint64_t L_19;
L_19 = DestroyMatchRequest_get_networkId_m9A908C64FB1730FC9198940FE08C380E33C43455_inline(L_18, /*hidden argument*/NULL);
NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481 * L_20;
L_20 = Utility_GetAccessTokenForNetwork_m778FE11429F330727F46BDA237C28DD6956671C3(L_19, /*hidden argument*/NULL);
NullCheck(L_20);
String_t* L_21;
L_21 = NetworkAccessToken_GetByteString_m15886A9E88F5D490BB595D91F9282D458E1EB79F(L_20, /*hidden argument*/NULL);
NullCheck(L_17);
WWWForm_AddField_m8ACDB7B2124FA6EAD7FC120BB469C6352C7B7696(L_17, _stringLiteral14693920B7544ED151BF377173FB1F4A2488E785, L_21, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_22 = V_1;
DestroyMatchRequest_t3AC8FF769CC153C425D7D76492693F00A76B81D0 * L_23 = ___req0;
NullCheck(L_23);
int32_t L_24;
L_24 = Request_get_domain_m37B9BBD8B6369C7170CBF3562A46C9094FB3360F_inline(L_23, /*hidden argument*/NULL);
NullCheck(L_22);
WWWForm_AddField_m20BED9E7C237D585E5D040A5D815D9C7DC16990C(L_22, _stringLiteral11E42B7A5E1CF74E4375D71D8CE94F3D8D446DBA, L_24, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_25 = V_1;
DestroyMatchRequest_t3AC8FF769CC153C425D7D76492693F00A76B81D0 * L_26 = ___req0;
NullCheck(L_26);
uint64_t L_27;
L_27 = DestroyMatchRequest_get_networkId_m9A908C64FB1730FC9198940FE08C380E33C43455_inline(L_26, /*hidden argument*/NULL);
V_6 = L_27;
RuntimeObject * L_28 = Box(NetworkID_tA7160DE9FBEE6E236564AEA6C328B6180FC368C3_il2cpp_TypeInfo_var, (&V_6));
NullCheck(L_28);
String_t* L_29;
L_29 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_28);
V_6 = *(uint64_t*)UnBox(L_28);
NullCheck(L_25);
WWWForm_AddField_m8ACDB7B2124FA6EAD7FC120BB469C6352C7B7696(L_25, _stringLiteral3BD06732BCAB068A09DACE7B5D433AB7A22BBE48, L_29, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_30 = V_1;
NullCheck(L_30);
Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5 * L_31;
L_31 = WWWForm_get_headers_m9F6A4222926792B110E9821AF5B23FF3FB9BD45A(L_30, /*hidden argument*/NULL);
NullCheck(L_31);
Dictionary_2_set_Item_m31C41E4FE938066440DAFD1E667C2F3986549668(L_31, _stringLiteral16D46E00A879AD1C9053ED90B4B148D721A45E92, _stringLiteral64058CC688A96A90239811EF06C9D20DB0499C3E, /*hidden argument*/Dictionary_2_set_Item_m31C41E4FE938066440DAFD1E667C2F3986549668_RuntimeMethod_var);
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_32 = V_0;
NullCheck(L_32);
String_t* L_33;
L_33 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_32);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_34 = V_1;
UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * L_35;
L_35 = UnityWebRequest_Post_m5F29B83B6FEDEAEAAC938DD26AE484A2750DB646(L_33, L_34, /*hidden argument*/NULL);
V_2 = L_35;
UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * L_36 = V_2;
InternalResponseDelegate_2_t9E637FC8AD9DFE78C53C017092E174FE94DAC443 * L_37 = (InternalResponseDelegate_2_t9E637FC8AD9DFE78C53C017092E174FE94DAC443 *)il2cpp_codegen_object_new(InternalResponseDelegate_2_t9E637FC8AD9DFE78C53C017092E174FE94DAC443_il2cpp_TypeInfo_var);
InternalResponseDelegate_2__ctor_mFC0084C0973B92D260D3B6DB5AD82EE3B9FF327B(L_37, __this, (intptr_t)((intptr_t)NetworkMatch_OnMatchDestroyed_mE1D44CA6E72D3791B8C0CED6AEA09D5F01858858_RuntimeMethod_var), /*hidden argument*/InternalResponseDelegate_2__ctor_mFC0084C0973B92D260D3B6DB5AD82EE3B9FF327B_RuntimeMethod_var);
BasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A * L_38 = ___callback1;
RuntimeObject* L_39;
L_39 = NetworkMatch_ProcessMatchResponse_TisBasicResponse_t9579CCF321F1A381924A886EC1A6496DAC3FC484_TisBasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A_mAE0660E27C201F0AB0F83AE64887924C7F11200C(__this, L_36, L_37, L_38, /*hidden argument*/NetworkMatch_ProcessMatchResponse_TisBasicResponse_t9579CCF321F1A381924A886EC1A6496DAC3FC484_TisBasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A_mAE0660E27C201F0AB0F83AE64887924C7F11200C_RuntimeMethod_var);
Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * L_40;
L_40 = MonoBehaviour_StartCoroutine_m3E33706D38B23CDD179E99BAD61E32303E9CC719(__this, L_39, /*hidden argument*/NULL);
V_4 = L_40;
goto IL_0123;
}
IL_0123:
{
Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * L_41 = V_4;
return L_41;
}
}
// System.Void UnityEngine.Networking.Match.NetworkMatch::OnMatchDestroyed(UnityEngine.Networking.Match.BasicResponse,UnityEngine.Networking.Match.NetworkMatch/BasicResponseDelegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkMatch_OnMatchDestroyed_mE1D44CA6E72D3791B8C0CED6AEA09D5F01858858 (NetworkMatch_t520F80EBC98ADEE375884B456429236E5BBA0F3B * __this, BasicResponse_t9579CCF321F1A381924A886EC1A6496DAC3FC484 * ___response0, BasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A * ___userCallback1, const RuntimeMethod* method)
{
{
BasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A * L_0 = ___userCallback1;
BasicResponse_t9579CCF321F1A381924A886EC1A6496DAC3FC484 * L_1 = ___response0;
NullCheck(L_1);
bool L_2 = ((Response_tEF5C8607FB2DC4F1E0E744F3F9BAD3869B4BCD6C *)L_1)->get_success_0();
BasicResponse_t9579CCF321F1A381924A886EC1A6496DAC3FC484 * L_3 = ___response0;
NullCheck(L_3);
String_t* L_4 = ((Response_tEF5C8607FB2DC4F1E0E744F3F9BAD3869B4BCD6C *)L_3)->get_extendedInfo_1();
NullCheck(L_0);
BasicResponseDelegate_Invoke_mD34E66B3E0583711275610B1BCF07FC56A61BCB1(L_0, L_2, L_4, /*hidden argument*/NULL);
return;
}
}
// UnityEngine.Coroutine UnityEngine.Networking.Match.NetworkMatch::DropConnection(UnityEngine.Networking.Types.NetworkID,UnityEngine.Networking.Types.NodeID,System.Int32,UnityEngine.Networking.Match.NetworkMatch/BasicResponseDelegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * NetworkMatch_DropConnection_m0630F2D89B00BF4EA3B3F9D7FEEC6A7232271352 (NetworkMatch_t520F80EBC98ADEE375884B456429236E5BBA0F3B * __this, uint64_t ___netId0, uint16_t ___dropNodeId1, int32_t ___requestDomain2, BasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A * ___callback3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DropConnectionRequest_t0BADA55738E8857768EE57C92027957659C0E8D1_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * V_0 = NULL;
{
DropConnectionRequest_t0BADA55738E8857768EE57C92027957659C0E8D1 * L_0 = (DropConnectionRequest_t0BADA55738E8857768EE57C92027957659C0E8D1 *)il2cpp_codegen_object_new(DropConnectionRequest_t0BADA55738E8857768EE57C92027957659C0E8D1_il2cpp_TypeInfo_var);
DropConnectionRequest__ctor_m5B721A711F6CBF239DFD8DD8F32D52F986B07932(L_0, /*hidden argument*/NULL);
DropConnectionRequest_t0BADA55738E8857768EE57C92027957659C0E8D1 * L_1 = L_0;
uint64_t L_2 = ___netId0;
NullCheck(L_1);
DropConnectionRequest_set_networkId_mD980D5276D76AE525984AEC35B6F11A02F30F56C_inline(L_1, L_2, /*hidden argument*/NULL);
DropConnectionRequest_t0BADA55738E8857768EE57C92027957659C0E8D1 * L_3 = L_1;
uint16_t L_4 = ___dropNodeId1;
NullCheck(L_3);
DropConnectionRequest_set_nodeId_mDC0D89F76443E687896E8C8E6EEDF0FA5C2F7C27_inline(L_3, L_4, /*hidden argument*/NULL);
DropConnectionRequest_t0BADA55738E8857768EE57C92027957659C0E8D1 * L_5 = L_3;
int32_t L_6 = ___requestDomain2;
NullCheck(L_5);
Request_set_domain_m5D9E2F4FC5FD9612666940E8ADB7C0E6F42354FC_inline(L_5, L_6, /*hidden argument*/NULL);
BasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A * L_7 = ___callback3;
Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * L_8;
L_8 = NetworkMatch_DropConnection_mD2B76731238B4B247F4C8B7677ACE450C5C8461C(__this, L_5, L_7, /*hidden argument*/NULL);
V_0 = L_8;
goto IL_0029;
}
IL_0029:
{
Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * L_9 = V_0;
return L_9;
}
}
// UnityEngine.Coroutine UnityEngine.Networking.Match.NetworkMatch::DropConnection(UnityEngine.Networking.Match.DropConnectionRequest,UnityEngine.Networking.Match.NetworkMatch/BasicResponseDelegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * NetworkMatch_DropConnection_mD2B76731238B4B247F4C8B7677ACE450C5C8461C (NetworkMatch_t520F80EBC98ADEE375884B456429236E5BBA0F3B * __this, DropConnectionRequest_t0BADA55738E8857768EE57C92027957659C0E8D1 * ___req0, BasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A * ___callback1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_set_Item_m31C41E4FE938066440DAFD1E667C2F3986549668_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InternalResponseDelegate_2__ctor_mE3D3CDC33CBC9039E9948C1B69F741122FEF4F69_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InternalResponseDelegate_2_t4C3380D090B02AF491ABFE36875D463E04A81BD7_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkID_tA7160DE9FBEE6E236564AEA6C328B6180FC368C3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkMatch_OnDropConnection_m08090F22FEB40D7BED8DE3B8F704FEDF0DB391F5_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkMatch_ProcessMatchResponse_TisDropConnectionResponse_tBAAA11B3A813A89B8D7C481BB80E24C1C94E1F31_TisBasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A_mFF6F93BBCEEB841440524930B28D4257627F9604_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NodeID_t07417F7D8D30332570E9D4A123D9E8B7CA1D1E80_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Request_tA1BC1936C153408449C4C207CA12D4358A7477FD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SourceID_tBE00015EA0F2E5DAEBEC7D0210216A18EB6DA62D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utility_t1BA2108022A500F65615E46E75D6A58D03F1E874_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral11E42B7A5E1CF74E4375D71D8CE94F3D8D446DBA);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral14693920B7544ED151BF377173FB1F4A2488E785);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral150FDBF76BAB85D67599EA5DC94B371C0153E1E1);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral16D46E00A879AD1C9053ED90B4B148D721A45E92);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3BD06732BCAB068A09DACE7B5D433AB7A22BBE48);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral595320BA056F8106150E19C7F57653801E2B706A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral64058CC688A96A90239811EF06C9D20DB0499C3E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8482D1CD991035F2FF945274B56D7F12D182378A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA009B6D2A048B8DC6D18F008E2ED77A79DDCE1C2);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD2D2F8D3F9F04A081FFBE6B2AF7917BAAADFC052);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE634A536B967CA4ECCFF5C6AD9848DE6FE34351E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE7E5D35F25A57631AF401AF761D55D9973D0313D);
s_Il2CppMethodInitialized = true;
}
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * V_0 = NULL;
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * V_1 = NULL;
UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * V_2 = NULL;
bool V_3 = false;
Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * V_4 = NULL;
uint64_t V_5 = 0;
uint64_t V_6 = 0;
uint16_t V_7 = 0;
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * G_B4_0 = NULL;
String_t* G_B4_1 = NULL;
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * G_B3_0 = NULL;
String_t* G_B3_1 = NULL;
String_t* G_B5_0 = NULL;
String_t* G_B5_1 = NULL;
{
BasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A * L_0 = ___callback1;
V_3 = (bool)((((RuntimeObject*)(BasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A *)L_0) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_1 = V_3;
if (!L_1)
{
goto IL_001d;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var);
Debug_Log_mC26E5AD0D8D156C7FFD173AA15827F69225E9DB8(_stringLiteral150FDBF76BAB85D67599EA5DC94B371C0153E1E1, /*hidden argument*/NULL);
V_4 = (Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 *)NULL;
goto IL_0144;
}
IL_001d:
{
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_2;
L_2 = NetworkMatch_get_baseUri_m9B38E09829D78200CC4BD750427337581F702945(__this, /*hidden argument*/NULL);
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_3 = (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 *)il2cpp_codegen_object_new(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var);
Uri__ctor_m0B44AFB01F3FEDE9319BA4556288340D16101F9D(L_3, L_2, _stringLiteral8482D1CD991035F2FF945274B56D7F12D182378A, /*hidden argument*/NULL);
V_0 = L_3;
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_4 = V_0;
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_5 = L_4;
G_B3_0 = L_5;
G_B3_1 = _stringLiteralE634A536B967CA4ECCFF5C6AD9848DE6FE34351E;
if (L_5)
{
G_B4_0 = L_5;
G_B4_1 = _stringLiteralE634A536B967CA4ECCFF5C6AD9848DE6FE34351E;
goto IL_003b;
}
}
{
G_B5_0 = ((String_t*)(NULL));
G_B5_1 = G_B3_1;
goto IL_0040;
}
IL_003b:
{
NullCheck(G_B4_0);
String_t* L_6;
L_6 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, G_B4_0);
G_B5_0 = L_6;
G_B5_1 = G_B4_1;
}
IL_0040:
{
String_t* L_7;
L_7 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(G_B5_1, G_B5_0, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var);
Debug_Log_mC26E5AD0D8D156C7FFD173AA15827F69225E9DB8(L_7, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_8 = (WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB *)il2cpp_codegen_object_new(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var);
WWWForm__ctor_mA0987933892AF6FA9E01603B214E86EC52F6B055(L_8, /*hidden argument*/NULL);
V_1 = L_8;
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_9 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Request_tA1BC1936C153408449C4C207CA12D4358A7477FD_il2cpp_TypeInfo_var);
int32_t L_10 = ((Request_tA1BC1936C153408449C4C207CA12D4358A7477FD_StaticFields*)il2cpp_codegen_static_fields_for(Request_tA1BC1936C153408449C4C207CA12D4358A7477FD_il2cpp_TypeInfo_var))->get_currentVersion_0();
NullCheck(L_9);
WWWForm_AddField_m20BED9E7C237D585E5D040A5D815D9C7DC16990C(L_9, _stringLiteralD2D2F8D3F9F04A081FFBE6B2AF7917BAAADFC052, L_10, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_11 = V_1;
String_t* L_12;
L_12 = Application_get_cloudProjectId_m4428D3F30727F38D42D63962932341043560E43D(/*hidden argument*/NULL);
NullCheck(L_11);
WWWForm_AddField_m8ACDB7B2124FA6EAD7FC120BB469C6352C7B7696(L_11, _stringLiteral595320BA056F8106150E19C7F57653801E2B706A, L_12, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_13 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Utility_t1BA2108022A500F65615E46E75D6A58D03F1E874_il2cpp_TypeInfo_var);
uint64_t L_14;
L_14 = Utility_GetSourceID_m958E8557A6FBCAC4594B4B7A5014BBA266D8EDBE(/*hidden argument*/NULL);
V_5 = L_14;
RuntimeObject * L_15 = Box(SourceID_tBE00015EA0F2E5DAEBEC7D0210216A18EB6DA62D_il2cpp_TypeInfo_var, (&V_5));
NullCheck(L_15);
String_t* L_16;
L_16 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_15);
V_5 = *(uint64_t*)UnBox(L_15);
NullCheck(L_13);
WWWForm_AddField_m8ACDB7B2124FA6EAD7FC120BB469C6352C7B7696(L_13, _stringLiteralA009B6D2A048B8DC6D18F008E2ED77A79DDCE1C2, L_16, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_17 = V_1;
DropConnectionRequest_t0BADA55738E8857768EE57C92027957659C0E8D1 * L_18 = ___req0;
NullCheck(L_18);
uint64_t L_19;
L_19 = DropConnectionRequest_get_networkId_m58D7BA9439346AD5B49293F499BED9C155C652CF_inline(L_18, /*hidden argument*/NULL);
NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481 * L_20;
L_20 = Utility_GetAccessTokenForNetwork_m778FE11429F330727F46BDA237C28DD6956671C3(L_19, /*hidden argument*/NULL);
NullCheck(L_20);
String_t* L_21;
L_21 = NetworkAccessToken_GetByteString_m15886A9E88F5D490BB595D91F9282D458E1EB79F(L_20, /*hidden argument*/NULL);
NullCheck(L_17);
WWWForm_AddField_m8ACDB7B2124FA6EAD7FC120BB469C6352C7B7696(L_17, _stringLiteral14693920B7544ED151BF377173FB1F4A2488E785, L_21, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_22 = V_1;
DropConnectionRequest_t0BADA55738E8857768EE57C92027957659C0E8D1 * L_23 = ___req0;
NullCheck(L_23);
int32_t L_24;
L_24 = Request_get_domain_m37B9BBD8B6369C7170CBF3562A46C9094FB3360F_inline(L_23, /*hidden argument*/NULL);
NullCheck(L_22);
WWWForm_AddField_m20BED9E7C237D585E5D040A5D815D9C7DC16990C(L_22, _stringLiteral11E42B7A5E1CF74E4375D71D8CE94F3D8D446DBA, L_24, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_25 = V_1;
DropConnectionRequest_t0BADA55738E8857768EE57C92027957659C0E8D1 * L_26 = ___req0;
NullCheck(L_26);
uint64_t L_27;
L_27 = DropConnectionRequest_get_networkId_m58D7BA9439346AD5B49293F499BED9C155C652CF_inline(L_26, /*hidden argument*/NULL);
V_6 = L_27;
RuntimeObject * L_28 = Box(NetworkID_tA7160DE9FBEE6E236564AEA6C328B6180FC368C3_il2cpp_TypeInfo_var, (&V_6));
NullCheck(L_28);
String_t* L_29;
L_29 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_28);
V_6 = *(uint64_t*)UnBox(L_28);
NullCheck(L_25);
WWWForm_AddField_m8ACDB7B2124FA6EAD7FC120BB469C6352C7B7696(L_25, _stringLiteral3BD06732BCAB068A09DACE7B5D433AB7A22BBE48, L_29, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_30 = V_1;
DropConnectionRequest_t0BADA55738E8857768EE57C92027957659C0E8D1 * L_31 = ___req0;
NullCheck(L_31);
uint16_t L_32;
L_32 = DropConnectionRequest_get_nodeId_m7A1E99C6F45D801A6C6D6BC0F3D18AAC6424F6C8_inline(L_31, /*hidden argument*/NULL);
V_7 = L_32;
RuntimeObject * L_33 = Box(NodeID_t07417F7D8D30332570E9D4A123D9E8B7CA1D1E80_il2cpp_TypeInfo_var, (&V_7));
NullCheck(L_33);
String_t* L_34;
L_34 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_33);
V_7 = *(uint16_t*)UnBox(L_33);
NullCheck(L_30);
WWWForm_AddField_m8ACDB7B2124FA6EAD7FC120BB469C6352C7B7696(L_30, _stringLiteralE7E5D35F25A57631AF401AF761D55D9973D0313D, L_34, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_35 = V_1;
NullCheck(L_35);
Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5 * L_36;
L_36 = WWWForm_get_headers_m9F6A4222926792B110E9821AF5B23FF3FB9BD45A(L_35, /*hidden argument*/NULL);
NullCheck(L_36);
Dictionary_2_set_Item_m31C41E4FE938066440DAFD1E667C2F3986549668(L_36, _stringLiteral16D46E00A879AD1C9053ED90B4B148D721A45E92, _stringLiteral64058CC688A96A90239811EF06C9D20DB0499C3E, /*hidden argument*/Dictionary_2_set_Item_m31C41E4FE938066440DAFD1E667C2F3986549668_RuntimeMethod_var);
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_37 = V_0;
NullCheck(L_37);
String_t* L_38;
L_38 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_37);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_39 = V_1;
UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * L_40;
L_40 = UnityWebRequest_Post_m5F29B83B6FEDEAEAAC938DD26AE484A2750DB646(L_38, L_39, /*hidden argument*/NULL);
V_2 = L_40;
UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * L_41 = V_2;
InternalResponseDelegate_2_t4C3380D090B02AF491ABFE36875D463E04A81BD7 * L_42 = (InternalResponseDelegate_2_t4C3380D090B02AF491ABFE36875D463E04A81BD7 *)il2cpp_codegen_object_new(InternalResponseDelegate_2_t4C3380D090B02AF491ABFE36875D463E04A81BD7_il2cpp_TypeInfo_var);
InternalResponseDelegate_2__ctor_mE3D3CDC33CBC9039E9948C1B69F741122FEF4F69(L_42, __this, (intptr_t)((intptr_t)NetworkMatch_OnDropConnection_m08090F22FEB40D7BED8DE3B8F704FEDF0DB391F5_RuntimeMethod_var), /*hidden argument*/InternalResponseDelegate_2__ctor_mE3D3CDC33CBC9039E9948C1B69F741122FEF4F69_RuntimeMethod_var);
BasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A * L_43 = ___callback1;
RuntimeObject* L_44;
L_44 = NetworkMatch_ProcessMatchResponse_TisDropConnectionResponse_tBAAA11B3A813A89B8D7C481BB80E24C1C94E1F31_TisBasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A_mFF6F93BBCEEB841440524930B28D4257627F9604(__this, L_41, L_42, L_43, /*hidden argument*/NetworkMatch_ProcessMatchResponse_TisDropConnectionResponse_tBAAA11B3A813A89B8D7C481BB80E24C1C94E1F31_TisBasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A_mFF6F93BBCEEB841440524930B28D4257627F9604_RuntimeMethod_var);
Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * L_45;
L_45 = MonoBehaviour_StartCoroutine_m3E33706D38B23CDD179E99BAD61E32303E9CC719(__this, L_44, /*hidden argument*/NULL);
V_4 = L_45;
goto IL_0144;
}
IL_0144:
{
Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * L_46 = V_4;
return L_46;
}
}
// System.Void UnityEngine.Networking.Match.NetworkMatch::OnDropConnection(UnityEngine.Networking.Match.DropConnectionResponse,UnityEngine.Networking.Match.NetworkMatch/BasicResponseDelegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkMatch_OnDropConnection_m08090F22FEB40D7BED8DE3B8F704FEDF0DB391F5 (NetworkMatch_t520F80EBC98ADEE375884B456429236E5BBA0F3B * __this, DropConnectionResponse_tBAAA11B3A813A89B8D7C481BB80E24C1C94E1F31 * ___response0, BasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A * ___userCallback1, const RuntimeMethod* method)
{
{
BasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A * L_0 = ___userCallback1;
DropConnectionResponse_tBAAA11B3A813A89B8D7C481BB80E24C1C94E1F31 * L_1 = ___response0;
NullCheck(L_1);
bool L_2 = ((Response_tEF5C8607FB2DC4F1E0E744F3F9BAD3869B4BCD6C *)L_1)->get_success_0();
DropConnectionResponse_tBAAA11B3A813A89B8D7C481BB80E24C1C94E1F31 * L_3 = ___response0;
NullCheck(L_3);
String_t* L_4 = ((Response_tEF5C8607FB2DC4F1E0E744F3F9BAD3869B4BCD6C *)L_3)->get_extendedInfo_1();
NullCheck(L_0);
BasicResponseDelegate_Invoke_mD34E66B3E0583711275610B1BCF07FC56A61BCB1(L_0, L_2, L_4, /*hidden argument*/NULL);
return;
}
}
// UnityEngine.Coroutine UnityEngine.Networking.Match.NetworkMatch::ListMatches(System.Int32,System.Int32,System.String,System.Boolean,System.Int32,System.Int32,UnityEngine.Networking.Match.NetworkMatch/DataResponseDelegate`1<System.Collections.Generic.List`1<UnityEngine.Networking.Match.MatchInfoSnapshot>>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * NetworkMatch_ListMatches_m3DC507032B577CF9B28884549E0407D42B57AFEA (NetworkMatch_t520F80EBC98ADEE375884B456429236E5BBA0F3B * __this, int32_t ___startPageNumber0, int32_t ___resultPageSize1, String_t* ___matchNameFilter2, bool ___filterOutPrivateMatchesFromResults3, int32_t ___eloScoreTarget4, int32_t ___requestDomain5, DataResponseDelegate_1_t363D50BBAED9945828B06A89FE812F0AEF4ABBA1 * ___callback6, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7896E01D34168C60ECE45B2AD00FB87A6632B332);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * V_1 = NULL;
{
int32_t L_0;
L_0 = Application_get_platform_mB22F7F39CDD46667C3EF64507E55BB7DA18F66C4(/*hidden argument*/NULL);
V_0 = (bool)((((int32_t)L_0) == ((int32_t)((int32_t)17)))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_001e;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var);
Debug_LogError_m8850D65592770A364D494025FF3A73E8D4D70485(_stringLiteral7896E01D34168C60ECE45B2AD00FB87A6632B332, /*hidden argument*/NULL);
V_1 = (Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 *)NULL;
goto IL_0061;
}
IL_001e:
{
ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * L_2 = (ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 *)il2cpp_codegen_object_new(ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30_il2cpp_TypeInfo_var);
ListMatchRequest__ctor_mB13721CACFED14B46B80AD98571D216350953772(L_2, /*hidden argument*/NULL);
ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * L_3 = L_2;
int32_t L_4 = ___startPageNumber0;
NullCheck(L_3);
ListMatchRequest_set_pageNum_m3716C07B600678E685711BFCD0B0661B0C842034_inline(L_3, L_4, /*hidden argument*/NULL);
ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * L_5 = L_3;
int32_t L_6 = ___resultPageSize1;
NullCheck(L_5);
ListMatchRequest_set_pageSize_mB474132B156ACAFD88EB07D1A9408E79100B43B9_inline(L_5, L_6, /*hidden argument*/NULL);
ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * L_7 = L_5;
String_t* L_8 = ___matchNameFilter2;
NullCheck(L_7);
ListMatchRequest_set_nameFilter_mFBBD2943CA68B32FABFACFCA178416CF9AC3BAEA_inline(L_7, L_8, /*hidden argument*/NULL);
ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * L_9 = L_7;
bool L_10 = ___filterOutPrivateMatchesFromResults3;
NullCheck(L_9);
ListMatchRequest_set_filterOutPrivateMatches_m38C559485A9D47FD1A3C5FBC2454DC58B7A9F754_inline(L_9, L_10, /*hidden argument*/NULL);
ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * L_11 = L_9;
int32_t L_12 = ___eloScoreTarget4;
NullCheck(L_11);
ListMatchRequest_set_eloScore_m80EB463CA251672D86AA00C6FEF024129E1D4C90_inline(L_11, L_12, /*hidden argument*/NULL);
ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * L_13 = L_11;
int32_t L_14 = ___requestDomain5;
NullCheck(L_13);
Request_set_domain_m5D9E2F4FC5FD9612666940E8ADB7C0E6F42354FC_inline(L_13, L_14, /*hidden argument*/NULL);
DataResponseDelegate_1_t363D50BBAED9945828B06A89FE812F0AEF4ABBA1 * L_15 = ___callback6;
Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * L_16;
L_16 = NetworkMatch_ListMatches_m31C5ADB12D6D39D2E396964684D975C1FF3028C6(__this, L_13, L_15, /*hidden argument*/NULL);
V_1 = L_16;
goto IL_0061;
}
IL_0061:
{
Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * L_17 = V_1;
return L_17;
}
}
// UnityEngine.Coroutine UnityEngine.Networking.Match.NetworkMatch::ListMatches(UnityEngine.Networking.Match.ListMatchRequest,UnityEngine.Networking.Match.NetworkMatch/DataResponseDelegate`1<System.Collections.Generic.List`1<UnityEngine.Networking.Match.MatchInfoSnapshot>>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * NetworkMatch_ListMatches_m31C5ADB12D6D39D2E396964684D975C1FF3028C6 (NetworkMatch_t520F80EBC98ADEE375884B456429236E5BBA0F3B * __this, ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * ___req0, DataResponseDelegate_1_t363D50BBAED9945828B06A89FE812F0AEF4ABBA1 * ___callback1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_set_Item_m31C41E4FE938066440DAFD1E667C2F3986549668_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InternalResponseDelegate_2__ctor_mDD46AD163E17C98C5AC76F522B0835E2C1C6A22B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InternalResponseDelegate_2_t516CE3343F339242F578AC9659FD83BD4FAEEAB5_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkMatch_OnMatchList_m06E1BEE915232A4B8940A859719B17074406ACC5_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkMatch_ProcessMatchResponse_TisListMatchResponse_tA778241617E0B4AF172DE6201E27F64EA6670900_TisDataResponseDelegate_1_t363D50BBAED9945828B06A89FE812F0AEF4ABBA1_mF201DF179B23CD9A0BFD49C736F0031D7CAA2C6C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Request_tA1BC1936C153408449C4C207CA12D4358A7477FD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SourceID_tBE00015EA0F2E5DAEBEC7D0210216A18EB6DA62D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utility_t1BA2108022A500F65615E46E75D6A58D03F1E874_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral11E42B7A5E1CF74E4375D71D8CE94F3D8D446DBA);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral14693920B7544ED151BF377173FB1F4A2488E785);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral16D46E00A879AD1C9053ED90B4B148D721A45E92);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2BB8259EC508942FD739C18DBCB771FDA227FDE7);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2E110137FA0B6B8DF1D6626DAD24D0B5BC1C50E2);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral434B22F14CB108AC44FE3DFE41CD208405839E27);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral595320BA056F8106150E19C7F57653801E2B706A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral64058CC688A96A90239811EF06C9D20DB0499C3E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8C3F751CD57B7C60AAD058ED08273A8DB9A61552);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8E79A3CF1B1789894F62CAD8AA6FE343DFA9DBA7);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA009B6D2A048B8DC6D18F008E2ED77A79DDCE1C2);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC6CE503FCF99CF607CD50384B9F29EC8BC274CF2);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCE385F9F7D5C09B5022CEB751F15514B5FABDF44);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD2D2F8D3F9F04A081FFBE6B2AF7917BAAADFC052);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFBFA6E6B8A316BF610915064DCF9AE580CE1C11D);
s_Il2CppMethodInitialized = true;
}
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * V_0 = NULL;
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * V_1 = NULL;
UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * V_2 = NULL;
bool V_3 = false;
Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * V_4 = NULL;
uint64_t V_5 = 0;
bool V_6 = false;
int32_t V_7 = 0;
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * G_B4_0 = NULL;
String_t* G_B4_1 = NULL;
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * G_B3_0 = NULL;
String_t* G_B3_1 = NULL;
String_t* G_B5_0 = NULL;
String_t* G_B5_1 = NULL;
{
DataResponseDelegate_1_t363D50BBAED9945828B06A89FE812F0AEF4ABBA1 * L_0 = ___callback1;
V_3 = (bool)((((RuntimeObject*)(DataResponseDelegate_1_t363D50BBAED9945828B06A89FE812F0AEF4ABBA1 *)L_0) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_1 = V_3;
if (!L_1)
{
goto IL_001d;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var);
Debug_Log_mC26E5AD0D8D156C7FFD173AA15827F69225E9DB8(_stringLiteralCE385F9F7D5C09B5022CEB751F15514B5FABDF44, /*hidden argument*/NULL);
V_4 = (Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 *)NULL;
goto IL_015f;
}
IL_001d:
{
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_2;
L_2 = NetworkMatch_get_baseUri_m9B38E09829D78200CC4BD750427337581F702945(__this, /*hidden argument*/NULL);
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_3 = (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 *)il2cpp_codegen_object_new(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var);
Uri__ctor_m0B44AFB01F3FEDE9319BA4556288340D16101F9D(L_3, L_2, _stringLiteral434B22F14CB108AC44FE3DFE41CD208405839E27, /*hidden argument*/NULL);
V_0 = L_3;
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_4 = V_0;
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_5 = L_4;
G_B3_0 = L_5;
G_B3_1 = _stringLiteral8C3F751CD57B7C60AAD058ED08273A8DB9A61552;
if (L_5)
{
G_B4_0 = L_5;
G_B4_1 = _stringLiteral8C3F751CD57B7C60AAD058ED08273A8DB9A61552;
goto IL_003b;
}
}
{
G_B5_0 = ((String_t*)(NULL));
G_B5_1 = G_B3_1;
goto IL_0040;
}
IL_003b:
{
NullCheck(G_B4_0);
String_t* L_6;
L_6 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, G_B4_0);
G_B5_0 = L_6;
G_B5_1 = G_B4_1;
}
IL_0040:
{
String_t* L_7;
L_7 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(G_B5_1, G_B5_0, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var);
Debug_Log_mC26E5AD0D8D156C7FFD173AA15827F69225E9DB8(L_7, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_8 = (WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB *)il2cpp_codegen_object_new(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var);
WWWForm__ctor_mA0987933892AF6FA9E01603B214E86EC52F6B055(L_8, /*hidden argument*/NULL);
V_1 = L_8;
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_9 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Request_tA1BC1936C153408449C4C207CA12D4358A7477FD_il2cpp_TypeInfo_var);
int32_t L_10 = ((Request_tA1BC1936C153408449C4C207CA12D4358A7477FD_StaticFields*)il2cpp_codegen_static_fields_for(Request_tA1BC1936C153408449C4C207CA12D4358A7477FD_il2cpp_TypeInfo_var))->get_currentVersion_0();
NullCheck(L_9);
WWWForm_AddField_m20BED9E7C237D585E5D040A5D815D9C7DC16990C(L_9, _stringLiteralD2D2F8D3F9F04A081FFBE6B2AF7917BAAADFC052, L_10, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_11 = V_1;
String_t* L_12;
L_12 = Application_get_cloudProjectId_m4428D3F30727F38D42D63962932341043560E43D(/*hidden argument*/NULL);
NullCheck(L_11);
WWWForm_AddField_m8ACDB7B2124FA6EAD7FC120BB469C6352C7B7696(L_11, _stringLiteral595320BA056F8106150E19C7F57653801E2B706A, L_12, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_13 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Utility_t1BA2108022A500F65615E46E75D6A58D03F1E874_il2cpp_TypeInfo_var);
uint64_t L_14;
L_14 = Utility_GetSourceID_m958E8557A6FBCAC4594B4B7A5014BBA266D8EDBE(/*hidden argument*/NULL);
V_5 = L_14;
RuntimeObject * L_15 = Box(SourceID_tBE00015EA0F2E5DAEBEC7D0210216A18EB6DA62D_il2cpp_TypeInfo_var, (&V_5));
NullCheck(L_15);
String_t* L_16;
L_16 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_15);
V_5 = *(uint64_t*)UnBox(L_15);
NullCheck(L_13);
WWWForm_AddField_m8ACDB7B2124FA6EAD7FC120BB469C6352C7B7696(L_13, _stringLiteralA009B6D2A048B8DC6D18F008E2ED77A79DDCE1C2, L_16, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_17 = V_1;
NullCheck(L_17);
WWWForm_AddField_m20BED9E7C237D585E5D040A5D815D9C7DC16990C(L_17, _stringLiteral14693920B7544ED151BF377173FB1F4A2488E785, 0, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_18 = V_1;
ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * L_19 = ___req0;
NullCheck(L_19);
int32_t L_20;
L_20 = Request_get_domain_m37B9BBD8B6369C7170CBF3562A46C9094FB3360F_inline(L_19, /*hidden argument*/NULL);
NullCheck(L_18);
WWWForm_AddField_m20BED9E7C237D585E5D040A5D815D9C7DC16990C(L_18, _stringLiteral11E42B7A5E1CF74E4375D71D8CE94F3D8D446DBA, L_20, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_21 = V_1;
ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * L_22 = ___req0;
NullCheck(L_22);
int32_t L_23;
L_23 = ListMatchRequest_get_pageSize_m0465C7613FBFF54BF422F014F27C26D6CE3AF1E1_inline(L_22, /*hidden argument*/NULL);
NullCheck(L_21);
WWWForm_AddField_m20BED9E7C237D585E5D040A5D815D9C7DC16990C(L_21, _stringLiteral2E110137FA0B6B8DF1D6626DAD24D0B5BC1C50E2, L_23, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_24 = V_1;
ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * L_25 = ___req0;
NullCheck(L_25);
int32_t L_26;
L_26 = ListMatchRequest_get_pageNum_mA6E74CFB9E814DB86AE540DB0E7CFD9A9637B10E_inline(L_25, /*hidden argument*/NULL);
NullCheck(L_24);
WWWForm_AddField_m20BED9E7C237D585E5D040A5D815D9C7DC16990C(L_24, _stringLiteral8E79A3CF1B1789894F62CAD8AA6FE343DFA9DBA7, L_26, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_27 = V_1;
ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * L_28 = ___req0;
NullCheck(L_28);
String_t* L_29;
L_29 = ListMatchRequest_get_nameFilter_m3C0481F1E6046D75BCE05B1DD331B183F2CB1401_inline(L_28, /*hidden argument*/NULL);
NullCheck(L_27);
WWWForm_AddField_m8ACDB7B2124FA6EAD7FC120BB469C6352C7B7696(L_27, _stringLiteralC6CE503FCF99CF607CD50384B9F29EC8BC274CF2, L_29, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_30 = V_1;
ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * L_31 = ___req0;
NullCheck(L_31);
bool L_32;
L_32 = ListMatchRequest_get_filterOutPrivateMatches_m0827128486C61327991B26DDCE1057BF56395B5A_inline(L_31, /*hidden argument*/NULL);
V_6 = L_32;
String_t* L_33;
L_33 = Boolean_ToString_m59BB8456DD05A874BBD756E57EA8AD983287015C((bool*)(&V_6), /*hidden argument*/NULL);
NullCheck(L_30);
WWWForm_AddField_m8ACDB7B2124FA6EAD7FC120BB469C6352C7B7696(L_30, _stringLiteral2BB8259EC508942FD739C18DBCB771FDA227FDE7, L_33, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_34 = V_1;
ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * L_35 = ___req0;
NullCheck(L_35);
int32_t L_36;
L_36 = ListMatchRequest_get_eloScore_m7CC5143EAD11A7CB152C7DD89D2DEE0C1E5F56CB_inline(L_35, /*hidden argument*/NULL);
V_7 = L_36;
String_t* L_37;
L_37 = Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411((int32_t*)(&V_7), /*hidden argument*/NULL);
NullCheck(L_34);
WWWForm_AddField_m8ACDB7B2124FA6EAD7FC120BB469C6352C7B7696(L_34, _stringLiteralFBFA6E6B8A316BF610915064DCF9AE580CE1C11D, L_37, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_38 = V_1;
NullCheck(L_38);
Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5 * L_39;
L_39 = WWWForm_get_headers_m9F6A4222926792B110E9821AF5B23FF3FB9BD45A(L_38, /*hidden argument*/NULL);
NullCheck(L_39);
Dictionary_2_set_Item_m31C41E4FE938066440DAFD1E667C2F3986549668(L_39, _stringLiteral16D46E00A879AD1C9053ED90B4B148D721A45E92, _stringLiteral64058CC688A96A90239811EF06C9D20DB0499C3E, /*hidden argument*/Dictionary_2_set_Item_m31C41E4FE938066440DAFD1E667C2F3986549668_RuntimeMethod_var);
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_40 = V_0;
NullCheck(L_40);
String_t* L_41;
L_41 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_40);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_42 = V_1;
UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * L_43;
L_43 = UnityWebRequest_Post_m5F29B83B6FEDEAEAAC938DD26AE484A2750DB646(L_41, L_42, /*hidden argument*/NULL);
V_2 = L_43;
UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * L_44 = V_2;
InternalResponseDelegate_2_t516CE3343F339242F578AC9659FD83BD4FAEEAB5 * L_45 = (InternalResponseDelegate_2_t516CE3343F339242F578AC9659FD83BD4FAEEAB5 *)il2cpp_codegen_object_new(InternalResponseDelegate_2_t516CE3343F339242F578AC9659FD83BD4FAEEAB5_il2cpp_TypeInfo_var);
InternalResponseDelegate_2__ctor_mDD46AD163E17C98C5AC76F522B0835E2C1C6A22B(L_45, __this, (intptr_t)((intptr_t)NetworkMatch_OnMatchList_m06E1BEE915232A4B8940A859719B17074406ACC5_RuntimeMethod_var), /*hidden argument*/InternalResponseDelegate_2__ctor_mDD46AD163E17C98C5AC76F522B0835E2C1C6A22B_RuntimeMethod_var);
DataResponseDelegate_1_t363D50BBAED9945828B06A89FE812F0AEF4ABBA1 * L_46 = ___callback1;
RuntimeObject* L_47;
L_47 = NetworkMatch_ProcessMatchResponse_TisListMatchResponse_tA778241617E0B4AF172DE6201E27F64EA6670900_TisDataResponseDelegate_1_t363D50BBAED9945828B06A89FE812F0AEF4ABBA1_mF201DF179B23CD9A0BFD49C736F0031D7CAA2C6C(__this, L_44, L_45, L_46, /*hidden argument*/NetworkMatch_ProcessMatchResponse_TisListMatchResponse_tA778241617E0B4AF172DE6201E27F64EA6670900_TisDataResponseDelegate_1_t363D50BBAED9945828B06A89FE812F0AEF4ABBA1_mF201DF179B23CD9A0BFD49C736F0031D7CAA2C6C_RuntimeMethod_var);
Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * L_48;
L_48 = MonoBehaviour_StartCoroutine_m3E33706D38B23CDD179E99BAD61E32303E9CC719(__this, L_47, /*hidden argument*/NULL);
V_4 = L_48;
goto IL_015f;
}
IL_015f:
{
Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * L_49 = V_4;
return L_49;
}
}
// System.Void UnityEngine.Networking.Match.NetworkMatch::OnMatchList(UnityEngine.Networking.Match.ListMatchResponse,UnityEngine.Networking.Match.NetworkMatch/DataResponseDelegate`1<System.Collections.Generic.List`1<UnityEngine.Networking.Match.MatchInfoSnapshot>>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkMatch_OnMatchList_m06E1BEE915232A4B8940A859719B17074406ACC5 (NetworkMatch_t520F80EBC98ADEE375884B456429236E5BBA0F3B * __this, ListMatchResponse_tA778241617E0B4AF172DE6201E27F64EA6670900 * ___response0, DataResponseDelegate_1_t363D50BBAED9945828B06A89FE812F0AEF4ABBA1 * ___userCallback1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DataResponseDelegate_1_Invoke_m349C8857DB465CF5418C91EC90E94D4842457854_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m7BFD0B40F427E95E5E560D817FC12EB5C2660D5D_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m7172A06A4C2A5FBE567C435CBA16C373CA3219DC_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m4267B331E0ABC96A43B93371D123FF3FDECB5FC5_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mA13FB34C0A81132F7FC1D7C667B242626801E3EB_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_mF15DD1A3B8F7221CBA8F8559B46A1F4A4808A896_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m3773D4925D11B4FA7DAC7E5BD75BDB92B1968695_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t6DE630FAF3A1BE1CC9F17F3D6CBF747283858F2F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
List_1_t6DE630FAF3A1BE1CC9F17F3D6CBF747283858F2F * V_0 = NULL;
Enumerator_t86EF25ED3E988DA18AE99A12A25AFE07FFF02303 V_1;
memset((&V_1), 0, sizeof(V_1));
MatchDesc_t49F2F401AE3A8B8B80EDF9838F88127727B4108B * V_2 = NULL;
Exception_t * __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
{
List_1_t6DE630FAF3A1BE1CC9F17F3D6CBF747283858F2F * L_0 = (List_1_t6DE630FAF3A1BE1CC9F17F3D6CBF747283858F2F *)il2cpp_codegen_object_new(List_1_t6DE630FAF3A1BE1CC9F17F3D6CBF747283858F2F_il2cpp_TypeInfo_var);
List_1__ctor_m3773D4925D11B4FA7DAC7E5BD75BDB92B1968695(L_0, /*hidden argument*/List_1__ctor_m3773D4925D11B4FA7DAC7E5BD75BDB92B1968695_RuntimeMethod_var);
V_0 = L_0;
ListMatchResponse_tA778241617E0B4AF172DE6201E27F64EA6670900 * L_1 = ___response0;
NullCheck(L_1);
List_1_t2502ACE8E86D49AF07B92705BD60DD75F6358030 * L_2 = L_1->get_matches_2();
NullCheck(L_2);
Enumerator_t86EF25ED3E988DA18AE99A12A25AFE07FFF02303 L_3;
L_3 = List_1_GetEnumerator_mF15DD1A3B8F7221CBA8F8559B46A1F4A4808A896(L_2, /*hidden argument*/List_1_GetEnumerator_mF15DD1A3B8F7221CBA8F8559B46A1F4A4808A896_RuntimeMethod_var);
V_1 = L_3;
}
IL_0014:
try
{ // begin try (depth: 1)
{
goto IL_002d;
}
IL_0016:
{
MatchDesc_t49F2F401AE3A8B8B80EDF9838F88127727B4108B * L_4;
L_4 = Enumerator_get_Current_m4267B331E0ABC96A43B93371D123FF3FDECB5FC5_inline((Enumerator_t86EF25ED3E988DA18AE99A12A25AFE07FFF02303 *)(&V_1), /*hidden argument*/Enumerator_get_Current_m4267B331E0ABC96A43B93371D123FF3FDECB5FC5_RuntimeMethod_var);
V_2 = L_4;
List_1_t6DE630FAF3A1BE1CC9F17F3D6CBF747283858F2F * L_5 = V_0;
MatchDesc_t49F2F401AE3A8B8B80EDF9838F88127727B4108B * L_6 = V_2;
MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0 * L_7 = (MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0 *)il2cpp_codegen_object_new(MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0_il2cpp_TypeInfo_var);
MatchInfoSnapshot__ctor_mE27E4F585E32808834F47DF38512AF92A9655B20(L_7, L_6, /*hidden argument*/NULL);
NullCheck(L_5);
List_1_Add_mA13FB34C0A81132F7FC1D7C667B242626801E3EB(L_5, L_7, /*hidden argument*/List_1_Add_mA13FB34C0A81132F7FC1D7C667B242626801E3EB_RuntimeMethod_var);
}
IL_002d:
{
bool L_8;
L_8 = Enumerator_MoveNext_m7172A06A4C2A5FBE567C435CBA16C373CA3219DC((Enumerator_t86EF25ED3E988DA18AE99A12A25AFE07FFF02303 *)(&V_1), /*hidden argument*/Enumerator_MoveNext_m7172A06A4C2A5FBE567C435CBA16C373CA3219DC_RuntimeMethod_var);
if (L_8)
{
goto IL_0016;
}
}
IL_0036:
{
IL2CPP_LEAVE(0x47, FINALLY_0038);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0038;
}
FINALLY_0038:
{ // begin finally (depth: 1)
Enumerator_Dispose_m7BFD0B40F427E95E5E560D817FC12EB5C2660D5D((Enumerator_t86EF25ED3E988DA18AE99A12A25AFE07FFF02303 *)(&V_1), /*hidden argument*/Enumerator_Dispose_m7BFD0B40F427E95E5E560D817FC12EB5C2660D5D_RuntimeMethod_var);
IL2CPP_END_FINALLY(56)
} // end finally (depth: 1)
IL2CPP_CLEANUP(56)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x47, IL_0047)
}
IL_0047:
{
DataResponseDelegate_1_t363D50BBAED9945828B06A89FE812F0AEF4ABBA1 * L_9 = ___userCallback1;
ListMatchResponse_tA778241617E0B4AF172DE6201E27F64EA6670900 * L_10 = ___response0;
NullCheck(L_10);
bool L_11 = ((Response_tEF5C8607FB2DC4F1E0E744F3F9BAD3869B4BCD6C *)L_10)->get_success_0();
ListMatchResponse_tA778241617E0B4AF172DE6201E27F64EA6670900 * L_12 = ___response0;
NullCheck(L_12);
String_t* L_13 = ((Response_tEF5C8607FB2DC4F1E0E744F3F9BAD3869B4BCD6C *)L_12)->get_extendedInfo_1();
List_1_t6DE630FAF3A1BE1CC9F17F3D6CBF747283858F2F * L_14 = V_0;
NullCheck(L_9);
DataResponseDelegate_1_Invoke_m349C8857DB465CF5418C91EC90E94D4842457854(L_9, L_11, L_13, L_14, /*hidden argument*/DataResponseDelegate_1_Invoke_m349C8857DB465CF5418C91EC90E94D4842457854_RuntimeMethod_var);
return;
}
}
// UnityEngine.Coroutine UnityEngine.Networking.Match.NetworkMatch::SetMatchAttributes(UnityEngine.Networking.Types.NetworkID,System.Boolean,System.Int32,UnityEngine.Networking.Match.NetworkMatch/BasicResponseDelegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * NetworkMatch_SetMatchAttributes_m0801FF56C058F5E70000603F85A6A4D1B050B483 (NetworkMatch_t520F80EBC98ADEE375884B456429236E5BBA0F3B * __this, uint64_t ___networkId0, bool ___isListed1, int32_t ___requestDomain2, BasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A * ___callback3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SetMatchAttributesRequest_t22EC5198C69E086FC5BC8DB4E249E4B90FAFF2E2_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * V_0 = NULL;
{
SetMatchAttributesRequest_t22EC5198C69E086FC5BC8DB4E249E4B90FAFF2E2 * L_0 = (SetMatchAttributesRequest_t22EC5198C69E086FC5BC8DB4E249E4B90FAFF2E2 *)il2cpp_codegen_object_new(SetMatchAttributesRequest_t22EC5198C69E086FC5BC8DB4E249E4B90FAFF2E2_il2cpp_TypeInfo_var);
SetMatchAttributesRequest__ctor_m2110EB4B0BDE74BF1E6D04F17D02787525F2F1BA(L_0, /*hidden argument*/NULL);
SetMatchAttributesRequest_t22EC5198C69E086FC5BC8DB4E249E4B90FAFF2E2 * L_1 = L_0;
uint64_t L_2 = ___networkId0;
NullCheck(L_1);
SetMatchAttributesRequest_set_networkId_m9B646C9BA765B12830FCBA07AB25701A7335FE92_inline(L_1, L_2, /*hidden argument*/NULL);
SetMatchAttributesRequest_t22EC5198C69E086FC5BC8DB4E249E4B90FAFF2E2 * L_3 = L_1;
bool L_4 = ___isListed1;
NullCheck(L_3);
SetMatchAttributesRequest_set_isListed_m374284C0BCFAA377F665F9FB8E7871126D2ED7F7_inline(L_3, L_4, /*hidden argument*/NULL);
SetMatchAttributesRequest_t22EC5198C69E086FC5BC8DB4E249E4B90FAFF2E2 * L_5 = L_3;
int32_t L_6 = ___requestDomain2;
NullCheck(L_5);
Request_set_domain_m5D9E2F4FC5FD9612666940E8ADB7C0E6F42354FC_inline(L_5, L_6, /*hidden argument*/NULL);
BasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A * L_7 = ___callback3;
Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * L_8;
L_8 = NetworkMatch_SetMatchAttributes_m3288DDCDAB7842EDFEC10C7BF5B48FDEA549CF08(__this, L_5, L_7, /*hidden argument*/NULL);
V_0 = L_8;
goto IL_0029;
}
IL_0029:
{
Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * L_9 = V_0;
return L_9;
}
}
// UnityEngine.Coroutine UnityEngine.Networking.Match.NetworkMatch::SetMatchAttributes(UnityEngine.Networking.Match.SetMatchAttributesRequest,UnityEngine.Networking.Match.NetworkMatch/BasicResponseDelegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * NetworkMatch_SetMatchAttributes_m3288DDCDAB7842EDFEC10C7BF5B48FDEA549CF08 (NetworkMatch_t520F80EBC98ADEE375884B456429236E5BBA0F3B * __this, SetMatchAttributesRequest_t22EC5198C69E086FC5BC8DB4E249E4B90FAFF2E2 * ___req0, BasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A * ___callback1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_set_Item_m31C41E4FE938066440DAFD1E667C2F3986549668_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InternalResponseDelegate_2__ctor_mFC0084C0973B92D260D3B6DB5AD82EE3B9FF327B_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&InternalResponseDelegate_2_t9E637FC8AD9DFE78C53C017092E174FE94DAC443_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkID_tA7160DE9FBEE6E236564AEA6C328B6180FC368C3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkMatch_OnSetMatchAttributes_mC033F8384FF47977A57139A4B0BEBC56A4DD62F7_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkMatch_ProcessMatchResponse_TisBasicResponse_t9579CCF321F1A381924A886EC1A6496DAC3FC484_TisBasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A_mAE0660E27C201F0AB0F83AE64887924C7F11200C_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Request_tA1BC1936C153408449C4C207CA12D4358A7477FD_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SourceID_tBE00015EA0F2E5DAEBEC7D0210216A18EB6DA62D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utility_t1BA2108022A500F65615E46E75D6A58D03F1E874_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral11E42B7A5E1CF74E4375D71D8CE94F3D8D446DBA);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral14693920B7544ED151BF377173FB1F4A2488E785);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral16D46E00A879AD1C9053ED90B4B148D721A45E92);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral380A680E674A6308DF9844F381538F6CBA4921F5);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3BD06732BCAB068A09DACE7B5D433AB7A22BBE48);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral595320BA056F8106150E19C7F57653801E2B706A);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral64058CC688A96A90239811EF06C9D20DB0499C3E);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7C61EAEAFB3D88C9B039FD07E45F05EE20246885);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9F7F0CB830E94EE0E561A733C75DEEFAE8E59A45);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA009B6D2A048B8DC6D18F008E2ED77A79DDCE1C2);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC7BA0F624C7093AC0132FD986A2AFD6EBE64E352);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD2D2F8D3F9F04A081FFBE6B2AF7917BAAADFC052);
s_Il2CppMethodInitialized = true;
}
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * V_0 = NULL;
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * V_1 = NULL;
UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * V_2 = NULL;
bool V_3 = false;
Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * V_4 = NULL;
uint64_t V_5 = 0;
uint64_t V_6 = 0;
bool V_7 = false;
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * G_B4_0 = NULL;
String_t* G_B4_1 = NULL;
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * G_B3_0 = NULL;
String_t* G_B3_1 = NULL;
String_t* G_B5_0 = NULL;
String_t* G_B5_1 = NULL;
{
BasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A * L_0 = ___callback1;
V_3 = (bool)((((RuntimeObject*)(BasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A *)L_0) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_1 = V_3;
if (!L_1)
{
goto IL_001d;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var);
Debug_Log_mC26E5AD0D8D156C7FFD173AA15827F69225E9DB8(_stringLiteral7C61EAEAFB3D88C9B039FD07E45F05EE20246885, /*hidden argument*/NULL);
V_4 = (Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 *)NULL;
goto IL_013e;
}
IL_001d:
{
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_2;
L_2 = NetworkMatch_get_baseUri_m9B38E09829D78200CC4BD750427337581F702945(__this, /*hidden argument*/NULL);
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_3 = (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 *)il2cpp_codegen_object_new(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var);
Uri__ctor_m0B44AFB01F3FEDE9319BA4556288340D16101F9D(L_3, L_2, _stringLiteral380A680E674A6308DF9844F381538F6CBA4921F5, /*hidden argument*/NULL);
V_0 = L_3;
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_4 = V_0;
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_5 = L_4;
G_B3_0 = L_5;
G_B3_1 = _stringLiteral9F7F0CB830E94EE0E561A733C75DEEFAE8E59A45;
if (L_5)
{
G_B4_0 = L_5;
G_B4_1 = _stringLiteral9F7F0CB830E94EE0E561A733C75DEEFAE8E59A45;
goto IL_003b;
}
}
{
G_B5_0 = ((String_t*)(NULL));
G_B5_1 = G_B3_1;
goto IL_0040;
}
IL_003b:
{
NullCheck(G_B4_0);
String_t* L_6;
L_6 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, G_B4_0);
G_B5_0 = L_6;
G_B5_1 = G_B4_1;
}
IL_0040:
{
String_t* L_7;
L_7 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(G_B5_1, G_B5_0, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var);
Debug_Log_mC26E5AD0D8D156C7FFD173AA15827F69225E9DB8(L_7, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_8 = (WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB *)il2cpp_codegen_object_new(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var);
WWWForm__ctor_mA0987933892AF6FA9E01603B214E86EC52F6B055(L_8, /*hidden argument*/NULL);
V_1 = L_8;
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_9 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Request_tA1BC1936C153408449C4C207CA12D4358A7477FD_il2cpp_TypeInfo_var);
int32_t L_10 = ((Request_tA1BC1936C153408449C4C207CA12D4358A7477FD_StaticFields*)il2cpp_codegen_static_fields_for(Request_tA1BC1936C153408449C4C207CA12D4358A7477FD_il2cpp_TypeInfo_var))->get_currentVersion_0();
NullCheck(L_9);
WWWForm_AddField_m20BED9E7C237D585E5D040A5D815D9C7DC16990C(L_9, _stringLiteralD2D2F8D3F9F04A081FFBE6B2AF7917BAAADFC052, L_10, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_11 = V_1;
String_t* L_12;
L_12 = Application_get_cloudProjectId_m4428D3F30727F38D42D63962932341043560E43D(/*hidden argument*/NULL);
NullCheck(L_11);
WWWForm_AddField_m8ACDB7B2124FA6EAD7FC120BB469C6352C7B7696(L_11, _stringLiteral595320BA056F8106150E19C7F57653801E2B706A, L_12, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_13 = V_1;
IL2CPP_RUNTIME_CLASS_INIT(Utility_t1BA2108022A500F65615E46E75D6A58D03F1E874_il2cpp_TypeInfo_var);
uint64_t L_14;
L_14 = Utility_GetSourceID_m958E8557A6FBCAC4594B4B7A5014BBA266D8EDBE(/*hidden argument*/NULL);
V_5 = L_14;
RuntimeObject * L_15 = Box(SourceID_tBE00015EA0F2E5DAEBEC7D0210216A18EB6DA62D_il2cpp_TypeInfo_var, (&V_5));
NullCheck(L_15);
String_t* L_16;
L_16 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_15);
V_5 = *(uint64_t*)UnBox(L_15);
NullCheck(L_13);
WWWForm_AddField_m8ACDB7B2124FA6EAD7FC120BB469C6352C7B7696(L_13, _stringLiteralA009B6D2A048B8DC6D18F008E2ED77A79DDCE1C2, L_16, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_17 = V_1;
SetMatchAttributesRequest_t22EC5198C69E086FC5BC8DB4E249E4B90FAFF2E2 * L_18 = ___req0;
NullCheck(L_18);
uint64_t L_19;
L_19 = SetMatchAttributesRequest_get_networkId_m7FCEC07EFF3DB82CFDF40B7D6AEF6C11029BFCE0_inline(L_18, /*hidden argument*/NULL);
NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481 * L_20;
L_20 = Utility_GetAccessTokenForNetwork_m778FE11429F330727F46BDA237C28DD6956671C3(L_19, /*hidden argument*/NULL);
NullCheck(L_20);
String_t* L_21;
L_21 = NetworkAccessToken_GetByteString_m15886A9E88F5D490BB595D91F9282D458E1EB79F(L_20, /*hidden argument*/NULL);
NullCheck(L_17);
WWWForm_AddField_m8ACDB7B2124FA6EAD7FC120BB469C6352C7B7696(L_17, _stringLiteral14693920B7544ED151BF377173FB1F4A2488E785, L_21, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_22 = V_1;
SetMatchAttributesRequest_t22EC5198C69E086FC5BC8DB4E249E4B90FAFF2E2 * L_23 = ___req0;
NullCheck(L_23);
int32_t L_24;
L_24 = Request_get_domain_m37B9BBD8B6369C7170CBF3562A46C9094FB3360F_inline(L_23, /*hidden argument*/NULL);
NullCheck(L_22);
WWWForm_AddField_m20BED9E7C237D585E5D040A5D815D9C7DC16990C(L_22, _stringLiteral11E42B7A5E1CF74E4375D71D8CE94F3D8D446DBA, L_24, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_25 = V_1;
SetMatchAttributesRequest_t22EC5198C69E086FC5BC8DB4E249E4B90FAFF2E2 * L_26 = ___req0;
NullCheck(L_26);
uint64_t L_27;
L_27 = SetMatchAttributesRequest_get_networkId_m7FCEC07EFF3DB82CFDF40B7D6AEF6C11029BFCE0_inline(L_26, /*hidden argument*/NULL);
V_6 = L_27;
RuntimeObject * L_28 = Box(NetworkID_tA7160DE9FBEE6E236564AEA6C328B6180FC368C3_il2cpp_TypeInfo_var, (&V_6));
NullCheck(L_28);
String_t* L_29;
L_29 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_28);
V_6 = *(uint64_t*)UnBox(L_28);
NullCheck(L_25);
WWWForm_AddField_m8ACDB7B2124FA6EAD7FC120BB469C6352C7B7696(L_25, _stringLiteral3BD06732BCAB068A09DACE7B5D433AB7A22BBE48, L_29, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_30 = V_1;
SetMatchAttributesRequest_t22EC5198C69E086FC5BC8DB4E249E4B90FAFF2E2 * L_31 = ___req0;
NullCheck(L_31);
bool L_32;
L_32 = SetMatchAttributesRequest_get_isListed_m4AD05BE1E93CD550D5EFED8AFDC8C3A14F539999_inline(L_31, /*hidden argument*/NULL);
V_7 = L_32;
String_t* L_33;
L_33 = Boolean_ToString_m59BB8456DD05A874BBD756E57EA8AD983287015C((bool*)(&V_7), /*hidden argument*/NULL);
NullCheck(L_30);
WWWForm_AddField_m8ACDB7B2124FA6EAD7FC120BB469C6352C7B7696(L_30, _stringLiteralC7BA0F624C7093AC0132FD986A2AFD6EBE64E352, L_33, /*hidden argument*/NULL);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_34 = V_1;
NullCheck(L_34);
Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5 * L_35;
L_35 = WWWForm_get_headers_m9F6A4222926792B110E9821AF5B23FF3FB9BD45A(L_34, /*hidden argument*/NULL);
NullCheck(L_35);
Dictionary_2_set_Item_m31C41E4FE938066440DAFD1E667C2F3986549668(L_35, _stringLiteral16D46E00A879AD1C9053ED90B4B148D721A45E92, _stringLiteral64058CC688A96A90239811EF06C9D20DB0499C3E, /*hidden argument*/Dictionary_2_set_Item_m31C41E4FE938066440DAFD1E667C2F3986549668_RuntimeMethod_var);
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_36 = V_0;
NullCheck(L_36);
String_t* L_37;
L_37 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_36);
WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_38 = V_1;
UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * L_39;
L_39 = UnityWebRequest_Post_m5F29B83B6FEDEAEAAC938DD26AE484A2750DB646(L_37, L_38, /*hidden argument*/NULL);
V_2 = L_39;
UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * L_40 = V_2;
InternalResponseDelegate_2_t9E637FC8AD9DFE78C53C017092E174FE94DAC443 * L_41 = (InternalResponseDelegate_2_t9E637FC8AD9DFE78C53C017092E174FE94DAC443 *)il2cpp_codegen_object_new(InternalResponseDelegate_2_t9E637FC8AD9DFE78C53C017092E174FE94DAC443_il2cpp_TypeInfo_var);
InternalResponseDelegate_2__ctor_mFC0084C0973B92D260D3B6DB5AD82EE3B9FF327B(L_41, __this, (intptr_t)((intptr_t)NetworkMatch_OnSetMatchAttributes_mC033F8384FF47977A57139A4B0BEBC56A4DD62F7_RuntimeMethod_var), /*hidden argument*/InternalResponseDelegate_2__ctor_mFC0084C0973B92D260D3B6DB5AD82EE3B9FF327B_RuntimeMethod_var);
BasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A * L_42 = ___callback1;
RuntimeObject* L_43;
L_43 = NetworkMatch_ProcessMatchResponse_TisBasicResponse_t9579CCF321F1A381924A886EC1A6496DAC3FC484_TisBasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A_mAE0660E27C201F0AB0F83AE64887924C7F11200C(__this, L_40, L_41, L_42, /*hidden argument*/NetworkMatch_ProcessMatchResponse_TisBasicResponse_t9579CCF321F1A381924A886EC1A6496DAC3FC484_TisBasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A_mAE0660E27C201F0AB0F83AE64887924C7F11200C_RuntimeMethod_var);
Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * L_44;
L_44 = MonoBehaviour_StartCoroutine_m3E33706D38B23CDD179E99BAD61E32303E9CC719(__this, L_43, /*hidden argument*/NULL);
V_4 = L_44;
goto IL_013e;
}
IL_013e:
{
Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * L_45 = V_4;
return L_45;
}
}
// System.Void UnityEngine.Networking.Match.NetworkMatch::OnSetMatchAttributes(UnityEngine.Networking.Match.BasicResponse,UnityEngine.Networking.Match.NetworkMatch/BasicResponseDelegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkMatch_OnSetMatchAttributes_mC033F8384FF47977A57139A4B0BEBC56A4DD62F7 (NetworkMatch_t520F80EBC98ADEE375884B456429236E5BBA0F3B * __this, BasicResponse_t9579CCF321F1A381924A886EC1A6496DAC3FC484 * ___response0, BasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A * ___userCallback1, const RuntimeMethod* method)
{
{
BasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A * L_0 = ___userCallback1;
BasicResponse_t9579CCF321F1A381924A886EC1A6496DAC3FC484 * L_1 = ___response0;
NullCheck(L_1);
bool L_2 = ((Response_tEF5C8607FB2DC4F1E0E744F3F9BAD3869B4BCD6C *)L_1)->get_success_0();
BasicResponse_t9579CCF321F1A381924A886EC1A6496DAC3FC484 * L_3 = ___response0;
NullCheck(L_3);
String_t* L_4 = ((Response_tEF5C8607FB2DC4F1E0E744F3F9BAD3869B4BCD6C *)L_3)->get_extendedInfo_1();
NullCheck(L_0);
BasicResponseDelegate_Invoke_mD34E66B3E0583711275610B1BCF07FC56A61BCB1(L_0, L_2, L_4, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Networking.Match.NetworkMatch::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkMatch__ctor_m16175D70497CD243DDE680696071EB7D3569620D (NetworkMatch_t520F80EBC98ADEE375884B456429236E5BBA0F3B * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD3D048DC9953FA1B6207645A16737399F1DCABF6);
s_Il2CppMethodInitialized = true;
}
{
Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_0 = (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 *)il2cpp_codegen_object_new(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var);
Uri__ctor_m7724F43B1525624FFF97A774B6B909B075714D5C(L_0, _stringLiteralD3D048DC9953FA1B6207645A16737399F1DCABF6, /*hidden argument*/NULL);
__this->set_m_BaseUri_4(L_0);
MonoBehaviour__ctor_mC0995D847F6A95B1A553652636C38A2AA8B13BED(__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.Boolean UnityEngine.Networking.NetworkTransport::DoesEndPointUsePlatformProtocols(System.Net.EndPoint)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NetworkTransport_DoesEndPointUsePlatformProtocols_m3A90D76EBE1974D0071923D6707668C065920449 (EndPoint_t18D4AE8D03090A2B262136E59F95CE61418C34DA * ___endPoint0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0E14CB107D2828D06B7F193B2B967C9C34BFA53F);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
SocketAddress_tE8FA33C91254662406767AF97518C235382742D3 * V_1 = NULL;
bool V_2 = false;
bool V_3 = false;
int32_t G_B4_0 = 0;
{
EndPoint_t18D4AE8D03090A2B262136E59F95CE61418C34DA * L_0 = ___endPoint0;
NullCheck(L_0);
Type_t * L_1;
L_1 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_0, /*hidden argument*/NULL);
NullCheck(L_1);
String_t* L_2;
L_2 = VirtFuncInvoker0< String_t* >::Invoke(25 /* System.String System.Type::get_FullName() */, L_1);
bool L_3;
L_3 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_2, _stringLiteral0E14CB107D2828D06B7F193B2B967C9C34BFA53F, /*hidden argument*/NULL);
V_0 = L_3;
bool L_4 = V_0;
if (!L_4)
{
goto IL_0042;
}
}
{
EndPoint_t18D4AE8D03090A2B262136E59F95CE61418C34DA * L_5 = ___endPoint0;
NullCheck(L_5);
SocketAddress_tE8FA33C91254662406767AF97518C235382742D3 * L_6;
L_6 = VirtFuncInvoker0< SocketAddress_tE8FA33C91254662406767AF97518C235382742D3 * >::Invoke(5 /* System.Net.SocketAddress System.Net.EndPoint::Serialize() */, L_5);
V_1 = L_6;
SocketAddress_tE8FA33C91254662406767AF97518C235382742D3 * L_7 = V_1;
NullCheck(L_7);
uint8_t L_8;
L_8 = SocketAddress_get_Item_m4ED599B209C73DFB72212B7B3621B1703A26C5FD(L_7, 8, /*hidden argument*/NULL);
if (L_8)
{
goto IL_0038;
}
}
{
SocketAddress_tE8FA33C91254662406767AF97518C235382742D3 * L_9 = V_1;
NullCheck(L_9);
uint8_t L_10;
L_10 = SocketAddress_get_Item_m4ED599B209C73DFB72212B7B3621B1703A26C5FD(L_9, ((int32_t)9), /*hidden argument*/NULL);
G_B4_0 = ((!(((uint32_t)L_10) <= ((uint32_t)0)))? 1 : 0);
goto IL_0039;
}
IL_0038:
{
G_B4_0 = 1;
}
IL_0039:
{
V_2 = (bool)G_B4_0;
bool L_11 = V_2;
if (!L_11)
{
goto IL_0041;
}
}
{
V_3 = (bool)1;
goto IL_0046;
}
IL_0041:
{
}
IL_0042:
{
V_3 = (bool)0;
goto IL_0046;
}
IL_0046:
{
bool L_12 = V_3;
return L_12;
}
}
// System.Int32 UnityEngine.Networking.NetworkTransport::ConnectEndPoint(System.Int32,System.Net.EndPoint,System.Int32,System.Byte&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NetworkTransport_ConnectEndPoint_m255B4FE92DE3E5D368A9BE45A024205D06E27EA4 (int32_t ___hostId0, EndPoint_t18D4AE8D03090A2B262136E59F95CE61418C34DA * ___endPoint1, int32_t ___exceptionConnectionId2, uint8_t* ___error3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BitConverter_t8DCBA24B909F1B221372AF2B37C76DCF614BA654_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Marshal_tEBAFAE20369FCB1B38C49C4E27A8D8C2C4B55058_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CPrivateImplementationDetailsU3E_tB81EF66DC95F2C9A31394EC66C970747E54559B0____AD8DE0BDC215A2190D235D94698594B980EAE428E98B444A3C647B01175FDF43_0_FieldInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0E14CB107D2828D06B7F193B2B967C9C34BFA53F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCA99244C9CA9E756716FAF957CB2C14B96DE45CC);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCE6672530430D7FCAA477C87AC4B23B59477AEDD);
s_Il2CppMethodInitialized = true;
}
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_0 = NULL;
bool V_1 = false;
bool V_2 = false;
bool V_3 = false;
EndPoint_t18D4AE8D03090A2B262136E59F95CE61418C34DA * V_4 = NULL;
SocketAddress_tE8FA33C91254662406767AF97518C235382742D3 * V_5 = NULL;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_6 = NULL;
intptr_t V_7;
memset((&V_7), 0, sizeof(V_7));
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_8 = NULL;
int32_t V_9 = 0;
bool V_10 = false;
bool V_11 = false;
bool V_12 = false;
bool V_13 = false;
int32_t V_14 = 0;
bool V_15 = false;
bool V_16 = false;
bool V_17 = false;
int32_t V_18 = 0;
SocketAddress_tE8FA33C91254662406767AF97518C235382742D3 * V_19 = NULL;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_20 = NULL;
int32_t V_21 = 0;
bool V_22 = false;
bool V_23 = false;
bool V_24 = false;
int32_t V_25 = 0;
bool V_26 = false;
int32_t G_B6_0 = 0;
int32_t G_B16_0 = 0;
int32_t G_B23_0 = 0;
{
uint8_t* L_0 = ___error3;
*((int8_t*)L_0) = (int8_t)0;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)4);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = L_1;
RuntimeFieldHandle_t7BE65FC857501059EBAC9772C93B02CD413D9C96 L_3 = { reinterpret_cast<intptr_t> (U3CPrivateImplementationDetailsU3E_tB81EF66DC95F2C9A31394EC66C970747E54559B0____AD8DE0BDC215A2190D235D94698594B980EAE428E98B444A3C647B01175FDF43_0_FieldInfo_var) };
RuntimeHelpers_InitializeArray_mE27238308FED781F2D6A719F0903F2E1311B058F((RuntimeArray *)(RuntimeArray *)L_2, L_3, /*hidden argument*/NULL);
V_0 = L_2;
EndPoint_t18D4AE8D03090A2B262136E59F95CE61418C34DA * L_4 = ___endPoint1;
V_1 = (bool)((((RuntimeObject*)(EndPoint_t18D4AE8D03090A2B262136E59F95CE61418C34DA *)L_4) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_5 = V_1;
if (!L_5)
{
goto IL_0029;
}
}
{
NullReferenceException_t44B4F3CDE3111E74591952B8BE8707B28866D724 * L_6 = (NullReferenceException_t44B4F3CDE3111E74591952B8BE8707B28866D724 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NullReferenceException_t44B4F3CDE3111E74591952B8BE8707B28866D724_il2cpp_TypeInfo_var)));
NullReferenceException__ctor_mF1733893E10358B400E817297D686A48AB3FB7B3(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBCA3F64FAF8B5677425E2E15F31EA65E04BB7890)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NetworkTransport_ConnectEndPoint_m255B4FE92DE3E5D368A9BE45A024205D06E27EA4_RuntimeMethod_var)));
}
IL_0029:
{
EndPoint_t18D4AE8D03090A2B262136E59F95CE61418C34DA * L_7 = ___endPoint1;
NullCheck(L_7);
Type_t * L_8;
L_8 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_7, /*hidden argument*/NULL);
NullCheck(L_8);
String_t* L_9;
L_9 = VirtFuncInvoker0< String_t* >::Invoke(25 /* System.String System.Type::get_FullName() */, L_8);
bool L_10;
L_10 = String_op_Inequality_mDDA2DDED3E7EF042987EB7180EE3E88105F0AAE2(L_9, _stringLiteralCA99244C9CA9E756716FAF957CB2C14B96DE45CC, /*hidden argument*/NULL);
if (!L_10)
{
goto IL_006e;
}
}
{
EndPoint_t18D4AE8D03090A2B262136E59F95CE61418C34DA * L_11 = ___endPoint1;
NullCheck(L_11);
Type_t * L_12;
L_12 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_11, /*hidden argument*/NULL);
NullCheck(L_12);
String_t* L_13;
L_13 = VirtFuncInvoker0< String_t* >::Invoke(25 /* System.String System.Type::get_FullName() */, L_12);
bool L_14;
L_14 = String_op_Inequality_mDDA2DDED3E7EF042987EB7180EE3E88105F0AAE2(L_13, _stringLiteral0E14CB107D2828D06B7F193B2B967C9C34BFA53F, /*hidden argument*/NULL);
if (!L_14)
{
goto IL_006e;
}
}
{
EndPoint_t18D4AE8D03090A2B262136E59F95CE61418C34DA * L_15 = ___endPoint1;
NullCheck(L_15);
Type_t * L_16;
L_16 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_15, /*hidden argument*/NULL);
NullCheck(L_16);
String_t* L_17;
L_17 = VirtFuncInvoker0< String_t* >::Invoke(25 /* System.String System.Type::get_FullName() */, L_16);
bool L_18;
L_18 = String_op_Inequality_mDDA2DDED3E7EF042987EB7180EE3E88105F0AAE2(L_17, _stringLiteralCE6672530430D7FCAA477C87AC4B23B59477AEDD, /*hidden argument*/NULL);
G_B6_0 = ((int32_t)(L_18));
goto IL_006f;
}
IL_006e:
{
G_B6_0 = 0;
}
IL_006f:
{
V_2 = (bool)G_B6_0;
bool L_19 = V_2;
if (!L_19)
{
goto IL_007e;
}
}
{
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_20 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)));
ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_20, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8E37D8E89372864B7B89F3DA64D896DD89BB2FF6)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NetworkTransport_ConnectEndPoint_m255B4FE92DE3E5D368A9BE45A024205D06E27EA4_RuntimeMethod_var)));
}
IL_007e:
{
EndPoint_t18D4AE8D03090A2B262136E59F95CE61418C34DA * L_21 = ___endPoint1;
NullCheck(L_21);
Type_t * L_22;
L_22 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_21, /*hidden argument*/NULL);
NullCheck(L_22);
String_t* L_23;
L_23 = VirtFuncInvoker0< String_t* >::Invoke(25 /* System.String System.Type::get_FullName() */, L_22);
bool L_24;
L_24 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_23, _stringLiteralCA99244C9CA9E756716FAF957CB2C14B96DE45CC, /*hidden argument*/NULL);
V_3 = L_24;
bool L_25 = V_3;
if (!L_25)
{
goto IL_020c;
}
}
{
EndPoint_t18D4AE8D03090A2B262136E59F95CE61418C34DA * L_26 = ___endPoint1;
V_4 = L_26;
EndPoint_t18D4AE8D03090A2B262136E59F95CE61418C34DA * L_27 = V_4;
NullCheck(L_27);
int32_t L_28;
L_28 = VirtFuncInvoker0< int32_t >::Invoke(4 /* System.Net.Sockets.AddressFamily System.Net.EndPoint::get_AddressFamily() */, L_27);
V_10 = (bool)((((int32_t)((((int32_t)L_28) == ((int32_t)((int32_t)23)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_29 = V_10;
if (!L_29)
{
goto IL_00bd;
}
}
{
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_30 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)));
ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_30, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral02B539DCAE2AFEF6DE41B32199CFE86AFB213028)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_30, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NetworkTransport_ConnectEndPoint_m255B4FE92DE3E5D368A9BE45A024205D06E27EA4_RuntimeMethod_var)));
}
IL_00bd:
{
EndPoint_t18D4AE8D03090A2B262136E59F95CE61418C34DA * L_31 = V_4;
NullCheck(L_31);
SocketAddress_tE8FA33C91254662406767AF97518C235382742D3 * L_32;
L_32 = VirtFuncInvoker0< SocketAddress_tE8FA33C91254662406767AF97518C235382742D3 * >::Invoke(5 /* System.Net.SocketAddress System.Net.EndPoint::Serialize() */, L_31);
V_5 = L_32;
SocketAddress_tE8FA33C91254662406767AF97518C235382742D3 * L_33 = V_5;
NullCheck(L_33);
int32_t L_34;
L_34 = SocketAddress_get_Size_m6383C5C4F9200464ACB6D583020F81019602CFA4_inline(L_33, /*hidden argument*/NULL);
V_11 = (bool)((((int32_t)((((int32_t)L_34) == ((int32_t)((int32_t)14)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_35 = V_11;
if (!L_35)
{
goto IL_00e5;
}
}
{
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_36 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)));
ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_36, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4A0AD9813AEE05844917B9EAF4D1D3743AE8BE87)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_36, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NetworkTransport_ConnectEndPoint_m255B4FE92DE3E5D368A9BE45A024205D06E27EA4_RuntimeMethod_var)));
}
IL_00e5:
{
SocketAddress_tE8FA33C91254662406767AF97518C235382742D3 * L_37 = V_5;
NullCheck(L_37);
uint8_t L_38;
L_38 = SocketAddress_get_Item_m4ED599B209C73DFB72212B7B3621B1703A26C5FD(L_37, 0, /*hidden argument*/NULL);
if (L_38)
{
goto IL_00fc;
}
}
{
SocketAddress_tE8FA33C91254662406767AF97518C235382742D3 * L_39 = V_5;
NullCheck(L_39);
uint8_t L_40;
L_40 = SocketAddress_get_Item_m4ED599B209C73DFB72212B7B3621B1703A26C5FD(L_39, 1, /*hidden argument*/NULL);
G_B16_0 = ((!(((uint32_t)L_40) <= ((uint32_t)0)))? 1 : 0);
goto IL_00fd;
}
IL_00fc:
{
G_B16_0 = 1;
}
IL_00fd:
{
V_12 = (bool)G_B16_0;
bool L_41 = V_12;
if (!L_41)
{
goto IL_010e;
}
}
{
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_42 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)));
ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_42, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB5D188BB939DB222A91F272FA2B6C8F7AC78B6D4)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_42, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NetworkTransport_ConnectEndPoint_m255B4FE92DE3E5D368A9BE45A024205D06E27EA4_RuntimeMethod_var)));
}
IL_010e:
{
SocketAddress_tE8FA33C91254662406767AF97518C235382742D3 * L_43 = V_5;
NullCheck(L_43);
uint8_t L_44;
L_44 = SocketAddress_get_Item_m4ED599B209C73DFB72212B7B3621B1703A26C5FD(L_43, 2, /*hidden argument*/NULL);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_45 = V_0;
NullCheck(L_45);
int32_t L_46 = 0;
uint8_t L_47 = (L_45)->GetAt(static_cast<il2cpp_array_size_t>(L_46));
if ((!(((uint32_t)L_44) == ((uint32_t)L_47))))
{
goto IL_0147;
}
}
{
SocketAddress_tE8FA33C91254662406767AF97518C235382742D3 * L_48 = V_5;
NullCheck(L_48);
uint8_t L_49;
L_49 = SocketAddress_get_Item_m4ED599B209C73DFB72212B7B3621B1703A26C5FD(L_48, 3, /*hidden argument*/NULL);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_50 = V_0;
NullCheck(L_50);
int32_t L_51 = 1;
uint8_t L_52 = (L_50)->GetAt(static_cast<il2cpp_array_size_t>(L_51));
if ((!(((uint32_t)L_49) == ((uint32_t)L_52))))
{
goto IL_0147;
}
}
{
SocketAddress_tE8FA33C91254662406767AF97518C235382742D3 * L_53 = V_5;
NullCheck(L_53);
uint8_t L_54;
L_54 = SocketAddress_get_Item_m4ED599B209C73DFB72212B7B3621B1703A26C5FD(L_53, 4, /*hidden argument*/NULL);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_55 = V_0;
NullCheck(L_55);
int32_t L_56 = 2;
uint8_t L_57 = (L_55)->GetAt(static_cast<il2cpp_array_size_t>(L_56));
if ((!(((uint32_t)L_54) == ((uint32_t)L_57))))
{
goto IL_0147;
}
}
{
SocketAddress_tE8FA33C91254662406767AF97518C235382742D3 * L_58 = V_5;
NullCheck(L_58);
uint8_t L_59;
L_59 = SocketAddress_get_Item_m4ED599B209C73DFB72212B7B3621B1703A26C5FD(L_58, 5, /*hidden argument*/NULL);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_60 = V_0;
NullCheck(L_60);
int32_t L_61 = 3;
uint8_t L_62 = (L_60)->GetAt(static_cast<il2cpp_array_size_t>(L_61));
G_B23_0 = ((((int32_t)((((int32_t)L_59) == ((int32_t)L_62))? 1 : 0)) == ((int32_t)0))? 1 : 0);
goto IL_0148;
}
IL_0147:
{
G_B23_0 = 1;
}
IL_0148:
{
V_13 = (bool)G_B23_0;
bool L_63 = V_13;
if (!L_63)
{
goto IL_0159;
}
}
{
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_64 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)));
ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_64, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF4173404C2A91E0DC024B66C308FAD4BA3387C15)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_64, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NetworkTransport_ConnectEndPoint_m255B4FE92DE3E5D368A9BE45A024205D06E27EA4_RuntimeMethod_var)));
}
IL_0159:
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_65 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)8);
V_6 = L_65;
V_14 = 0;
goto IL_017e;
}
IL_0166:
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_66 = V_6;
int32_t L_67 = V_14;
SocketAddress_tE8FA33C91254662406767AF97518C235382742D3 * L_68 = V_5;
int32_t L_69 = V_14;
NullCheck(L_68);
uint8_t L_70;
L_70 = SocketAddress_get_Item_m4ED599B209C73DFB72212B7B3621B1703A26C5FD(L_68, ((int32_t)il2cpp_codegen_add((int32_t)6, (int32_t)L_69)), /*hidden argument*/NULL);
NullCheck(L_66);
(L_66)->SetAt(static_cast<il2cpp_array_size_t>(L_67), (uint8_t)L_70);
int32_t L_71 = V_14;
V_14 = ((int32_t)il2cpp_codegen_add((int32_t)L_71, (int32_t)1));
}
IL_017e:
{
int32_t L_72 = V_14;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_73 = V_6;
NullCheck(L_73);
V_15 = (bool)((((int32_t)L_72) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_73)->max_length)))))? 1 : 0);
bool L_74 = V_15;
if (L_74)
{
goto IL_0166;
}
}
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_75 = V_6;
IL2CPP_RUNTIME_CLASS_INIT(BitConverter_t8DCBA24B909F1B221372AF2B37C76DCF614BA654_il2cpp_TypeInfo_var);
int64_t L_76;
L_76 = BitConverter_ToInt64_m6B5A5B4C68D036256417E9348FA25A257015B37E(L_75, 0, /*hidden argument*/NULL);
IntPtr__ctor_m2CDDF5A1715E7BCFDFB6823D7A18339BD8EB0E90((intptr_t*)(&V_7), L_76, /*hidden argument*/NULL);
intptr_t L_77 = V_7;
bool L_78;
L_78 = IntPtr_op_Equality_mD94F3FE43A65684EFF984A7B95E70D2520C0AC73((intptr_t)L_77, (intptr_t)(0), /*hidden argument*/NULL);
V_16 = L_78;
bool L_79 = V_16;
if (!L_79)
{
goto IL_01b8;
}
}
{
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_80 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)));
ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_80, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8F1700A1AC35AADD43F02CBF1647CB8D0E2A2CAB)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_80, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NetworkTransport_ConnectEndPoint_m255B4FE92DE3E5D368A9BE45A024205D06E27EA4_RuntimeMethod_var)));
}
IL_01b8:
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_81 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)2);
V_8 = L_81;
intptr_t L_82 = V_7;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_83 = V_8;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_84 = V_8;
NullCheck(L_84);
IL2CPP_RUNTIME_CLASS_INIT(Marshal_tEBAFAE20369FCB1B38C49C4E27A8D8C2C4B55058_il2cpp_TypeInfo_var);
Marshal_Copy_m057A8067BF7212A361510EA26B24022990A07AC0((intptr_t)L_82, L_83, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_84)->max_length))), /*hidden argument*/NULL);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_85 = V_8;
NullCheck(L_85);
int32_t L_86 = 1;
uint8_t L_87 = (L_85)->GetAt(static_cast<il2cpp_array_size_t>(L_86));
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_88 = V_8;
NullCheck(L_88);
int32_t L_89 = 0;
uint8_t L_90 = (L_88)->GetAt(static_cast<il2cpp_array_size_t>(L_89));
V_9 = ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((int32_t)L_87<<(int32_t)8)), (int32_t)L_90));
int32_t L_91 = V_9;
V_17 = (bool)((((int32_t)((((int32_t)L_91) == ((int32_t)((int32_t)23)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_92 = V_17;
if (!L_92)
{
goto IL_01f6;
}
}
{
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_93 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)));
ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_93, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0D7BD05A28506613A365787E2E8446E60EEBA0B5)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_93, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NetworkTransport_ConnectEndPoint_m255B4FE92DE3E5D368A9BE45A024205D06E27EA4_RuntimeMethod_var)));
}
IL_01f6:
{
int32_t L_94 = ___hostId0;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_95 = V_6;
int32_t L_96 = ___exceptionConnectionId2;
uint8_t* L_97 = ___error3;
IL2CPP_RUNTIME_CLASS_INIT(NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44_il2cpp_TypeInfo_var);
int32_t L_98;
L_98 = NetworkTransport_Internal_ConnectEndPoint_m0C217E6A0B5B421DCCEAF786E1383D5629DD1727(L_94, L_95, ((int32_t)128), L_96, (uint8_t*)L_97, /*hidden argument*/NULL);
V_18 = L_98;
goto IL_02be;
}
IL_020c:
{
EndPoint_t18D4AE8D03090A2B262136E59F95CE61418C34DA * L_99 = ___endPoint1;
NullCheck(L_99);
SocketAddress_tE8FA33C91254662406767AF97518C235382742D3 * L_100;
L_100 = VirtFuncInvoker0< SocketAddress_tE8FA33C91254662406767AF97518C235382742D3 * >::Invoke(5 /* System.Net.SocketAddress System.Net.EndPoint::Serialize() */, L_99);
V_19 = L_100;
SocketAddress_tE8FA33C91254662406767AF97518C235382742D3 * L_101 = V_19;
NullCheck(L_101);
int32_t L_102;
L_102 = SocketAddress_get_Size_m6383C5C4F9200464ACB6D583020F81019602CFA4_inline(L_101, /*hidden argument*/NULL);
V_22 = (bool)((((int32_t)((((int32_t)L_102) == ((int32_t)((int32_t)16)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_103 = V_22;
if (!L_103)
{
goto IL_0234;
}
}
{
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_104 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)));
ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_104, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1160537BD85B89A253A1F95C808D8DCD2297DCA8)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_104, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NetworkTransport_ConnectEndPoint_m255B4FE92DE3E5D368A9BE45A024205D06E27EA4_RuntimeMethod_var)));
}
IL_0234:
{
SocketAddress_tE8FA33C91254662406767AF97518C235382742D3 * L_105 = V_19;
NullCheck(L_105);
uint8_t L_106;
L_106 = SocketAddress_get_Item_m4ED599B209C73DFB72212B7B3621B1703A26C5FD(L_105, 0, /*hidden argument*/NULL);
SocketAddress_tE8FA33C91254662406767AF97518C235382742D3 * L_107 = V_19;
NullCheck(L_107);
int32_t L_108;
L_108 = SocketAddress_get_Size_m6383C5C4F9200464ACB6D583020F81019602CFA4_inline(L_107, /*hidden argument*/NULL);
V_23 = (bool)((((int32_t)((((int32_t)L_106) == ((int32_t)L_108))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_109 = V_23;
if (!L_109)
{
goto IL_0259;
}
}
{
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_110 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)));
ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_110, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCC5D4DC63E48FBD28A82FDA62CA96DACF4C408C2)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_110, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NetworkTransport_ConnectEndPoint_m255B4FE92DE3E5D368A9BE45A024205D06E27EA4_RuntimeMethod_var)));
}
IL_0259:
{
SocketAddress_tE8FA33C91254662406767AF97518C235382742D3 * L_111 = V_19;
NullCheck(L_111);
uint8_t L_112;
L_112 = SocketAddress_get_Item_m4ED599B209C73DFB72212B7B3621B1703A26C5FD(L_111, 1, /*hidden argument*/NULL);
V_24 = (bool)((((int32_t)((((int32_t)L_112) == ((int32_t)2))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_113 = V_24;
if (!L_113)
{
goto IL_0278;
}
}
{
ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_114 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)));
ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_114, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral41821D6839AF15540658B35D25837B922A44F84A)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_114, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NetworkTransport_ConnectEndPoint_m255B4FE92DE3E5D368A9BE45A024205D06E27EA4_RuntimeMethod_var)));
}
IL_0278:
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_115 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)((int32_t)16));
V_20 = L_115;
V_25 = 0;
goto IL_029c;
}
IL_0286:
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_116 = V_20;
int32_t L_117 = V_25;
SocketAddress_tE8FA33C91254662406767AF97518C235382742D3 * L_118 = V_19;
int32_t L_119 = V_25;
NullCheck(L_118);
uint8_t L_120;
L_120 = SocketAddress_get_Item_m4ED599B209C73DFB72212B7B3621B1703A26C5FD(L_118, L_119, /*hidden argument*/NULL);
NullCheck(L_116);
(L_116)->SetAt(static_cast<il2cpp_array_size_t>(L_117), (uint8_t)L_120);
int32_t L_121 = V_25;
V_25 = ((int32_t)il2cpp_codegen_add((int32_t)L_121, (int32_t)1));
}
IL_029c:
{
int32_t L_122 = V_25;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_123 = V_20;
NullCheck(L_123);
V_26 = (bool)((((int32_t)L_122) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_123)->max_length)))))? 1 : 0);
bool L_124 = V_26;
if (L_124)
{
goto IL_0286;
}
}
{
int32_t L_125 = ___hostId0;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_126 = V_20;
int32_t L_127 = ___exceptionConnectionId2;
uint8_t* L_128 = ___error3;
IL2CPP_RUNTIME_CLASS_INIT(NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44_il2cpp_TypeInfo_var);
int32_t L_129;
L_129 = NetworkTransport_Internal_ConnectEndPoint_m0C217E6A0B5B421DCCEAF786E1383D5629DD1727(L_125, L_126, ((int32_t)16), L_127, (uint8_t*)L_128, /*hidden argument*/NULL);
V_21 = L_129;
int32_t L_130 = V_21;
V_18 = L_130;
goto IL_02be;
}
IL_02be:
{
int32_t L_131 = V_18;
return L_131;
}
}
// System.Void UnityEngine.Networking.NetworkTransport::Init()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkTransport_Init_m07410A194825D614DBE8A08B746E06EC6481AEF3 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44_il2cpp_TypeInfo_var);
NetworkTransport_InitializeClass_m885F41697D3E728B618EE20A48B7F88BBF596891(/*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Networking.NetworkTransport::Init(UnityEngine.Networking.GlobalConfig)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkTransport_Init_m8AC1E8A78F9FE38D1C540568ED589A223FFB4557 (GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 * ___config0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GlobalConfigInternal_t0F07F384FD03D7CE842BC781D7C747B5579F680F_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
{
GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 * L_0 = ___config0;
NullCheck(L_0);
Action_1_t080BA8EFA9616A494EBB4DD352BFEF943792E05B * L_1;
L_1 = GlobalConfig_get_NetworkEventAvailable_m6D648DA928B1C86504ED603F268A3036FBDB457E(L_0, /*hidden argument*/NULL);
V_0 = (bool)((!(((RuntimeObject*)(Action_1_t080BA8EFA9616A494EBB4DD352BFEF943792E05B *)L_1) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
bool L_2 = V_0;
if (!L_2)
{
goto IL_001a;
}
}
{
GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 * L_3 = ___config0;
NullCheck(L_3);
Action_1_t080BA8EFA9616A494EBB4DD352BFEF943792E05B * L_4;
L_4 = GlobalConfig_get_NetworkEventAvailable_m6D648DA928B1C86504ED603F268A3036FBDB457E(L_3, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44_il2cpp_TypeInfo_var);
NetworkTransport_SetNetworkEventAvailableCallback_m9996DCB1B44D723DC6D555810D3A474B8A91B64F(L_4, /*hidden argument*/NULL);
}
IL_001a:
{
GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 * L_5 = ___config0;
NullCheck(L_5);
Action_2_tCC1DAEC9EBDBAB5891B0CF72C24B016C610EFF39 * L_6;
L_6 = GlobalConfig_get_ConnectionReadyForSend_m8F88B2A0D0C17D7A9800470C377CF827694F3EE6(L_5, /*hidden argument*/NULL);
V_1 = (bool)((!(((RuntimeObject*)(Action_2_tCC1DAEC9EBDBAB5891B0CF72C24B016C610EFF39 *)L_6) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
bool L_7 = V_1;
if (!L_7)
{
goto IL_0033;
}
}
{
GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 * L_8 = ___config0;
NullCheck(L_8);
Action_2_tCC1DAEC9EBDBAB5891B0CF72C24B016C610EFF39 * L_9;
L_9 = GlobalConfig_get_ConnectionReadyForSend_m8F88B2A0D0C17D7A9800470C377CF827694F3EE6(L_8, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44_il2cpp_TypeInfo_var);
NetworkTransport_SetConnectionReadyForSendCallback_mD9660BB5DDC8630EBB844DC6A717D4F6CBF8EF05(L_9, /*hidden argument*/NULL);
}
IL_0033:
{
GlobalConfig_tD5592BEAD14194E067933D7B7655BF10AA9C4D66 * L_10 = ___config0;
GlobalConfigInternal_t0F07F384FD03D7CE842BC781D7C747B5579F680F * L_11 = (GlobalConfigInternal_t0F07F384FD03D7CE842BC781D7C747B5579F680F *)il2cpp_codegen_object_new(GlobalConfigInternal_t0F07F384FD03D7CE842BC781D7C747B5579F680F_il2cpp_TypeInfo_var);
GlobalConfigInternal__ctor_m9D3BDDFE489512D1B72565B516638C76564AAA68(L_11, L_10, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44_il2cpp_TypeInfo_var);
NetworkTransport_InitializeClassWithConfig_mA43ECAAD1DEFB5BA599591691AF2B3826F6A0BDC(L_11, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Networking.NetworkTransport::InitializeClass()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkTransport_InitializeClass_m885F41697D3E728B618EE20A48B7F88BBF596891 (const RuntimeMethod* method)
{
typedef void (*NetworkTransport_InitializeClass_m885F41697D3E728B618EE20A48B7F88BBF596891_ftn) ();
static NetworkTransport_InitializeClass_m885F41697D3E728B618EE20A48B7F88BBF596891_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (NetworkTransport_InitializeClass_m885F41697D3E728B618EE20A48B7F88BBF596891_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.NetworkTransport::InitializeClass()");
_il2cpp_icall_func();
}
// System.Void UnityEngine.Networking.NetworkTransport::InitializeClassWithConfig(UnityEngine.Networking.GlobalConfigInternal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkTransport_InitializeClassWithConfig_mA43ECAAD1DEFB5BA599591691AF2B3826F6A0BDC (GlobalConfigInternal_t0F07F384FD03D7CE842BC781D7C747B5579F680F * ___config0, const RuntimeMethod* method)
{
typedef void (*NetworkTransport_InitializeClassWithConfig_mA43ECAAD1DEFB5BA599591691AF2B3826F6A0BDC_ftn) (GlobalConfigInternal_t0F07F384FD03D7CE842BC781D7C747B5579F680F *);
static NetworkTransport_InitializeClassWithConfig_mA43ECAAD1DEFB5BA599591691AF2B3826F6A0BDC_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (NetworkTransport_InitializeClassWithConfig_mA43ECAAD1DEFB5BA599591691AF2B3826F6A0BDC_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.NetworkTransport::InitializeClassWithConfig(UnityEngine.Networking.GlobalConfigInternal)");
_il2cpp_icall_func(___config0);
}
// System.Int32 UnityEngine.Networking.NetworkTransport::AddHostWithSimulator(UnityEngine.Networking.HostTopology,System.Int32,System.Int32,System.Int32,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NetworkTransport_AddHostWithSimulator_m7D2AA3190354AF70603B43E642EBABD8B014E2B8 (HostTopology_t268779309BB2D69F29D1A182662C79818813892B * ___topology0, int32_t ___minTimeout1, int32_t ___maxTimeout2, int32_t ___port3, String_t* ___ip4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HostTopologyInternal_tA95C0259BC91D8E3D227BAF3D4F7CEE5C5331E10_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
int32_t V_1 = 0;
{
HostTopology_t268779309BB2D69F29D1A182662C79818813892B * L_0 = ___topology0;
V_0 = (bool)((((RuntimeObject*)(HostTopology_t268779309BB2D69F29D1A182662C79818813892B *)L_0) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0014;
}
}
{
NullReferenceException_t44B4F3CDE3111E74591952B8BE8707B28866D724 * L_2 = (NullReferenceException_t44B4F3CDE3111E74591952B8BE8707B28866D724 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NullReferenceException_t44B4F3CDE3111E74591952B8BE8707B28866D724_il2cpp_TypeInfo_var)));
NullReferenceException__ctor_mF1733893E10358B400E817297D686A48AB3FB7B3(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD545B2AC9E1F7D2797A7BD919E1632698CEF91B5)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NetworkTransport_AddHostWithSimulator_m7D2AA3190354AF70603B43E642EBABD8B014E2B8_RuntimeMethod_var)));
}
IL_0014:
{
HostTopology_t268779309BB2D69F29D1A182662C79818813892B * L_3 = ___topology0;
IL2CPP_RUNTIME_CLASS_INIT(NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44_il2cpp_TypeInfo_var);
NetworkTransport_CheckTopology_mCA4CDEBBD3AA34CE15D5110586307B01EAD7C1AA(L_3, /*hidden argument*/NULL);
HostTopology_t268779309BB2D69F29D1A182662C79818813892B * L_4 = ___topology0;
HostTopologyInternal_tA95C0259BC91D8E3D227BAF3D4F7CEE5C5331E10 * L_5 = (HostTopologyInternal_tA95C0259BC91D8E3D227BAF3D4F7CEE5C5331E10 *)il2cpp_codegen_object_new(HostTopologyInternal_tA95C0259BC91D8E3D227BAF3D4F7CEE5C5331E10_il2cpp_TypeInfo_var);
HostTopologyInternal__ctor_m9DAA9FD8AC2102B55B9EB6E4F334C8B8555F5E43(L_5, L_4, /*hidden argument*/NULL);
String_t* L_6 = ___ip4;
int32_t L_7 = ___port3;
int32_t L_8 = ___minTimeout1;
int32_t L_9 = ___maxTimeout2;
int32_t L_10;
L_10 = NetworkTransport_AddHostInternal_mE6C08100955EB6B0A84D2012C4539CCEFD21D78F(L_5, L_6, L_7, L_8, L_9, /*hidden argument*/NULL);
V_1 = L_10;
goto IL_002e;
}
IL_002e:
{
int32_t L_11 = V_1;
return L_11;
}
}
// System.Int32 UnityEngine.Networking.NetworkTransport::AddHostWithSimulator(UnityEngine.Networking.HostTopology,System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NetworkTransport_AddHostWithSimulator_m9271FB3ED261C09DE93B0215669FBDCCF966CA2D (HostTopology_t268779309BB2D69F29D1A182662C79818813892B * ___topology0, int32_t ___minTimeout1, int32_t ___maxTimeout2, int32_t ___port3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
HostTopology_t268779309BB2D69F29D1A182662C79818813892B * L_0 = ___topology0;
int32_t L_1 = ___minTimeout1;
int32_t L_2 = ___maxTimeout2;
int32_t L_3 = ___port3;
IL2CPP_RUNTIME_CLASS_INIT(NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44_il2cpp_TypeInfo_var);
int32_t L_4;
L_4 = NetworkTransport_AddHostWithSimulator_m7D2AA3190354AF70603B43E642EBABD8B014E2B8(L_0, L_1, L_2, L_3, (String_t*)NULL, /*hidden argument*/NULL);
V_0 = L_4;
goto IL_000e;
}
IL_000e:
{
int32_t L_5 = V_0;
return L_5;
}
}
// System.Int32 UnityEngine.Networking.NetworkTransport::AddHost(UnityEngine.Networking.HostTopology,System.Int32,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NetworkTransport_AddHost_m24D3C68D33504C5A83C47A701F7CDA20E814898D (HostTopology_t268779309BB2D69F29D1A182662C79818813892B * ___topology0, int32_t ___port1, String_t* ___ip2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
HostTopology_t268779309BB2D69F29D1A182662C79818813892B * L_0 = ___topology0;
int32_t L_1 = ___port1;
String_t* L_2 = ___ip2;
IL2CPP_RUNTIME_CLASS_INIT(NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44_il2cpp_TypeInfo_var);
int32_t L_3;
L_3 = NetworkTransport_AddHostWithSimulator_m7D2AA3190354AF70603B43E642EBABD8B014E2B8(L_0, 0, 0, L_1, L_2, /*hidden argument*/NULL);
V_0 = L_3;
goto IL_000e;
}
IL_000e:
{
int32_t L_4 = V_0;
return L_4;
}
}
// System.Int32 UnityEngine.Networking.NetworkTransport::AddHostInternal(UnityEngine.Networking.HostTopologyInternal,System.String,System.Int32,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NetworkTransport_AddHostInternal_mE6C08100955EB6B0A84D2012C4539CCEFD21D78F (HostTopologyInternal_tA95C0259BC91D8E3D227BAF3D4F7CEE5C5331E10 * ___topologyInt0, String_t* ___ip1, int32_t ___port2, int32_t ___minTimeout3, int32_t ___maxTimeout4, const RuntimeMethod* method)
{
typedef int32_t (*NetworkTransport_AddHostInternal_mE6C08100955EB6B0A84D2012C4539CCEFD21D78F_ftn) (HostTopologyInternal_tA95C0259BC91D8E3D227BAF3D4F7CEE5C5331E10 *, String_t*, int32_t, int32_t, int32_t);
static NetworkTransport_AddHostInternal_mE6C08100955EB6B0A84D2012C4539CCEFD21D78F_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (NetworkTransport_AddHostInternal_mE6C08100955EB6B0A84D2012C4539CCEFD21D78F_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.NetworkTransport::AddHostInternal(UnityEngine.Networking.HostTopologyInternal,System.String,System.Int32,System.Int32,System.Int32)");
int32_t icallRetVal = _il2cpp_icall_func(___topologyInt0, ___ip1, ___port2, ___minTimeout3, ___maxTimeout4);
return icallRetVal;
}
// System.Int32 UnityEngine.Networking.NetworkTransport::AddWebsocketHost(UnityEngine.Networking.HostTopology,System.Int32,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NetworkTransport_AddWebsocketHost_m700C762A710DDC088B7768520A810E8B211143B5 (HostTopology_t268779309BB2D69F29D1A182662C79818813892B * ___topology0, int32_t ___port1, String_t* ___ip2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HostTopologyInternal_tA95C0259BC91D8E3D227BAF3D4F7CEE5C5331E10_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
bool V_2 = false;
int32_t V_3 = 0;
{
int32_t L_0 = ___port1;
V_0 = (bool)((!(((uint32_t)L_0) <= ((uint32_t)0)))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0032;
}
}
{
String_t* L_2 = ___ip2;
int32_t L_3 = ___port1;
IL2CPP_RUNTIME_CLASS_INIT(NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44_il2cpp_TypeInfo_var);
bool L_4;
L_4 = NetworkTransport_IsPortOpen_mDE9CADB4888CF273569A783CD842A22D921AAFB4(L_2, L_3, /*hidden argument*/NULL);
V_1 = L_4;
bool L_5 = V_1;
if (!L_5)
{
goto IL_0031;
}
}
{
String_t* L_6;
L_6 = Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411((int32_t*)(&___port1), /*hidden argument*/NULL);
String_t* L_7;
L_7 = String_Concat_m89EAB4C6A96B0E5C3F87300D6BE78D386B9EFC44(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9552624BDF15687DEEA5EE13EAD814AB55C4BB5A)), L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0A7707C8AD286270B40614B2F06591CDC7B4DD38)), /*hidden argument*/NULL);
InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_8 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_8, L_7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NetworkTransport_AddWebsocketHost_m700C762A710DDC088B7768520A810E8B211143B5_RuntimeMethod_var)));
}
IL_0031:
{
}
IL_0032:
{
HostTopology_t268779309BB2D69F29D1A182662C79818813892B * L_9 = ___topology0;
V_2 = (bool)((((RuntimeObject*)(HostTopology_t268779309BB2D69F29D1A182662C79818813892B *)L_9) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_10 = V_2;
if (!L_10)
{
goto IL_0045;
}
}
{
NullReferenceException_t44B4F3CDE3111E74591952B8BE8707B28866D724 * L_11 = (NullReferenceException_t44B4F3CDE3111E74591952B8BE8707B28866D724 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NullReferenceException_t44B4F3CDE3111E74591952B8BE8707B28866D724_il2cpp_TypeInfo_var)));
NullReferenceException__ctor_mF1733893E10358B400E817297D686A48AB3FB7B3(L_11, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD545B2AC9E1F7D2797A7BD919E1632698CEF91B5)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NetworkTransport_AddWebsocketHost_m700C762A710DDC088B7768520A810E8B211143B5_RuntimeMethod_var)));
}
IL_0045:
{
HostTopology_t268779309BB2D69F29D1A182662C79818813892B * L_12 = ___topology0;
IL2CPP_RUNTIME_CLASS_INIT(NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44_il2cpp_TypeInfo_var);
NetworkTransport_CheckTopology_mCA4CDEBBD3AA34CE15D5110586307B01EAD7C1AA(L_12, /*hidden argument*/NULL);
HostTopology_t268779309BB2D69F29D1A182662C79818813892B * L_13 = ___topology0;
HostTopologyInternal_tA95C0259BC91D8E3D227BAF3D4F7CEE5C5331E10 * L_14 = (HostTopologyInternal_tA95C0259BC91D8E3D227BAF3D4F7CEE5C5331E10 *)il2cpp_codegen_object_new(HostTopologyInternal_tA95C0259BC91D8E3D227BAF3D4F7CEE5C5331E10_il2cpp_TypeInfo_var);
HostTopologyInternal__ctor_m9DAA9FD8AC2102B55B9EB6E4F334C8B8555F5E43(L_14, L_13, /*hidden argument*/NULL);
String_t* L_15 = ___ip2;
int32_t L_16 = ___port1;
int32_t L_17;
L_17 = NetworkTransport_AddWsHostInternal_mC1C24C4B573DA481ED99DB6C68B44E29D30A6AB0(L_14, L_15, L_16, /*hidden argument*/NULL);
V_3 = L_17;
goto IL_005c;
}
IL_005c:
{
int32_t L_18 = V_3;
return L_18;
}
}
// System.Int32 UnityEngine.Networking.NetworkTransport::AddWsHostInternal(UnityEngine.Networking.HostTopologyInternal,System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NetworkTransport_AddWsHostInternal_mC1C24C4B573DA481ED99DB6C68B44E29D30A6AB0 (HostTopologyInternal_tA95C0259BC91D8E3D227BAF3D4F7CEE5C5331E10 * ___topologyInt0, String_t* ___ip1, int32_t ___port2, const RuntimeMethod* method)
{
typedef int32_t (*NetworkTransport_AddWsHostInternal_mC1C24C4B573DA481ED99DB6C68B44E29D30A6AB0_ftn) (HostTopologyInternal_tA95C0259BC91D8E3D227BAF3D4F7CEE5C5331E10 *, String_t*, int32_t);
static NetworkTransport_AddWsHostInternal_mC1C24C4B573DA481ED99DB6C68B44E29D30A6AB0_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (NetworkTransport_AddWsHostInternal_mC1C24C4B573DA481ED99DB6C68B44E29D30A6AB0_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.NetworkTransport::AddWsHostInternal(UnityEngine.Networking.HostTopologyInternal,System.String,System.Int32)");
int32_t icallRetVal = _il2cpp_icall_func(___topologyInt0, ___ip1, ___port2);
return icallRetVal;
}
// System.Boolean UnityEngine.Networking.NetworkTransport::IsPortOpen(System.String,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NetworkTransport_IsPortOpen_mDE9CADB4888CF273569A783CD842A22D921AAFB4 (String_t* ___ip0, int32_t ___port1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IAsyncResult_tC9F97BF36FCF122D29D3101D80642278297BF370_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral76C3D4024DE9EE847070E35CC5A197DC21F66FEE);
s_Il2CppMethodInitialized = true;
}
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 V_0;
memset((&V_0), 0, sizeof(V_0));
String_t* V_1 = NULL;
TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * V_2 = NULL;
RuntimeObject* V_3 = NULL;
bool V_4 = false;
bool V_5 = false;
bool V_6 = false;
Exception_t * __last_unhandled_exception = 0;
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
il2cpp::utils::ExceptionSupportStack<int32_t, 4> __leave_targets;
String_t* G_B3_0 = NULL;
{
IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var);
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_0;
L_0 = TimeSpan_FromMilliseconds_m12D90542B044C450FDFBCEA1CBC32369479483EC((500.0), /*hidden argument*/NULL);
V_0 = L_0;
String_t* L_1 = ___ip0;
if (!L_1)
{
goto IL_0016;
}
}
{
String_t* L_2 = ___ip0;
G_B3_0 = L_2;
goto IL_001b;
}
IL_0016:
{
G_B3_0 = _stringLiteral76C3D4024DE9EE847070E35CC5A197DC21F66FEE;
}
IL_001b:
{
V_1 = G_B3_0;
}
IL_001c:
try
{ // begin try (depth: 1)
{
TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * L_3 = (TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE *)il2cpp_codegen_object_new(TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE_il2cpp_TypeInfo_var);
TcpClient__ctor_m04BD4EDA03D1AE7183FC99DB886BD93CF85D2F2C(L_3, /*hidden argument*/NULL);
V_2 = L_3;
}
IL_0023:
try
{ // begin try (depth: 2)
{
TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * L_4 = V_2;
String_t* L_5 = V_1;
int32_t L_6 = ___port1;
NullCheck(L_4);
RuntimeObject* L_7;
L_7 = TcpClient_BeginConnect_mAF5D929DCA6FFD78BC0DE6E0F448B5F911CD8303(L_4, L_5, L_6, (AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA *)NULL, NULL, /*hidden argument*/NULL);
V_3 = L_7;
RuntimeObject* L_8 = V_3;
NullCheck(L_8);
WaitHandle_t1D7DD8480FD5DA4E3AF92F569890FB972D9B1842 * L_9;
L_9 = InterfaceFuncInvoker0< WaitHandle_t1D7DD8480FD5DA4E3AF92F569890FB972D9B1842 * >::Invoke(0 /* System.Threading.WaitHandle System.IAsyncResult::get_AsyncWaitHandle() */, IAsyncResult_tC9F97BF36FCF122D29D3101D80642278297BF370_il2cpp_TypeInfo_var, L_8);
TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_10 = V_0;
NullCheck(L_9);
bool L_11;
L_11 = VirtFuncInvoker1< bool, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 >::Invoke(12 /* System.Boolean System.Threading.WaitHandle::WaitOne(System.TimeSpan) */, L_9, L_10);
V_4 = L_11;
bool L_12 = V_4;
V_5 = (bool)((((int32_t)L_12) == ((int32_t)0))? 1 : 0);
bool L_13 = V_5;
if (!L_13)
{
goto IL_004e;
}
}
IL_0048:
{
V_6 = (bool)0;
IL2CPP_LEAVE(0x73, FINALLY_0059);
}
IL_004e:
{
TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * L_14 = V_2;
RuntimeObject* L_15 = V_3;
NullCheck(L_14);
TcpClient_EndConnect_m8A878839804034D19DA751A6FC9C11736017782D(L_14, L_15, /*hidden argument*/NULL);
IL2CPP_LEAVE(0x64, FINALLY_0059);
}
} // end try (depth: 2)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0059;
}
FINALLY_0059:
{ // begin finally (depth: 2)
{
TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * L_16 = V_2;
if (!L_16)
{
goto IL_0063;
}
}
IL_005c:
{
TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * L_17 = V_2;
NullCheck(L_17);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_17);
}
IL_0063:
{
IL2CPP_END_FINALLY(89)
}
} // end finally (depth: 2)
IL2CPP_CLEANUP(89)
{
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
IL2CPP_JUMP_TBL(0x73, IL_0073)
IL2CPP_JUMP_TBL(0x64, IL_0064)
}
IL_0064:
{
goto IL_006e;
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
{
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
goto CATCH_0067;
}
throw e;
}
CATCH_0067:
{ // begin catch(System.Object)
V_6 = (bool)0;
IL2CPP_POP_ACTIVE_EXCEPTION();
goto IL_0073;
} // end catch (depth: 1)
IL_006e:
{
V_6 = (bool)1;
goto IL_0073;
}
IL_0073:
{
bool L_18 = V_6;
return L_18;
}
}
// System.Void UnityEngine.Networking.NetworkTransport::ConnectAsNetworkHost(System.Int32,System.String,System.Int32,UnityEngine.Networking.Types.NetworkID,UnityEngine.Networking.Types.SourceID,UnityEngine.Networking.Types.NodeID,System.Byte&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkTransport_ConnectAsNetworkHost_mEE8F89D4F2339757887404FCCA20638AED85960F (int32_t ___hostId0, String_t* ___address1, int32_t ___port2, uint64_t ___network3, uint64_t ___source4, uint16_t ___node5, uint8_t* ___error6, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___hostId0;
String_t* L_1 = ___address1;
int32_t L_2 = ___port2;
uint64_t L_3 = ___network3;
uint64_t L_4 = ___source4;
uint16_t L_5 = ___node5;
uint8_t* L_6 = ___error6;
IL2CPP_RUNTIME_CLASS_INIT(NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44_il2cpp_TypeInfo_var);
NetworkTransport_ConnectAsNetworkHostInternal_m94E35F271C763E9352979273766BCADE2119B737(L_0, L_1, L_2, L_3, L_4, L_5, (uint8_t*)L_6, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Networking.NetworkTransport::ConnectAsNetworkHostInternal(System.Int32,System.String,System.Int32,System.UInt64,System.UInt64,System.UInt16,System.Byte&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkTransport_ConnectAsNetworkHostInternal_m94E35F271C763E9352979273766BCADE2119B737 (int32_t ___hostId0, String_t* ___address1, int32_t ___port2, uint64_t ___network3, uint64_t ___source4, uint16_t ___node5, uint8_t* ___error6, const RuntimeMethod* method)
{
typedef void (*NetworkTransport_ConnectAsNetworkHostInternal_m94E35F271C763E9352979273766BCADE2119B737_ftn) (int32_t, String_t*, int32_t, uint64_t, uint64_t, uint16_t, uint8_t*);
static NetworkTransport_ConnectAsNetworkHostInternal_m94E35F271C763E9352979273766BCADE2119B737_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (NetworkTransport_ConnectAsNetworkHostInternal_m94E35F271C763E9352979273766BCADE2119B737_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.NetworkTransport::ConnectAsNetworkHostInternal(System.Int32,System.String,System.Int32,System.UInt64,System.UInt64,System.UInt16,System.Byte&)");
_il2cpp_icall_func(___hostId0, ___address1, ___port2, ___network3, ___source4, ___node5, ___error6);
}
// UnityEngine.Networking.NetworkEventType UnityEngine.Networking.NetworkTransport::ReceiveRelayEventFromHost(System.Int32,System.Byte&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NetworkTransport_ReceiveRelayEventFromHost_mD042EDAD296E265A2A046B23AEE7FAC3EEB2F2F9 (int32_t ___hostId0, uint8_t* ___error1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___hostId0;
uint8_t* L_1 = ___error1;
IL2CPP_RUNTIME_CLASS_INIT(NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44_il2cpp_TypeInfo_var);
int32_t L_2;
L_2 = NetworkTransport_ReceiveRelayEventFromHostInternal_m95E08AB6EAA9551BBA636B8994B782AA59CDD616(L_0, (uint8_t*)L_1, /*hidden argument*/NULL);
V_0 = L_2;
goto IL_000b;
}
IL_000b:
{
int32_t L_3 = V_0;
return L_3;
}
}
// System.Int32 UnityEngine.Networking.NetworkTransport::ReceiveRelayEventFromHostInternal(System.Int32,System.Byte&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NetworkTransport_ReceiveRelayEventFromHostInternal_m95E08AB6EAA9551BBA636B8994B782AA59CDD616 (int32_t ___hostId0, uint8_t* ___error1, const RuntimeMethod* method)
{
typedef int32_t (*NetworkTransport_ReceiveRelayEventFromHostInternal_m95E08AB6EAA9551BBA636B8994B782AA59CDD616_ftn) (int32_t, uint8_t*);
static NetworkTransport_ReceiveRelayEventFromHostInternal_m95E08AB6EAA9551BBA636B8994B782AA59CDD616_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (NetworkTransport_ReceiveRelayEventFromHostInternal_m95E08AB6EAA9551BBA636B8994B782AA59CDD616_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.NetworkTransport::ReceiveRelayEventFromHostInternal(System.Int32,System.Byte&)");
int32_t icallRetVal = _il2cpp_icall_func(___hostId0, ___error1);
return icallRetVal;
}
// System.Int32 UnityEngine.Networking.NetworkTransport::ConnectToNetworkPeer(System.Int32,System.String,System.Int32,System.Int32,System.Int32,UnityEngine.Networking.Types.NetworkID,UnityEngine.Networking.Types.SourceID,UnityEngine.Networking.Types.NodeID,System.Int32,System.Single,System.Byte&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NetworkTransport_ConnectToNetworkPeer_mFCFABDAEAF6C5B1BC3BB71FA26BD22132BFE2281 (int32_t ___hostId0, String_t* ___address1, int32_t ___port2, int32_t ___exceptionConnectionId3, int32_t ___relaySlotId4, uint64_t ___network5, uint64_t ___source6, uint16_t ___node7, int32_t ___bytesPerSec8, float ___bucketSizeFactor9, uint8_t* ___error10, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___hostId0;
String_t* L_1 = ___address1;
int32_t L_2 = ___port2;
int32_t L_3 = ___exceptionConnectionId3;
int32_t L_4 = ___relaySlotId4;
uint64_t L_5 = ___network5;
uint64_t L_6 = ___source6;
uint16_t L_7 = ___node7;
int32_t L_8 = ___bytesPerSec8;
float L_9 = ___bucketSizeFactor9;
uint8_t* L_10 = ___error10;
IL2CPP_RUNTIME_CLASS_INIT(NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44_il2cpp_TypeInfo_var);
int32_t L_11;
L_11 = NetworkTransport_ConnectToNetworkPeerInternal_m8E3EFCA23270665D8A312C6B9B824F79EDD3E306(L_0, L_1, L_2, L_3, L_4, L_5, L_6, L_7, L_8, L_9, (uint8_t*)L_10, /*hidden argument*/NULL);
V_0 = L_11;
goto IL_001b;
}
IL_001b:
{
int32_t L_12 = V_0;
return L_12;
}
}
// System.Int32 UnityEngine.Networking.NetworkTransport::ConnectToNetworkPeer(System.Int32,System.String,System.Int32,System.Int32,System.Int32,UnityEngine.Networking.Types.NetworkID,UnityEngine.Networking.Types.SourceID,UnityEngine.Networking.Types.NodeID,System.Byte&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NetworkTransport_ConnectToNetworkPeer_m88AF3FC0EEE04229929898D817DBCB4EF06AA1B0 (int32_t ___hostId0, String_t* ___address1, int32_t ___port2, int32_t ___exceptionConnectionId3, int32_t ___relaySlotId4, uint64_t ___network5, uint64_t ___source6, uint16_t ___node7, uint8_t* ___error8, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___hostId0;
String_t* L_1 = ___address1;
int32_t L_2 = ___port2;
int32_t L_3 = ___exceptionConnectionId3;
int32_t L_4 = ___relaySlotId4;
uint64_t L_5 = ___network5;
uint64_t L_6 = ___source6;
uint16_t L_7 = ___node7;
uint8_t* L_8 = ___error8;
IL2CPP_RUNTIME_CLASS_INIT(NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44_il2cpp_TypeInfo_var);
int32_t L_9;
L_9 = NetworkTransport_ConnectToNetworkPeer_mFCFABDAEAF6C5B1BC3BB71FA26BD22132BFE2281(L_0, L_1, L_2, L_3, L_4, L_5, L_6, L_7, 0, (0.0f), (uint8_t*)L_8, /*hidden argument*/NULL);
V_0 = L_9;
goto IL_001d;
}
IL_001d:
{
int32_t L_10 = V_0;
return L_10;
}
}
// System.Int32 UnityEngine.Networking.NetworkTransport::ConnectToNetworkPeerInternal(System.Int32,System.String,System.Int32,System.Int32,System.Int32,System.UInt64,System.UInt64,System.UInt16,System.Int32,System.Single,System.Byte&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NetworkTransport_ConnectToNetworkPeerInternal_m8E3EFCA23270665D8A312C6B9B824F79EDD3E306 (int32_t ___hostId0, String_t* ___address1, int32_t ___port2, int32_t ___exceptionConnectionId3, int32_t ___relaySlotId4, uint64_t ___network5, uint64_t ___source6, uint16_t ___node7, int32_t ___bytesPerSec8, float ___bucketSizeFactor9, uint8_t* ___error10, const RuntimeMethod* method)
{
typedef int32_t (*NetworkTransport_ConnectToNetworkPeerInternal_m8E3EFCA23270665D8A312C6B9B824F79EDD3E306_ftn) (int32_t, String_t*, int32_t, int32_t, int32_t, uint64_t, uint64_t, uint16_t, int32_t, float, uint8_t*);
static NetworkTransport_ConnectToNetworkPeerInternal_m8E3EFCA23270665D8A312C6B9B824F79EDD3E306_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (NetworkTransport_ConnectToNetworkPeerInternal_m8E3EFCA23270665D8A312C6B9B824F79EDD3E306_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.NetworkTransport::ConnectToNetworkPeerInternal(System.Int32,System.String,System.Int32,System.Int32,System.Int32,System.UInt64,System.UInt64,System.UInt16,System.Int32,System.Single,System.Byte&)");
int32_t icallRetVal = _il2cpp_icall_func(___hostId0, ___address1, ___port2, ___exceptionConnectionId3, ___relaySlotId4, ___network5, ___source6, ___node7, ___bytesPerSec8, ___bucketSizeFactor9, ___error10);
return icallRetVal;
}
// System.String UnityEngine.Networking.NetworkTransport::GetConnectionInfo(System.Int32,System.Int32,System.Int32&,System.UInt64&,System.UInt16&,System.Byte&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NetworkTransport_GetConnectionInfo_m9C1C905E4C06B265514A87B380E4851795068A24 (int32_t ___hostId0, int32_t ___connectionId1, int32_t* ___port2, uint64_t* ___network3, uint16_t* ___dstNode4, uint8_t* ___error5, const RuntimeMethod* method)
{
typedef String_t* (*NetworkTransport_GetConnectionInfo_m9C1C905E4C06B265514A87B380E4851795068A24_ftn) (int32_t, int32_t, int32_t*, uint64_t*, uint16_t*, uint8_t*);
static NetworkTransport_GetConnectionInfo_m9C1C905E4C06B265514A87B380E4851795068A24_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (NetworkTransport_GetConnectionInfo_m9C1C905E4C06B265514A87B380E4851795068A24_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.NetworkTransport::GetConnectionInfo(System.Int32,System.Int32,System.Int32&,System.UInt64&,System.UInt16&,System.Byte&)");
String_t* icallRetVal = _il2cpp_icall_func(___hostId0, ___connectionId1, ___port2, ___network3, ___dstNode4, ___error5);
return icallRetVal;
}
// System.Void UnityEngine.Networking.NetworkTransport::GetConnectionInfo(System.Int32,System.Int32,System.String&,System.Int32&,UnityEngine.Networking.Types.NetworkID&,UnityEngine.Networking.Types.NodeID&,System.Byte&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkTransport_GetConnectionInfo_m1550BA82DCB30A4FFDE4A7804BCBA43C65EDC214 (int32_t ___hostId0, int32_t ___connectionId1, String_t** ___address2, int32_t* ___port3, uint64_t* ___network4, uint16_t* ___dstNode5, uint8_t* ___error6, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
uint64_t V_0 = 0;
uint16_t V_1 = 0;
{
String_t** L_0 = ___address2;
int32_t L_1 = ___hostId0;
int32_t L_2 = ___connectionId1;
int32_t* L_3 = ___port3;
uint8_t* L_4 = ___error6;
IL2CPP_RUNTIME_CLASS_INIT(NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44_il2cpp_TypeInfo_var);
String_t* L_5;
L_5 = NetworkTransport_GetConnectionInfo_m9C1C905E4C06B265514A87B380E4851795068A24(L_1, L_2, (int32_t*)L_3, (uint64_t*)(&V_0), (uint16_t*)(&V_1), (uint8_t*)L_4, /*hidden argument*/NULL);
*((RuntimeObject **)L_0) = (RuntimeObject *)L_5;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_0, (void*)(RuntimeObject *)L_5);
uint64_t* L_6 = ___network4;
uint64_t L_7 = V_0;
*((int64_t*)L_6) = (int64_t)L_7;
uint16_t* L_8 = ___dstNode5;
uint16_t L_9 = V_1;
*((int16_t*)L_8) = (int16_t)L_9;
return;
}
}
// System.Int32 UnityEngine.Networking.NetworkTransport::GetMaxPacketSize()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NetworkTransport_GetMaxPacketSize_m98EE9A0A5FD4C30AEF12D0B7EE498B3043E929F1 (const RuntimeMethod* method)
{
typedef int32_t (*NetworkTransport_GetMaxPacketSize_m98EE9A0A5FD4C30AEF12D0B7EE498B3043E929F1_ftn) ();
static NetworkTransport_GetMaxPacketSize_m98EE9A0A5FD4C30AEF12D0B7EE498B3043E929F1_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (NetworkTransport_GetMaxPacketSize_m98EE9A0A5FD4C30AEF12D0B7EE498B3043E929F1_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.NetworkTransport::GetMaxPacketSize()");
int32_t icallRetVal = _il2cpp_icall_func();
return icallRetVal;
}
// System.Boolean UnityEngine.Networking.NetworkTransport::RemoveHost(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NetworkTransport_RemoveHost_m30AE2F5E95C285B9A206B7B7E3DF092E73FC4E76 (int32_t ___hostId0, const RuntimeMethod* method)
{
typedef bool (*NetworkTransport_RemoveHost_m30AE2F5E95C285B9A206B7B7E3DF092E73FC4E76_ftn) (int32_t);
static NetworkTransport_RemoveHost_m30AE2F5E95C285B9A206B7B7E3DF092E73FC4E76_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (NetworkTransport_RemoveHost_m30AE2F5E95C285B9A206B7B7E3DF092E73FC4E76_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.NetworkTransport::RemoveHost(System.Int32)");
bool icallRetVal = _il2cpp_icall_func(___hostId0);
return icallRetVal;
}
// System.Boolean UnityEngine.Networking.NetworkTransport::get_IsStarted()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NetworkTransport_get_IsStarted_m16B139370CAED45416649D8D43AD059EF4CBE05E (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
IL2CPP_RUNTIME_CLASS_INIT(NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44_il2cpp_TypeInfo_var);
bool L_0;
L_0 = NetworkTransport_IsStartedInternal_m90ABBFFB0BAD69105ACFB91ABEA5D53345C1145A(/*hidden argument*/NULL);
V_0 = L_0;
goto IL_0009;
}
IL_0009:
{
bool L_1 = V_0;
return L_1;
}
}
// System.Boolean UnityEngine.Networking.NetworkTransport::IsStartedInternal()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NetworkTransport_IsStartedInternal_m90ABBFFB0BAD69105ACFB91ABEA5D53345C1145A (const RuntimeMethod* method)
{
typedef bool (*NetworkTransport_IsStartedInternal_m90ABBFFB0BAD69105ACFB91ABEA5D53345C1145A_ftn) ();
static NetworkTransport_IsStartedInternal_m90ABBFFB0BAD69105ACFB91ABEA5D53345C1145A_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (NetworkTransport_IsStartedInternal_m90ABBFFB0BAD69105ACFB91ABEA5D53345C1145A_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.NetworkTransport::IsStartedInternal()");
bool icallRetVal = _il2cpp_icall_func();
return icallRetVal;
}
// System.Int32 UnityEngine.Networking.NetworkTransport::Connect(System.Int32,System.String,System.Int32,System.Int32,System.Byte&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NetworkTransport_Connect_mAB9436F3762B46F3078AD6BC36AA49BD5E598588 (int32_t ___hostId0, String_t* ___address1, int32_t ___port2, int32_t ___exeptionConnectionId3, uint8_t* ___error4, const RuntimeMethod* method)
{
typedef int32_t (*NetworkTransport_Connect_mAB9436F3762B46F3078AD6BC36AA49BD5E598588_ftn) (int32_t, String_t*, int32_t, int32_t, uint8_t*);
static NetworkTransport_Connect_mAB9436F3762B46F3078AD6BC36AA49BD5E598588_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (NetworkTransport_Connect_mAB9436F3762B46F3078AD6BC36AA49BD5E598588_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.NetworkTransport::Connect(System.Int32,System.String,System.Int32,System.Int32,System.Byte&)");
int32_t icallRetVal = _il2cpp_icall_func(___hostId0, ___address1, ___port2, ___exeptionConnectionId3, ___error4);
return icallRetVal;
}
// System.Int32 UnityEngine.Networking.NetworkTransport::ConnectWithSimulatorInternal(System.Int32,System.String,System.Int32,System.Int32,System.Byte&,UnityEngine.Networking.ConnectionSimulatorConfigInternal)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NetworkTransport_ConnectWithSimulatorInternal_m89044D238A13391ACC38F88E18D6EBE64AECB93C (int32_t ___hostId0, String_t* ___address1, int32_t ___port2, int32_t ___exeptionConnectionId3, uint8_t* ___error4, ConnectionSimulatorConfigInternal_tB19B4AE3F50ACB7661DC811F6198E37C08ACDB99 * ___conf5, const RuntimeMethod* method)
{
typedef int32_t (*NetworkTransport_ConnectWithSimulatorInternal_m89044D238A13391ACC38F88E18D6EBE64AECB93C_ftn) (int32_t, String_t*, int32_t, int32_t, uint8_t*, ConnectionSimulatorConfigInternal_tB19B4AE3F50ACB7661DC811F6198E37C08ACDB99 *);
static NetworkTransport_ConnectWithSimulatorInternal_m89044D238A13391ACC38F88E18D6EBE64AECB93C_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (NetworkTransport_ConnectWithSimulatorInternal_m89044D238A13391ACC38F88E18D6EBE64AECB93C_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.NetworkTransport::ConnectWithSimulatorInternal(System.Int32,System.String,System.Int32,System.Int32,System.Byte&,UnityEngine.Networking.ConnectionSimulatorConfigInternal)");
int32_t icallRetVal = _il2cpp_icall_func(___hostId0, ___address1, ___port2, ___exeptionConnectionId3, ___error4, ___conf5);
return icallRetVal;
}
// System.Int32 UnityEngine.Networking.NetworkTransport::ConnectWithSimulator(System.Int32,System.String,System.Int32,System.Int32,System.Byte&,UnityEngine.Networking.ConnectionSimulatorConfig)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NetworkTransport_ConnectWithSimulator_mB947F169A15BC38DDADFD263D6563DBB713AEF7B (int32_t ___hostId0, String_t* ___address1, int32_t ___port2, int32_t ___exeptionConnectionId3, uint8_t* ___error4, ConnectionSimulatorConfig_t1AE9575EDB85F7792DE5F22A4E096A4A08AEB935 * ___conf5, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConnectionSimulatorConfigInternal_tB19B4AE3F50ACB7661DC811F6198E37C08ACDB99_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___hostId0;
String_t* L_1 = ___address1;
int32_t L_2 = ___port2;
int32_t L_3 = ___exeptionConnectionId3;
uint8_t* L_4 = ___error4;
ConnectionSimulatorConfig_t1AE9575EDB85F7792DE5F22A4E096A4A08AEB935 * L_5 = ___conf5;
ConnectionSimulatorConfigInternal_tB19B4AE3F50ACB7661DC811F6198E37C08ACDB99 * L_6 = (ConnectionSimulatorConfigInternal_tB19B4AE3F50ACB7661DC811F6198E37C08ACDB99 *)il2cpp_codegen_object_new(ConnectionSimulatorConfigInternal_tB19B4AE3F50ACB7661DC811F6198E37C08ACDB99_il2cpp_TypeInfo_var);
ConnectionSimulatorConfigInternal__ctor_m06E528FBFBA47A5F5B3FCD8438C23055104CBBE5(L_6, L_5, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44_il2cpp_TypeInfo_var);
int32_t L_7;
L_7 = NetworkTransport_ConnectWithSimulatorInternal_m89044D238A13391ACC38F88E18D6EBE64AECB93C(L_0, L_1, L_2, L_3, (uint8_t*)L_4, L_6, /*hidden argument*/NULL);
V_0 = L_7;
goto IL_0016;
}
IL_0016:
{
int32_t L_8 = V_0;
return L_8;
}
}
// System.Boolean UnityEngine.Networking.NetworkTransport::Disconnect(System.Int32,System.Int32,System.Byte&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NetworkTransport_Disconnect_mD0F2C28F6A7B17313F966C4D74FD84F7F4E3A015 (int32_t ___hostId0, int32_t ___connectionId1, uint8_t* ___error2, const RuntimeMethod* method)
{
typedef bool (*NetworkTransport_Disconnect_mD0F2C28F6A7B17313F966C4D74FD84F7F4E3A015_ftn) (int32_t, int32_t, uint8_t*);
static NetworkTransport_Disconnect_mD0F2C28F6A7B17313F966C4D74FD84F7F4E3A015_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (NetworkTransport_Disconnect_mD0F2C28F6A7B17313F966C4D74FD84F7F4E3A015_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.NetworkTransport::Disconnect(System.Int32,System.Int32,System.Byte&)");
bool icallRetVal = _il2cpp_icall_func(___hostId0, ___connectionId1, ___error2);
return icallRetVal;
}
// System.Int32 UnityEngine.Networking.NetworkTransport::Internal_ConnectEndPoint(System.Int32,System.Byte[],System.Int32,System.Int32,System.Byte&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NetworkTransport_Internal_ConnectEndPoint_m0C217E6A0B5B421DCCEAF786E1383D5629DD1727 (int32_t ___hostId0, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___sockAddrStorage1, int32_t ___sockAddrStorageLen2, int32_t ___exceptionConnectionId3, uint8_t* ___error4, const RuntimeMethod* method)
{
typedef int32_t (*NetworkTransport_Internal_ConnectEndPoint_m0C217E6A0B5B421DCCEAF786E1383D5629DD1727_ftn) (int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t, uint8_t*);
static NetworkTransport_Internal_ConnectEndPoint_m0C217E6A0B5B421DCCEAF786E1383D5629DD1727_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (NetworkTransport_Internal_ConnectEndPoint_m0C217E6A0B5B421DCCEAF786E1383D5629DD1727_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.NetworkTransport::Internal_ConnectEndPoint(System.Int32,System.Byte[],System.Int32,System.Int32,System.Byte&)");
int32_t icallRetVal = _il2cpp_icall_func(___hostId0, ___sockAddrStorage1, ___sockAddrStorageLen2, ___exceptionConnectionId3, ___error4);
return icallRetVal;
}
// System.Boolean UnityEngine.Networking.NetworkTransport::Send(System.Int32,System.Int32,System.Int32,System.Byte[],System.Int32,System.Byte&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NetworkTransport_Send_m8D6D448EDCA5A74B58C5DC9DE1AEA7658C9FC0A7 (int32_t ___hostId0, int32_t ___connectionId1, int32_t ___channelId2, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___buffer3, int32_t ___size4, uint8_t* ___error5, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___buffer3;
V_0 = (bool)((((RuntimeObject*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)L_0) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0014;
}
}
{
NullReferenceException_t44B4F3CDE3111E74591952B8BE8707B28866D724 * L_2 = (NullReferenceException_t44B4F3CDE3111E74591952B8BE8707B28866D724 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NullReferenceException_t44B4F3CDE3111E74591952B8BE8707B28866D724_il2cpp_TypeInfo_var)));
NullReferenceException__ctor_mF1733893E10358B400E817297D686A48AB3FB7B3(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral603078036E4F6701B78C3C841B17DE1BD4B49EB7)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NetworkTransport_Send_m8D6D448EDCA5A74B58C5DC9DE1AEA7658C9FC0A7_RuntimeMethod_var)));
}
IL_0014:
{
int32_t L_3 = ___hostId0;
int32_t L_4 = ___connectionId1;
int32_t L_5 = ___channelId2;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_6 = ___buffer3;
int32_t L_7 = ___size4;
uint8_t* L_8 = ___error5;
IL2CPP_RUNTIME_CLASS_INIT(NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44_il2cpp_TypeInfo_var);
bool L_9;
L_9 = NetworkTransport_SendWrapper_m2BEDC12E5B2E0AADC4E602DDEDA16552C29EBB5D(L_3, L_4, L_5, L_6, L_7, (uint8_t*)L_8, /*hidden argument*/NULL);
V_1 = L_9;
goto IL_0024;
}
IL_0024:
{
bool L_10 = V_1;
return L_10;
}
}
// System.Boolean UnityEngine.Networking.NetworkTransport::SendWrapper(System.Int32,System.Int32,System.Int32,System.Byte[],System.Int32,System.Byte&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NetworkTransport_SendWrapper_m2BEDC12E5B2E0AADC4E602DDEDA16552C29EBB5D (int32_t ___hostId0, int32_t ___connectionId1, int32_t ___channelId2, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___buffer3, int32_t ___size4, uint8_t* ___error5, const RuntimeMethod* method)
{
typedef bool (*NetworkTransport_SendWrapper_m2BEDC12E5B2E0AADC4E602DDEDA16552C29EBB5D_ftn) (int32_t, int32_t, int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, uint8_t*);
static NetworkTransport_SendWrapper_m2BEDC12E5B2E0AADC4E602DDEDA16552C29EBB5D_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (NetworkTransport_SendWrapper_m2BEDC12E5B2E0AADC4E602DDEDA16552C29EBB5D_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.NetworkTransport::SendWrapper(System.Int32,System.Int32,System.Int32,System.Byte[],System.Int32,System.Byte&)");
bool icallRetVal = _il2cpp_icall_func(___hostId0, ___connectionId1, ___channelId2, ___buffer3, ___size4, ___error5);
return icallRetVal;
}
// UnityEngine.Networking.NetworkEventType UnityEngine.Networking.NetworkTransport::ReceiveFromHost(System.Int32,System.Int32&,System.Int32&,System.Byte[],System.Int32,System.Int32&,System.Byte&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NetworkTransport_ReceiveFromHost_mA71172AC0F63C20F82032607D4A807447AC3962A (int32_t ___hostId0, int32_t* ___connectionId1, int32_t* ___channelId2, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___buffer3, int32_t ___bufferSize4, int32_t* ___receivedSize5, uint8_t* ___error6, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
int32_t L_0 = ___hostId0;
int32_t* L_1 = ___connectionId1;
int32_t* L_2 = ___channelId2;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_3 = ___buffer3;
int32_t L_4 = ___bufferSize4;
int32_t* L_5 = ___receivedSize5;
uint8_t* L_6 = ___error6;
IL2CPP_RUNTIME_CLASS_INIT(NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44_il2cpp_TypeInfo_var);
int32_t L_7;
L_7 = NetworkTransport_PopDataFromHost_mB17AEA581E92B7C403B4C14C01A796E55138D910(L_0, (int32_t*)L_1, (int32_t*)L_2, L_3, L_4, (int32_t*)L_5, (uint8_t*)L_6, /*hidden argument*/NULL);
V_0 = L_7;
goto IL_0013;
}
IL_0013:
{
int32_t L_8 = V_0;
return L_8;
}
}
// System.Int32 UnityEngine.Networking.NetworkTransport::PopDataFromHost(System.Int32,System.Int32&,System.Int32&,System.Byte[],System.Int32,System.Int32&,System.Byte&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NetworkTransport_PopDataFromHost_mB17AEA581E92B7C403B4C14C01A796E55138D910 (int32_t ___hostId0, int32_t* ___connectionId1, int32_t* ___channelId2, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___buffer3, int32_t ___bufferSize4, int32_t* ___receivedSize5, uint8_t* ___error6, const RuntimeMethod* method)
{
typedef int32_t (*NetworkTransport_PopDataFromHost_mB17AEA581E92B7C403B4C14C01A796E55138D910_ftn) (int32_t, int32_t*, int32_t*, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t*, uint8_t*);
static NetworkTransport_PopDataFromHost_mB17AEA581E92B7C403B4C14C01A796E55138D910_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (NetworkTransport_PopDataFromHost_mB17AEA581E92B7C403B4C14C01A796E55138D910_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.NetworkTransport::PopDataFromHost(System.Int32,System.Int32&,System.Int32&,System.Byte[],System.Int32,System.Int32&,System.Byte&)");
int32_t icallRetVal = _il2cpp_icall_func(___hostId0, ___connectionId1, ___channelId2, ___buffer3, ___bufferSize4, ___receivedSize5, ___error6);
return icallRetVal;
}
// System.Void UnityEngine.Networking.NetworkTransport::SetNetworkEventAvailableCallback(System.Action`1<System.Int32>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkTransport_SetNetworkEventAvailableCallback_m9996DCB1B44D723DC6D555810D3A474B8A91B64F (Action_1_t080BA8EFA9616A494EBB4DD352BFEF943792E05B * ___callback0, const RuntimeMethod* method)
{
typedef void (*NetworkTransport_SetNetworkEventAvailableCallback_m9996DCB1B44D723DC6D555810D3A474B8A91B64F_ftn) (Action_1_t080BA8EFA9616A494EBB4DD352BFEF943792E05B *);
static NetworkTransport_SetNetworkEventAvailableCallback_m9996DCB1B44D723DC6D555810D3A474B8A91B64F_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (NetworkTransport_SetNetworkEventAvailableCallback_m9996DCB1B44D723DC6D555810D3A474B8A91B64F_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.NetworkTransport::SetNetworkEventAvailableCallback(System.Action`1<System.Int32>)");
_il2cpp_icall_func(___callback0);
}
// System.Void UnityEngine.Networking.NetworkTransport::SetConnectionReadyForSendCallback(System.Action`2<System.Int32,System.Int32>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkTransport_SetConnectionReadyForSendCallback_mD9660BB5DDC8630EBB844DC6A717D4F6CBF8EF05 (Action_2_tCC1DAEC9EBDBAB5891B0CF72C24B016C610EFF39 * ___callback0, const RuntimeMethod* method)
{
typedef void (*NetworkTransport_SetConnectionReadyForSendCallback_mD9660BB5DDC8630EBB844DC6A717D4F6CBF8EF05_ftn) (Action_2_tCC1DAEC9EBDBAB5891B0CF72C24B016C610EFF39 *);
static NetworkTransport_SetConnectionReadyForSendCallback_mD9660BB5DDC8630EBB844DC6A717D4F6CBF8EF05_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (NetworkTransport_SetConnectionReadyForSendCallback_mD9660BB5DDC8630EBB844DC6A717D4F6CBF8EF05_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.NetworkTransport::SetConnectionReadyForSendCallback(System.Action`2<System.Int32,System.Int32>)");
_il2cpp_icall_func(___callback0);
}
// System.Boolean UnityEngine.Networking.NetworkTransport::StartBroadcastDiscoveryWithData(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Byte[],System.Int32,System.Int32,System.Byte&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NetworkTransport_StartBroadcastDiscoveryWithData_mB0A23FD80B800FBE56A7A04E3FDB576B3A2F6E3C (int32_t ___hostId0, int32_t ___broadcastPort1, int32_t ___key2, int32_t ___version3, int32_t ___subversion4, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___buffer5, int32_t ___size6, int32_t ___timeout7, uint8_t* ___error8, const RuntimeMethod* method)
{
typedef bool (*NetworkTransport_StartBroadcastDiscoveryWithData_mB0A23FD80B800FBE56A7A04E3FDB576B3A2F6E3C_ftn) (int32_t, int32_t, int32_t, int32_t, int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t, uint8_t*);
static NetworkTransport_StartBroadcastDiscoveryWithData_mB0A23FD80B800FBE56A7A04E3FDB576B3A2F6E3C_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (NetworkTransport_StartBroadcastDiscoveryWithData_mB0A23FD80B800FBE56A7A04E3FDB576B3A2F6E3C_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.NetworkTransport::StartBroadcastDiscoveryWithData(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Byte[],System.Int32,System.Int32,System.Byte&)");
bool icallRetVal = _il2cpp_icall_func(___hostId0, ___broadcastPort1, ___key2, ___version3, ___subversion4, ___buffer5, ___size6, ___timeout7, ___error8);
return icallRetVal;
}
// System.Boolean UnityEngine.Networking.NetworkTransport::StartBroadcastDiscoveryWithoutData(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Byte&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NetworkTransport_StartBroadcastDiscoveryWithoutData_m985BE33A67959A02321F1780BB665662D46FD62B (int32_t ___hostId0, int32_t ___broadcastPort1, int32_t ___key2, int32_t ___version3, int32_t ___subversion4, int32_t ___timeout5, uint8_t* ___error6, const RuntimeMethod* method)
{
typedef bool (*NetworkTransport_StartBroadcastDiscoveryWithoutData_m985BE33A67959A02321F1780BB665662D46FD62B_ftn) (int32_t, int32_t, int32_t, int32_t, int32_t, int32_t, uint8_t*);
static NetworkTransport_StartBroadcastDiscoveryWithoutData_m985BE33A67959A02321F1780BB665662D46FD62B_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (NetworkTransport_StartBroadcastDiscoveryWithoutData_m985BE33A67959A02321F1780BB665662D46FD62B_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.NetworkTransport::StartBroadcastDiscoveryWithoutData(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Byte&)");
bool icallRetVal = _il2cpp_icall_func(___hostId0, ___broadcastPort1, ___key2, ___version3, ___subversion4, ___timeout5, ___error6);
return icallRetVal;
}
// System.Boolean UnityEngine.Networking.NetworkTransport::StartBroadcastDiscovery(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Byte[],System.Int32,System.Int32,System.Byte&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NetworkTransport_StartBroadcastDiscovery_mAD307BE76662C16F30EAB56FA57C385A9E5A4407 (int32_t ___hostId0, int32_t ___broadcastPort1, int32_t ___key2, int32_t ___version3, int32_t ___subversion4, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___buffer5, int32_t ___size6, int32_t ___timeout7, uint8_t* ___error8, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
bool V_1 = false;
int32_t V_2 = 0;
bool V_3 = false;
bool V_4 = false;
bool V_5 = false;
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___buffer5;
V_0 = (bool)((!(((RuntimeObject*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)L_0) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
bool L_1 = V_0;
if (!L_1)
{
goto IL_0054;
}
}
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = ___buffer5;
NullCheck(L_2);
int32_t L_3 = ___size6;
V_1 = (bool)((((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))) < ((int32_t)L_3))? 1 : 0);
bool L_4 = V_1;
if (!L_4)
{
goto IL_003f;
}
}
{
String_t* L_5;
L_5 = Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411((int32_t*)(&___size6), /*hidden argument*/NULL);
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_6 = ___buffer5;
NullCheck(L_6);
V_2 = ((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)));
String_t* L_7;
L_7 = Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411((int32_t*)(&V_2), /*hidden argument*/NULL);
String_t* L_8;
L_8 = String_Concat_m37A5BF26F8F8F1892D60D727303B23FB604FEE78(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral18BCA85BAC0AA773A498B2BB7E4CAB9BC0336E67)), L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB5C2F263A62FD2D8D8DF037B38B10BC38934584B)), L_7, /*hidden argument*/NULL);
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_9 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var)));
ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_9, L_8, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NetworkTransport_StartBroadcastDiscovery_mAD307BE76662C16F30EAB56FA57C385A9E5A4407_RuntimeMethod_var)));
}
IL_003f:
{
int32_t L_10 = ___size6;
V_3 = (bool)((((int32_t)L_10) == ((int32_t)0))? 1 : 0);
bool L_11 = V_3;
if (!L_11)
{
goto IL_0053;
}
}
{
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_12 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var)));
ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_12, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral1ECFFECC392D6039A4339179E5CCCDE0A750BFEA)), /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NetworkTransport_StartBroadcastDiscovery_mAD307BE76662C16F30EAB56FA57C385A9E5A4407_RuntimeMethod_var)));
}
IL_0053:
{
}
IL_0054:
{
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_13 = ___buffer5;
V_4 = (bool)((((RuntimeObject*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)L_13) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
bool L_14 = V_4;
if (!L_14)
{
goto IL_0072;
}
}
{
int32_t L_15 = ___hostId0;
int32_t L_16 = ___broadcastPort1;
int32_t L_17 = ___key2;
int32_t L_18 = ___version3;
int32_t L_19 = ___subversion4;
int32_t L_20 = ___timeout7;
uint8_t* L_21 = ___error8;
IL2CPP_RUNTIME_CLASS_INIT(NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44_il2cpp_TypeInfo_var);
bool L_22;
L_22 = NetworkTransport_StartBroadcastDiscoveryWithoutData_m985BE33A67959A02321F1780BB665662D46FD62B(L_15, L_16, L_17, L_18, L_19, L_20, (uint8_t*)L_21, /*hidden argument*/NULL);
V_5 = L_22;
goto IL_0089;
}
IL_0072:
{
int32_t L_23 = ___hostId0;
int32_t L_24 = ___broadcastPort1;
int32_t L_25 = ___key2;
int32_t L_26 = ___version3;
int32_t L_27 = ___subversion4;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_28 = ___buffer5;
int32_t L_29 = ___size6;
int32_t L_30 = ___timeout7;
uint8_t* L_31 = ___error8;
IL2CPP_RUNTIME_CLASS_INIT(NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44_il2cpp_TypeInfo_var);
bool L_32;
L_32 = NetworkTransport_StartBroadcastDiscoveryWithData_mB0A23FD80B800FBE56A7A04E3FDB576B3A2F6E3C(L_23, L_24, L_25, L_26, L_27, L_28, L_29, L_30, (uint8_t*)L_31, /*hidden argument*/NULL);
V_5 = L_32;
goto IL_0089;
}
IL_0089:
{
bool L_33 = V_5;
return L_33;
}
}
// System.Void UnityEngine.Networking.NetworkTransport::StopBroadcastDiscovery()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkTransport_StopBroadcastDiscovery_m5C62918176815E947016E1E1C0219A7847E29137 (const RuntimeMethod* method)
{
typedef void (*NetworkTransport_StopBroadcastDiscovery_m5C62918176815E947016E1E1C0219A7847E29137_ftn) ();
static NetworkTransport_StopBroadcastDiscovery_m5C62918176815E947016E1E1C0219A7847E29137_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (NetworkTransport_StopBroadcastDiscovery_m5C62918176815E947016E1E1C0219A7847E29137_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.NetworkTransport::StopBroadcastDiscovery()");
_il2cpp_icall_func();
}
// System.Void UnityEngine.Networking.NetworkTransport::SetBroadcastCredentials(System.Int32,System.Int32,System.Int32,System.Int32,System.Byte&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkTransport_SetBroadcastCredentials_m9AE78E56E8AE5184F84E749E224B37FC45B9BBD2 (int32_t ___hostId0, int32_t ___key1, int32_t ___version2, int32_t ___subversion3, uint8_t* ___error4, const RuntimeMethod* method)
{
typedef void (*NetworkTransport_SetBroadcastCredentials_m9AE78E56E8AE5184F84E749E224B37FC45B9BBD2_ftn) (int32_t, int32_t, int32_t, int32_t, uint8_t*);
static NetworkTransport_SetBroadcastCredentials_m9AE78E56E8AE5184F84E749E224B37FC45B9BBD2_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (NetworkTransport_SetBroadcastCredentials_m9AE78E56E8AE5184F84E749E224B37FC45B9BBD2_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.NetworkTransport::SetBroadcastCredentials(System.Int32,System.Int32,System.Int32,System.Int32,System.Byte&)");
_il2cpp_icall_func(___hostId0, ___key1, ___version2, ___subversion3, ___error4);
}
// System.String UnityEngine.Networking.NetworkTransport::GetBroadcastConnectionInfo(System.Int32,System.Int32&,System.Byte&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* NetworkTransport_GetBroadcastConnectionInfo_m62F63910563D06061C43A1339D717939C785304A (int32_t ___hostId0, int32_t* ___port1, uint8_t* ___error2, const RuntimeMethod* method)
{
typedef String_t* (*NetworkTransport_GetBroadcastConnectionInfo_m62F63910563D06061C43A1339D717939C785304A_ftn) (int32_t, int32_t*, uint8_t*);
static NetworkTransport_GetBroadcastConnectionInfo_m62F63910563D06061C43A1339D717939C785304A_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (NetworkTransport_GetBroadcastConnectionInfo_m62F63910563D06061C43A1339D717939C785304A_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.NetworkTransport::GetBroadcastConnectionInfo(System.Int32,System.Int32&,System.Byte&)");
String_t* icallRetVal = _il2cpp_icall_func(___hostId0, ___port1, ___error2);
return icallRetVal;
}
// System.Void UnityEngine.Networking.NetworkTransport::GetBroadcastConnectionInfo(System.Int32,System.String&,System.Int32&,System.Byte&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkTransport_GetBroadcastConnectionInfo_m4B076E26DD01C9C9462DAD411005BCBDF479FAD7 (int32_t ___hostId0, String_t** ___address1, int32_t* ___port2, uint8_t* ___error3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
String_t** L_0 = ___address1;
int32_t L_1 = ___hostId0;
int32_t* L_2 = ___port2;
uint8_t* L_3 = ___error3;
IL2CPP_RUNTIME_CLASS_INIT(NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44_il2cpp_TypeInfo_var);
String_t* L_4;
L_4 = NetworkTransport_GetBroadcastConnectionInfo_m62F63910563D06061C43A1339D717939C785304A(L_1, (int32_t*)L_2, (uint8_t*)L_3, /*hidden argument*/NULL);
*((RuntimeObject **)L_0) = (RuntimeObject *)L_4;
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_0, (void*)(RuntimeObject *)L_4);
return;
}
}
// System.Void UnityEngine.Networking.NetworkTransport::GetBroadcastConnectionMessage(System.Int32,System.Byte[],System.Int32,System.Int32&,System.Byte&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkTransport_GetBroadcastConnectionMessage_mE1BCFC26B14B5B28EC772EFE389885FDF04BA536 (int32_t ___hostId0, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___buffer1, int32_t ___bufferSize2, int32_t* ___receivedSize3, uint8_t* ___error4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
int32_t L_0 = ___hostId0;
ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = ___buffer1;
int32_t L_2 = ___bufferSize2;
int32_t* L_3 = ___receivedSize3;
uint8_t* L_4 = ___error4;
IL2CPP_RUNTIME_CLASS_INIT(NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44_il2cpp_TypeInfo_var);
NetworkTransport_GetBroadcastConnectionMessageInternal_mB15C89BE28F66259CFF5E24EBEAC2F6942793CB3(L_0, L_1, L_2, (int32_t*)L_3, (uint8_t*)L_4, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Networking.NetworkTransport::SetMulticastLock(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkTransport_SetMulticastLock_mA772C71777B14DD1453EF512F150C30EA3B363F7 (bool ___enabled0, const RuntimeMethod* method)
{
typedef void (*NetworkTransport_SetMulticastLock_mA772C71777B14DD1453EF512F150C30EA3B363F7_ftn) (bool);
static NetworkTransport_SetMulticastLock_mA772C71777B14DD1453EF512F150C30EA3B363F7_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (NetworkTransport_SetMulticastLock_mA772C71777B14DD1453EF512F150C30EA3B363F7_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.NetworkTransport::SetMulticastLock(System.Boolean)");
_il2cpp_icall_func(___enabled0);
}
// System.Void UnityEngine.Networking.NetworkTransport::GetBroadcastConnectionMessageInternal(System.Int32,System.Byte[],System.Int32,System.Int32&,System.Byte&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkTransport_GetBroadcastConnectionMessageInternal_mB15C89BE28F66259CFF5E24EBEAC2F6942793CB3 (int32_t ___hostId0, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___buffer1, int32_t ___bufferSize2, int32_t* ___receivedSize3, uint8_t* ___error4, const RuntimeMethod* method)
{
typedef void (*NetworkTransport_GetBroadcastConnectionMessageInternal_mB15C89BE28F66259CFF5E24EBEAC2F6942793CB3_ftn) (int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t*, uint8_t*);
static NetworkTransport_GetBroadcastConnectionMessageInternal_mB15C89BE28F66259CFF5E24EBEAC2F6942793CB3_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (NetworkTransport_GetBroadcastConnectionMessageInternal_mB15C89BE28F66259CFF5E24EBEAC2F6942793CB3_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.NetworkTransport::GetBroadcastConnectionMessageInternal(System.Int32,System.Byte[],System.Int32,System.Int32&,System.Byte&)");
_il2cpp_icall_func(___hostId0, ___buffer1, ___bufferSize2, ___receivedSize3, ___error4);
}
// System.Void UnityEngine.Networking.NetworkTransport::CheckTopology(UnityEngine.Networking.HostTopology)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkTransport_CheckTopology_mCA4CDEBBD3AA34CE15D5110586307B01EAD7C1AA (HostTopology_t268779309BB2D69F29D1A182662C79818813892B * ___topology0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m2C0EC005D5C06E5F178A8FB94D48DA905506D907_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mA887125ECBEEA92DEE8520B227EFE1CBF3FB6434_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
bool V_1 = false;
int32_t V_2 = 0;
bool V_3 = false;
bool V_4 = false;
{
IL2CPP_RUNTIME_CLASS_INIT(NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44_il2cpp_TypeInfo_var);
int32_t L_0;
L_0 = NetworkTransport_GetMaxPacketSize_m98EE9A0A5FD4C30AEF12D0B7EE498B3043E929F1(/*hidden argument*/NULL);
V_0 = L_0;
HostTopology_t268779309BB2D69F29D1A182662C79818813892B * L_1 = ___topology0;
NullCheck(L_1);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_2;
L_2 = HostTopology_get_DefaultConfig_m0E4C32CC256D7C901C1C91C86B38F33EBD03A0E3(L_1, /*hidden argument*/NULL);
NullCheck(L_2);
uint16_t L_3;
L_3 = ConnectionConfig_get_PacketSize_mF111FD026B1D2B89D5254278F879E81B3700AD87(L_2, /*hidden argument*/NULL);
int32_t L_4 = V_0;
V_1 = (bool)((((int32_t)L_3) > ((int32_t)L_4))? 1 : 0);
bool L_5 = V_1;
if (!L_5)
{
goto IL_0030;
}
}
{
String_t* L_6;
L_6 = Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411((int32_t*)(&V_0), /*hidden argument*/NULL);
String_t* L_7;
L_7 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFB53011A10B004A1383FD0B7A61E675D7980F715)), L_6, /*hidden argument*/NULL);
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_8 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var)));
ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_8, L_7, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NetworkTransport_CheckTopology_mCA4CDEBBD3AA34CE15D5110586307B01EAD7C1AA_RuntimeMethod_var)));
}
IL_0030:
{
V_2 = 0;
goto IL_0076;
}
IL_0034:
{
HostTopology_t268779309BB2D69F29D1A182662C79818813892B * L_9 = ___topology0;
NullCheck(L_9);
List_1_t46489AA4DB932B33C96BA58827F21F14C831C2DE * L_10;
L_10 = HostTopology_get_SpecialConnectionConfigs_m6FA6CF1CD59EBC0DBBB9454048EDDACE322C029C(L_9, /*hidden argument*/NULL);
int32_t L_11 = V_2;
NullCheck(L_10);
ConnectionConfig_t9ED47EBC3397BFD65CEE4D075D9A63566743600A * L_12;
L_12 = List_1_get_Item_mA887125ECBEEA92DEE8520B227EFE1CBF3FB6434_inline(L_10, L_11, /*hidden argument*/List_1_get_Item_mA887125ECBEEA92DEE8520B227EFE1CBF3FB6434_RuntimeMethod_var);
NullCheck(L_12);
uint16_t L_13;
L_13 = ConnectionConfig_get_PacketSize_mF111FD026B1D2B89D5254278F879E81B3700AD87(L_12, /*hidden argument*/NULL);
int32_t L_14 = V_0;
V_3 = (bool)((((int32_t)L_13) > ((int32_t)L_14))? 1 : 0);
bool L_15 = V_3;
if (!L_15)
{
goto IL_0071;
}
}
{
String_t* L_16;
L_16 = Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411((int32_t*)(&V_2), /*hidden argument*/NULL);
String_t* L_17;
L_17 = Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411((int32_t*)(&V_0), /*hidden argument*/NULL);
String_t* L_18;
L_18 = String_Concat_m37A5BF26F8F8F1892D60D727303B23FB604FEE78(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral515E8DC0021BC9F0BE2285E066E0396A65CF1DE2)), L_16, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEA9F88EAA400C7758A1C3CF48D8E6A867EF21B25)), L_17, /*hidden argument*/NULL);
ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 * L_19 = (ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tFAF23713820951D4A09ABBFE5CC091E445A6F3D8_il2cpp_TypeInfo_var)));
ArgumentOutOfRangeException__ctor_m329C2882A4CB69F185E98D0DD7E853AA9220960A(L_19, L_18, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_19, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NetworkTransport_CheckTopology_mCA4CDEBBD3AA34CE15D5110586307B01EAD7C1AA_RuntimeMethod_var)));
}
IL_0071:
{
int32_t L_20 = V_2;
V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1));
}
IL_0076:
{
int32_t L_21 = V_2;
HostTopology_t268779309BB2D69F29D1A182662C79818813892B * L_22 = ___topology0;
NullCheck(L_22);
List_1_t46489AA4DB932B33C96BA58827F21F14C831C2DE * L_23;
L_23 = HostTopology_get_SpecialConnectionConfigs_m6FA6CF1CD59EBC0DBBB9454048EDDACE322C029C(L_22, /*hidden argument*/NULL);
NullCheck(L_23);
int32_t L_24;
L_24 = List_1_get_Count_m2C0EC005D5C06E5F178A8FB94D48DA905506D907_inline(L_23, /*hidden argument*/List_1_get_Count_m2C0EC005D5C06E5F178A8FB94D48DA905506D907_RuntimeMethod_var);
V_4 = (bool)((((int32_t)L_21) < ((int32_t)L_24))? 1 : 0);
bool L_25 = V_4;
if (L_25)
{
goto IL_0034;
}
}
{
return;
}
}
// System.Void UnityEngine.Networking.NetworkTransport::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NetworkTransport__cctor_mDB08DB01C3DE3EDE771ACE7C805808E30E306F9E (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
((NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44_StaticFields*)il2cpp_codegen_static_fields_for(NetworkTransport_t1369B1490ACBBE45303AFD344210B4D0EA826D44_il2cpp_TypeInfo_var))->set_s_nextSceneId_0(1);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Networking.Types.SourceID UnityEngine.Networking.Match.Request::get_sourceId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Request_get_sourceId_m51B4838441451B97A9CD39654905F8497777C230 (Request_tA1BC1936C153408449C4C207CA12D4358A7477FD * __this, const RuntimeMethod* method)
{
{
uint64_t L_0 = __this->get_U3CsourceIdU3Ek__BackingField_1();
return L_0;
}
}
// System.String UnityEngine.Networking.Match.Request::get_projectId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Request_get_projectId_m6F11899984870CE38D74843B1F3B1705B9E86ED0 (Request_tA1BC1936C153408449C4C207CA12D4358A7477FD * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_U3CprojectIdU3Ek__BackingField_2();
return L_0;
}
}
// System.String UnityEngine.Networking.Match.Request::get_accessTokenString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Request_get_accessTokenString_m6D1262B00D9BD603880CBB45852A695711DA7042 (Request_tA1BC1936C153408449C4C207CA12D4358A7477FD * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_U3CaccessTokenStringU3Ek__BackingField_3();
return L_0;
}
}
// System.Int32 UnityEngine.Networking.Match.Request::get_domain()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Request_get_domain_m37B9BBD8B6369C7170CBF3562A46C9094FB3360F (Request_tA1BC1936C153408449C4C207CA12D4358A7477FD * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_U3CdomainU3Ek__BackingField_4();
return L_0;
}
}
// System.Void UnityEngine.Networking.Match.Request::set_domain(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Request_set_domain_m5D9E2F4FC5FD9612666940E8ADB7C0E6F42354FC (Request_tA1BC1936C153408449C4C207CA12D4358A7477FD * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set_U3CdomainU3Ek__BackingField_4(L_0);
return;
}
}
// System.String UnityEngine.Networking.Match.Request::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Request_ToString_m4F51206BC7123325B3D8278BD9852C3D07FA7B26 (Request_tA1BC1936C153408449C4C207CA12D4358A7477FD * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SourceID_tBE00015EA0F2E5DAEBEC7D0210216A18EB6DA62D_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral47E8F4AFAAF07FCB034C8F9027894581CE654717);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD5D2875F228D651E1289522AEAAB8C492001C1BE);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)5);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = L_0;
String_t* L_2;
L_2 = Object_ToString_m6EEDE9678ACEB962C586D13EC873DE2948668B06(__this, /*hidden argument*/NULL);
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_2);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_2);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_3 = L_1;
uint64_t L_4;
L_4 = Request_get_sourceId_m51B4838441451B97A9CD39654905F8497777C230_inline(__this, /*hidden argument*/NULL);
uint64_t L_5 = L_4;
RuntimeObject * L_6 = Box(SourceID_tBE00015EA0F2E5DAEBEC7D0210216A18EB6DA62D_il2cpp_TypeInfo_var, &L_5);
NullCheck((Enum_t23B90B40F60E677A8025267341651C94AE079CDA *)L_6);
String_t* L_7;
L_7 = Enum_ToString_m4F8C0882A819B1D1E3286920D14CC649200F24A1((Enum_t23B90B40F60E677A8025267341651C94AE079CDA *)L_6, _stringLiteralD5D2875F228D651E1289522AEAAB8C492001C1BE, /*hidden argument*/NULL);
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_7);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_7);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_8 = L_3;
String_t* L_9;
L_9 = Request_get_projectId_m6F11899984870CE38D74843B1F3B1705B9E86ED0_inline(__this, /*hidden argument*/NULL);
NullCheck(L_8);
ArrayElementTypeCheck (L_8, L_9);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_9);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_10 = L_8;
String_t* L_11;
L_11 = Request_get_accessTokenString_m6D1262B00D9BD603880CBB45852A695711DA7042_inline(__this, /*hidden argument*/NULL);
bool L_12;
L_12 = String_IsNullOrEmpty_m9AFBB5335B441B94E884B8A9D4A27AD60E3D7F7C(L_11, /*hidden argument*/NULL);
bool L_13 = L_12;
RuntimeObject * L_14 = Box(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var, &L_13);
NullCheck(L_10);
ArrayElementTypeCheck (L_10, L_14);
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_14);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_15 = L_10;
int32_t L_16;
L_16 = Request_get_domain_m37B9BBD8B6369C7170CBF3562A46C9094FB3360F_inline(__this, /*hidden argument*/NULL);
int32_t L_17 = L_16;
RuntimeObject * L_18 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_17);
NullCheck(L_15);
ArrayElementTypeCheck (L_15, L_18);
(L_15)->SetAt(static_cast<il2cpp_array_size_t>(4), (RuntimeObject *)L_18);
String_t* L_19;
L_19 = UnityString_Format_m7A07C068ED408DD06F634070770FB55F13AA4EC9(_stringLiteral47E8F4AFAAF07FCB034C8F9027894581CE654717, L_15, /*hidden argument*/NULL);
V_0 = L_19;
goto IL_005f;
}
IL_005f:
{
String_t* L_20 = V_0;
return L_20;
}
}
// System.Void UnityEngine.Networking.Match.Request::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Request__ctor_m810E8C9AB15C195E42B5D49B95CE805DA5568993 (Request_tA1BC1936C153408449C4C207CA12D4358A7477FD * __this, const RuntimeMethod* method)
{
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Networking.Match.Request::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Request__cctor_mBA530765AC9F63179892C46DEDBF1AEDE859EA04 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Request_tA1BC1936C153408449C4C207CA12D4358A7477FD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
((Request_tA1BC1936C153408449C4C207CA12D4358A7477FD_StaticFields*)il2cpp_codegen_static_fields_for(Request_tA1BC1936C153408449C4C207CA12D4358A7477FD_il2cpp_TypeInfo_var))->set_currentVersion_0(3);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.Networking.Match.Response::SetFailure(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Response_SetFailure_mADC32166C3815420E27DE28FE37F40439473DEFF (Response_tEF5C8607FB2DC4F1E0E744F3F9BAD3869B4BCD6C * __this, String_t* ___info0, const RuntimeMethod* method)
{
{
__this->set_success_0((bool)0);
String_t* L_0 = __this->get_extendedInfo_1();
String_t* L_1 = ___info0;
String_t* L_2;
L_2 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(L_0, L_1, /*hidden argument*/NULL);
__this->set_extendedInfo_1(L_2);
return;
}
}
// System.String UnityEngine.Networking.Match.Response::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Response_ToString_mE1871457C6916CD280D417857BBE8081EDE5865A (Response_tEF5C8607FB2DC4F1E0E744F3F9BAD3869B4BCD6C * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEBA9B9956261BFAD17D680E8D52612494FF58AEE);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)3);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = L_0;
String_t* L_2;
L_2 = Object_ToString_m6EEDE9678ACEB962C586D13EC873DE2948668B06(__this, /*hidden argument*/NULL);
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_2);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_2);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_3 = L_1;
bool L_4 = __this->get_success_0();
bool L_5 = L_4;
RuntimeObject * L_6 = Box(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var, &L_5);
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_6);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_6);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_7 = L_3;
String_t* L_8 = __this->get_extendedInfo_1();
NullCheck(L_7);
ArrayElementTypeCheck (L_7, L_8);
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_8);
String_t* L_9;
L_9 = UnityString_Format_m7A07C068ED408DD06F634070770FB55F13AA4EC9(_stringLiteralEBA9B9956261BFAD17D680E8D52612494FF58AEE, L_7, /*hidden argument*/NULL);
V_0 = L_9;
goto IL_0034;
}
IL_0034:
{
String_t* L_10 = V_0;
return L_10;
}
}
// System.Void UnityEngine.Networking.Match.Response::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Response__ctor_m06ECAE7C56D0AAAE1271485B6C7C520049201C9E (Response_tEF5C8607FB2DC4F1E0E744F3F9BAD3869B4BCD6C * __this, const RuntimeMethod* method)
{
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__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
// UnityEngine.Networking.Types.NetworkID UnityEngine.Networking.Match.SetMatchAttributesRequest::get_networkId()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t SetMatchAttributesRequest_get_networkId_m7FCEC07EFF3DB82CFDF40B7D6AEF6C11029BFCE0 (SetMatchAttributesRequest_t22EC5198C69E086FC5BC8DB4E249E4B90FAFF2E2 * __this, const RuntimeMethod* method)
{
{
uint64_t L_0 = __this->get_U3CnetworkIdU3Ek__BackingField_5();
return L_0;
}
}
// System.Void UnityEngine.Networking.Match.SetMatchAttributesRequest::set_networkId(UnityEngine.Networking.Types.NetworkID)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SetMatchAttributesRequest_set_networkId_m9B646C9BA765B12830FCBA07AB25701A7335FE92 (SetMatchAttributesRequest_t22EC5198C69E086FC5BC8DB4E249E4B90FAFF2E2 * __this, uint64_t ___value0, const RuntimeMethod* method)
{
{
uint64_t L_0 = ___value0;
__this->set_U3CnetworkIdU3Ek__BackingField_5(L_0);
return;
}
}
// System.Boolean UnityEngine.Networking.Match.SetMatchAttributesRequest::get_isListed()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SetMatchAttributesRequest_get_isListed_m4AD05BE1E93CD550D5EFED8AFDC8C3A14F539999 (SetMatchAttributesRequest_t22EC5198C69E086FC5BC8DB4E249E4B90FAFF2E2 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CisListedU3Ek__BackingField_6();
return L_0;
}
}
// System.Void UnityEngine.Networking.Match.SetMatchAttributesRequest::set_isListed(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SetMatchAttributesRequest_set_isListed_m374284C0BCFAA377F665F9FB8E7871126D2ED7F7 (SetMatchAttributesRequest_t22EC5198C69E086FC5BC8DB4E249E4B90FAFF2E2 * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CisListedU3Ek__BackingField_6(L_0);
return;
}
}
// System.String UnityEngine.Networking.Match.SetMatchAttributesRequest::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SetMatchAttributesRequest_ToString_m79C838935556FF2DEA71290C7B497E514D37AEC3 (SetMatchAttributesRequest_t22EC5198C69E086FC5BC8DB4E249E4B90FAFF2E2 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkID_tA7160DE9FBEE6E236564AEA6C328B6180FC368C3_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral853E3BFF5CA10F5DE14F3B9CA6FE2C1E08DC942F);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD5D2875F228D651E1289522AEAAB8C492001C1BE);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)3);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = L_0;
String_t* L_2;
L_2 = Request_ToString_m4F51206BC7123325B3D8278BD9852C3D07FA7B26(__this, /*hidden argument*/NULL);
NullCheck(L_1);
ArrayElementTypeCheck (L_1, L_2);
(L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_2);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_3 = L_1;
uint64_t L_4;
L_4 = SetMatchAttributesRequest_get_networkId_m7FCEC07EFF3DB82CFDF40B7D6AEF6C11029BFCE0_inline(__this, /*hidden argument*/NULL);
uint64_t L_5 = L_4;
RuntimeObject * L_6 = Box(NetworkID_tA7160DE9FBEE6E236564AEA6C328B6180FC368C3_il2cpp_TypeInfo_var, &L_5);
NullCheck((Enum_t23B90B40F60E677A8025267341651C94AE079CDA *)L_6);
String_t* L_7;
L_7 = Enum_ToString_m4F8C0882A819B1D1E3286920D14CC649200F24A1((Enum_t23B90B40F60E677A8025267341651C94AE079CDA *)L_6, _stringLiteralD5D2875F228D651E1289522AEAAB8C492001C1BE, /*hidden argument*/NULL);
NullCheck(L_3);
ArrayElementTypeCheck (L_3, L_7);
(L_3)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_7);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_8 = L_3;
bool L_9;
L_9 = SetMatchAttributesRequest_get_isListed_m4AD05BE1E93CD550D5EFED8AFDC8C3A14F539999_inline(__this, /*hidden argument*/NULL);
bool L_10 = L_9;
RuntimeObject * L_11 = Box(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var, &L_10);
NullCheck(L_8);
ArrayElementTypeCheck (L_8, L_11);
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)L_11);
String_t* L_12;
L_12 = UnityString_Format_m7A07C068ED408DD06F634070770FB55F13AA4EC9(_stringLiteral853E3BFF5CA10F5DE14F3B9CA6FE2C1E08DC942F, L_8, /*hidden argument*/NULL);
V_0 = L_12;
goto IL_0043;
}
IL_0043:
{
String_t* L_13 = V_0;
return L_13;
}
}
// System.Void UnityEngine.Networking.Match.SetMatchAttributesRequest::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SetMatchAttributesRequest__ctor_m2110EB4B0BDE74BF1E6D04F17D02787525F2F1BA (SetMatchAttributesRequest_t22EC5198C69E086FC5BC8DB4E249E4B90FAFF2E2 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Request_tA1BC1936C153408449C4C207CA12D4358A7477FD_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
IL2CPP_RUNTIME_CLASS_INIT(Request_tA1BC1936C153408449C4C207CA12D4358A7477FD_il2cpp_TypeInfo_var);
Request__ctor_m810E8C9AB15C195E42B5D49B95CE805DA5568993(__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
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Networking.Types.SourceID UnityEngine.Networking.Utility::GetSourceID()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Utility_GetSourceID_m958E8557A6FBCAC4594B4B7A5014BBA266D8EDBE (const RuntimeMethod* method)
{
uint64_t V_0 = 0;
{
String_t* L_0;
L_0 = SystemInfo_get_deviceUniqueIdentifier_m12CA3C3D8C75E44FBFA73E2E34D9E743AF732B1E(/*hidden argument*/NULL);
NullCheck(L_0);
int32_t L_1;
L_1 = VirtFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_0);
V_0 = ((int64_t)((int64_t)L_1));
goto IL_000f;
}
IL_000f:
{
uint64_t L_2 = V_0;
return L_2;
}
}
// System.Void UnityEngine.Networking.Utility::SetAccessTokenForNetwork(UnityEngine.Networking.Types.NetworkID,UnityEngine.Networking.Types.NetworkAccessToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Utility_SetAccessTokenForNetwork_mD6FA81F2FD77F041C236152BAC57F4FCA5D892CF (uint64_t ___netId0, NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481 * ___accessToken1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Add_mC9565B511D1371B68F07DB865095C9304A8F0D74_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_ContainsKey_m7402E5AA50B26C1263364008B6293C58493B9700_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Remove_m6C9ADF70804F80C044BF0B3BBB2A6A08C53E1284_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utility_t1BA2108022A500F65615E46E75D6A58D03F1E874_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
IL2CPP_RUNTIME_CLASS_INIT(Utility_t1BA2108022A500F65615E46E75D6A58D03F1E874_il2cpp_TypeInfo_var);
Dictionary_2_tF197FC5D732CB0BAFF2699E9BC01198A9264E0BA * L_0 = ((Utility_t1BA2108022A500F65615E46E75D6A58D03F1E874_StaticFields*)il2cpp_codegen_static_fields_for(Utility_t1BA2108022A500F65615E46E75D6A58D03F1E874_il2cpp_TypeInfo_var))->get_s_dictTokens_0();
uint64_t L_1 = ___netId0;
NullCheck(L_0);
bool L_2;
L_2 = Dictionary_2_ContainsKey_m7402E5AA50B26C1263364008B6293C58493B9700(L_0, L_1, /*hidden argument*/Dictionary_2_ContainsKey_m7402E5AA50B26C1263364008B6293C58493B9700_RuntimeMethod_var);
V_0 = L_2;
bool L_3 = V_0;
if (!L_3)
{
goto IL_001c;
}
}
{
IL2CPP_RUNTIME_CLASS_INIT(Utility_t1BA2108022A500F65615E46E75D6A58D03F1E874_il2cpp_TypeInfo_var);
Dictionary_2_tF197FC5D732CB0BAFF2699E9BC01198A9264E0BA * L_4 = ((Utility_t1BA2108022A500F65615E46E75D6A58D03F1E874_StaticFields*)il2cpp_codegen_static_fields_for(Utility_t1BA2108022A500F65615E46E75D6A58D03F1E874_il2cpp_TypeInfo_var))->get_s_dictTokens_0();
uint64_t L_5 = ___netId0;
NullCheck(L_4);
bool L_6;
L_6 = Dictionary_2_Remove_m6C9ADF70804F80C044BF0B3BBB2A6A08C53E1284(L_4, L_5, /*hidden argument*/Dictionary_2_Remove_m6C9ADF70804F80C044BF0B3BBB2A6A08C53E1284_RuntimeMethod_var);
}
IL_001c:
{
IL2CPP_RUNTIME_CLASS_INIT(Utility_t1BA2108022A500F65615E46E75D6A58D03F1E874_il2cpp_TypeInfo_var);
Dictionary_2_tF197FC5D732CB0BAFF2699E9BC01198A9264E0BA * L_7 = ((Utility_t1BA2108022A500F65615E46E75D6A58D03F1E874_StaticFields*)il2cpp_codegen_static_fields_for(Utility_t1BA2108022A500F65615E46E75D6A58D03F1E874_il2cpp_TypeInfo_var))->get_s_dictTokens_0();
uint64_t L_8 = ___netId0;
NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481 * L_9 = ___accessToken1;
NullCheck(L_7);
Dictionary_2_Add_mC9565B511D1371B68F07DB865095C9304A8F0D74(L_7, L_8, L_9, /*hidden argument*/Dictionary_2_Add_mC9565B511D1371B68F07DB865095C9304A8F0D74_RuntimeMethod_var);
return;
}
}
// UnityEngine.Networking.Types.NetworkAccessToken UnityEngine.Networking.Utility::GetAccessTokenForNetwork(UnityEngine.Networking.Types.NetworkID)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481 * Utility_GetAccessTokenForNetwork_m778FE11429F330727F46BDA237C28DD6956671C3 (uint64_t ___netId0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_mBCDA7DD151F5870CC0A86694D90D169DCDDDF333_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utility_t1BA2108022A500F65615E46E75D6A58D03F1E874_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481 * V_0 = NULL;
bool V_1 = false;
NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481 * V_2 = NULL;
{
IL2CPP_RUNTIME_CLASS_INIT(Utility_t1BA2108022A500F65615E46E75D6A58D03F1E874_il2cpp_TypeInfo_var);
Dictionary_2_tF197FC5D732CB0BAFF2699E9BC01198A9264E0BA * L_0 = ((Utility_t1BA2108022A500F65615E46E75D6A58D03F1E874_StaticFields*)il2cpp_codegen_static_fields_for(Utility_t1BA2108022A500F65615E46E75D6A58D03F1E874_il2cpp_TypeInfo_var))->get_s_dictTokens_0();
uint64_t L_1 = ___netId0;
NullCheck(L_0);
bool L_2;
L_2 = Dictionary_2_TryGetValue_mBCDA7DD151F5870CC0A86694D90D169DCDDDF333(L_0, L_1, (NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481 **)(&V_0), /*hidden argument*/Dictionary_2_TryGetValue_mBCDA7DD151F5870CC0A86694D90D169DCDDDF333_RuntimeMethod_var);
V_1 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
bool L_3 = V_1;
if (!L_3)
{
goto IL_001d;
}
}
{
NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481 * L_4 = (NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481 *)il2cpp_codegen_object_new(NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481_il2cpp_TypeInfo_var);
NetworkAccessToken__ctor_m2CF052E50D9B3171B669859E021ABF33959D6019(L_4, /*hidden argument*/NULL);
V_0 = L_4;
}
IL_001d:
{
NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481 * L_5 = V_0;
V_2 = L_5;
goto IL_0021;
}
IL_0021:
{
NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481 * L_6 = V_2;
return L_6;
}
}
// System.Void UnityEngine.Networking.Utility::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Utility__cctor_m27944A142A0001511ACB59B56B1E0560F1C31B87 (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m579860025819FDFA94E93CC9F43D1E0E1CB4ADCE_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_tF197FC5D732CB0BAFF2699E9BC01198A9264E0BA_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utility_t1BA2108022A500F65615E46E75D6A58D03F1E874_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
Dictionary_2_tF197FC5D732CB0BAFF2699E9BC01198A9264E0BA * L_0 = (Dictionary_2_tF197FC5D732CB0BAFF2699E9BC01198A9264E0BA *)il2cpp_codegen_object_new(Dictionary_2_tF197FC5D732CB0BAFF2699E9BC01198A9264E0BA_il2cpp_TypeInfo_var);
Dictionary_2__ctor_m579860025819FDFA94E93CC9F43D1E0E1CB4ADCE(L_0, /*hidden argument*/Dictionary_2__ctor_m579860025819FDFA94E93CC9F43D1E0E1CB4ADCE_RuntimeMethod_var);
((Utility_t1BA2108022A500F65615E46E75D6A58D03F1E874_StaticFields*)il2cpp_codegen_static_fields_for(Utility_t1BA2108022A500F65615E46E75D6A58D03F1E874_il2cpp_TypeInfo_var))->set_s_dictTokens_0(L_0);
return;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.Networking.Match.MatchInfoSnapshot/MatchInfoDirectConnectSnapshot::set_nodeId(UnityEngine.Networking.Types.NodeID)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchInfoDirectConnectSnapshot_set_nodeId_m6CEC68A411E5CF0BA8F117E2320183B8F2A7A427 (MatchInfoDirectConnectSnapshot_t82741E9963C92FE12F5CB64A40851676E4677F6C * __this, uint16_t ___value0, const RuntimeMethod* method)
{
{
uint16_t L_0 = ___value0;
__this->set_U3CnodeIdU3Ek__BackingField_0(L_0);
return;
}
}
// System.Void UnityEngine.Networking.Match.MatchInfoSnapshot/MatchInfoDirectConnectSnapshot::set_publicAddress(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchInfoDirectConnectSnapshot_set_publicAddress_mD2BE5562A61C27A943E18910A89C885CDB7A854D (MatchInfoDirectConnectSnapshot_t82741E9963C92FE12F5CB64A40851676E4677F6C * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CpublicAddressU3Ek__BackingField_1(L_0);
return;
}
}
// System.Void UnityEngine.Networking.Match.MatchInfoSnapshot/MatchInfoDirectConnectSnapshot::set_privateAddress(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchInfoDirectConnectSnapshot_set_privateAddress_mB53B9DFB3F4E624E65A1A0D63B789F25948A3CDA (MatchInfoDirectConnectSnapshot_t82741E9963C92FE12F5CB64A40851676E4677F6C * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CprivateAddressU3Ek__BackingField_2(L_0);
return;
}
}
// System.Void UnityEngine.Networking.Match.MatchInfoSnapshot/MatchInfoDirectConnectSnapshot::set_hostPriority(UnityEngine.Networking.Types.HostPriority)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchInfoDirectConnectSnapshot_set_hostPriority_m92F2A1B50E815DB131E65362A37E4BBEF0098CF9 (MatchInfoDirectConnectSnapshot_t82741E9963C92FE12F5CB64A40851676E4677F6C * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set_U3ChostPriorityU3Ek__BackingField_3(L_0);
return;
}
}
// System.Void UnityEngine.Networking.Match.MatchInfoSnapshot/MatchInfoDirectConnectSnapshot::.ctor(UnityEngine.Networking.Match.MatchDirectConnectInfo)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MatchInfoDirectConnectSnapshot__ctor_m54187853AA7417564146819AFB578DE4905B2AFF (MatchInfoDirectConnectSnapshot_t82741E9963C92FE12F5CB64A40851676E4677F6C * __this, MatchDirectConnectInfo_t79A507F1704A58987DFC695D74214C9726BF78A4 * ___matchDirectConnectInfo0, const RuntimeMethod* method)
{
{
Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
MatchDirectConnectInfo_t79A507F1704A58987DFC695D74214C9726BF78A4 * L_0 = ___matchDirectConnectInfo0;
NullCheck(L_0);
uint16_t L_1 = L_0->get_nodeId_0();
MatchInfoDirectConnectSnapshot_set_nodeId_m6CEC68A411E5CF0BA8F117E2320183B8F2A7A427_inline(__this, L_1, /*hidden argument*/NULL);
MatchDirectConnectInfo_t79A507F1704A58987DFC695D74214C9726BF78A4 * L_2 = ___matchDirectConnectInfo0;
NullCheck(L_2);
String_t* L_3 = L_2->get_publicAddress_1();
MatchInfoDirectConnectSnapshot_set_publicAddress_mD2BE5562A61C27A943E18910A89C885CDB7A854D_inline(__this, L_3, /*hidden argument*/NULL);
MatchDirectConnectInfo_t79A507F1704A58987DFC695D74214C9726BF78A4 * L_4 = ___matchDirectConnectInfo0;
NullCheck(L_4);
String_t* L_5 = L_4->get_privateAddress_2();
MatchInfoDirectConnectSnapshot_set_privateAddress_mB53B9DFB3F4E624E65A1A0D63B789F25948A3CDA_inline(__this, L_5, /*hidden argument*/NULL);
MatchDirectConnectInfo_t79A507F1704A58987DFC695D74214C9726BF78A4 * L_6 = ___matchDirectConnectInfo0;
NullCheck(L_6);
int32_t L_7 = L_6->get_hostPriority_3();
MatchInfoDirectConnectSnapshot_set_hostPriority_m92F2A1B50E815DB131E65362A37E4BBEF0098CF9_inline(__this, L_7, /*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
IL2CPP_EXTERN_C void DelegatePInvokeWrapper_BasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A (BasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A * __this, bool ___success0, String_t* ___extendedInfo1, const RuntimeMethod* method)
{
typedef void (DEFAULT_CALL *PInvokeFunc)(int32_t, char*);
PInvokeFunc il2cppPInvokeFunc = reinterpret_cast<PInvokeFunc>(il2cpp_codegen_get_method_pointer(((RuntimeDelegate*)__this)->method));
// Marshaling of parameter '___extendedInfo1' to native representation
char* ____extendedInfo1_marshaled = NULL;
____extendedInfo1_marshaled = il2cpp_codegen_marshal_string(___extendedInfo1);
// Native function invocation
il2cppPInvokeFunc(static_cast<int32_t>(___success0), ____extendedInfo1_marshaled);
// Marshaling cleanup of parameter '___extendedInfo1' native representation
il2cpp_codegen_marshal_free(____extendedInfo1_marshaled);
____extendedInfo1_marshaled = NULL;
}
// System.Void UnityEngine.Networking.Match.NetworkMatch/BasicResponseDelegate::.ctor(System.Object,System.IntPtr)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BasicResponseDelegate__ctor_m66186A46D8EF361F3F9BE49493DBC73E992DF25E (BasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A * __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 UnityEngine.Networking.Match.NetworkMatch/BasicResponseDelegate::Invoke(System.Boolean,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BasicResponseDelegate_Invoke_mD34E66B3E0583711275610B1BCF07FC56A61BCB1 (BasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A * __this, bool ___success0, String_t* ___extendedInfo1, const RuntimeMethod* method)
{
DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11();
Delegate_t** delegatesToInvoke;
il2cpp_array_size_t length;
if (delegateArrayToInvoke != NULL)
{
length = delegateArrayToInvoke->max_length;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(delegateArrayToInvoke->GetAddressAtUnchecked(0));
}
else
{
length = 1;
delegatesToInvoke = reinterpret_cast<Delegate_t**>(&__this);
}
for (il2cpp_array_size_t i = 0; i < length; i++)
{
Delegate_t* currentDelegate = delegatesToInvoke[i];
Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0();
RuntimeObject* targetThis = currentDelegate->get_m_target_2();
RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3());
if (!il2cpp_codegen_method_is_virtual(targetMethod))
{
il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod);
}
bool ___methodIsStatic = MethodIsStatic(targetMethod);
int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod);
if (___methodIsStatic)
{
if (___parameterCount == 2)
{
// open
typedef void (*FunctionPointerType) (bool, String_t*, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(___success0, ___extendedInfo1, targetMethod);
}
else
{
// closed
typedef void (*FunctionPointerType) (void*, bool, String_t*, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___success0, ___extendedInfo1, targetMethod);
}
}
else
{
// closed
if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this))
{
if (il2cpp_codegen_method_is_generic_instance(targetMethod))
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
GenericInterfaceActionInvoker2< bool, String_t* >::Invoke(targetMethod, targetThis, ___success0, ___extendedInfo1);
else
GenericVirtActionInvoker2< bool, String_t* >::Invoke(targetMethod, targetThis, ___success0, ___extendedInfo1);
}
else
{
if (il2cpp_codegen_method_is_interface_method(targetMethod))
InterfaceActionInvoker2< bool, String_t* >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___success0, ___extendedInfo1);
else
VirtActionInvoker2< bool, String_t* >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___success0, ___extendedInfo1);
}
}
else
{
typedef void (*FunctionPointerType) (void*, bool, String_t*, const RuntimeMethod*);
((FunctionPointerType)targetMethodPointer)(targetThis, ___success0, ___extendedInfo1, targetMethod);
}
}
}
}
// System.IAsyncResult UnityEngine.Networking.Match.NetworkMatch/BasicResponseDelegate::BeginInvoke(System.Boolean,System.String,System.AsyncCallback,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* BasicResponseDelegate_BeginInvoke_mE1345E39B7F1BCBC55442ADD6479904E1710FF54 (BasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A * __this, bool ___success0, String_t* ___extendedInfo1, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
void *__d_args[3] = {0};
__d_args[0] = Box(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_il2cpp_TypeInfo_var, &___success0);
__d_args[1] = ___extendedInfo1;
return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);;
}
// System.Void UnityEngine.Networking.Match.NetworkMatch/BasicResponseDelegate::EndInvoke(System.IAsyncResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BasicResponseDelegate_EndInvoke_m127B8017B55042FC1E2D16E8F5D22020427EF28F (BasicResponseDelegate_tF88D05E2D258B878F250B1EA47B201D8304E994A * __this, RuntimeObject* ___result0, const RuntimeMethod* method)
{
il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* CreateMatchRequest_get_name_mDB5F67F45F566D176B840FFAABAF0A5072DB56A0_inline (CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_U3CnameU3Ek__BackingField_5();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t CreateMatchRequest_get_size_mD2818C6FA732FB6DAF315D665C3FF9E097F023EA_inline (CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * __this, const RuntimeMethod* method)
{
{
uint32_t L_0 = __this->get_U3CsizeU3Ek__BackingField_6();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* CreateMatchRequest_get_publicAddress_m500540EAFB70C64014B9DD733BCC7726473D006B_inline (CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_U3CpublicAddressU3Ek__BackingField_7();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* CreateMatchRequest_get_privateAddress_m2EA118F357CCA5EC32295C777B54469422D94AFA_inline (CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_U3CprivateAddressU3Ek__BackingField_8();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t CreateMatchRequest_get_eloScore_m71DD51B39B031421C1D43029075DD796137A05B7_inline (CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_U3CeloScoreU3Ek__BackingField_9();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool CreateMatchRequest_get_advertise_mC6F7A0C2EC590E0A5A5F6C02CB515D2F7FC5E044_inline (CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CadvertiseU3Ek__BackingField_10();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* CreateMatchRequest_get_password_mA3A25AEF3994F75CC2663A003D6B762E53470A90_inline (CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_U3CpasswordU3Ek__BackingField_11();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * CreateMatchRequest_get_matchAttributes_m5D65A1EAD26A45C236EDA8FEB400B542093C678E_inline (CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * __this, const RuntimeMethod* method)
{
{
Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * L_0 = __this->get_U3CmatchAttributesU3Ek__BackingField_12();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint64_t DestroyMatchRequest_get_networkId_m9A908C64FB1730FC9198940FE08C380E33C43455_inline (DestroyMatchRequest_t3AC8FF769CC153C425D7D76492693F00A76B81D0 * __this, const RuntimeMethod* method)
{
{
uint64_t L_0 = __this->get_U3CnetworkIdU3Ek__BackingField_5();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint64_t DropConnectionRequest_get_networkId_m58D7BA9439346AD5B49293F499BED9C155C652CF_inline (DropConnectionRequest_t0BADA55738E8857768EE57C92027957659C0E8D1 * __this, const RuntimeMethod* method)
{
{
uint64_t L_0 = __this->get_U3CnetworkIdU3Ek__BackingField_5();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint16_t DropConnectionRequest_get_nodeId_m7A1E99C6F45D801A6C6D6BC0F3D18AAC6424F6C8_inline (DropConnectionRequest_t0BADA55738E8857768EE57C92027957659C0E8D1 * __this, const RuntimeMethod* method)
{
{
uint16_t L_0 = __this->get_U3CnodeIdU3Ek__BackingField_6();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint64_t JoinMatchRequest_get_networkId_mF41427B1FE3C495530C0C7A366152446613F8B10_inline (JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A * __this, const RuntimeMethod* method)
{
{
uint64_t L_0 = __this->get_U3CnetworkIdU3Ek__BackingField_5();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* JoinMatchRequest_get_publicAddress_mE052141FB172D009FE1BDB0F7AC52068A5DF3EE2_inline (JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_U3CpublicAddressU3Ek__BackingField_6();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* JoinMatchRequest_get_privateAddress_m2DE574B58D8A69C731C815E2C46AB5CC3ADF8D8D_inline (JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_U3CprivateAddressU3Ek__BackingField_7();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t JoinMatchRequest_get_eloScore_mC0238C87F841D7DBD4C06765AD05B8A8A6B2F01E_inline (JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_U3CeloScoreU3Ek__BackingField_8();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* JoinMatchRequest_get_password_m0E7A0F73B7DB0E41E613A07195C3A7370C863B90_inline (JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_U3CpasswordU3Ek__BackingField_9();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ListMatchRequest_get_pageSize_m0465C7613FBFF54BF422F014F27C26D6CE3AF1E1_inline (ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_U3CpageSizeU3Ek__BackingField_5();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ListMatchRequest_get_pageNum_mA6E74CFB9E814DB86AE540DB0E7CFD9A9637B10E_inline (ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_U3CpageNumU3Ek__BackingField_6();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* ListMatchRequest_get_nameFilter_m3C0481F1E6046D75BCE05B1DD331B183F2CB1401_inline (ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_U3CnameFilterU3Ek__BackingField_7();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ListMatchRequest_get_filterOutPrivateMatches_m0827128486C61327991B26DDCE1057BF56395B5A_inline (ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CfilterOutPrivateMatchesU3Ek__BackingField_8();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ListMatchRequest_get_eloScore_m7CC5143EAD11A7CB152C7DD89D2DEE0C1E5F56CB_inline (ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_U3CeloScoreU3Ek__BackingField_9();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * ListMatchRequest_get_matchAttributeFilterLessThan_m15EAF64DC665FCDE5A00D6AFF67E97E2250CDA65_inline (ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * __this, const RuntimeMethod* method)
{
{
Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * L_0 = __this->get_U3CmatchAttributeFilterLessThanU3Ek__BackingField_10();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * ListMatchRequest_get_matchAttributeFilterEqualTo_mCED2ECBE526824ACE9D65845F72CA54DEA42BEC8_inline (ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * __this, const RuntimeMethod* method)
{
{
Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * L_0 = __this->get_U3CmatchAttributeFilterEqualToU3Ek__BackingField_11();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * ListMatchRequest_get_matchAttributeFilterGreaterThan_mF2D363A215A57DE53A14E0B82D4BA61D10736FDA_inline (ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * __this, const RuntimeMethod* method)
{
{
Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * L_0 = __this->get_U3CmatchAttributeFilterGreaterThanU3Ek__BackingField_12();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MatchInfo_set_address_m3890A46355BE0177B9434F4EF1016C93E4C66E89_inline (MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CaddressU3Ek__BackingField_0(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MatchInfo_set_port_m4F079B17EE7B17FEB5018568E245CD7BE4E8A889_inline (MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set_U3CportU3Ek__BackingField_1(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MatchInfo_set_domain_mD6A02961C3FCF81C65FF52F9E05AE1C9520C2057_inline (MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set_U3CdomainU3Ek__BackingField_2(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MatchInfo_set_networkId_mF06B1A76AE877FEF8F90091550CBE7C04395249C_inline (MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67 * __this, uint64_t ___value0, const RuntimeMethod* method)
{
{
uint64_t L_0 = ___value0;
__this->set_U3CnetworkIdU3Ek__BackingField_3(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MatchInfo_set_accessToken_m359FEC01A40E84C1D44D7FE8B2B1A60F5D25A73F_inline (MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67 * __this, NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481 * ___value0, const RuntimeMethod* method)
{
{
NetworkAccessToken_t9AAEDFBEA9AF50E6CA95B82AE883F40DA7315481 * L_0 = ___value0;
__this->set_U3CaccessTokenU3Ek__BackingField_4(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MatchInfo_set_nodeId_m33003F730A881B20E2971B5621FFE1C180F9B852_inline (MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67 * __this, uint16_t ___value0, const RuntimeMethod* method)
{
{
uint16_t L_0 = ___value0;
__this->set_U3CnodeIdU3Ek__BackingField_5(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MatchInfo_set_usingRelay_mDB319BCBB310B8BD802ED0DC5514ED75209B092A_inline (MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67 * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CusingRelayU3Ek__BackingField_6(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint64_t MatchInfo_get_networkId_m85F41C6EF913403668CF02D8E2161A97165B4F9F_inline (MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67 * __this, const RuntimeMethod* method)
{
{
uint64_t L_0 = __this->get_U3CnetworkIdU3Ek__BackingField_3();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* MatchInfo_get_address_mD2E2A1FACE5451D7191ADAF11F7A7C3DD2BAF475_inline (MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67 * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_U3CaddressU3Ek__BackingField_0();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t MatchInfo_get_port_m927D4247843F4AEB1BD72AB83ED032DA92BDEEB7_inline (MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_U3CportU3Ek__BackingField_1();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint16_t MatchInfo_get_nodeId_m8E065595B2BD6F97873189C5697402E44DAC58C9_inline (MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67 * __this, const RuntimeMethod* method)
{
{
uint16_t L_0 = __this->get_U3CnodeIdU3Ek__BackingField_5();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool MatchInfo_get_usingRelay_m7256FADA60AF340CA978CBFBE1A67944EEC19771_inline (MatchInfo_tA89C9E5EB4CD5EB334D80B21A7B35B9CE4D32F67 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CusingRelayU3Ek__BackingField_6();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MatchInfoSnapshot_set_networkId_m42E6ADF32A3C61014374C3A1ED0D81E4C503399F_inline (MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0 * __this, uint64_t ___value0, const RuntimeMethod* method)
{
{
uint64_t L_0 = ___value0;
__this->set_U3CnetworkIdU3Ek__BackingField_0(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MatchInfoSnapshot_set_hostNodeId_m6F821EBAB54B742B9DB89C3A0D6D3F92594BFDCD_inline (MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0 * __this, uint16_t ___value0, const RuntimeMethod* method)
{
{
uint16_t L_0 = ___value0;
__this->set_U3ChostNodeIdU3Ek__BackingField_1(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MatchInfoSnapshot_set_name_m1445121C935DCF0ECCC95C99BCD0BCCC48717E6D_inline (MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CnameU3Ek__BackingField_2(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MatchInfoSnapshot_set_averageEloScore_mC3282AF93AB1EEC7A000CA6746368022D9A5C753_inline (MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set_U3CaverageEloScoreU3Ek__BackingField_3(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MatchInfoSnapshot_set_maxSize_m3395A6A69B1FE1011D201373000CC619D48281A7_inline (MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set_U3CmaxSizeU3Ek__BackingField_4(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MatchInfoSnapshot_set_currentSize_m6C711BD86215823980979BA1F641B3A2C4BCAED7_inline (MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set_U3CcurrentSizeU3Ek__BackingField_5(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MatchInfoSnapshot_set_isPrivate_m084E967180A94041EB3800784FF06C2772D41FBE_inline (MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0 * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CisPrivateU3Ek__BackingField_6(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MatchInfoSnapshot_set_matchAttributes_m82974C5D806695B0029F02B2D85F324BA746BB84_inline (MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0 * __this, Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * ___value0, const RuntimeMethod* method)
{
{
Dictionary_2_t89F1337E661E2EFCB4C0B7F9C0FE6C3BC09383E9 * L_0 = ___value0;
__this->set_U3CmatchAttributesU3Ek__BackingField_7(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MatchInfoSnapshot_set_directConnectInfos_m77C6BD3239DD46327788981E828C5028709BE5ED_inline (MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0 * __this, List_1_t25DD639486662E92B4B3EF461C654CEBB4202FFC * ___value0, const RuntimeMethod* method)
{
{
List_1_t25DD639486662E92B4B3EF461C654CEBB4202FFC * L_0 = ___value0;
__this->set_U3CdirectConnectInfosU3Ek__BackingField_8(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_t25DD639486662E92B4B3EF461C654CEBB4202FFC * MatchInfoSnapshot_get_directConnectInfos_m0B9DA5AC8C3BE0B9709195356BDA9F837166095C_inline (MatchInfoSnapshot_t841127FB8F3D763A9517A8306CEEE4528D83B3A0 * __this, const RuntimeMethod* method)
{
{
List_1_t25DD639486662E92B4B3EF461C654CEBB4202FFC * L_0 = __this->get_U3CdirectConnectInfosU3Ek__BackingField_8();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void CreateMatchRequest_set_name_mE0B8D4C54AE982080E74B8D40FFAA7529D09A0A8_inline (CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CnameU3Ek__BackingField_5(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void CreateMatchRequest_set_size_m87F0CE15BF61656B21FFD4A7D7AD000752F90D0F_inline (CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * __this, uint32_t ___value0, const RuntimeMethod* method)
{
{
uint32_t L_0 = ___value0;
__this->set_U3CsizeU3Ek__BackingField_6(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void CreateMatchRequest_set_advertise_m7A979119781F3358FD0166BDE484212579F27FED_inline (CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CadvertiseU3Ek__BackingField_10(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void CreateMatchRequest_set_password_m1ED11F41F58A9B3C2E87103625D46E4BB497A9AD_inline (CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CpasswordU3Ek__BackingField_11(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void CreateMatchRequest_set_publicAddress_m8B3FFBDAC322E8818A1A9C97F32A3D7A87FC78E2_inline (CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CpublicAddressU3Ek__BackingField_7(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void CreateMatchRequest_set_privateAddress_mDD2D5C34B6879086BAB56DD932BE91666BA370D3_inline (CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CprivateAddressU3Ek__BackingField_8(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void CreateMatchRequest_set_eloScore_m029428732F257F688E21C3D69AF794FEA4E8EFC7_inline (CreateMatchRequest_tDF9DD73552A24160486175BD4D07C2F35CF40A9B * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set_U3CeloScoreU3Ek__BackingField_9(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Request_set_domain_m5D9E2F4FC5FD9612666940E8ADB7C0E6F42354FC_inline (Request_tA1BC1936C153408449C4C207CA12D4358A7477FD * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set_U3CdomainU3Ek__BackingField_4(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Request_get_domain_m37B9BBD8B6369C7170CBF3562A46C9094FB3360F_inline (Request_tA1BC1936C153408449C4C207CA12D4358A7477FD * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_U3CdomainU3Ek__BackingField_4();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JoinMatchRequest_set_networkId_mA9CA6065937BD62F39138C9869BE6A5B686EA92C_inline (JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A * __this, uint64_t ___value0, const RuntimeMethod* method)
{
{
uint64_t L_0 = ___value0;
__this->set_U3CnetworkIdU3Ek__BackingField_5(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JoinMatchRequest_set_password_m2096D8C416175CF323600FBD5E1370E83FB8741C_inline (JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CpasswordU3Ek__BackingField_9(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JoinMatchRequest_set_publicAddress_mB837E27EF72F8B9034A5B926F3F969044A9A7093_inline (JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CpublicAddressU3Ek__BackingField_6(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JoinMatchRequest_set_privateAddress_mF07E855D339EE71B24EB95110B579262C74A55F1_inline (JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CprivateAddressU3Ek__BackingField_7(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void JoinMatchRequest_set_eloScore_mDA8EAC91C261AD2C6D6A45AD9F3C0422EEEAB73E_inline (JoinMatchRequest_t916D30AEE136554EB2143273A6D931E47C78940A * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set_U3CeloScoreU3Ek__BackingField_8(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DestroyMatchRequest_set_networkId_mC1C51DCC3A6C729D2EF1EB763F56F38CA72FF68A_inline (DestroyMatchRequest_t3AC8FF769CC153C425D7D76492693F00A76B81D0 * __this, uint64_t ___value0, const RuntimeMethod* method)
{
{
uint64_t L_0 = ___value0;
__this->set_U3CnetworkIdU3Ek__BackingField_5(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DropConnectionRequest_set_networkId_mD980D5276D76AE525984AEC35B6F11A02F30F56C_inline (DropConnectionRequest_t0BADA55738E8857768EE57C92027957659C0E8D1 * __this, uint64_t ___value0, const RuntimeMethod* method)
{
{
uint64_t L_0 = ___value0;
__this->set_U3CnetworkIdU3Ek__BackingField_5(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void DropConnectionRequest_set_nodeId_mDC0D89F76443E687896E8C8E6EEDF0FA5C2F7C27_inline (DropConnectionRequest_t0BADA55738E8857768EE57C92027957659C0E8D1 * __this, uint16_t ___value0, const RuntimeMethod* method)
{
{
uint16_t L_0 = ___value0;
__this->set_U3CnodeIdU3Ek__BackingField_6(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ListMatchRequest_set_pageNum_m3716C07B600678E685711BFCD0B0661B0C842034_inline (ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set_U3CpageNumU3Ek__BackingField_6(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ListMatchRequest_set_pageSize_mB474132B156ACAFD88EB07D1A9408E79100B43B9_inline (ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set_U3CpageSizeU3Ek__BackingField_5(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ListMatchRequest_set_nameFilter_mFBBD2943CA68B32FABFACFCA178416CF9AC3BAEA_inline (ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CnameFilterU3Ek__BackingField_7(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ListMatchRequest_set_filterOutPrivateMatches_m38C559485A9D47FD1A3C5FBC2454DC58B7A9F754_inline (ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CfilterOutPrivateMatchesU3Ek__BackingField_8(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ListMatchRequest_set_eloScore_m80EB463CA251672D86AA00C6FEF024129E1D4C90_inline (ListMatchRequest_t484AD37D9577C320D444A1E292EA551E3DF33A30 * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set_U3CeloScoreU3Ek__BackingField_9(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SetMatchAttributesRequest_set_networkId_m9B646C9BA765B12830FCBA07AB25701A7335FE92_inline (SetMatchAttributesRequest_t22EC5198C69E086FC5BC8DB4E249E4B90FAFF2E2 * __this, uint64_t ___value0, const RuntimeMethod* method)
{
{
uint64_t L_0 = ___value0;
__this->set_U3CnetworkIdU3Ek__BackingField_5(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SetMatchAttributesRequest_set_isListed_m374284C0BCFAA377F665F9FB8E7871126D2ED7F7_inline (SetMatchAttributesRequest_t22EC5198C69E086FC5BC8DB4E249E4B90FAFF2E2 * __this, bool ___value0, const RuntimeMethod* method)
{
{
bool L_0 = ___value0;
__this->set_U3CisListedU3Ek__BackingField_6(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint64_t SetMatchAttributesRequest_get_networkId_m7FCEC07EFF3DB82CFDF40B7D6AEF6C11029BFCE0_inline (SetMatchAttributesRequest_t22EC5198C69E086FC5BC8DB4E249E4B90FAFF2E2 * __this, const RuntimeMethod* method)
{
{
uint64_t L_0 = __this->get_U3CnetworkIdU3Ek__BackingField_5();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool SetMatchAttributesRequest_get_isListed_m4AD05BE1E93CD550D5EFED8AFDC8C3A14F539999_inline (SetMatchAttributesRequest_t22EC5198C69E086FC5BC8DB4E249E4B90FAFF2E2 * __this, const RuntimeMethod* method)
{
{
bool L_0 = __this->get_U3CisListedU3Ek__BackingField_6();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t SocketAddress_get_Size_m6383C5C4F9200464ACB6D583020F81019602CFA4_inline (SocketAddress_tE8FA33C91254662406767AF97518C235382742D3 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = __this->get_m_Size_0();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint64_t Request_get_sourceId_m51B4838441451B97A9CD39654905F8497777C230_inline (Request_tA1BC1936C153408449C4C207CA12D4358A7477FD * __this, const RuntimeMethod* method)
{
{
uint64_t L_0 = __this->get_U3CsourceIdU3Ek__BackingField_1();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* Request_get_projectId_m6F11899984870CE38D74843B1F3B1705B9E86ED0_inline (Request_tA1BC1936C153408449C4C207CA12D4358A7477FD * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_U3CprojectIdU3Ek__BackingField_2();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* Request_get_accessTokenString_m6D1262B00D9BD603880CBB45852A695711DA7042_inline (Request_tA1BC1936C153408449C4C207CA12D4358A7477FD * __this, const RuntimeMethod* method)
{
{
String_t* L_0 = __this->get_U3CaccessTokenStringU3Ek__BackingField_3();
return L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MatchInfoDirectConnectSnapshot_set_nodeId_m6CEC68A411E5CF0BA8F117E2320183B8F2A7A427_inline (MatchInfoDirectConnectSnapshot_t82741E9963C92FE12F5CB64A40851676E4677F6C * __this, uint16_t ___value0, const RuntimeMethod* method)
{
{
uint16_t L_0 = ___value0;
__this->set_U3CnodeIdU3Ek__BackingField_0(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MatchInfoDirectConnectSnapshot_set_publicAddress_mD2BE5562A61C27A943E18910A89C885CDB7A854D_inline (MatchInfoDirectConnectSnapshot_t82741E9963C92FE12F5CB64A40851676E4677F6C * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CpublicAddressU3Ek__BackingField_1(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MatchInfoDirectConnectSnapshot_set_privateAddress_mB53B9DFB3F4E624E65A1A0D63B789F25948A3CDA_inline (MatchInfoDirectConnectSnapshot_t82741E9963C92FE12F5CB64A40851676E4677F6C * __this, String_t* ___value0, const RuntimeMethod* method)
{
{
String_t* L_0 = ___value0;
__this->set_U3CprivateAddressU3Ek__BackingField_2(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MatchInfoDirectConnectSnapshot_set_hostPriority_m92F2A1B50E815DB131E65362A37E4BBEF0098CF9_inline (MatchInfoDirectConnectSnapshot_t82741E9963C92FE12F5CB64A40851676E4677F6C * __this, int32_t ___value0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___value0;
__this->set_U3ChostPriorityU3Ek__BackingField_3(L_0);
return;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m9C4EBBD2108B51885E750F927D7936290C8E20EE_gshared_inline (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = (RuntimeObject *)__this->get_current_3();
return (RuntimeObject *)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method)
{
{
int32_t L_0 = (int32_t)__this->get__size_2();
return (int32_t)L_0;
}
}
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * List_1_get_Item_mF00B574E58FB078BB753B05A3B86DD0A7A266B63_gshared_inline (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, int32_t ___index0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___index0;
int32_t L_1 = (int32_t)__this->get__size_2();
if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
{
goto IL_000e;
}
}
{
ThrowHelper_ThrowArgumentOutOfRangeException_m4841366ABC2B2AFA37C10900551D7E07522C0929(/*hidden argument*/NULL);
}
IL_000e:
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__items_1();
int32_t L_3 = ___index0;
RuntimeObject * L_4;
L_4 = IL2CPP_ARRAY_UNSAFE_LOAD((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_2, (int32_t)L_3);
return (RuntimeObject *)L_4;
}
}
| [
"Wygahard@hotmail.fr"
] | Wygahard@hotmail.fr |
57a7bbf79d446aeb77e8fb048e5d03918280758a | 8e1faa9fca023ba67f91903178c7ad9b371b8b33 | /Game/Game/FPSCamera.cpp | 69a24877ebf2f8945ac46b63755bb7671ab58334 | [] | no_license | 3Hoo/G_gameDev_Cpp | dd36130d74f97e3d9936fbb121c7f56b38091e70 | e16acc22e0a9d156e6d0a656615ea22c74b463c0 | refs/heads/master | 2023-09-02T07:34:01.411043 | 2021-11-18T06:31:22 | 2021-11-18T06:31:22 | 429,319,806 | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 1,410 | cpp | #include "FPSCamera.h"
#include "Actor.h"
FPSCamera::FPSCamera(Actor* owner)
: CameraComponent(owner)
, mPitchSpeed(0.0f)
, mYawSpeed(0.0f)
, mMaxPitch(Math::Pi / 3.0f)
, mPitch(0.0f)
{
}
void FPSCamera::Update(float deltaTime)
{
CameraComponent::Update(deltaTime);
// 카메라의 위치는 소유자의 위치
Vector3 cameraPos = mOwner->GetPosition();
// pitch는 소유자의 오른축을 중심으로 한 쿼터니언 회전으로 표현한다
// pitch의 축은 소유자의 yaw(전방)에 의존(전방벡터가 바뀌면, 우측벡터도 바뀐다)하므로 단순한 y축은 아니다
// pitch 속도로 pitch를 갱신
mPitch += mPitchSpeed * deltaTime;
// pitch 값을 [-max, max] 으로 제한
mPitch = Math::Clamp(mPitch, -mMaxPitch, mMaxPitch);
// 소유자의 오른 축 벡터에 대한 pitch 회전을 나타내는 쿼터니언으로 표현
Quaternion q(mOwner->GetRight(), mPitch);
// pitch 쿼터니언으로 소유자의 전방 벡터를 회전
Vector3 viewForward = Vector3::Transform(mOwner->GetForward(), q);
// 전방 시점 100 단위 앞에 타깃 위치 설정
Vector3 target = cameraPos + viewForward * 100.0f;
// pitch 쿼터니언으로 상향축도 회전시킨다
Vector3 up = Vector3::Transform(Vector3::UnitZ, q);
// look at 행렬 생성, 뷰 행렬로 설정
Matrix4 view = Matrix4::CreateLookAt(cameraPos, target, up);
SetviewMatrix(view);
} | [
"3ho.ent@gmail.com"
] | 3ho.ent@gmail.com |
699329129906ddb4b47696e8426ce82a0befbcca | 08b8cf38e1936e8cec27f84af0d3727321cec9c4 | /data/crawl/git/hunk_986.cpp | c7fd60f23da969c7b7bbcaf04fd411b116dffed0 | [] | no_license | ccdxc/logSurvey | eaf28e9c2d6307140b17986d5c05106d1fd8e943 | 6b80226e1667c1e0760ab39160893ee19b0e9fb1 | refs/heads/master | 2022-01-07T21:31:55.446839 | 2018-04-21T14:12:43 | 2018-04-21T14:12:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 373 | cpp | ALLOC_GROW(opts->xopts, opts->xopts_nr + 1, opts->xopts_alloc);
opts->xopts[opts->xopts_nr++] = xstrdup(value);
} else
- return error(_("Invalid key: %s"), key);
+ return error(_("invalid key: %s"), key);
if (!error_flag)
- return error(_("Invalid value for %s: %s"), key, value);
+ return error(_("invalid value for %s: %s"), key, value);
return 0;
}
| [
"993273596@qq.com"
] | 993273596@qq.com |
2cc7e606e7f3f1ed2af1df3b77f52fc45d672a4c | efdc794bc1152d9e702ea03e32142cf4ff1031cd | /third_party/pdfium/core/fxcrt/cfx_observable.h | 8dc0907cae6f0323cb0cfe84f245f1f60e3e5630 | [
"BSD-2-Clause",
"BSD-3-Clause"
] | permissive | taggun/node-pdfium | c3c7c85fd4a280993aa0ce99dcb2f41ce8d592dc | 1990bc55e39f700434841e35078cecaa347b1e36 | refs/heads/master | 2020-12-02T12:44:31.341993 | 2020-02-26T20:52:34 | 2020-02-26T20:52:34 | 96,583,707 | 3 | 3 | BSD-2-Clause | 2020-02-26T20:48:59 | 2017-07-07T23:34:05 | C++ | UTF-8 | C++ | false | false | 2,476 | h | // Copyright 2016 PDFium 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 CORE_FXCRT_CFX_OBSERVABLE_H_
#define CORE_FXCRT_CFX_OBSERVABLE_H_
#include <set>
#include "core/fxcrt/fx_system.h"
#include "third_party/base/stl_util.h"
template <class T>
class CFX_Observable {
public:
class ObservedPtr {
public:
ObservedPtr() : m_pObservable(nullptr) {}
explicit ObservedPtr(T* pObservable) : m_pObservable(pObservable) {
if (m_pObservable)
m_pObservable->AddObservedPtr(this);
}
ObservedPtr(const ObservedPtr& that) : ObservedPtr(that.Get()) {}
~ObservedPtr() {
if (m_pObservable)
m_pObservable->RemoveObservedPtr(this);
}
void Reset(T* pObservable = nullptr) {
if (m_pObservable)
m_pObservable->RemoveObservedPtr(this);
m_pObservable = pObservable;
if (m_pObservable)
m_pObservable->AddObservedPtr(this);
}
void OnDestroy() {
ASSERT(m_pObservable);
m_pObservable = nullptr;
}
ObservedPtr& operator=(const ObservedPtr& that) {
Reset(that.Get());
return *this;
}
bool operator==(const ObservedPtr& that) const {
return m_pObservable == that.m_pObservable;
}
bool operator!=(const ObservedPtr& that) const { return !(*this == that); }
explicit operator bool() const { return !!m_pObservable; }
T* Get() const { return m_pObservable; }
T& operator*() const { return *m_pObservable; }
T* operator->() const { return m_pObservable; }
private:
T* m_pObservable;
};
CFX_Observable() {}
CFX_Observable(const CFX_Observable& that) = delete;
~CFX_Observable() { NotifyObservedPtrs(); }
void AddObservedPtr(ObservedPtr* pObservedPtr) {
ASSERT(!pdfium::ContainsKey(m_ObservedPtrs, pObservedPtr));
m_ObservedPtrs.insert(pObservedPtr);
}
void RemoveObservedPtr(ObservedPtr* pObservedPtr) {
ASSERT(pdfium::ContainsKey(m_ObservedPtrs, pObservedPtr));
m_ObservedPtrs.erase(pObservedPtr);
}
void NotifyObservedPtrs() {
for (auto* pObservedPtr : m_ObservedPtrs)
pObservedPtr->OnDestroy();
m_ObservedPtrs.clear();
}
CFX_Observable& operator=(const CFX_Observable& that) = delete;
protected:
size_t ActiveObservedPtrsForTesting() const { return m_ObservedPtrs.size(); }
private:
std::set<ObservedPtr*> m_ObservedPtrs;
};
#endif // CORE_FXCRT_CFX_OBSERVABLE_H_
| [
"michael.arthur@ikegps.com"
] | michael.arthur@ikegps.com |
389efeb6550ae743745825d013057081dee38d02 | 1a5c33ac36be172b82f11d0d14ba76dfd3686629 | /SDcard_JSON_config/src/main.cpp | bb4b60ee4dbfe0cb30ad8c1670d6f40e9bd41dc0 | [] | no_license | raphaelthurnherr/cmu_neufo_slicer_hm440e_sw | d19ea2bf76da7bd35b9372f90054a01904fe5ae3 | 8a8e35adc9495cf4f119d9d5a919eff5ecc2fe9a | refs/heads/master | 2022-12-15T16:10:00.803413 | 2020-09-02T06:43:26 | 2020-09-02T06:43:26 | 278,325,107 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 54,918 | cpp | /**
* @file main.cpp
* @author Brayan Garcia (brayan.grcmc@eduge.ch)
* @brief Open a config file and parse the JSON data to a known structure
* Required Arduino libraries:
* - SDFAT (1.1.4) for SD Card IO
* - ArduinoJson (6.15.2) for JSON String parser
*
* @version 0.1
* @date 2020-07-20
*
* @copyright Copyright (c) 2020
*
*/
#include <Arduino.h>
#include <delay.h>
#include "cmu_ws_2004_01_V1_board.h"
#include <Wire.h>
#include "LiquidCrystal_I2C.h"
#include "jsonConfigSDcard.h"
#include <SdFat.h>
#include "mcp230xx.h"
// Define the default motor speed and steps for run from BNC trigger
#define DEFAULT_MOTOR_SPEED 80
#define DEFAULT_MOTOR_STEPS 200
#define DEFAULT_MOTOR_SPEED_REVERSE -80
//config
#define NORMAL_MODE 0
#define TRIMING_MODE 1
#define ALARM_OFF 0
#define ALARM_ON 1
#define NB_OF_USER 1
//DEFAULT
#define DEFAULT_THICKNESS_NORMAL_MODE 100
#define DEFAULT_THICKNESS_TRIM_MODE 150
#define DEFAULT_THRESHOLD_HIGH 800
#define DEFAULT_THRESHOLD_LOW 150
//Pinout
#define ADC_POT A2
#define ADC_NTC A3
#define Buzzer A6
#define MCP23017_INTB 0
#define MCP23017_INTA 1
#define MCP23017_RESET 2
#define KNOB_CHANNEL_B 3
#define KNOB_CHANNEL_A 4
#define KNOB_SWITCH_A 5
#define PCA9629A_INT 6
#define DEBUG1 7
#define DEBUG2 8
// number of maximum users settings allocated
#define MAX_USER_SETTINGS 6
//Rotary knob
#define CW -1
#define CCW 1
#define NO_ROTATION 0
#define LONG_PUSH -1
#define NO_PUSH 0
#define PUSH 1
#define LONG_PUSH_TIME 500
#define BOUNCE_ELIM_TIME 10
//POT
#define AVERAGE_SIZE 5
//Alarm
#define Alarm_OFF 0
#define Alarm_ON 1
//mode
#define MODE_NORMAL 0
#define MODE_TRIMMING -1
//Menu index
#define MENU_MODE 0
#define MENU_THICKNESS 1
#define MENU_THRESHOLD 2
#define MENU_ALARM 3
#define EXIT 1
//MCP23017
#define FALLING_EDGE 1
#define RISING_EDGE 0
// LCD
#define MAX_ROW_INDEX_LCD 3
#define FORCE 1
//SLICER
#define THICKNESS_MIN 1
#define THICKNESS_MAX 500
#define MODE_AUTO 1
#define MODE_MAN 0
//mcp23017
#define BTN_GRBTGL 0
#define BTN_RETREN 1
#define BTN_ROLL 2
#define BTN_AUTMAN 3
#define BTN_RES 4
#define SW_CALIBRATION 5
#define JOY_TRIM 8
#define JOY_GRBUP 9
#define JOY_STP 10
#define JOY_GRBDWN 11
#define LED_AUTO 12
#define LED_RETEN 13
#define LED_RETRA 14
#define LED_MAN 15
//alim
#define VCC 3.3
// Boards declaration
board_2004_01_V01 motor_2004_board;
// Display declaration
LiquidCrystal_I2C lcd(PCF8574_ADDR_A21_A11_A01 , 4, 5, 6, 7, 9, 10, 11, 12, POSITIVE); // set the LCD address to 0x27 for a 16 chars and 2 line display
// Create new variable for user config storage
SETTINGS userConfig[MAX_USER_SETTINGS];
SLICERCONFIG machineConfig;
device_mcp230xx mcp23017config= {"",0x24,0x0FFF,0X0000,0x0000,0x0FFF};
struct HOME
{
unsigned int counterValue;
unsigned int trimValue;
unsigned int feedValue;
};
struct MENU
{
HOME home;
//IndexMenu indexArrow;
};
typedef struct t_NTCsensor{
struct s_ntc_setting{
int RThbeta=3435;
int RTh0=10000;
int Th0=25;
int RRef=9970;
}settings;
struct s_ntc_data{
float RThValue=-1;
float Temp=-1;
}measure;
}NTCsensor;
/*=======prototype function=====================*/
void MenuAlarmState();
void MenuAlarmSetting();
void MenuAlarm();
void MenuThresholdToCut();
void MenuThreshold();
void MenuThresholdToRewind();
void MenuThreshold();
void MenuThickness( );
void MenuMode();
void MenuBacklash();
void MenuSelectConfig();
void MenuUserConfig();
void MenuSlicerConfig();
void MenuThicknessNormal();
void MenuThicknessTrimming();
void MenuMotorSpeed();
void MenuSelectUser();
void ViewMenuUserConfig();
void ScreenThreshold();
void UserConfigScreenOne();
void UserConfigScreenTwo();
void backlashCwConfig();
void backlashCcwConfig();
void ArrowIndex(bool force);
void Home();
void knobRotationDetection();
void knobSwitchDetection();
void RemoveZero( int value, unsigned char colonne, unsigned char ligne);
void ThresholdDetection(SLICERCONFIG *machineConfig, SETTINGS *userSetting, unsigned int valPot);
unsigned int AverageAdc (unsigned int valAdc);
void SaveThreshold();
void ShowPot(unsigned char columns, unsigned char raw);
void PortInit();
void lcdClear();
void HomeScreen();
void TestSD();
void MotorHomingSpeed();
void MotorMovingSpeed();
void ModeAuto();
void ModeManu();
float calcNTCTemp(int UR10K, NTCsensor * NTC);
void GestionMesureTemp(int refresh);
//variable declaration
String myString;
bool lastState;
int knobRotation;
int gknobPsuh;
unsigned int gvalAdc;
unsigned int gvalAdcNtc;
int currentUser;
int arrowIndexRow=1;
int arrowOldPosition=MAX_ROW_INDEX_LCD;
bool gflagUpperMenu;
bool gflagLowerMenu;
int pas=10;
int oldRotation;
int gerr;
int gbtnBackPressed;
int gbtnAutoManPressed;
int gbtnjoygrbupPressed;
int gbtnjoygrdwnPressed;
int gSwCalibPressed;
int gbtnjoyStpPressed;
int gbtnjoyTrimPressed;
int gbtnResetPressed;
bool genRetractation=true;
int modeAutoMan=MODE_AUTO;
int gtemperatur;
int state;
byte retarrow[8] = { 0x10,0x10,0x14,0x16,0x1f,0x06,0x04};
HOME home = {0,0,0};
MENU menu;
NTCsensor ntcSensor;
// Arduino setup
void setup() {
// init. port Arduino
PortInit();
//Interupt setting
attachInterrupt(digitalPinToInterrupt(KNOB_CHANNEL_A),knobRotationDetection, FALLING);
attachInterrupt(digitalPinToInterrupt(KNOB_SWITCH_A),knobSwitchDetection, FALLING);
//init. LCD
lcd.begin(20,4);
lcd.noDisplay();
lcd.display();
//Cursor creation
lcd.createChar(0, retarrow);
//init PCA9629A and Driver L298
motor_2004_board.begin();
//Get the General Slicer Config object
getGeneralSlicerConfig("config.cfg", &machineConfig);
//Reset MCP23017
digitalWrite(2,LOW);
digitalWrite(2,HIGH);
//MCP23017 config
gerr+=mcp23017_init(&mcp23017config);
gerr+=mcp23017_setPort(&mcp23017config,0xFF);
//display fixed text
lcd.setCursor(0,0);
lcd.print(" please wait ");
lcd.setCursor(0,1);
lcd.print(" or ");
lcd.setCursor(0,2);
lcd.print(" press knob button ");
//waits for the user to press the knob button until the limit sensor is active
do
{
gSwCalibPressed = mcp230xx_getChannel(&mcp23017config,SW_CALIBRATION);
motor_2004_board.stepperRotation(MOTOR_A,-(machineConfig.HomingSpeed),50);
}while(gSwCalibPressed && gknobPsuh == NO_PUSH );
gknobPsuh = NO_PUSH;
lcdClear();
//select User Menu
MenuSelectUser();
//fixed text display home screen
HomeScreen();
}
void loop() {
//allows you to enter the configuration menus
if (gknobPsuh == LONG_PUSH)
{
gknobPsuh = NO_PUSH;
//select config Menu
MenuSelectConfig();
//fixed text display home screen
HomeScreen();
//Saves the configuration to the MicroSD card
saveUserAndGeneralSettings("config.cfg", &machineConfig, userConfig, MAX_USER_SETTINGS);
}
else
{
//changes the values in the home screen
Home();
// read automatic/manual button
gbtnAutoManPressed= mcp230xx_getChannel(&mcp23017config,BTN_AUTMAN);
//choose mode
if(!gbtnAutoManPressed && lastState != gbtnAutoManPressed)
modeAutoMan = !modeAutoMan;
lastState=gbtnAutoManPressed;
if(modeAutoMan == MODE_AUTO)
{
ModeAuto();
}
else
{
ModeManu();
}
//read continous up button
gbtnjoygrbupPressed = mcp230xx_getChannel(&mcp23017config,JOY_GRBUP);
if(gbtnjoygrbupPressed )
{
//continous up
do
{
//wait motor end move
if(motor_2004_board.getStepperState(MOTOR_A)==0)
motor_2004_board.stepperRotation(MOTOR_A,machineConfig.HomingSpeed,50);
gbtnjoygrbupPressed = mcp230xx_getChannel(&mcp23017config,JOY_GRBUP);
state = motor_2004_board.getStepperState(MOTOR_A);
}while (gbtnjoygrbupPressed );
}
//read continous down button
gbtnjoygrdwnPressed = mcp230xx_getChannel(&mcp23017config,JOY_GRBDWN);
//read switch calibration
gSwCalibPressed = mcp230xx_getChannel(&mcp23017config,SW_CALIBRATION);
if(gbtnjoygrdwnPressed && gSwCalibPressed)
{
//continous down
do
{
gbtnjoygrdwnPressed = mcp230xx_getChannel(&mcp23017config,JOY_GRBDWN);
gSwCalibPressed = mcp230xx_getChannel(&mcp23017config,SW_CALIBRATION);
//wait motor move
if(motor_2004_board.getStepperState(MOTOR_A)==0)
motor_2004_board.stepperRotation(MOTOR_A,-(machineConfig.HomingSpeed),50);
}while(gbtnjoygrdwnPressed && gSwCalibPressed);
}
//read step button
gbtnjoyStpPressed = mcp230xx_getChannel(&mcp23017config,JOY_STP);
//change mode
if(gbtnjoyStpPressed)
userConfig[currentUser].mode = MODE_NORMAL;
//read trim btton
gbtnjoyTrimPressed = mcp230xx_getChannel(&mcp23017config,JOY_TRIM);
//change mode
if(gbtnjoyTrimPressed)
userConfig[currentUser].mode = MODE_TRIMMING;
//temperature measurement management
GestionMesureTemp(1000);
// reset counter value
gbtnResetPressed = mcp230xx_getChannel(&mcp23017config,BTN_RES);
if(!gbtnResetPressed)
{
home.counterValue = 0;
}
//move motor whit knob
if(knobRotation == CW)
motor_2004_board.stepperRotation(MOTOR_A,machineConfig.MovingSpeed,userConfig[currentUser].thicknessNormalMode);
if(knobRotation == CCW && gSwCalibPressed)
{
if(motor_2004_board.getStepperState(MOTOR_A)==0)
motor_2004_board.stepperRotation(MOTOR_A,-(machineConfig.MovingSpeed),userConfig[currentUser].thicknessNormalMode);
}
if(knobRotation != NO_ROTATION)
knobRotation = NO_ROTATION;
}
}
/**
* @brief temperature measurement
* @param refresh interval between measurements [ms]
*/
void GestionMesureTemp(int refresh)
{
unsigned int timer;
static unsigned int oldTimer=0;
static unsigned int oldTimerBuzzer=0;
static unsigned int counterBip=0;
static unsigned char flagTresholdTemp=0;
timer=millis();
//measures the temperature
if((timer-oldTimer)>=refresh)
{
oldTimer=timer;
gvalAdcNtc = analogRead(ADC_NTC);
gvalAdcNtc = ((3300* gvalAdcNtc)/1023);
ntcSensor.measure.Temp = calcNTCTemp(gvalAdcNtc, &ntcSensor);
ntcSensor.measure.Temp *=100;
ntcSensor.measure.Temp = (int)ntcSensor.measure.Temp /10;
ntcSensor.measure.Temp /=10;
}
//temperature threshold reached
if(flagTresholdTemp)
{
//activates the buzzer
if(userConfig[currentUser].tempAlarmDegree<0)
{
if(ntcSensor.measure.Temp>=userConfig[currentUser].tempAlarmDegree)
{
//switches on the buzzer one second three times every second
if(counterBip<3)
{
if((timer-oldTimerBuzzer)>=1000)
{
oldTimerBuzzer=timer;
digitalWrite(Buzzer,HIGH);
}
else
digitalWrite(Buzzer,LOW);
}
counterBip++;
if(counterBip>=3)
counterBip=4;
}
else
{
counterBip=0;
flagTresholdTemp=0;
}
}
if(userConfig[currentUser].tempAlarmDegree>0)
{
//activates the buzzer
if(ntcSensor.measure.Temp<=userConfig[currentUser].tempAlarmDegree)
{
//switches on the buzzer one second three times every second
if(counterBip<3)
{
if((timer-oldTimerBuzzer)>=1000)
{
oldTimerBuzzer=timer;
digitalWrite(Buzzer,HIGH);
}
else
digitalWrite(Buzzer,LOW);
}
counterBip++;
if(counterBip>=3)
counterBip=4;
}
else
{
counterBip=0;
flagTresholdTemp=0;
}
}
}
else
{
if(userConfig[currentUser].tempAlarmDegree<0)
{
//temperature threshold reached
if(ntcSensor.measure.Temp<=userConfig[currentUser].tempAlarmDegree)
flagTresholdTemp=1;
}
if(userConfig[currentUser].tempAlarmDegree>0)
{
//temperature threshold reached
if(ntcSensor.measure.Temp>=userConfig[currentUser].tempAlarmDegree)
flagTresholdTemp=1;
}
}
}
/**
* @brief Mode manual
* move up the specimen when the button is pressed
*/
void ModeManu()
{
unsigned int thickness= userConfig[currentUser].thicknessNormalMode;
static int odlState = 1;
int btnPressed;
int speed = machineConfig.MovingSpeed;
//activates leds
mcp230xx_setChannel(&mcp23017config,LED_AUTO,1);
mcp230xx_setChannel(&mcp23017config,LED_MAN,0);
//defined the cutting thickness
btnPressed=mcp230xx_getChannel(&mcp23017config,BTN_GRBTGL);
if(userConfig[currentUser].mode == NORMAL_MODE)
thickness = userConfig[currentUser].thicknessNormalMode;
else
thickness = userConfig[currentUser].thicknessTrimmingMode;
//move up specimen
if(!btnPressed && odlState!=btnPressed)
{
if(motor_2004_board.getStepperState(MOTOR_A)==0)
motor_2004_board.stepperRotation(MOTOR_A, speed, thickness);
home.counterValue++;
}
odlState=btnPressed;
}
/**
* @brief Mode automatic
* the slicer goes down after cutting the specimen
*/
void ModeAuto()
{
int btnPressed;
static int odlState = 1;
//activates the automatic led
mcp230xx_setChannel(&mcp23017config,LED_AUTO,0);
mcp230xx_setChannel(&mcp23017config,LED_MAN,1);
//active or not led retraction function
if(genRetractation)
mcp230xx_setChannel(&mcp23017config,LED_RETEN,0);
//activate or not the retraction function
btnPressed= mcp230xx_getChannel(&mcp23017config,BTN_RETREN);
if(!btnPressed && odlState!=btnPressed)
{
genRetractation = !genRetractation;
}
odlState=btnPressed;
//determines the blade position
gvalAdc = analogRead(ADC_POT);
//detects thresholds
ThresholdDetection(&machineConfig, &userConfig[currentUser], gvalAdc);
}
/**
* @brief Raises or lowers the platform depending on the position of the blade
* @param machineConfig
* @param userSetting
* @param valPot
*/
void ThresholdDetection(SLICERCONFIG *machineConfig, SETTINGS *userSetting, unsigned int valPot)
{
static unsigned char step=4;
static int speed = machineConfig->MovingSpeed;
static unsigned int thresholdToCut = userSetting->thresholdToCut;
static unsigned int thresholdToRewind = userSetting->thresholdToRewind;
unsigned int backlash = machineConfig->BacklashCW;
unsigned int thickness;
if(userSetting->mode == NORMAL_MODE)
thickness = userSetting->thicknessNormalMode;
else
thickness = userSetting->thicknessTrimmingMode;
if(thresholdToCut != userSetting->thresholdToCut)
{
thresholdToCut = userSetting->thresholdToCut;
step=4;
}
if(thresholdToRewind != userSetting->thresholdToRewind)
{
thresholdToRewind = userSetting->thresholdToRewind;
step=4;
}
switch (step)
{
/*
case 0:// première passe
if(valPot <= thresholdToCut)
step=1;
break;*/
case 1://Attendre d'arriver au trheshold to rewind
if(valPot >= thresholdToRewind)
{
if(!genRetractation)
step=3;
else
step=2;
home.counterValue++;
}
break;
case 2://Descendre plateau
gSwCalibPressed = mcp230xx_getChannel(&mcp23017config,SW_CALIBRATION);
if(gSwCalibPressed)
{
if(speed>0)
{
backlash = machineConfig->BacklashCCW;
speed = (-1)*speed;
}
else
{
backlash=0;
}
motor_2004_board.stepperRotation(MOTOR_A, speed, thickness+backlash);
}
step=3;
break;
case 3://Allumer led retra
if(motor_2004_board.getStepperState(MOTOR_A)==0)//motor stopped
{
//mcp230xx_setChannel(&mcp23017config,LED_RETRA,0);
step=4;
}
break;
case 4://Attendre d'atteindre le threshold to cut
mcp230xx_setChannel(&mcp23017config,LED_RETRA,0);
if(valPot <= thresholdToCut)
{
step=5;
}
break;
case 5://éteindre led
mcp230xx_setChannel(&mcp23017config,LED_RETRA,1);
step=6;
break;
case 6:// Monter plateau
if(speed<0)
{
speed = (-1)*speed;
backlash = machineConfig->BacklashCW;
}
else
{
backlash=0;
}
if(!genRetractation)
{
speed=machineConfig->MovingSpeed;
home.counterValue++;
}
else
{
thickness+=thickness;
}
motor_2004_board.stepperRotation(MOTOR_A, speed, thickness+backlash);
step=7;
break;
case 7:
if(motor_2004_board.getStepperState(MOTOR_A)==0)//motor stopped
{
step=1;
}
break;
default:
break;
}
}
/**
* @brief Setup selection menu
* allows us to choose the configuration we want to modify between slicer, current user and change user
*/
void MenuSelectConfig()
{
static bool firstLoop=false;
do
{
if(!firstLoop)
{
firstLoop = true;
lcdClear();
lcd.setCursor(1,0);
lcd.print("---Select setting--");
lcd.setCursor(1,1);
lcd.print("User select");
lcd.setCursor(1,2);
lcd.print("Current user set.");
lcd.setCursor(1,3);
lcd.print("Slicer setting");
arrowIndexRow =2;
ArrowIndex(FORCE);
}
ArrowIndex(0);
if(gknobPsuh == PUSH)
{
firstLoop=false;
gknobPsuh = NO_PUSH;
switch (arrowIndexRow)
{
case 1:
MenuSelectUser();
break;
case 2:
MenuUserConfig();
break;
case 3:
MenuSlicerConfig();
break;
default :
break;
}
}
gbtnBackPressed = mcp230xx_getChannel(&mcp23017config,BTN_ROLL);
}while(gknobPsuh != LONG_PUSH && gbtnBackPressed == 1);
do
gbtnBackPressed = mcp230xx_getChannel(&mcp23017config,BTN_ROLL);
while (!gbtnBackPressed);
gknobPsuh = NO_PUSH;
firstLoop=false;
}
/**
* @brief Slicer setting configuration menu
*
*/
void MenuSlicerConfig()
{
static bool firstLoop=false;
do
{
if(!firstLoop)
{
firstLoop = true;
lcdClear();
lcd.setCursor(1,0);
lcd.print("---Slicer setting--");
lcd.setCursor(1,1);
lcd.print("Blacklash correct.");
lcd.setCursor(1,2);
lcd.print("Motor Speed");
lcd.setCursor(1,3);
lcd.print("NTC");
arrowIndexRow =1;
ArrowIndex(FORCE);
}
ArrowIndex(0);
if(gknobPsuh == PUSH)
{
firstLoop=false;
gknobPsuh = NO_PUSH;
switch (arrowIndexRow)
{
case 1:
MenuBacklash();
break;
case 2:
MenuMotorSpeed();
break;
case 3:
MenuSlicerConfig();
break;
default :
break;
}
}
gbtnBackPressed = mcp230xx_getChannel(&mcp23017config,BTN_ROLL);
}while(gknobPsuh != LONG_PUSH && gbtnBackPressed == 1);
do
gbtnBackPressed = mcp230xx_getChannel(&mcp23017config,BTN_ROLL);
while (!gbtnBackPressed);
gknobPsuh = NO_PUSH;
firstLoop=false;
}
/**
* @brief motor backlash correction selection menu
*
*/
void MenuBacklash()
{
static bool firstLoop=false;
do
{
if(!firstLoop)
{
firstLoop = true;
lcdClear();
lcd.setCursor(1,0);
lcd.print("---Backlash set.--");
lcd.setCursor(1,1);
lcd.print("Blacklash CW");
lcd.setCursor(1,2);
lcd.print("Blacklash CCW");
arrowIndexRow =1;
ArrowIndex(FORCE);
}
ArrowIndex(0);
if(gknobPsuh == PUSH)
{
firstLoop=false;
gknobPsuh = NO_PUSH;
switch (arrowIndexRow)
{
case 1:
backlashCwConfig();
break;
case 2:
backlashCcwConfig();
break;
case 3:
break;
default :
break;
}
}
gbtnBackPressed = mcp230xx_getChannel(&mcp23017config,BTN_ROLL);
}while(gknobPsuh != LONG_PUSH&&gbtnBackPressed == 1 );
do
gbtnBackPressed = mcp230xx_getChannel(&mcp23017config,BTN_ROLL);
while (!gbtnBackPressed);
gknobPsuh = NO_PUSH;
firstLoop=false;
}
/**
* @brief motor backlash correction in counter wise
*
*/
void backlashCwConfig()
{
int backlashCw=machineConfig.BacklashCW;
lcdClear();
lcd.setCursor(0,0);
lcd.print("--Backlash CW set.-");
lcd.setCursor(1,2);
lcd.print("Backlash = ");
lcd.setCursor(12,2);
lcd.print(machineConfig.BacklashCW);
//allows you to change mode
do{
if(knobRotation != NO_ROTATION)
{
if(knobRotation == CW)
backlashCw++;
else if (knobRotation == CCW)
backlashCw--;
if(backlashCw<0)
backlashCw=0;
if(knobRotation != NO_ROTATION)
{
knobRotation=NO_ROTATION;
lcd.setCursor(12,2);
lcd.print(backlashCw);
RemoveZero(backlashCw,12,2);
}
}
gbtnBackPressed = mcp230xx_getChannel(&mcp23017config,BTN_ROLL);
}while (gknobPsuh!=PUSH && gbtnBackPressed == 1 );
do
gbtnBackPressed = mcp230xx_getChannel(&mcp23017config,BTN_ROLL);
while (!gbtnBackPressed);
gknobPsuh = NO_PUSH;
machineConfig.BacklashCW = backlashCw;
}
/**
* @brief motor backlash correction in contrary counter wise
*
*/
void backlashCcwConfig()
{
int backlashCcw=machineConfig.BacklashCCW;
lcdClear();
lcd.setCursor(0,0);
lcd.print("-Backlash CCW set.-");
lcd.setCursor(1,2);
lcd.print("Backlash = ");
lcd.setCursor(12,2);
lcd.print(backlashCcw);
//allows you to change backlash ccw
do{
if(knobRotation != NO_ROTATION)
{
if(knobRotation == CW)
backlashCcw++;
else if (knobRotation == CCW)
backlashCcw--;
if(backlashCcw<0)
backlashCcw=0;
if(knobRotation != NO_ROTATION)
{
knobRotation=NO_ROTATION;
lcd.setCursor(12,2);
lcd.print(backlashCcw);
RemoveZero(backlashCcw,12,2);
}
}
gbtnBackPressed = mcp230xx_getChannel(&mcp23017config,BTN_ROLL);
}while (gknobPsuh!=PUSH && gbtnBackPressed == 1);
do
gbtnBackPressed = mcp230xx_getChannel(&mcp23017config,BTN_ROLL);
while (!gbtnBackPressed);
gknobPsuh = NO_PUSH;
machineConfig.BacklashCCW = backlashCcw;
}
/**
* @brief motor parameter selection menu
*
*/
void MenuMotorSpeed()
{
static bool firstLoop=false;
do
{
if(!firstLoop)
{
firstLoop = true;
lcdClear();
lcd.setCursor(1,0);
lcd.print("---Motor Speed--");
lcd.setCursor(1,1);
lcd.print("Homing Speed");
lcd.setCursor(1,2);
lcd.print("Moving Speed");
arrowIndexRow =1;
ArrowIndex(FORCE);
}
ArrowIndex(0);
if(gknobPsuh == PUSH)
{
firstLoop=false;
gknobPsuh = NO_PUSH;
switch (arrowIndexRow)
{
case 1:
MotorHomingSpeed();
break;
case 2:
MotorMovingSpeed();
break;
case 3:
break;
default :
break;
}
}
gbtnBackPressed = mcp230xx_getChannel(&mcp23017config,BTN_ROLL);
}while(gknobPsuh != LONG_PUSH && gbtnBackPressed == 1);
do
gbtnBackPressed = mcp230xx_getChannel(&mcp23017config,BTN_ROLL);
while (!gbtnBackPressed);
gknobPsuh = NO_PUSH;
firstLoop=false;
}
/**
* @brief allows the user to change the motor speed for continuous movement
*
*/
void MotorHomingSpeed()
{
int motorHomingSpeed=machineConfig.HomingSpeed;
lcdClear();
lcd.setCursor(0,0);
lcd.print("Motor homing speed");
lcd.setCursor(1,2);
lcd.print("Motor speed = ");
lcd.setCursor(15,2);
lcd.print(motorHomingSpeed);
//allows you to change motor Homing Speed
do{
if(knobRotation != NO_ROTATION)
{
if(knobRotation == CW)
motorHomingSpeed++;
else if (knobRotation == CCW)
motorHomingSpeed--;
if(motorHomingSpeed>100)
motorHomingSpeed=100;
else if (motorHomingSpeed<0)
motorHomingSpeed=0;
if(knobRotation != NO_ROTATION)
{
knobRotation=NO_ROTATION;
lcd.setCursor(15,2);
lcd.print(motorHomingSpeed);
RemoveZero(motorHomingSpeed,15,2);
}
}
gbtnBackPressed = mcp230xx_getChannel(&mcp23017config,BTN_ROLL);
}while (gknobPsuh!=PUSH && gbtnBackPressed == 1);
do
gbtnBackPressed = mcp230xx_getChannel(&mcp23017config,BTN_ROLL);
while (!gbtnBackPressed);
gknobPsuh = NO_PUSH;
machineConfig.HomingSpeed = motorHomingSpeed;
}
/**
* @brief allows the user to change the speed of the motor for movement when cutting
*
*/
void MotorMovingSpeed()
{
int motorMovingSpeed=machineConfig.MovingSpeed;
lcdClear();
lcd.setCursor(0,0);
lcd.print("Motor homing speed");
lcd.setCursor(1,2);
lcd.print("Motor speed = ");
lcd.setCursor(15,2);
lcd.print(motorMovingSpeed);
//allows you to change motor Moving Speed
do{
if(knobRotation != NO_ROTATION)
{
if(knobRotation == CW)
motorMovingSpeed++;
else if (knobRotation == CCW)
motorMovingSpeed--;
if(motorMovingSpeed>100)
motorMovingSpeed=100;
else if (motorMovingSpeed<0)
motorMovingSpeed=0;
if(knobRotation != NO_ROTATION)
{
knobRotation=NO_ROTATION;
lcd.setCursor(15,2);
lcd.print(motorMovingSpeed);
RemoveZero(motorMovingSpeed,15,2);
}
}
gbtnBackPressed = mcp230xx_getChannel(&mcp23017config,BTN_ROLL);
}while (gknobPsuh!=PUSH&& gbtnBackPressed == 1);
do
gbtnBackPressed = mcp230xx_getChannel(&mcp23017config,BTN_ROLL);
while (!gbtnBackPressed);
gknobPsuh = NO_PUSH;
machineConfig.MovingSpeed = motorMovingSpeed;
}
/**
* @brief user parameter selection menu
*
*/
void MenuUserConfig()
{
static int menuNumber;
//refresh display
ViewMenuUserConfig();
do
{
//display cursor
ArrowIndex(0);
//refresh diplay
if(gflagLowerMenu || gflagUpperMenu)
{
menuNumber = !menuNumber;
ViewMenuUserConfig();
}
// select menu
if(gknobPsuh == PUSH)
{
gknobPsuh = NO_PUSH;
if(!menuNumber)
{
switch (arrowIndexRow)
{
case 1:
MenuMode();
break;
case 2:
MenuThickness();
break;
case 3:
MenuThreshold();
break;
default :
UserConfigScreenOne();
break;
}
}
else
{
switch (arrowIndexRow)
{
case 1:
MenuThickness();
break;
case 2:
MenuThreshold();
break;
case 3:
MenuAlarm();
break;
default:
UserConfigScreenTwo();
break;
}
}
//refresh display
ViewMenuUserConfig();
gknobPsuh = NO_PUSH;
}
//read back button
gbtnBackPressed = mcp230xx_getChannel(&mcp23017config,BTN_ROLL);
}while(gknobPsuh != LONG_PUSH && gbtnBackPressed == 1);
//wait user release bakc button
do
gbtnBackPressed = mcp230xx_getChannel(&mcp23017config,BTN_ROLL);
while (!gbtnBackPressed);
gknobPsuh = NO_PUSH;
}
/**
* @brief change home screen values
*
*
*/
void Home( )
{
static unsigned int memoCntValue;
static unsigned int memoFeedValue;
static unsigned int memoTrimValue;
static float memoTemperature;
static int memoMode;
if(memoFeedValue != userConfig[currentUser].thicknessNormalMode)
{
lcd.setCursor(5,1);
lcd.print(userConfig[currentUser].thicknessNormalMode);
RemoveZero(userConfig[currentUser].thicknessNormalMode,5,1);
}
if(memoTrimValue != userConfig[currentUser].thicknessTrimmingMode)
{
lcd.setCursor(15,1);
lcd.print(userConfig[currentUser].thicknessTrimmingMode);
RemoveZero(userConfig[currentUser].thicknessTrimmingMode,15,1);
}
if(memoCntValue != home.counterValue)
{
lcd.setCursor(8,3);
lcd.print(home.counterValue);
RemoveZero(home.counterValue,8,3);
}
if(memoTemperature != ntcSensor.measure.Temp)
{
if(ntcSensor.measure.Temp<=-71)
{
lcd.setCursor(6,2);
lcd.print(" ");
lcd.setCursor(6,2);
lcd.print("--");
}
else
{
lcd.setCursor(6,2);
lcd.print(" ");
lcd.setCursor(6,2);
lcd.print(ntcSensor.measure.Temp,1);
}
//RemoveZero(ntcSensor.measure.Temp,7,2);
}
if(memoMode != userConfig[currentUser].mode)
{
lcd.setCursor(5,0);
if(userConfig[currentUser].mode == MODE_NORMAL)
lcd.print("Normal");
else
lcd.print("Trim. ");
}
memoCntValue = home.counterValue;
memoFeedValue = userConfig[currentUser].thicknessNormalMode;
memoTrimValue = userConfig[currentUser].thicknessTrimmingMode;
memoTemperature = ntcSensor.measure.Temp;
memoMode = userConfig[currentUser].mode;
}
/**
* @brief fixed text display of the home screen
*
*/
void HomeScreen()
{
lcdClear();
lcd.setCursor(0,0);
lcd.print("Mode=");
if(userConfig[currentUser].mode == MODE_NORMAL)
lcd.print("Normal");
else
lcd.print("Trim.");
lcd.setCursor(0,1);
lcd.print("Feed=");
lcd.print(userConfig[currentUser].thicknessNormalMode);
lcd.setCursor(10,1);
lcd.print("TRIM=");
lcd.print(userConfig[currentUser].thicknessTrimmingMode);
lcd.setCursor(0,3);
lcd.print("Counter=");
lcd.print(home.counterValue);
lcd.setCursor(12,0);
lcd.print(userConfig[currentUser].name);
lcd.setCursor(0,2);
lcd.print("Temp = C");
lcd.setCursor(6,2);
lcd.print(ntcSensor.measure.Temp,1);
//lcd.write(0xa1);
}
/**
* @brief allows to change the fixed text between screen one and screen two of MenuUserConfig
*
*/
void ViewMenuUserConfig()
{
// static bool firstLoop=false;
static bool flagScreenTwo=false;
if(gflagUpperMenu || gflagLowerMenu)
{
//firstLoop=false;
flagScreenTwo= !flagScreenTwo;
}
//firstLoop=true;
if(!flagScreenTwo)
{
UserConfigScreenOne();
}
else
{
UserConfigScreenTwo();
}
ArrowIndex(FORCE);
}
/**
* @brief fixed text display menu user config screen one of MenuUserConfig
*
*/
void UserConfigScreenOne()
{
lcdClear();
lcd.home();
lcd.setCursor(0,0);
lcd.print("----user setting---");
lcd.setCursor(1,1);
lcd.print("Mode = ");
if(userConfig[currentUser].mode==MODE_NORMAL)
{
lcd.print("NORMAL");
}
else
{
lcd.print("TRIMMING");
}
lcd.setCursor(1,2);
lcd.print("Thickness");
lcd.setCursor(1,3);
lcd.print("Thresholds");
}
/**
* @brief fixed text display menu user config screen two of MenuUserConfig
*
*/
void UserConfigScreenTwo()
{
lcdClear();
lcd.setCursor(0,0);
lcd.print("----user setting---");
lcd.setCursor(1,1);
lcd.print("Thickness");
lcd.setCursor(1,2);
lcd.print("Thresholds");
lcd.setCursor(1,3);
lcd.print("Alarm = ");
if(userConfig[currentUser].alarmState)
{
lcd.print("ON");
}
else
{
lcd.print("OFF");
}
}
/**
* @brief fixed text display menu mode
*
*
*/
void MenuMode()
{
static bool toggle = true;
lcdClear();
lcd.setCursor(0,0);
lcd.print("--------Mode------");
lcd.setCursor(1,2);
lcd.print("Mode : ");
lcd.setCursor(8,2);
if(userConfig[currentUser].mode == NORMAL_MODE)
{
lcd.print("Normal");
}
else
{
lcd.print("Triming");
}
//allows you to change mode
do{
if(knobRotation != NO_ROTATION)
{
knobRotation = NO_ROTATION;
toggle = !toggle;
//changes without taking into account the direction
//of rotation of the encoder.
if(toggle)
{
myString = "Normal ";
userConfig[currentUser].mode = MODE_NORMAL;
}
else
{
myString = "Triming";
userConfig[currentUser].mode = MODE_TRIMMING;
}
lcd.setCursor(8,2);
lcd.print(myString);
}
gbtnBackPressed = mcp230xx_getChannel(&mcp23017config,BTN_ROLL);
}while (gknobPsuh!=PUSH && gbtnBackPressed == 1);
do
gbtnBackPressed = mcp230xx_getChannel(&mcp23017config,BTN_ROLL);
while (!gbtnBackPressed);
}
/**
* @brief Menu Select User, show basic information about
* current user
*
*/
void MenuSelectUser()
{
int screenNum=0;
int timer;
int oldTimer=0;
int i;
lcd.setCursor(0,0);
lcd.print("-----Select User----");
lcd.setCursor(0,1);
lcd.print("User : ");
//loads the values of the different users
for(i=0;i<MAX_USER_SETTINGS;i++)
{
getUserSettingsFromConfig("config.cfg", &userConfig[i], i);
}
lcd.print(userConfig[currentUser].name);
do
{
timer= millis();
//allows you to change users
if(knobRotation == CW)
{
currentUser++;
}
else if(knobRotation == CCW)
{
currentUser--;
}
//security for not being off index
if(currentUser<0)
{
currentUser = MAX_USER_SETTINGS-1;
}
else if(currentUser>MAX_USER_SETTINGS-1)
{
currentUser=0;
}
if(knobRotation!=NO_ROTATION)
{
getUserSettingsFromConfig("config.cfg", &userConfig[currentUser], currentUser);
lcd.setCursor(7,1);
lcd.print(" ");
lcd.setCursor(7,1);
lcd.print(userConfig[currentUser].name);
knobRotation = NO_ROTATION;
screenNum=0;
}
//allows the user's configuration to be displayed by scrolling on the screen.
//Every second, the information shifts upwards.
if((timer-oldTimer)>=1000)
{
//deletes the lines 2 and 3 of the LCD
lcd.setCursor(0,2);
lcd.print(" ");
lcd.setCursor(0,3);
lcd.print(" ");
oldTimer=timer;
switch (screenNum)
{
case 0:
lcd.setCursor(0,2);
lcd.print("Mode : ");
if(userConfig[currentUser].mode==MODE_NORMAL)
{
lcd.print("Normal");
}
else
{
lcd.print("Trimming");
}
lcd.setCursor(0,3);
lcd.print("Thick. Nor. = um");
lcd.setCursor(14,3);
lcd.print(userConfig[currentUser].thicknessNormalMode);
break;
case 1:
lcd.setCursor(0,2);
lcd.print("Thick. Nor. = um");
lcd.setCursor(14,2);
lcd.print(userConfig[currentUser].thicknessNormalMode);
lcd.setCursor(0,3);
lcd.print("Thick. Tri. = um");
lcd.setCursor(14,3);
lcd.print(userConfig[currentUser].thicknessTrimmingMode);
break;
case 2:
lcd.setCursor(0,2);
lcd.print("Thick. Tri. = um");
lcd.setCursor(14,2);
lcd.print(userConfig[currentUser].thicknessTrimmingMode);
lcd.setCursor(0,3);
lcd.print("Thres. cut. = ");
lcd.setCursor(14,3);
lcd.print(userConfig[currentUser].thresholdToCut);
break;
case 3:
lcd.setCursor(0,2);
lcd.print("Thres. cut. = ");
lcd.setCursor(14,2);
lcd.print(userConfig[currentUser].thresholdToCut);
lcd.setCursor(0,3);
lcd.print("Thres. rew. = ");
lcd.setCursor(14,3);
lcd.print(userConfig[currentUser].thresholdToRewind);
break;
case 4:
lcd.setCursor(0,2);
lcd.print("Thres. rew. = ");
lcd.setCursor(14,2);
lcd.print(userConfig[currentUser].thresholdToRewind);
lcd.setCursor(0,3);
lcd.print("Alam : ");
if(userConfig[currentUser].alarmState == ALARM_ON)
{
lcd.print("On");
}
else
{
lcd.print("Off");
}
break;
case 5:
lcd.setCursor(0,2);
lcd.print("Alam : ");
if(userConfig[currentUser].alarmState == ALARM_ON)
{
lcd.print("On");
}
else
{
lcd.print("Off");
}
lcd.setCursor(0,3);
lcd.print("Mode : ");
if(userConfig[currentUser].mode==MODE_NORMAL)
{
lcd.print("Normal");
}
else
{
lcd.print("Trimming");
}
break;
default:
break;
}
screenNum++;
if(screenNum>5)
{
screenNum=0;
}
}
gbtnBackPressed = mcp230xx_getChannel(&mcp23017config,BTN_ROLL);
} while ( gbtnBackPressed && gknobPsuh != PUSH);
do
gbtnBackPressed = mcp230xx_getChannel(&mcp23017config,BTN_ROLL);
while (!gbtnBackPressed);
gknobPsuh=NO_PUSH;
lcdClear();
}
/**
* @brief fixed text display menu Thickness
*
*/
void MenuThickness( )
{
lcdClear();
arrowIndexRow=1;
ArrowIndex(FORCE);
lcd.setCursor(0,0);
lcd.print("-----Thickness-----");
lcd.setCursor(1,1);
lcd.print("Normal = ");
lcd.print(userConfig[currentUser].thicknessNormalMode);
lcd.print(" um");
lcd.setCursor(1,2);
lcd.print("Triming = ");
lcd.print(userConfig[currentUser].thicknessTrimmingMode);
lcd.print(" um");
//allows you to choose which parameter to change
do
{
ArrowIndex(0);
if(gknobPsuh == PUSH)
{
gknobPsuh=NO_PUSH;
switch (arrowIndexRow)
{
case 1 :
MenuThicknessNormal();
break;
case 2 :
MenuThicknessTrimming();
break;
default:
break;
}
//fixed text display
lcdClear();
ArrowIndex(FORCE);
lcd.setCursor(0,0);
lcd.print("-----Thickness-----");
lcd.setCursor(1,1);
lcd.print("Normal = ");
lcd.print(userConfig[currentUser].thicknessNormalMode);
lcd.print(" um");
lcd.setCursor(1,2);
lcd.print("Triming = ");
lcd.print(userConfig[currentUser].thicknessTrimmingMode);
lcd.print(" um");
}
gbtnBackPressed = mcp230xx_getChannel(&mcp23017config,BTN_ROLL);
}while (gknobPsuh != LONG_PUSH&&gbtnBackPressed == 1);
do
gbtnBackPressed = mcp230xx_getChannel(&mcp23017config,BTN_ROLL);
while (!gbtnBackPressed);
}
/**
* @brief Normal mode thickness configuration
*
*/
void MenuThicknessNormal()
{
unsigned int thickness = userConfig[currentUser].thicknessNormalMode;
lcdClear();
arrowIndexRow=2;
ArrowIndex(FORCE);
lcd.setCursor(0,0);
lcd.print("-Thickness normal--");
lcd.setCursor(1,2);
lcd.print("Thickness = ");
lcd.print(thickness);
lcd.setCursor(17,2);
lcd.print("um");
gknobPsuh=NO_PUSH;
//stores the user's thicnkess normal mode value
do
{
if(knobRotation==CW)
thickness++;
else if(knobRotation==CCW)
thickness--;
if(thickness<THICKNESS_MIN)
thickness=THICKNESS_MIN;
if(thickness>THICKNESS_MAX)
thickness=THICKNESS_MAX;
if(knobRotation!=NO_ROTATION)
{
knobRotation = NO_ROTATION;
lcd.setCursor(13,2);
lcd.print(thickness);
RemoveZero(thickness,13,2);
lcd.setCursor(17,2);
lcd.print("um");
}
gbtnBackPressed = mcp230xx_getChannel(&mcp23017config,BTN_ROLL);
}while (gknobPsuh!=PUSH && gbtnBackPressed == 1);
do
gbtnBackPressed = mcp230xx_getChannel(&mcp23017config,BTN_ROLL);
while (!gbtnBackPressed);
gknobPsuh = NO_PUSH;
userConfig[currentUser].thicknessNormalMode=thickness;
}
/**
* @brief trimming mode thickness configuration
*
*/
void MenuThicknessTrimming()
{
unsigned int thickness = userConfig[currentUser].thicknessTrimmingMode;
// display fiexd text
lcdClear();
arrowIndexRow=2;
ArrowIndex(FORCE);
lcd.setCursor(0,0);
lcd.print("-Thickness trimming");
lcd.setCursor(1,2);
lcd.print("Thickness = ");
lcd.print(thickness);
lcd.setCursor(17,2);
lcd.print("um");
gknobPsuh=NO_PUSH;
//stores the user's thickness trimming mode value
do
{
if(knobRotation==CW)
thickness++;
else if(knobRotation==CCW)
thickness--;
if(thickness<THICKNESS_MIN)
thickness=THICKNESS_MIN;
if(thickness>THICKNESS_MAX)
thickness=THICKNESS_MAX;
if(knobRotation!=NO_ROTATION)
{
knobRotation = NO_ROTATION;
lcd.setCursor(13,2);
lcd.print(thickness);
RemoveZero(thickness,13,2);
lcd.setCursor(17,2);
lcd.print("um");
}
//Read back button
gbtnBackPressed = mcp230xx_getChannel(&mcp23017config,BTN_ROLL);
}while (gknobPsuh!=PUSH && gbtnBackPressed == 1);
do
//wait user waits for the user to release the button
gbtnBackPressed = mcp230xx_getChannel(&mcp23017config,BTN_ROLL);
while (!gbtnBackPressed);
gknobPsuh = NO_PUSH;
userConfig[currentUser].thicknessTrimmingMode=thickness;
}
/**
* @brief Selection menu for thresholds
*
*/
void MenuThreshold()
{
//fixed text display
lcdClear();
arrowIndexRow=1;
ArrowIndex(FORCE);
lcd.setCursor(0,0);
lcd.print("-----Threshold-----");
lcd.setCursor(1,1);
lcd.print("Threshold to cut");
lcd.setCursor(1,2);
lcd.print("Threshold to rewind");
do
{
ArrowIndex(0);
if(gknobPsuh == PUSH)
{
gknobPsuh=NO_PUSH;
switch (arrowIndexRow)
{
case 1 :
ScreenThreshold();
MenuThresholdToCut();
break;
case 2 :
ScreenThreshold();
MenuThresholdToRewind();
break;
default:
break;
}
//fixed text display
lcdClear();
ArrowIndex(FORCE);
lcd.setCursor(0,0);
lcd.print("-----Threshold------");
lcd.setCursor(1,1);
lcd.print("Threshold to cut");
lcd.setCursor(1,2);
lcd.print("Threshold to revwind ");
}
gbtnBackPressed = mcp230xx_getChannel(&mcp23017config,BTN_ROLL);
}while (gknobPsuh != LONG_PUSH && gbtnBackPressed == 1);
do
gbtnBackPressed = mcp230xx_getChannel(&mcp23017config,BTN_ROLL);
while (!gbtnBackPressed);
}
/**
* @brief tells the user how to select thresholds
*
*/
void ScreenThreshold()
{
//tells the user how to select thresholds
lcdClear();
lcd.setCursor(0,1);
lcd.print("place the blade and");
lcd.setCursor(0,2);
lcd.print("Press validation");
lcd.setCursor(0,3);
lcd.print("button");
do
{
delay(10);
}while(gknobPsuh != PUSH);
gknobPsuh=NO_PUSH;
}
/**
* @brief Threshold to cut setting menu
*
*/
void MenuThresholdToCut()
{
//fixed text display
lcdClear();
lcd.setCursor(0,1);
lcd.write((byte)0);
lcd.setCursor(0,0);
lcd.print("--Threshold to cut--");
lcd.setCursor(1,1);
lcd.print("Position = ");
gknobPsuh=NO_PUSH;
//stores the user's threshold to cut value
do
{
//Reading the analog value of the position potentiometer
gvalAdc = analogRead(ADC_POT);
//displays the value of the potentiometer and after averaging
ShowPot(12,1);
gbtnBackPressed = mcp230xx_getChannel(&mcp23017config,BTN_ROLL);
}while (gknobPsuh!=PUSH && gbtnBackPressed == 1);
do
gbtnBackPressed = mcp230xx_getChannel(&mcp23017config,BTN_ROLL);
while (!gbtnBackPressed);
//saves the current user value
userConfig[currentUser].thresholdToCut = gvalAdc;
gknobPsuh = NO_PUSH;
}
/**
* @brief Threshold to Rewind setting menu
*
*/
void MenuThresholdToRewind()
{
//fixed text display
lcdClear();
lcd.setCursor(0,1);
lcd.write((byte)0);
lcd.setCursor(0,0);
lcd.print(" Threshold to rewind");
lcd.setCursor(1,1);
lcd.print("Position = ");
gknobPsuh=NO_PUSH;
//stores the user's threshold to cut value
do
{
//Reading the analog value of the position potentiometer
gvalAdc = analogRead(ADC_POT);
//displays the value of the potentiometer and after averaging
ShowPot(12,1);
gbtnBackPressed = mcp230xx_getChannel(&mcp23017config,BTN_ROLL);
}while (gknobPsuh!=PUSH && gbtnBackPressed == 1);
do
gbtnBackPressed = mcp230xx_getChannel(&mcp23017config,BTN_ROLL);
while (!gbtnBackPressed);
//saves the current user value
userConfig[currentUser].thresholdToRewind = gvalAdc;
gknobPsuh=NO_PUSH;
}
/**
* @brief Alarm setup menu
*
*/
void MenuAlarm()
{
lcdClear();
arrowIndexRow=1;
ArrowIndex(FORCE);
lcd.setCursor(0,0);
lcd.print("-----Alarm-----");
lcd.setCursor(1,1);
lcd.print("Alarm State : ");
if(userConfig[currentUser].alarmState)
{
lcd.print("ON");
}
else
{
lcd.print("OFF");
}
lcd.setCursor(1,2);
lcd.print("Alarm Setting");
do
{
ArrowIndex(0);
if(gknobPsuh == PUSH)
{
gknobPsuh=NO_PUSH;
switch (arrowIndexRow)
{
case 1 :
MenuAlarmState();
break;
case 2 :
MenuAlarmSetting();
break;
default:
break;
}
//fixed text display
lcdClear();
arrowIndexRow=1;
ArrowIndex(FORCE);
lcd.setCursor(0,0);
lcd.print("-----Alarm-----");
lcd.setCursor(1,1);
lcd.print("Alarm State : ");
if(userConfig[currentUser].alarmState)
{
lcd.print("ON");
}
else
{
lcd.print("OFF");
}
lcd.setCursor(1,2);
lcd.print("Alarm Setting");
}
gbtnBackPressed = mcp230xx_getChannel(&mcp23017config,BTN_ROLL);
}while (gknobPsuh != LONG_PUSH && gbtnBackPressed == 1);
do
gbtnBackPressed = mcp230xx_getChannel(&mcp23017config,BTN_ROLL);
while (!gbtnBackPressed);
}
/**
* @brief configures the alarm status
*
*/
void MenuAlarmState()
{
static bool toggle = true;
gknobPsuh=NO_PUSH;
//displays fixed text
lcdClear();
lcd.setCursor(0,2);
lcd.write((byte)0);
lcd.setCursor(0,0);
lcd.print("-------Alarm--------");
lcd.setCursor(1,2);
lcd.print("Alarm =");
lcd.setCursor(9,2);
if(userConfig[currentUser].alarmState)
{
lcd.print("ON");
}
else
{
lcd.print("OFF");
}
do{
//activates or deactivates the temperature alarmState
if(knobRotation != NO_ROTATION)
{
knobRotation = NO_ROTATION;
toggle = !toggle;
//changes without taking into account the direction
//of rotation of the encoder.
if(toggle)
{
myString = "ON ";
userConfig[currentUser].alarmState = ALARM_ON;
}
else
{
myString = "OFF";
userConfig[currentUser].alarmState = Alarm_OFF;
}
lcd.setCursor(9,2);
lcd.print(myString);
}
//Read back button
gbtnBackPressed = mcp230xx_getChannel(&mcp23017config,BTN_ROLL);
}while (gknobPsuh != PUSH&&gbtnBackPressed == 1);
//read back button
do
gbtnBackPressed = mcp230xx_getChannel(&mcp23017config,BTN_ROLL);
while (!gbtnBackPressed);
gknobPsuh =NO_PUSH;
}
/**
* @brief Alarm temperatur setting
*
*/
void MenuAlarmSetting()
{
int tempAlarmDegree= userConfig[currentUser].tempAlarmDegree;
lcdClear();
lcd.setCursor(0,2);
lcd.write((byte)0);
lcd.setCursor(1,0);
lcd.print("---Temp. setting--");
lcd.setCursor(1,2);
lcd.print("Temp. = ");
lcd.print(userConfig[currentUser].tempAlarmDegree);
lcd.setCursor(9,2);
do
{
if(knobRotation == CW)
tempAlarmDegree++;
else if (knobRotation == CCW)
tempAlarmDegree--;
if(knobRotation != NO_ROTATION)
{
knobRotation=NO_ROTATION;
lcd.setCursor(9,2);
lcd.print(tempAlarmDegree);
RemoveZero(tempAlarmDegree,9,2);
}
gbtnBackPressed = mcp230xx_getChannel(&mcp23017config,BTN_ROLL);
}while (gknobPsuh != PUSH && gbtnBackPressed == 1);
do
gbtnBackPressed = mcp230xx_getChannel(&mcp23017config,BTN_ROLL);
while (!gbtnBackPressed);
gknobPsuh = NO_PUSH;
userConfig[currentUser].tempAlarmDegree = tempAlarmDegree;
}
/**
* @brief calculates an average over 5 values of the analog converter.
* @param valAdc ADC value
* @return unsigned int Avaraged ADC value
*/
unsigned int AverageAdc (unsigned int valAdc)
{
unsigned int averageTempo;
static unsigned int cntLoop=0;
static unsigned int tabValAdc[AVERAGE_SIZE];
unsigned int average;
unsigned char i;
averageTempo=0;
//stock the last 5 values
tabValAdc[cntLoop++]=valAdc;
//Reset cntLoop
if(cntLoop>=AVERAGE_SIZE)
{
cntLoop=0;
}
//avarages
for( i=0;i<AVERAGE_SIZE;i++)
{
averageTempo += tabValAdc[i];
}
average = averageTempo/AVERAGE_SIZE;
return average;
}
/**
* @brief removes the remaining zeros from the display
*
* @param value
* @param column
* @param raw
*/
void RemoveZero( int value, unsigned char column, unsigned char raw)
{
if(value<0)
{
value *= -1;
column += 1;
}
if(value<=999)
{
lcd.setCursor (column+3,raw);
lcd.print(" ");
}
if(value<=99)
{
lcd.setCursor (column+2,raw);
lcd.print(" ");
}
if(value<=10)
{
lcd.setCursor (column+1,raw);
lcd.print(" ");
}
}
/**
* @brief determines the direction of rotation
* of the rotary encoder
*/
void knobRotationDetection()
{
bool knobChannelA;
bool knobChannelB;
//input reading
knobChannelA = digitalRead (KNOB_CHANNEL_A);
knobChannelB = digitalRead (KNOB_CHANNEL_B);
//Clock wise
if(knobChannelA == knobChannelB)
{ knobRotation = CW;}
//contrary clock wise
else
{ knobRotation = CCW;}
}
/**
* @brief Detects whether the button has been
* pressed for a short or long time
*/
void knobSwitchDetection()
{
static bool edgeMemo=0;
unsigned long timer;
static unsigned long timerMemo;
//reverses the interruption edge
edgeMemo =!edgeMemo;
timer = millis();
//button press
if(edgeMemo)
{
attachInterrupt(digitalPinToInterrupt(KNOB_SWITCH_A),knobSwitchDetection, RISING);
//saves the time "t" at which the button was pressed
timerMemo=timer;
}
//Button release
else
{
attachInterrupt(digitalPinToInterrupt(KNOB_SWITCH_A),knobSwitchDetection, FALLING);
//test if the button has been pressed long enough
if((timer-timerMemo) > LONG_PUSH_TIME)
{
gknobPsuh = LONG_PUSH;
}
//bounce eliminator
else if((timer-timerMemo) > BOUNCE_ELIM_TIME)
{
gknobPsuh = PUSH;
}
}
}
/**
* @brief draws and moves the cursor on the LCD
*
* @param force forces the cursor display
*/
void ArrowIndex(bool force)
{
gflagUpperMenu=false;
gflagLowerMenu=false;
//test if the encoder has rotated
if(knobRotation!=NO_ROTATION )
{
//the encoder has turned clockwise
if(knobRotation==CW)
{ arrowIndexRow ++; }
//the encoder has turned contrary clockwise
else if(knobRotation==CCW)
{ arrowIndexRow --; }
//Test if the cursor index is higher than the number
//of lines on the screen to create a rotation effect.
if(arrowIndexRow<1)
{ arrowIndexRow= MAX_ROW_INDEX_LCD; }
else if (arrowIndexRow>MAX_ROW_INDEX_LCD)
{ arrowIndexRow=1; }
//indicates that we have rotated up or down the screen
if(arrowOldPosition==MAX_ROW_INDEX_LCD && arrowIndexRow==1 )
{
gflagUpperMenu=false;
gflagLowerMenu=true;
}
else if (arrowOldPosition==1 && arrowIndexRow==MAX_ROW_INDEX_LCD)
{
gflagUpperMenu=true;
gflagLowerMenu=false;
}
//displays the cursor at the new position
lcd.setCursor(0,arrowIndexRow);
lcd.write((byte)0);
//deletes the old cursor
lcd.setCursor(0,arrowOldPosition);
lcd.print(" ");
knobRotation=NO_ROTATION;
arrowOldPosition=arrowIndexRow;
}
else if(force)
{
//forces the display of the cursor
lcd.setCursor(0,arrowIndexRow);
lcd.write((byte)0);
arrowOldPosition=arrowIndexRow;
}
}
/**
* @brief replaces the lcd.clear() function of the library
* because it causes display problems.
*
*/
void lcdClear()
{
lcd.setCursor(0,0);
lcd.print(" ");
lcd.setCursor(0,1);
lcd.print(" ");
lcd.setCursor(0,2);
lcd.print(" ");
lcd.setCursor(0,3);
lcd.print(" ");
}
/**
* @brief read the value of the potentiometer and display it
*
* @param columns
* @param raw
*/
void ShowPot(unsigned char columns, unsigned char raw)
{
gvalAdc = analogRead(ADC_POT);
//calculates the average of the adc values
gvalAdc = AverageAdc(gvalAdc);
//convert to string
myString = String (gvalAdc);
lcd.setCursor (columns,raw);
//Serial.print(columns);
//lcd.print(myString);
lcd.print(myString);
RemoveZero(gvalAdc,columns,raw);
}
/**
* @brief Calculation of NTC température
*
* @param UR10K Ref. Resistor input voltage
* @param NTC NTC circuit settings (RTh beta, RTh@0degree, RRef value)
* @return float Temperature in degree C
*/
float calcNTCTemp(int UR10K, NTCsensor * NTC){
//Variables
float RT, ln, TX, T0, Rvoltage;
T0 = NTC->settings.Th0 + 273.15; //Temperature T0 from datasheet, conversion from Celsius to kelvin
Rvoltage = (float)UR10K/1000.0;
RT = (VCC - Rvoltage) / (Rvoltage/NTC->settings.RRef);
NTC->measure.RThValue=RT;
ln = log(RT / NTC->settings.RTh0);
TX = (1 / ((ln / NTC->settings.RThbeta) + (1 / T0))); //Temperature from thermistor
TX = TX - 273.15; //Conversion to Celsius
NTC->measure.Temp=TX;
return (TX);
}
/**
* @brief Port init Arduino MKRZERO
*
*/
void PortInit()
{
pinMode(ADC_POT,INPUT);
pinMode(ADC_NTC,INPUT);
pinMode(Buzzer,OUTPUT);
pinMode(MCP23017_INTB,INPUT);
pinMode(MCP23017_INTA,INPUT);
pinMode(MCP23017_RESET,OUTPUT);
pinMode(KNOB_CHANNEL_B,INPUT);
pinMode(KNOB_CHANNEL_A,INPUT);
pinMode(KNOB_SWITCH_A,INPUT);
pinMode(PCA9629A_INT,INPUT);
pinMode(DEBUG1,OUTPUT);
pinMode(DEBUG2,INPUT);
pinMode(SDA,INPUT);
pinMode(SCL,INPUT);
}
#ifdef SERIAL_DEBUG
void TestSD()
{
Serial.begin(9600);
while (!Serial) {
// wait for serial port to connect. Needed for native USB port only
}
int i;
int error=0;
// Get the data config for each user
for(i=0;i<MAX_USER_SETTINGS;i++){
error+= getUserSettingsFromConfig("config.cfg", &userConfig[i], i);
}
// Get the slicer general configuration
if(error == 0){
getGeneralSlicerConfig("config.cfg", &machineConfig);
Serial.write("Users settings loaded !");
userConfig[0].thresholdToCut=1000;
// Try to save general machine config and users settings as file if no error (>=0)
if(saveUserAndGeneralSettings("test.cfg", &machineConfig, userConfig, MAX_USER_SETTINGS) >= 0)
Serial.write("Saving file done !");
else Serial.write("Saving file ERROR !");
}
}
#endif | [
"Brayan.GarciaMuchairo@unige.ch"
] | Brayan.GarciaMuchairo@unige.ch |
d0bc1aa40cacdf6f565beead1ad663bec6d81fec | e6507d57199bb681ac8c3522b5c2ef0406024a17 | /vengine/Database/Unity_SerdeDB.cpp | 88fbc37dfc25ac15355c9a21eab196afea626fc7 | [] | no_license | sdauwidhwa/ToolHub | a5b712180c8720c93e5035ea5390773d2e14d573 | 1905a380f06061c0708318f224a5b8a9197b2032 | refs/heads/master | 2023-08-06T02:22:48.862312 | 2021-09-10T05:02:00 | 2021-09-10T05:02:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,258 | cpp | #pragma vengine_package vengine_database
#include <VEngineConfig.h>
#ifdef EXPORT_UNITY_FUNCTION
#include <Database/SimpleBinaryJson.h>
#include <Database/SimpleJsonValue.h>
namespace toolhub::db {
enum class CSharpKeyType : uint {
Int64,
String,
Guid,
None
};
enum class CSharpValueType : uint {
Int64,
Double,
String,
Dict,
Array,
Guid,
None
};
Key GetCSharpKey(void* ptr, CSharpKeyType keyType) {
switch (keyType) {
case CSharpKeyType::Int64:
return Key(*reinterpret_cast<int64*>(ptr));
case CSharpKeyType::Guid:
return Key(*reinterpret_cast<vstd::Guid*>(ptr));
case CSharpKeyType::String:
return Key(*reinterpret_cast<vstd::string_view*>(ptr));
default:
return Key();
}
}
void SetCSharpKey(void* ptr, CSharpKeyType keyType, Key const& key) {
switch (keyType) {
case CSharpKeyType::Int64: {
*reinterpret_cast<int64*>(ptr) =
(key.IsTypeOf<int64>())
? key.force_get<int64>()
: 0;
} break;
case CSharpKeyType::Guid: {
*reinterpret_cast<vstd::Guid*>(ptr) =
(key.IsTypeOf<vstd::Guid>())
? key.force_get<vstd::Guid>()
: vstd::Guid(false);
} break;
case CSharpKeyType::String: {
*reinterpret_cast<vstd::string_view*>(ptr) =
(key.IsTypeOf<vstd::string_view>())
? key.force_get<vstd::string_view>()
: vstd::string_view(nullptr, (size_t)0);
} break;
}
}
CSharpKeyType SetCSharpKey(void* ptr, Key const& key) {
CSharpKeyType keyType;
switch (key.GetType()) {
case Key::IndexOf<int64>:
*reinterpret_cast<int64*>(ptr) = key.force_get<int64>();
keyType = CSharpKeyType::Int64;
break;
case Key::IndexOf<vstd::string_view>:
*reinterpret_cast<vstd::string_view*>(ptr) = key.force_get<vstd::string_view>();
keyType = CSharpKeyType::String;
break;
case Key::IndexOf<vstd::Guid>:
*reinterpret_cast<vstd::Guid*>(ptr) = key.force_get<vstd::Guid>();
keyType = CSharpKeyType::Guid;
break;
default:
keyType = CSharpKeyType::None;
}
return keyType;
}
WriteJsonVariant GetCSharpWriteValue(void* ptr, CSharpValueType valueType) {
switch (valueType) {
case CSharpValueType::Array:
return WriteJsonVariant(vstd::unique_ptr<IJsonArray>(*reinterpret_cast<SimpleJsonValueArray**>(ptr)));
case CSharpValueType::Dict:
return WriteJsonVariant(vstd::unique_ptr<IJsonDict>(*reinterpret_cast<SimpleJsonValueDict**>(ptr)));
case CSharpValueType::Double:
return WriteJsonVariant(*reinterpret_cast<double*>(ptr));
case CSharpValueType::Guid:
return WriteJsonVariant(*reinterpret_cast<vstd::Guid*>(ptr));
case CSharpValueType::Int64:
return WriteJsonVariant(*reinterpret_cast<int64*>(ptr));
case CSharpValueType::String:
return WriteJsonVariant(*reinterpret_cast<vstd::string_view*>(ptr));
default:
return WriteJsonVariant();
}
}
void SetCSharpReadValue(void* ptr, CSharpValueType valueType, ReadJsonVariant const& readValue) {
switch (valueType) {
case CSharpValueType::Array:
*reinterpret_cast<SimpleJsonValueArray**>(ptr) =
(readValue.IsTypeOf<IJsonArray*>())
? (static_cast<SimpleJsonValueArray*>(readValue.force_get<IJsonArray*>()))
: nullptr;
break;
case CSharpValueType::Dict:
*reinterpret_cast<SimpleJsonValueDict**>(ptr) =
(readValue.IsTypeOf<IJsonDict*>())
? (static_cast<SimpleJsonValueDict*>(readValue.force_get<IJsonDict*>()))
: nullptr;
break;
case CSharpValueType::Double:
if (readValue.IsTypeOf<int64>()) {
*reinterpret_cast<double*>(ptr) = readValue.force_get<int64>();
} else if (readValue.IsTypeOf<double>()) {
*reinterpret_cast<double*>(ptr) = readValue.force_get<double>();
}
break;
case CSharpValueType::Guid:
*reinterpret_cast<vstd::Guid*>(ptr) =
(readValue.IsTypeOf<vstd::Guid>())
? (readValue.force_get<vstd::Guid>())
: vstd::Guid(false);
break;
case CSharpValueType::Int64:
if (readValue.IsTypeOf<int64>()) {
*reinterpret_cast<int64*>(ptr) = readValue.force_get<int64>();
} else if (readValue.IsTypeOf<double>()) {
*reinterpret_cast<int64*>(ptr) = readValue.force_get<double>();
}
break;
case CSharpValueType::String:
*reinterpret_cast<vstd::string_view*>(ptr) =
(readValue.IsTypeOf<vstd::string_view>())
? readValue.force_get<vstd::string_view>()
: vstd::string_view(nullptr, (size_t)0);
break;
}
}
CSharpValueType SetCSharpReadValue(void* ptr, ReadJsonVariant const& readValue) {
CSharpValueType resultType;
switch (readValue.GetType()) {
case ReadJsonVariant::IndexOf<int64>:
*reinterpret_cast<int64*>(ptr) = readValue.force_get<int64>();
resultType = CSharpValueType::Int64;
break;
case ReadJsonVariant::IndexOf<double>:
*reinterpret_cast<int64*>(ptr) = readValue.force_get<double>();
resultType = CSharpValueType::Double;
break;
case ReadJsonVariant::IndexOf<vstd::string_view>:
*reinterpret_cast<vstd::string_view*>(ptr) = readValue.force_get<vstd::string_view>();
resultType = CSharpValueType::String;
break;
case ReadJsonVariant::IndexOf<vstd::Guid>:
*reinterpret_cast<vstd::Guid*>(ptr) = readValue.force_get<vstd::Guid>();
resultType = CSharpValueType::Guid;
break;
case ReadJsonVariant::IndexOf<IJsonDict*>:
*reinterpret_cast<IJsonDict**>(ptr) = readValue.force_get<IJsonDict*>();
resultType = CSharpValueType::Dict;
break;
case ReadJsonVariant::IndexOf<IJsonArray*>:
*reinterpret_cast<IJsonArray**>(ptr) = readValue.force_get<IJsonArray*>();
resultType = CSharpValueType::Array;
break;
default:
resultType = CSharpValueType::None;
break;
}
return resultType;
}
VENGINE_UNITY_EXTERN void db_get_new(SimpleBinaryJson** pp) {
*pp = new SimpleBinaryJson();
}
VENGINE_UNITY_EXTERN void db_dispose(SimpleBinaryJson* p) {
p->Dispose();
}
VENGINE_UNITY_EXTERN void db_get_rootnode(SimpleBinaryJson* db, SimpleJsonValueDict** pp) {
*pp = static_cast<SimpleJsonValueDict*>(db->GetRootNode());
}
VENGINE_UNITY_EXTERN void db_create_dict(SimpleBinaryJson* db, SimpleJsonValueDict** pp) {
*pp = db->CreateDict_Nake();
}
VENGINE_UNITY_EXTERN void db_create_array(SimpleBinaryJson* db, SimpleJsonValueArray** pp) {
*pp = db->CreateArray_Nake();
}
VENGINE_UNITY_EXTERN void db_serialize(SimpleBinaryJson* db, funcPtr_t<void(uint8_t*, uint64)> callback) {
auto vec = db->Serialize();
callback(vec.data(), vec.size());
}
VENGINE_UNITY_EXTERN void db_arr_ser(SimpleJsonValueArray* db, funcPtr_t<void(uint8_t*, uint64)> callback) {
auto vec = db->Serialize();
callback(vec.data(), vec.size());
}
VENGINE_UNITY_EXTERN void db_dict_ser(SimpleJsonValueDict* db, funcPtr_t<void(uint8_t*, uint64)> callback) {
auto vec = db->Serialize();
callback(vec.data(), vec.size());
}
VENGINE_UNITY_EXTERN void db_arr_deser(SimpleJsonValueArray* db, uint8_t* ptr, uint64 len, bool* success, bool clearLast) {
*success = db->Read(std::span<uint8_t const>(ptr, len), clearLast);
}
VENGINE_UNITY_EXTERN void db_dict_deser(SimpleJsonValueDict* db, uint8_t* ptr, uint64 len, bool* success, bool clearLast) {
*success = db->Read(std::span<uint8_t const>(ptr, len),clearLast);
}
VENGINE_UNITY_EXTERN void db_serialize_tofile(SimpleBinaryJson* db, vstd::string_view filePath) {
auto vec = db->Serialize();
auto file = fopen(filePath.begin(), "wb");
if (file != nullptr) {
auto disp = vstd::create_disposer([&]() {
fclose(file);
});
fwrite(vec.data(), vec.size(), 1, file);
}
}
VENGINE_UNITY_EXTERN void db_deser(SimpleBinaryJson* db, uint8_t* ptr, uint64 len, bool* success, bool clearLast) {
*success = db->Read(std::span<uint8_t const>(ptr, len), clearLast);
}
VENGINE_UNITY_EXTERN void db_dispose_arr(SimpleJsonValueArray* p) {
p->Dispose();
}
VENGINE_UNITY_EXTERN void db_print(SimpleBinaryJson* db, funcPtr_t<void(vstd::string_view)> ptr) {
ptr(db->Print());
}
VENGINE_UNITY_EXTERN void db_parse(SimpleBinaryJson* db, vstd::string_view strv, funcPtr_t<void(vstd::string_view)> errorCallback, bool clearLast) {
auto errorMsg = db->Parse(strv, clearLast);
if (errorMsg) {
errorCallback(errorMsg->message);
} else {
errorCallback(vstd::string_view(nullptr, nullptr));
}
}
////////////////// Dict Area
using DictIterator = decltype(std::declval<SimpleJsonValueDict>().vars)::Iterator;
using ArrayIterator = decltype(std::declval<SimpleJsonValueArray>().arr.begin());
VENGINE_UNITY_EXTERN void db_dispose_dict(SimpleJsonValueDict* ptr) {
ptr->Dispose();
}
VENGINE_UNITY_EXTERN void db_dict_set(
SimpleJsonValueDict* dict,
void* keyPtr,
CSharpKeyType keyType,
void* valuePtr,
CSharpValueType valueType) {
dict->Set(GetCSharpKey(keyPtr, keyType), GetCSharpWriteValue(valuePtr, valueType));
}
VENGINE_UNITY_EXTERN void db_dict_tryset(
SimpleJsonValueDict* dict,
void* keyPtr,
CSharpKeyType keyType,
void* valuePtr,
CSharpValueType valueType,
bool* isTry) {
Key key;
WriteJsonVariant value;
*isTry = dict->TrySet(GetCSharpKey(keyPtr, keyType), GetCSharpWriteValue(valuePtr, valueType));
}
VENGINE_UNITY_EXTERN void db_dict_get(
SimpleJsonValueDict* dict,
void* keyPtr,
CSharpKeyType keyType,
CSharpValueType targetValueType,
void* valuePtr) {
SetCSharpReadValue(valuePtr, targetValueType, dict->Get(GetCSharpKey(keyPtr, keyType)));
}
VENGINE_UNITY_EXTERN void db_dict_get_variant(
SimpleJsonValueDict* dict,
void* keyPtr,
CSharpKeyType keyType,
CSharpValueType* targetValueType,
void* valuePtr) {
auto value = dict->Get(GetCSharpKey(keyPtr, keyType));
*targetValueType = SetCSharpReadValue(valuePtr, value);
}
VENGINE_UNITY_EXTERN void db_dict_remove(SimpleJsonValueDict* dict, void* keyPtr, CSharpKeyType keyType) {
dict->Remove(GetCSharpKey(keyPtr, keyType));
}
VENGINE_UNITY_EXTERN void db_dict_len(SimpleJsonValueDict* dict, int32* sz) { *sz = dict->Length(); }
VENGINE_UNITY_EXTERN void db_dict_itebegin(SimpleJsonValueDict* dict, DictIterator* ptr) { *ptr = dict->vars.begin(); }
VENGINE_UNITY_EXTERN void db_dict_iteend(SimpleJsonValueDict* dict, DictIterator* end, bool* result) { *result = (*end == dict->vars.end()); }
VENGINE_UNITY_EXTERN void db_dict_ite_next(DictIterator* end) { (*end)++; }
VENGINE_UNITY_EXTERN void db_dict_ite_get(DictIterator ite, void* valuePtr, CSharpValueType valueType) {
SetCSharpReadValue(valuePtr, valueType, ite->second.GetVariant());
}
VENGINE_UNITY_EXTERN void db_dict_ite_get_variant(DictIterator ite, void* valuePtr, CSharpValueType* valueType) {
*valueType = SetCSharpReadValue(valuePtr, ite->second.GetVariant());
}
VENGINE_UNITY_EXTERN void db_dict_ite_getkey(DictIterator ite, void* keyPtr, CSharpKeyType keyType) {
SetCSharpKey(keyPtr, keyType, ite->first.GetKey());
}
VENGINE_UNITY_EXTERN void db_dict_ite_getkey_variant(DictIterator ite, void* keyPtr, CSharpKeyType* keyType) {
*keyType = SetCSharpKey(keyPtr, ite->first.GetKey());
}
VENGINE_UNITY_EXTERN void db_dict_reset(
SimpleJsonValueDict* dict) {
dict->Reset();
}
VENGINE_UNITY_EXTERN void db_dict_parse(SimpleJsonValueDict* db, vstd::string_view strv, funcPtr_t<void(vstd::string_view)> errorCallback, bool clearLast) {
auto errorMsg = db->Parse(strv, clearLast);
if (errorMsg) {
errorCallback(errorMsg->message);
} else {
errorCallback(vstd::string_view(nullptr, nullptr));
}
}
////////////////// Array Area
VENGINE_UNITY_EXTERN void db_arr_reset(
SimpleJsonValueArray* arr) {
arr->Reset();
}
VENGINE_UNITY_EXTERN void db_arr_len(SimpleJsonValueArray* arr, int32* sz) {
*sz = arr->Length();
}
VENGINE_UNITY_EXTERN void db_arr_get_value(SimpleJsonValueArray* arr, int32 index, void* valuePtr, CSharpValueType valueType) {
SetCSharpReadValue(valuePtr, valueType, arr->Get(index));
}
VENGINE_UNITY_EXTERN void db_arr_get_value_variant(SimpleJsonValueArray* arr, int32 index, void* valuePtr, CSharpValueType* valueType) {
*valueType = SetCSharpReadValue(valuePtr, arr->Get(index));
}
VENGINE_UNITY_EXTERN void db_arr_set_value(SimpleJsonValueArray* arr, int32 index, void* valuePtr, CSharpValueType valueType) {
arr->Set(index, GetCSharpWriteValue(valuePtr, valueType));
}
VENGINE_UNITY_EXTERN void db_arr_add_value(SimpleJsonValueArray* arr, void* valuePtr, CSharpValueType valueType) {
arr->Add(GetCSharpWriteValue(valuePtr, valueType));
}
VENGINE_UNITY_EXTERN void db_arr_remove(SimpleJsonValueArray* arr, int32 index) {
arr->Remove(index);
}
VENGINE_UNITY_EXTERN void db_arr_itebegin(SimpleJsonValueArray* arr, ArrayIterator* ptr) {
*ptr = arr->arr.begin();
}
VENGINE_UNITY_EXTERN void db_arr_iteend(SimpleJsonValueArray* arr, ArrayIterator* ptr, bool* result) {
*result = (*ptr == arr->arr.end());
}
VENGINE_UNITY_EXTERN void db_arr_ite_next(SimpleJsonValueArray* arr, ArrayIterator* ptr) {
(*ptr)++;
}
VENGINE_UNITY_EXTERN void db_arr_ite_get(ArrayIterator ite, void* valuePtr, CSharpValueType valueType) {
SetCSharpReadValue(valuePtr, valueType, ite->GetVariant());
}
VENGINE_UNITY_EXTERN void db_arr_ite_get_variant(ArrayIterator ite, void* valuePtr, CSharpValueType* valueType) {
*valueType = SetCSharpReadValue(valuePtr, ite->GetVariant());
}
VENGINE_UNITY_EXTERN void db_arr_parse(SimpleJsonValueArray* db, vstd::string_view strv, funcPtr_t<void(vstd::string_view)> errorCallback, bool clearLast) {
auto errorMsg = db->Parse(strv, clearLast);
if (errorMsg) {
errorCallback(errorMsg->message);
} else {
errorCallback(vstd::string_view(nullptr, nullptr));
}
}
}// namespace toolhub::db
#endif | [
"18963092533@163.com"
] | 18963092533@163.com |
910eaa53413121f188039109b9f06dd25b93756e | ecd85ad3380773a3313073079598228ab47b2684 | /mutEX-y/src/util/io.h | 6f30e0883ce6530cdd4ed9924fbe487c35a99fc5 | [] | no_license | surynek/mutEX | 619966b6e9160c83cd5b298768fdd82b2d487fd1 | 87263750cceb5aceafbaeb9c6416fea1f7a03d31 | refs/heads/master | 2022-07-30T16:43:35.340164 | 2020-05-23T13:06:59 | 2020-05-23T13:06:59 | 266,208,633 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,048 | h | /*============================================================================*/
/* */
/* */
/* mutEX 0-007_void */
/* */
/* (C) Copyright 2020 Pavel Surynek */
/* */
/* http://www.surynek.net | <pavel@surynek.net> */
/* http://users.fit.cvut.cz/surynek | <pavel.surynek@fit.cvut.cz> */
/* */
/*============================================================================*/
/* io.h / 0-007_void */
/*----------------------------------------------------------------------------*/
//
// Input/output functions and utilities.
//
/*----------------------------------------------------------------------------*/
#ifndef __IO_H__
#define __IO_H__
#include "result.h"
using namespace mutEX;
/*----------------------------------------------------------------------------*/
namespace mutEX
{
/*----------------------------------------------------------------------------*/
// Global functions
sInt_32 sConsumeUntilChar(FILE *fr, sChar c);
sInt_32 sConsumeUntilString(FILE *fr, const sString &string);
sInt_32 sConsumeAlphaString(FILE *fr, sString &alpha_string);
sInt_32 sConsumeAlnumString(FILE *fr, sString &alnum_string);
sInt_32 sConsumeNumericString(FILE *fr, sString &numeric_string);
sInt_32 sConsumeFloatalString(FILE *fr, sString &floatal_string);
sInt_32 sConsumeWhiteSpaces(FILE *fr);
/*----------------------------------------------------------------------------*/
} // namespace mutEX
#endif /* __IO_H__ */
| [
"pavel.surynek@seznam.cz"
] | pavel.surynek@seznam.cz |
f602585ab4da3478b4a1e3f7401ea7d33cfd7851 | 5a2b797bf2d521f52b228e6f185b64ce9c30d8fb | /ThrustTelemetry/datastorage.cpp | 263cc0fd9988da5df92028b65840cf05a743fe96 | [] | no_license | BrainyZombie/ThrustMIT-Telemetry | fc5c88c28519a340a07806dd44c5fb2f55c0742c | 43e5636dc06086e901a1b782227d8b38a3ceec98 | refs/heads/master | 2020-03-23T14:18:32.301470 | 2018-11-03T03:57:39 | 2018-11-03T03:57:39 | 141,667,910 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 994 | cpp | #include "datastorage.h"
bool DataStorage::serialRawWrite(QString data)
{
if (m.tryLock()){ //Lock mutex before writing
serialRead+=data; //append new data
m.unlock(); //unlock mutex
return true; //report succesful write
}
else return false; //report unsuccesful write
}
bool DataStorage::serialRawRead(QString *destination)
{
if (m.tryLock()){ //Lock mutex before reading
*destination=serialRead; //copy data to destination
serialRead=""; //reset class data
m.unlock();
return true; //report succesful read
}
else return false; //report unsuccesful read
}
//Initialising static variables
QString DataStorage::serialRead="";
QString DataStorage::fileLocation="";
| [
"ashirbasu@gmail.com"
] | ashirbasu@gmail.com |
2a5b7e405839eb0f9645ec25714e43b40346c689 | cee367d5edf3e5c61c32c37ae3aa0dab18975d3f | /Chapter5p5_While/Chapter5p5_While/stdafx.cpp | bea35747048419fb8e130e32502440aab72bf705 | [] | no_license | ericayoshimatsu/LearnCpp | c4f78d6f2f817dfda70c0451fb86324ce905c549 | 9760f77fa73c7ccdd7b4e969fdb54f2abde58ae7 | refs/heads/master | 2021-09-10T13:30:19.528377 | 2018-03-27T00:37:37 | 2018-03-27T00:37:37 | 107,049,748 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 295 | cpp | // stdafx.cpp : source file that includes just the standard includes
// Chapter5p5_While.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
| [
"ericayoshimatsu@gmail.com"
] | ericayoshimatsu@gmail.com |
12f3f50ce59387380b0ab1a13663f6420dcb56a0 | 31c6face9f3a545a0b4df81a2f6c36362b9c5f81 | /mappergfx/testsubregionareas.h | 0b18224db4e11a7ea78bb65cc17616d4ade7d0ae | [] | no_license | drblallo/Mapper | e92e5540e2b654b1d4408ffd77ed3f081d5c1968 | 8770fa4ec8a7faae4059f9652656fe699979134a | refs/heads/master | 2021-01-01T19:57:46.839135 | 2017-11-26T09:51:51 | 2017-11-26T09:51:51 | 98,729,413 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 379 | h | #pragma once
#include "render/linesobject.h"
namespace mapreader
{
class Map;
}
namespace mappergfx
{
class NamePlacer;
class TestSubRegionAreas
{
public:
TestSubRegionAreas(mapreader::Map* map, QVector3D scale);
TestSubRegionAreas(NamePlacer* plc, mapreader::Map* map, QVector3D scale);
~TestSubRegionAreas();
private:
renderer::LinesObject* ogg;
};
}
| [
"blalloscompany@gmail.com"
] | blalloscompany@gmail.com |
ddbeb668dc6322875020b28087926b89aaf4beab | d326bcd43dc220e4eb75c5cdb15fcf6326cb83fc | /ch10-3-image/image/widget.cpp | 9f80666fc096cb401413b789afd056b31b449f89 | [] | no_license | eric-dma/qtcreator_test | 8a51ec0b089f4a62633da6f98ff1d0f0749ba1c2 | 5948b73a07d52ebcd90cfe730245ff06ec04c8a2 | refs/heads/master | 2022-11-18T22:35:51.758169 | 2020-07-21T08:38:10 | 2020-07-21T08:38:10 | 278,783,611 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,408 | cpp | #include "widget.h"
#include "ui_widget.h"
#include <QPainter>
#include <QImage>
#include <QPixmap>
#include <QBitmap>
#include <QPicture>
#include <QDebug>
Widget::Widget(QWidget *parent)
: QWidget(parent)
, ui(new Ui::Widget)
{
ui->setupUi(this);
}
Widget::~Widget()
{
delete ui;
}
void Widget::paintEvent(QPaintEvent *event)
{
// QPainter painter;
// //image
// QImage image(100,100,QImage::Format_ARGB32);
// painter.begin(&image);
// painter.setPen(QPen(Qt::green,3));
// painter.setBrush(Qt::yellow);
// painter.drawRect(10,10,60,60);
// painter.drawText(10,10,60,60,Qt::AlignCenter,tr("QImage"));
// painter.setBrush(QColor(0,0,0,100));
// painter.drawRect(50,50,40,40);
// painter.end();
// //pixel
// QPixmap pix(100,100);
// painter.begin(&pix);
// painter.setPen(QPen(Qt::green,3));
// painter.setBrush(Qt::yellow);
// painter.drawRect(10,10,60,60);
// painter.drawText(10,10,60,60,Qt::AlignCenter,tr("QPixmap"));
// painter.setBrush(QColor(0,0,0,100));
// painter.drawRect(50,50,40,40);
// painter.end();
// //bitmap
// QBitmap bit(100,100);
// painter.begin(&bit);
// painter.setPen(QPen(Qt::green,3));
// painter.setBrush(Qt::yellow);
// painter.drawRect(10,10,60,60);
// painter.drawText(10,10,60,60,Qt::AlignCenter,tr("QBitmap"));
// painter.setBrush(QColor(0,0,0,100));
// painter.drawRect(50,50,40,40);
// painter.end();
// //QPicture
// QPicture picture;
// painter.begin(&picture);
// painter.setPen(QPen(Qt::green,3));
// painter.setBrush(Qt::yellow);
// painter.drawRect(10,10,60,60);
// painter.drawText(10,10,60,60,Qt::AlignCenter,tr("QPicture"));
// painter.setBrush(QColor(0,0,0,100));
// painter.drawRect(50,50,40,40);
// painter.end();
// painter.begin(this);
// painter.drawImage(50,20,image);
// painter.drawPixmap(200,20,pix);
// painter.drawPixmap(50,170,bit);
// painter.drawPicture(200,170,picture);
QPainter painter(this);
QImage image;
image.load("smile.png");
qDebug() << image.size() << image.format() << image.depth();
painter.drawImage(QPoint(10,10),image);
QImage mirror = image.mirrored();
QTransform transform;
transform.shear(0.2,0);
QImage image2 = mirror.transformed(transform);
painter.drawImage(QPoint(10,160), image2);
image2.save("mirror-smile.png");
}
| [
"eric.ma@botson.com"
] | eric.ma@botson.com |
283ccc1215ebe82121be4132d61147f59631883a | f5850c88b58420e12785725d582d26279bd98bab | /petsc/src/petsc-3.7.6/src/mat/examples/tests/ex174.cxx | 0f856e162334b745c6b478c2abb5fb1f3acbf9df | [
"BSD-2-Clause"
] | permissive | maierbn/debugging | 909683b9160b17369a2d8948ed624b4ccc4b0522 | 90f4f633ff72185243a5514a272054488656b20d | refs/heads/master | 2020-04-08T05:35:32.494938 | 2018-11-25T19:54:14 | 2018-11-25T19:54:14 | 159,066,788 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,340 | cxx |
static char help[] = "Tests MatConvert(), MatLoad(), MatElementalHermitianGenDefEig() for MATELEMENTAL interface.\n\n";
/*
Example:
mpiexec -n <np> ./ex173 -fA <A_data> -fB <B_data> -vl <vl> -vu <vu> -orig_mat_type <type> -orig_mat_type <mat_type>
*/
#include <petscmat.h>
#include <petscmatelemental.h>
#undef __FUNCT__
#define __FUNCT__ "main"
int main(int argc,char **args)
{
Mat A,Ae,B,Be,X,Xe,We,C1,C2,EVAL;
Vec eval;
PetscErrorCode ierr;
PetscViewer view;
char file[2][PETSC_MAX_PATH_LEN];
PetscBool flg,flgB,isElemental,isDense,isAij,isSbaij;
PetscScalar one = 1.0,*Earray;
PetscMPIInt rank,size;
PetscReal vl,vu,norm;
PetscInt M,N,m;
/* Below are Elemental data types, see <elemental.hpp> */
El::Pencil eigtype = El::AXBX;
El::UpperOrLower uplo = El::UPPER;
El::SortType sort = El::UNSORTED; /* UNSORTED, DESCENDING, ASCENDING */
El::HermitianEigSubset<PetscElemScalar> subset;
El::HermitianEigCtrl<PetscElemScalar> ctrl;
PetscInitialize(&argc,&args,(char*)0,help);
#if !defined(PETSC_HAVE_ELEMENTAL)
SETERRQ(PETSC_COMM_WORLD,1,"This example requires ELEMENTAL");
#endif
ierr = MPI_Comm_rank(PETSC_COMM_WORLD,&rank);CHKERRQ(ierr);
ierr = MPI_Comm_size(PETSC_COMM_WORLD,&size);CHKERRQ(ierr);
/* Load PETSc matrices */
ierr = PetscOptionsGetString(NULL,NULL,"-fA",file[0],PETSC_MAX_PATH_LEN,NULL);CHKERRQ(ierr);
ierr = PetscViewerBinaryOpen(PETSC_COMM_WORLD,file[0],FILE_MODE_READ,&view);CHKERRQ(ierr);
ierr = MatCreate(PETSC_COMM_WORLD,&A);CHKERRQ(ierr);
ierr = MatSetOptionsPrefix(A,"orig_");CHKERRQ(ierr);
ierr = MatSetType(A,MATAIJ);CHKERRQ(ierr);
ierr = MatSetFromOptions(A);CHKERRQ(ierr);
ierr = MatLoad(A,view);CHKERRQ(ierr);
ierr = PetscViewerDestroy(&view);CHKERRQ(ierr);
PetscOptionsGetString(NULL,NULL,"-fB",file[1],PETSC_MAX_PATH_LEN,&flgB);
if (flgB) {
ierr = PetscViewerBinaryOpen(PETSC_COMM_WORLD,file[1],FILE_MODE_READ,&view);CHKERRQ(ierr);
ierr = MatCreate(PETSC_COMM_WORLD,&B);CHKERRQ(ierr);
ierr = MatSetOptionsPrefix(B,"orig_");CHKERRQ(ierr);
ierr = MatSetType(B,MATAIJ);CHKERRQ(ierr);
ierr = MatSetFromOptions(B);CHKERRQ(ierr);
ierr = MatLoad(B,view);CHKERRQ(ierr);
ierr = PetscViewerDestroy(&view);CHKERRQ(ierr);
} else {
/* Create matrix B = I */
PetscInt rstart,rend,i;
ierr = MatGetSize(A,&M,&N);CHKERRQ(ierr);
ierr = MatGetOwnershipRange(A,&rstart,&rend);CHKERRQ(ierr);
ierr = MatCreate(PETSC_COMM_WORLD,&B);CHKERRQ(ierr);
ierr = MatSetOptionsPrefix(B,"orig_");CHKERRQ(ierr);
ierr = MatSetSizes(B,PETSC_DECIDE,PETSC_DECIDE,M,N);CHKERRQ(ierr);
ierr = MatSetType(B,MATAIJ);CHKERRQ(ierr);
ierr = MatSetFromOptions(B);CHKERRQ(ierr);
ierr = MatSetUp(B);CHKERRQ(ierr);
for (i=rstart; i<rend; i++) {
ierr = MatSetValues(B,1,&i,1,&i,&one,ADD_VALUES);CHKERRQ(ierr);
}
ierr = MatAssemblyBegin(B,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
ierr = MatAssemblyEnd(B,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
}
ierr = PetscObjectTypeCompare((PetscObject)A,MATELEMENTAL,&isElemental);CHKERRQ(ierr);
if (isElemental) {
Ae = A;
Be = B;
isDense = isAij = isSbaij = PETSC_FALSE;
} else { /* Convert AIJ/DENSE/SBAIJ matrices into Elemental matrices */
if (size == 1) {
ierr = PetscObjectTypeCompare((PetscObject)A,MATSEQDENSE,&isDense);CHKERRQ(ierr);
ierr = PetscObjectTypeCompare((PetscObject)A,MATSEQAIJ,&isAij);CHKERRQ(ierr);
ierr = PetscObjectTypeCompare((PetscObject)A,MATSEQSBAIJ,&isSbaij);CHKERRQ(ierr);
} else {
ierr = PetscObjectTypeCompare((PetscObject)A,MATMPIDENSE,&isDense);CHKERRQ(ierr);
ierr = PetscObjectTypeCompare((PetscObject)A,MATMPIAIJ,&isAij);CHKERRQ(ierr);
ierr = PetscObjectTypeCompare((PetscObject)A,MATMPISBAIJ,&isSbaij);CHKERRQ(ierr);
}
if (!rank) {
if (isDense) {
printf(" Convert DENSE matrices A and B into Elemental matrix... \n");
} else if (isAij) {
printf(" Convert AIJ matrices A and B into Elemental matrix... \n");
} else if (isSbaij) {
printf(" Convert SBAIJ matrices A and B into Elemental matrix... \n");
} else SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_SUP,"Not supported yet");
}
ierr = MatConvert(A, MATELEMENTAL, MAT_INITIAL_MATRIX, &Ae);CHKERRQ(ierr);
ierr = MatConvert(B, MATELEMENTAL, MAT_INITIAL_MATRIX, &Be);CHKERRQ(ierr);
/* Test accuracy */
ierr = MatMultEqual(A,Ae,5,&flg);CHKERRQ(ierr);
if (!flg) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_NOTSAMETYPE,"A != A_elemental.");
ierr = MatMultEqual(B,Be,5,&flg);CHKERRQ(ierr);
if (!flg) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_NOTSAMETYPE,"B != B_elemental.");
}
/* Test MatElementalHermitianGenDefEig() */
if (!rank) printf(" Compute Ax = lambda Bx... \n");
vl = -0.8, vu = -0.7;
ierr = PetscOptionsGetReal(NULL,NULL,"-vl",&vl,NULL);CHKERRQ(ierr);
ierr = PetscOptionsGetReal(NULL,NULL,"-vu",&vu,NULL);CHKERRQ(ierr);
subset.rangeSubset = PETSC_TRUE;
subset.lowerBound = vl;
subset.upperBound = vu;
ierr = MatElementalHermitianGenDefEig(eigtype,uplo,Ae,Be,&We,&Xe,sort,subset,ctrl);CHKERRQ(ierr);
//ierr = MatView(We,PETSC_VIEWER_STDOUT_WORLD);CHKERRQ(ierr);
/* Check || A*X - B*X*We || */
if (isAij) {
if (!rank) printf(" Convert Elemental matrices We and Xe into MATDENSE matrices... \n");
ierr = MatConvert(We,MATDENSE,MAT_INITIAL_MATRIX,&EVAL);CHKERRQ(ierr); /* EVAL is a Mx1 matrix */
ierr = MatConvert(Xe,MATDENSE,MAT_INITIAL_MATRIX,&X);CHKERRQ(ierr);
//ierr = MatView(EVAL,PETSC_VIEWER_STDOUT_WORLD);CHKERRQ(ierr);
ierr = MatMatMult(A,X,MAT_INITIAL_MATRIX,1.0,&C1);CHKERRQ(ierr); /* C1 = A*X */
ierr = MatMatMult(B,X,MAT_INITIAL_MATRIX,1.0,&C2);CHKERRQ(ierr); /* C2 = B*X */
/* Get vector eval from matrix EVAL for MatDiagonalScale() */
ierr = MatGetLocalSize(EVAL,&m,NULL);CHKERRQ(ierr);
ierr = MatDenseGetArray(EVAL,&Earray);CHKERRQ(ierr);
ierr = VecCreateMPIWithArray(PetscObjectComm((PetscObject)EVAL),1,m,PETSC_DECIDE,Earray,&eval);CHKERRQ(ierr);
ierr = MatDenseRestoreArray(EVAL,&Earray);CHKERRQ(ierr);
//ierr = VecView(eval,PETSC_VIEWER_STDOUT_WORLD);CHKERRQ(ierr);
ierr = MatDiagonalScale(C2,NULL,eval);CHKERRQ(ierr); /* C2 = B*X*eval */
ierr = MatAXPY(C1,-1.0,C2,SAME_NONZERO_PATTERN);CHKERRQ(ierr); /* C1 = - C2 + C1 */
ierr = MatNorm(C1,NORM_FROBENIUS,&norm);CHKERRQ(ierr);
if (norm > 1.e-14) {
if (!rank) printf(" Warning: || A*X - B*X*We || = %g\n",norm);
}
ierr = MatDestroy(&C1);CHKERRQ(ierr);
ierr = MatDestroy(&C2);CHKERRQ(ierr);
ierr = VecDestroy(&eval);CHKERRQ(ierr);
ierr = MatDestroy(&EVAL);CHKERRQ(ierr);
ierr = MatDestroy(&X);CHKERRQ(ierr);
}
if (!isElemental) {
ierr = MatDestroy(&Ae);CHKERRQ(ierr);
ierr = MatDestroy(&Be);CHKERRQ(ierr);
/* Test MAT_REUSE_MATRIX which is only supported for inplace conversion */
ierr = MatConvert(A, MATELEMENTAL, MAT_INPLACE_MATRIX, &A);CHKERRQ(ierr);
//ierr = MatView(A,PETSC_VIEWER_STDOUT_WORLD);CHKERRQ(ierr);
}
ierr = MatDestroy(&We);CHKERRQ(ierr);
ierr = MatDestroy(&Xe);CHKERRQ(ierr);
ierr = MatDestroy(&A);CHKERRQ(ierr);
ierr = MatDestroy(&B);CHKERRQ(ierr);
ierr = PetscFinalize();
return 0;
}
| [
"maier.bn@gmail.com"
] | maier.bn@gmail.com |
36a2ad5a49fa948750cf1efcaffbe43364d01b0a | 503510d6e899af409e75b4ae1f3fb6c964f11448 | /src/Common/DirectX/DirectDraw/ScratchSurface.h | 7e597ff9d20006468fa5064ec22e7b1090e041c9 | [
"MIT"
] | permissive | karelz/WarPlusPlus | 5d0002066f705f9ae1952ed03a26d0e94f73cbdf | 9750f0d63bcddd91f253cc9618da3f8b1dda6c9c | refs/heads/master | 2020-06-05T05:31:41.208218 | 2019-09-16T14:00:26 | 2019-09-16T14:00:26 | 192,327,562 | 4 | 4 | MIT | 2019-09-16T14:00:27 | 2019-06-17T10:44:55 | C++ | UTF-8 | C++ | false | false | 1,626 | h | #if !defined(AFX_SCRATCHSURFACE_H__3A383C84_53D1_11D2_8EB5_947204C10000__INCLUDED_)
#define AFX_SCRATCHSURFACE_H__3A383C84_53D1_11D2_8EB5_947204C10000__INCLUDED_
#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000
// ScratchSurface.h : header file
//
#include "DDrawSurface.h"
/////////////////////////////////////////////////////////////////////////////
// CScratchSurface command target
class CScratchSurface : public CDDrawSurface
{
DECLARE_DYNAMIC(CScratchSurface)
public:
CScratchSurface(); // protected constructor used by dynamic creation
// Attributes
public:
// Operations
public:
// Implementation
public:
virtual void Restore();
void SetPixelFormat(DDPIXELFORMAT *pPF);
void SetAlphaChannel(BOOL bHasAlphaChannel);
void SetHeight(DWORD dwHeight);
void SetWidth(DWORD dwWidth);
// Sets the video memory flag
// TRUE -> the surface should be created in video memory
// if there is not enough video memory the surface will be created in system memory
// FALSE -> the surface must be created in system memory
void SetVideoMemory(BOOL bVideoMemory = TRUE){ m_bVideoMemory = bVideoMemory; }
virtual BOOL PreCreate(DDSURFACEDESC *ddsd);
virtual ~CScratchSurface();
#ifdef _DEBUG
virtual void Dump(CDumpContext &dc) const;
virtual void AssertValid() const;
#endif
private:
DDPIXELFORMAT * m_pPF;
// TRUE - if the surface is about to be created in the video memory
BOOL m_bVideoMemory;
};
/////////////////////////////////////////////////////////////////////////////
#endif // !defined(AFX_SCRATCHSURFACE_H__3A383C84_53D1_11D2_8EB5_947204C10000__INCLUDED_)
| [
"karelz@microsoft.com"
] | karelz@microsoft.com |
b87eb44a688460a6551ed22eba2b180035901489 | 6f6412ee82d41e13f79373e515ce110bd2c875b0 | /MinimizeHeight.cpp | 1adb154db7c7e0da5a77ed772cf2a32b9e8adff6 | [] | no_license | madhvimit123/Daily-Practice | d48c9f1f437c8fc1e7050ff6d740836a6360bfec | 01b804cd5702a54e1ee7a3fc372f7bf311d9ad29 | refs/heads/master | 2023-08-05T22:43:09.098345 | 2021-09-15T19:12:37 | 2021-09-15T19:12:37 | 402,145,560 | 0 | 0 | null | 2021-09-15T19:16:16 | 2021-09-01T17:22:13 | C++ | UTF-8 | C++ | false | false | 450 | cpp | // https://practice.geeksforgeeks.org/problems/minimize-the-heights3351/1#
// Minimize the Heights II
int getMinDiff(int arr[], int n, int k) {
// code here
int modifiedArr[n];
for(int i = 0; i < n; i++) {
if(arr[i]-k > 0) modifiedArr[i] = arr[i]-k;
else modifiedArr[i] = arr[i] + k;
}
return (*max_element(modifiedArr, modifiedArr+n) - *min_element(modifiedArr, modifiedArr+n));
} | [
"madhvi.mittal.1998@gmail.com"
] | madhvi.mittal.1998@gmail.com |
20f85fdc459343b22f2b6ce08c262f03a880acb8 | d36f50204152be13f5a6714035d26ce99e2fc11a | /rps.cpp | 453d6ba8a1c4cf1d015d401f5d9f98e5f03143ad | [] | no_license | Jimington/Shadam | d0f66e4f54f04d217af6d8d64ffc55580d781ca9 | b54811fb2c2897ace0839041da33f324b9b6441b | refs/heads/master | 2021-01-21T02:46:10.098759 | 2016-07-17T19:35:21 | 2016-07-17T19:35:21 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,746 | cpp | /**
* PROGRAM: rps.cpp
* AUTHOR: <#Type your own name here#>
* UNIQNAME: <#Type your uniqname here#>
*
* EECS 183: Project 2, Fall 2014
*
* <#A description of the project here#>
*/
#include <iostream>
#include <string>
using namespace std;
/*************************************************************************
* The following functions have already been implemented for you.
* You should use them when writing the other functions.
*************************************************************************/
/**
* Requires: Nothing.
* Modifies: Nothing.
* Effects : Prints a pretty header to introduce the user to the game.
*/
void printInitialHeader();
/**
* Requires: error_number be either 1 or 2.
* Modifies: Nothing.
* Effects : if error_number is 1, prints an error message indicating
* an illegal name was entered.
* if error_number is 2, prints an error message indicating
* an illegal move was entered.
*/
void printErrorMessage(int error_number);
/*************************************************************************
* You must implement all of the following functions.
*************************************************************************/
/**
* Requires: player_number is either 1 or 2.
* Modifies: Nothing.
* Effects : Prompts the user to enter their name. Names may have spaces
* within them. Example: Kermit the Frog, Fozzie
* If an empty name is given, print error message 1, and
* return a default name.
* For player 1, the default name is: Rocky
* For player 2, the default name is: Hulk
* Prompt : Player [player_number], enter your name:
* Used In : main()
*/
string getName(int player_number) {
cout << "Enter name for Player " << player_number << ": ";
string name;
getline(cin, name);
if (name == "") {
if (player_number == 1) {
name = "Rocky";
}
else {
name = "Hulk";
}
}
return name;
}
/**
* Requires: Nothing.
* Modifies: Nothing.
* Effects : Returns true if and only if move is a valid move character.
* Used In : getMove()
*/
bool isMoveGood(char move) {
if (move != 'r' && move != 'p' && move != 's') {
return false;
}
return true;
}
/**
* Requires: player_name is the name of the player being prompted for a move.
* Modifies: Nothing.
* Effects : Prompts the player for their move and returns it.
* This function should accept the first non-whitespace character as
* the move
* If an illegal character is entered for their move, print error
* message 2 and return rock as a default.
* Prompt : [player_name], enter your move:
* Used In : doRound()
*/
char getMove(string player_name) {
cout << player_name << ", your move: ";
}
/**
* Requires: move is the move of the player being checked for a win.
* opponent_move is the move of the opponent.
* Modifies: Nothing.
* Effects : Returns true if and only if the player who made move won.
* Used In : doRound()
*/
bool isRoundWinner(char move, char opponent_move);
/**
* Requires: Nothing.
* Modifies: Nothing.
* Effects : If winner_name is empty, prints a message indicating the round is
* a draw. Otherwise, prints a congratulatory message to the winner.
* Prompt : This round is a draw!
* [winner_name] wins the round!
* Used In : doRound()
*/
void announceRoundWinner(string winner_name);
/**
* Requires: p1_name and p2_name are the names of the respective players.
* Modifies: Nothing.
* Effects : Simulates a complete round, returning 0 if the round was a draw;
* 1 if player 1 won; 2 if player 2 won.
* Used In : main()
*/
int doRound(string p1_name, string p2_name);
/**
* Requires: player_num is 1 or 2,
* r1_result, r2_result, r3_result is 0,1, or 2
* r1_result is result of round 1 play as determined by doRound(...)
* similar for r2_result and r3_result.
* Modifies: Nothing.
* Effects : Returns the number of times that player_num won.
* Used In : main()
*/
int getWinCount(int player_num, int r1_result, int r2_result, int r3_result);
/**
* Requires: Nothing.
* Modifies: Nothing.
* Effects : If winner_name is blank, prints that the game was a draw.
* Otherwise, prints a congratulatory message to the winner.
* Prompt : No winner!
* Congratulations [winner_name]!
* You won EECS 183 Rock-Paper-Scissors!
* Used In : main()
*/
void announceWinner(string winner_name);
int main() {
// Print the header
void printInitialHeader();
// Get the player names
// Simulate the first 2 rounds
// Check if either player already clinched a win:
// If they have, announce the winner.
// Otherwise, simulate the third round, find who has more wins,
// and announce the winner.
return 0;
}
/*************************************************************************
* Put all function implementations below here.
*************************************************************************/
void printInitialHeader() {
cout << "----------------------------------------" << endl;
cout << " EECS 183 " << endl;
cout << " Rock-Paper-Scissors " << endl;
cout << "----------------------------------------" << endl << endl;
}
void printErrorMessage(int error_number) {
if (error_number == 1) {
cout << endl << "ERROR: Illegal name given, using default" << endl;
} else if (error_number == 2) {
cout << endl << "ERROR: Illegal move given, using default" << endl;
} else {
cout << "This should never print!";
}
}
| [
"befost@umich.edu"
] | befost@umich.edu |
527884caf2ed43e176defd74105567b8a41da0f2 | cbd3ac62b75ac3dceb6ffb219eaa3fe9d2ef0c00 | /src/net/proxy_resolution/mock_pac_file_fetcher.h | 2947259a18027fcfd7dbcadc4af797157870f873 | [
"BSD-3-Clause"
] | permissive | crazypeace/naiveproxy | d403fa282bcf65cac3eacb519667d6767080d05d | 0a8242dca02b760272d4a0eb8f8a712f9d1093c4 | refs/heads/master | 2023-03-09T21:23:30.415305 | 2022-10-06T17:23:40 | 2022-10-06T17:23:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,721 | 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 NET_PROXY_RESOLUTION_MOCK_PAC_FILE_FETCHER_H_
#define NET_PROXY_RESOLUTION_MOCK_PAC_FILE_FETCHER_H_
#include "base/compiler_specific.h"
#include "base/memory/raw_ptr.h"
#include "net/base/completion_once_callback.h"
#include "net/proxy_resolution/pac_file_fetcher.h"
#include "net/traffic_annotation/network_traffic_annotation.h"
#include "url/gurl.h"
#include <string>
namespace net {
class URLRequestContext;
// A mock PacFileFetcher. No result will be returned to the fetch client
// until we call NotifyFetchCompletion() to set the results.
class MockPacFileFetcher : public PacFileFetcher {
public:
MockPacFileFetcher();
~MockPacFileFetcher() override;
// PacFileFetcher implementation.
int Fetch(const GURL& url,
std::u16string* text,
CompletionOnceCallback callback,
const NetworkTrafficAnnotationTag traffic_annotation) override;
void Cancel() override;
void OnShutdown() override;
URLRequestContext* GetRequestContext() const override;
void NotifyFetchCompletion(int result, const std::string& ascii_text);
const GURL& pending_request_url() const;
bool has_pending_request() const;
// Spins the message loop until this->Fetch() is invoked.
void WaitUntilFetch();
private:
GURL pending_request_url_;
CompletionOnceCallback pending_request_callback_;
raw_ptr<std::u16string> pending_request_text_ = nullptr;
base::OnceClosure on_fetch_complete_;
bool is_shutdown_ = false;
};
} // namespace net
#endif // NET_PROXY_RESOLUTION_MOCK_PAC_FILE_FETCHER_H_
| [
"kizdiv@gmail.com"
] | kizdiv@gmail.com |
be3d08ac9fb2a19af30ef54469c12bd5f0136872 | 0472add338177d64ef6203c723ca0a6b709e0e28 | /src/libc/data_struct/hashmap.cpp | 435679e31be1adbea0ecf13b7b3c14ea1f2da4fa | [] | no_license | miguelangelo78/Kernel-Test | 4dfb3e8862f642d2dc24820b666ac089b71765c1 | 8d05bc7b4a0d65e98bb1e8a83c83531506974d6e | refs/heads/master | 2021-01-21T04:44:17.354578 | 2016-07-24T20:54:26 | 2016-07-24T20:54:26 | 45,086,436 | 4 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 5,335 | cpp | #include <libc/hashmap.h>
#include <system.h>
#include <module.h>
unsigned int hashmap_string_hash(void * _key) {
unsigned int hash = 0;
char * key = (char *)_key;
int c;
/* This is the so-called "sdbm" hash. It comes from a piece of
* public domain code from a clone of ndbm. */
while ((c = *key++)) {
hash = c + (hash << 6) + (hash << 16) - hash;
}
return hash;
}
int hashmap_string_comp(void * a, void * b) {
return !strcmp((const char*)a, (const char*)b);
}
void * hashmap_string_dupe(void * key) {
return strdup((const char*)key);
}
unsigned int hashmap_int_hash(void * key) {
return (unsigned int)key;
}
int hashmap_int_comp(void * a, void * b) {
return (int)a == (int)b;
}
void * hashmap_int_dupe(void * key) {
return key;
}
static void hashmap_int_free(void * ptr) {
return;
}
hashmap_t * hashmap_create(int size) {
hashmap_t * map = (hashmap_t*)malloc(sizeof(hashmap_t));
map->hash_func = &hashmap_string_hash;
map->hash_comp = &hashmap_string_comp;
map->hash_key_dup = &hashmap_string_dupe;
map->hash_key_free = &free;
map->hash_val_free = &free;
map->size = size;
map->entries = (hashmap_entry_t**)malloc(sizeof(hashmap_entry_t *) * size);
memset(map->entries, 0x00, sizeof(hashmap_entry_t *) * size);
return map;
}
EXPORT_SYMBOL(hashmap_create);
hashmap_t * hashmap_create_int(int size) {
hashmap_t * map = (hashmap_t*)malloc(sizeof(hashmap_t));
map->hash_func = &hashmap_int_hash;
map->hash_comp = &hashmap_int_comp;
map->hash_key_dup = &hashmap_int_dupe;
map->hash_key_free = &hashmap_int_free;
map->hash_val_free = &free;
map->size = size;
map->entries = (hashmap_entry_t**)malloc(sizeof(hashmap_entry_t *) * size);
memset(map->entries, 0x00, sizeof(hashmap_entry_t *) * size);
return map;
}
void * hashmap_set(hashmap_t * map, void * key, void * value) {
unsigned int hash = map->hash_func(key) % map->size;
hashmap_entry_t * x = map->entries[hash];
if (!x) {
hashmap_entry_t * e = (hashmap_entry_t*)malloc(sizeof(hashmap_entry_t));
e->key = (char*)map->hash_key_dup(key);
e->value = value;
e->next = 0;
map->entries[hash] = e;
return 0;
}
else {
hashmap_entry_t * p = 0;
do {
if (map->hash_comp(x->key, key)) {
void * out = x->value;
x->value = value;
return out;
}
else {
p = x;
x = x->next;
}
} while (x);
hashmap_entry_t * e = (hashmap_entry_t*)malloc(sizeof(hashmap_entry_t));
e->key = (char*)map->hash_key_dup(key);
e->value = value;
e->next = 0;
p->next = e;
return 0;
}
}
EXPORT_SYMBOL(hashmap_set);
void * hashmap_get(hashmap_t * map, void * key) {
unsigned int hash = map->hash_func(key) % map->size;
hashmap_entry_t * x = map->entries[hash];
if (!x) {
return 0;
}
else {
do {
if (map->hash_comp(x->key, key)) {
return x->value;
}
x = x->next;
} while (x);
return 0;
}
}
EXPORT_SYMBOL(hashmap_get);
void * hashmap_get_i(hashmap_t * map, int idx) {
hashmap_entry_t * x = map->entries[idx];
int i = 0;
if (!x) {
return 0;
} else {
do {
if (i++ == idx)
return x->value;
x = x->next;
} while (x);
return 0;
}
}
EXPORT_SYMBOL(hashmap_get_i);
void * hashmap_remove(hashmap_t * map, void * key) {
unsigned int hash = map->hash_func(key) % map->size;
hashmap_entry_t * x = map->entries[hash];
if (!x) {
return 0;
}
else {
if (map->hash_comp(x->key, key)) {
void * out = x->value;
map->entries[hash] = x->next;
map->hash_key_free(x->key);
map->hash_val_free(x);
return out;
}
else {
hashmap_entry_t * p = x;
x = x->next;
do {
if (map->hash_comp(x->key, key)) {
void * out = x->value;
p->next = x->next;
map->hash_key_free(x->key);
map->hash_val_free(x);
return out;
}
p = x;
x = x->next;
} while (x);
}
return 0;
}
}
EXPORT_SYMBOL(hashmap_remove);
int hashmap_has(hashmap_t * map, void * key) {
unsigned int hash = map->hash_func(key) % map->size;
hashmap_entry_t * x = map->entries[hash];
if (!x) {
return 0;
}
else {
do {
if (map->hash_comp(x->key, key))
return 1;
x = x->next;
} while (x);
return 0;
}
}
EXPORT_SYMBOL(hashmap_has);
list_t * hashmap_keys(hashmap_t * map) {
list_t * l = list_create();
for (unsigned int i = 0; i < map->size; ++i) {
hashmap_entry_t * x = map->entries[i];
while (x) {
list_insert(l, x->key);
x = x->next;
}
}
return l;
}
list_t * hashmap_values(hashmap_t * map) {
list_t * l = list_create();
for (unsigned int i = 0; i < map->size; ++i) {
hashmap_entry_t * x = map->entries[i];
while (x) {
list_insert(l, x->value);
x = x->next;
}
}
return l;
}
void hashmap_free(hashmap_t * map) {
for (unsigned int i = 0; i < map->size; ++i) {
hashmap_entry_t * x = map->entries[i], *p;
while (x) {
p = x;
x = x->next;
map->hash_key_free(p->key);
map->hash_val_free(p);
}
}
free(map->entries);
}
int hashmap_size(hashmap_t * map) {
int size = 0;
for (unsigned int i = 0; i < map->size; ++i) {
hashmap_entry_t * x = map->entries[i];
while (x) {
size++;
x = x->next;
}
}
return size;
}
| [
"santosmiguel25@gmail.com"
] | santosmiguel25@gmail.com |
81dc8f54d28c615648e123c35409bdac9dc81b89 | e941c717e79e664cbabd388037c56134c0adb54b | /include/constant.h | 3ff5632ee44c7feceb419440282455fa55144388 | [] | no_license | adkevin3307/npshell | 8ee49616febdf11b38b122dcae9cacbaf980ba74 | d3a240fd8abd551c33febc0028cfa88d005bd03b | refs/heads/master | 2023-02-13T21:34:52.191005 | 2021-01-04T05:38:24 | 2021-01-04T05:38:24 | 302,089,258 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 369 | h | #pragma once
namespace Constant {
enum IOTARGET {
IN,
OUT,
ERR
};
enum IO {
STANDARD,
PIPE,
N_PIPE,
U_PIPE,
FILE
};
enum BUILTIN {
EXIT,
CD,
SETENV,
PRINTENV,
WHO,
TELL,
YELL,
NAME,
NONE,
FAIL
};
}; | [
"adkevin3307@gmail.com"
] | adkevin3307@gmail.com |
b8328f51344e047bb92a608f36aa7721b1283790 | 4b13d01429cd08e8645fbcd88f93845397c3963a | /HySDB/site_arranger.cpp | 03268df2be6e942c895e06a4bc91ec25dc29c9b4 | [] | no_license | chiewen/HMOD | a4d2a29b03c86bac504c19554ce5aebd86c111dc | 691dd95ca65b326bf12a499354bbf00c0f4b840a | refs/heads/master | 2021-01-15T18:21:35.147795 | 2017-08-17T14:36:24 | 2017-08-17T14:36:24 | 99,777,923 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,019 | cpp | #include "stdafx.h"
#include "site_arranger.h"
#include <string>
#include <iostream>
#include <fstream>
#include <regex>
#include <thread>
#include <memory>
#include <mutex>
vector<UpdateInfo> SiteArranger::updates_{};
void SiteArranger::ReadData(const string& path) {
vector<string> vec_lines;
string line;
ifstream node_file(path);
for (int i = 0; i < 100000; i++) {
getline(node_file, line);
vec_lines.push_back(line);
}
cout << "end reading" << vec_lines.size() << endl;
node_file.close();
updates_.clear();
updates_.reserve(100000);
regex reg_node("([0-9]*)[\\t\\s]+([0-9]*\\.?[0-9]+)[\\t\\s]+([0-9]*\\.?[0-9]+)");
smatch m;
for (size_t i = 0; i < 10; i++) {
for (size_t j = 0; j < 1000; j++) {
if (regex_search(vec_lines[i * 1000 + j].cbegin(), vec_lines[i * 1000 + j].cend(), m, reg_node)) {
updates_.push_back({stoi(m.str(1)), (int)stof(m.str(2)) * 100, (int)stof(m.str(3)) * 100, (int)i});
}
}
cout << "." << updates_.size() << endl;
}
cout << endl << updates_.size();
}
| [
"lichuanwen@ise.neu.edu.cn"
] | lichuanwen@ise.neu.edu.cn |
881144c388fa9783aaac86af769a3a9b876dcf76 | f092f1b66e6b531844da873e57020b4e27781f59 | /GLShader.h | 46b0478e86bdd578c144e6f94e7dbc85847b318e | [] | no_license | buffer8848/gl-sandbox | 902eb50de83905bdc3a07ebd7f2e66f7eda2d464 | 8a0a39f1dfdb8bc4f5c39fbef8556e89c7e75dc8 | refs/heads/master | 2021-01-10T12:54:35.694921 | 2012-11-06T15:52:14 | 2012-11-06T15:52:14 | 48,788,689 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 777 | h | #pragma once
#include <string>
#include <iostream>
#include <fstream>
#include <GL/glew.h>
class GLShader
{
public:
GLShader(std::string vertFile, std::string fragFile, std::string geomFile);
GLShader(std::string vertFile, std::string fragFile);
virtual ~GLShader(void);
void Compile();
bool initGLShaders(); //Sets up our glsl objects
GLuint getVert();
GLuint getFrag();
GLuint getGeom();
private:
const GLchar* m_vertString;
const GLchar* m_fragString;
const GLchar* m_geomString;
int m_vertSize;
int m_fragSize;
int m_geomSize;
GLuint m_vertObj;
GLuint m_fragObj;
GLuint m_geomObj;
GLchar* loadString(std::ifstream& in, int* length); //Gets a char* from input stream, stores the array size in *length
};
| [
"raptorivaz@gmail.com"
] | raptorivaz@gmail.com |
d5f88cdffb61629d27ea5d8591620a31292b5502 | 270da718003fea9e9b73cc44b85c0a2c693b578a | /FlappyBird/src/tests/TestTexture2D.h | cdcfc3fe820e05880d28e6b347d8d145a7db4507 | [] | no_license | andregri/FlappyBird | b6c43394d59191030ce0d57076e86532b9cde505 | cb1f69942cac65c7617c1697d8f0ce8b5776fd46 | refs/heads/master | 2022-12-28T00:32:19.768401 | 2020-09-22T19:30:04 | 2020-09-22T19:30:04 | 302,754,763 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 321 | h | #pragma once
#include "Test.h"
#include "Shader.h"
namespace test {
class TestTexture2D : public Test
{
public:
TestTexture2D();
~TestTexture2D();
void OnRender() override;
void OnImGuiRender() override;
private:
Shader m_Shader;
GLuint m_VAO;
GLuint m_VB;
GLuint m_IB;
GLuint m_Texture;
};
} | [
"andrea.grillo96@live.com"
] | andrea.grillo96@live.com |
150c516981cad57a89029db46f1606688d191ed5 | 8f9ff29fba94ad14187e4ebf3d72d2b8873508a7 | /include/multimethods/logic_error.hpp | a576a0673736cf35fe9fdb100a0c9c66d9c39947 | [] | no_license | jll63/hutorny-multimethods | 1ef26f6b12a57978e79578abaa39593057d9e6cb | d587abf799078202fa0002b5853eb7c6ec107afd | refs/heads/master | 2023-03-31T15:06:16.244360 | 2021-02-02T06:55:38 | 2021-04-03T06:05:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 504 | hpp | #pragma once
#if __cpp_exceptions >= 199711
# include <stdexcept>
# define LOGIC_ERROR(msg) throw std::logic_error(msg)
inline void expects(bool condition, [[maybe_unused]] const char* msg) {
if(not condition) throw std::logic_error(msg);
}
#else
# include <cassert>
# include <cstdlib>
# define LOGIC_ERROR(msg) do { assert(!msg); abort(); } while(1)
inline void expects(bool condition, [[maybe_unused]] const char* msg) {
if(not condition) assert(!msg);
}
#endif
| [
"eugene@hutorny.in.ua"
] | eugene@hutorny.in.ua |
58caf2060fbb220b2d83762944d5c1af63203f88 | 867ff072cd09004cc4320f498bb0dab931fd250d | /deps/chakrashim/core/lib/wabt/src/binary-reader-nop.h | 7af11f7b02f9d03ebbcafa1f7ccf5b1f69f39e13 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference",
"BSD-3-Clause",
"LicenseRef-scancode-unicode",
"ICU",
"LicenseRef-scancode-openssl",
"NAIST-2003",
"ISC",
"Zlib",
"LicenseRef-scancode-public-domain",
"NTP",
"BSD-2-Clause",
"Artistic-2.0",
"MIT"
] | permissive | enricogior/nodejs-mobile | 8d281f5f1e4de729d63b75c57e3c53f141e83e89 | 3af940ed9828221faa3fcf3acba8bcece1bed6d2 | refs/heads/mobile-master | 2021-07-07T11:44:33.679838 | 2017-10-02T21:28:48 | 2017-10-02T21:28:48 | 105,641,188 | 0 | 1 | null | 2017-10-03T10:53:23 | 2017-10-03T10:53:23 | null | UTF-8 | C++ | false | false | 13,077 | h | /*
* Copyright 2016 WebAssembly Community Group participants
*
* 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.
*/
#ifndef WABT_BINARY_READER_NOP_H_
#define WABT_BINARY_READER_NOP_H_
#include "binary-reader.h"
namespace wabt {
class BinaryReaderNop : public BinaryReaderDelegate {
public:
bool OnError(const char* message) override { return false; }
/* Module */
Result BeginModule(uint32_t version) override { return Result::Ok; }
Result EndModule() override { return Result::Ok; }
Result BeginSection(BinarySection section_type, Offset size) override {
return Result::Ok;
}
/* Custom section */
Result BeginCustomSection(Offset size, StringSlice section_name) override {
return Result::Ok;
}
Result EndCustomSection() override { return Result::Ok; }
/* Type section */
Result BeginTypeSection(Offset size) override { return Result::Ok; }
Result OnTypeCount(Index count) override { return Result::Ok; }
Result OnType(Index index,
Index param_count,
Type* param_types,
Index result_count,
Type* result_types) override {
return Result::Ok;
}
Result EndTypeSection() override { return Result::Ok; }
/* Import section */
Result BeginImportSection(Offset size) override { return Result::Ok; }
Result OnImportCount(Index count) override { return Result::Ok; }
Result OnImport(Index index,
StringSlice module_name,
StringSlice field_name) override {
return Result::Ok;
}
Result OnImportFunc(Index import_index,
StringSlice module_name,
StringSlice field_name,
Index func_index,
Index sig_index) override {
return Result::Ok;
}
Result OnImportTable(Index import_index,
StringSlice module_name,
StringSlice field_name,
Index table_index,
Type elem_type,
const Limits* elem_limits) override {
return Result::Ok;
}
Result OnImportMemory(Index import_index,
StringSlice module_name,
StringSlice field_name,
Index memory_index,
const Limits* page_limits) override {
return Result::Ok;
}
Result OnImportGlobal(Index import_index,
StringSlice module_name,
StringSlice field_name,
Index global_index,
Type type,
bool mutable_) override {
return Result::Ok;
}
Result EndImportSection() override { return Result::Ok; }
/* Function section */
Result BeginFunctionSection(Offset size) override { return Result::Ok; }
Result OnFunctionCount(Index count) override { return Result::Ok; }
Result OnFunction(Index index, Index sig_index) override {
return Result::Ok;
}
Result EndFunctionSection() override { return Result::Ok; }
/* Table section */
Result BeginTableSection(Offset size) override { return Result::Ok; }
Result OnTableCount(Index count) override { return Result::Ok; }
Result OnTable(Index index,
Type elem_type,
const Limits* elem_limits) override {
return Result::Ok;
}
Result EndTableSection() override { return Result::Ok; }
/* Memory section */
Result BeginMemorySection(Offset size) override { return Result::Ok; }
Result OnMemoryCount(Index count) override { return Result::Ok; }
Result OnMemory(Index index, const Limits* limits) override {
return Result::Ok;
}
Result EndMemorySection() override { return Result::Ok; }
/* Global section */
Result BeginGlobalSection(Offset size) override { return Result::Ok; }
Result OnGlobalCount(Index count) override { return Result::Ok; }
Result BeginGlobal(Index index, Type type, bool mutable_) override {
return Result::Ok;
}
Result BeginGlobalInitExpr(Index index) override { return Result::Ok; }
Result EndGlobalInitExpr(Index index) override { return Result::Ok; }
Result EndGlobal(Index index) override { return Result::Ok; }
Result EndGlobalSection() override { return Result::Ok; }
/* Exports section */
Result BeginExportSection(Offset size) override { return Result::Ok; }
Result OnExportCount(Index count) override { return Result::Ok; }
Result OnExport(Index index,
ExternalKind kind,
Index item_index,
StringSlice name) override {
return Result::Ok;
}
Result EndExportSection() override { return Result::Ok; }
/* Start section */
Result BeginStartSection(Offset size) override { return Result::Ok; }
Result OnStartFunction(Index func_index) override { return Result::Ok; }
Result EndStartSection() override { return Result::Ok; }
/* Code section */
Result BeginCodeSection(Offset size) override { return Result::Ok; }
Result OnFunctionBodyCount(Index count) override { return Result::Ok; }
Result BeginFunctionBody(Index index) override { return Result::Ok; }
Result OnLocalDeclCount(Index count) override { return Result::Ok; }
Result OnLocalDecl(Index decl_index, Index count, Type type) override {
return Result::Ok;
}
/* Function expressions; called between BeginFunctionBody and
EndFunctionBody */
Result OnOpcode(Opcode Opcode) override { return Result::Ok; }
Result OnOpcodeBare() override { return Result::Ok; }
Result OnOpcodeIndex(Index value) override { return Result::Ok; }
Result OnOpcodeUint32(uint32_t value) override { return Result::Ok; }
Result OnOpcodeUint32Uint32(uint32_t value, uint32_t value2) override {
return Result::Ok;
}
Result OnOpcodeUint64(uint64_t value) override { return Result::Ok; }
Result OnOpcodeF32(uint32_t value) override { return Result::Ok; }
Result OnOpcodeF64(uint64_t value) override { return Result::Ok; }
Result OnOpcodeBlockSig(Index num_types, Type* sig_types) override {
return Result::Ok;
}
Result OnBinaryExpr(Opcode opcode) override { return Result::Ok; }
Result OnBlockExpr(Index num_types, Type* sig_types) override {
return Result::Ok;
}
Result OnBrExpr(Index depth) override { return Result::Ok; }
Result OnBrIfExpr(Index depth) override { return Result::Ok; }
Result OnBrTableExpr(Index num_targets,
Index* target_depths,
Index default_target_depth) override {
return Result::Ok;
}
Result OnCallExpr(Index func_index) override { return Result::Ok; }
Result OnCallIndirectExpr(Index sig_index) override { return Result::Ok; }
Result OnCompareExpr(Opcode opcode) override { return Result::Ok; }
Result OnConvertExpr(Opcode opcode) override { return Result::Ok; }
Result OnCurrentMemoryExpr() override { return Result::Ok; }
Result OnDropExpr() override { return Result::Ok; }
Result OnElseExpr() override { return Result::Ok; }
Result OnEndExpr() override { return Result::Ok; }
Result OnEndFunc() override { return Result::Ok; }
Result OnF32ConstExpr(uint32_t value_bits) override { return Result::Ok; }
Result OnF64ConstExpr(uint64_t value_bits) override { return Result::Ok; }
Result OnGetGlobalExpr(Index global_index) override { return Result::Ok; }
Result OnGetLocalExpr(Index local_index) override { return Result::Ok; }
Result OnGrowMemoryExpr() override { return Result::Ok; }
Result OnI32ConstExpr(uint32_t value) override { return Result::Ok; }
Result OnI64ConstExpr(uint64_t value) override { return Result::Ok; }
Result OnIfExpr(Index num_types, Type* sig_types) override {
return Result::Ok;
}
Result OnLoadExpr(Opcode opcode,
uint32_t alignment_log2,
Address offset) override {
return Result::Ok;
}
Result OnLoopExpr(Index num_types, Type* sig_types) override {
return Result::Ok;
}
Result OnNopExpr() override { return Result::Ok; }
Result OnReturnExpr() override { return Result::Ok; }
Result OnSelectExpr() override { return Result::Ok; }
Result OnSetGlobalExpr(Index global_index) override { return Result::Ok; }
Result OnSetLocalExpr(Index local_index) override { return Result::Ok; }
Result OnStoreExpr(Opcode opcode,
uint32_t alignment_log2,
Address offset) override {
return Result::Ok;
}
Result OnTeeLocalExpr(Index local_index) override { return Result::Ok; }
Result OnUnaryExpr(Opcode opcode) override { return Result::Ok; }
Result OnUnreachableExpr() override { return Result::Ok; }
Result EndFunctionBody(Index index) override { return Result::Ok; }
Result EndCodeSection() override { return Result::Ok; }
/* Elem section */
Result BeginElemSection(Offset size) override { return Result::Ok; }
Result OnElemSegmentCount(Index count) override { return Result::Ok; }
Result BeginElemSegment(Index index, Index table_index) override {
return Result::Ok;
}
Result BeginElemSegmentInitExpr(Index index) override { return Result::Ok; }
Result EndElemSegmentInitExpr(Index index) override { return Result::Ok; }
Result OnElemSegmentFunctionIndexCount(Index index, Index count) override {
return Result::Ok;
}
Result OnElemSegmentFunctionIndex(Index index, Index func_index) override {
return Result::Ok;
}
Result EndElemSegment(Index index) override { return Result::Ok; }
Result EndElemSection() override { return Result::Ok; }
/* Data section */
Result BeginDataSection(Offset size) override { return Result::Ok; }
Result OnDataSegmentCount(Index count) override { return Result::Ok; }
Result BeginDataSegment(Index index, Index memory_index) override {
return Result::Ok;
}
Result BeginDataSegmentInitExpr(Index index) override { return Result::Ok; }
Result EndDataSegmentInitExpr(Index index) override { return Result::Ok; }
Result OnDataSegmentData(Index index,
const void* data,
Address size) override {
return Result::Ok;
}
Result EndDataSegment(Index index) override { return Result::Ok; }
Result EndDataSection() override { return Result::Ok; }
/* Names section */
Result BeginNamesSection(Offset size) override { return Result::Ok; }
Result OnFunctionNameSubsection(Index index,
uint32_t name_type,
Offset subsection_size) override {
return Result::Ok;
}
Result OnFunctionNamesCount(Index num_functions) override {
return Result::Ok;
}
Result OnFunctionName(Index function_index,
StringSlice function_name) override {
return Result::Ok;
}
Result OnLocalNameSubsection(Index index,
uint32_t name_type,
Offset subsection_size) override {
return Result::Ok;
}
Result OnLocalNameFunctionCount(Index num_functions) override {
return Result::Ok;
}
Result OnLocalNameLocalCount(Index function_index,
Index num_locals) override {
return Result::Ok;
}
Result OnLocalName(Index function_index,
Index local_index,
StringSlice local_name) override {
return Result::Ok;
}
Result EndNamesSection() override { return Result::Ok; }
/* Reloc section */
Result BeginRelocSection(Offset size) override { return Result::Ok; }
Result OnRelocCount(Index count,
BinarySection section_code,
StringSlice section_name) override {
return Result::Ok;
}
Result OnReloc(RelocType type,
Offset offset,
Index index,
uint32_t addend) override {
return Result::Ok;
}
Result EndRelocSection() override { return Result::Ok; }
/* InitExpr - used by elem, data and global sections; these functions are
* only called between calls to Begin*InitExpr and End*InitExpr */
Result OnInitExprF32ConstExpr(Index index, uint32_t value) override {
return Result::Ok;
}
Result OnInitExprF64ConstExpr(Index index, uint64_t value) override {
return Result::Ok;
}
Result OnInitExprGetGlobalExpr(Index index, Index global_index) override {
return Result::Ok;
}
Result OnInitExprI32ConstExpr(Index index, uint32_t value) override {
return Result::Ok;
}
Result OnInitExprI64ConstExpr(Index index, uint64_t value) override {
return Result::Ok;
}
};
} // namespace wabt
#endif /* WABT_BINARY_READER_H_ */
| [
"kfarnung@microsoft.com"
] | kfarnung@microsoft.com |
fd2300f0f479ec007cbd5a916a453bdbcc0773b0 | 645847547bc80c462143fcf0e6c996626dbe3d46 | /private/shell/ext/url/urlexec.cpp | 9aeff3e7d3efbb0d9fdbc05e45b78cb9c8719db0 | [] | no_license | v-jush/win2k | 8834ed687e04f2b9475d36673fe4e8986020581b | b6f6742e44e41c7fd5c4e75ca3e6605e426239de | refs/heads/master | 2020-09-24T18:05:38.920032 | 2019-08-15T03:13:13 | 2019-08-15T03:13:13 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 14,712 | cpp | /*
* urlexec.cpp - IUnknown implementation for Intshcut class.
*/
#include "project.hpp"
#include "urlshell.h"
#include "clsfact.h"
#include "resource.h"
#include <mluisupp.h>
// URL Exec Hook
class CURLExec : public IShellExecuteHookA, public IShellExecuteHookW
{
private:
ULONG m_cRef;
~CURLExec(void); // Prevent this class from being allocated on the stack or it will fault.
public:
CURLExec(void);
// IShellExecuteHook methods
// Ansi
STDMETHODIMP Execute(LPSHELLEXECUTEINFOA pei);
// Unicode
STDMETHODIMP Execute(LPSHELLEXECUTEINFOW pei);
// IUnknown methods
STDMETHODIMP QueryInterface(REFIID riid, PVOID *ppvObj);
STDMETHODIMP_(ULONG) AddRef(void);
STDMETHODIMP_(ULONG) Release(void);
#ifdef DEBUG
friend BOOL IsValidPCURLExec(const CURLExec * pue);
#endif
};
#ifdef DEBUG
BOOL IsValidPCURLExec(CURLExec * pue)
{
return (IS_VALID_READ_PTR(pue, CURLExec));
}
#endif
CURLExec::CURLExec(void) : m_cRef(1)
{
// CURLExec objects should always be allocated
ASSERT(IS_VALID_STRUCT_PTR(this, CURLExec));
DLLAddRef();
}
CURLExec::~CURLExec(void)
{
ASSERT(IS_VALID_STRUCT_PTR(this, CURLExec));
DLLRelease();
}
/*
Purpose: IUnknown::QueryInterface handler for CURLExec
*/
STDMETHODIMP CURLExec::QueryInterface(REFIID riid, PVOID *ppvObj)
{
if (IsEqualIID(riid, IID_IUnknown) ||
IsEqualIID(riid, IID_IShellExecuteHookA))
{
*ppvObj = SAFECAST(this, IShellExecuteHookA *);
}
else if (IsEqualIID(riid, IID_IShellExecuteHookW))
{
*ppvObj = SAFECAST(this, IShellExecuteHookW *);
}
else
{
*ppvObj = NULL;
return E_NOINTERFACE;
}
AddRef();
return NOERROR;
}
STDMETHODIMP_(ULONG) CURLExec::AddRef()
{
return ++m_cRef;
}
STDMETHODIMP_(ULONG) CURLExec::Release()
{
m_cRef--;
if (m_cRef > 0)
return m_cRef;
delete this;
return 0;
}
typedef BOOL (* PFNVERQUERYVALUEA)(const LPVOID pBlock,
LPCSTR lpSubBlock, LPVOID * lplpBuffer, LPDWORD lpuLen);
typedef DWORD (* PFNGETFILEVERSIONINFOSIZEA) (
LPCSTR lptstrFilename, LPDWORD lpdwHandle);
typedef BOOL (* PFNGETFILEVERSIONINFOA) (
LPCSTR lptstrFilename, DWORD dwHandle, DWORD dwLen, LPVOID lpData);
#define BLOCK_FILE2 TEXT("infinst2.exe") //for 3.02
#define BLOCK_FILE TEXT("infinst.exe") //for 3.0 and 3.01
#define BLOCK_FILE_VERSION 0x00040046 //4.70
// from shlexec.c
#define SEE_MASK_CLASS (SEE_MASK_CLASSNAME|SEE_MASK_CLASSKEY)
/*
Purpose: IShellExecuteHook::Execute handler for CURLExec
*/
STDMETHODIMP CURLExec::Execute(LPSHELLEXECUTEINFOA pei)
{
HRESULT hres;
ASSERT(IS_VALID_STRUCT_PTR(this, CURLExec));
ASSERT(IS_VALID_READ_PTR(pei, SHELLEXECUTEINFO));
if (! pei->lpVerb ||
! lstrcmpi(pei->lpVerb, TEXT("open")))
{
if (pei->lpFile)
{
LPTSTR pszURL;
LPTSTR psz = PathFindFileName(pei->lpFile);
if (lstrcmpi(psz, BLOCK_FILE2) == 0 ||
lstrcmpi(psz, BLOCK_FILE) == 0)
{
HINSTANCE hinst = LoadLibrary("VERSION.DLL");
if(hinst)
{
PFNVERQUERYVALUEA pfnVerQueryValue =
(PFNVERQUERYVALUEA)GetProcAddress(hinst, "VerQueryValueA");
PFNGETFILEVERSIONINFOSIZEA pfnGetFileVersionInfoSize =
(PFNGETFILEVERSIONINFOSIZEA)GetProcAddress(hinst, "GetFileVersionInfoSizeA");
PFNGETFILEVERSIONINFOA pfnGetFileVersionInfo =
(PFNGETFILEVERSIONINFOA)GetProcAddress(hinst, "GetFileVersionInfoA");
if (pfnVerQueryValue &&
pfnGetFileVersionInfo &&
pfnGetFileVersionInfoSize)
{
CHAR chBuffer[2048]; // hopefully this is enough
DWORD cb;
DWORD dwHandle;
VS_FIXEDFILEINFO *pffi = NULL;
cb = pfnGetFileVersionInfoSize(pei->lpFile, &dwHandle);
if (cb <= ARRAYSIZE(chBuffer) &&
pfnGetFileVersionInfo(pei->lpFile, dwHandle, ARRAYSIZE(chBuffer), chBuffer) &&
pfnVerQueryValue(chBuffer, TEXT("\\"), (LPVOID*)&pffi, &cb))
{
if (pffi->dwProductVersionMS == BLOCK_FILE_VERSION &&
pei->fMask & SEE_MASK_NOCLOSEPROCESS)
{
STARTUPINFO si;
PROCESS_INFORMATION pi;
TCHAR szText[256];
TCHAR szTitle[80];
memset(&si, 0, sizeof(si));
si.cb = sizeof(si);
if (CreateProcess(NULL, TEXT("rundll32.exe url.dll,DummyEntryPoint"),
NULL, NULL, FALSE, 0, NULL, NULL, &si, &pi))
{
pei->hProcess = pi.hProcess;
}
// inform user that we won't run this exe
MLLoadString(IDS_IE3_INSTALL_BLOCK_TEXT, szText, ARRAYSIZE(szText));
MLLoadString(IDS_IE3_INSTALL_BLOCK_TITLE, szTitle, ARRAYSIZE(szTitle));
MessageBox(pei->hwnd, szText, szTitle, MB_OK | MB_ICONSTOP);
// say that we ran the file and everything went fine
// 42 copied from the end of the function
// one comment in ShellExecuteNormal implies that 42 prevents any
// messages from poping up -- and that's what we need since we have
// our own little message
pei->hInstApp = (HINSTANCE)42;
FreeLibrary(hinst);
return S_OK;
}
}
}
FreeLibrary(hinst);
}
}
// This should succeed only for real URLs. We should fail
// for file paths and let the shell handle those.
hres = TranslateURL(pei->lpFile,
TRANSLATEURL_FL_GUESS_PROTOCOL | TRANSLATEURL_FL_CANONICALIZE,
&pszURL);
if (SUCCEEDED(hres))
{
LPCTSTR pszURLToUse;
pszURLToUse = (hres == S_OK) ? pszURL : pei->lpFile;
hres = ValidateURL(pszURLToUse);
if (SUCCEEDED(hres))
{
IUniformResourceLocator * purl;
hres = SHCoCreateInstance(NULL, &CLSID_InternetShortcut, NULL, IID_IUniformResourceLocator, (void **)&purl);
if (SUCCEEDED(hres))
{
hres = purl->SetURL(pszURLToUse, 0);
if (hres == S_OK)
{
IShellLink * psl;
hres = purl->QueryInterface(IID_IShellLink, (void **)&psl);
if (SUCCEEDED(hres))
{
URLINVOKECOMMANDINFO urlici;
EVAL(psl->SetShowCmd(pei->nShow) == S_OK);
urlici.dwcbSize = SIZEOF(urlici);
urlici.hwndParent = pei->hwnd;
urlici.pcszVerb = NULL;
urlici.dwFlags = IURL_INVOKECOMMAND_FL_USE_DEFAULT_VERB;
if (IsFlagClear(pei->fMask, SEE_MASK_FLAG_NO_UI))
SetFlag(urlici.dwFlags, IURL_INVOKECOMMAND_FL_ALLOW_UI);
hres = purl->InvokeCommand(&urlici);
if (hres != S_OK)
SetFlag(pei->fMask, SEE_MASK_FLAG_NO_UI);
psl->Release();
}
}
purl->Release();
}
}
if (pszURL)
LocalFree(pszURL);
}
}
else
// BUGBUG (scotth): This hook only handles execution of file string, not IDList.
hres = S_FALSE;
}
else
// Unrecognized verb.
hres = S_FALSE;
if (hres == S_OK)
pei->hInstApp = (HINSTANCE)42; // BUGBUG (scotth): huh??
else if (FAILED(hres))
{
switch (hres)
{
case URL_E_INVALID_SYNTAX:
case URL_E_UNREGISTERED_PROTOCOL:
hres = S_FALSE;
break;
case E_OUTOFMEMORY:
pei->hInstApp = (HINSTANCE)SE_ERR_OOM;
hres = E_FAIL;
break;
case IS_E_EXEC_FAILED:
// Translate execution failure into "file not found".
pei->hInstApp = (HINSTANCE)SE_ERR_FNF;
hres = E_FAIL;
break;
default:
// pei->lpFile is bogus. Treat as file not found.
ASSERT(hres == E_POINTER);
pei->hInstApp = (HINSTANCE)SE_ERR_FNF;
hres = E_FAIL;
break;
}
}
else
ASSERT(hres == S_FALSE);
ASSERT(hres == S_OK ||
hres == S_FALSE ||
hres == E_FAIL);
return hres;
}
STDMETHODIMP CURLExec::Execute(LPSHELLEXECUTEINFOW pei)
{
// thunk stuff copied from shlexec.c InvokeShellExecuteHook
SHELLEXECUTEINFOA seia;
UINT cchVerb = 0;
UINT cchFile = 0;
UINT cchParameters = 0;
UINT cchDirectory = 0;
UINT cchClass = 0;
LPSTR lpszBuffer;
HRESULT hres = E_FAIL;
seia = *(SHELLEXECUTEINFOA*)pei; // Copy all of the binary data
if (pei->lpVerb)
{
cchVerb = WideCharToMultiByte(CP_ACP,0,
pei->lpVerb, -1,
NULL, 0,
NULL, NULL)+1;
}
if (pei->lpFile)
cchFile = WideCharToMultiByte(CP_ACP,0,
pei->lpFile, -1,
NULL, 0,
NULL, NULL)+1;
if (pei->lpParameters)
cchParameters = WideCharToMultiByte(CP_ACP,0,
pei->lpParameters, -1,
NULL, 0,
NULL, NULL)+1;
if (pei->lpDirectory)
cchDirectory = WideCharToMultiByte(CP_ACP,0,
pei->lpDirectory, -1,
NULL, 0,
NULL, NULL)+1;
if (((pei->fMask & SEE_MASK_CLASS) == SEE_MASK_CLASSNAME) && pei->lpClass)
cchClass = WideCharToMultiByte(CP_ACP,0,
pei->lpClass, -1,
NULL, 0,
NULL, NULL)+1;
// what is this (alloca)? InvokeShellExecuteHook is not freeing lpszBuffer
//lpszBuffer = alloca(cchVerb+cchFile+cchParameters+cchDirectory+cchClass);
lpszBuffer = (LPSTR)LocalAlloc(LPTR, cchVerb+cchFile+cchParameters+cchDirectory+cchClass);
if (lpszBuffer)
{
LPSTR lpsz = lpszBuffer;
seia.lpVerb = NULL;
seia.lpFile = NULL;
seia.lpParameters = NULL;
seia.lpDirectory = NULL;
seia.lpClass = NULL;
// Convert all of the strings to ANSI
if (pei->lpVerb)
{
WideCharToMultiByte(CP_ACP, 0, pei->lpVerb, -1,
lpszBuffer, cchVerb, NULL, NULL);
seia.lpVerb = lpszBuffer;
lpszBuffer += cchVerb;
}
if (pei->lpFile)
{
WideCharToMultiByte(CP_ACP, 0, pei->lpFile, -1,
lpszBuffer, cchFile, NULL, NULL);
seia.lpFile = lpszBuffer;
lpszBuffer += cchFile;
}
if (pei->lpParameters)
{
WideCharToMultiByte(CP_ACP, 0,
pei->lpParameters, -1,
lpszBuffer, cchParameters, NULL, NULL);
seia.lpParameters = lpszBuffer;
lpszBuffer += cchParameters;
}
if (pei->lpDirectory)
{
WideCharToMultiByte(CP_ACP, 0,
pei->lpDirectory, -1,
lpszBuffer, cchDirectory, NULL, NULL);
seia.lpDirectory = lpszBuffer;
lpszBuffer += cchDirectory;
}
if (((pei->fMask & SEE_MASK_CLASS) == SEE_MASK_CLASSNAME) && pei->lpClass)
{
WideCharToMultiByte(CP_ACP, 0,
pei->lpClass, -1,
lpszBuffer, cchClass, NULL, NULL);
seia.lpClass = lpszBuffer;
}
hres = Execute(&seia);
// now thunk the possible new stuff back
pei->hInstApp = seia.hInstApp;
if (pei->fMask & SEE_MASK_NOCLOSEPROCESS)
pei->hProcess = seia.hProcess;
LocalFree(lpsz);
}
return hres;
}
STDAPI CreateInstance_URLExec(LPUNKNOWN punkOuter, REFIID riid, void **ppvOut)
{
*ppvOut = NULL;
if (punkOuter)
return CLASS_E_NOAGGREGATION;
CURLExec *pue = new(CURLExec);
if (!pue)
return E_OUTOFMEMORY;
HRESULT hres = pue->QueryInterface(riid, ppvOut);
pue->Release();
return hres;
}
// the following are defined somewhere in ieak
#define RC_WEXTRACT_AWARE 0xAA000000 // means cabpack aware func return code
#define REBOOT_SILENT 0x00000004 // this bit 0 means prompt user before reboot
// this is what ieak looks for to decide if it should not install the rest of the stuff
#define DO_NOT_REBOOT (RC_WEXTRACT_AWARE | REBOOT_SILENT)
// the following entry point is used to fake failure by ie 3.02 setup when installing
// quicken 98 on top of ie4 browser only install.
// we need it to return a specific error code that will prevent ieak from
// installing java vm, and other stuff.
STDAPI_(void) DummyEntryPoint(HWND hwnd, HINSTANCE hAppInstance, LPSTR lpszCmdLine, int nCmdShow)
{
ExitProcess(DO_NOT_REBOOT);
}
| [
"112426112@qq.com"
] | 112426112@qq.com |
e464613b1c3c7762104d3f81baa9e7d62bbc8084 | 198addb66a66f9f94d541899c6069d2c4a5b8b40 | /proto/common.pb.cc | fe082b9965c9387b0a86bc104f1ac8c4aa177c15 | [
"MIT"
] | permissive | yemings/easy_push | d28dd04f179cd8f59ed567310f917e5efabcdf34 | 73eae9d3899f9abac52cc113c18e23943270ed70 | refs/heads/master | 2021-06-01T09:27:10.077381 | 2016-08-08T14:56:42 | 2016-08-08T14:56:42 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | true | 12,062 | cc | // Generated by the protocol buffer compiler. DO NOT EDIT!
// source: proto/common.proto
#define INTERNAL_SUPPRESS_PROTOBUF_FIELD_DEPRECATION
#include "proto/common.pb.h"
#include <algorithm>
#include <google/protobuf/stubs/common.h>
#include <google/protobuf/stubs/port.h>
#include <google/protobuf/stubs/once.h>
#include <google/protobuf/io/coded_stream.h>
#include <google/protobuf/wire_format_lite_inl.h>
#include <google/protobuf/descriptor.h>
#include <google/protobuf/generated_message_reflection.h>
#include <google/protobuf/reflection_ops.h>
#include <google/protobuf/wire_format.h>
// @@protoc_insertion_point(includes)
namespace common {
namespace {
const ::google::protobuf::Descriptor* common_head_descriptor_ = NULL;
const ::google::protobuf::internal::GeneratedMessageReflection*
common_head_reflection_ = NULL;
} // namespace
void protobuf_AssignDesc_proto_2fcommon_2eproto() GOOGLE_ATTRIBUTE_COLD;
void protobuf_AssignDesc_proto_2fcommon_2eproto() {
protobuf_AddDesc_proto_2fcommon_2eproto();
const ::google::protobuf::FileDescriptor* file =
::google::protobuf::DescriptorPool::generated_pool()->FindFileByName(
"proto/common.proto");
GOOGLE_CHECK(file != NULL);
common_head_descriptor_ = file->message_type(0);
static const int common_head_offsets_[1] = {
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(common_head, msg_id_),
};
common_head_reflection_ =
::google::protobuf::internal::GeneratedMessageReflection::NewGeneratedMessageReflection(
common_head_descriptor_,
common_head::default_instance_,
common_head_offsets_,
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(common_head, _has_bits_[0]),
-1,
-1,
sizeof(common_head),
GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(common_head, _internal_metadata_),
-1);
}
namespace {
GOOGLE_PROTOBUF_DECLARE_ONCE(protobuf_AssignDescriptors_once_);
inline void protobuf_AssignDescriptorsOnce() {
::google::protobuf::GoogleOnceInit(&protobuf_AssignDescriptors_once_,
&protobuf_AssignDesc_proto_2fcommon_2eproto);
}
void protobuf_RegisterTypes(const ::std::string&) GOOGLE_ATTRIBUTE_COLD;
void protobuf_RegisterTypes(const ::std::string&) {
protobuf_AssignDescriptorsOnce();
::google::protobuf::MessageFactory::InternalRegisterGeneratedMessage(
common_head_descriptor_, &common_head::default_instance());
}
} // namespace
void protobuf_ShutdownFile_proto_2fcommon_2eproto() {
delete common_head::default_instance_;
delete common_head_reflection_;
}
void protobuf_AddDesc_proto_2fcommon_2eproto() GOOGLE_ATTRIBUTE_COLD;
void protobuf_AddDesc_proto_2fcommon_2eproto() {
static bool already_here = false;
if (already_here) return;
already_here = true;
GOOGLE_PROTOBUF_VERIFY_VERSION;
::google::protobuf::DescriptorPool::InternalAddGeneratedFile(
"\n\022proto/common.proto\022\006common\"\035\n\013common_h"
"ead\022\016\n\006msg_id\030\001 \002(\005", 59);
::google::protobuf::MessageFactory::InternalRegisterGeneratedFile(
"proto/common.proto", &protobuf_RegisterTypes);
common_head::default_instance_ = new common_head();
common_head::default_instance_->InitAsDefaultInstance();
::google::protobuf::internal::OnShutdown(&protobuf_ShutdownFile_proto_2fcommon_2eproto);
}
// Force AddDescriptors() to be called at static initialization time.
struct StaticDescriptorInitializer_proto_2fcommon_2eproto {
StaticDescriptorInitializer_proto_2fcommon_2eproto() {
protobuf_AddDesc_proto_2fcommon_2eproto();
}
} static_descriptor_initializer_proto_2fcommon_2eproto_;
// ===================================================================
#if !defined(_MSC_VER) || _MSC_VER >= 1900
const int common_head::kMsgIdFieldNumber;
#endif // !defined(_MSC_VER) || _MSC_VER >= 1900
common_head::common_head()
: ::google::protobuf::Message(), _internal_metadata_(NULL) {
SharedCtor();
// @@protoc_insertion_point(constructor:common.common_head)
}
void common_head::InitAsDefaultInstance() {
}
common_head::common_head(const common_head& from)
: ::google::protobuf::Message(),
_internal_metadata_(NULL) {
SharedCtor();
MergeFrom(from);
// @@protoc_insertion_point(copy_constructor:common.common_head)
}
void common_head::SharedCtor() {
_cached_size_ = 0;
msg_id_ = 0;
::memset(_has_bits_, 0, sizeof(_has_bits_));
}
common_head::~common_head() {
// @@protoc_insertion_point(destructor:common.common_head)
SharedDtor();
}
void common_head::SharedDtor() {
if (this != default_instance_) {
}
}
void common_head::SetCachedSize(int size) const {
GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
_cached_size_ = size;
GOOGLE_SAFE_CONCURRENT_WRITES_END();
}
const ::google::protobuf::Descriptor* common_head::descriptor() {
protobuf_AssignDescriptorsOnce();
return common_head_descriptor_;
}
const common_head& common_head::default_instance() {
if (default_instance_ == NULL) protobuf_AddDesc_proto_2fcommon_2eproto();
return *default_instance_;
}
common_head* common_head::default_instance_ = NULL;
common_head* common_head::New(::google::protobuf::Arena* arena) const {
common_head* n = new common_head;
if (arena != NULL) {
arena->Own(n);
}
return n;
}
void common_head::Clear() {
// @@protoc_insertion_point(message_clear_start:common.common_head)
msg_id_ = 0;
::memset(_has_bits_, 0, sizeof(_has_bits_));
if (_internal_metadata_.have_unknown_fields()) {
mutable_unknown_fields()->Clear();
}
}
bool common_head::MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) {
#define DO_(EXPRESSION) if (!GOOGLE_PREDICT_TRUE(EXPRESSION)) goto failure
::google::protobuf::uint32 tag;
// @@protoc_insertion_point(parse_start:common.common_head)
for (;;) {
::std::pair< ::google::protobuf::uint32, bool> p = input->ReadTagWithCutoff(127);
tag = p.first;
if (!p.second) goto handle_unusual;
switch (::google::protobuf::internal::WireFormatLite::GetTagFieldNumber(tag)) {
// required int32 msg_id = 1;
case 1: {
if (tag == 8) {
DO_((::google::protobuf::internal::WireFormatLite::ReadPrimitive<
::google::protobuf::int32, ::google::protobuf::internal::WireFormatLite::TYPE_INT32>(
input, &msg_id_)));
set_has_msg_id();
} else {
goto handle_unusual;
}
if (input->ExpectAtEnd()) goto success;
break;
}
default: {
handle_unusual:
if (tag == 0 ||
::google::protobuf::internal::WireFormatLite::GetTagWireType(tag) ==
::google::protobuf::internal::WireFormatLite::WIRETYPE_END_GROUP) {
goto success;
}
DO_(::google::protobuf::internal::WireFormat::SkipField(
input, tag, mutable_unknown_fields()));
break;
}
}
}
success:
// @@protoc_insertion_point(parse_success:common.common_head)
return true;
failure:
// @@protoc_insertion_point(parse_failure:common.common_head)
return false;
#undef DO_
}
void common_head::SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const {
// @@protoc_insertion_point(serialize_start:common.common_head)
// required int32 msg_id = 1;
if (has_msg_id()) {
::google::protobuf::internal::WireFormatLite::WriteInt32(1, this->msg_id(), output);
}
if (_internal_metadata_.have_unknown_fields()) {
::google::protobuf::internal::WireFormat::SerializeUnknownFields(
unknown_fields(), output);
}
// @@protoc_insertion_point(serialize_end:common.common_head)
}
::google::protobuf::uint8* common_head::InternalSerializeWithCachedSizesToArray(
bool deterministic, ::google::protobuf::uint8* target) const {
// @@protoc_insertion_point(serialize_to_array_start:common.common_head)
// required int32 msg_id = 1;
if (has_msg_id()) {
target = ::google::protobuf::internal::WireFormatLite::WriteInt32ToArray(1, this->msg_id(), target);
}
if (_internal_metadata_.have_unknown_fields()) {
target = ::google::protobuf::internal::WireFormat::SerializeUnknownFieldsToArray(
unknown_fields(), target);
}
// @@protoc_insertion_point(serialize_to_array_end:common.common_head)
return target;
}
int common_head::ByteSize() const {
// @@protoc_insertion_point(message_byte_size_start:common.common_head)
int total_size = 0;
// required int32 msg_id = 1;
if (has_msg_id()) {
total_size += 1 +
::google::protobuf::internal::WireFormatLite::Int32Size(
this->msg_id());
}
if (_internal_metadata_.have_unknown_fields()) {
total_size +=
::google::protobuf::internal::WireFormat::ComputeUnknownFieldsSize(
unknown_fields());
}
GOOGLE_SAFE_CONCURRENT_WRITES_BEGIN();
_cached_size_ = total_size;
GOOGLE_SAFE_CONCURRENT_WRITES_END();
return total_size;
}
void common_head::MergeFrom(const ::google::protobuf::Message& from) {
// @@protoc_insertion_point(generalized_merge_from_start:common.common_head)
if (GOOGLE_PREDICT_FALSE(&from == this)) {
::google::protobuf::internal::MergeFromFail(__FILE__, __LINE__);
}
const common_head* source =
::google::protobuf::internal::DynamicCastToGenerated<const common_head>(
&from);
if (source == NULL) {
// @@protoc_insertion_point(generalized_merge_from_cast_fail:common.common_head)
::google::protobuf::internal::ReflectionOps::Merge(from, this);
} else {
// @@protoc_insertion_point(generalized_merge_from_cast_success:common.common_head)
MergeFrom(*source);
}
}
void common_head::MergeFrom(const common_head& from) {
// @@protoc_insertion_point(class_specific_merge_from_start:common.common_head)
if (GOOGLE_PREDICT_FALSE(&from == this)) {
::google::protobuf::internal::MergeFromFail(__FILE__, __LINE__);
}
if (from._has_bits_[0 / 32] & (0xffu << (0 % 32))) {
if (from.has_msg_id()) {
set_msg_id(from.msg_id());
}
}
if (from._internal_metadata_.have_unknown_fields()) {
mutable_unknown_fields()->MergeFrom(from.unknown_fields());
}
}
void common_head::CopyFrom(const ::google::protobuf::Message& from) {
// @@protoc_insertion_point(generalized_copy_from_start:common.common_head)
if (&from == this) return;
Clear();
MergeFrom(from);
}
void common_head::CopyFrom(const common_head& from) {
// @@protoc_insertion_point(class_specific_copy_from_start:common.common_head)
if (&from == this) return;
Clear();
MergeFrom(from);
}
bool common_head::IsInitialized() const {
if ((_has_bits_[0] & 0x00000001) != 0x00000001) return false;
return true;
}
void common_head::Swap(common_head* other) {
if (other == this) return;
InternalSwap(other);
}
void common_head::InternalSwap(common_head* other) {
std::swap(msg_id_, other->msg_id_);
std::swap(_has_bits_[0], other->_has_bits_[0]);
_internal_metadata_.Swap(&other->_internal_metadata_);
std::swap(_cached_size_, other->_cached_size_);
}
::google::protobuf::Metadata common_head::GetMetadata() const {
protobuf_AssignDescriptorsOnce();
::google::protobuf::Metadata metadata;
metadata.descriptor = common_head_descriptor_;
metadata.reflection = common_head_reflection_;
return metadata;
}
#if PROTOBUF_INLINE_NOT_IN_HEADERS
// common_head
// required int32 msg_id = 1;
bool common_head::has_msg_id() const {
return (_has_bits_[0] & 0x00000001u) != 0;
}
void common_head::set_has_msg_id() {
_has_bits_[0] |= 0x00000001u;
}
void common_head::clear_has_msg_id() {
_has_bits_[0] &= ~0x00000001u;
}
void common_head::clear_msg_id() {
msg_id_ = 0;
clear_has_msg_id();
}
::google::protobuf::int32 common_head::msg_id() const {
// @@protoc_insertion_point(field_get:common.common_head.msg_id)
return msg_id_;
}
void common_head::set_msg_id(::google::protobuf::int32 value) {
set_has_msg_id();
msg_id_ = value;
// @@protoc_insertion_point(field_set:common.common_head.msg_id)
}
#endif // PROTOBUF_INLINE_NOT_IN_HEADERS
// @@protoc_insertion_point(namespace_scope)
} // namespace common
// @@protoc_insertion_point(global_scope)
| [
"lijin157@163.com"
] | lijin157@163.com |
70f84befce4461e11486cf3fe8702eaec336ea34 | bb039bb4691d0cc8ecc5499df7173dac4bce88ed | /dystoniaint.h | 121d1768d1e2ec7d4c884f153deb3108f6a26bea | [] | no_license | omer-adaweh/Denas-Project | 7c1d651a4657a9e1d376a45b9f53e256542ae5d6 | d313132a2ef39dc82ebd685382f8a26881c03eac | refs/heads/master | 2023-07-17T16:33:33.114729 | 2021-09-05T23:39:44 | 2021-09-05T23:39:44 | 403,434,501 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 349 | h | #ifndef DYSTONIAINT_H
#define DYSTONIAINT_H
#include <QDialog>
namespace Ui {
class DystoniaInt;
}
class DystoniaInt : public QDialog
{
Q_OBJECT
public:
explicit DystoniaInt(QWidget *parent = nullptr);
~DystoniaInt();
private slots:
void on_pushButton_clicked();
private:
Ui::DystoniaInt *ui;
};
#endif // DYSTONIAINT_H
| [
"adaweh213@gmail.com"
] | adaweh213@gmail.com |
b69198aa5fc5caf7663c5f4393f1cb43ce4a79a2 | 54a29cf19d0962b9e5d9c535918a1c56bcfebdd3 | /test/snippet/range/view/convert.cpp | 64d874c0f2dd442df030bd812ac37cd7c17ed229 | [] | permissive | giesselmann/seqan3 | c027ae539e92460371d0b354a9cf768d380a573b | 3a26b42b7066ac424b6e604115fe516607c308c0 | refs/heads/master | 2021-04-26T22:17:41.710001 | 2018-09-19T07:09:28 | 2018-09-19T07:09:28 | 124,063,820 | 0 | 0 | BSD-3-Clause | 2018-03-06T10:45:41 | 2018-03-06T10:45:41 | null | UTF-8 | C++ | false | false | 845 | cpp | #include <seqan3/range/view/convert.hpp>
#include <seqan3/alphabet/nucleotide/dna15.hpp>
#include <seqan3/alphabet/nucleotide/dna5.hpp>
#include <seqan3/std/view/reverse.hpp>
using namespace seqan3;
using namespace seqan3::literal;
int main()
{
{
//! [int_to_bool]
// convert from int to bool
std::vector<int> vec{7, 5, 0, 5, 0, 0, 4, 8, -3};
// pipe notation
auto v = vec | view::convert<bool>; // == [1, 1, 0, 1, 0, 0, 1, 1, 1];
// function notation and immediate conversion to vector again
std::vector<bool> v2(view::convert<bool>(vec));
// combinability
auto v3 = vec | view::convert<bool> | view::reverse; // == [1, 1, 1, 0, 0, 1, 0, 1, 1];
//! [int_to_bool]
(void) v;
(void) v2;
(void) v3;
}
{
//! [15_to_5]
dna15_vector vec2{"ACYGTN"_dna15};
auto v4 = vec2 | view::convert<dna5>; // == "ACNGTN"_dna5
//! [15_to_5]
(void) v4;
}
}
| [
"marehr@users.noreply.github.com"
] | marehr@users.noreply.github.com |
e800658582f6b0b2396da1bf82de47ae2a1565c6 | 3e1058a9f0d0f2df00e6c61d52d6e15bf532a3e9 | /leetcode_415.cc | 95fbd0d166517e2da5c4c97e9123a23caa34575d | [] | no_license | zhyting/m_leetcode | 09822347bfd1638bc4d2ff4b08067d9a7ce49920 | f76a9a4a0d5aa643c02ab3f0f537c78a8789ee08 | refs/heads/master | 2022-12-30T09:16:29.587612 | 2020-10-21T00:38:03 | 2020-10-21T00:38:03 | 274,394,303 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,032 | cc | class Solution {
public:
string addStrings(string num1, string num2) {
string str="";
if(0 == num1.size() && 0 == num2.size())
{
return str;
}
int carry = 0;
int len1 = num1.size()-1;
int len2 = num2.size()-1;
int sum;
while(len1 >= 0 && len2 >= 0)
{
sum = (num1[len1--] - '0') + (num2[len2--] - '0') + carry;
carry = sum / 10;
sum = sum % 10;
str += (sum + '0');
}
while(len1 >= 0)
{
sum = (num1[len1--] - '0') + carry;
carry = sum / 10;
sum = sum % 10;
str += (sum + '0');
}
while(len2 >= 0)
{
sum = (num2[len2--] - '0') + carry;
carry = sum / 10;
sum = sum % 10;
str += (sum + '0');
}
if(carry != 0)
{
str += (1 + '0');
}
reverse(str.begin(),str.end());
return str;
}
}; | [
"pbinxi@gmail.com"
] | pbinxi@gmail.com |
cac0fb4a776278fab0dbba24208965c060fcbac1 | 0eff74b05b60098333ad66cf801bdd93becc9ea4 | /second/download/httpd/gumtree/httpd_old_hunk_1198.cpp | e3ec2d20bdc3766aa1736d99799bafb55b18b664 | [] | no_license | niuxu18/logTracker-old | 97543445ea7e414ed40bdc681239365d33418975 | f2b060f13a0295387fe02187543db124916eb446 | refs/heads/master | 2021-09-13T21:39:37.686481 | 2017-12-11T03:36:34 | 2017-12-11T03:36:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,164 | cpp | */
rv = cache_select(r);
if (rv != OK) {
if (rv == DECLINED) {
if (!lookup) {
/*
* Add cache_save filter to cache this request. Choose
* the correct filter by checking if we are a subrequest
* or not.
*/
if (r->main) {
ap_log_error(APLOG_MARK, APLOG_DEBUG, APR_SUCCESS,
r->server,
"Adding CACHE_SAVE_SUBREQ filter for %s",
r->uri);
ap_add_output_filter_handle(cache_save_subreq_filter_handle,
NULL, r, r->connection);
}
else {
ap_log_error(APLOG_MARK, APLOG_DEBUG, APR_SUCCESS,
r->server, "Adding CACHE_SAVE filter for %s",
r->uri);
ap_add_output_filter_handle(cache_save_filter_handle,
NULL, r, r->connection);
}
ap_log_error(APLOG_MARK, APLOG_DEBUG, APR_SUCCESS, r->server,
"Adding CACHE_REMOVE_URL filter for %s",
r->uri);
/* Add cache_remove_url filter to this request to remove a
* stale cache entry if needed. Also put the current cache
* request rec in the filter context, as the request that
* is available later during running the filter maybe
* different due to an internal redirect.
*/
cache->remove_url_filter =
ap_add_output_filter_handle(cache_remove_url_filter_handle,
cache, r, r->connection);
}
else {
if (cache->stale_headers) {
ap_log_error(APLOG_MARK, APLOG_DEBUG, APR_SUCCESS,
r->server, "Restoring request headers for %s",
r->uri);
| [
"993273596@qq.com"
] | 993273596@qq.com |
85ce88a5d16b66480eb3185d763000b054406129 | 44d182fc5f463cedfbdb6f124974e48f4f6393f5 | /EasyTntGuardProcess/EasyTntGuardProcessDlg.cpp | 5800f99ca1948f664715f5de7eee9fbd1db58a15 | [] | no_license | jf4210/src2-test | a967a96f5b1e637bc43ed115580deee28e56b087 | debcea226f13adb56113769110627aa2c0760c70 | refs/heads/master | 2021-01-23T13:09:21.666323 | 2019-07-12T02:34:36 | 2019-07-12T02:34:36 | 59,100,155 | 0 | 1 | null | null | null | null | GB18030 | C++ | false | false | 8,704 | cpp |
// EasyTntGuardProcessDlg.cpp : 实现文件
//
#include "stdafx.h"
#include "EasyTntGuardProcess.h"
#include "EasyTntGuardProcessDlg.h"
#include "afxdialogex.h"
#include "GPDef.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
#pragma comment(lib,"Version.lib")
BOOL bContinue = TRUE;
CString g_strAppPath = _T("");
CString g_strInitServerIP = _T("");
int g_nInitServerPort = 0;
CString g_strVerServerIP = _T("");
int g_nVerServerPort = 0;
BOOL g_bConnect = FALSE;
SOCKET g_sock = INVALID_SOCKET;
HANDLE g_hMutex_Conn;
CMutex g_mutex_VSFL;
CMutex g_mutex_LFM;
CMutex g_mutex_DFL;
LIST_FILEINFO g_VerServerFileList;
LIST_NEED_DOWNLOAD g_DownLoadFileList;
MAP_FILEINFO g_LocalFileMap;
std::string g_strFileVersion;
BOOL g_bShowUpdateMsg = TRUE; //是否通知扫描程序进行版本更新,如果第一次打开扫描软件,提示时选择不更新,那么在扫描软件运行期间一直不提示,直到软件有关闭
// 用于应用程序“关于”菜单项的 CAboutDlg 对话框
class CAboutDlg : public CDialogEx
{
public:
CAboutDlg();
// 对话框数据
enum { IDD = IDD_ABOUTBOX };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
// 实现
protected:
DECLARE_MESSAGE_MAP()
};
CAboutDlg::CAboutDlg() : CDialogEx(CAboutDlg::IDD)
{
}
void CAboutDlg::DoDataExchange(CDataExchange* pDX)
{
CDialogEx::DoDataExchange(pDX);
}
BEGIN_MESSAGE_MAP(CAboutDlg, CDialogEx)
END_MESSAGE_MAP()
// CEasyTntGuardProcessDlg 对话框
CEasyTntGuardProcessDlg::CEasyTntGuardProcessDlg(CWnd* pParent /*=NULL*/)
: CDialogEx(CEasyTntGuardProcessDlg::IDD, pParent)
, m_hThread(NULL)
{
m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
}
void CEasyTntGuardProcessDlg::DoDataExchange(CDataExchange* pDX)
{
CDialogEx::DoDataExchange(pDX);
}
BEGIN_MESSAGE_MAP(CEasyTntGuardProcessDlg, CDialogEx)
ON_WM_SYSCOMMAND()
ON_WM_PAINT()
ON_WM_QUERYDRAGICON()
ON_WM_DESTROY()
END_MESSAGE_MAP()
// CEasyTntGuardProcessDlg 消息处理程序
BOOL CEasyTntGuardProcessDlg::OnInitDialog()
{
CDialogEx::OnInitDialog();
// 将“关于...”菜单项添加到系统菜单中。
// IDM_ABOUTBOX 必须在系统命令范围内。
ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
ASSERT(IDM_ABOUTBOX < 0xF000);
CMenu* pSysMenu = GetSystemMenu(FALSE);
if (pSysMenu != NULL)
{
BOOL bNameValid;
CString strAboutMenu;
bNameValid = strAboutMenu.LoadString(IDS_ABOUTBOX);
ASSERT(bNameValid);
if (!strAboutMenu.IsEmpty())
{
pSysMenu->AppendMenu(MF_SEPARATOR);
pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
}
}
// 设置此对话框的图标。 当应用程序主窗口不是对话框时,框架将自动
// 执行此操作
SetIcon(m_hIcon, TRUE); // 设置大图标
SetIcon(m_hIcon, FALSE); // 设置小图标
SetWindowText(_T("EasyTntGuardProcess"));
g_strFileVersion = LoadFileVersion();
//后台运行
ModifyStyleEx(WS_EX_APPWINDOW, WS_EX_TOOLWINDOW);
WINDOWPLACEMENT wp;
wp.length = sizeof(WINDOWPLACEMENT);
wp.flags = WPF_RESTORETOMAXIMIZED;
wp.showCmd = SW_HIDE;
SetWindowPlacement(&wp);
// ShowWindow(SW_MINIMIZE);
InitConf();
g_hMutex_Conn = CreateMutex(NULL, FALSE, L"VerServerFileList");
StartUp();
if (!InitNetWork())
{
return FALSE;
}
#if 0
CString strComm;
strComm.Format(_T("%snewSetupPkg\\setup.exe"), g_strAppPath);
// strComm.Format(_T("%s\\ScanTool.exe"), g_strAppPath);
USES_CONVERSION;
SHELLEXECUTEINFOA TempInfo = {0};
TempInfo.cbSize = sizeof(SHELLEXECUTEINFOA);
TempInfo.fMask = SEE_MASK_NOCLOSEPROCESS;
TempInfo.hwnd = NULL;
TempInfo.lpVerb = "runas";
TempInfo.lpFile = T2A(strComm);
TempInfo.lpParameters = "";
TempInfo.lpDirectory = T2A(g_strAppPath);
TempInfo.nShow = SW_NORMAL;
TempInfo.hInstApp = NULL;
int nResult = ::ShellExecuteExA(&TempInfo);
TRACE("执行ShellExecuteExA完成1, nResult = %d\n", nResult);
WaitForSingleObject(TempInfo.hProcess,INFINITE);
TRACE("执行ShellExecuteExA完成2\n");
CString strVerExePath = g_strAppPath + _T("newSetupPkg\\");
BOOL bDel = DeleteDirectory(T2A(strVerExePath));
if (bDel)
TRACE("移除版本存放文件夹: %s\n", T2A(strVerExePath));
else
TRACE("移除版本存放文件夹(%s)失败\n", T2A(strVerExePath));
#else
DWORD dwThreadID;
m_hThread = CreateThread(NULL, 0, MyWork, NULL, 0, &dwThreadID);
if (NULL == m_hThread)
{
TRACE0("CreateThread failed\n");
return FALSE;
}
#endif
ShowWindow(FALSE);
return TRUE; // 除非将焦点设置到控件,否则返回 TRUE
}
void CEasyTntGuardProcessDlg::OnSysCommand(UINT nID, LPARAM lParam)
{
if ((nID & 0xFFF0) == IDM_ABOUTBOX)
{
CAboutDlg dlgAbout;
dlgAbout.DoModal();
}
else
{
CDialogEx::OnSysCommand(nID, lParam);
}
}
// 如果向对话框添加最小化按钮,则需要下面的代码
// 来绘制该图标。 对于使用文档/视图模型的 MFC 应用程序,
// 这将由框架自动完成。
void CEasyTntGuardProcessDlg::OnPaint()
{
if (IsIconic())
{
CPaintDC dc(this); // 用于绘制的设备上下文
SendMessage(WM_ICONERASEBKGND, reinterpret_cast<WPARAM>(dc.GetSafeHdc()), 0);
// 使图标在工作区矩形中居中
int cxIcon = GetSystemMetrics(SM_CXICON);
int cyIcon = GetSystemMetrics(SM_CYICON);
CRect rect;
GetClientRect(&rect);
int x = (rect.Width() - cxIcon + 1) / 2;
int y = (rect.Height() - cyIcon + 1) / 2;
// 绘制图标
dc.DrawIcon(x, y, m_hIcon);
}
else
{
CDialogEx::OnPaint();
}
}
//当用户拖动最小化窗口时系统调用此函数取得光标
//显示。
HCURSOR CEasyTntGuardProcessDlg::OnQueryDragIcon()
{
return static_cast<HCURSOR>(m_hIcon);
}
void CEasyTntGuardProcessDlg::OnDestroy()
{
CDialogEx::OnDestroy();
bContinue = FALSE;
if (m_hThread)
{
WaitForSingleObject(m_hThread, INFINITE);
CloseHandle(m_hThread);
m_hThread = NULL;
}
g_mutex_DFL.Lock();
g_DownLoadFileList.clear();
g_mutex_DFL.Unlock();
g_mutex_VSFL.Lock();
LIST_FILEINFO::iterator it = g_VerServerFileList.begin();
for (; it != g_VerServerFileList.end();)
{
pST_FILEINFO pFileInfo = *it;
SAFE_RELEASE(pFileInfo);
it = g_VerServerFileList.erase(it);
}
g_mutex_VSFL.Unlock();
g_mutex_LFM.Lock();
MAP_FILEINFO::iterator itMap = g_LocalFileMap.begin();
for (; itMap != g_LocalFileMap.end();)
{
pST_FILEINFO pFileInfo = itMap->second;
SAFE_RELEASE(pFileInfo);
itMap = g_LocalFileMap.erase(itMap);
}
g_mutex_LFM.Unlock();
}
void CEasyTntGuardProcessDlg::InitConf()
{
TCHAR szPath[MAX_PATH] = { 0 };
GetModuleFileName(NULL, szPath, MAX_PATH);
CString str = szPath;
g_strAppPath = str.Left(str.ReverseFind('\\') + 1);
CString strConfigPath = g_strAppPath + _T("config.ini");
TCHAR szServerAddr[50] = { 0 };
GetPrivateProfileString(_T("Server"), _T("cmdIP"), _T("116.211.105.45"), szServerAddr, 50, strConfigPath);
g_nInitServerPort = GetPrivateProfileInt(_T("Server"), _T("cmdPort"), 19991, strConfigPath);
g_strInitServerIP = szServerAddr;
}
std::string CEasyTntGuardProcessDlg::LoadFileVersion()
{
DWORD dwHandle = 0;
char* pInfoData = NULL;
std::string strFileVersion;
WCHAR szSelfName[MAX_PATH + 1] = { 0 };
if (::GetModuleFileNameW(NULL, szSelfName, MAX_PATH + 1))
{
DWORD dwInfoSize = GetFileVersionInfoSize(szSelfName, &dwHandle);
if (dwInfoSize > 0)
{
pInfoData = new char[dwInfoSize];
memset(pInfoData, 0, dwInfoSize);
if (GetFileVersionInfo(szSelfName, dwHandle, dwInfoSize, pInfoData))
{
VS_FIXEDFILEINFO* vs_file_info = NULL;
unsigned int size = 0;
if (VerQueryValue(pInfoData, L"\\", (LPVOID*)&vs_file_info, &size))
{
char szTmp[100] = { 0 };
sprintf(szTmp, "%d.%d.%d.%d", (int)HIWORD(vs_file_info->dwFileVersionMS), (int)LOWORD(vs_file_info->dwFileVersionMS), (int)HIWORD(vs_file_info->dwFileVersionLS), (int)LOWORD(vs_file_info->dwFileVersionLS));
strFileVersion = szTmp;
}
#if 0 //设置版本失败
//获取语言
char* pLanValue = NULL;
UINT nLen2 = 0;
VerQueryValue(pInfoData, L"VarFileInfo\\Translation", (LPVOID*)&pLanValue, &nLen2);
//修改资源
vs_file_info->dwFileVersionLS = 1234;
vs_file_info->dwFileVersionMS = 4321;
vs_file_info->dwProductVersionLS = 101;
vs_file_info->dwProductVersionMS = 1010;
HANDLE handle = BeginUpdateResource(szSelfName, FALSE);
BOOL result = UpdateResourceW(handle
, RT_VERSION
, MAKEINTRESOURCE(1)
, LANG_USER_DEFAULT
, pInfoData
, dwInfoSize); //stlang.wLanguageID
if (result == FALSE)
{
AfxMessageBox(_T("Updata Resource False."));
}
EndUpdateResource(handle, FALSE);
#endif
}
SAFE_RELEASE_ARRY(pInfoData);
}
}
return strFileVersion;
}
| [
"jf4210@yeah.net"
] | jf4210@yeah.net |
b9b751419fb4accf6b6f9d1d34695633f7927ffc | 67b7a7085447b7561208ed6df95dd3133df580e2 | /nov00/marselas/marselas/MaxUIMod/MaxUIMod.cpp | 792b4684910e5c957b527b36c74669df32f54849 | [] | no_license | dwilliamson/GDMagArchive | 81fd5b708417697bfb2caf8a983dd3ad7decdaf7 | 701948bbd74b7ae765be8cdaf4ae0f875e2bbf8e | refs/heads/master | 2021-06-07T23:41:08.343776 | 2016-10-31T14:42:20 | 2016-10-31T14:42:20 | 72,441,821 | 74 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 1,705 | cpp | // MaxUIMod.cpp : Defines the initialization routines for the DLL.
//
#include "stdafx.h"
#include "MaxUIMod.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
//
// Note!
//
// If this DLL is dynamically linked against the MFC
// DLLs, any functions exported from this DLL which
// call into MFC must have the AFX_MANAGE_STATE macro
// added at the very beginning of the function.
//
// For example:
//
// extern "C" BOOL PASCAL EXPORT ExportedFunction()
// {
// AFX_MANAGE_STATE(AfxGetStaticModuleState());
// // normal function body here
// }
//
// It is very important that this macro appear in each
// function, prior to any calls into MFC. This means that
// it must appear as the first statement within the
// function, even before any object variable declarations
// as their constructors may generate calls into the MFC
// DLL.
//
// Please see MFC Technical Notes 33 and 58 for additional
// details.
//
/////////////////////////////////////////////////////////////////////////////
// CMaxUIModApp
BEGIN_MESSAGE_MAP(CMaxUIModApp, CWinApp)
//{{AFX_MSG_MAP(CMaxUIModApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CMaxUIModApp construction
CMaxUIModApp::CMaxUIModApp()
{
// TODO: add construction code here,
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CMaxUIModApp object
CMaxUIModApp theApp;
| [
"dwilliamson_coder@hotmail.com"
] | dwilliamson_coder@hotmail.com |
f29091995b7263fe585dfcd8d3bc89bad022cdcd | c8c28aca03c0109420d22b2daa81bfa30f360267 | /BitmapSave.cpp | 6b12b09cadd367d49b4412518fbc51e7b01f71fb | [] | no_license | debenbraveheart/WinBitmap | 7c1bd5e23133fa54625aa8020771a5d8028b63a6 | 4f74e305a0419d01ce1776ed4787f6ad3e923d0b | refs/heads/master | 2020-12-13T09:04:23.946323 | 2020-01-16T17:10:00 | 2020-01-16T17:10:00 | 234,369,999 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,360 | cpp | // Save the bitmap to a bmp file
void SaveBitmapToFile(BYTE* pBitmapBits,
LONG lWidth,
LONG lHeight,
WORD wBitsPerPixel,
const unsigned long& padding_size,
LPCTSTR lpszFileName)
{
// Some basic bitmap parameters
unsigned long headers_size = sizeof(BITMAPFILEHEADER) +
sizeof(BITMAPINFOHEADER);
unsigned long pixel_data_size = lHeight * ((lWidth * (wBitsPerPixel / 8)) + padding_size);
BITMAPINFOHEADER bmpInfoHeader = { 0 };
// Set the size
bmpInfoHeader.biSize = sizeof(BITMAPINFOHEADER);
// Bit count
bmpInfoHeader.biBitCount = wBitsPerPixel;
// Use all colors
bmpInfoHeader.biClrImportant = 0;
// Use as many colors according to bits per pixel
bmpInfoHeader.biClrUsed = 0;
// Store as un Compressed
bmpInfoHeader.biCompression = BI_RGB;
// Set the height in pixels
bmpInfoHeader.biHeight = lHeight;
// Width of the Image in pixels
bmpInfoHeader.biWidth = lWidth;
// Default number of planes
bmpInfoHeader.biPlanes = 1;
// Calculate the image size in bytes
bmpInfoHeader.biSizeImage = pixel_data_size;
BITMAPFILEHEADER bfh = { 0 };
// This value should be values of BM letters i.e 0x4D42
// 0x4D = M 0×42 = B storing in reverse order to match with endian
bfh.bfType = 0x4D42;
//bfh.bfType = 'B'+('M' << 8);
// <<8 used to shift ‘M’ to end */
// Offset to the RGBQUAD
bfh.bfOffBits = headers_size;
// Total size of image including size of headers
bfh.bfSize = headers_size + pixel_data_size;
// Create the file in disk to write
HANDLE hFile = CreateFile(lpszFileName,
GENERIC_WRITE,
0,
NULL,
CREATE_ALWAYS,
FILE_ATTRIBUTE_NORMAL,
NULL);
// Return if error opening file
if (!hFile) return;
DWORD dwWritten = 0;
// Write the File header
WriteFile(hFile,
&bfh,
sizeof(bfh),
&dwWritten,
NULL);
// Write the bitmap info header
WriteFile(hFile,
&bmpInfoHeader,
sizeof(bmpInfoHeader),
&dwWritten,
NULL);
// Write the RGB Data
WriteFile(hFile,
pBitmapBits,
bmpInfoHeader.biSizeImage,
&dwWritten,
NULL);
// Close the file handle
CloseHandle(hFile);
}
//////
if(info.srcSize.x % 4 == 0)
SaveBitmapToFile((BYTE*)info.srcData, info.srcSize.x, info.srcSize.y, 24, 0, buf);
else
{
auto rem = info.srcSize.x % 4;
SaveBitmapToFile((BYTE*)info.srcData, info.srcSize.x, info.srcSize.y, 24, rem, buf);
}
| [
"noreply@github.com"
] | noreply@github.com |
082bd5d361f3d3fa7a7db934c1a1dad668a5ec8d | 6aba3d9e4a5401b5387548475d0ca74794e73c69 | /GROMACS/nonbonded_benchmark/gromacs_source_code/src/gromacs/utility/int64_to_int.cpp | c781b7a85c84aea60a5e3710b06ff04da75a90f7 | [
"LGPL-2.1-only",
"LGPL-2.0-or-later",
"LicenseRef-scancode-sun-rpc",
"LGPL-2.1-or-later",
"SunPro",
"GPL-1.0-or-later",
"BSD-2-Clause-Views",
"GPL-2.0-only",
"BSL-1.0",
"Apache-2.0",
"BSD-3-Clause",
"Zlib",
"BSD-2-Clause",
"MIT",
"LicenseRef-scancode-free-unknown"
] | permissive | rvhonorato/bioexcel-exascale-co-design-benchmarks | a47b2608ad796329247a671ca95c7b487be213ca | 41bfd28e64a65f7d08a4195bdfd0024646664351 | refs/heads/master | 2020-06-18T05:56:43.151669 | 2019-07-10T15:17:45 | 2019-07-10T15:17:45 | 196,187,655 | 0 | 0 | MIT | 2019-07-10T10:50:25 | 2019-07-10T10:50:24 | null | UTF-8 | C++ | false | false | 2,215 | cpp | /*
* This file is part of the GROMACS molecular simulation package.
*
* Copyright (c) 2015,2017,2018, by the GROMACS development team, led by
* Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
* and including many others, as listed in the AUTHORS file in the
* top-level source directory and at http://www.gromacs.org.
*
* GROMACS is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 2.1
* of the License, or (at your option) any later version.
*
* GROMACS 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with GROMACS; if not, see
* http://www.gnu.org/licenses, or write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
* If you want to redistribute modifications to GROMACS, please
* consider that scientific software is very special. Version
* control is crucial - bugs must be traceable. We will be happy to
* consider code for inclusion in the official distribution, but
* derived work must not be called official GROMACS. Details are found
* in the README & COPYING files - if they are missing, get the
* official version at http://www.gromacs.org.
*
* To help us fund GROMACS development, we humbly ask that you cite
* the research papers on the package. Check out http://www.gromacs.org.
*/
#include "gmxpre.h"
#include "int64_to_int.h"
#include <cstdio>
#include "gromacs/utility/basedefinitions.h"
int int64_to_int(int64_t step, const char *warn)
{
int i;
i = static_cast<int>(step);
if (warn != nullptr && (static_cast<int64_t>(i) != step))
{
fprintf(stderr, "\nWARNING during %s:\n", warn);
fprintf(stderr, "int64 value ");
fprintf(stderr, "%" PRId64, step);
fprintf(stderr, " does not fit in int, converted to %d\n\n", i);
}
return i;
}
| [
"mark.j.abraham@gmail.com"
] | mark.j.abraham@gmail.com |
347aac223ac7181ecdd2f4e1e29749db48d8131f | 1113806e6761312dd4e8857d08a916c4d381b1d3 | /main.cpp | 33cec4d456e25b28ba98313389e56055e0a83817 | [] | no_license | mohshariq/Vigenere_Cipher | f6eca21c0bca0608c80d35a6bdb4ce210807be76 | 725175909deb34cacdec9af057af124c13717418 | refs/heads/master | 2020-04-06T19:06:14.879039 | 2018-11-15T14:48:56 | 2018-11-15T14:48:56 | 157,725,808 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,047 | cpp | # Vigenere_Cipher
#include<bits/stdc++.h>
using namespace std;
string generateKey(string str, string key)
{
int x = str.size();
for (int i = 0; ; i++)
{
if (x == i)
i = 0;
if (key.size() == str.size())
break;
key.push_back(key[i]);
}
return key;
}
string originalText(string cipher_text, string key)
{
string orig_text;
for (int i = 0 ; i < cipher_text.size(); i++)
{
// converting in range 0-25
int x = (cipher_text[i] - key[i] + 26) %26;
// convert into alphabets(ASCII)
x += 'A';
orig_text.push_back(x);
}
return orig_text;
}
int main()
{
string str = "GEEKSFORGEEKS";
string keyword = "AYUSH";
string key = generateKey(str, keyword);
string cipher_text = cipherText(str, key);
cout << "Ciphertext : "
<< cipher_text << "\n";
cout << "Original/Decrypted Text : "
<< originalText(cipher_text, key);
return 0;
}
| [
"noreply@github.com"
] | noreply@github.com |
881679b843475a57c924939b86112589c99e6b74 | 551ce32ae181656270a1f582966e04f4027576a9 | /app/linux/cross_shader/ContrastEnhance.h | e7a81b29f916f036d8cc49582857437143599587 | [] | no_license | zyyin/XImage2 | a77b1f520570ad1792da2c27b599c64d5bcfd785 | aab16c08f227b3fa17c669c9781a6f0b1d72b6ed | refs/heads/master | 2020-07-04T04:20:50.550882 | 2016-12-02T08:21:10 | 2016-12-02T08:21:10 | 74,107,607 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 276 | h | #pragma once
#include "IAlgorithmStratety.h"
class ContrastEnhance :
public IAlgorithmStratety
{
DECLARE_DYNAMIC_CLASS()
public:
ContrastEnhance();
~ContrastEnhance();
virtual bool TryRun();
virtual const char* GetParametersName() { return "gain1,gain2"; }
}; | [
"zhiyex.yin@intel.com"
] | zhiyex.yin@intel.com |
d1bef8777e430ff1abde0ebf4a4dc5edc39c3820 | 51387e86c4645b2a0bcf16ca77b2ef9388cf166a | /ods/ArrayStack.h | 721cec8ed88e027d6289bfad959f81c4583b366a | [] | no_license | lichgo/HackingCPP | f4049261fadb1bbad8369bd93e5abd802f5d4777 | 3eaeac19ec3ab75b29f1c7a71339e7b1f50df420 | refs/heads/master | 2021-01-23T13:43:05.399095 | 2019-07-18T03:21:38 | 2019-07-18T03:21:38 | 19,457,790 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,861 | h | #ifndef ARRAYSTACK_H_
#define ARRAYSTACK_H_
#include "array.h"
#include "utils.h"
namespace ods {
template<class T>
class DualArrayDeque;
template<class T>
class ArrayStack {
friend class DualArrayDeque<T>;
public:
ArrayStack();
virtual ~ArrayStack();
int size() const;
T get(int i) const;
T& set(int i, T x);
virtual void add(int i, T x);
virtual void add(T x) {
add(size(), x);
}
virtual T& remove(int i);
virtual void clear();
protected:
Array<T>* a;
int number;
virtual void resize();
};
template<class T>
ArrayStack<T>::ArrayStack() : a( new Array<T>(1) ), number(0) {}
template<class T>
ArrayStack<T>::~ArrayStack() {
delete a;
}
template<class T> inline
int ArrayStack<T>::size() const {
return number;
}
template<class T> inline
T ArrayStack<T>::get(int i) const {
return (*a)[i];
}
template<class T> inline
T& ArrayStack<T>::set(int i, T x) {
T& y = (*a)[i];
(*a)[i] = x;
return y;
}
template<class T>
void ArrayStack<T>::clear() {
number = 0;
delete a;
a = new Array<T>(1);
}
template<class T>
void ArrayStack<T>::resize() {
Array<T>* tmp = new Array<T>( max(2 * number, 1) );
for (int i = 0; i < number; ++i)
(*tmp)[i] = (*a)[i];
a = tmp;
}
template<class T>
void ArrayStack<T>::add(int i, T x) {
assert(i >= 0);
if (i > number) i = number;
if (number + 1 > (*a).length)
resize();
// Move (*a)[i + 1]-[number - 1]
for (int j = number; j > i; --j)
(*a)[j] = (*a)[j - 1];
(*a)[i] = x;
number++;
}
template<class T>
T& ArrayStack<T>::remove(int i) {
assert(i < number && i >= 0);
T& x = (*a)[i];
for (int j = i; j < number - 1; ++j)
(*a)[j] = (*a)[j + 1];
number--;
// If too much space, cut it off
if (a->length >= 3 * number)
resize();
return x;
}
}
#endif | [
"lichgo88@gmail.com"
] | lichgo88@gmail.com |
0d78d01b7a298313ac658e7471fac353656749a9 | 8253af47eb31dbc4540f7d57ffacd8dbe151a901 | /robot_localization/src/encoder.cpp | 4cfdc5def063a415e4e14043dd80c1eefe34031d | [
"BSD-3-Clause"
] | permissive | todivasudha/eklavya_localization | fc50edb038b8f769b4cb37ec3987d3485ec8b865 | 210a62e723714d25ecc27e03f7d9b920dac0c348 | refs/heads/master | 2021-01-21T03:49:43.852906 | 2015-05-26T22:43:09 | 2015-05-26T22:43:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,681 | cpp | #include <ros/ros.h>
#include <tf/transform_broadcaster.h>
#include <nav_msgs/Odometry.h>
#include <geometry_msgs/Pose2D.h>
#include "ros/time.h"
geometry_msgs::Pose2D msg;
ros::Publisher odom_pub;
const double l=0.67; //length of the axle
//const double c=0.0212790542; //(2*pi*r)/60, Radius(r) = 8 inch
double x = 0.0;
double y = 0.0;
double th = 0.0;
double vx = 0.0;
double vy = 0.0;
double vth = 0.0;
double v;
double vl,vr;
ros::Time current_time;
ros::Time last_time;
void odomCallback(const geometry_msgs::Pose2D msg)
{
if (ros::ok())
{
vl=msg.x;
vr=msg.y;
current_time = ros::Time::now();
double dt = (current_time - last_time).toSec();
v=(vl+vr)/2;
vth=((vr-vl)/l);
double delta_th = vth * dt;
vx=v*cos(delta_th);
vy=v*sin(delta_th);
//compute odometry in a typical way given the velocities of the robot
double delta_x = (vx * cos(th) - vy * sin(th)) * dt;
double delta_y = (vx * sin(th) + vy * cos(th)) * dt;
x += delta_x;
y += delta_y;
th += delta_th;
tf::TransformBroadcaster odom_broadcaster;
//since all odometry is 6DOF we'll need a quaternion created from yaw
geometry_msgs::Quaternion odom_quat = tf::createQuaternionMsgFromYaw(th);
//first, we'll publish the transform over tf
geometry_msgs::TransformStamped odom_trans;
odom_trans.header.stamp = current_time;
odom_trans.header.frame_id = "odom";
odom_trans.child_frame_id = "base_link";
odom_trans.transform.translation.x = x;
odom_trans.transform.translation.y = y;
odom_trans.transform.translation.z = 0.0;
odom_trans.transform.rotation = odom_quat;
//send the transform
odom_broadcaster.sendTransform(odom_trans);
//next, we'll publish the odometry message over ROS
nav_msgs::Odometry odom;
odom.header.stamp = current_time;
odom.header.frame_id = "odom";
//set the position
odom.pose.pose.position.x = x;
odom.pose.pose.position.y = y;
odom.pose.pose.position.z = 0.0;
odom.pose.pose.orientation = odom_quat;
//set the velocity
odom.child_frame_id = "base_link";
odom.twist.twist.linear.x = vx;
odom.twist.twist.linear.y = vy;
odom.twist.twist.angular.z = vth;
//publish the message
odom_pub.publish(odom);
last_time = current_time;
}
}
int main(int argc, char** argv){
ros::init(argc, argv, "odometry_publisher");
ros::NodeHandle n;
last_time=ros::Time::now();
ros::Subscriber odom_sub=n.subscribe<geometry_msgs::Pose2D>("encoders",50,odomCallback);
odom_pub = n.advertise<nav_msgs::Odometry>("odom", 50);
ros::spin();
return 0;
}
| [
"satyesh.mundra@gmail.com"
] | satyesh.mundra@gmail.com |
fb9b514f3f000b950cc89fd4d5d8470b075bb04d | ed313bf0460c93ad03ad34e86175250b3c0e6ab4 | /codeforces/cf_841_a.cpp | 13394630b097aeada3756c9ff208a0dea9fbf1f1 | [] | no_license | ThereWillBeOneDaypyf/Summer_SolveSet | fd41059c5ddcbd33e2420277119613e991fb6da9 | 9895a9c035538c95a31f66ad4f85b6268b655331 | refs/heads/master | 2022-10-20T02:31:07.625252 | 2020-04-24T11:51:32 | 2020-04-24T11:51:32 | 94,217,614 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 455 | cpp | #include<bits/stdc++.h>
using namespace std;
//thanks to pyf ...
//thanks to qhl ...
int main()
{
map<char, int>m;
int n, k;
while (cin >> n >> k)
{
string s;
cin >> s;
for (int i = 0; i < n; i++)
m[s[i]] ++;
int flag = 1;
for (map<char, int> :: iterator it = m.begin(); it != m.end(); it++)
{
if (it -> second > k)
{
flag = 0;
break;
}
}
if (!flag)
cout << "NO" << endl;
else
cout << "YES" << endl;
}
} | [
"527908203@qq.com"
] | 527908203@qq.com |
d73e6bc79757fc539eb2369ea79239f40dc8f2b8 | 2cf5dadd5fe8f18d6b7a107f3566913698f3f3e1 | /系统模块/游戏组件/41.守把一/原始游戏客户端/CardControl.cpp | 71ac9882e0e0f143ef98a1de6f389783e37e47d3 | [] | no_license | xiaokaixuan/qipai-game | 319a5af77a490daf4c825ca7f54bc0b0bbf5c1a0 | fce39d8192c1ea037ff34abec3d6074d56071934 | refs/heads/master | 2021-01-13T16:23:13.757533 | 2012-06-11T10:53:16 | 2012-06-11T10:53:16 | 54,963,680 | 1 | 0 | null | 2016-03-29T09:35:54 | 2016-03-29T09:35:53 | null | GB18030 | C++ | false | false | 12,860 | cpp | #include "StdAfx.h"
#include "Resource.h"
#include "CardControl.h"
//////////////////////////////////////////////////////////////////////////
//静态变量
bool CCardControl::m_bLoad=false; //加载标志
CSize CCardControl::m_CardSize; //扑克大小
CSkinImage CCardControl::m_ImageCard; //图片资源
//////////////////////////////////////////////////////////////////////////
BEGIN_MESSAGE_MAP(CCardControl, CWnd)
ON_WM_PAINT()
ON_WM_CREATE()
ON_WM_SETCURSOR()
ON_WM_RBUTTONUP()
ON_WM_LBUTTONUP()
ON_WM_LBUTTONDOWN()
END_MESSAGE_MAP()
//////////////////////////////////////////////////////////////////////////
//构造函数
CCardControl::CCardControl()
{
//配置变量
m_bDisplay=false;
m_bHorizontal=true;
m_bPositively=false;
m_bBackShow=false;
//间隔变量
m_dwCardHSpace=20;
m_dwCardVSpace=19;
m_dwShootAltitude=20;
//位置变量
m_XCollocateMode=enXCenter;
m_YCollocateMode=enYCenter;
m_BenchmarkPos.SetPoint(0,0);
//运行变量
m_dwCurrentIndex=0xFFFFFFFF;
//内部数据
m_pSinkWindow=NULL;
//资源变量
if (m_bLoad==false)
{
//加载资源
m_bLoad=true;
m_ImageCard.SetLoadInfo(IDB_CARD,AfxGetInstanceHandle());
//获取大小
CImageHandle CardImageHandle(&m_ImageCard);
m_CardSize.cx=m_ImageCard.GetWidth()/13;
m_CardSize.cy=m_ImageCard.GetHeight()/5;
}
return;
}
//析构函数
CCardControl::~CCardControl()
{
}
//设置窗口
void CCardControl::SetSinkWindow(CWnd * pSinkWindow)
{
//设置变量
m_pSinkWindow=pSinkWindow;
return;
}
//设置方向
void CCardControl::SetDirection(bool bHorizontal)
{
//状态判断
if (m_bHorizontal==bHorizontal) return;
//设置变量
m_bHorizontal=bHorizontal;
//调整控件
if (m_hWnd!=NULL) RectifyControl();
return;
}
//设置背面显示
void CCardControl::SetBackShow(bool bShowBack)
{
//状态判断
if(m_bBackShow==bShowBack) return;
//设置变量
m_bBackShow=bShowBack;
//调整控件
if(m_hWnd!=NULL) RectifyControl();
return;
}
//弹起扑克
void CCardControl::ShootAllCard(bool bShoot)
{
//变量定义
bool bRectify=false;
tagCardItem * pCardItem=NULL;
DWORD dwCardCount=(DWORD)m_CardDataItem.GetCount();
//设置扑克
for (DWORD i=0;i<dwCardCount;i++)
{
//获取扑克
pCardItem=&m_CardDataItem[i];
//扑克分析
if (pCardItem->bShoot!=bShoot)
{
bRectify=true;
pCardItem->bShoot=bShoot;
}
}
//调整控件
if (bRectify==true) RectifyControl();
return;
}
//设置显示
void CCardControl::SetDisplayFlag(bool bDisplay)
{
//状态判断
if (m_bDisplay==bDisplay) return;
//设置变量
m_bDisplay=bDisplay;
//重画控件
if (m_hWnd!=NULL) Invalidate(FALSE);
return;
}
//设置响应
void CCardControl::SetPositively(bool bPositively)
{
//设置变量
m_bPositively=bPositively;
return;
}
//设置间距
void CCardControl::SetCardSpace(DWORD dwCardHSpace, DWORD dwCardVSpace, DWORD dwShootAltitude)
{
//设置变量
m_dwCardHSpace=dwCardHSpace;
m_dwCardVSpace=dwCardVSpace;
m_dwShootAltitude=dwShootAltitude;
//调整控件
if (m_hWnd!=NULL) RectifyControl();
return;
}
//基准位置
void CCardControl::SetBenchmarkPos(int nXPos, int nYPos, enXCollocateMode XCollocateMode, enYCollocateMode YCollocateMode)
{
//设置变量
m_BenchmarkPos.x=nXPos;
m_BenchmarkPos.y=nYPos;
m_XCollocateMode=XCollocateMode;
m_YCollocateMode=YCollocateMode;
//调整控件
if (m_hWnd!=NULL) RectifyControl();
return;
}
//基准位置
void CCardControl::SetBenchmarkPos(const CPoint & BenchmarkPos, enXCollocateMode XCollocateMode, enYCollocateMode YCollocateMode)
{
//设置变量
m_BenchmarkPos=BenchmarkPos;
m_XCollocateMode=XCollocateMode;
m_YCollocateMode=YCollocateMode;
//调整控件
if (m_hWnd!=NULL) RectifyControl();
return;
}
//获取数目
DWORD CCardControl::GetCardCount()
{
return (DWORD)m_CardDataItem.GetCount();
}
//获取扑克
DWORD CCardControl::GetShootCard(BYTE bCardData[], DWORD dwMaxCount)
{
//变量定义
DWORD bShootCount=0L;
DWORD dwCardCount=(DWORD)m_CardDataItem.GetCount();
//搜索扑克
tagCardItem * pCardItem=NULL;
for (DWORD i=0;i<dwCardCount;i++)
{
//获取扑克
pCardItem=&m_CardDataItem[i];
//扑克分析
if (pCardItem->bShoot==true) bCardData[bShootCount++]=pCardItem->bCardData;
}
return bShootCount;
}
//设置扑克
DWORD CCardControl::SetCardData(const BYTE bCardData[], DWORD dwCardCount)
{
//设置扑克
if(m_bBackShow)
m_bBackShow=false;
m_CardDataItem.SetSize(dwCardCount);
for (DWORD i=0;i<dwCardCount;i++)
{
m_CardDataItem[i].bShoot=false;
m_CardDataItem[i].bCardData=bCardData[i];
}
//调整控件
if (m_hWnd!=NULL) RectifyControl();
return dwCardCount;
}
//设置背面显示
DWORD CCardControl::SetBackCard(BYTE byCardCount)
{
//背面显示
m_bBackShow=true;
//设置扑克数
m_CardDataItem.SetSize(byCardCount);
//调整控件
if(m_hWnd!=NULL) RectifyControl();
return byCardCount;
}
//获取扑克
DWORD CCardControl::GetCardData(tagCardItem CardItemArray[], DWORD dwMaxCount)
{
//效验参数
ASSERT(dwMaxCount>=(DWORD)m_CardDataItem.GetCount());
//拷贝扑克
DWORD dwCardCount=(DWORD)m_CardDataItem.GetCount();
tagCardItem * pCardItemData=m_CardDataItem.GetData();
CopyMemory(CardItemArray,pCardItemData,dwCardCount*sizeof(tagCardItem));
return dwCardCount;
}
//设置扑克
DWORD CCardControl::SetCardItem(const tagCardItem CardItemArray[], DWORD dwCardCount)
{
//设置扑克
m_CardDataItem.SetSize(dwCardCount);
CopyMemory(m_CardDataItem.GetData(),CardItemArray,dwCardCount*sizeof(tagCardItem));
//调整控件
if (m_hWnd!=NULL) RectifyControl();
return 0;
}
//设置弹起扑克
DWORD CCardControl::SetShootCard(const BYTE bCardDataIndex[], DWORD dwCardCount)
{
for(DWORD i=0;i<dwCardCount;i++)
{
tagCardItem * pCardItem=&m_CardDataItem[bCardDataIndex[i]];
pCardItem->bShoot=true;
if (m_hWnd!=NULL) RectifyControl();
}
return 0;
}
//调整位置
void CCardControl::RectifyControl()
{
//变量定义
DWORD dwCardCount=(DWORD)m_CardDataItem.GetCount();
//计算大小
CSize ControlSize;
if (m_bHorizontal==true)
{
ControlSize.cy=m_CardSize.cy+m_dwShootAltitude;
ControlSize.cx=(dwCardCount>0)?(m_CardSize.cx+(dwCardCount-1)*m_dwCardHSpace):0;
}
else
{
ControlSize.cx=m_CardSize.cx;
ControlSize.cy=(dwCardCount>0)?(m_CardSize.cy+(dwCardCount-1)*m_dwCardVSpace):0;
}
//横向位置
int nXPos=0;
switch (m_XCollocateMode)
{
case enXLeft: { nXPos=m_BenchmarkPos.x; break; }
case enXCenter: { nXPos=m_BenchmarkPos.x-ControlSize.cx/2; break; }
case enXRight: { nXPos=m_BenchmarkPos.x-ControlSize.cx; break; }
}
//竖向位置
int nYPos=0;
switch (m_YCollocateMode)
{
case enYTop: { nYPos=m_BenchmarkPos.y; break; }
case enYCenter: { nYPos=m_BenchmarkPos.y-ControlSize.cy/2; break; }
case enYBottom: { nYPos=m_BenchmarkPos.y-ControlSize.cy; break; }
}
//移动位置
SetWindowPos(NULL,nXPos,nYPos,ControlSize.cx,ControlSize.cy,SWP_NOZORDER);
//变量定义
CRgn CardRegion,SignedRegion;
tagCardItem * pCardItem=NULL;
//设置区域
CardRegion.CreateRectRgn(0,0,0,0);
for (DWORD i=0;i<dwCardCount;i++)
{
//获取扑克
pCardItem=&m_CardDataItem[i];
//计算位置
if (m_bHorizontal==true)
{
nXPos=m_dwCardHSpace*i;
nYPos=(pCardItem->bShoot==false)?m_dwShootAltitude:0;
}
else
{
nXPos=0;
nYPos=m_dwCardVSpace*i;
}
//合并区域
SignedRegion.CreateRoundRectRgn(nXPos,nYPos,nXPos+m_CardSize.cx+1,nYPos+m_CardSize.cy+1,2,2);
CardRegion.CombineRgn(&CardRegion,&SignedRegion,RGN_OR);
SignedRegion.DeleteObject();
}
//设置区域
SetWindowRgn(CardRegion,TRUE);
m_CardRegion.DeleteObject();
m_CardRegion.Attach(CardRegion.Detach());
//重画界面
Invalidate(TRUE);
return;
}
//索引切换
DWORD CCardControl::SwitchCardPoint(const CPoint & MousePoint)
{
if (m_bHorizontal==true)
{
//变量定义
DWORD dwCardCount=(DWORD)m_CardDataItem.GetCount();
//获取索引
DWORD dwCardIndex=MousePoint.x/m_dwCardHSpace;
if (dwCardIndex>=dwCardCount) dwCardIndex=(dwCardCount-1);
//判断按键
bool bCurrentCard=true;
bool bCardShoot=m_CardDataItem[dwCardIndex].bShoot;
if ((bCardShoot==true)&&(MousePoint.y>m_CardSize.cy)) bCurrentCard=false;
if ((bCardShoot==false)&&(MousePoint.y<(INT)m_dwShootAltitude)) bCurrentCard=false;
//向前寻找
if (bCurrentCard==false)
{
while (dwCardIndex>0)
{
dwCardIndex--;
bCardShoot=m_CardDataItem[dwCardIndex].bShoot;
if ((bCardShoot==false)&&(MousePoint.y>m_CardSize.cx)) break;
if ((bCardShoot==true)&&(MousePoint.y<(INT)m_dwShootAltitude)) break;
}
}
return dwCardIndex;
}
return DWORD(-1);
}
//重画函数
void CCardControl::OnPaint()
{
CPaintDC dc(this);
//获取位置
CRect rcClient;
GetClientRect(&rcClient);
//加载位图
CImageHandle HandleCard(&m_ImageCard);
//创建位图
CBitmap BufferImage;
BufferImage.CreateCompatibleBitmap(&dc,rcClient.Width(),rcClient.Height());
//创建 DC
CDC BufferDC;
BufferDC.CreateCompatibleDC(&dc);
BufferDC.SelectObject(&BufferImage);
//绘画扑克
DWORD dwXImagePos,dwYImagePos;
DWORD dwXScreenPos,dwYScreenPos;
for (INT i=0;i<m_CardDataItem.GetCount();i++)
{
//只显示背面
if( m_bBackShow)
{
dwXImagePos=m_CardSize.cx*2;
dwYImagePos=m_CardSize.cy*4;
//屏幕位置
if (m_bHorizontal==true)
{
dwXScreenPos=m_dwCardHSpace*i;
dwYScreenPos=0;
}
else
{
dwXScreenPos=0;
dwYScreenPos=m_dwCardVSpace*i;
}
//绘画扑克
m_ImageCard.BitBlt(BufferDC,dwXScreenPos,dwYScreenPos,m_CardSize.cx,m_CardSize.cy,dwXImagePos,dwYImagePos);
continue;
}
//获取扑克
tagCardItem * pCardItem=&m_CardDataItem[i];
//图片位置
if ((m_bDisplay==true)&&(pCardItem->bCardData!=0))
{
dwXImagePos=((pCardItem->bCardData&CARD_MASK_VALUE)-1)*m_CardSize.cx;
dwYImagePos=((pCardItem->bCardData&CARD_MASK_COLOR)>>4)*m_CardSize.cy;
}
else
{
dwXImagePos=m_CardSize.cx*2;
dwYImagePos=m_CardSize.cy*4;
}
//屏幕位置
if (m_bHorizontal==true)
{
dwXScreenPos=m_dwCardHSpace*i;
dwYScreenPos=(pCardItem->bShoot==false)?m_dwShootAltitude:0;
}
else
{
dwXScreenPos=0;
dwYScreenPos=m_dwCardVSpace*i;
}
//绘画扑克
m_ImageCard.BitBlt(BufferDC,dwXScreenPos,dwYScreenPos,m_CardSize.cx,m_CardSize.cy,dwXImagePos,dwYImagePos);
}
//绘画界面
dc.BitBlt(0,0,rcClient.Width(),rcClient.Height(),&BufferDC,0,0,SRCCOPY);
//清理资源
BufferDC.DeleteDC();
BufferImage.DeleteObject();
return;
}
//建立消息
int CCardControl::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
if (__super::OnCreate(lpCreateStruct)==-1) return -1;
//设置背景
SetClassLong(m_hWnd,GCL_HBRBACKGROUND,NULL);
return 0;
}
//鼠标消息
void CCardControl::OnRButtonUp(UINT nFlags, CPoint Point)
{
__super::OnRButtonUp(nFlags, Point);
//状态判断
if ((m_bHorizontal==false)||(m_bPositively==false)) return;
//发送消息
if (m_pSinkWindow!=NULL) m_pSinkWindow->PostMessage(IDM_RIGHT_HIT_CARD,0,0);
return;
}
//鼠标消息
void CCardControl::OnLButtonUp(UINT nFlags, CPoint Point)
{
__super::OnLButtonUp(nFlags, Point);
//状态判断
if (m_dwCurrentIndex==0xFFFFFFFF) return;
if ((m_bHorizontal==false)||(m_bPositively==false)) return;
//获取索引
DWORD dwCurrentIndex=SwitchCardPoint(Point);
if (dwCurrentIndex!=m_dwCurrentIndex) return;
//设置控件
tagCardItem * pCardItem=&m_CardDataItem[dwCurrentIndex];
pCardItem->bShoot=!pCardItem->bShoot;
//发送消息
if (m_pSinkWindow!=NULL) m_pSinkWindow->PostMessage(IDM_LEFT_HIT_CARD,0,0);
//调整控件
RectifyControl();
return;
}
//鼠标消息
void CCardControl::OnLButtonDown(UINT nFlags, CPoint Point)
{
__super::OnLButtonDown(nFlags, Point);
//状态判断
if ((m_bHorizontal==false)||(m_bPositively==false)) return;
//获取索引
m_dwCurrentIndex=SwitchCardPoint(Point);
return;
}
//光标消息
BOOL CCardControl::OnSetCursor(CWnd * pWnd, UINT nHitTest, UINT message)
{
//设置光标
if (m_bPositively==true)
{
SetCursor(LoadCursor(AfxGetInstanceHandle(),MAKEINTRESOURCE(IDC_CARD_CUR)));
return TRUE;
}
return __super::OnSetCursor(pWnd,nHitTest,message);
}
//////////////////////////////////////////////////////////////////////////
| [
"pybmfc@gmail.com"
] | pybmfc@gmail.com |
1ab6c89c6bcc671c257fc8319d6f4e12961baea5 | 91cde61e76483835fa2f9549ed67a4beb7568e20 | /machineRoomReservation/manager.cpp | 1e6fcc4a10e0e4215bcb9a05c55d38b5c4dd0ce4 | [] | no_license | occultlemon/MyApplication | 7378ec909bc7d4db063b7df8ba25c43a992e9a6e | 09cf37c21d9012ca7eb86cdedc51cd3b6406cd7b | refs/heads/master | 2023-06-14T08:43:11.984063 | 2023-06-12T12:16:38 | 2023-06-12T12:16:38 | 176,842,378 | 2 | 0 | null | null | null | null | GB18030 | C++ | false | false | 9,626 | cpp | /******************************************************************************
*
* @file manager.cpp
* @brief 管理员类 实现
* @author wangjie
* @date $time$
* @history
*****************************************************************************/
#include<iostream>
using namespace std;
#include"manager.h"
#include<fstream>
#include"globalFile.h"
#include<algorithm>
#include"student.h"
#include"teacher.h"
#include"computerRoom.h"
//默认构造
Manager::Manager()
{
}
//有参构造
Manager::Manager(string name, string pwd)
{
//初始化管理员信息
this->m_Name = name;
this->m_Pwd = pwd;
//初始化容器 获取到所有老师、学生信息
this->initVector();
//获取机房信息
this->initComRoom();
}
//进入管理员子菜单页面
void Manager::managerMenu(Identity * &manager)
{
while (true)
{
//调用管理员菜单
manager->openMenu();
Manager* man = (Manager*)manager; //将父类指针强转为子类指针 从而调用子类的接口
int select = 0;
cin >> select;
if (select == 1) //添加账号
{
//cout << "添加账号" << endl; //测试
man->addPerson(); //用子类指针调用接口
}
else if (select == 2) //查看账号
{
//cout << "查看账号" << endl;
man->showPerson();
}
else if (select == 3) //查看机房
{
//cout << "查看机房" << endl;
man->showComputer();
}
else if (select == 4) //清空预约
{
//cout << "清空预约" << endl;
man->cleanFile();
}
else
{
//注销
delete manager; //销毁堆区对象 手动开辟手动释放
cout << "注销成功" << endl;
system("pause");
system("cls");
return;
}
}
}
//选择菜单
void Manager::openMenu()
{
cout << "欢迎管理员" << this->m_Name << "登录!" << endl;
cout << endl << endl;
cout << "\t\t-------------------------------------\n";
cout << "\t\t| |\n";
cout << "\t\t| 1、添加账号 |\n";
cout << "\t\t| |\n";
cout << "\t\t| |\n";
cout << "\t\t| 2、查看账号 |\n";
cout << "\t\t| |\n";
cout << "\t\t| |\n";
cout << "\t\t| 3、查看机房 |\n";
cout << "\t\t| |\n";
cout << "\t\t| |\n";
cout << "\t\t| 4、清空预约 |\n";
cout << "\t\t| |\n";
cout << "\t\t| |\n";
cout << "\t\t| 0、注销登录 |\n";
cout << "\t\t| |\n";
cout << "\t\t| |\n";
cout << "\t\t-------------------------------------\n";
cout << "请输入您的操作:" << endl;
}
//添加账号
void Manager::addPerson()
{
cout << "请输入添加账号的类型:" << endl;
cout << "1、添加学生" << endl;
cout << "2、添加老师" << endl;
string fileName; //文件名 与globalFile中声明的匹配
string tip; //提示
ofstream ofs; //创建写入文件对象
string errorTip; //创建 重复导致的错题信息提示
//创建用户选择变量并且接收
int select = 0;
cin >> select;
if (select == 1)
{
fileName = STUDENT_FILE;
tip = "请输入学号:";
errorTip = "学号重复,请重新输入";
}
else if(select == 2)
{
fileName = TEACHER_FILE;
tip = "请输入职工号:";
errorTip = "职工号重复,请重新输入";
}
else
{
cout << "输入有误,返回上级菜单" << endl;
system("pause");
system("cls");
return;
}
ofs.open(fileName, ios::out | ios::app); //out写入 app追加 in读取
//定义变量接收用户输入
int id;
string name;
string pwd;
//输入id
cout << tip << endl;
//cin >> id; //未进行重复检测
//进行id重复检测
while (true)
{
cin >> id;
//传参,开始调用checkRepeat函数 type=1写死 定义一个bool类型接收
bool ret = this->checkRepeat(id, 1);
//有重复
if (ret)
{
cout << errorTip << endl;
}
else
{
break;
}
}
//输入姓名
cout << "请输入姓名:" << endl;
cin >> name;
//输入密码
cout << "请输入密码" << endl;
cin >> pwd;
//打印一下输入的信息
ofs << id << "\t" << name << "\t" << pwd << "\t" << endl;
cout << "添加成功!" << endl;
system("pause");
system("cls");
//关闭文件对象
ofs.close();
//添加成功后初始化容器
this->initVector();
//初始化显示机房情况
this->initComRoom();
}
void printStudent(Student& s)
{
cout << "学号:" << s.m_Id << "\t姓名:" << s.m_Name << "\t密码:" << s.m_Pwd << endl;
}
void printTeacher(Teacher& t)
{
cout << "学号:" << t.m_EmpId << "\t姓名:" << t.m_Name << "\t密码:" << t.m_Pwd << endl;
}
//查看账号
void Manager::showPerson()
{
cout << "请选择查看内容:" << endl;
cout << "1、查看所有学生" << endl;
cout << "2、查看所有老师" << endl;
int select = 0;
cin >> select;
if(select == 1)
{
cout << "所有学生信息如下:" << endl;
for_each(vStu.begin(), vStu.end(), printStudent);
}
else if(select == 2)
{
cout << "所有老师信息如下:" << endl;
for_each(vTea.begin(), vTea.end(), printTeacher);
}
else
{
cout << "输入有误,返回上级菜单" << endl;
system("pause");
system("cls");
return;
}
}
//查看机房信息
void Manager::showComputer()
{
cout << "机房信息如下:" << endl;
//对机房类的容器创建迭代器,遍历机房信息文件
for (vector<ComputerRoom>::iterator it = vCom.begin(); it != vCom.end(); it++)
{
cout << "机器编号:" << it->m_ComId << "\t机房容量大小:" << it->m_MaxNum << endl;
}
system("pause");
system("cls");
}
//清空预约记录
void Manager::cleanFile()
{
ofstream ofs(ORDER_FILE, ios::trunc); //trunc 防止文件已存在
ofs.close();
cout << "清空成功!" << endl;
system("pause");
system("cls");
}
//初始化容器 主要是为了读取到所有的学生和教师信息,方便去重id
void Manager::initVector()
{
//清空容器
vStu.clear();
vTea.clear();
//读取文件中的信息
ifstream ifs; //创建读取文件对象
//读取学生文件的信息
ifs.open(STUDENT_FILE, ios::in);
//若没有打开文件,提醒
if (!ifs.is_open())
{
cout << "文件读取失败" << endl;
return;
}
Student s; //创建学生类对象
while (ifs >> s.m_Id&& ifs >> s.m_Name&& ifs >> s.m_Pwd) //在每一行逐列读取
{
//读取到的每一条信息,都push_back()到vStu容器中
vStu.push_back(s);
}
cout << "当前学生数量为:" << vStu.size() << endl;
ifs.close();
//读取老师文件的信息
ifs.open(TEACHER_FILE, ios::in);
//若没有打开文件,提醒
if (!ifs.is_open())
{
cout << "文件读取失败" << endl;
return;
}
Teacher t;//创建教师类对象
while (ifs >> t.m_EmpId&& ifs >> t.m_Name&& ifs >> t.m_Pwd)
{
vTea.push_back(t);
}
cout << "当前教师数量为:" << vTea.size() << endl;
ifs.close();
}
bool Manager::checkRepeat(int id, int type)
{
if (type == 1)
{
//创建一个Student类中容器的迭代器,从begin到end遍历vStu容器
for (vector<Student>::iterator it = vStu.begin(); it != vStu.end(); it++)
{
//如果传入的id = 遍历容器中的m_Id,则有重复
if (id == it->m_Id)
{
return true;
}
}
}
else
{
//创建一个Teacher类中容器的迭代器进行遍历
for (vector<Teacher>::iterator it = vTea.begin(); it != vTea.end(); it++)
{
if (id == it->m_EmpId)
{
return true;
}
}
}
return false;
}
void Manager::initComRoom()
{
//创建文件流对象
ifstream ifs;
ifs.open(COMPUTER_FILE, ios::in); //打开机房文件 读操作
ComputerRoom c;
while (ifs >> c.m_ComId&& ifs >> c.m_MaxNum)
{
//将遍历到的数据添加到容器中
vCom.push_back(c);
}
cout << "当前机房数量为:" << vCom.size() << endl;
ifs.close();
}
| [
"noreply@github.com"
] | noreply@github.com |
1f869cc75f38148d4dbff37d4401c7cf549cf86b | 98b1e51f55fe389379b0db00365402359309186a | /homework_6/problem_2/100x100/0.407/T | 2801c5ddc5c1d3e12c8fecddf13a5f642d442763 | [] | no_license | taddyb/597-009 | f14c0e75a03ae2fd741905c4c0bc92440d10adda | 5f67e7d3910e3ec115fb3f3dc89a21dcc9a1b927 | refs/heads/main | 2023-01-23T08:14:47.028429 | 2020-12-03T13:24:27 | 2020-12-03T13:24:27 | 311,713,551 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 90,812 | /*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 8
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "0.407";
object T;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 0 0 1 0 0 0];
internalField nonuniform List<scalar>
10000
(
50
4.65278
-4.65242
-1.18363
1.18195
0.457173
-0.452284
-0.229814
0.218962
0.141932
-0.121766
-0.103871
0.0709683
0.0858256
-0.0376212
-0.0750792
0.01119
0.0648023
0.01147
-0.050955
-0.0296077
0.0318772
0.0403089
-0.00879981
-0.0403047
-0.0138324
0.0283222
0.0292719
-0.00739904
-0.0312883
-0.014371
0.0183694
0.0263951
0.00308784
-0.0216493
-0.0201402
0.00311403
0.0209897
0.0154907
-0.00520024
-0.0188614
-0.0130799
0.00444265
0.0162223
0.012408
-0.00176715
-0.0130016
-0.0124309
-0.00206935
0.00872376
0.0117794
0.00598935
-0.00325191
-0.00912045
-0.00829334
-0.00240153
0.00408019
0.00722424
0.00586357
0.00160795
-0.00273108
-0.00495239
-0.00444487
-0.00206298
0.000693851
0.00256361
0.00301632
0.00225784
0.000910409
-0.000374059
-0.00117725
-0.00139011
-0.00114145
-0.000665014
-0.000180168
0.000174705
0.000353968
0.000380752
0.000310978
0.000202778
9.88755e-05
2.16367e-05
-2.3611e-05
-4.19405e-05
-4.24722e-05
-3.40355e-05
-2.30854e-05
-1.33159e-05
-6.19687e-06
-1.80303e-06
4.48847e-07
1.29681e-06
1.37461e-06
1.11996e-06
7.88534e-07
4.98594e-07
2.88526e-07
1.52515e-07
7.74739e-08
2.81443e-08
95.3473
49.9999
10.4886
-4.65125
-2.82238
1.17787
1.13883
-0.442581
-0.590359
0.20031
0.367516
-0.0906874
-0.261151
0.024721
0.199773
0.0245188
-0.153179
-0.0640337
0.107096
0.092222
-0.0562013
-0.103571
0.0026083
0.0926209
0.0448648
-0.0585169
-0.0733466
0.0090986
0.0718408
0.0382823
-0.0393415
-0.0622902
-0.00940158
0.0496367
0.0470568
-0.00755857
-0.0491017
-0.0348049
0.0143081
0.0444866
0.0279434
-0.0139941
-0.0388389
-0.0257762
0.0089536
0.0324549
0.02624
-0.000755746
-0.0242245
-0.0264576
-0.00874635
0.0131456
0.0231789
0.0163471
-0.000168376
-0.0142829
-0.0177671
-0.010458
0.00149905
0.0106836
0.0128355
0.00834042
0.000814906
-0.00557171
-0.00825958
-0.00702314
-0.00337688
0.000614143
0.00336992
0.00427223
0.00357991
0.00202638
0.000383414
-0.00082384
-0.00140169
-0.00142237
-0.00109441
-0.00064192
-0.000230432
5.63996e-05
0.0002045
0.000241806
0.000211196
0.00015197
9.12949e-05
4.32111e-05
1.16896e-05
-5.18844e-06
-1.16831e-05
-1.21151e-05
-9.79941e-06
-6.80826e-06
-4.18504e-06
-2.27944e-06
-1.07651e-06
-4.07697e-07
-8.52133e-08
3.21486e-08
6.9029e-08
4.07537e-08
104.653
89.5114
49.9996
12.1272
-4.64881
-3.50396
1.17053
1.49965
-0.426929
-0.81694
0.172647
0.526925
-0.0478187
-0.378672
-0.0348044
0.282914
0.0988343
-0.201484
-0.146504
0.118134
0.170978
-0.0307029
-0.163154
-0.0511909
0.118551
0.109357
-0.0442654
-0.124551
-0.0373731
0.0884107
0.0934028
-0.0149113
-0.0956952
-0.0582394
0.0419537
0.0866024
0.0332108
-0.0506543
-0.0744391
-0.0206915
0.0485729
0.0645999
0.0184504
-0.0401415
-0.0572602
-0.0230942
0.0269909
0.0497452
0.030605
-0.00990673
-0.0383671
-0.0358047
-0.00864338
0.0208356
0.0328719
0.0227049
0.000362833
-0.0188118
-0.0245217
-0.0162417
-0.00111633
0.0118132
0.0167841
0.0133037
0.00491563
-0.00360937
-0.0087759
-0.0094818
-0.00671788
-0.00248384
0.00132914
0.00361029
0.00415232
0.00339077
0.00201206
0.000629608
-0.000382856
-0.000908665
-0.00101503
-0.000853851
-0.000580826
-0.000310232
-0.000102932
2.46071e-05
8.31786e-05
9.46153e-05
8.07238e-05
5.78744e-05
3.58293e-05
1.88942e-05
7.84757e-06
1.69724e-06
-1.08094e-06
-1.89626e-06
-1.75337e-06
-1.2924e-06
-8.0618e-07
-4.41361e-07
-2.04505e-07
-4.40564e-08
101.183
104.652
87.8728
49.9993
12.8089
-4.6447
-3.86524
1.15914
1.72763
-0.404289
-0.979305
0.134976
0.649485
0.00732213
-0.469134
-0.10691
0.34034
0.182745
-0.221969
-0.231362
0.0998994
0.241032
0.0210199
-0.201565
-0.120968
0.114323
0.172709
-0.000215858
-0.155647
-0.100461
0.0732559
0.142301
0.0366016
-0.101906
-0.112284
0.00293082
0.104618
0.0861223
-0.02
-0.0962118
-0.0703636
0.0208691
0.0838787
0.0641166
-0.0107723
-0.0688199
-0.0630066
-0.00634142
0.0491948
0.0607212
0.0257373
-0.0235923
-0.0503947
-0.0398891
-0.00493173
0.0282468
0.0396409
0.0264074
0.000612028
-0.0212505
-0.0285057
-0.0205513
-0.00453606
0.0103029
0.0176701
0.0162875
0.00897302
0.000163547
-0.00644781
-0.00915375
-0.00822519
-0.00512117
-0.00153378
0.00129153
0.00280952
0.00308155
0.00251303
0.00158624
0.00068252
1.39392e-05
-0.000362486
-0.000490531
-0.000456169
-0.000344657
-0.000218574
-0.000112927
-4.01844e-05
1.26912e-06
1.93717e-05
2.30966e-05
1.97346e-05
1.40926e-05
8.74105e-06
4.70176e-06
2.07503e-06
6.13854e-07
-1.08303e-07
-3.21103e-07
-3.97235e-07
-2.56994e-07
98.8177
102.822
104.65
87.1911
49.9988
13.1705
-4.63848
-4.09451
1.14293
1.89302
-0.373725
-1.10743
0.0865236
0.748589
0.0748049
-0.538111
-0.190278
0.373942
0.272946
-0.215612
-0.313235
0.0548597
0.29593
0.0931128
-0.213629
-0.197
0.0793579
0.223383
0.0669753
-0.15813
-0.166861
0.0266646
0.170668
0.103713
-0.0747847
-0.15411
-0.0589768
0.0901265
0.132252
0.0366558
-0.0863184
-0.114646
-0.0326508
0.0712865
0.101554
0.04088
-0.0479296
-0.0882022
-0.0542003
0.0176275
0.0680326
0.0634342
0.0152654
-0.0369686
-0.0582642
-0.0402128
-0.000605148
0.0333679
0.0434673
0.0287743
0.00195715
-0.0209598
-0.0297651
-0.0235877
-0.00871052
0.00640874
0.0155724
0.0168252
0.0119227
0.0044104
-0.00235705
-0.0064081
-0.00737335
-0.00602413
-0.00357776
-0.00112295
0.000676291
0.001612
0.00180275
0.00151781
0.00103353
0.000552989
0.000184536
-4.23469e-05
-0.00014666
-0.000167113
-0.000142443
-0.000101776
-6.25102e-05
-3.23454e-05
-1.26883e-05
-1.79317e-06
3.06596e-06
4.38767e-06
4.00289e-06
3.02122e-06
2.03764e-06
1.23158e-06
7.42839e-07
3.12456e-07
99.543
98.8211
103.504
104.647
86.8294
49.9983
13.4006
-4.62977
-4.26237
1.1212
2.02634
-0.334411
-1.21538
0.0267535
0.830428
0.154279
-0.587743
-0.282999
0.384195
0.365534
-0.183351
-0.386535
-0.0135676
0.32994
0.178421
-0.196301
-0.269026
0.0164454
0.251418
0.147372
-0.127872
-0.222479
-0.0451305
0.168007
0.17104
-0.0159755
-0.168604
-0.128461
0.0411466
0.153506
0.103838
-0.0411748
-0.133725
-0.0950538
0.0243824
0.110675
0.0949778
0.00337598
-0.080926
-0.0936104
-0.0351866
0.0415723
0.07989
0.0596028
0.00339613
-0.0471195
-0.062
-0.0388102
0.00225129
0.0353416
0.0447105
0.030592
0.00490622
-0.0178452
-0.0282797
-0.0250144
-0.0129049
0.000969584
0.0109604
0.0146528
0.0127116
0.00756066
0.00187376
-0.00245509
-0.004659
-0.00491113
-0.003893
-0.00237439
-0.00094417
8.42943e-05
0.000640901
0.000808306
0.000728715
0.000537795
0.000332371
0.000164728
5.18232e-05
-1.08113e-05
-3.67824e-05
-4.06749e-05
-3.4039e-05
-2.43101e-05
-1.53847e-05
-8.70109e-06
-4.36079e-06
-1.86131e-06
-5.96042e-07
-7.33556e-08
1.20086e-07
8.63426e-08
100.453
98.8612
98.8276
103.866
104.642
86.5992
49.9976
13.5699
-4.61816
-4.3997
1.09325
2.14222
-0.285634
-1.31001
-0.0446226
0.897632
0.244975
-0.618464
-0.38262
0.371095
0.456166
-0.126622
-0.445774
-0.100833
0.338502
0.268759
-0.149025
-0.32704
-0.0684086
0.249496
0.228872
-0.0657152
-0.25447
-0.130879
0.12952
0.222185
0.0652955
-0.146398
-0.186889
-0.0345486
0.137669
0.161059
0.0310562
-0.114692
-0.143962
-0.0457021
0.0808206
0.127916
0.0685265
-0.0368232
-0.102572
-0.0866163
-0.0123764
0.0606291
0.0845881
0.052396
-0.00662542
-0.0529064
-0.0625406
-0.0373175
0.0025657
0.0339874
0.0436262
0.0319628
0.00920019
-0.0122734
-0.0240796
-0.0242355
-0.0159511
-0.00463978
0.00492602
0.0101813
0.0109071
0.00844258
0.00463919
0.00105233
-0.00143656
-0.00261616
-0.00272662
-0.00219422
-0.0014273
-0.0007105
-0.000184437
0.000123683
0.000252411
0.000263749
0.00021572
0.000150002
9.02657e-05
4.60321e-05
1.80762e-05
3.05349e-06
-3.36175e-06
-4.9515e-06
-4.29422e-06
-3.00192e-06
-1.73162e-06
-8.56874e-07
-2.83685e-07
2.94757e-08
100.23
100.444
98.5
98.8379
104.095
104.634
86.4297
49.9969
13.7095
-4.60329
-4.5216
1.05846
2.24813
-0.226802
-1.39457
-0.127639
0.950965
0.345711
-0.629904
-0.486214
0.334693
0.54024
-0.0476423
-0.485886
-0.201271
0.318615
0.355354
-0.0739122
-0.362137
-0.166458
0.213801
0.298614
0.0225222
-0.253162
-0.215998
0.0571224
0.242839
0.153863
-0.0861884
-0.216629
-0.12097
0.0820496
0.18854
0.112315
-0.0562334
-0.159022
-0.117432
0.0156122
0.121745
0.122439
0.0319831
-0.0706442
-0.111387
-0.0720571
0.00871182
0.0728155
0.0838814
0.0448185
-0.0129465
-0.054306
-0.0608668
-0.0365815
0.00013374
0.0294895
0.0402281
0.0323908
0.013938
-0.00511895
-0.0175367
-0.0208453
-0.0166959
-0.00880943
-0.000887172
0.00467905
0.00712192
0.00691787
0.0051374
0.00286951
0.000886
-0.000447775
-0.00109764
-0.0012203
-0.00103239
-0.000724344
-0.000423336
-0.000191802
-4.4261e-05
3.17299e-05
5.84355e-05
5.73288e-05
4.436e-05
2.92254e-05
1.65516e-05
7.74938e-06
2.45328e-06
-1.8744e-07
-1.29698e-06
-1.37188e-06
-1.31978e-06
-7.83157e-07
99.7804
100.591
100.429
98.2714
98.8529
104.264
104.624
86.2899
49.996
13.8348
-4.58477
-4.636
1.01623
2.34796
-0.157448
-1.47039
-0.222072
0.990187
0.454915
-0.621398
-0.590459
0.275423
0.613087
0.0504511
-0.502542
-0.308257
0.269133
0.429393
0.0243036
-0.367334
-0.26698
0.144559
0.344529
0.126658
-0.213613
-0.284806
-0.0406041
0.223618
0.231449
0.00453989
-0.205302
-0.197463
-0.00515597
0.172957
0.179446
0.0300547
-0.129036
-0.165806
-0.0672137
0.0718735
0.141341
0.100757
-0.0048749
-0.0936315
-0.109854
-0.055234
0.0246707
0.0782662
0.0800097
0.038913
-0.0149222
-0.0517675
-0.0575408
-0.0366092
-0.00454604
0.0223199
0.0344342
0.0310592
0.017787
0.00222302
-0.00964241
-0.015117
-0.0146006
-0.010306
-0.00482127
-0.000113048
0.00285179
0.00399495
0.00377613
0.00282628
0.0016918
0.000720548
5.89199e-05
-0.000291959
-0.000406445
-0.000378157
-0.000286711
-0.000185158
-0.000100859
-4.25411e-05
-8.27362e-06
8.18771e-06
1.355e-05
1.31084e-05
1.03931e-05
7.29028e-06
4.73288e-06
2.80511e-06
1.70436e-06
7.49835e-07
99.8582
99.798
100.818
100.408
98.1052
98.8733
104.402
104.611
86.1643
49.995
13.9538
-4.56226
-4.74727
0.96602
2.44365
-0.0772309
-1.53769
-0.327439
1.01453
0.570646
-0.592296
-0.691736
0.19429
0.670185
0.163578
-0.492444
-0.414477
0.190957
0.482635
0.138514
-0.338282
-0.358271
0.0461792
0.356867
0.23333
-0.136578
-0.323008
-0.149551
0.162126
0.280198
0.110572
-0.149038
-0.243535
-0.106226
0.111722
0.210725
0.122257
-0.0565218
-0.170889
-0.141131
-0.00989174
0.112687
0.141645
0.0717347
-0.0353044
-0.105425
-0.102056
-0.0402494
0.0341446
0.0781373
0.0747584
0.0355698
-0.0127617
-0.0458341
-0.0526146
-0.0367078
-0.010393
0.013335
0.0263995
0.0272774
0.0193804
0.00806335
-0.00200967
-0.00824357
-0.0102081
-0.00893621
-0.00600987
-0.00284531
-0.000336943
0.00117937
0.00177542
0.00172645
0.00134227
0.000868514
0.000453565
0.00015848
-1.45004e-05
-9.23761e-05
-0.000109548
-9.5581e-05
-7.08005e-05
-4.6549e-05
-2.76235e-05
-1.4806e-05
-7.13642e-06
-2.99629e-06
-1.08573e-06
-3.06387e-07
-9.13494e-08
-9.60365e-08
100.123
99.6318
99.8247
100.981
100.378
97.9708
98.8998
104.524
104.594
86.0449
49.994
14.0714
-4.5354
-4.85792
0.907314
2.53605
0.0140558
-1.59608
-0.443
1.02299
0.690633
-0.542168
-0.786238
0.0929945
0.707365
0.286776
-0.453564
-0.512284
0.0870966
0.508033
0.2597
-0.273783
-0.428789
-0.0730277
0.329529
0.327643
-0.0287198
-0.320077
-0.25219
0.0638779
0.286307
0.211685
-0.0540268
-0.243908
-0.197767
0.0146053
0.192378
0.194044
0.0418799
-0.12519
-0.179686
-0.0983484
0.0412599
0.135158
0.128937
0.043097
-0.056214
-0.108085
-0.0918612
-0.0294634
0.0372011
0.0737322
0.0690538
0.0346452
-0.00725929
-0.0370721
-0.0458221
-0.0357657
-0.0158924
0.00388294
0.0168734
0.0210018
0.017903
0.0109851
0.00360361
-0.00201969
-0.00505054
-0.00573086
-0.00485318
-0.00329139
-0.00171575
-0.000498556
0.000249278
0.000584226
0.000634635
0.000532485
0.000378387
0.000232752
0.000122066
5.05592e-05
1.13045e-05
-6.01315e-06
-1.06739e-05
-9.46152e-06
-6.30196e-06
-3.38143e-06
-1.13892e-06
-1.82364e-08
7.09834e-07
7.12074e-07
100.104
100.092
99.4711
99.8614
101.111
100.34
97.8536
98.933
104.64
104.574
85.9268
49.9928
14.1903
-4.50384
-4.96934
0.839658
2.62536
0.116486
-1.64475
-0.567765
1.01448
0.812312
-0.470937
-0.870088
-0.0260236
0.721014
0.414339
-0.385346
-0.594103
-0.0374016
0.500311
0.377567
-0.176076
-0.468341
-0.201573
0.261036
0.395089
0.0979882
-0.271189
-0.330349
-0.0581477
0.243082
0.286558
0.0640795
-0.192652
-0.256249
-0.0978519
0.123266
0.222327
0.139496
-0.0373415
-0.165986
-0.163175
-0.0511582
0.0790022
0.141757
0.110283
0.0198732
-0.0673325
-0.104412
-0.0819578
-0.0236358
0.0346744
0.066048
0.06296
0.0351933
0.000326139
-0.0262338
-0.0369676
-0.0326844
-0.0194036
-0.00429407
0.00732843
0.0131781
0.0136258
0.0105437
0.00610927
0.00200768
-0.000867528
-0.00233415
-0.0026592
-0.00228161
-0.00161354
-0.000943397
-0.000420356
-8.47587e-05
8.73447e-05
0.000145316
0.000138568
0.000104589
6.6391e-05
3.50473e-05
1.3692e-05
1.41901e-06
-4.37289e-06
-6.02304e-06
-5.8152e-06
-4.4481e-06
-3.54042e-06
-1.91382e-06
99.9281
100.263
100.05
99.347
99.909
101.22
100.293
97.7461
98.9736
104.752
104.549
85.8074
49.9916
14.3123
-4.46725
-5.08231
0.762638
2.71133
0.229997
-1.68269
-0.7005
0.98799
0.932879
-0.378977
-0.939465
-0.159575
0.708273
0.540007
-0.288826
-0.652874
-0.175667
0.456457
0.481334
-0.0508204
-0.469208
-0.325884
0.155012
0.423526
0.227643
-0.178403
-0.368265
-0.18531
0.152818
0.317165
0.182882
-0.0954011
-0.263967
-0.198925
0.0163292
0.194503
0.207218
0.0693674
-0.099498
-0.179746
-0.132836
-0.00955756
0.101627
0.137384
0.0913676
0.00434508
-0.0699426
-0.0968184
-0.0736005
-0.0223168
0.0277534
0.0557255
0.0559453
0.0357557
0.00833398
-0.0144964
-0.0263856
-0.0269327
-0.0197037
-0.009527
-0.000381398
0.00557737
0.00797406
0.00759981
0.00568441
0.00334802
0.00133069
-4.16893e-05
-0.000754656
-0.000962141
-0.000865292
-0.000637886
-0.000396413
-0.000200567
-6.8249e-05
6.57371e-06
3.95651e-05
4.70016e-05
4.17132e-05
3.19395e-05
2.2255e-05
1.43799e-05
8.89208e-06
5.12992e-06
3.13629e-06
1.44687e-06
99.9138
99.9737
100.382
99.9957
99.246
99.9681
101.317
100.235
97.6443
99.0222
104.864
104.52
85.6849
49.9902
14.4383
-4.42528
-5.19718
0.675886
2.79343
0.354388
-1.70877
-0.839738
0.942673
1.04934
-0.267171
-0.990732
-0.303762
0.667201
0.657203
-0.166687
-0.682494
-0.31935
0.376082
0.560596
0.0932028
-0.427097
-0.431691
0.0200906
0.404973
0.342429
-0.050856
-0.355437
-0.296233
0.0270864
0.292798
0.277631
0.0309933
-0.213981
-0.262279
-0.103843
0.113112
0.222441
0.163476
0.00240408
-0.138634
-0.173552
-0.0992035
0.0212076
0.110947
0.127004
0.0756726
-0.00327018
-0.0658304
-0.0868343
-0.0667784
-0.0242233
0.0178517
0.0432951
0.0473308
0.0347607
0.0148846
-0.00353296
-0.0152362
-0.0190232
-0.0166195
-0.0109749
-0.00483815
8.33337e-06
0.00287686
0.00390365
0.0036469
0.00274171
0.0016926
0.000801457
0.000186774
-0.000156366
-0.000293182
-0.000302313
-0.000249786
-0.000179901
-0.00011656
-6.88349e-05
-3.73069e-05
-1.85817e-05
-8.69587e-06
-3.894e-06
-2.03649e-06
-1.194e-06
-1.10028e-06
-8.31198e-07
100.039
99.7981
100.033
100.474
99.9284
99.1619
100.039
101.404
100.166
97.5464
99.0792
104.978
104.486
85.5581
49.9888
14.5693
-4.37762
-5.31403
0.579083
2.87098
0.489319
-1.7218
-0.983796
0.877889
1.15858
-0.136956
-1.02057
-0.454052
0.596925
0.759318
-0.0232189
-0.67824
-0.459086
0.261618
0.606219
0.244703
-0.341808
-0.505573
-0.130774
0.336978
0.425034
0.0960995
-0.2888
-0.370431
-0.114725
0.212879
0.326469
0.16145
-0.112751
-0.268943
-0.206897
-0.00365686
0.176649
0.215042
0.109066
-0.0501935
-0.156277
-0.156194
-0.0695803
0.0397996
0.110182
0.114323
0.0645493
-0.00402942
-0.0567056
-0.0751164
-0.0605882
-0.0275366
0.00665216
0.0295516
0.0368291
0.0310582
0.0183243
0.00481168
-0.00532251
-0.0105204
-0.0112803
-0.00916072
-0.00586869
-0.00269821
-0.000345318
0.00101471
0.00153428
0.00149839
0.00118673
0.000805091
0.00047099
0.000229994
8.23129e-05
6.93887e-06
-2.17376e-05
-2.53672e-05
-1.8617e-05
-9.95264e-06
-2.86098e-06
1.33119e-06
3.57078e-06
3.68591e-06
3.77882e-06
2.42404e-06
100.076
99.9765
99.7129
100.105
100.546
99.8487
99.0921
100.122
101.483
100.087
97.4514
99.1453
105.093
104.446
85.4263
49.9872
14.7057
-4.32394
-5.43277
0.471957
2.94313
0.634313
-1.72061
-1.13079
0.793277
1.25742
0.00967138
-1.02608
-0.605386
0.497745
0.840001
0.135793
-0.637135
-0.585056
0.118322
0.611191
0.390745
-0.217555
-0.536517
-0.281561
0.22337
0.461172
0.242775
-0.173841
-0.392041
-0.248481
0.0879241
0.315437
0.267805
0.020349
-0.212881
-0.264677
-0.126067
0.0791416
0.20556
0.186167
0.0578344
-0.0845432
-0.157743
-0.135165
-0.0477041
0.0472891
0.102474
0.101372
0.0576867
0.000303928
-0.0440892
-0.0618056
-0.0537269
-0.0302026
-0.00387047
0.0158498
0.0250035
0.0244718
0.0178472
0.00920557
0.00162101
-0.00337038
-0.00558401
-0.00565865
-0.00451191
-0.00296009
-0.00154387
-0.00051499
8.98705e-05
0.000352643
0.000393711
0.000322418
0.000216064
0.000118248
4.65773e-05
2.82831e-06
-1.87532e-05
-2.56348e-05
-2.45828e-05
-1.99172e-05
-1.49034e-05
-9.93816e-06
-7.0348e-06
-3.52735e-06
99.988
100.156
99.9015
99.6532
100.19
100.598
99.7572
99.036
100.217
101.553
99.9961
97.3592
99.2207
105.21
104.401
85.289
49.9855
14.8478
-4.26393
-5.55318
0.354284
3.00897
0.788751
-1.70406
-1.27865
0.688793
1.3427
0.17015
-1.00496
-0.752318
0.3712
0.893474
0.303283
-0.558245
-0.687617
-0.0459256
0.571354
0.517825
-0.0628553
-0.517321
-0.414883
0.0742435
0.44185
0.367826
-0.024379
-0.353013
-0.349508
-0.061701
0.242147
0.325079
0.156772
-0.103585
-0.259185
-0.220684
-0.044553
0.134805
0.207304
0.149302
0.0177131
-0.101742
-0.14903
-0.115382
-0.0344522
0.0458278
0.0901912
0.0886995
0.0536662
0.0075598
-0.0295135
-0.0470793
-0.0451023
-0.0303855
-0.0116813
0.00407225
0.0134065
0.0161088
0.013992
0.00950844
0.00474838
0.000987162
-0.00131768
-0.0022848
-0.00231167
-0.00183829
-0.00121277
-0.000647842
-0.000235359
1.47363e-05
0.000134399
0.000167738
0.000154171
0.000121726
8.70404e-05
5.77524e-05
3.6257e-05
2.16706e-05
1.27367e-05
7.13901e-06
4.40536e-06
2.13469e-06
99.9339
100.064
100.206
99.8162
99.6175
100.284
100.631
99.655
98.9939
100.323
101.614
99.8938
97.27
99.306
105.329
104.35
85.1458
49.9838
14.9958
-4.19725
-5.67495
0.225891
3.06752
0.95188
-1.67113
-1.42516
0.564743
1.41132
0.34138
-0.955545
-0.889174
0.220093
0.914838
0.471181
-0.442873
-0.757958
-0.221022
0.48596
0.613071
0.110001
-0.445683
-0.51398
-0.0948726
0.365068
0.451384
0.139045
-0.255168
-0.397229
-0.209121
0.117215
0.317486
0.265101
0.0352421
-0.188291
-0.259894
-0.159492
0.0220609
0.163559
0.192314
0.114273
-0.00852312
-0.105229
-0.134975
-0.0991066
-0.0288132
0.037834
0.0748715
0.0758894
0.0505169
0.0153556
-0.0147608
-0.0316783
-0.034476
-0.0271345
-0.015347
-0.00399811
0.00405853
0.00804665
0.00862824
0.00709384
0.00472137
0.00242959
0.000696192
-0.000360452
-0.000839096
-0.000924176
-0.000797202
-0.000594003
-0.000395945
-0.000239562
-0.000132346
-6.69414e-05
-3.13823e-05
-1.41642e-05
-7.12739e-06
-4.47593e-06
-3.97317e-06
-3.28778e-06
-3.3275e-06
-2.27468e-06
99.9888
99.8898
100.148
100.229
99.7239
99.6052
100.386
100.645
99.5437
98.9666
100.44
101.667
99.7801
97.1844
99.4014
105.451
104.293
84.9966
49.9819
15.1499
-4.12361
-5.79769
0.0866572
3.11774
1.12281
-1.62086
-1.56795
0.421805
1.46035
0.519763
-0.876949
-1.01024
0.0484669
0.900357
0.630777
-0.294641
-0.788757
-0.395237
0.357985
0.665467
0.285899
-0.324839
-0.56478
-0.264606
0.236661
0.478209
0.292001
-0.110663
-0.379388
-0.325888
-0.0370304
0.242767
0.318539
0.170843
-0.0674148
-0.230374
-0.231545
-0.0990422
0.0675141
0.171022
0.169959
0.0864967
-0.0215069
-0.0988273
-0.118574
-0.0864773
-0.0286838
0.0256966
0.0575674
0.0622082
0.0462704
0.0213721
-0.00184512
-0.0170555
-0.0227481
-0.020852
-0.0147573
-0.00767847
-0.00177072
0.00203896
0.00377246
0.00396647
0.00329047
0.0023077
0.00138107
0.000679884
0.000235151
3.01957e-06
-8.52535e-05
-9.34386e-05
-6.77293e-05
-3.55858e-05
-9.65549e-06
6.41232e-06
1.40486e-05
1.54776e-05
1.42209e-05
1.07699e-05
8.67262e-06
4.76043e-06
100.052
99.9062
99.8773
100.236
100.224
99.6284
99.6168
100.493
100.638
99.4251
98.9552
100.567
101.708
99.6551
97.1029
99.5074
105.574
104.23
84.8412
49.9799
15.3102
-4.04268
-5.92095
-0.0634883
3.15861
1.30051
-1.55247
-1.70457
0.26105
1.48709
0.701257
-0.769134
-1.10994
-0.138479
0.847723
0.773138
-0.119444
-0.774784
-0.555976
0.194172
0.667021
0.448212
-0.163642
-0.557817
-0.413973
0.0701003
0.440402
0.409897
0.0593419
-0.295032
-0.387646
-0.190513
0.113727
0.301855
0.26936
0.0735915
-0.137916
-0.23808
-0.190812
-0.0500357
0.0921537
0.164233
0.14668
0.06767
-0.0236346
-0.0857718
-0.101133
-0.0762231
-0.0313761
0.0118528
0.0393892
0.0472839
0.039526
0.0237485
0.00728935
-0.0050828
-0.0116509
-0.0130282
-0.0109985
-0.00749535
-0.00398944
-0.00129139
0.000362781
0.00110333
0.00121678
0.00099622
0.000664592
0.00035541
0.000126651
-1.32696e-05
-8.09278e-05
-0.000100253
-9.2966e-05
-7.45265e-05
-5.44582e-05
-3.69503e-05
-2.40006e-05
-1.4452e-05
-9.21115e-06
-4.28075e-06
100.03
100.059
99.8247
99.8949
100.321
100.192
99.5341
99.6522
100.601
100.611
99.3016
98.961
100.702
101.738
99.519
97.0266
99.6241
105.7
104.159
84.6794
49.9778
15.4767
-3.95416
-6.04426
-0.224564
3.18905
1.48383
-1.4653
-1.83247
0.0839437
1.48916
0.881452
-0.632967
-1.1831
-0.334519
0.756256
0.889567
0.0747479
-0.713411
-0.690663
0.00474688
0.613727
0.58036
0.023978
-0.489728
-0.523005
-0.11482
0.339183
0.472032
0.227764
-0.155548
-0.379418
-0.311423
-0.0437135
0.215943
0.304709
0.197935
-0.00680393
-0.175703
-0.223852
-0.150131
-0.0166394
0.0996903
0.149218
0.125748
0.056941
-0.0179822
-0.068565
-0.0829339
-0.0664919
-0.0340538
-0.00109757
0.0220242
0.0317993
0.0301601
0.0217481
0.0113739
0.00247528
-0.0033317
-0.00593981
-0.00611916
-0.00491156
-0.00322605
-0.00166224
-0.000504157
0.000197421
0.000521523
0.000592009
0.000524868
0.000405038
0.000283366
0.000183391
0.000111296
6.39564e-05
3.54191e-05
1.90784e-05
1.05945e-05
5.84837e-06
3.90122e-06
2.15311e-06
99.9667
100.107
100.033
99.7515
99.9404
100.398
100.135
99.4459
99.7114
100.706
100.562
99.1757
98.985
100.845
101.755
99.3723
96.9563
99.7517
105.826
104.081
84.5112
49.9756
15.6496
-3.85773
-6.16708
-0.396533
3.20802
1.6715
-1.3589
-1.94908
-0.107646
1.46454
1.05565
-0.470257
-1.22506
-0.532578
0.627057
0.972078
0.278204
-0.604975
-0.787678
-0.197158
0.506239
0.667484
0.220153
-0.364131
-0.57543
-0.294306
0.185398
0.465305
0.365974
0.0166313
-0.299312
-0.37305
-0.195711
0.0785809
0.265922
0.271852
0.126528
-0.0621709
-0.187207
-0.199157
-0.116586
0.0014163
0.0946953
0.130024
0.107894
0.0520241
-0.00773124
-0.0492524
-0.0640591
-0.0557505
-0.0344267
-0.0108151
0.00755821
0.0175732
0.0197474
0.0165962
0.0110526
0.00544286
0.0010999
-0.00155503
-0.00270615
-0.00281064
-0.00235088
-0.00170134
-0.00109055
-0.000620502
-0.000308414
-0.000127817
-3.85512e-05
-3.5596e-06
4.13822e-06
1.41717e-06
-3.48075e-06
-6.56569e-06
-8.16394e-06
-7.22038e-06
-6.81834e-06
-4.1988e-06
99.9584
99.9963
100.169
99.9805
99.6932
100.01
100.461
100.054
99.3686
99.7934
100.806
100.491
99.0502
99.0282
100.993
101.757
99.2156
96.893
99.8905
105.954
103.996
84.3365
49.9732
15.8288
-3.75309
-6.28885
-0.579304
3.21445
1.86209
-1.233
-2.05179
-0.31145
1.41165
1.21897
-0.283775
-1.23198
-0.724955
0.463098
1.01388
0.479875
-0.453006
-0.837306
-0.396356
0.350193
0.69808
0.404728
-0.19176
-0.561102
-0.443614
-0.00139052
0.386962
0.448766
0.191503
-0.159831
-0.359973
-0.307894
-0.078962
0.160902
0.274251
0.22379
0.0683678
-0.0926257
-0.180822
-0.172003
-0.0926395
0.00678474
0.0812445
0.108748
0.092154
0.0499732
0.00403611
-0.0297312
-0.0449043
-0.0433064
-0.0312956
-0.0159525
-0.00256953
0.00623147
0.0101573
0.0103281
0.00834087
0.00561747
0.00310461
0.00124994
0.000127729
-0.00039592
-0.000524944
-0.000447252
-0.000297433
-0.000152822
-4.60938e-05
1.77194e-05
4.69559e-05
5.34286e-05
4.79524e-05
3.75454e-05
2.73332e-05
1.78776e-05
1.23225e-05
5.98236e-06
100.01
99.9033
100.052
100.211
99.9058
99.6561
100.101
100.505
99.9533
99.3069
99.8967
100.895
100.399
98.9282
99.0916
101.145
101.744
99.0496
96.8378
100.04
106.082
103.903
84.1552
49.9707
16.0144
-3.63991
-6.40898
-0.772724
3.20734
2.05409
-1.08754
-2.13806
-0.524815
1.32946
1.36645
-0.077241
-1.20096
-0.9036
0.269226
1.00984
0.667972
-0.264242
-0.832646
-0.576731
0.1561
0.665469
0.557338
0.0102634
-0.477866
-0.540556
-0.195253
0.245893
0.459209
0.33676
0.0136723
-0.272301
-0.353516
-0.218998
0.0154341
0.203473
0.256385
0.175612
0.0285332
-0.10257
-0.163861
-0.146548
-0.0774745
0.00319458
0.0626947
0.0862683
0.0767962
0.0476534
0.0142042
-0.012232
-0.0266435
-0.0295114
-0.0244765
-0.0159416
-0.00744779
-0.00102244
0.00272656
0.00413997
0.00398009
0.00303282
0.00189399
0.000911659
0.00022304
-0.00017212
-0.000340544
-0.000364642
-0.000314854
-0.000239684
-0.000166762
-0.000107932
-6.58486e-05
-3.8051e-05
-2.12453e-05
-1.12505e-05
-6.31353e-06
-2.7632e-06
100.042
99.9539
99.8752
100.125
100.225
99.8165
99.6451
100.206
100.525
99.8359
99.2654
100.019
100.97
100.285
98.8129
99.1754
101.298
101.715
98.8751
96.7918
100.202
106.21
103.802
83.9674
49.9681
16.2064
-3.5179
-6.52686
-0.97659
3.18568
2.24586
-0.922691
-2.2054
-0.744731
1.21748
1.49321
0.144738
-1.13028
-1.06043
0.0520598
0.956906
0.830642
-0.048399
-0.770356
-0.722545
-0.0612796
0.568866
0.659717
0.220069
-0.33245
-0.568953
-0.367554
0.06194
0.392356
0.424067
0.187561
-0.126632
-0.320452
-0.306889
-0.133048
0.0787186
0.214821
0.22633
0.135772
0.00659714
-0.0976441
-0.141449
-0.123966
-0.0684624
-0.00528739
0.0421076
0.0634574
0.0606739
0.042745
0.0200801
0.00059703
-0.0117727
-0.0166597
-0.0158816
-0.0119873
-0.00722414
-0.00305995
-0.000148816
0.00145887
0.00204127
0.00197581
0.00159767
0.00114073
0.000734703
0.000429782
0.000227821
0.000108197
4.51667e-05
1.60834e-05
5.26428e-06
2.24391e-06
2.57764e-06
2.65934e-06
3.33299e-06
2.53317e-06
100.014
100.062
99.886
99.8784
100.205
100.208
99.721
99.6637
100.318
100.517
99.7071
99.248
100.157
101.026
100.152
98.7076
99.28
101.451
101.668
98.6931
96.7561
100.374
106.337
103.692
83.773
49.9653
16.4048
-3.38672
-6.64184
-1.19064
3.14849
2.43568
-0.738857
-2.2514
-0.96785
1.07584
1.59452
0.376733
-1.01949
-1.18764
-0.180184
0.854374
0.956652
0.182254
-0.651155
-0.819769
-0.283981
0.413871
0.697868
0.413367
-0.140181
-0.521364
-0.49125
-0.136779
0.256855
0.434841
0.326582
0.0469111
-0.214765
-0.320132
-0.245433
-0.0650745
0.112036
0.205498
0.193761
0.107185
-0.000674895
-0.082934
-0.116534
-0.103662
-0.0624945
-0.015003
0.0222142
0.0416837
0.044124
0.0350576
0.0211847
0.00787558
-0.00185494
-0.00720257
-0.00882931
-0.00802604
-0.00608169
-0.00395012
-0.00216893
-0.00092981
-0.00020511
0.000133164
0.000230336
0.000205533
0.000137992
7.08426e-05
2.13697e-05
-7.73189e-06
-2.09455e-05
-2.34288e-05
-2.12506e-05
-1.58833e-05
-1.24771e-05
-6.6629e-06
99.9699
100.077
100.048
99.8184
99.9141
100.282
100.16
99.6285
99.7136
100.431
100.479
99.5728
99.2579
100.308
101.061
100.001
98.6157
99.4052
101.601
101.602
98.5047
96.7317
100.558
106.463
103.573
83.572
49.9624
16.6095
-3.24605
-6.75325
-1.41454
3.09484
2.62169
-0.536702
-2.27381
-1.1905
0.905361
1.66596
0.612569
-0.869531
-1.27805
-0.417914
0.704174
1.03612
0.41348
-0.480138
-0.857388
-0.492194
0.212467
0.663975
0.56618
0.0763348
-0.400835
-0.545198
-0.317974
0.074332
0.364492
0.401099
0.210646
-0.0601681
-0.254592
-0.291426
-0.186815
-0.0201256
0.121277
0.184318
0.163519
0.088858
0.00235448
-0.0624355
-0.0903911
-0.0840538
-0.056469
-0.0228753
0.00518311
0.0221458
0.0277995
0.0251661
0.0182628
0.010526
0.00410711
-0.000135639
-0.00227125
-0.00284217
-0.00249825
-0.00178085
-0.00104327
-0.000460574
-7.99888e-05
0.000122658
0.000198875
0.000200368
0.00016702
0.000124035
8.4837e-05
5.41594e-05
3.29586e-05
1.8712e-05
1.10397e-05
4.79161e-06
99.9691
99.9896
100.132
100.002
99.7634
99.9798
100.345
100.082
99.5483
99.7941
100.536
100.41
99.4393
99.2974
100.465
101.071
99.8351
98.5404
99.5504
101.745
101.517
98.3113
96.7197
100.753
106.587
103.446
83.3643
49.9593
16.8207
-3.09559
-6.8604
-1.6479
3.02388
2.80196
-0.317164
-2.27059
-1.40876
0.70757
1.70358
0.845476
-0.682912
-1.32547
-0.650534
0.511014
1.06129
0.629923
-0.266799
-0.8287
-0.66604
-0.0176634
0.557928
0.657973
0.289704
-0.221408
-0.518173
-0.450542
-0.123632
0.224528
0.394058
0.327607
0.106649
-0.126854
-0.258725
-0.251302
-0.140109
0.0033108
0.113544
0.15723
0.136674
0.077403
0.0106996
-0.0398752
-0.064119
-0.0638248
-0.0476926
-0.0258708
-0.00621933
0.00714017
0.0134798
0.0142257
0.0116194
0.00774443
0.00404529
0.00125115
-0.000468509
-0.00127383
-0.00145202
-0.0012841
-0.00098173
-0.000674215
-0.000422823
-0.000243632
-0.000129136
-6.26572e-05
-2.79594e-05
-1.14187e-05
-4.9615e-06
-2.39672e-06
-2.08172e-06
-1.67071e-06
100.008
99.9232
100.039
100.166
99.9307
99.7318
100.07
100.385
99.9785
99.4893
99.9026
100.625
100.31
99.3137
99.3678
100.625
101.053
99.6568
98.4849
99.7146
101.881
101.411
98.1141
96.7214
100.959
106.708
103.308
83.1499
49.9561
17.0384
-2.93501
-6.96257
-1.89026
2.93479
2.97451
-0.0814311
-2.23992
-1.61852
0.4847
1.70407
1.0683
-0.463618
-1.32509
-0.866937
0.282274
1.02721
0.816175
-0.0245528
-0.732234
-0.78759
-0.254692
0.387898
0.674647
0.471397
-0.00666363
-0.411472
-0.510434
-0.301192
0.0410564
0.305697
0.370831
0.245187
0.0295468
-0.157571
-0.241003
-0.210886
-0.107771
0.00989923
0.0952881
0.127887
0.112552
0.0690239
0.0196739
-0.019114
-0.0401332
-0.0441399
-0.0364753
-0.0235983
-0.0107308
-0.000897943
0.00495078
0.00727126
0.00716232
0.00578247
0.0040294
0.00244552
0.00126339
0.000507837
9.79685e-05
-7.80175e-05
-0.000120306
-0.000101119
-6.3718e-05
-2.97274e-05
-5.95598e-06
6.63991e-06
1.23481e-05
1.18263e-05
1.13545e-05
6.92745e-06
100.034
99.9596
99.9046
100.106
100.17
99.8444
99.7319
100.175
100.393
99.8569
99.4592
100.034
100.691
100.183
99.2028
99.469
100.782
101.006
99.47
98.4521
99.8966
102.006
101.286
97.9146
96.7376
101.176
106.827
103.161
82.9289
49.9526
17.2625
-2.76395
-7.05903
-2.14112
2.8268
3.13726
0.169047
-2.18024
-1.8155
0.239686
1.66476
1.27364
-0.217107
-1.27368
-1.05593
0.0278036
0.932153
0.957765
0.230017
-0.572181
-0.842617
-0.474643
0.16986
0.610624
0.595569
0.213332
-0.23925
-0.485148
-0.424913
-0.150154
0.153881
0.329928
0.321467
0.173366
-0.0174618
-0.161124
-0.212188
-0.175427
-0.0881524
0.00496662
0.0713036
0.0980947
0.0899403
0.060924
0.0264148
-0.00234252
-0.0200834
-0.0266816
-0.0250478
-0.0190078
-0.0118437
-0.00565226
-0.00133506
0.00107376
0.00200063
0.00200126
0.00156029
0.00101071
0.000533459
0.000195317
-5.175e-06
-9.97925e-05
-0.000126535
-0.000116948
-9.31013e-05
-6.69556e-05
-4.53397e-05
-2.80804e-05
-1.82393e-05
-8.48152e-06
100.015
100.043
99.8999
99.9198
100.179
100.139
99.7558
99.7681
100.283
100.365
99.7266
99.4642
100.181
100.726
100.032
99.1137
99.5998
100.929
100.928
99.2788
98.4446
100.094
102.117
101.14
97.7146
96.7695
101.403
106.942
103.004
82.701
49.949
17.493
-2.58208
-7.14897
-2.39986
2.69922
3.28804
0.432504
-2.0903
-1.99528
-0.02377
1.58388
1.454
0.0496827
-1.16992
-1.20674
-0.240292
0.7781
1.0422
0.478035
-0.358622
-0.822257
-0.653591
-0.0734448
0.470279
0.642714
0.405841
-0.0272771
-0.376667
-0.470031
-0.310138
-0.0287519
0.214157
0.316439
0.266002
0.120584
-0.0381545
-0.146417
-0.17868
-0.145371
-0.0769576
-0.00594362
0.0453257
0.0685964
0.067164
0.0503836
0.0283822
0.00870343
-0.00482063
-0.0115762
-0.0129335
-0.0109913
-0.00769133
-0.00439131
-0.00180074
-0.000120529
0.000753608
0.00105195
0.00101177
0.000818526
0.000591163
0.000391025
0.000240181
0.000137984
7.48921e-05
3.85034e-05
1.94882e-05
9.58846e-06
5.47995e-06
2.80755e-06
99.9799
100.067
100.017
99.8461
99.9694
100.24
100.074
99.6787
99.841
100.384
100.298
99.5985
99.5078
100.336
100.725
99.8634
99.0527
99.7576
101.06
100.818
99.0877
98.4649
100.306
102.212
100.974
97.5157
96.818
101.641
107.052
102.837
82.4664
49.9452
17.73
-2.38907
-7.23162
-2.66582
2.55148
3.42468
0.706875
-1.96923
-2.15346
-0.301236
1.46068
1.60214
0.328475
-1.01475
-1.30966
-0.508172
0.571035
1.06025
0.699751
-0.107255
-0.724609
-0.770503
-0.314663
0.268471
0.603356
0.540584
0.190422
-0.202604
-0.426513
-0.405147
-0.201213
0.0518736
0.232571
0.283089
0.215934
0.0872916
-0.0394982
-0.121095
-0.143907
-0.118869
-0.0689496
-0.0169605
0.0218933
0.0419444
0.0450567
0.0370227
0.0242501
0.0116885
0.00210211
-0.00369745
-0.00617352
-0.00635147
-0.00529439
-0.00382392
-0.00244241
-0.0013759
-0.000664408
-0.00025092
-4.67516e-05
3.12065e-05
4.45297e-05
3.25006e-05
1.50557e-05
1.99242e-06
-6.56076e-06
-8.63171e-06
-1.01271e-05
-6.93838e-06
99.9713
100.01
100.105
99.9614
99.8138
100.047
100.277
99.9784
99.6265
99.9463
100.462
100.194
99.4842
99.5912
100.487
100.685
99.6841
99.0252
99.9383
101.17
100.678
98.9016
98.5146
100.529
102.288
100.787
97.3199
96.8841
101.888
107.157
102.658
82.2249
49.9412
17.9736
-2.18457
-7.30617
-2.93826
2.38309
3.54499
0.989862
-1.81658
-2.28574
-0.587674
1.29551
1.71135
0.609974
-0.811383
-1.35674
-0.761061
0.320759
1.00686
0.876268
0.161823
-0.555399
-0.809992
-0.525197
0.0290198
0.480192
0.595167
0.377549
0.00658477
-0.302012
-0.415004
-0.324482
-0.116781
0.0936663
0.222654
0.242524
0.175715
0.0698409
-0.0286449
-0.0909663
-0.109917
-0.094491
-0.0608894
-0.02461
0.00404796
0.020957
0.0267984
0.0248242
0.0188439
0.0119554
0.00606027
0.00193657
-0.000419543
-0.00141096
-0.00154309
-0.00125097
-0.000833099
-0.000454033
-0.000178358
-1.08602e-05
7.13614e-05
9.74027e-05
9.30377e-05
7.51037e-05
5.56975e-05
3.68342e-05
2.5616e-05
1.24876e-05
99.9969
99.9453
100.063
100.112
99.8876
99.815
100.141
100.278
99.8646
99.6103
100.076
100.509
100.06
99.3952
99.7121
100.626
100.605
99.5028
99.0357
100.137
101.253
100.509
98.7256
98.5952
100.76
102.343
100.581
97.129
96.9688
102.145
107.255
102.468
81.9765
49.9369
18.2238
-1.9682
-7.37177
-3.21639
2.1936
3.64674
1.27889
-1.63228
-2.38793
-0.877456
1.08978
1.77556
0.884054
-0.5653
-1.3421
-0.9839
0.0405295
0.8817
0.990972
0.42557
-0.327806
-0.764178
-0.678463
-0.217978
0.288138
0.558768
0.501565
0.212917
-0.120549
-0.337434
-0.37046
-0.250023
-0.0621497
0.104573
0.195706
0.20123
0.144574
0.0626673
-0.0117665
-0.059781
-0.077283
-0.0706426
-0.0506181
-0.0273752
-0.00778785
0.00509996
0.0112434
0.0122732
0.0103064
0.00717892
0.00411967
0.00174306
0.000204822
-0.000603693
-0.000894443
-0.000879788
-0.000724042
-0.000532254
-0.000359597
-0.000226505
-0.000134458
-7.55047e-05
-4.07924e-05
-2.08908e-05
-1.12286e-05
-4.75432e-06
100.024
99.9483
99.953
100.123
100.084
99.8125
99.8557
100.236
100.237
99.7466
99.6373
100.217
100.513
99.9036
99.3417
99.8656
100.74
100.484
99.3286
99.087
100.347
101.304
100.314
98.5651
98.7075
100.995
102.373
100.356
96.9452
97.0728
102.41
107.347
102.267
81.7211
49.9324
18.4805
-1.73956
-7.42749
-3.49929
1.98271
3.72765
1.57106
-1.41675
-2.45598
-1.16434
0.846226
1.78966
1.13996
-0.284403
-1.26252
-1.16209
-0.253292
0.689781
1.03108
0.659644
-0.0620284
-0.634332
-0.753219
-0.439416
0.0533893
0.434863
0.539488
0.377198
0.0809852
-0.189799
-0.329071
-0.314546
-0.191664
-0.0340372
0.0943236
0.159888
0.161361
0.1188
0.0591138
0.00471518
-0.0318519
-0.047881
-0.0473435
-0.036983
-0.0232502
-0.0106704
-0.00149536
0.00384714
0.00601492
0.00607304
0.00503804
0.00365992
0.00238129
0.00139383
0.000726608
0.000326783
0.000115877
2.17637e-05
-9.91201e-06
-1.2869e-05
-7.23166e-06
6.74843e-08
3.49049e-06
6.37886e-06
5.22302e-06
100.022
100.009
99.9038
99.9957
100.171
100.019
99.7541
99.9346
100.314
100.153
99.6407
99.7099
100.355
100.471
99.7372
99.332
100.043
100.821
100.326
99.1715
99.1805
100.56
101.317
100.096
98.4253
98.8515
101.231
102.377
100.113
96.7705
97.197
102.684
107.432
102.054
81.4587
49.9276
18.7439
-1.49831
-7.47244
-3.78596
1.75027
3.78549
1.86319
-1.17097
-2.48627
-1.44164
0.568903
1.74983
1.36677
0.0211239
-1.11803
-1.28258
-0.542108
0.441684
0.98932
0.840809
0.216231
-0.43178
-0.737148
-0.603927
-0.189781
0.24204
0.483378
0.467371
0.26036
-0.00625385
-0.212339
-0.295946
-0.260125
-0.150816
-0.0254045
0.0719433
0.121052
0.123864
0.0955852
0.0548174
0.0165465
-0.0108367
-0.0252198
-0.0286948
-0.025161
-0.0184866
-0.0115215
-0.00585139
-0.00200763
0.000148002
0.0010565
0.00120347
0.000982714
0.000653887
0.000355445
0.000139941
1.01387e-05
-5.2625e-05
-7.24508e-05
-6.82436e-05
-5.56781e-05
-3.90384e-05
-2.86021e-05
-1.43731e-05
99.9963
100.055
99.9635
99.8826
100.065
100.189
99.9288
99.7289
100.043
100.359
100.035
99.5631
99.825
100.474
100.38
99.575
99.3712
100.235
100.86
100.138
99.0408
99.3154
100.77
101.29
99.8606
98.3113
99.0268
101.465
102.353
99.8535
96.6071
97.3421
102.965
107.508
101.828
81.1892
49.9225
19.0139
-1.24407
-7.50569
-4.07534
1.49624
3.81813
2.15189
-0.89647
-2.47561
-1.70238
0.263147
1.65381
1.5539
0.339187
-0.9121
-1.33488
-0.806318
0.153106
0.86508
0.949434
0.478303
-0.177182
-0.629167
-0.68674
-0.404215
0.0114267
0.342531
0.465503
0.379467
0.170411
-0.0511557
-0.202378
-0.251315
-0.212012
-0.12373
-0.0284146
0.0443918
0.0825474
0.0884827
0.0727384
0.0475785
0.0227539
0.00384402
-0.00744984
-0.0120317
-0.0119914
-0.00952328
-0.00633121
-0.00345063
-0.00133087
-2.44902e-05
0.00062124
0.000821901
0.000773535
0.000618919
0.000445022
0.000294551
0.000181744
0.00010512
5.73291e-05
2.91804e-05
1.46844e-05
5.36344e-06
99.9763
100.039
100.058
99.9035
99.8977
100.144
100.166
99.8287
99.7481
100.165
100.359
99.8936
99.528
99.9738
100.56
100.245
99.4317
99.4611
100.428
100.85
99.927
98.9457
99.4891
100.966
101.221
99.6122
98.2281
99.2321
101.691
102.298
99.5795
96.4574
97.5087
103.252
107.574
101.59
80.9125
49.9171
19.2908
-0.976394
-7.52627
-4.36631
1.22069
3.82342
2.43355
-0.5953
-2.42131
-1.93944
-0.0645017
1.50103
1.69148
0.656176
-0.651714
-1.31183
-1.02657
-0.155962
0.664939
0.97171
0.69546
0.101243
-0.440427
-0.673824
-0.555647
-0.217889
0.142863
0.372377
0.413039
0.298521
0.111701
-0.0632799
-0.172849
-0.202877
-0.169746
-0.103845
-0.0345103
0.0187852
0.0484895
0.0564105
0.0493423
0.0350706
0.0198374
0.00737814
-0.000904151
-0.0052127
-0.0065481
-0.00608304
-0.00480091
-0.00336302
-0.00212274
-0.0012068
-0.000607787
-0.000258236
-7.87357e-05
-1.05523e-06
2.2607e-05
2.30731e-05
1.53168e-05
8.13133e-06
2.50866e-06
-6.96608e-07
99.9825
99.9834
100.084
100.023
99.8502
99.9523
100.211
100.099
99.7395
99.8154
100.282
100.307
99.7471
99.5451
100.142
100.598
100.075
99.322
99.599
100.608
100.788
99.7038
98.894
99.6969
101.141
101.108
99.3577
98.1802
99.4652
101.905
102.212
99.2927
96.3237
97.6973
103.546
107.631
101.338
80.6284
49.9114
19.5745
-0.69483
-7.53313
-4.65759
0.923815
3.79928
2.7043
-0.270083
-2.32125
-2.14558
-0.406314
1.29272
1.77076
0.957397
-0.34733
-1.21032
-1.18511
-0.462451
0.402654
0.901464
0.842164
0.370766
-0.193582
-0.564797
-0.618856
-0.405941
-0.0777192
0.20821
0.355687
0.349319
0.23443
0.0800802
-0.0538083
-0.134004
-0.155453
-0.132469
-0.0868773
-0.0384749
-3.76707e-05
0.0234217
0.032759
0.0319274
0.0255678
0.01751
0.0101922
0.004726
0.0012733
-0.000520473
-0.00118247
-0.00120235
-0.000941121
-0.000619292
-0.000344931
-0.000152503
-3.77377e-05
1.95725e-05
3.96808e-05
4.15815e-05
3.27412e-05
2.61815e-05
1.38129e-05
100.006
99.949
100.023
100.11
99.9589
99.8245
100.038
100.247
99.9964
99.6817
99.9254
100.373
100.204
99.6154
99.6182
100.313
100.581
99.8819
99.2588
99.7784
100.761
100.673
99.4801
98.8919
99.932
101.285
100.951
99.1042
98.1715
99.7234
102.102
102.093
98.9954
96.2082
97.9083
103.845
107.676
101.073
80.3368
49.9053
19.8651
-0.398959
-7.52516
-4.94777
0.606042
3.74368
2.95998
0.0758483
-2.17404
-2.31357
-0.753329
1.03227
1.78453
1.22748
-0.0128489
-1.03189
-1.26698
-0.741493
0.0987717
0.741402
0.898888
0.597504
0.0793724
-0.373613
-0.581799
-0.518528
-0.276225
0.00824525
0.222206
0.312771
0.286657
0.187451
0.0676243
-0.0321738
-0.0918309
-0.110211
-0.0980642
-0.0701015
-0.0391778
-0.013525
0.00345837
0.0119541
0.0140514
0.0123371
0.00902443
0.00560041
0.00283259
0.000952935
-0.000120117
-0.000598701
-0.000707956
-0.000628448
-0.000480502
-0.000331282
-0.000209951
-0.000123441
-6.72922e-05
-3.38164e-05
-1.59813e-05
-5.0374e-06
100.022
99.9679
99.9437
100.081
100.1
99.8811
99.841
100.138
100.236
99.8747
99.6719
100.064
100.42
100.06
99.5184
99.744
100.466
100.505
99.6832
99.2518
99.9885
100.874
100.509
99.2691
98.9434
100.186
101.391
100.754
98.8594
98.2052
100.003
102.278
101.94
98.6901
96.1135
98.1422
104.147
107.709
100.793
80.0378
49.8988
20.1626
-0.0883869
-7.50132
-5.23536
0.268041
3.65487
3.19632
0.438445
-1.97929
-2.43664
-1.09556
0.725442
1.72796
1.45126
0.334674
-0.783668
-1.26198
-0.96846
-0.220217
0.504467
0.855643
0.750768
0.340098
-0.128834
-0.449817
-0.534266
-0.411969
-0.182085
0.0473204
0.202248
0.257578
0.228587
0.151305
0.0632384
-0.00886259
-0.0528582
-0.0689073
-0.0643649
-0.0487228
-0.0301428
-0.0139117
-0.00239301
0.00421222
0.00689406
0.00702392
0.00584589
0.00425411
0.00276903
0.00161556
0.000830347
0.000355169
0.000102051
-1.18368e-05
-4.85477e-05
-4.94621e-05
-3.7309e-05
-2.36254e-05
-1.37328e-05
-4.79582e-06
100.015
100.016
99.9249
99.9753
100.133
100.048
99.8134
99.9041
100.228
100.173
99.7567
99.7189
100.211
100.409
99.8924
99.4731
99.9122
100.583
100.372
99.4972
99.3065
100.215
100.936
100.302
99.0839
99.0502
100.448
101.451
100.519
98.6314
98.2836
100.3
102.428
101.752
98.3797
96.0419
98.3992
104.453
107.728
100.499
79.731
49.8919
20.4672
0.237392
-7.46052
-5.51889
-0.0894529
3.53126
3.40908
0.813216
-1.73752
-2.50869
-1.42256
0.380074
1.59897
1.61505
0.67637
-0.477938
-1.1661
-1.12199
-0.524944
0.212878
0.714613
0.809057
0.55101
0.131094
-0.246409
-0.452026
-0.459081
-0.320762
-0.124012
0.0529115
0.164268
0.200287
0.176994
0.121439
0.0592918
0.00793162
-0.0250428
-0.0397775
-0.0407841
-0.0338416
-0.0239614
-0.0145035
-0.00714437
-0.00229199
0.00038324
0.00150173
0.00168517
0.00141714
0.00101013
0.000630411
0.000342888
0.000154929
4.70464e-05
-4.83348e-06
-2.5317e-05
-2.60971e-05
-2.43573e-05
-1.39194e-05
99.9947
100.046
99.9786
99.9015
100.038
100.157
99.9642
99.7795
100.005
100.284
100.064
99.6674
99.8214
100.342
100.335
99.7222
99.4912
100.106
100.645
100.19
99.3432
99.4233
100.442
100.937
100.062
98.9374
99.211
100.708
101.458
100.253
98.4283
98.4082
100.609
102.547
101.531
98.0674
95.9957
98.6792
104.76
107.733
100.19
79.4162
49.8845
20.7791
0.578985
-7.40146
-5.79665
-0.465597
3.37118
3.59374
1.19511
-1.45
-2.52407
-1.72334
0.0058369
1.39801
1.70664
0.992221
-0.131344
-0.981326
-1.18516
-0.785641
-0.104585
0.488993
0.761961
0.680557
0.36511
-0.00669844
-0.288269
-0.409995
-0.379312
-0.251791
-0.095255
0.0370329
0.117971
0.145034
0.131429
0.0959711
0.0554883
0.0210678
-0.00241145
-0.0147969
-0.0185628
-0.0169833
-0.0129622
-0.00852274
-0.00477001
-0.00209933
-0.000471032
0.000352987
0.000650655
0.000656876
0.000535759
0.000384737
0.000250962
0.000150892
8.3634e-05
4.25691e-05
2.02034e-05
6.22522e-06
99.9808
100.03
100.048
99.9242
99.9155
100.112
100.136
99.8679
99.7959
100.124
100.287
99.9257
99.6286
99.9671
100.431
100.204
99.5746
99.576
100.303
100.642
99.9763
99.2385
99.5969
100.65
100.873
99.8028
98.8413
99.4213
100.953
101.41
99.9614
98.2582
98.5791
100.923
102.631
101.277
97.7566
95.9773
98.9824
105.068
107.723
99.8647
79.0934
49.8765
21.0982
0.936861
-7.32279
-6.06665
-0.859075
3.17329
3.74551
1.57808
-1.11933
-2.47796
-1.98619
-0.385029
1.12895
1.71613
1.26117
0.234416
-0.717048
-1.14716
-0.973481
-0.412914
0.204034
0.61255
0.706376
0.53255
0.224465
-0.0768249
-0.276873
-0.345319
-0.303767
-0.199951
-0.0828772
0.0127374
0.0712302
0.0928886
0.0873226
0.0669283
0.0424042
0.0207403
0.00513117
-0.00405925
-0.00805137
-0.00859963
-0.00732392
-0.00540811
-0.00355738
-0.00209143
-0.00107925
-0.000459506
-0.00012592
2.54529e-05
7.44547e-05
7.49336e-05
5.76808e-05
3.75035e-05
2.32567e-05
9.16196e-06
99.9852
99.9893
100.068
100.013
99.8787
99.9708
100.172
100.067
99.7867
99.867
100.234
100.228
99.7844
99.6543
100.134
100.46
100.03
99.4733
99.7225
100.479
100.568
99.7495
99.1975
99.8165
100.821
100.744
99.5397
98.805
99.6738
101.169
101.304
99.654
98.129
98.7954
101.238
102.675
100.99
97.4511
95.9892
99.3083
105.375
107.697
99.5236
78.7623
49.868
21.4247
1.31143
-7.22337
-6.32694
-1.26827
2.93681
3.85992
1.95553
-0.749659
-2.36729
-2.19992
-0.778313
0.799925
1.63805
1.4637
0.594022
-0.391151
-1.00721
-1.0661
-0.675542
-0.104044
0.381492
0.624247
0.604351
0.402015
0.134923
-0.096018
-0.235084
-0.273741
-0.235897
-0.158261
-0.0744668
-0.00663816
0.0360607
0.0544624
0.0548758
0.0450549
0.0316072
0.0189068
0.00909989
0.00267413
-0.00083869
-0.0022769
-0.00247228
-0.00206996
-0.00148686
-0.000945301
-0.000532431
-0.000258338
-9.67749e-05
-1.49145e-05
2.09474e-05
2.76095e-05
2.83959e-05
1.69346e-05
100.002
99.9608
100.028
100.083
99.9506
99.8666
100.055
100.191
99.9639
99.7472
99.9824
100.306
100.114
99.6695
99.7466
100.294
100.418
99.8371
99.4374
99.916
100.61
100.426
99.5329
99.2291
100.066
100.939
100.554
99.2901
98.8354
99.9582
101.346
101.14
99.3404
98.0477
99.0548
101.545
102.676
100.673
97.1549
96.0334
99.6567
105.679
107.652
99.1656
78.4228
49.8589
21.7588
1.70335
-7.10188
-6.57559
-1.69164
2.66103
3.93268
2.32077
-0.34595
-2.19033
-2.35427
-1.15908
0.422023
1.4712
1.5835
0.921611
-0.0271446
-0.774004
-1.0507
-0.860891
-0.395912
0.101307
0.447787
0.570096
0.494554
0.303892
0.0894566
-0.0817316
-0.179128
-0.204132
-0.17723
-0.124504
-0.0680982
-0.0219027
0.00854053
0.0237774
0.0275626
0.0244667
0.0184021
0.0120247
0.00674081
0.00301553
0.000750072
-0.000402704
-0.000830787
-0.000857112
-0.000705799
-0.0005099
-0.000334099
-0.000201679
-0.00011212
-5.72111e-05
-2.71382e-05
-8.24835e-06
100.016
99.9679
99.9672
100.077
100.058
99.8842
99.9019
100.143
100.156
99.8515
99.7673
100.118
100.318
99.9625
99.6079
99.8946
100.418
100.305
99.6535
99.4777
100.134
100.677
100.227
99.3505
99.3358
100.325
100.989
100.312
99.0717
98.9354
100.262
101.471
100.919
99.0317
98.0206
99.3535
101.836
102.631
100.328
96.8721
96.1122
100.027
105.979
107.588
98.7901
78.0745
49.8491
22.1006
2.11341
-6.95666
-6.81026
-2.12731
2.34529
3.95915
2.66629
0.0856563
-1.94649
-2.43924
-1.51102
0.00956195
1.21847
1.60714
1.19074
0.346303
-0.464991
-0.923835
-0.943296
-0.631416
-0.186879
0.205247
0.43602
0.484606
0.394339
0.23549
0.0732184
-0.050287
-0.119266
-0.138321
-0.12281
-0.0902108
-0.0546475
-0.0247733
-0.00408544
0.00755139
0.0121658
0.0122997
0.0101773
0.00736521
0.00476197
0.00274939
0.00138448
0.000562406
0.000128352
-6.24465e-05
-0.000118876
-0.000112891
-8.55305e-05
-5.54104e-05
-3.47984e-05
-1.41782e-05
100.015
100.001
99.9387
100.008
100.109
99.9954
99.8427
99.9814
100.204
100.069
99.7623
99.8501
100.243
100.26
99.8035
99.6182
100.075
100.479
100.133
99.5092
99.5947
100.349
100.666
99.9897
99.2246
99.5126
100.571
100.964
100.034
98.9018
99.104
100.568
101.534
100.649
98.7396
98.0525
99.6863
102.105
102.536
99.9584
96.6073
96.2276
100.419
106.274
107.504
98.3965
77.7171
49.8385
22.4502
2.54209
-6.78615
-7.02827
-2.57272
1.98967
3.93493
2.98372
0.537056
-1.63755
-2.44625
-1.81671
-0.418948
0.888952
1.52669
1.37644
0.695732
-0.108476
-0.695877
-0.908842
-0.775018
-0.436284
-0.059288
0.23102
0.378634
0.38975
0.307802
0.186181
0.0687379
-0.0188469
-0.0686862
-0.0853323
-0.0792521
-0.0615791
-0.041066
-0.0230695
-0.00988266
-0.00167572
0.00250171
0.00394745
0.00384356
0.00305939
0.0021304
0.00132456
0.00073267
0.000349443
0.000128061
1.78631e-05
-2.9256e-05
-3.73883e-05
-3.7783e-05
-2.22532e-05
100.003
100.03
99.9616
99.939
100.068
100.1
99.9141
99.8492
100.084
100.211
99.9471
99.7255
99.981
100.323
100.137
99.6714
99.7049
100.256
100.461
99.9276
99.43
99.7769
100.532
100.571
99.7394
99.1731
99.7468
100.78
100.858
99.738
98.7956
99.3359
100.862
101.528
100.336
98.4766
98.1471
100.047
102.343
102.39
99.5676
96.3652
96.3814
100.831
106.56
107.399
97.9842
77.3505
49.827
22.8077
2.98993
-6.58897
-7.22711
-3.02511
1.59491
3.85634
3.26481
0.998864
-1.26786
-2.36938
-2.0596
-0.842428
0.497839
1.34188
1.45946
0.987818
0.259881
-0.391101
-0.760305
-0.805298
-0.60663
-0.29761
-0.00118385
0.205958
0.300122
0.297614
0.234407
0.148134
0.0671047
0.00668384
-0.0291292
-0.0437156
-0.0436909
-0.0358307
-0.0254038
-0.0156806
-0.00817135
-0.00316923
-0.000305741
0.00102575
0.00141386
0.00131387
0.0010243
0.00071232
0.000451925
0.000264478
0.000141656
6.92408e-05
3.00824e-05
7.58354e-06
99.9891
100.033
100.012
99.9233
99.9785
100.118
100.045
99.8457
99.9109
100.178
100.156
99.8245
99.7583
100.131
100.334
99.9731
99.598
99.8571
100.401
100.361
99.7207
99.4338
100.002
100.653
100.4
99.505
99.207
100.019
100.93
100.676
99.4451
98.7651
99.621
101.125
101.448
99.9908
98.255
98.306
100.427
102.542
102.19
99.1603
96.1507
96.5755
101.262
106.837
107.269
97.5522
76.9742
49.8146
23.1735
3.45778
-6.36344
-7.40416
-3.48169
1.1619
3.71995
3.50127
1.46087
-0.843668
-2.20505
-2.22446
-1.23849
0.0650803
1.05972
1.42756
1.19251
0.601169
-0.0442014
-0.516015
-0.717371
-0.670286
-0.466344
-0.212148
0.00928324
0.154423
0.216474
0.212625
0.169559
0.112425
0.0590259
0.0185815
-0.00667371
-0.0188211
-0.0217502
-0.0194046
-0.0148709
-0.0101247
-0.00616643
-0.00331238
-0.0014895
-0.000460271
3.66826e-05
0.000219702
0.00024187
0.000198327
0.000139952
8.70296e-05
5.30336e-05
2.13252e-05
99.9849
100.011
100.049
99.9665
99.9136
100.046
100.13
99.9579
99.8207
100.014
100.228
100.045
99.7377
99.8595
100.262
100.265
99.8018
99.6046
100.048
100.481
100.19
99.5478
99.5258
100.24
100.693
100.17
99.3158
99.3285
100.304
101.004
100.428
99.1786
98.8181
99.9451
101.341
101.293
99.627
98.0864
98.5289
100.817
102.694
101.938
98.7415
95.9687
96.8113
101.71
107.102
107.115
97.0996
76.5878
49.8012
23.5478
3.94659
-6.10753
-7.55625
-3.93912
0.691875
3.5224
3.68426
1.91147
-0.373427
-1.95211
-2.2974
-1.58345
-0.384616
0.694823
1.27683
1.28538
0.87621
0.302238
-0.209219
-0.52538
-0.618349
-0.535965
-0.358929
-0.164264
-0.00454791
0.0970138
0.14086
0.14106
0.115876
0.0813736
0.04851
0.0228747
0.00590832
-0.00343912
-0.00725693
-0.00769639
-0.00647352
-0.00472814
-0.00308761
-0.00181167
-0.000940142
-0.000408689
-0.000119899
1.28779e-05
6.20839e-05
6.27887e-05
5.71104e-05
3.18505e-05
99.9921
99.9833
100.047
100.03
99.9176
99.9475
100.113
100.09
99.869
99.8567
100.128
100.211
99.9088
99.7167
100.008
100.337
100.128
99.6632
99.6963
100.242
100.474
99.9762
99.4411
99.6975
100.455
100.64
99.9051
99.198
99.5299
100.572
100.987
100.131
98.9617
98.9565
100.29
101.492
101.065
99.2595
97.9818
98.813
101.206
102.792
101.634
98.3172
95.8244
97.09
102.175
107.352
106.934
96.6257
76.1908
49.7863
23.9305
4.457
-5.81927
-7.6798
-4.39318
0.187203
3.26104
3.80469
2.33724
0.131121
-1.6132
-2.26713
-1.85312
-0.821687
0.270708
1.01405
1.25111
1.04969
0.601751
0.114778
-0.261883
-0.463224
-0.497102
-0.414147
-0.276558
-0.136204
-0.0248744
0.0456308
0.0779408
0.0821377
0.0699806
0.0513613
0.0328944
0.0179861
0.00764293
0.00144635
-0.00163333
-0.00270156
-0.00266672
-0.00215667
-0.00154158
-0.00100218
-0.00059782
-0.000328155
-0.000161907
-7.11746e-05
-2.37441e-05
-1.79586e-06
100.004
99.9697
100.012
100.066
99.9788
99.8958
100.018
100.145
100.004
99.8152
99.9491
100.213
100.126
99.7865
99.7744
100.166
100.332
99.9509
99.5928
99.859
100.398
100.376
99.7551
99.4239
99.9261
100.613
100.495
99.64
99.171
99.7935
100.795
100.877
99.807
98.8155
99.1764
100.634
101.566
100.769
98.905
97.9503
99.1534
101.584
102.828
101.279
97.8942
95.7228
97.4125
102.653
107.586
106.725
96.1296
75.7831
49.7702
24.3219
4.98964
-5.49696
-7.77148
-4.83937
-0.348769
2.93468
3.85438
2.72405
0.65518
-1.19595
-2.12744
-2.02578
-1.21399
-0.180536
0.659302
1.08887
1.09738
0.811312
0.404049
0.0241016
-0.240833
-0.366491
-0.37419
-0.30673
-0.208148
-0.111747
-0.0362747
0.0123224
0.0365935
0.0431006
0.039038
0.0303149
0.0208783
0.0128332
0.0069275
0.00309626
0.000904349
-0.000164817
-0.00055737
-0.000598204
-0.000491105
-0.000349665
-0.000224622
-0.000130551
-7.3839e-05
-2.75738e-05
100.012
99.9779
99.973
100.054
100.048
99.9199
99.9213
100.097
100.122
99.9028
99.8233
100.071
100.235
99.9928
99.7181
99.9009
100.29
100.241
99.7748
99.6121
100.061
100.479
100.2
99.568
99.505
100.177
100.686
100.274
99.41
99.2441
100.093
100.946
100.677
99.4844
98.7569
99.4673
100.955
101.552
100.418
98.5812
97.9991
99.5425
101.937
102.797
100.877
97.4797
95.6694
97.7797
103.143
107.8
106.485
95.6101
75.3639
49.7526
24.7223
5.54565
-5.13846
-7.82776
-5.27323
-0.912555
2.54265
3.82587
3.05784
1.18239
-0.711641
-1.87721
-2.08426
-1.53072
-0.622631
0.243086
0.813124
1.01187
0.901943
0.613913
0.281359
0.000644507
-0.181811
-0.262287
-0.263281
-0.216718
-0.151894
-0.0894625
-0.0403755
-0.00776942
0.0100976
0.0171291
0.017482
0.0145441
0.0106046
0.00694202
0.00409183
0.00213567
0.000933352
0.000276128
-3.32278e-05
-0.000141947
-0.000156353
-0.000123339
-9.63681e-05
-4.91466e-05
100.011
99.9996
99.9558
100.008
100.078
99.9934
99.8863
99.991
100.148
100.044
99.8262
99.898
100.18
100.181
99.8512
99.7298
100.064
100.342
100.083
99.6445
99.7226
100.26
100.465
99.9761
99.4525
99.6759
100.411
100.657
100.003
99.2486
99.4143
100.395
101.003
100.402
99.1926
98.7969
99.8123
101.228
101.444
100.026
98.306
98.1326
99.9702
102.252
102.693
100.432
97.0815
95.669
98.1919
103.642
107.991
106.212
95.0659
74.9325
49.7332
25.1322
6.12624
-4.74106
-7.84418
-5.68918
-1.49973
2.08476
3.71144
3.3232
1.69361
-0.175732
-1.52009
-2.01525
-1.742
-1.01568
-0.195215
0.451675
0.801354
0.859518
0.710859
0.46415
0.212209
0.0130029
-0.111406
-0.165484
-0.167754
-0.140138
-0.101244
-0.0635698
-0.0335264
-0.0129156
-0.000778995
0.00502687
0.00677868
0.00634322
0.00500824
0.0035299
0.00226889
0.00133902
0.000720864
0.000348877
0.000140604
4.22203e-05
-5.40879e-06
-1.51265e-05
100.004
100.019
99.9682
99.9625
100.056
100.063
99.9266
99.9026
100.078
100.142
99.9376
99.8089
100.018
100.235
100.062
99.7473
99.8242
100.218
100.304
99.8954
99.5962
99.9033
100.409
100.352
99.7481
99.4353
99.9111
100.585
100.524
99.721
99.1827
99.6658
100.664
100.954
100.074
98.9608
98.939
100.188
101.432
101.243
99.6109
98.097
98.3518
100.424
102.517
102.513
99.9501
96.7085
95.7265
98.6485
104.147
108.156
105.906
94.496
74.4882
49.7116
25.5512
6.73214
-4.3024
-7.81602
-6.08057
-2.10398
1.56308
3.50497
3.50442
2.16648
0.389976
-1.06817
-1.8136
-1.82284
-1.31844
-0.606957
0.0492344
0.496302
0.693741
0.682398
0.541092
0.350053
0.169288
0.0317668
-0.0531728
-0.0917319
-0.0972444
-0.0838547
-0.0629612
-0.0420144
-0.0248258
-0.0125627
-0.00484219
-0.000609657
0.00129121
0.00182987
0.00169384
0.00130965
0.000901099
0.000566977
0.0003272
0.000172966
8.54605e-05
2.64893e-05
99.9946
100.025
99.9983
99.945
100.003
100.086
100.006
99.8834
99.9696
100.142
100.073
99.8454
99.8644
100.141
100.211
99.9148
99.7185
99.9773
100.316
100.18
99.7276
99.6472
100.114
100.472
100.16
99.5626
99.5251
100.171
100.667
100.303
99.4694
99.2272
99.9704
100.865
100.798
99.724
98.8154
99.1781
100.568
101.545
100.953
99.1958
97.9702
98.6543
100.888
102.717
102.255
99.4397
96.3699
95.8467
99.149
104.655
108.292
105.562
93.899
74.0305
49.6877
25.9798
7.36432
-3.82014
-7.73878
-6.44065
-2.71815
0.981384
3.20252
3.58728
2.57793
0.959501
-0.541491
-1.48473
-1.75879
-1.4968
-0.944126
-0.341615
0.143784
0.43811
0.544183
0.509944
0.39743
0.261168
0.137975
0.045895
-0.0116193
-0.0398319
-0.0474826
-0.0432208
-0.0337933
-0.0235623
-0.0148042
-0.00831736
-0.00403708
-0.00151136
-0.000203887
0.0003515
0.000497521
0.000452357
0.000347904
0.00023176
0.0001569
7.20459e-05
99.9899
100.015
100.026
99.9615
99.9546
100.057
100.072
99.9339
99.8921
100.061
100.15
99.9667
99.8083
99.9768
100.219
100.111
99.7884
99.7793
100.144
100.325
100
99.6264
99.7896
100.304
100.428
99.9264
99.4608
99.7099
100.408
100.637
100.025
99.2889
99.3824
100.291
100.969
100.545
99.3877
98.7765
99.4998
100.921
101.554
100.587
98.8044
97.9387
99.0334
101.345
102.841
101.92
98.9095
96.0754
96.0342
99.6923
105.16
108.394
105.178
93.2733
73.5585
49.6611
26.4185
8.02416
-3.29138
-7.60726
-6.76192
-3.33407
0.344856
2.80167
3.55847
2.904
1.503
0.0326071
-1.04414
-1.54641
-1.52594
-1.16351
-0.666644
-0.20047
0.14079
0.330268
0.387655
0.354692
0.275523
0.185147
0.105394
0.0459927
0.00805335
-0.0120737
-0.0197129
-0.0199196
-0.0165734
-0.0121932
-0.00814341
-0.00497942
-0.00277742
-0.00138747
-0.000587241
-0.000176933
1.14252e-05
6.66508e-05
8.38903e-05
5.29338e-05
99.9914
99.9987
100.035
99.9972
99.9377
99.9998
100.09
100.015
99.8845
99.956
100.133
100.091
99.8657
99.8471
100.105
100.22
99.9666
99.729
99.9144
100.272
100.238
99.8149
99.6232
99.9902
100.426
100.284
99.7028
99.4686
99.9573
100.577
100.495
99.7347
99.2119
99.6318
100.584
100.955
100.219
99.1024
98.8552
99.8807
101.217
101.45
100.164
98.4622
98.0124
99.4782
101.777
102.878
101.509
98.3702
95.8352
96.2928
100.276
105.66
108.459
104.751
92.6169
73.071
49.6314
26.8673
8.71309
-2.71284
-7.41556
-7.03571
-3.94182
-0.339012
2.30259
3.40665
3.12066
1.98699
0.618471
-0.520332
-1.1985
-1.39784
-1.23582
-0.87944
-0.480143
-0.140215
0.0930935
0.216146
0.251059
0.229196
0.179825
0.124498
0.0759157
0.0394015
0.0153542
0.00160237
-0.00485482
-0.00681428
-0.00641609
-0.00507095
-0.00357718
-0.00230751
-0.0013697
-0.000749732
-0.00036802
-0.000160509
-5.11387e-05
-1.01838e-06
99.9972
99.985
100.025
100.03
99.9562
99.9507
100.057
100.076
99.9392
99.8888
100.048
100.15
99.9866
99.8159
99.9506
100.198
100.138
99.8291
99.7609
100.082
100.317
100.076
99.6785
99.7232
100.198
100.444
100.07
99.5403
99.5892
100.22
100.641
100.261
99.4801
99.2561
99.9434
100.807
100.82
99.855
98.9032
99.0515
100.29
101.425
101.231
99.7082
98.1942
98.1961
99.9733
102.163
102.817
101.027
97.8343
95.6594
96.6259
100.899
106.149
108.482
104.279
91.928
72.5666
49.5977
27.3263
9.43228
-2.08113
-7.15708
-7.25194
-4.52933
-1.05984
1.70867
3.12323
3.20494
2.37588
1.17387
0.0465611
-0.744175
-1.12396
-1.15225
-0.952617
-0.654431
-0.357639
-0.120571
0.0361267
0.117778
0.142828
0.132745
0.10593
0.0752512
0.0480251
0.0272562
0.0132004
0.00472678
0.000269891
-0.00163001
-0.00209643
-0.00188519
-0.00144121
-0.000992048
-0.000631607
-0.00036827
-0.000214963
-8.58504e-05
100.004
99.9809
100.003
100.042
99.9943
99.9337
100
100.091
100.017
99.8876
99.9509
100.125
100.097
99.8825
99.843
100.079
100.216
100.002
99.7501
99.8769
100.225
100.263
99.8888
99.6333
99.902
100.357
100.351
99.8344
99.4795
99.801
100.443
100.582
99.9732
99.3076
99.421
100.273
100.924
100.574
99.4953
98.8184
99.3531
100.689
101.521
100.907
99.2492
98.0239
98.4892
100.499
102.482
102.651
100.483
97.3161
95.559
97.0361
101.555
106.62
108.457
103.758
91.2047
72.0443
49.5595
27.7954
10.1827
-1.39318
-6.82527
-7.39968
-5.08222
-1.80332
1.02847
2.70487
3.13735
2.63366
1.65046
0.603708
-0.23137
-0.7389
-0.928564
-0.881591
-0.700582
-0.475429
-0.267455
-0.107786
-0.00385699
0.0514022
0.0712811
0.0695235
0.0572541
0.0420017
0.0279966
0.0170243
0.00935548
0.00450155
0.0017236
0.000315348
-0.000280794
-0.000441831
-0.000416385
-0.000307938
-0.000228764
-0.000112701
100.007
99.9866
99.9834
100.033
100.029
99.9513
99.9517
100.059
100.075
99.941
99.8917
100.043
100.144
99.996
99.8272
99.9389
100.178
100.148
99.8616
99.7616
100.038
100.295
100.122
99.7335
99.6962
100.111
100.422
100.166
99.6364
99.5386
100.06
100.578
100.408
99.6844
99.2521
99.6852
100.57
100.913
100.242
99.1853
98.8655
99.7349
101.039
101.487
100.495
98.8204
97.9709
98.8847
101.03
102.714
102.376
99.8875
96.8313
95.5444
97.5255
102.242
107.069
108.38
103.184
90.4443
71.5025
49.5161
28.2751
10.9662
-0.645204
-6.41302
-7.46746
-5.58497
-2.55257
0.275137
2.15473
2.90572
2.73038
2.00212
1.09425
0.280113
-0.297255
-0.607623
-0.69373
-0.629905
-0.490928
-0.334702
-0.196887
-0.0932821
-0.0257108
0.0117208
0.0276724
0.0304512
0.026534
0.0202315
0.0139818
0.00887846
0.00518981
0.00276976
0.00131065
0.000515297
0.000114491
-3.72738e-05
-0.000101931
-7.67517e-05
100.007
99.9976
99.9744
100.009
100.045
99.9886
99.9331
100.005
100.089
100.013
99.8917
99.9541
100.117
100.094
99.8935
99.849
100.063
100.204
100.02
99.7738
99.862
100.187
100.264
99.9408
99.6613
99.8509
100.289
100.371
99.9363
99.5271
99.7076
100.309
100.591
100.149
99.4502
99.3292
100.008
100.784
100.766
99.8677
98.9685
99.0478
100.161
101.301
101.318
100.022
98.4566
98.0492
99.3684
101.542
102.839
101.992
99.2539
96.3968
95.6258
98.095
102.954
107.486
108.244
102.553
89.6436
70.9389
49.4662
28.7652
11.7844
0.167327
-5.91165
-7.44133
-6.01864
-3.28623
-0.532528
1.48269
2.50511
2.6428
2.18758
1.46287
0.727773
0.139153
-0.243423
-0.430191
-0.468441
-0.415421
-0.32119
-0.221086
-0.135113
-0.0710786
-0.0289127
-0.0045693
0.00717313
0.0110909
0.0108241
0.00878591
0.00636475
0.00423262
0.0026113
0.0015036
0.000799715
0.000391004
0.000172115
4.41861e-05
100.004
100.008
99.9781
99.986
100.039
100.025
99.9469
99.9578
100.062
100.068
99.9392
99.9002
100.044
100.134
99.9955
99.8399
99.9402
100.161
100.143
99.8828
99.7748
100.014
100.267
100.141
99.7797
99.6975
100.051
100.382
100.217
99.7232
99.5376
99.9483
100.489
100.477
99.8559
99.3195
99.5306
100.337
100.877
100.501
99.5008
98.8795
99.3515
100.585
101.441
101.018
99.5246
98.192
98.2652
99.9188
102.002
102.84
101.502
98.6004
96.0309
95.8129
98.7436
103.683
107.865
108.042
101.859
88.7994
70.3512
49.4082
29.265
12.6382
1.04821
-5.31258
-7.30615
-6.3609
-3.97654
-1.36579
0.711959
1.94631
2.36404
2.18008
1.66446
1.05283
0.504544
0.098274
-0.15073
-0.265878
-0.286673
-0.252874
-0.196056
-0.137019
-0.0868185
-0.0493829
-0.0243342
-0.00926773
-0.00127326
0.00224421
0.00324171
0.00302467
0.00236324
0.0016547
0.00107229
0.000635504
0.000380311
0.000156405
99.9994
100.013
99.9902
99.9726
100.017
100.044
99.9804
99.9365
100.014
100.084
100.004
99.8971
99.9646
100.112
100.082
99.8989
99.863
100.059
100.186
100.022
99.7957
99.8654
100.16
100.249
99.9693
99.6949
99.8319
100.234
100.361
100.001
99.5861
99.6681
100.202
100.555
100.255
99.5908
99.3229
99.8231
100.611
100.827
100.151
99.1964
98.9387
99.7463
100.957
101.435
100.607
99.0449
98.0568
98.6162
100.507
102.38
102.704
100.916
97.9482
95.7532
96.1145
99.4694
104.421
108.195
107.767
101.097
87.9078
69.7366
49.3402
29.7741
13.5288
2.00173
-4.60647
-7.0453
-6.58661
-4.59058
-2.18737
-0.121447
1.25753
1.90872
1.97715
1.67916
1.22071
0.754463
0.368888
0.0973794
-0.0639721
-0.138382
-0.154527
-0.138121
-0.108226
-0.0767965
-0.0499474
-0.0297768
-0.01607
-0.00757278
-0.00279063
-0.000405959
0.000582133
0.000829512
0.000768071
0.00056582
0.000423453
0.000212012
99.9962
100.012
100.004
99.9724
99.9929
100.043
100.015
99.9441
99.9691
100.065
100.055
99.9352
99.914
100.05
100.12
99.9868
99.8537
99.9522
100.148
100.127
99.8931
99.7959
100.009
100.24
100.137
99.8122
99.7171
100.02
100.339
100.23
99.7876
99.5655
99.8858
100.404
100.487
99.9749
99.4131
99.465
100.153
100.778
100.634
99.7702
99.0046
99.1471
100.186
101.229
101.271
100.117
98.6291
98.0744
99.089
101.097
102.644
102.422
100.247
97.322
95.5838
96.5384
100.268
105.159
108.466
107.409
100.261
86.9641
69.0915
49.2598
30.2909
14.457
3.0322
-3.78299
-6.63968
-6.66581
-5.08746
-2.94811
-0.96539
0.487057
1.3145
1.60082
1.51092
1.21792
0.861121
0.531006
0.272233
0.0955015
-0.00869475
-0.0585192
-0.0730133
-0.0679711
-0.0545546
-0.0395594
-0.0264234
-0.0163766
-0.00940789
-0.00496267
-0.00233575
-0.000922767
-0.000217318
5.1198e-05
0.000165166
0.000126518
99.995
100.007
100.014
99.9826
99.976
100.025
100.038
99.9711
99.9447
100.025
100.075
99.9899
99.9052
99.9811
100.106
100.063
99.9005
99.8838
100.063
100.165
100.012
99.8153
99.883
100.144
100.223
99.9769
99.7281
99.8383
100.197
100.332
100.03
99.6412
99.6689
100.132
100.499
100.299
99.7017
99.3658
99.7201
100.454
100.801
100.327
99.4202
98.962
99.4833
100.615
101.359
100.957
99.5931
98.3231
98.2577
99.6589
101.648
102.766
101.992
99.5165
96.7499
95.5429
97.0905
101.134
105.883
108.664
106.959
99.3434
85.9622
68.4113
49.1638
30.8143
15.4237
4.14439
-2.83128
-6.06935
-6.56677
-5.42246
-3.59146
-1.7553
-0.298282
0.644044
1.10378
1.19869
1.06817
0.833797
0.582069
0.362927
0.196927
0.0852247
0.0187858
-0.0148457
-0.0274707
-0.0283687
-0.0238953
-0.0178723
-0.0122558
-0.00781955
-0.00466108
-0.00260153
-0.00133832
-0.000630793
-0.000258539
-5.52578e-05
99.9958
100
100.016
99.9967
99.971
100.003
100.042
100.003
99.9448
99.9846
100.065
100.037
99.9315
99.9332
100.058
100.101
99.9726
99.8699
99.9724
100.138
100.102
99.8951
99.8233
100.017
100.214
100.117
99.8313
99.7485
100.014
100.3
100.216
99.8264
99.6077
99.8665
100.337
100.46
100.039
99.5027
99.4637
100.035
100.664
100.67
99.9571
99.1637
99.084
99.9044
100.971
101.32
100.518
99.0911
98.1675
98.6061
100.289
102.116
102.721
101.42
98.7525
96.2629
95.6502
97.7741
102.058
106.58
108.777
106.404
98.3343
84.8948
67.69
49.0473
31.341
16.4287
5.34237
-1.74048
-5.31367
-6.25638
-5.54857
-4.05741
-2.42144
-1.02431
-0.0302693
0.55082
0.795167
0.809764
0.69622
0.532778
0.369852
0.233555
0.132527
0.064964
0.0242113
0.00248333
-0.00712013
-0.00983171
-0.00916622
-0.00723711
-0.00515351
-0.00339577
-0.00210499
-0.00120812
-0.000701792
-0.000282752
99.9978
99.9951
100.013
100.009
99.9768
99.9844
100.032
100.026
99.9631
99.9582
100.036
100.061
99.9747
99.9178
100.001
100.098
100.038
99.9019
99.9106
100.071
100.14
99.9925
99.8342
99.9114
100.137
100.19
99.9682
99.7594
99.8639
100.176
100.293
100.03
99.686
99.6977
100.098
100.44
100.296
99.7725
99.4298
99.6867
100.341
100.732
100.404
99.593
99.0519
99.3594
100.349
101.197
101.103
99.9993
98.6705
98.1931
99.1031
100.932
102.454
102.491
100.722
97.9898
95.8951
95.9243
98.5894
103.027
107.232
108.786
105.732
97.2238
83.7538
66.9206
48.9045
31.8664
17.4685
6.62524
-0.506515
-4.36023
-5.71032
-5.42698
-4.2919
-2.89634
-1.6142
-0.627721
0.020677
0.372035
0.503672
0.496819
0.418933
0.317397
0.220382
0.141139
0.0830892
0.0442526
0.0204298
0.00713997
0.000578384
-0.002069
-0.00268688
-0.00238905
-0.00183594
-0.00122956
-0.000850597
-0.000403917
100
99.9926
100.007
100.015
99.9884
99.9751
100.014
100.036
99.9887
99.9509
100.002
100.061
100.016
99.9315
99.957
100.065
100.077
99.957
99.8905
99.9973
100.126
100.07
99.8937
99.8566
100.035
100.188
100.085
99.8415
99.7886
100.026
100.264
100.181
99.8429
99.6566
99.8808
100.291
100.411
100.054
99.5741
99.504
99.9821
100.564
100.641
100.056
99.3073
99.1129
99.7484
100.746
101.249
100.728
99.4626
98.3894
98.4149
99.7145
101.53
102.62
102.069
99.925
97.2703
95.6819
96.3818
99.5328
104.023
107.816
108.673
104.925
95.9987
82.5281
66.0934
48.7263
32.3814
18.5344
7.98518
0.865276
-3.2092
-4.92037
-5.03821
-4.26282
-3.1357
-2.01393
-1.08856
-0.425771
-0.0130785
0.200858
0.277797
0.273237
0.22918
0.173149
0.120524
0.0780294
0.047065
0.026301
0.0133904
0.0059665
0.00204606
0.000230689
-0.000496425
-0.000601075
-0.000594573
-0.000350428
100.002
99.993
99.9997
100.016
100.001
99.9754
99.9962
100.033
100.011
99.9598
99.976
100.043
100.042
99.9618
99.9362
100.021
100.084
100.011
99.9071
99.9423
100.079
100.109
99.9697
99.8562
99.947
100.133
100.149
99.9498
99.7914
99.903
100.167
100.245
100.008
99.7221
99.7462
100.094
100.384
100.258
99.8058
99.4999
99.7068
100.275
100.648
100.405
99.6991
99.1624
99.3431
100.186
101.024
101.107
100.236
98.9801
98.2963
98.8269
100.388
102.022
102.578
101.462
99.0673
96.6425
95.6595
97.0352
100.596
105.027
108.31
108.414
103.966
94.6427
81.2023
65.1924
48.4949
32.866
19.6036
9.39722
2.34964
-1.88298
-3.90217
-4.38745
-3.96225
-3.11775
-2.18917
-1.36888
-0.739041
-0.30933
-0.0502036
0.0824907
0.132261
0.134454
0.114087
0.0867575
0.0608332
0.0398545
0.0245271
0.0141897
0.00766527
0.00383323
0.0016948
0.000640563
0.000119966
-6.37199e-05
100.002
99.9951
99.9947
100.012
100.009
99.9824
99.9843
100.022
100.025
99.9774
99.9633
100.018
100.05
99.9947
99.9383
99.983
100.066
100.048
99.9447
99.917
100.022
100.108
100.035
99.8947
99.8956
100.055
100.158
100.044
99.8492
99.8364
100.049
100.229
100.131
99.8451
99.7109
99.9194
100.263
100.347
100.033
99.6264
99.5713
99.9823
100.488
100.57
100.079
99.4137
99.1948
99.7032
100.591
101.125
100.781
99.6962
98.6263
98.4219
99.3987
101.057
102.344
102.302
100.69
98.201
96.1608
95.8629
97.8924
101.762
106.01
108.681
107.981
102.828
93.1326
79.7526
64.1914
48.1804
33.2853
20.6358
10.8155
3.89657
-0.433001
-2.70475
-3.51717
-3.42256
-2.86264
-2.14741
-1.46473
-0.906237
-0.497948
-0.227956
-0.0673922
0.0159413
0.050234
0.0568382
0.0501625
0.0389028
0.0276381
0.018336
0.0114573
0.00677683
0.0037907
0.0019828
0.00101469
0.000351087
100.002
99.998
99.9925
100.006
100.013
99.9919
99.9798
100.008
100.028
99.9959
99.9636
99.9951
100.043
100.02
99.9556
99.9597
100.036
100.063
99.9861
99.9198
99.9757
100.08
100.073
99.9494
99.8843
99.9851
100.124
100.103
99.9293
99.828
99.95
100.16
100.19
99.9743
99.7555
99.8091
100.109
100.328
100.196
99.8113
99.5722
99.7657
100.25
100.561
100.349
99.7426
99.2703
99.4037
100.122
100.88
101.021
100.317
99.1934
98.467
98.7699
100.073
101.638
102.438
101.787
99.7964
97.3914
95.884
96.3241
98.9539
103.01
106.935
108.891
107.337
101.477
91.4331
78.1407
63.0468
47.7328
33.5824
21.5666
12.1694
5.43077
1.06404
-1.40214
-2.49439
-2.70008
-2.41345
-1.91766
-1.39182
-0.931712
-0.5747
-0.322519
-0.159025
-0.0621229
-0.010632
0.0125854
0.0198772
0.0193031
0.0156362
0.0114001
0.00769471
0.0049205
0.00291308
0.00178194
0.000766567
100.002
100
99.9928
100
100.013
100.001
99.9816
99.9963
100.024
100.01
99.9726
99.9803
100.028
100.033
99.9785
99.953
100.007
100.058
100.019
99.9409
99.9483
100.041
100.083
100
99.9035
99.9384
100.071
100.121
100.003
99.862
99.8903
100.074
100.189
100.074
99.8436
99.7723
99.972
100.241
100.271
99.9891
99.668
99.6581
100.02
100.43
100.473
100.043
99.4839
99.3079
99.7452
100.508
100.986
100.719
99.7904
98.8188
98.5461
99.311
100.768
102.048
102.263
101.05
98.8448
96.7173
95.8739
97.0698
100.21
104.301
107.755
108.888
106.432
99.8629
89.4915
76.3096
61.6959
47.0826
33.6801
22.3113
13.3665
6.85397
2.5066
-0.0953054
-1.41518
-1.8818
-1.84498
-1.56067
-1.19652
-0.848516
-0.561202
-0.346471
-0.1984
-0.103547
-0.0471811
-0.0164482
-0.00149991
0.00449249
0.00592548
0.00530567
0.00412241
0.00278851
0.00196673
0.000958022
100.001
100.002
99.9946
99.9963
100.01
100.006
99.987
99.9892
100.015
100.017
99.9851
99.9746
100.011
100.034
99.9991
99.959
99.9847
100.042
100.037
99.9687
99.9411
100.005
100.072
100.035
99.9382
99.9195
100.019
100.107
100.054
99.9157
99.8722
99.9972
100.147
100.128
99.9391
99.7945
99.881
100.129
100.267
100.118
99.805
99.6511
99.8504
100.249
100.467
100.252
99.7416
99.3746
99.5199
100.138
100.77
100.877
100.271
99.3022
98.6524
98.8722
99.9782
101.382
102.207
101.798
100.138
97.9231
96.2683
96.1898
98.115
101.634
105.583
108.399
108.599
105.191
97.9112
87.232
74.1798
60.0548
46.1417
33.4864
22.7741
14.3079
8.06509
3.7933
1.11677
-0.372936
-1.05247
-1.23082
-1.13746
-0.926969
-0.692585
-0.482719
-0.316348
-0.195386
-0.113452
-0.0614142
-0.0303962
-0.0131585
-0.0043132
-0.00033042
0.00121672
0.00139716
0.0013587
0.000800213
100
100.003
99.997
99.9946
100.005
100.009
99.9934
99.9868
100.006
100.018
99.9965
99.9763
99.9973
100.028
100.013
99.9717
99.9734
100.022
100.041
99.9938
99.9486
99.98
100.049
100.052
99.9743
99.9235
99.9795
100.075
100.077
99.9692
99.8858
99.9457
100.089
100.139
100.016
99.8503
99.8418
100.026
100.213
100.184
99.9372
99.7125
99.7605
100.076
100.376
100.352
99.9704
99.5353
99.4464
99.8496
100.479
100.836
100.569
99.7703
98.9585
98.7442
99.4077
100.669
101.805
102.054
101.063
99.1362
97.1436
96.14
96.8805
99.4522
103.172
106.769
108.771
107.923
103.516
95.5265
84.5605
71.6578
58.0301
44.8165
32.9074
22.86
14.8974
8.96643
4.82607
2.1375
0.539758
-0.29796
-0.647776
-0.714092
-0.637744
-0.507232
-0.372224
-0.256216
-0.166794
-0.103062
-0.0604428
-0.0335477
-0.0174481
-0.00839859
-0.00353915
-0.0012389
-0.000134168
0.000204351
99.9996
100.002
99.9991
99.9946
100.002
100.009
99.9988
99.988
99.9994
100.015
100.005
99.9822
99.9892
100.018
100.019
99.9856
99.9714
100.005
100.036
100.011
99.9637
99.9676
100.025
100.052
100.003
99.941
99.958
100.04
100.078
100.01
99.9165
99.9222
100.035
100.121
100.064
99.9149
99.8449
99.9533
100.139
100.196
100.037
99.8046
99.742
99.9461
100.25
100.36
100.131
99.7229
99.4878
99.676
100.201
100.674
100.686
100.133
99.3339
98.8464
99.0952
100.065
101.255
101.938
101.57
100.125
98.168
96.6357
96.4219
97.9699
101.038
104.728
107.736
108.735
106.728
101.284
92.5945
81.3718
68.6468
55.5333
43.0263
31.8692
22.5007
15.0697
9.49469
5.54248
2.90539
1.26326
0.325405
-0.147275
-0.335803
-0.367124
-0.323564
-0.253998
-0.184272
-0.125726
-0.0814003
-0.0502577
-0.0296249
-0.0166814
-0.00892842
-0.00449136
-0.00219317
-0.000719882
99.9994
100.002
100.001
99.9957
99.9989
100.007
100.002
99.9911
99.9952
100.01
100.009
99.9893
99.9863
100.009
100.019
99.997
99.9758
99.9933
100.026
100.02
99.98
99.966
100.005
100.042
100.02
99.9629
99.9522
100.011
100.064
100.034
99.951
99.9214
99.9937
100.088
100.084
99.9709
99.8738
99.9147
100.067
100.17
100.095
99.8965
99.7725
99.8704
100.128
100.308
100.216
99.8893
99.594
99.6105
99.9866
100.466
100.664
100.357
99.6812
99.0764
99.0072
99.6444
100.712
101.606
101.719
100.793
99.1053
97.3895
96.5305
97.1766
99.4356
102.775
106.154
108.313
108.121
104.859
98.3601
89.0012
77.571
65.0687
52.5007
40.7196
30.3296
21.66
14.7918
9.61701
5.90831
3.38434
1.76011
0.779998
0.234418
-0.036048
-0.14464
-0.166572
-0.148339
-0.116379
-0.0840998
-0.0571344
-0.0368914
-0.0227471
-0.0135129
-0.00756001
-0.00436426
-0.00179271
99.9994
100.001
100.001
99.9971
99.9976
100.004
100.004
99.9946
99.9936
100.006
100.009
99.9956
99.9872
100.001
100.016
100.004
99.9829
99.9877
100.015
100.021
99.9934
99.9713
99.9921
100.029
100.027
99.9827
99.9574
99.9913
100.044
100.042
99.9803
99.9345
99.9702
100.053
100.081
100.01
99.9124
99.9053
100.013
100.126
100.115
99.9694
99.8269
99.8437
100.032
100.229
100.237
100.01
99.7194
99.6247
99.8527
100.27
100.56
100.453
99.9461
99.3436
99.0754
99.4145
100.27
101.197
101.617
101.146
99.8285
98.1758
96.9701
96.9347
98.4132
101.187
104.497
107.244
108.286
106.736
102.153
94.6158
84.6529
73.0946
60.8859
48.9161
37.8969
28.301
20.3572
14.0852
9.35312
5.93864
3.58334
2.03303
1.06312
0.490568
0.175986
0.0195313
-0.0462498
-0.0642835
-0.0601789
-0.0480423
-0.0349565
-0.0237298
-0.0154312
-0.00931518
-0.00591868
-0.00267806
99.9995
100.001
100.002
99.9985
99.9973
100.002
100.004
99.9976
99.994
100.002
100.008
99.9999
99.9901
99.997
100.011
100.008
99.99
99.9868
100.006
100.018
100.002
99.9795
99.9863
100.016
100.026
99.9969
99.9677
99.9818
100.025
100.04
100
99.953
99.9617
100.024
100.066
100.03
99.9487
99.9151
99.9791
100.082
100.109
100.016
99.8847
99.8515
99.9716
100.15
100.215
100.079
99.8323
99.6841
99.7925
100.117
100.426
100.454
100.114
99.5853
99.2256
99.34
99.9668
100.812
101.382
101.25
100.303
98.8536
97.537
97.0597
97.8944
100.058
103.048
105.965
107.74
107.419
104.384
98.4684
89.9617
79.5043
67.9329
56.1157
44.8164
34.6081
25.8405
18.651
13.0057
8.75238
5.67414
3.53339
2.10359
1.18801
0.62772
0.301969
0.123885
0.0341428
-0.00579539
-0.0195873
-0.0211202
-0.0176454
-0.0132837
-0.00885384
-0.0062326
-0.00307119
99.9996
100
100.001
99.9995
99.9976
100.001
100.004
99.9996
99.9953
99.9995
100.006
100.002
99.9934
99.9953
100.006
100.008
99.9956
99.9887
100
100.013
100.006
99.9875
99.9857
100.007
100.021
100.005
99.9789
99.9798
100.011
100.032
100.011
99.9709
99.9636
100.004
100.047
100.037
99.9765
99.9338
99.9644
100.045
100.089
100.039
99.9332
99.8776
99.9428
100.085
100.173
100.107
99.9172
99.7588
99.7861
100.017
100.297
100.399
100.194
99.7702
99.3983
99.3694
99.7953
100.505
101.108
101.191
100.557
99.3604
98.0897
97.3789
97.7461
99.3609
101.932
104.754
106.878
107.359
105.481
100.904
93.7146
84.371
73.5794
62.1473
50.8449
40.3039
30.9631
23.0589
16.6481
11.6512
7.90104
5.18751
3.29317
2.01706
1.188
0.669216
0.357336
0.177985
0.0800049
0.0298767
0.00633375
-0.00302058
-0.00589707
-0.00535391
-0.00468314
-0.00264163
99.9998
99.9999
100.001
100
99.9983
99.9997
100.002
100.001
99.9968
99.9984
100.004
100.003
99.9964
99.9953
100.003
100.007
99.9992
99.9918
99.9973
100.008
100.007
99.9938
99.9881
100.001
100.014
100.008
99.9883
99.9825
100.002
100.022
100.014
99.9848
99.9709
99.9942
100.03
100.033
99.9941
99.9541
99.963
100.019
100.065
100.044
99.9675
99.9091
99.9373
100.04
100.127
100.105
99.9708
99.8289
99.8115
99.9652
100.196
100.322
100.212
99.8911
99.5544
99.4529
99.7274
100.293
100.855
101.049
100.644
99.6909
98.549
97.759
97.8284
99.01
101.165
103.755
105.966
106.909
105.831
102.285
96.203
87.8822
77.8987
66.9782
55.865
45.2141
35.5225
27.1024
20.0883
14.4687
10.1282
6.89028
4.55444
2.9234
1.82047
1.09818
0.640235
0.359462
0.193236
0.0985791
0.0468395
0.0201484
0.00697777
0.00145911
-0.000991661
-0.00121447
99.9999
99.9998
100.001
100
99.9989
99.9994
100.001
100.001
99.9982
99.9983
100.002
100.003
99.9985
99.9963
100.001
100.005
100.001
99.9949
99.9966
100.004
100.006
99.9979
99.9916
99.9978
100.009
100.008
99.9948
99.9872
99.9975
100.013
100.013
99.9938
99.9797
99.9908
100.017
100.026
100.003
99.9712
99.9692
100.005
100.043
100.039
99.9875
99.9379
99.9455
100.015
100.087
100.088
99.9976
99.8838
99.8498
99.9484
100.126
100.247
100.192
99.9563
99.6753
99.5526
99.7279
100.168
100.655
100.884
100.625
99.8732
98.8867
98.1154
98.0249
98.8993
100.697
103.013
105.156
106.314
105.746
102.944
97.7339
90.2864
81.059
70.6901
59.8789
49.2776
39.4145
30.6547
23.1942
17.0804
12.2467
8.55202
5.81743
3.85501
2.48825
1.56383
0.956385
0.568596
0.328093
0.183366
0.0988466
0.0512041
0.0251661
0.0116077
0.0049663
0.0013205
100
99.9998
100
100
99.9995
99.9994
100.001
100.001
99.9992
99.9986
100.001
100.002
99.9997
99.9976
99.9996
100.003
100.002
99.9974
99.9971
100.002
100.004
100
99.9949
99.9972
100.004
100.006
99.9984
99.992
99.9965
100.007
100.009
99.9985
99.9875
99.9918
100.008
100.017
100.005
99.9833
99.9781
99.9995
100.027
100.028
99.9962
99.9597
99.9595
100.005
100.058
100.065
100.005
99.9209
99.8882
99.9534
100.085
100.185
100.155
99.9807
99.7571
99.6443
99.7649
100.11
100.515
100.732
100.554
99.948
99.1078
98.405
98.2524
98.9317
100.455
102.512
104.514
105.73
105.451
103.151
98.5877
91.8401
83.2673
73.426
62.9623
52.509
42.6051
33.6485
25.8802
19.3949
14.169
10.0952
7.01743
4.76055
3.1524
2.03787
1.286
0.792064
0.475935
0.278837
0.159115
0.0882802
0.0476457
0.0245659
0.0129291
0.00487891
100
99.9999
100
100
99.9998
99.9996
100
100.001
99.9998
99.9991
100
100.001
100
99.9987
99.9993
100.001
100.001
99.999
99.9981
100
100.002
100.001
99.9975
99.9979
100.002
100.004
100
99.9958
99.9973
100.003
100.006
100
99.9933
99.9947
100.004
100.01
100.004
99.9907
99.9868
99.9992
100.016
100.018
99.9976
99.974
99.9738
100.004
100.04
100.044
100.002
99.9424
99.9199
99.9687
100.066
100.14
100.116
99.98
99.8051
99.7169
99.8146
100.095
100.429
100.611
100.466
99.9558
99.2351
98.6167
98.462
99.0331
100.365
102.207
104.049
105.232
105.092
103.105
98.9967
92.7805
84.7413
75.3655
65.2469
54.9901
45.1308
36.0839
28.1204
21.3712
15.8475
11.4721
8.1109
5.60307
3.78327
2.49759
1.61244
1.01814
0.628811
0.379794
0.224368
0.129389
0.0732548
0.0396938
0.0225393
0.00932317
100
99.9999
100
100
100
99.9998
100
100
100
99.9996
99.9998
100
100
99.9996
99.9995
100
100.001
99.9999
99.9992
99.9998
100.001
100.001
99.9992
99.999
100
100.001
100
99.9985
99.9989
100.001
100.002
99.9998
99.997
99.9981
100.002
100.005
100.001
99.9943
99.9937
100.002
100.01
100.009
99.9951
99.982
99.9857
100.008
100.03
100.027
99.9935
99.9522
99.9428
99.9865
100.062
100.112
100.082
99.9668
99.8282
99.7677
99.8627
100.105
100.384
100.525
100.384
99.9286
99.2952
98.7565
98.6309
99.1537
100.363
102.043
103.739
104.848
104.752
102.945
99.1365
93.303
85.6752
76.684
66.8764
56.8267
47.0592
37.9942
29.921
22.9958
17.257
12.6519
9.06646
6.35353
4.35587
2.92271
1.91996
1.23513
0.778334
0.480432
0.290712
0.172006
0.100391
0.0560336
0.033187
0.0143746
100
100
99.9999
100
100
100
99.9999
100
100
100
99.9998
99.9999
100
100
99.9999
99.9998
100
100
100
99.9998
99.9998
100
100
100
100
99.9997
99.9997
100
100.001
100.001
99.9997
99.9987
99.999
100.001
100.003
100.001
99.9975
99.9954
99.9985
100.005
100.008
100.002
99.9911
99.9854
99.9943
100.014
100.026
100.016
99.9842
99.9547
99.9573
100.003
100.066
100.097
100.057
99.9496
99.8351
99.7995
99.902
100.125
100.366
100.47
100.317
99.8888
99.3135
98.84
98.7541
99.2653
100.405
101.972
103.548
104.575
104.471
102.753
99.1311
93.5602
86.2353
77.5458
68.0003
58.1446
48.4878
39.4484
31.3253
24.2912
18.4042
13.6311
9.87446
6.99967
4.85765
3.30175
2.19891
1.43534
0.918684
0.576525
0.355187
0.214137
0.127736
0.0727717
0.0443325
0.0197771
100
100
99.9999
99.9999
100
100
99.9999
99.9998
100
100
99.9999
99.9996
100
100
100
99.9996
99.9995
100
100.001
100
99.9992
99.9994
100.001
100.001
100
99.9987
99.9989
100.001
100.002
100.001
99.9982
99.9974
99.9998
100.003
100.003
99.9995
99.9948
99.995
100.001
100.008
100.008
99.9984
99.9871
99.986
99.9998
100.019
100.026
100.009
99.9762
99.9531
99.9652
100.015
100.072
100.091
100.04
99.9337
99.8333
99.8169
99.9304
100.147
100.363
100.439
100.269
99.8493
99.309
98.8835
98.8364
99.3553
100.46
101.955
103.442
104.394
104.259
102.575
99.06
93.6597
86.5473
78.0829
68.7455
59.0568
49.5101
40.5184
32.384
25.2893
19.3061
14.4155
10.5333
7.53566
5.28084
3.62665
2.44183
1.61245
1.04479
0.664207
0.414956
0.253787
0.153907
0.0890189
0.055353
0.0252173
100
100
100
99.9999
100
100
99.9999
99.9997
100
100
100
99.9995
99.9997
100.001
100.001
99.9995
99.9992
100
100.001
100
99.9989
99.9989
100.001
100.002
100
99.9981
99.9983
100.001
100.003
100.001
99.9974
99.9963
99.9999
100.005
100.005
99.9988
99.993
99.9942
100.003
100.011
100.009
99.9962
99.984
99.9853
100.003
100.023
100.027
100.005
99.9702
99.9501
99.9688
100.023
100.079
100.089
100.03
99.9211
99.8278
99.8247
99.9491
100.166
100.369
100.424
100.237
99.8166
99.295
98.902
98.8871
99.4213
100.513
101.965
103.391
104.281
104.109
102.429
98.9704
93.6758
86.7065
78.4035
69.2244
59.6711
50.2231
41.2863
33.1625
26.0392
19.9972
15.0277
11.0566
7.96838
5.62796
3.89726
2.64724
1.76442
1.1546
0.741654
0.468525
0.289819
0.178061
0.104206
0.0658274
0.0304733
100
100
100
99.9998
100
100
100
99.9996
100
100.001
100
99.9994
99.9996
100.001
100.001
99.9996
99.9989
100
100.001
100.001
99.9988
99.9986
100.001
100.002
100.001
99.9979
99.9977
100.001
100.003
100.002
99.9971
99.9955
99.9997
100.005
100.005
99.9986
99.9918
99.9932
100.003
100.012
100.01
99.9952
99.9818
99.9841
100.004
100.026
100.029
100.004
99.9662
99.947
99.9698
100.028
100.084
100.09
100.024
99.9121
99.8216
99.8269
99.9602
100.18
100.377
100.418
100.218
99.7922
99.2788
98.9061
98.9152
99.4659
100.556
101.986
103.372
104.218
104.01
102.32
98.8861
93.6525
86.7749
78.5824
69.5179
60.0688
50.7028
41.8187
33.7159
26.5843
20.5095
15.4898
11.4583
8.30597
5.90294
4.11483
2.81477
1.89012
1.24667
0.807474
0.51468
0.321263
0.199441
0.117807
0.0753511
0.0353241
100
100
100
99.9998
100
100
100
99.9996
99.9999
100.001
100
99.9994
99.9995
100.001
100.001
99.9996
99.9988
99.9999
100.001
100.001
99.9988
99.9983
100
100.002
100.001
99.9978
99.9974
100.001
100.004
100.002
99.997
99.995
99.9993
100.006
100.006
99.9988
99.9911
99.9924
100.003
100.013
100.011
99.995
99.9805
99.9829
100.004
100.028
100.031
100.004
99.9638
99.9444
99.9694
100.031
100.088
100.092
100.022
99.9064
99.8162
99.8262
99.966
100.19
100.384
100.418
100.208
99.7757
99.2646
98.9034
98.9291
99.4939
100.588
102.007
103.369
104.184
103.948
102.244
98.8177
93.6171
86.7961
78.677
69.6929
60.3208
51.0193
42.1809
34.1021
26.973
20.882
15.8319
11.7605
8.56389
6.11614
4.28591
2.9483
1.99164
1.32201
0.862011
0.553414
0.347966
0.21784
0.129637
0.0837501
0.0396606
100
100
100
99.9998
100
100
100
99.9996
99.9998
100.001
100
99.9994
99.9994
100.001
100.001
99.9997
99.9988
99.9998
100.001
100.001
99.9988
99.9982
100
100.002
100.001
99.9978
99.9972
100.001
100.004
100.002
99.9971
99.9947
99.999
100.006
100.007
99.9991
99.9908
99.9918
100.003
100.014
100.011
99.9951
99.9797
99.982
100.004
100.029
100.032
100.004
99.9626
99.9425
99.9685
100.032
100.091
100.095
100.022
99.903
99.8121
99.8245
99.9686
100.196
100.39
100.42
100.203
99.7653
99.2536
98.8982
98.9345
99.5102
100.611
102.026
103.375
104.169
103.913
102.194
98.7665
93.5817
86.7934
78.7205
69.7902
60.4724
51.2192
42.4177
34.3617
27.2403
21.1435
16.0763
11.9802
8.7543
6.27588
4.4159
3.05115
2.07085
1.38156
0.905648
0.584798
0.369851
0.233116
0.139561
0.0908909
0.043397
100
100
100
99.9998
100
100
100
99.9996
99.9998
100.001
100
99.9995
99.9994
100
100.001
99.9998
99.9988
99.9997
100.001
100.001
99.9989
99.9982
100
100.002
100.001
99.9979
99.9971
100
100.004
100.002
99.9972
99.9945
99.9988
100.006
100.007
99.9993
99.9907
99.9915
100.003
100.014
100.012
99.9953
99.9794
99.9813
100.004
100.03
100.033
100.004
99.962
99.9413
99.9677
100.033
100.093
100.096
100.022
99.9014
99.8094
99.8227
99.9694
100.199
100.395
100.422
100.201
99.7593
99.246
98.8931
98.9357
99.5189
100.625
102.04
103.382
104.164
103.893
102.163
98.7311
93.5528
86.7828
78.7385
69.8434
60.563
51.3446
42.5715
34.5347
27.4226
21.3251
16.2491
12.1378
8.89297
6.39381
4.51312
3.12903
2.13156
1.42774
0.939864
0.609687
0.387387
0.245498
0.147677
0.0968005
0.046525
100
100
100
99.9998
100
100
100
99.9996
99.9998
100.001
100
99.9995
99.9994
100
100.001
99.9998
99.9988
99.9997
100.001
100.001
99.9989
99.9981
100
100.002
100.001
99.998
99.997
100
100.004
100.003
99.9972
99.9945
99.9987
100.006
100.007
99.9995
99.9907
99.9913
100.003
100.014
100.012
99.9956
99.9792
99.9809
100.004
100.03
100.034
100.005
99.9619
99.9406
99.967
100.033
100.093
100.097
100.022
99.9006
99.8076
99.8211
99.9693
100.201
100.398
100.424
100.201
99.7561
99.241
98.8888
98.9347
99.523
100.633
102.05
103.389
104.164
103.883
102.145
98.7076
93.5307
86.7697
78.7417
69.8685
60.6126
51.4182
42.6658
34.6444
27.5411
21.4459
16.3662
12.2466
8.99022
6.47776
4.58332
3.18604
2.17658
1.4624
0.965865
0.628835
0.401028
0.255253
0.154136
0.101564
0.0490793
100
100
100
99.9998
100
100
100
99.9996
99.9998
100
100
99.9995
99.9994
100
100.001
99.9998
99.9988
99.9997
100.001
100.001
99.999
99.9981
100
100.002
100.001
99.998
99.997
100
100.004
100.003
99.9973
99.9945
99.9986
100.006
100.007
99.9996
99.9908
99.9912
100.003
100.014
100.012
99.9957
99.9792
99.9807
100.003
100.03
100.034
100.005
99.9619
99.9402
99.9665
100.032
100.094
100.098
100.023
99.9003
99.8067
99.82
99.9689
100.202
100.399
100.426
100.201
99.7547
99.238
98.8857
98.9334
99.5247
100.638
102.056
103.394
104.165
103.879
102.134
98.693
93.5157
86.7592
78.7407
69.881
60.6409
51.4628
42.725
34.715
27.619
21.5267
16.4458
12.3216
9.05809
6.53707
4.63347
3.22721
2.20942
1.48795
0.985206
0.643212
0.411356
0.262709
0.159107
0.105264
0.0510814
100
100
100
99.9998
100
100
100
99.9996
99.9998
100
100
99.9995
99.9994
100
100.001
99.9999
99.9988
99.9996
100.001
100.001
99.999
99.9982
100
100.002
100.001
99.998
99.997
100
100.004
100.003
99.9974
99.9945
99.9985
100.006
100.007
99.9997
99.9908
99.9911
100.002
100.014
100.012
99.9959
99.9792
99.9806
100.003
100.03
100.034
100.005
99.962
99.94
99.9661
100.032
100.094
100.099
100.023
99.9004
99.8061
99.8192
99.9684
100.202
100.4
100.427
100.202
99.7541
99.2363
98.8835
98.9319
99.525
100.64
102.06
103.398
104.168
103.878
102.129
98.6842
93.5054
86.7503
78.7364
69.8842
60.6539
51.4862
42.7584
34.7567
27.6666
21.5775
16.497
12.3709
9.10356
6.57749
4.66821
3.25616
2.23285
1.50644
0.999391
0.653904
0.419132
0.268403
0.162945
0.108163
0.0526735
100
100
100
99.9998
100
100
100
99.9996
99.9998
100
100
99.9995
99.9994
100
100.001
99.9999
99.9988
99.9996
100.001
100.001
99.999
99.9982
100
100.002
100.001
99.9981
99.997
100
100.004
100.003
99.9974
99.9945
99.9985
100.006
100.007
99.9997
99.9909
99.9911
100.002
100.014
100.012
99.996
99.9793
99.9805
100.003
100.03
100.034
100.006
99.9621
99.9399
99.9659
100.032
100.094
100.099
100.024
99.9005
99.8059
99.8188
99.9681
100.202
100.401
100.428
100.203
99.754
99.2355
98.8823
98.9309
99.5249
100.641
102.063
103.401
104.169
103.878
102.126
98.6793
93.4994
86.7449
78.7336
69.8861
60.6616
51.5006
42.7792
34.7831
27.6972
21.6104
16.5305
12.4034
9.13377
6.60454
4.69162
3.27579
2.24884
1.51913
1.00917
0.661315
0.424546
0.272385
0.16564
0.110206
0.0537996
100
100
100
99.9998
100
100
100
99.9996
99.9998
100
100
99.9995
99.9994
100
100.001
99.9999
99.9988
99.9996
100.001
100.001
99.999
99.9982
100
100.002
100.001
99.9981
99.997
100
100.004
100.003
99.9974
99.9945
99.9985
100.006
100.007
99.9997
99.9909
99.9911
100.002
100.014
100.012
99.996
99.9793
99.9805
100.003
100.03
100.034
100.006
99.9621
99.9399
99.9658
100.032
100.094
100.099
100.024
99.9006
99.8058
99.8185
99.9678
100.202
100.401
100.429
100.203
99.7541
99.235
98.8814
98.93
99.5245
100.642
102.064
103.403
104.171
103.878
102.125
98.6766
93.4953
86.7403
78.7299
69.8845
60.6634
51.5064
42.7894
34.7974
27.7147
21.6303
16.5515
12.4244
9.15389
6.62303
4.70799
3.28984
2.26051
1.52858
1.0166
0.667054
0.42881
0.275586
0.167837
0.111908
0.0547568
100
100
100
99.9998
100
100
100
99.9996
99.9998
100
100
99.9995
99.9994
100
100.001
99.9999
99.9988
99.9996
100.001
100.001
99.999
99.9982
100
100.002
100.001
99.9981
99.997
100
100.004
100.003
99.9974
99.9945
99.9985
100.005
100.007
99.9997
99.9909
99.9911
100.002
100.014
100.012
99.996
99.9794
99.9805
100.003
100.03
100.034
100.006
99.9622
99.9399
99.9658
100.032
100.094
100.099
100.024
99.9006
99.8058
99.8184
99.9676
100.202
100.401
100.429
100.203
99.7542
99.2349
98.8811
98.9296
99.5243
100.642
102.065
103.403
104.172
103.878
102.125
98.6753
93.4935
86.7385
78.7287
69.8847
60.6655
51.5108
42.7961
34.8061
27.7251
21.6418
16.5635
12.4363
9.16514
6.63328
4.71701
3.29751
2.26685
1.53368
1.02059
0.670115
0.431073
0.277272
0.168991
0.112792
0.0552517
100
100
100
99.9998
100
100
100
99.9996
99.9998
100
100
99.9995
99.9994
100
100.001
99.9999
99.9988
99.9997
100.001
100.001
99.999
99.9982
100
100.002
100.001
99.9981
99.9971
100
100.004
100.003
99.9974
99.9945
99.9985
100.005
100.007
99.9997
99.9909
99.9911
100.002
100.014
100.012
99.996
99.9794
99.9805
100.003
100.03
100.034
100.006
99.9622
99.9399
99.9658
100.032
100.094
100.099
100.024
99.9007
99.8058
99.8183
99.9675
100.202
100.401
100.429
100.203
99.7544
99.2348
98.8808
98.9292
99.524
100.642
102.065
103.404
104.172
103.879
102.125
98.6746
93.4921
86.7368
78.7272
69.8839
60.6661
51.5133
42.8007
34.8129
27.7338
21.6519
16.5745
12.4476
9.17623
6.64371
4.72645
3.30579
2.27387
1.53948
1.02523
0.673772
0.433834
0.279386
0.170463
0.113954
0.0559175
)
;
boundaryField
{
left
{
type fixedValue;
value uniform 100;
}
right
{
type zeroGradient;
}
up
{
type zeroGradient;
}
down
{
type fixedValue;
value uniform 0;
}
frontAndBack
{
type empty;
}
}
// ************************************************************************* //
| [
"tbindas@pop-os.localdomain"
] | tbindas@pop-os.localdomain | |
2a654f1d4c569aabff3a27eb64ff3b2cc1029eff | 80c95987063d26ff71ecd019256774581754947d | /test/cctest/compiler/test-multiple-return.cc | a5a8b0a6ac8a9fdeaf978de9951aee00466ac092 | [
"BSD-3-Clause",
"bzip2-1.0.6",
"SunPro"
] | permissive | AquariusBrowser/v8 | 4adfdbc34e4d0e11d3f120ff43cb3878445dc1d0 | 460af931236c99f7df65c579e0d06996b32c44a2 | refs/heads/master | 2021-08-31T17:49:21.919696 | 2017-12-21T20:23:12 | 2017-12-21T22:05:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 18,054 | cc | // Copyright 2014 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 <cmath>
#include <functional>
#include <limits>
#include <memory>
#include "src/assembler.h"
#include "src/base/bits.h"
#include "src/base/utils/random-number-generator.h"
#include "src/codegen.h"
#include "src/compiler.h"
#include "src/compiler/linkage.h"
#include "src/machine-type.h"
#include "src/macro-assembler.h"
#include "src/objects-inl.h"
#include "test/cctest/cctest.h"
#include "test/cctest/compiler/codegen-tester.h"
#include "test/cctest/compiler/value-helper.h"
namespace v8 {
namespace internal {
namespace compiler {
namespace {
int index(MachineType type) { return static_cast<int>(type.representation()); }
int size(MachineType type) {
return 1 << ElementSizeLog2Of(type.representation());
}
bool is_float(MachineType type) {
MachineRepresentation rep = type.representation();
return rep == MachineRepresentation::kFloat32 ||
rep == MachineRepresentation::kFloat64;
}
int num_registers(MachineType type) {
const RegisterConfiguration* config = RegisterConfiguration::Default();
switch (type.representation()) {
case MachineRepresentation::kWord32:
case MachineRepresentation::kWord64:
return config->num_allocatable_general_registers();
case MachineRepresentation::kFloat32:
return config->num_allocatable_float_registers();
case MachineRepresentation::kFloat64:
return config->num_allocatable_double_registers();
default:
UNREACHABLE();
}
}
const int* codes(MachineType type) {
const RegisterConfiguration* config = RegisterConfiguration::Default();
switch (type.representation()) {
case MachineRepresentation::kWord32:
case MachineRepresentation::kWord64:
return config->allocatable_general_codes();
case MachineRepresentation::kFloat32:
return config->allocatable_float_codes();
case MachineRepresentation::kFloat64:
return config->allocatable_double_codes();
default:
UNREACHABLE();
}
}
CallDescriptor* CreateMonoCallDescriptor(Zone* zone, int return_count,
int param_count, MachineType type) {
LocationSignature::Builder locations(zone, return_count, param_count);
int span = std::max(1, size(type) / kPointerSize);
int stack_params = 0;
for (int i = 0; i < param_count; i++) {
LinkageLocation location = LinkageLocation::ForAnyRegister();
if (i < num_registers(type)) {
location = LinkageLocation::ForRegister(codes(type)[i], type);
} else {
int slot = span * (i - param_count);
location = LinkageLocation::ForCallerFrameSlot(slot, type);
stack_params += span;
}
locations.AddParam(location);
}
int stack_returns = 0;
for (int i = 0; i < return_count; i++) {
LinkageLocation location = LinkageLocation::ForAnyRegister();
if (i < num_registers(type)) {
location = LinkageLocation::ForRegister(codes(type)[i], type);
} else {
int slot = span * (num_registers(type) - i) - stack_params - 1;
location = LinkageLocation::ForCallerFrameSlot(slot, type);
stack_returns += span;
}
locations.AddReturn(location);
}
const RegList kCalleeSaveRegisters = 0;
const RegList kCalleeSaveFPRegisters = 0;
MachineType target_type = MachineType::AnyTagged();
LinkageLocation target_loc = LinkageLocation::ForAnyRegister(target_type);
return new (zone) CallDescriptor( // --
CallDescriptor::kCallCodeObject, // kind
target_type, // target MachineType
target_loc, // target location
locations.Build(), // location_sig
stack_params, // on-stack parameter count
compiler::Operator::kNoProperties, // properties
kCalleeSaveRegisters, // callee-saved registers
kCalleeSaveFPRegisters, // callee-saved fp regs
CallDescriptor::kNoFlags, // flags
"c-call", // debug name
0, // allocatable registers
stack_returns); // on-stack return count
}
MachineType RandomType(v8::base::RandomNumberGenerator* rng) {
switch (rng->NextInt(4)) {
case 0:
#if (!V8_TARGET_ARCH_32_BIT)
return MachineType::Int64();
// Else fall through.
#endif
case 1:
return MachineType::Int32();
case 2:
return MachineType::Float32();
case 3:
return MachineType::Float64();
default:
UNREACHABLE();
}
}
LinkageLocation alloc(MachineType type, int* int_count, int* float_count,
int* stack_slots) {
int* count = is_float(type) ? float_count : int_count;
LinkageLocation location = LinkageLocation::ForAnyRegister(); // Dummy.
if (*count < num_registers(type)) {
location = LinkageLocation::ForRegister(codes(type)[*count], type);
} else {
location = LinkageLocation::ForCallerFrameSlot(-*stack_slots - 1, type);
*stack_slots += std::max(1, size(type) / kPointerSize);
}
++*count;
return location;
}
CallDescriptor* CreateRandomCallDescriptor(
Zone* zone, int return_count, int param_count,
v8::base::RandomNumberGenerator* rng) {
LocationSignature::Builder locations(zone, return_count, param_count);
int stack_slots = 0;
int int_params = 0;
int float_params = 0;
for (int i = 0; i < param_count; i++) {
MachineType type = RandomType(rng);
LinkageLocation location =
alloc(type, &int_params, &float_params, &stack_slots);
locations.AddParam(location);
}
int stack_params = stack_slots;
int int_returns = 0;
int float_returns = 0;
for (int i = 0; i < return_count; i++) {
MachineType type = RandomType(rng);
LinkageLocation location =
alloc(type, &int_returns, &float_returns, &stack_slots);
locations.AddReturn(location);
}
int stack_returns = stack_slots - stack_params;
MachineType target_type = MachineType::AnyTagged();
LinkageLocation target_loc = LinkageLocation::ForAnyRegister(target_type);
return new (zone) CallDescriptor( // --
CallDescriptor::kCallCodeObject, // kind
target_type, // target MachineType
target_loc, // target location
locations.Build(), // location_sig
stack_params, // on-stack parameter count
compiler::Operator::kNoProperties, // properties
0, // callee-saved registers
0, // callee-saved fp regs
CallDescriptor::kNoFlags, // flags
"c-call", // debug name
0, // allocatable registers
stack_returns); // on-stack return count
}
} // namespace
Node* Constant(RawMachineAssembler& m, MachineType type, int value) {
switch (type.representation()) {
case MachineRepresentation::kWord32:
return m.Int32Constant(static_cast<int32_t>(value));
case MachineRepresentation::kWord64:
return m.Int64Constant(static_cast<int64_t>(value));
case MachineRepresentation::kFloat32:
return m.Float32Constant(static_cast<float>(value));
case MachineRepresentation::kFloat64:
return m.Float64Constant(static_cast<double>(value));
default:
UNREACHABLE();
}
}
Node* Add(RawMachineAssembler& m, MachineType type, Node* a, Node* b) {
switch (type.representation()) {
case MachineRepresentation::kWord32:
return m.Int32Add(a, b);
case MachineRepresentation::kWord64:
return m.Int64Add(a, b);
case MachineRepresentation::kFloat32:
return m.Float32Add(a, b);
case MachineRepresentation::kFloat64:
return m.Float64Add(a, b);
default:
UNREACHABLE();
}
}
Node* Sub(RawMachineAssembler& m, MachineType type, Node* a, Node* b) {
switch (type.representation()) {
case MachineRepresentation::kWord32:
return m.Int32Sub(a, b);
case MachineRepresentation::kWord64:
return m.Int64Sub(a, b);
case MachineRepresentation::kFloat32:
return m.Float32Sub(a, b);
case MachineRepresentation::kFloat64:
return m.Float64Sub(a, b);
default:
UNREACHABLE();
}
}
Node* Mul(RawMachineAssembler& m, MachineType type, Node* a, Node* b) {
switch (type.representation()) {
case MachineRepresentation::kWord32:
return m.Int32Mul(a, b);
case MachineRepresentation::kWord64:
return m.Int64Mul(a, b);
case MachineRepresentation::kFloat32:
return m.Float32Mul(a, b);
case MachineRepresentation::kFloat64:
return m.Float64Mul(a, b);
default:
UNREACHABLE();
}
}
Node* ToInt32(RawMachineAssembler& m, MachineType type, Node* a) {
switch (type.representation()) {
case MachineRepresentation::kWord32:
return a;
case MachineRepresentation::kWord64:
return m.TruncateInt64ToInt32(a);
case MachineRepresentation::kFloat32:
return m.TruncateFloat32ToInt32(a);
case MachineRepresentation::kFloat64:
return m.RoundFloat64ToInt32(a);
default:
UNREACHABLE();
}
}
void TestReturnMultipleValues(MachineType type) {
const int kMaxCount = 20;
for (int count = 0; count < kMaxCount; ++count) {
printf("\n==== type = %s, count = %d ====\n\n\n",
MachineReprToString(type.representation()), count);
v8::internal::AccountingAllocator allocator;
Zone zone(&allocator, ZONE_NAME);
CallDescriptor* desc = CreateMonoCallDescriptor(&zone, count, 2, type);
HandleAndZoneScope handles;
RawMachineAssembler m(handles.main_isolate(),
new (handles.main_zone()) Graph(handles.main_zone()),
desc, MachineType::PointerRepresentation(),
InstructionSelector::SupportedMachineOperatorFlags());
Node* p0 = m.Parameter(0);
Node* p1 = m.Parameter(1);
typedef Node* Node_ptr;
std::unique_ptr<Node_ptr[]> returns(new Node_ptr[count]);
for (int i = 0; i < count; ++i) {
if (i % 3 == 0) returns[i] = Add(m, type, p0, p1);
if (i % 3 == 1) returns[i] = Sub(m, type, p0, p1);
if (i % 3 == 2) returns[i] = Mul(m, type, p0, p1);
}
m.Return(count, returns.get());
CompilationInfo info(ArrayVector("testing"), handles.main_zone(),
Code::STUB);
Handle<Code> code = Pipeline::GenerateCodeForTesting(
&info, handles.main_isolate(), desc, m.graph(), m.Export());
#ifdef ENABLE_DISASSEMBLER
if (FLAG_print_code) {
OFStream os(stdout);
code->Disassemble("multi_value", os);
}
#endif
const int a = 47, b = 12;
int expect = 0;
for (int i = 0, sign = +1; i < count; ++i) {
if (i % 3 == 0) expect += sign * (a + b);
if (i % 3 == 1) expect += sign * (a - b);
if (i % 3 == 2) expect += sign * (a * b);
if (i % 4 == 0) sign = -sign;
}
RawMachineAssemblerTester<int32_t> mt;
Node* na = Constant(mt, type, a);
Node* nb = Constant(mt, type, b);
Node* ret_multi =
mt.AddNode(mt.common()->Call(desc), mt.HeapConstant(code), na, nb);
Node* ret = Constant(mt, type, 0);
bool sign = false;
for (int i = 0; i < count; ++i) {
Node* x = (count == 1)
? ret_multi
: mt.AddNode(mt.common()->Projection(i), ret_multi);
ret = sign ? Sub(mt, type, ret, x) : Add(mt, type, ret, x);
if (i % 4 == 0) sign = !sign;
}
mt.Return(ToInt32(mt, type, ret));
#ifdef ENABLE_DISASSEMBLER
Handle<Code> code2 = mt.GetCode();
if (FLAG_print_code) {
OFStream os(stdout);
code2->Disassemble("multi_value_call", os);
}
#endif
CHECK_EQ(expect, mt.Call());
}
}
#define TEST_MULTI(Type, type) \
TEST(ReturnMultiple##Type) { TestReturnMultipleValues(type); }
TEST_MULTI(Int32, MachineType::Int32())
#if (!V8_TARGET_ARCH_32_BIT)
TEST_MULTI(Int64, MachineType::Int64())
#endif
TEST_MULTI(Float32, MachineType::Float32())
TEST_MULTI(Float64, MachineType::Float64())
#undef TEST_MULTI
TEST(ReturnMultipleRandom) {
// TODO(titzer): Test without RNG?
v8::base::RandomNumberGenerator* rng(CcTest::random_number_generator());
const int kNumberOfRuns = 10;
for (int run = 0; run < kNumberOfRuns; ++run) {
printf("\n==== Run %d ====\n\n", run);
v8::internal::AccountingAllocator allocator;
Zone zone(&allocator, ZONE_NAME);
// Create randomized descriptor.
int param_count = rng->NextInt(20);
int return_count = rng->NextInt(10);
CallDescriptor* desc =
CreateRandomCallDescriptor(&zone, return_count, param_count, rng);
printf("[");
for (size_t j = 0; j < desc->ParameterCount(); ++j) {
printf(" %s",
MachineReprToString(desc->GetParameterType(j).representation()));
}
printf(" ] -> [");
for (size_t j = 0; j < desc->ReturnCount(); ++j) {
printf(" %s",
MachineReprToString(desc->GetReturnType(j).representation()));
}
printf(" ]\n\n");
// Count parameters of each type.
const size_t num_types =
static_cast<size_t>(MachineRepresentation::kLastRepresentation) + 1;
std::unique_ptr<int[]> counts(new int[num_types]);
for (size_t i = 0; i < num_types; ++i) {
counts[i] = 0;
}
for (size_t i = 0; i < desc->ParameterCount(); ++i) {
++counts[index(desc->GetParameterType(i))];
}
// Generate random inputs.
std::unique_ptr<int[]> inputs(new int[desc->ParameterCount()]);
std::unique_ptr<int[]> outputs(new int[desc->ReturnCount()]);
for (size_t i = 0; i < desc->ParameterCount(); ++i) {
inputs[i] = rng->NextInt(10000);
}
HandleAndZoneScope handles;
RawMachineAssembler m(handles.main_isolate(),
new (handles.main_zone()) Graph(handles.main_zone()),
desc, MachineType::PointerRepresentation(),
InstructionSelector::SupportedMachineOperatorFlags());
// Generate Callee, returning random picks of its parameters.
typedef Node* Node_ptr;
std::unique_ptr<Node_ptr[]> params(
new Node_ptr[desc->ParameterCount() + 1]);
std::unique_ptr<Node_ptr[]> returns(new Node_ptr[desc->ReturnCount()]);
for (size_t i = 0; i < desc->ParameterCount(); ++i) {
params[i] = m.Parameter(i);
}
for (size_t i = 0; i < desc->ReturnCount(); ++i) {
MachineType type = desc->GetReturnType(i);
// Find a random same-type parameter to return. Use a constant if none.
if (counts[index(type)] == 0) {
returns[i] = Constant(m, type, 42);
outputs[i] = 42;
} else {
int n = rng->NextInt(counts[index(type)]);
int k;
for (k = 0;; ++k) {
if (desc->GetParameterType(k) == desc->GetReturnType(i) && --n < 0) {
break;
}
}
returns[i] = params[k];
outputs[i] = inputs[k];
}
}
m.Return(static_cast<int>(desc->ReturnCount()), returns.get());
CompilationInfo info(ArrayVector("testing"), handles.main_zone(),
Code::STUB);
Handle<Code> code = Pipeline::GenerateCodeForTesting(
&info, handles.main_isolate(), desc, m.graph(), m.Export());
#ifdef ENABLE_DISASSEMBLER
if (FLAG_print_code) {
OFStream os(stdout);
code->Disassemble("multi_value", os);
}
#endif
// Generate caller.
int expect = 0;
RawMachineAssemblerTester<int32_t> mt;
params[0] = mt.HeapConstant(code);
for (size_t i = 0; i < desc->ParameterCount(); ++i) {
params[i + 1] = Constant(mt, desc->GetParameterType(i), inputs[i]);
}
Node* ret_multi =
mt.AddNode(mt.common()->Call(desc),
static_cast<int>(desc->ParameterCount() + 1), params.get());
Node* ret = Constant(mt, MachineType::Int32(), 0);
for (size_t i = 0; i < desc->ReturnCount(); ++i) {
if (rng->NextInt(3) == 0) continue; // Skip random outputs.
Node* x = (desc->ReturnCount() == 1)
? ret_multi
: mt.AddNode(mt.common()->Projection(i), ret_multi);
ret = mt.Int32Add(ret, ToInt32(mt, desc->GetReturnType(i), x));
expect += outputs[i];
}
mt.Return(ret);
#ifdef ENABLE_DISASSEMBLER
Handle<Code> code2 = mt.GetCode();
if (FLAG_print_code) {
OFStream os(stdout);
code2->Disassemble("multi_value_call", os);
}
#endif
CHECK_EQ(expect, mt.Call());
}
}
TEST(ReturnLastValue) {
v8::internal::AccountingAllocator allocator;
Zone zone(&allocator, ZONE_NAME);
// Let 2 returns be on the stack.
const int return_count = num_registers(MachineType::Int32()) + 2;
CallDescriptor* desc =
CreateMonoCallDescriptor(&zone, return_count, 0, MachineType::Int32());
HandleAndZoneScope handles;
RawMachineAssembler m(handles.main_isolate(),
new (handles.main_zone()) Graph(handles.main_zone()),
desc, MachineType::PointerRepresentation(),
InstructionSelector::SupportedMachineOperatorFlags());
std::unique_ptr<Node* []> returns(new Node*[return_count]);
for (int i = 0; i < return_count; ++i) {
returns[i] = m.Int32Constant(i);
}
m.Return(return_count, returns.get());
CompilationInfo info(ArrayVector("testing"), handles.main_zone(), Code::STUB);
Handle<Code> code = Pipeline::GenerateCodeForTesting(
&info, handles.main_isolate(), desc, m.graph(), m.Export());
// Generate caller.
int expect = return_count - 1;
RawMachineAssemblerTester<int32_t> mt;
Node* code_node = mt.HeapConstant(code);
Node* call = mt.AddNode(mt.common()->Call(desc), 1, &code_node);
mt.Return(mt.AddNode(mt.common()->Projection(return_count - 1), call));
CHECK_EQ(expect, mt.Call());
}
} // namespace compiler
} // namespace internal
} // namespace v8
| [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
fb915e0623ee853658dfc3726bb6efe484723ef8 | f0df022c4ea84e9edb194b2c7188a42f85cdedae | /GeneratedFiles/Debug/moc_TestForm.cpp | 5f07a0303ebe301b09de6e4554a38e91e6823e77 | [] | no_license | Leroy888/String-chuzhLeye | 399a639e5588137d9e78048e0c622d5b1e84d17b | c1c585515283f5c24216ff67574d8969505cb648 | refs/heads/master | 2020-07-03T23:27:11.797006 | 2019-08-15T14:40:12 | 2019-08-15T14:40:12 | 202,084,857 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,576 | cpp | /****************************************************************************
** Meta object code from reading C++ file 'TestForm.h'
**
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.8.0)
**
** WARNING! All changes made in this file will be lost!
*****************************************************************************/
#include "../../View/TestForm.h"
#include <QtCore/qbytearray.h>
#include <QtCore/qmetatype.h>
#if !defined(Q_MOC_OUTPUT_REVISION)
#error "The header file 'TestForm.h' doesn't include <QObject>."
#elif Q_MOC_OUTPUT_REVISION != 67
#error "This file was generated using the moc from 5.8.0. It"
#error "cannot be used with the include files from this version of Qt."
#error "(The moc has changed too much.)"
#endif
QT_BEGIN_MOC_NAMESPACE
QT_WARNING_PUSH
QT_WARNING_DISABLE_DEPRECATED
struct qt_meta_stringdata_TestForm_t {
QByteArrayData data[5];
char stringdata0[36];
};
#define QT_MOC_LITERAL(idx, ofs, len) \
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
qptrdiff(offsetof(qt_meta_stringdata_TestForm_t, stringdata0) + ofs \
- idx * sizeof(QByteArrayData)) \
)
static const qt_meta_stringdata_TestForm_t qt_meta_stringdata_TestForm = {
{
QT_MOC_LITERAL(0, 0, 8), // "TestForm"
QT_MOC_LITERAL(1, 9, 9), // "OnClicked"
QT_MOC_LITERAL(2, 19, 0), // ""
QT_MOC_LITERAL(3, 20, 4), // "nCmd"
QT_MOC_LITERAL(4, 25, 10) // "OnTimerOut"
},
"TestForm\0OnClicked\0\0nCmd\0OnTimerOut"
};
#undef QT_MOC_LITERAL
static const uint qt_meta_data_TestForm[] = {
// content:
7, // revision
0, // classname
0, 0, // classinfo
2, 14, // methods
0, 0, // properties
0, 0, // enums/sets
0, 0, // constructors
0, // flags
0, // signalCount
// slots: name, argc, parameters, tag, flags
1, 1, 24, 2, 0x08 /* Private */,
4, 0, 27, 2, 0x08 /* Private */,
// slots: parameters
QMetaType::Void, QMetaType::Int, 3,
QMetaType::Void,
0 // eod
};
void TestForm::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
{
if (_c == QMetaObject::InvokeMetaMethod) {
TestForm *_t = static_cast<TestForm *>(_o);
Q_UNUSED(_t)
switch (_id) {
case 0: _t->OnClicked((*reinterpret_cast< int(*)>(_a[1]))); break;
case 1: _t->OnTimerOut(); break;
default: ;
}
}
}
const QMetaObject TestForm::staticMetaObject = {
{ &QWidget::staticMetaObject, qt_meta_stringdata_TestForm.data,
qt_meta_data_TestForm, qt_static_metacall, Q_NULLPTR, Q_NULLPTR}
};
const QMetaObject *TestForm::metaObject() const
{
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
}
void *TestForm::qt_metacast(const char *_clname)
{
if (!_clname) return Q_NULLPTR;
if (!strcmp(_clname, qt_meta_stringdata_TestForm.stringdata0))
return static_cast<void*>(const_cast< TestForm*>(this));
return QWidget::qt_metacast(_clname);
}
int TestForm::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
{
_id = QWidget::qt_metacall(_c, _id, _a);
if (_id < 0)
return _id;
if (_c == QMetaObject::InvokeMetaMethod) {
if (_id < 2)
qt_static_metacall(this, _c, _id, _a);
_id -= 2;
} else if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
if (_id < 2)
*reinterpret_cast<int*>(_a[0]) = -1;
_id -= 2;
}
return _id;
}
QT_WARNING_POP
QT_END_MOC_NAMESPACE
| [
"leroy8li@163.com"
] | leroy8li@163.com |
e3e9181b2cfd1a0f4230da9436f8457a56ad54f4 | bae4e79d035c09e7e9be483140120ab2c821f15a | /Engine/FrameTimer.h | e9fef5d0280137ff8f8828d502e4d4d53e6f749d | [] | no_license | OPsteffOP/Steff-Engine | fcc6d8d2ad3550ba2b701eec6f79906e5bc9bfa7 | ac805b437b522da9a3aca119bdf9e9225019fc76 | refs/heads/main | 2022-12-28T12:12:32.279990 | 2020-10-15T16:08:25 | 2020-10-15T16:08:25 | 304,379,624 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 522 | h | #pragma once
#include "Timer.h"
namespace SteffEngine
{
namespace Timers
{
class FrameTimer : public Timer
{
public:
PLUGIN_API static FrameTimer* GetInstance();
static void Destroy();
PLUGIN_API unsigned int GetFPS() const;
PLUGIN_API float GetElapsedSec() const override;
void SetStartFrame();
void SetEndFrame();
private:
explicit FrameTimer();
static FrameTimer* m_pInstance;
float m_ElapsedSec;
float m_TotalSec;
unsigned int m_Frames;
unsigned int m_FPS;
};
}
} | [
"OPsteffOP@users.noreply.github.com"
] | OPsteffOP@users.noreply.github.com |
7d2f36c3101f88885643574f3882c2500981102b | 35af7dceec7cf3322a28ea5430bc7c581ef27e49 | /friend_1.hpp | 3254a441875d02160f5ed5195ab0a46ef0329050 | [] | no_license | shichen-hong/c_and_cpp_collection | b4694e9bea65b65c318466f09c7f89a1d9d7f51c | 1e0884ae8142613b3f9efe6c873b9624a975bb06 | refs/heads/master | 2020-09-20T12:25:45.064271 | 2020-04-27T11:54:35 | 2020-04-27T11:54:35 | 224,476,285 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 842 | hpp | #ifndef _FRIEND_1
#define _FRIEND_1
#include <iostream>
#include <string>
using namespace std;
class Box
{
private:
double width;
public:
Box() { width = 0; }
double length;
void setWidth(double w);
friend void printWidth(Box myBox);
friend class BoxFriend;
};
void Box::setWidth(double w)
{
width = w;
}
void printWidth(Box myBox)
{
// printWidth is no the memeber function of any class
// It is the friend function of Box, can visit any member of Box
cout << "Width of box : " << myBox.width << endl;
}
/*
BoxFriend is a friend class of Box
it can access any member of Box
*/
class BoxFriend
{
private:
double height;
public:
void showLengthBox(Box b);
};
void BoxFriend::showLengthBox(Box b)
{
cout << "I am friend of box. The width of box is: " << b.width << endl;
}
#endif | [
"vhscincent@gmail.com"
] | vhscincent@gmail.com |
1a0d22fbdc20c00afc210823a69f3447a8312cef | 7ba4680220879c6e4c38b7b9dd6d99dbe61bc915 | /src/HW6/Integral.cpp | 4931521d0189105564e3ca65cce0883752d3fde7 | [] | no_license | truiseco/PHSX815_Week5 | 5a00803e546128c03511a8d86f17c5957b20b6d7 | 48821cf360207189bb265557f6e69f5f731163f1 | refs/heads/master | 2023-03-23T03:30:53.348302 | 2021-03-09T09:11:54 | 2021-03-09T09:11:54 | 344,921,867 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,272 | cpp | /*************************************************************
* @author Triston Ruiseco
* @file Integral.cpp
* @date 03/08/2021
* @brief Implementation file for the Integral class.
*************************************************************/
#include <iostream>
#include "Integral.h"
double Integral::Trapz(std::function<double (double)> f, double a, double b, int i){
double s = 0.0;
double x = a;
double h = (b-a)/(i);
for(int k = 0; k < i; k++){
s += f(x) + f(x+h);
x += h;
}
return 0.5*h*s;
}
double Integral::FourPointGauss(std::function<double (double)> f, double a, double b, int i){
const double x[]={0.33998104358486, 0.86113631159405};
const double w[]={0.65214515486255, 0.34785484513745};
double xm, xr, dx, s = 0.0;
double h = (b-a)/i;
double xlo = a;
double xhi = a + h;
for(int j = 0; j < i; j++){
xm = 0.5*(xhi+xlo);
xr = 0.5*(xhi-xlo);
for(int k = 0; k < 2; k++){
dx = xr*x[k];
s += xr*w[k]*(f(xm+dx) + f(xm-dx));
}
xlo = xhi;
xhi += h;
}
return s;
}
double Integral::SixPointGauss(std::function<double (double)> f, double a, double b, int i){
const double x[]={0.2386191860832, 0.6612093864663, 0.93246951420315};
const double w[]={0.46791393457269, 0.36076157304814, 0.17132449237917};
double xm, xr, dx, s = 0.0;
double h = (b-a)/i;
double xlo = a;
double xhi = a + h;
for(int j = 0; j < i; j++){
xm = 0.5*(xhi+xlo);
xr = 0.5*(xhi-xlo);
for(int k = 0; k < 3; k++){
dx = xr*x[k];
s += xr*w[k]*(f(xm+dx) + f(xm-dx));
}
xlo = xhi;
xhi += h;
}
return s;
}
double Integral::TenPointGauss(std::function<double (double)> f, double a, double b, int i){
static const double x[]={0.1488743389816312,0.4333953941292472,
0.6794095682990244,0.8650633666889845,0.9739065285171717};
static const double w[]={0.2955242247147529,0.2692667193099963,
0.2190863625159821,0.1494513491505806,0.0666713443086881};
double xm, xr, dx, s = 0.0;
double h = (b-a)/i;
double xlo = a;
double xhi = a + h;
for(int j = 0; j < i; j++){
xm = 0.5*(xhi+xlo);
xr = 0.5*(xhi-xlo);
for (int k=0;k<5;k++) {
dx = xr*x[k];
s += xr*w[k]*(f(xm+dx) + f(xm-dx));
}
xlo = xhi;
xhi += h;
}
return s;
}
| [
"triston@ku.edu"
] | triston@ku.edu |
42e167df56446ab5bd8169af63269fa6921d25a3 | df56c3d9f44132d636c0cef1b70e40034ff09022 | /networkprotocols/iphook/inhook6/include/in6_event.h | c24f6db2f7ec55083d98a53a225c772e85e9878f | [] | no_license | SymbianSource/oss.FCL.sf.os.networkingsrv | e6317d7ee0ebae163572127269c6cf40b98e3e1c | b283ce17f27f4a95f37cdb38c6ce79d38ae6ebf9 | refs/heads/master | 2021-01-12T11:29:50.765762 | 2010-10-14T06:50:50 | 2010-10-14T06:50:50 | 72,938,071 | 4 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 3,813 | h | // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
// under the terms of "Eclipse Public License v1.0"
// which accompanies this distribution, and is available
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
//
// Initial Contributors:
// Nokia Corporation - initial contribution.
//
// Contributors:
//
// Description:
// in6_event.h - Interface definitions for Event managers and event listeners
// Interface definitions for Event managers and event listeners
//
/**
@file in6_event.h
@publishedPartner
@released
*/
#ifndef __IN6_EVENT_H__
#define __IN6_EVENT_H__
#include <e32base.h>
#include "apibase.h"
/**
* \brief Interace for event listeners to implement.
*
* Event listeners register to receive notifications in selected event classes. If a event belonging
* to the given class occurs, Notify method for all registered listeners is called by the event manager.
*
* @publishedPartner
* @released
*/
class MEventListener : public MInetBase
{
public:
/**
* \brief Called when an event occurs (i.e. someone calls Notify in MEventService class)
*
* @param aEventClass Event class code
* @param aEventType Event type, specific to the given event class
* @param aData Event type specific data.
*/
virtual void Notify(TUint aEventClass, TUint aEventType, const void *aData) = 0;
};
/**
* \brief Interface to the service provided by the event managers.
*
* Event Managers distribute the event notifications to the registered listeners.
*
* @publishedPartner
* @released
*/
class MEventService : public MInetBase
{
public:
virtual ~MEventService() {}
/**
* \brief A factory method for creating a new event manager
*
* @param aNumClasses Number of event classes handled by the new manager.
*
* @return Pointer to the created event manager instance.
*/
IMPORT_C static MEventService *CreateEventManager(TUint aNumClasses);
/**
* \brief Registers a listener to get notifications of given event class.
*
* If a listener wants to register for several event classes, this method needs to be called
* a multiple times.
*
* @param aListener Pointer to listener instance
* @param aEventClass Event class for which notifications are to be sent.
*
* @return Error code or KErrNone if registeration was succesful.
*/
virtual TInt RegisterListener(MEventListener *aListener, TUint aEventClass) = 0;
/**
* \brief Unregisters a listener.
*
* @param aListener Pointer to listener instance to be unregistered
* @param aEventClass Event class which is unregistered. If the listener was registered to
* other event classes, it remains registered there. If this parameter is
* omitted or 0 is given, then the listener is unregistered from all event
* classes (useful for cleanup).
*
* @return Error code or KErrNone if unregisteration was succesful.
*/
virtual TInt RemoveListener(MEventListener *aListener, TUint aEventClass = 0) = 0;
/**
* \brief Notifies all registered listeners about an event.
*
* @param aEventClass event class, determines which listeners are notified.
* @param aEventType event type code, specific for given class.
* @param aData Event type specific data. The data is passed to all notified listeners.
*/
virtual void Notify(TUint aEventClass, TUint aEventType, const void *aData) = 0;
/**
* \brief Check if there are any listeners for given event class.
*
* @param aEventClass event class to be checked for listeners.
*
* @return ETrue if the listeners list is empty. EFalse if there are listeners registered
* for this event class.
*/
virtual TBool IsEmpty(TUint aEventClass) = 0;
};
const TUint KApiVer_MEventService = 1;
#endif // __IN6_EVENT_H__
| [
"kirill.dremov@nokia.com"
] | kirill.dremov@nokia.com |
3fba516a6c4f1208de12af32c7324ca92fad8a25 | 3838dae781fe85e12b09accf11857559cf44457f | /src/TVTest/ProgramSearch.h | 393d6c6ad96f7ba40026f3b1ee6bd26c3cc1747e | [] | no_license | JHON303/TVTest | 960bdfaf5aa18174f884500ca7c599d6b1ef7de0 | 37b6406c4e453f94dc05dc1322b3bb3d695bb8d3 | refs/heads/master | 2021-01-17T14:17:11.102311 | 2020-08-20T06:23:33 | 2020-08-20T06:23:33 | 15,474,847 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,412 | h | #ifndef PROGRAM_SEARCH_H
#define PROGRAM_SEARCH_H
#include <vector>
#include <set>
#include <deque>
#include "Dialog.h"
#include "EpgProgramList.h"
#include "RichEditUtil.h"
#include "RegExp.h"
#include "Settings.h"
class CEventSearchServiceList
{
public:
typedef ULONGLONG ServiceKey;
static ServiceKey GetServiceKey(WORD NetworkID,WORD TSID,WORD ServiceID)
{
return ((ULONGLONG)NetworkID<<32) | ((TSID<<16) | ServiceID);
};
static WORD ServiceKey_GetNetworkID(ServiceKey Key)
{
return (WORD)(Key>>32);
}
static WORD ServiceKey_GetTransportStreamID(ServiceKey Key)
{
return (WORD)((Key>>16)&0xFFFF);
}
static WORD ServiceKey_GetServiceID(ServiceKey Key)
{
return (WORD)(Key&0xFFFF);
}
typedef std::set<ServiceKey>::const_iterator Iterator;
void Clear();
bool IsEmpty() const;
size_t GetServiceCount() const;
void Add(ServiceKey Key);
void Add(WORD NetworkID,WORD TSID,WORD ServiceID);
bool IsExists(ServiceKey Key) const;
bool IsExists(WORD NetworkID,WORD TSID,WORD ServiceID) const;
void Combine(const CEventSearchServiceList &List);
Iterator Begin() const;
Iterator End() const;
bool ToString(TVTest::String *pString) const;
bool FromString(LPCTSTR pszString);
private:
static int EncodeServiceKey(ServiceKey Key,LPTSTR pText);
static bool DecodeServiceKey(LPCTSTR pText,size_t Length,ServiceKey *pKey);
std::set<ServiceKey> m_ServiceList;
};
class CEventSearchSettings
{
public:
enum {
MAX_NAME_LENGTH=256,
MAX_KEYWORD_LENGTH=1024
};
struct TimeInfo {
int Hour;
int Minute;
};
enum CAType {
CA_FREE,
CA_CHARGEABLE
};
enum VideoType {
VIDEO_HD,
VIDEO_SD
};
bool fDisabled;
TVTest::String Name;
TVTest::String Keyword;
bool fRegExp;
bool fIgnoreCase;
bool fIgnoreWidth;
bool fGenre;
WORD Genre1;
WORD Genre2[16];
bool fDayOfWeek;
unsigned int DayOfWeekFlags;
bool fTime;
TimeInfo StartTime;
TimeInfo EndTime;
bool fDuration;
unsigned int DurationShortest;
unsigned int DurationLongest;
bool fCA;
CAType CA;
bool fVideo;
VideoType Video;
bool fServiceList;
CEventSearchServiceList ServiceList;
CEventSearchSettings();
void Clear();
bool ToString(TVTest::String *pString) const;
bool FromString(LPCTSTR pszString);
private:
enum {
FLAG_REG_EXP = 0x00000001U,
FLAG_IGNORE_CASE = 0x00000002U,
FLAG_IGNORE_WIDTH = 0x00000004U,
FLAG_GENRE = 0x00000008U,
FLAG_DAY_OF_WEEK = 0x00000010U,
FLAG_TIME = 0x00000020U,
FLAG_DURATION = 0x00000040U,
FLAG_CA = 0x00000080U,
FLAG_VIDEO = 0x00000100U,
FLAG_SERVICE_LIST = 0x00000200U,
FLAG_DISABLED = 0x00000400U
};
static void ParseTime(LPCWSTR pszString,TimeInfo *pTime);
};
class CEventSearchSettingsList
{
public:
CEventSearchSettingsList();
~CEventSearchSettingsList();
void Clear();
size_t GetCount() const;
size_t GetEnabledCount() const;
CEventSearchSettings *Get(size_t Index);
const CEventSearchSettings *Get(size_t Index) const;
CEventSearchSettings *GetByName(LPCTSTR pszName);
const CEventSearchSettings *GetByName(LPCTSTR pszName) const;
bool Add(const CEventSearchSettings &Settings);
bool Erase(size_t Index);
int FindByName(LPCTSTR pszName) const;
bool Load(CSettings &Settings,LPCTSTR pszPrefix);
bool Save(CSettings &Settings,LPCTSTR pszPrefix) const;
private:
std::vector<CEventSearchSettings*> m_List;
};
class CEventSearcher
{
public:
CEventSearcher();
bool InitializeRegExp();
void Finalize();
bool BeginSearch(const CEventSearchSettings &Settings);
bool Match(const CEventInfoData *pEventInfo);
int FindKeyword(LPCTSTR pszText,LPCTSTR pKeyword,int KeywordLength,int *pFoundLength=NULL) const;
const CEventSearchSettings &GetSearchSettings() const { return m_Settings; }
TVTest::CRegExp &GetRegExp() { return m_RegExp; }
private:
CEventSearchSettings m_Settings;
TVTest::CRegExp m_RegExp;
decltype(FindNLSString) *m_pFindNLSString;
bool MatchKeyword(const CEventInfoData *pEventInfo,LPCTSTR pszKeyword) const;
bool MatchRegExp(const CEventInfoData *pEventInfo);
};
class CEventSearchOptions
{
public:
CEventSearchOptions();
bool SetKeywordHistory(const LPTSTR *pKeywordList,int NumKeywords);
int GetKeywordHistoryCount() const;
LPCTSTR GetKeywordHistory(int Index) const;
bool AddKeywordHistory(LPCTSTR pszKeyword);
void ClearKeywordHistory();
int GetMaxKeywordHistory() const { return m_MaxKeywordHistory; }
bool SetMaxKeywordHistory(int Max);
size_t GetSearchSettingsCount() const;
CEventSearchSettings *GetSearchSettings(size_t Index);
const CEventSearchSettings *GetSearchSettings(size_t Index) const;
CEventSearchSettings *GetSearchSettingsByName(LPCTSTR pszName);
const CEventSearchSettings *GetSearchSettingsByName(LPCTSTR pszName) const;
void ClearSearchSettings();
bool AddSearchSettings(const CEventSearchSettings &Settings);
bool DeleteSearchSettings(size_t Index);
int FindSearchSettings(LPCTSTR pszName) const;
bool LoadSearchSettings(CSettings &Settings,LPCTSTR pszPrefix);
bool SaveSearchSettings(CSettings &Settings,LPCTSTR pszPrefix) const;
private:
std::deque<TVTest::String> m_KeywordHistory;
int m_MaxKeywordHistory;
CEventSearchSettingsList m_SettingsList;
};
class CEventSearchSettingsDialog : public CResizableDialog
{
public:
class ABSTRACT_CLASS(CEventHandler)
{
public:
virtual void OnSearch() {}
virtual void OnHighlightResult(bool fHighlight) {}
};
CEventSearchSettingsDialog(CEventSearchOptions &Options);
~CEventSearchSettingsDialog();
// CBasicDialog
bool Create(HWND hwndOwner) override;
// CEventSearchSettingsDialog
bool GetSettings(CEventSearchSettings *pSettings) const;
void SetSettings(const CEventSearchSettings &Settings);
void SetEventHandler(CEventHandler *pEventHandler);
bool BeginSearch();
bool SetKeyword(LPCTSTR pszKeyword);
bool AddToKeywordHistory(LPCTSTR pszKeyword);
void ShowButton(int ID,bool fShow);
void CheckButton(int ID,bool fCheck);
void SetFocus(int ID);
private:
// CBasicDialog
INT_PTR DlgProc(HWND hDlg,UINT uMsg,WPARAM wParam,LPARAM lParam) override;
void GetGenreSettings(CEventSearchSettings *pSettings) const;
void SetGenreStatus();
static LRESULT CALLBACK EditProc(HWND hwnd,UINT uMsg,WPARAM wParam,LPARAM lParam);
static const LPCTSTR m_pszPropName;
CEventSearchSettings m_SearchSettings;
CEventHandler *m_pEventHandler;
CEventSearchOptions &m_Options;
WNDPROC m_pOldEditProc;
bool m_fGenreExpanded[16];
};
class CSearchEventInfo;
class CProgramSearchDialog
: public CResizableDialog
, public CEventSearchSettingsDialog::CEventHandler
{
public:
enum {
MAX_KEYWORD_HISTORY=50,
NUM_COLUMNS=3
};
class CEventHandler
{
public:
CEventHandler();
virtual ~CEventHandler();
bool Search(CEventSearcher *pSearcher);
virtual bool OnSearch() = 0;
virtual void OnEndSearch() {}
virtual bool OnClose() { return true; }
virtual bool OnLDoubleClick(const CEventInfoData *pEventInfo,LPARAM Param) { return false; }
virtual bool OnRButtonClick(const CEventInfoData *pEventInfo,LPARAM Param) { return false; }
virtual void OnHighlightChange(bool fHighlight) {}
friend class CProgramSearchDialog;
protected:
class CProgramSearchDialog *m_pSearchDialog;
CEventSearcher *m_pSearcher;
bool AddSearchResult(const CEventInfoData *pEventInfo,LPCTSTR pszChannelName,LPARAM Param=0);
bool Match(const CEventInfoData *pEventInfo) const;
};
CProgramSearchDialog(CEventSearchOptions &Options);
~CProgramSearchDialog();
bool Create(HWND hwndOwner);
bool SetEventHandler(CEventHandler *pHandler);
int GetColumnWidth(int Index) const;
bool SetColumnWidth(int Index,int Width);
bool Search(LPTSTR pszKeyword);
bool SetHighlightResult(bool fHighlight);
bool GetHighlightResult() const { return m_fHighlightResult; }
bool IsHitEvent(const CEventInfoData *pEventInfo) const;
const CEventSearchOptions &GetOptions() const { return m_Options; }
CEventSearchOptions &GetOptions() { return m_Options; }
private:
CEventHandler *m_pEventHandler;
CEventSearchOptions &m_Options;
CEventSearchSettings m_SearchSettings;
CEventSearcher m_Searcher;
CEventSearchSettingsDialog m_SearchSettingsDialog;
std::map<ULONGLONG,CSearchEventInfo*> m_ResultMap;
bool m_fHighlightResult;
int m_SortColumn;
bool m_fSortDescending;
int m_ColumnWidth[NUM_COLUMNS];
CRichEditUtil m_RichEditUtil;
CHARFORMAT m_InfoTextFormat;
INT_PTR DlgProc(HWND hDlg,UINT uMsg,WPARAM wParam,LPARAM lParam);
bool AddSearchResult(const CEventInfoData *pEventInfo,LPCTSTR pszChannelName,LPARAM Param=0);
void ClearSearchResult();
void SortSearchResult();
int FormatEventTimeText(const CEventInfoData *pEventInfo,LPTSTR pszText,int MaxLength) const;
int FormatEventInfoText(const CEventInfoData *pEventInfo,LPTSTR pszText,int MaxLength) const;
void HighlightKeyword();
bool SearchNextKeyword(LPCTSTR *ppszText,LPCTSTR pKeyword,int KeywordLength,int *pLength) const;
// CEventSearchSettings::CEventHandler
void OnSearch() override;
void OnHighlightResult(bool fHighlight) override;
static int CALLBACK ResultCompareFunc(LPARAM lParam1,LPARAM lParam2,LPARAM lParamSort);
};
#endif
| [
"maki.rxrz@gmail.com"
] | maki.rxrz@gmail.com |
4a30d2c09a173948e004184e23ade01bef30e50d | e649acb68fc5134a3843ef2330e5c2d4070363a8 | /TC_ARG_22/1/C.cpp | 46c899df4e7c94d2bd8737c664c66ec9edfaaf0e | [] | no_license | jesuswr/cp-codes-and-problems | 6483949ce896e59c471f0e0640f5c8b47f482ec3 | 770f3bf004f90015f078d5699d26cde5c33d9a28 | refs/heads/master | 2023-08-08T03:37:36.626572 | 2023-07-24T16:54:02 | 2023-07-24T16:54:02 | 196,292,128 | 1 | 1 | null | 2019-10-09T23:23:43 | 2019-07-11T00:26:10 | C++ | UTF-8 | C++ | false | false | 2,056 | cpp | #include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int,int> ii;
typedef vector<int> vi;
typedef vector<ii> vii;
int dasdas;
#define FOR(i,n,m) for(int i = n; i < (int)m; i++)
#define ROF(i,n,m) for(int i = n; i > (int)m; i--)
#define ms(obj,val) memset(obj,val,sizeof(obj))
#define ri(a) dasdas=scanf("%d", &a)
#define rii(a,b) ri(a), ri(b)
#define lri(a) dasdas=scanf("%lld", &a)
#define lrii(a,b) lri(a), lri(b)
#define all(x) x.begin(),x.end()
#define sz(x) (int)(x).size()
#define pb push_back
#define S second
#define F first
const int INF = 0x3f3f3f3f;
const ll INFLL = 1e18;
const int MOD = 1e9+7;
const int MAXN = 2e5+5;
void fastIO() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
}
int N;
int X[MAXN], Y[MAXN], Z[MAXN];
int ans = 0;
ii inds;
map<ii, ii> MP;
void try_upd(int i) {
if ( min( {X[i], Y[i], Z[i] + MP[ {X[i], Y[i]}].F } ) > ans ){
ans = min( {X[i], Y[i], Z[i] + MP[ {X[i], Y[i]}].F } );
inds = {i, MP[ {X[i], Y[i]}].S };
}
if ( min( {X[i], Z[i], Y[i] + MP[ {X[i], Z[i]}].F } ) > ans ){
ans = min( {X[i], Z[i], Y[i] + MP[ {X[i], Z[i]}].F } );
inds = {i, MP[ {X[i], Z[i]}].S };
}
if ( min( {Y[i], Z[i], X[i] + MP[ {Y[i], Z[i]}].F } ) > ans ){
ans = min( {Y[i], Z[i], X[i] + MP[ {Y[i], Z[i]}].F } );
inds = {i, MP[ {Y[i], Z[i]}].S };
}
}
int main(){
ri(N);
FOR(i,0,N){
rii(X[i], Y[i]), ri(Z[i]);
}
FOR(i,0,N) {
if ( min({X[i], Y[i], Z[i]}) > ans ) {
ans = min({X[i], Y[i], Z[i]});
inds = {i, -1};
}
try_upd(i);
MP[ {X[i], Y[i]} ] = max(MP[ {X[i], Y[i]} ], {Z[i], i});
MP[ {X[i], Z[i]} ] = max(MP[ {X[i], Z[i]} ], {Y[i], i});
MP[ {Y[i], X[i]} ] = max(MP[ {Y[i], X[i]} ], {Z[i], i});
MP[ {Y[i], Z[i]} ] = max(MP[ {Y[i], Z[i]} ], {X[i], i});
MP[ {Z[i], X[i]} ] = max(MP[ {Z[i], X[i]} ], {Y[i], i});
MP[ {Z[i], Y[i]} ] = max(MP[ {Z[i], Y[i]} ], {X[i], i});
}
if (inds.S != -1) cout << 2 << endl;
else cout << 1 << endl;
if (inds.S != -1) cout << inds.F + 1 << " " << inds.S + 1<< endl;
else cout << inds.F + 1 << endl;
return 0;
}
| [
"jesuswahrman@gmail.com"
] | jesuswahrman@gmail.com |
3b5306db4203d9d843a4cf159974ba0eef3c33ae | 88fd9b9e9da6027f425106d025dd2d72df8f4f45 | /smqtapp/api/client/ModelChangePasswordUser.cpp | 4fb4b23be9b3b6931b77de033a3f280e3db67eb8 | [] | no_license | chiphan2008/dfm | a927bb30b692de3346bfa570795ef8382d21aa4e | a76aad4beb1df5ac39371bd931728515981dfe24 | refs/heads/master | 2020-03-30T15:38:33.126668 | 2018-10-03T06:58:51 | 2018-10-03T06:58:51 | 151,372,621 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,991 | cpp | /**
* SMARTBUS API
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
* OpenAPI spec version: 1.0.0
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
#include "ModelChangePasswordUser.h"
#include "SWGHelpers.h"
#include <QJsonDocument>
#include <QJsonArray>
#include <QObject>
#include <QDebug>
namespace api {
ModelChangePasswordUser::ModelChangePasswordUser(QString* json) {
init();
this->fromJson(*json);
}
ModelChangePasswordUser::ModelChangePasswordUser() {
init();
}
ModelChangePasswordUser::~ModelChangePasswordUser() {
this->cleanup();
}
void
ModelChangePasswordUser::init() {
current_password = new QString("");
new_password = new QString("");
confirm_password = new QString("");
}
void
ModelChangePasswordUser::cleanup() {
if(current_password != nullptr) {
delete current_password;
}
if(new_password != nullptr) {
delete new_password;
}
if(confirm_password != nullptr) {
delete confirm_password;
}
}
ModelChangePasswordUser*
ModelChangePasswordUser::fromJson(QString &json) {
QByteArray array (json.toStdString().c_str());
QJsonDocument doc = QJsonDocument::fromJson(array);
QJsonObject jsonObject = doc.object();
this->fromJsonObject(jsonObject);
return this;
}
void
ModelChangePasswordUser::fromJsonObject(QJsonObject &pJson) {
::api::setValue(¤t_password, pJson["current_password"], "QString", "QString");
::api::setValue(&new_password, pJson["new_password"], "QString", "QString");
::api::setValue(&confirm_password, pJson["confirm_password"], "QString", "QString");
}
QString
ModelChangePasswordUser::asJson ()
{
QJsonObject* obj = this->asJsonObject();
QJsonDocument doc(*obj);
QByteArray bytes = doc.toJson();
return QString(bytes);
}
QJsonObject*
ModelChangePasswordUser::asJsonObject() {
QJsonObject* obj = new QJsonObject();
toJsonValue(QString("current_password"), current_password, obj, QString("QString"));
toJsonValue(QString("new_password"), new_password, obj, QString("QString"));
toJsonValue(QString("confirm_password"), confirm_password, obj, QString("QString"));
return obj;
}
QString*
ModelChangePasswordUser::getCurrentPassword() {
return current_password;
}
void
ModelChangePasswordUser::setCurrentPassword(QString* current_password) {
this->current_password = current_password;
}
QString*
ModelChangePasswordUser::getNewPassword() {
return new_password;
}
void
ModelChangePasswordUser::setNewPassword(QString* new_password) {
this->new_password = new_password;
}
QString*
ModelChangePasswordUser::getConfirmPassword() {
return confirm_password;
}
void
ModelChangePasswordUser::setConfirmPassword(QString* confirm_password) {
this->confirm_password = confirm_password;
}
}
| [
"chiphan2008@gmail.com"
] | chiphan2008@gmail.com |
86c3ac5c31f191497479dfbba1cbf44cb46845c9 | 2d9909133b6d2f5b50fd58d8a04f451a7247aba0 | /Servidor/src/storage/Game_Loader.cpp | f88c538e5153b3bb401a8818eee85061ae61aaa7 | [] | no_license | ldtg/tallerZ | e6f82bc45e36414a97ce3bdbc032c2d43d04151f | 3fa17ec2cec77f2625b8811e9dc00d50fdf30c8b | refs/heads/master | 2021-01-20T13:21:34.969423 | 2017-07-05T23:13:29 | 2017-07-05T23:13:29 | 90,473,475 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,465 | cpp | #include <server/model/UnitFactory.h>
#include "Game_Loader.h"
void Game_Loader::open_file() {
try {
this->map_file.open(this->file_path);
} catch (const std::ifstream::failure &e) {
throw Storage_Exception(
"Error en la apertura del archivo %s de donde se iba a cargar el "
"mapa en el metodo open_file de Game_Loader: %s",
this->file_path.c_str(), e.what());
}
}
void Game_Loader::close_file() {
try {
this->map_file.close();
} catch (const std::ifstream::failure &e) {
throw Storage_Exception(
"Error el metodo close_file de Game_Loader al cerrar el archivo %s: "
"%s\n", this->file_path, e.what());
}
}
Game_Loader::Game_Loader(const std::string &file_path,
const std::map<PlayerID, Player *> &players,
const std::map<TeamID, Team> &teams, GaiaPlayer &gaia)
: file_path(file_path), players(players), teams(teams), gaiaPlayer(gaia) {
open_file();
gaiaTeam.addPlayer(&gaiaPlayer);
}
Game_Loader::~Game_Loader() {
close_file();
}
json Game_Loader::get_json() {
return this->j;
}
void Game_Loader::load_file() {
try {
map_file >> this->j;
} catch (const std::exception &e) {
throw Storage_Exception(
"Error en el parseo del archivo %s de donde se iba a cargar el "
"mapa en el metodo load_file de Game_Loader",
this->file_path.c_str());
}
}
void Game_Loader::load_configuration() {
this->configuration.max_units = j["max_units"];
this->configuration.factories_level = j["factories_level"];
this->configuration.map_width = j["map_width"];
this->configuration.map_length = j["map_length"];
this->configuration.players = j["players"];
this->configuration.territories_amount = j["territories_amount"];
this->configuration.base_terrain = j["base_terrain"];
this->configuration.bridge_type = j["bridge_type"];
this->configuration.river_type = j["river_type"];
this->configuration.road_type = j["road_type"];
this->configuration.rock_type = j["rock_type"];
}
Position Game_Loader::centered_position(int x, int y) {
int _x, _y;
_x = (x * TILEWIDHT + TILEWIDHT / 2);
_y = (y * TILEHEIGHT + TILEHEIGHT / 2);
return Position(_x, _y);
}
/**
* read_data: devuelve un struct de tipo Position_Data a partir del
* archivo json con los elementos de el mapa en esa posicion.
*/
Position_Data Game_Loader::read_data(int position) {
Position_Data data;
std::string pos = std::to_string(position);
data.x = this->j[pos]["x"];
data.y = this->j[pos]["y"];
data.vehicle_factory = this->j[pos]["vehicle_factory"];
data.vehicle = this->j[pos]["vehicle"];
data.territory = this->j[pos]["territory"];
data.terrain_type = this->j[pos]["terrain_type"];
data.rock = this->j[pos]["rock"];
data.robot_factory = this->j[pos]["robot_factory"];
data.fort = this->j[pos]["fort"];
data.flag = this->j[pos]["flag"];
data.bridge = this->j[pos]["bridge"];
return data;
}
Map_Config Game_Loader::get_configuration() {
return this->configuration;
}
void Game_Loader::assign_robot_factory(const Position_Data &position_data,
Player &player,
Team &team) {
Build *build = new
Build(data.robotFactory,
centered_position(position_data.x, position_data.y),
player,
team,
(const unsigned short) configuration.factories_level);
buildmap.emplace(build->getId(), build->getBuildState());
territory_buildings[position_data.territory].push_back(build);
builds.emplace(build->getId(), build);
}
void Game_Loader::emplace_terrain(const Position_Data &pos_data) {
this->map.emplace(Position(pos_data.x, pos_data.y),
Tile(centered_position(pos_data.x, pos_data.y),
data.get_terrain_data(pos_data.terrain_type)));
}
void Game_Loader::assign_fort(const Position_Data &position_data,
Player &player,
Team &team) {
Build *build = new
Build(data.fort,
centered_position(position_data.x, position_data.y),
player,
team,
(const unsigned short) configuration.factories_level);
buildmap.emplace(build->getId(), build->getBuildState());
builds.emplace(build->getId(), build);
}
void Game_Loader::assign_vehicle_factory(const Position_Data &position_data,
Player &player,
Team &team) {
Build *build = new
Build(data.vehicleFactory,
centered_position(position_data.x, position_data.y),
player,
team,
(const unsigned short) configuration.factories_level);
buildmap.emplace(build->getId(), build->getBuildState());
territory_buildings[position_data.territory].push_back(build);
builds.emplace(build->getId(), build);
}
Team Game_Loader::get_team(Player *player) {
for (const auto team: teams) {
if (team.second.isaPlayerOfTheTeam(player->getID())) {
return team.second;
}
}
throw std::exception();
}
void Game_Loader::build_map() {
Position_Data pos_data;
bool gaiaNow = false;
auto fort_player = players.begin();
int tile_amount = configuration.map_width * configuration.map_length;
for (int i = 0; i < tile_amount; i++) {
pos_data = read_data(i);
emplace_terrain(pos_data);
if (pos_data.fort) {
if (!gaiaNow) {
Team team = get_team(fort_player->second);
assign_fort(pos_data, *fort_player->second, team);
fort_player++;
if (fort_player == players.end())
gaiaNow = true;
} else {
assign_fort(pos_data, gaiaPlayer, gaiaTeam);
}
}
if (pos_data.bridge || pos_data.rock) {
assign_terrain_object(pos_data);
}
if (pos_data.robot_factory) {
assign_robot_factory(pos_data, gaiaPlayer, gaiaTeam);
}
if (pos_data.vehicle_factory) {
assign_vehicle_factory(pos_data, gaiaPlayer, gaiaTeam);
}
}
for (int i = 0; i < tile_amount; i++) {
pos_data = read_data(i);
if (pos_data.vehicle || pos_data.flag) {
assign_capturable(pos_data);
}
}
}
std::map<BuildID, Build *> Game_Loader::get_builds() const {
return this->builds;
}
std::map<BuildID, BuildState> Game_Loader::get_buildmap() const {
return this->buildmap;
}
std::map<Position, Tile> Game_Loader::get_loaded_map() const {
return this->map;
}
void Game_Loader::assign_terrain_object(const Position_Data &position_data) {
if (position_data.bridge) {
switch (configuration.bridge_type) {
case TerrainType::WOODENBRIDGE: {
TerrainObject wooden_bridge(data.getObjectData(_WOODENBRIDGE),
centered_position(position_data.x,
position_data.y),
&gaiaPlayer);
terrainObjects[wooden_bridge.getID()] = wooden_bridge.getState();
this->controller_terrainObjects.emplace(wooden_bridge.getID(),
wooden_bridge);
break;
}
case TerrainType::ASPHALTEDBRIDGE: {
TerrainObject asphalted_bridge(data.getObjectData(_ASPHALTEDBRIDGE),
centered_position(position_data.x,
position_data.y),
&gaiaPlayer);
terrainObjects[asphalted_bridge.getID()] = asphalted_bridge.getState();
this->controller_terrainObjects.emplace(asphalted_bridge.getID(),
asphalted_bridge);
break;
}
default: break;//Nunca deberia llegar
}
}
if (position_data.rock) {
switch (configuration.rock_type) {
case (TerrainObjectType::ROCK): {
TerrainObject rock(data.getObjectData(ROCK),
centered_position(position_data.x,
position_data.y),
&gaiaPlayer);
this->terrainObjects.emplace(rock.getID(), rock.getState());
this->controller_terrainObjects.emplace(rock.getID(),
rock);
break;
}
case (TerrainObjectType::ICEROCK): {
TerrainObject icerock(data.getObjectData(ICEROCK),
centered_position(position_data.x,
position_data.y),
&gaiaPlayer);
this->terrainObjects.emplace(icerock.getID(), icerock.getState());
this->controller_terrainObjects.emplace(icerock.getID(),
icerock);
break;
}
default: break;//Nunca deberia llegar
}
}
}
void Game_Loader::assign_capturable(const Position_Data &position_data) {
Position pos(position_data.x, position_data.y);
if (position_data.flag) {
Territory *territory = new
Territory(centered_position(position_data.x, position_data.y),
territory_buildings[position_data.territory],
&gaiaPlayer, gaiaTeam);
capturables.emplace(territory->getID(), territory->getCapturableState());
controller_capturables.emplace(territory->getID(), territory);
}
if (position_data.vehicle) {
Vehicle *unit = UnitFactory::createVehicleDynamic(
centered_position((int) pos.getX(), (int) pos.getY()),
V_JEEP,
gaiaPlayer,
gaiaTeam);
this->units.emplace(unit->getId(), unit->getUnitState());
this->controller_units.emplace(unit->getId(), unit);
CapturableVehicle *vehicle = new CapturableVehicle(*unit);
capturables.emplace(vehicle->getID(), vehicle->getCapturableState());
controller_capturables.emplace(vehicle->getID(), vehicle);
}
}
std::map<CapturableID, CapturableState> Game_Loader::get_capturables() const {
return this->capturables;
}
std::map<TerrainObjectID,
TerrainObjectState> Game_Loader::get_terrainObject() const {
return this->terrainObjects;
}
void Game_Loader::assign_unit(const Position_Data &position_data) {
Position pos(position_data.x, position_data.y);
Unit
*unit = UnitFactory::createUnitDynamic(pos, V_JEEP, gaiaPlayer, gaiaTeam);
this->units.emplace(unit->getId(), unit->getUnitState());
this->controller_units.emplace(unit->getId(), unit);
}
std::map<UnitID, Unit *> Game_Loader::get_controller_units() const {
return this->controller_units;
}
std::map<int,
std::vector<Build *>> Game_Loader::get_territory_buildings() const {
return this->territory_buildings;
}
std::map<CapturableID,
Capturable *> Game_Loader::get_controller_capturables() const {
return this->controller_capturables;
}
std::map<TerrainObjectID,
TerrainObject> Game_Loader::get_controller_terrainObjects() const {
return this->controller_terrainObjects;
}
std::map<PlayerID, Player *> Game_Loader::get_players() const {
return this->players;
}
std::map<TeamID, Team> Game_Loader::get_teams() const {
return this->teams;
}
Map Game_Loader::run() {
this->load_file();
this->load_configuration();
this->build_map();
return Map(map, buildmap, capturables, terrainObjects, units,
(unsigned short) configuration.map_width,
(unsigned short) configuration.map_length);
}
| [
"lteje11@gmail.com"
] | lteje11@gmail.com |
914e4603d4abf9d164e4d526acc392aded5724ef | bae76888e633874c1278a43bb5773aae8201c44d | /CPSeis/wrappers/src/org/cpseis/wrappers/CpseisTrinsort_jni.cpp | 6fa8c479911cf67f7fb5b70534f848982f4fc6de | [
"LicenseRef-scancode-unknown-license-reference",
"MIT"
] | permissive | Chen-Zhihui/SeismicPackage | a242f9324c92d03383b06f068c9d2f64a47c5c3f | 255d2311bdbbacad2cb19aa3b91ceb84a733a194 | refs/heads/master | 2020-08-16T05:28:19.283337 | 2016-11-25T02:24:14 | 2016-11-25T02:24:14 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 324 | cpp | //////// DO NOT EDIT THIS FILE - it is machine generated ////////
#include "CpseisTrinsort.hh"
#include <jni.h>
extern "C"
{
JNIEXPORT jlong JNICALL Java_org_cpseis_wrappers_CpseisTrinsort_nativeCreate
(JNIEnv *env, jobject obj)
{
CpseisTrinsort *module = new CpseisTrinsort();
return (jlong)module;
}
}
| [
"Uqer@d-i89-169-66.student.eduroam.uq.edu.au"
] | Uqer@d-i89-169-66.student.eduroam.uq.edu.au |
c2c3f223806302219811c3c91642dfb700d3d4d5 | 95dcf1b68eb966fd540767f9315c0bf55261ef75 | /build/pc/ACDK_4_14_0/acdk/acdk_core/src/acdk/io/Reader.cpp | 734350b4515cdd9eea9da5eb76845c0d0339cd3d | [] | no_license | quinsmpang/foundations.github.com | 9860f88d1227ae4efd0772b3adcf9d724075e4d1 | 7dcef9ae54b7e0026fd0b27b09626571c65e3435 | refs/heads/master | 2021-01-18T01:57:54.298696 | 2012-10-14T14:44:38 | 2012-10-14T14:44:38 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,086 | cpp | // -*- mode:C++; tab-width:2; c-basic-offset:2; indent-tabs-mode:nil -*-
//
// Copyright (C) 2000-2005 by Roger Rene Kommer / artefaktur, Kassel, Germany.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public License (LGPL).
//
//
// This library 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
// License ACDK-FreeLicense document enclosed in the distribution
// for more for more details.
// This file is part of the Artefaktur Component Development Kit:
// ACDK
//
// Please refer to
// - http://www.acdk.de
// - http://www.artefaktur.com
// - http://acdk.sourceforge.net
// for more information.
//
// $Header: /cvsroot/acdk/acdk/acdk_core/src/acdk/io/Reader.cpp,v 1.22 2005/02/05 10:44:54 kommer Exp $
#include <acdk.h>
#include "Reader.h"
#include "Writer.h"
#include "MemWriter.h"
#include "FilterReader.h"
#include "IOException.h"
#include "CharArrayWriter.h"
#include "Storage.h"
#include "StringReader.h"
#include "ByteToCharReader.h"
namespace acdk {
namespace io {
using namespace acdk::lang;
/*
//virtual
RReader
Reader::read(RbyteArray buffer)
{
return read(buffer->data(), 0, buffer->length());
}
*/
/* no default implementation, because derivition hides polymorph
//virtual
int
Reader::read(RbyteArray buffer, int offset, int len)
{
if (len == -1)
len = buffer->length() - offset;
buffer->ensureCapacity(offset + len);
return read(buffer->data(), offset, len);
}
//virtual
int
Reader::read(byte* buffer, int offset, int len)
{
byte* ptr = buffer;
int readed = 0;
for (; (readed = read()) != -1 && len > 0; len--)
*ptr++ = byte(readed);
return readed;
}
*/
void
Reader::trans(IN(RWriter) out)
{
Writer& tout = *out;
const int BufferSize = 4096;
byte buffer[BufferSize];
int readed = 0;
do {
readed = read(buffer, 0, BufferSize);
if (readed == -1)
break;
tout.write(buffer, 0, readed);
} while (readed == BufferSize);
}
RbyteArray
Reader::readAll()
{
MemWriter min;
trans(&min);
return min.getBuffer();
}
//virtual
int
Reader::read(byte* buffer, int offset, int len)
{
int count = 0;
for (int i = offset; i < len; ++i, ++count)
{
int ch = read();
if (ch == -1)
return count;
buffer[i] = (byte)ch;
}
return count;
}
/*
RString
Reader::readIntoString()
{
CharArrayWriter caw;
trans(&caw);
return caw.toString();
}
*/
//virtual
RStorage
Reader::getReaderStorage()
{
RReader tr(this);
if (instanceof(tr, Storage) == true)
return RStorage(tr);
else if (instanceof(tr, FilterReader) == true)
return RStorage(RFilterReader(tr)->getStorageReader());
return Nil;
}
RString
Reader::readAllAsString()
{
return getCharReader()->readString();
}
//virtual
RCharReader
Reader::getCharReader(IN(acdk::locale::RDecoder) decoder)
{
return new ByteToCharReader(this, decoder);
}
} // io
} // acdk
| [
"wisbyme@yahoo.com"
] | wisbyme@yahoo.com |
69f721185197f3c07575497f6c504b839db54a6b | 6742c8cc1ac0f158b18ab4a498262337f9f27ed2 | /projectP/Project/ComputeProduct.cpp | c29787a1de5c7f3c2c23e10862aca015d81f3cd3 | [] | no_license | Mick95/ParallelProject | 0d66cf663bd686221c70e9657063b4993667bec1 | 833c926dfcd7c85f5eb6e5a9ea999ecaab20776b | refs/heads/master | 2020-03-22T10:12:52.715528 | 2018-07-30T08:08:31 | 2018-07-30T08:08:31 | 139,888,309 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 675 | cpp | #include "stdafx.h"
#include "ComputeProduct.h"
ComputeProduct::ComputeProduct()
{
}
ComputeProduct::ComputeProduct(int id, float gamma, float chi_i, float chi_0, float w_i, float d_i) {
i = id;
wx_i = chi_i * w_i;
gamma_i = gamma;
D_i = d_i;
this->w_i = w_i;
this->chi_i = chi_i;
this->chi_0 = chi_0;
}
float ComputeProduct::getWX() {
return wx_i;
}
float ComputeProduct::getGamma() {
return gamma_i;
}
float ComputeProduct::getDeadLine() {
return D_i;
}
float ComputeProduct::getWeight() {
return w_i;
}
float ComputeProduct::getChi_c() {
return chi_i;
}
float ComputeProduct::getChi_0() {
return chi_0;
}
int ComputeProduct::getI() {
return i;
}
| [
"michele.gennaioli@mail.polimi.it"
] | michele.gennaioli@mail.polimi.it |
16f112450f8aec06636f08299c9407a8528b28f6 | 5b85304e2d1a8f77fd9874978bc54f91a3a89489 | /src/spork.cpp | 4a8f145b2928343637f803596482aee9101a73cf | [
"MIT"
] | permissive | CryptoCoderz/DigitalNote | 03e59b5ae57aaaf82fcf59af65e0729d5eeb1ff3 | 996c9e2ccc5148d7fbd78045320d81ef0a2f11a3 | refs/heads/master | 2021-07-24T13:51:00.853179 | 2021-07-22T01:23:26 | 2021-07-22T01:23:26 | 167,573,784 | 6 | 13 | MIT | 2021-07-22T01:23:27 | 2019-01-25T16:01:01 | C++ | UTF-8 | C++ | false | false | 10,720 | cpp | // Copyright (c) 2015 The DigitalNote developers
// Copyright (c) 2009-2012 The Darkcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "bignum.h"
#include "sync.h"
#include "net.h"
#include "key.h"
#include "util.h"
#include "script.h"
#include "base58.h"
#include "protocol.h"
#include "spork.h"
#include "main.h"
#include <boost/lexical_cast.hpp>
using namespace std;
using namespace boost;
class CSporkMessage;
class CSporkManager;
CSporkManager sporkManager;
std::map<uint256, CSporkMessage> mapSporks;
std::map<int, CSporkMessage> mapSporksActive;
void ProcessSpork(CNode* pfrom, std::string& strCommand, CDataStream& vRecv)
{
if(fLiteMode) return; //disable all mnengine/masternode related functionality
if (strCommand == "spork")
{
//LogPrintf("ProcessSpork::spork\n");
CDataStream vMsg(vRecv);
CSporkMessage spork;
vRecv >> spork;
if(pindexBest == NULL) return;
uint256 hash = spork.GetHash();
if(mapSporksActive.count(spork.nSporkID)) {
if(mapSporksActive[spork.nSporkID].nTimeSigned >= spork.nTimeSigned){
if(fDebug) LogPrintf("spork - seen %s block %d \n", hash.ToString().c_str(), pindexBest->nHeight);
return;
} else {
if(fDebug) LogPrintf("spork - got updated spork %s block %d \n", hash.ToString().c_str(), pindexBest->nHeight);
}
}
LogPrintf("spork - new %s ID %d Time %d bestHeight %d\n", hash.ToString().c_str(), spork.nSporkID, spork.nValue, pindexBest->nHeight);
if(!sporkManager.CheckSignature(spork)){
LogPrintf("spork - invalid signature\n");
Misbehaving(pfrom->GetId(), 100);
return;
}
mapSporks[hash] = spork;
mapSporksActive[spork.nSporkID] = spork;
sporkManager.Relay(spork);
//does a task if needed
ExecuteSpork(spork.nSporkID, spork.nValue);
}
if (strCommand == "getsporks")
{
std::map<int, CSporkMessage>::iterator it = mapSporksActive.begin();
while(it != mapSporksActive.end()) {
pfrom->PushMessage("spork", it->second);
it++;
}
}
}
// grab the spork, otherwise say it's off
bool IsSporkActive(int nSporkID)
{
int64_t r = -1;
if(mapSporksActive.count(nSporkID)){
r = mapSporksActive[nSporkID].nValue;
} else {
if(nSporkID == SPORK_1_MASTERNODE_PAYMENTS_ENFORCEMENT) r = SPORK_1_MASTERNODE_PAYMENTS_ENFORCEMENT_DEFAULT;
if(nSporkID == SPORK_2_INSTANTX) r = SPORK_2_INSTANTX_DEFAULT;
if(nSporkID == SPORK_3_INSTANTX_BLOCK_FILTERING) r = SPORK_3_INSTANTX_BLOCK_FILTERING_DEFAULT;
if(nSporkID == SPORK_5_MAX_VALUE) r = SPORK_5_MAX_VALUE_DEFAULT;
if(nSporkID == SPORK_6_REPLAY_BLOCKS) r = SPORK_6_REPLAY_BLOCKS_DEFAULT;
if(nSporkID == SPORK_7_MASTERNODE_SCANNING) r = SPORK_7_MASTERNODE_SCANNING;
if(nSporkID == SPORK_8_MASTERNODE_PAYMENT_ENFORCEMENT) r = SPORK_8_MASTERNODE_PAYMENT_ENFORCEMENT_DEFAULT;
if(nSporkID == SPORK_9_MASTERNODE_BUDGET_ENFORCEMENT) r = SPORK_9_MASTERNODE_BUDGET_ENFORCEMENT_DEFAULT;
if(nSporkID == SPORK_10_MASTERNODE_PAY_UPDATED_NODES) r = SPORK_10_MASTERNODE_PAY_UPDATED_NODES_DEFAULT;
if(nSporkID == SPORK_11_RESET_BUDGET) r = SPORK_11_RESET_BUDGET_DEFAULT;
if(nSporkID == SPORK_12_RECONSIDER_BLOCKS) r = SPORK_12_RECONSIDER_BLOCKS_DEFAULT;
if(nSporkID == SPORK_13_ENABLE_SUPERBLOCKS) r = SPORK_13_ENABLE_SUPERBLOCKS_DEFAULT;
if(r == -1) LogPrintf("GetSpork::Unknown Spork %d\n", nSporkID);
}
if(r == -1) r = 4070908800; //return 2099-1-1 by default
return r < GetTime();
}
// grab the value of the spork on the network, or the default
int64_t GetSporkValue(int nSporkID)
{
int64_t r = -1;
if(mapSporksActive.count(nSporkID)){
r = mapSporksActive[nSporkID].nValue;
} else {
if(nSporkID == SPORK_1_MASTERNODE_PAYMENTS_ENFORCEMENT) r = SPORK_1_MASTERNODE_PAYMENTS_ENFORCEMENT_DEFAULT;
if(nSporkID == SPORK_2_INSTANTX) r = SPORK_2_INSTANTX_DEFAULT;
if(nSporkID == SPORK_3_INSTANTX_BLOCK_FILTERING) r = SPORK_3_INSTANTX_BLOCK_FILTERING_DEFAULT;
if(nSporkID == SPORK_5_MAX_VALUE) r = SPORK_5_MAX_VALUE_DEFAULT;
if(nSporkID == SPORK_6_REPLAY_BLOCKS) r = SPORK_6_REPLAY_BLOCKS_DEFAULT;
if(nSporkID == SPORK_7_MASTERNODE_SCANNING) r = SPORK_7_MASTERNODE_SCANNING;
if(nSporkID == SPORK_8_MASTERNODE_PAYMENT_ENFORCEMENT) r = SPORK_8_MASTERNODE_PAYMENT_ENFORCEMENT_DEFAULT;
if(nSporkID == SPORK_9_MASTERNODE_BUDGET_ENFORCEMENT) r = SPORK_9_MASTERNODE_BUDGET_ENFORCEMENT_DEFAULT;
if(nSporkID == SPORK_10_MASTERNODE_PAY_UPDATED_NODES) r = SPORK_10_MASTERNODE_PAY_UPDATED_NODES_DEFAULT;
if(nSporkID == SPORK_11_RESET_BUDGET) r = SPORK_11_RESET_BUDGET_DEFAULT;
if(nSporkID == SPORK_12_RECONSIDER_BLOCKS) r = SPORK_12_RECONSIDER_BLOCKS_DEFAULT;
if(nSporkID == SPORK_13_ENABLE_SUPERBLOCKS) r = SPORK_13_ENABLE_SUPERBLOCKS_DEFAULT;
if(r == -1) LogPrintf("GetSpork::Unknown Spork %d\n", nSporkID);
}
return r;
}
void ExecuteSpork(int nSporkID, int nValue)
{
}
/*void ReprocessBlocks(int nBlocks)
{
std::map<uint256, int64_t>::iterator it = mapRejectedBlocks.begin();
while(it != mapRejectedBlocks.end()){
//use a window twice as large as is usual for the nBlocks we want to reset
if((*it).second > GetTime() - (nBlocks*60*5)) {
BlockMap::iterator mi = mapBlockIndex.find((*it).first);
if (mi != mapBlockIndex.end() && (*mi).second) {
LOCK(cs_main);
CBlockIndex* pindex = (*mi).second;
LogPrintf("ReprocessBlocks - %s\n", (*it).first.ToString());
CValidationState state;
ReconsiderBlock(state, pindex);
}
}
++it;
}
CValidationState state;
{
LOCK(cs_main);
DisconnectBlocksAndReprocess(nBlocks);
}
if (state.IsValid()) {
ActivateBestChain(state);
}
}*/
bool CSporkManager::CheckSignature(CSporkMessage& spork)
{
//note: need to investigate why this is failing
std::string strMessage = boost::lexical_cast<std::string>(spork.nSporkID) + boost::lexical_cast<std::string>(spork.nValue) + boost::lexical_cast<std::string>(spork.nTimeSigned);
std::string strPubKey = strMainPubKey;
CPubKey pubkey(ParseHex(strPubKey));
std::string errorMessage = "";
if(!mnEngineSigner.VerifyMessage(pubkey, spork.vchSig, strMessage, errorMessage)){
return false;
}
return true;
}
bool CSporkManager::Sign(CSporkMessage& spork)
{
std::string strMessage = boost::lexical_cast<std::string>(spork.nSporkID) + boost::lexical_cast<std::string>(spork.nValue) + boost::lexical_cast<std::string>(spork.nTimeSigned);
CKey key2;
CPubKey pubkey2;
std::string errorMessage = "";
if(!mnEngineSigner.SetKey(strMasterPrivKey, errorMessage, key2, pubkey2))
{
LogPrintf("CMasternodePayments::Sign - ERROR: Invalid masternodeprivkey: '%s'\n", errorMessage.c_str());
return false;
}
if(!mnEngineSigner.SignMessage(strMessage, errorMessage, spork.vchSig, key2)) {
LogPrintf("CMasternodePayments::Sign - Sign message failed");
return false;
}
if(!mnEngineSigner.VerifyMessage(pubkey2, spork.vchSig, strMessage, errorMessage)) {
LogPrintf("CMasternodePayments::Sign - Verify message failed");
return false;
}
return true;
}
bool CSporkManager::UpdateSpork(int nSporkID, int64_t nValue)
{
CSporkMessage msg;
msg.nSporkID = nSporkID;
msg.nValue = nValue;
msg.nTimeSigned = GetTime();
if(Sign(msg)){
Relay(msg);
mapSporks[msg.GetHash()] = msg;
mapSporksActive[nSporkID] = msg;
return true;
}
return false;
}
void CSporkManager::Relay(CSporkMessage& msg)
{
CInv inv(MSG_SPORK, msg.GetHash());
RelayInventory(inv);
}
bool CSporkManager::SetPrivKey(std::string strPrivKey)
{
CSporkMessage msg;
// Test signing successful, proceed
strMasterPrivKey = strPrivKey;
Sign(msg);
if(CheckSignature(msg)){
LogPrintf("CSporkManager::SetPrivKey - Successfully initialized as spork signer\n");
return true;
} else {
return false;
}
}
int CSporkManager::GetSporkIDByName(std::string strName)
{
if(strName == "SPORK_1_MASTERNODE_PAYMENTS_ENFORCEMENT") return SPORK_1_MASTERNODE_PAYMENTS_ENFORCEMENT;
if(strName == "SPORK_2_INSTANTX") return SPORK_2_INSTANTX;
if(strName == "SPORK_3_INSTANTX_BLOCK_FILTERING") return SPORK_3_INSTANTX_BLOCK_FILTERING;
if(strName == "SPORK_5_MAX_VALUE") return SPORK_5_MAX_VALUE;
if(strName == "SPORK_6_REPLAY_BLOCKS") return SPORK_6_REPLAY_BLOCKS;
if(strName == "SPORK_7_MASTERNODE_SCANNING") return SPORK_7_MASTERNODE_SCANNING;
if(strName == "SPORK_8_MASTERNODE_PAYMENT_ENFORCEMENT") return SPORK_8_MASTERNODE_PAYMENT_ENFORCEMENT;
if(strName == "SPORK_9_MASTERNODE_BUDGET_ENFORCEMENT") return SPORK_9_MASTERNODE_BUDGET_ENFORCEMENT;
if(strName == "SPORK_10_MASTERNODE_PAY_UPDATED_NODES") return SPORK_10_MASTERNODE_PAY_UPDATED_NODES;
if(strName == "SPORK_11_RESET_BUDGET") return SPORK_11_RESET_BUDGET;
if(strName == "SPORK_12_RECONSIDER_BLOCKS") return SPORK_12_RECONSIDER_BLOCKS;
if(strName == "SPORK_13_ENABLE_SUPERBLOCKS") return SPORK_13_ENABLE_SUPERBLOCKS;
return -1;
}
std::string CSporkManager::GetSporkNameByID(int id)
{
if(id == SPORK_1_MASTERNODE_PAYMENTS_ENFORCEMENT) return "SPORK_1_MASTERNODE_PAYMENTS_ENFORCEMENT";
if(id == SPORK_2_INSTANTX) return "SPORK_2_INSTANTX";
if(id == SPORK_3_INSTANTX_BLOCK_FILTERING) return "SPORK_3_INSTANTX_BLOCK_FILTERING";
if(id == SPORK_5_MAX_VALUE) return "SPORK_5_MAX_VALUE";
if(id == SPORK_6_REPLAY_BLOCKS) return "SPORK_6_REPLAY_BLOCKS";
if(id == SPORK_7_MASTERNODE_SCANNING) return "SPORK_7_MASTERNODE_SCANNING";
if(id == SPORK_8_MASTERNODE_PAYMENT_ENFORCEMENT) return "SPORK_8_MASTERNODE_PAYMENT_ENFORCEMENT";
if(id == SPORK_9_MASTERNODE_BUDGET_ENFORCEMENT) return "SPORK_9_MASTERNODE_BUDGET_ENFORCEMENT";
if(id == SPORK_10_MASTERNODE_PAY_UPDATED_NODES) return "SPORK_10_MASTERNODE_PAY_UPDATED_NODES";
if(id == SPORK_11_RESET_BUDGET) return "SPORK_11_RESET_BUDGET";
if(id == SPORK_12_RECONSIDER_BLOCKS) return "SPORK_12_RECONSIDER_BLOCKS";
if(id == SPORK_13_ENABLE_SUPERBLOCKS) return "SPORK_13_ENABLE_SUPERBLOCKS";
return "Unknown";
}
| [
"CryptoCoderz@gmail.com"
] | CryptoCoderz@gmail.com |
3674f8274da5d6e55ca5db9db6bb52abbc836ed6 | fc42f22ffb6d75489c068bbbaa56756d73bcf159 | /OJ/多校/牛客2020/8/I.cpp | fe372dabe047534e0ce1f283241f1dc17c9111d1 | [] | no_license | ytrsk/ICPC_training_respository | a6031b46927281c1f4d09e55ac75f1c6770b309b | dd6fabc68bcb9f81ccd1cdc9f95d50919698e542 | refs/heads/master | 2022-12-15T06:29:33.189202 | 2020-09-15T11:27:05 | 2020-09-15T11:27:05 | 210,859,312 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,110 | cpp | #include <stdio.h>
#include <stack>
#include <vector>
#include <string>
#include <iostream>
#include <sstream>
#include <algorithm>
#include <map>
using namespace std;
const int maxn=800007;
typedef long long ll;
int n,cl,dfn[maxn],low[maxn];
int head[maxn],to[maxn<<1],nex[maxn<<1],e1;
int bans=0,bcc[maxn],bcnt,br[maxn<<1],vis[maxn];
inline void tarjan(int u,int fa){
dfn[u]=low[u]=++cl;
// cout<<u<<endl;
for(register int i=head[u];i;i=nex[i]){
int v=to[i];
if(!dfn[v]){
tarjan(v,i);
low[u]=min(low[u],low[v]);
// cout<<low[v]<<" "<<u<<" "<<v<<" "<<dfn[u]<<endl;
if(low[v]>dfn[u]){
bans++;
br[i]=br[((i-1)^1)+1]=1;
}
}
else if(!fa||i-1!=((fa-1)^1)) low[u]=min(low[u],dfn[v]);
//能够处理重边
}
}
int sz[maxn];
//边双连通
inline void dfs(int u){
dfn[u]=1;
bcc[u]=bcnt;sz[bcnt]++;
for(int i=head[u];i;i=nex[i]){
int v=to[i];
if(br[i]) continue;
if(!dfn[v]) dfs(v);
}
}
vector<int> g[maxn];
int you[maxn];
inline void addedge(int u,int v){
++e1;nex[e1]=head[u];head[u]=e1;to[e1]=v;
}
inline void init(){
for(register int i=1;i<=n;++i) head[i]=dfn[i]=0;
for(int i=1;i<=e1;i++) br[i]=0;
for(int i=1;i<=bcnt;i++) g[i].clear(),vis[i]=sz[i]=0,you[i]=0;
cl=e1=bans=bcnt=0;
}
inline int read(){
int x=0,f=1;
char ch=getchar();
while(ch<'0'||ch>'9') {if(ch=='-') f=-1;ch=getchar();}
while(ch>='0'&&ch<='9') x=x*10+ch-'0',ch=getchar();
return x*f;
}
map<int,int> aa;
int ans=0;
int DFS(int u,int fa){
vis[u]=1;
int now=0;
for(auto v:g[u]){
if(v==fa) continue;
now+=DFS(v,u);
}
if(sz[u]>=2||you[u]) {ans+=sz[u];return 1;}
else{
if(now){
ans++;return 1;
}
else{
if(fa) ans++;return 0;
}
}
}
int Y[maxn];
int main(){
int T=read(),cnt=0;
while(T--){
n=0;ans=0;
int m=read();
aa.clear();
for(int i=1;i<=m;++i){
int u=read(),v=read();//scanf("%d%d",&u,&v);
if(!aa.count(u)) aa[u]=++n;
if(!aa.count(v)) aa[v]=++n;
u=aa[u],v=aa[v];
if(u==v) Y[u]=1;
else addedge(u,v),addedge(v,u);
}
bans=0;
for(int i=1;i<=n;i++)
if(!dfn[i])tarjan(i,0);
for(int i=1;i<=n;++i) dfn[i]=0;
for(int i=1;i<=n;++i){
if(!dfn[i]){
++bcnt;dfs(i);
}
}
for(int i=1;i<=n;i++){
if(sz[bcc[i]]==1&&Y[i]==1) you[bcc[i]]=1;
}
for(int i=1;i<=n;i++){
for(int k=head[i];k;k=nex[k]){
int v=to[k];
if(i<v&&bcc[i]!=bcc[v]){
g[bcc[i]].push_back(bcc[v]);
g[bcc[v]].push_back(bcc[i]);
}
}
}
for(int i=1;i<=bcnt;i++)
if(!vis[i]) DFS(i,0);
printf("Case #%d: %d\n",++cnt,ans);
for(int i=1;i<=n;i++) Y[i]=0;
init();
}
return 0;
} | [
"2232160811@qq.com"
] | 2232160811@qq.com |
a45e807247a9f201762cf6c9b2297a49cf6d6dc6 | 3c241794490e28e440e8438dd9ecb7fa55b6407c | /MusicPlayer/ButtonUI.h | c1f6285750cf8e71c001b64249a3f1cf8d21b944 | [] | no_license | Clay-Si/MusicPlayer | b410873c2ee559080d142d95dd2dfe11d5370f2d | 35d1b152932629c92d08184ee5798edbba951eaf | refs/heads/master | 2020-11-28T23:57:56.042059 | 2019-12-24T14:37:30 | 2019-12-24T14:37:30 | 229,955,314 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 173 | h | #pragma once
#include "afxwin.h"
class CButtonUI :
public CButton
{
public:
CButtonUI();
~CButtonUI();
virtual void DrawItem(LPDRAWITEMSTRUCT /*lpDrawItemStruct*/);
};
| [
"clay_si@126.com"
] | clay_si@126.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.