SYMBOL INDEX (6753 symbols across 78 files) FILE: examples/3ds/friends.py function main (line 29) | async def main(): FILE: examples/custom/server.py function get_user_by_name (line 22) | def get_user_by_name(name): function get_user_by_pid (line 27) | def get_user_by_pid(pid): function derive_key (line 32) | def derive_key(user): class AuthenticationServer (line 39) | class AuthenticationServer(authentication.AuthenticationServer): method __init__ (line 40) | def __init__(self, settings): method login (line 44) | async def login(self, client, username): method generate_ticket (line 72) | def generate_ticket(self, source, target): class FriendsServer (line 92) | class FriendsServer(friends.FriendsServerV1): function main (line 96) | async def main(): FILE: examples/custom/server_login.py function main (line 9) | async def main(): FILE: examples/switch/animalcrossing.py function main (line 59) | async def main(): FILE: examples/switch/smm2_level.py function format_time (line 80) | def format_time(milliseconds): function download_thumbnail (line 87) | async def download_thumbnail(store, info, filename): function main (line 96) | async def main(): FILE: examples/switch/smm2_ninji.py function main (line 60) | async def main(): FILE: examples/switch/system_update.py function retry (line 25) | async def retry(worker, n=3): function download_content_metadata (line 34) | async def download_content_metadata(atumn_client, title_id, title_versio... function download_content (line 49) | async def download_content(atumn_client, title_id, metadata_path): function main (line 93) | async def main(): FILE: examples/wiiu/donkeykong.py function main (line 29) | async def main(): FILE: examples/wiiu/friends.py function print_requests (line 30) | def print_requests(requests): function main (line 44) | async def main(): FILE: examples/wiiu/mariokart.py function format_time (line 33) | def format_time(score): function main (line 40) | async def main(): FILE: examples/wiiu/miis.py function main (line 5) | async def main(): FILE: generate_protocols.py class Token (line 13) | class Token: method __init__ (line 14) | def __init__(self, type, value, row, col): class Tokenizer (line 35) | class Tokenizer: method process (line 36) | def process(self, data): method error (line 55) | def error(self, char): method add (line 58) | def add(self, type, value): method state_next (line 62) | def state_next(self, char): method state_comment_start (line 88) | def state_comment_start(self, char): method state_comment_line (line 96) | def state_comment_line(self, char): method state_comment_block (line 100) | def state_comment_block(self, char): method state_comment_end (line 106) | def state_comment_end(self, char): method state_name (line 113) | def state_name(self, char): method state_string (line 124) | def state_string(self, char): method state_number (line 133) | def state_number(self, char): method state_number_prefix (line 141) | def state_number_prefix(self, char): class TokenStream (line 152) | class TokenStream: method __init__ (line 153) | def __init__(self, tokens): method read (line 157) | def read(self): method peek (line 162) | def peek(self): method rewind (line 165) | def rewind(self): method error (line 168) | def error(self, token): method read_token (line 175) | def read_token(self, type): method parse_token (line 181) | def parse_token(self, type): method skip_token (line 184) | def skip_token(self, type, value): method check_token (line 189) | def check_token(self, type, value): method read_reserved (line 196) | def read_reserved(self): return self.read_token(TYPE_RESERVED) method read_name (line 197) | def read_name(self): return self.read_token(TYPE_NAME) method read_symbol (line 198) | def read_symbol(self): return self.read_token(TYPE_SYMBOL) method parse_name (line 200) | def parse_name(self): return self.parse_token(TYPE_NAME) method parse_number (line 201) | def parse_number(self): return self.parse_token(TYPE_NUMBER) method parse_string (line 202) | def parse_string(self): return self.parse_token(TYPE_STRING) method check_reserved (line 204) | def check_reserved(self, value): return self.check_token(TYPE_RESERVED... method check_symbol (line 205) | def check_symbol(self, value): return self.check_token(TYPE_SYMBOL, va... method check_eof (line 206) | def check_eof(self): return self.check_token(TYPE_EOF, None) method skip_name (line 208) | def skip_name(self, value): self.skip_token(TYPE_NAME, value) method skip_reserved (line 209) | def skip_reserved(self, value): self.skip_token(TYPE_RESERVED, value) method skip_symbol (line 210) | def skip_symbol(self, value): self.skip_token(TYPE_SYMBOL, value) class Scope (line 213) | class Scope: method __init__ (line 214) | def __init__(self): method __contains__ (line 217) | def __contains__(self, name): method add (line 220) | def add(self, name): class File (line 227) | class File: method __init__ (line 228) | def __init__(self): method check_protocols (line 235) | def check_protocols(self): method sort_protocols (line 239) | def sort_protocols(self): method sort_types (line 243) | def sort_types(self): method add_file (line 247) | def add_file(self, file): method add_protocol (line 255) | def add_protocol(self, proto): method add_struct (line 262) | def add_struct(self, struct): method add_enum (line 269) | def add_enum(self, enum): class Protocol (line 275) | class Protocol: method __init__ (line 281) | def __init__(self): method sort (line 286) | def sort(self): method check (line 289) | def check(self): method add_method (line 293) | def add_method(self, method): method set_parent (line 300) | def set_parent(self, parent): class Method (line 309) | class Method: class VariableList (line 317) | class VariableList: method __init__ (line 318) | def __init__(self): method add (line 322) | def add(self, var): class Variable (line 328) | class Variable: class Type (line 334) | class Type: class Struct (line 339) | class Struct: class Condition (line 345) | class Condition: class StructBody (line 355) | class StructBody: method __init__ (line 356) | def __init__(self): method has_revision (line 359) | def has_revision(self): method add (line 368) | def add(self, field): class Enum (line 372) | class Enum: method __init__ (line 375) | def __init__(self): method add (line 380) | def add(self, name, value): class Parser (line 402) | class Parser: method process (line 403) | def process(self, tokens): method parse_file (line 407) | def parse_file(self, stream): method parse_import (line 424) | def parse_import(self, stream): method parse_protocol (line 439) | def parse_protocol(self, stream): method parse_method (line 481) | def parse_method(self, stream): method parse_parameter_list (line 511) | def parse_parameter_list(self, stream): method parse_variable_list (line 528) | def parse_variable_list(self, stream): method parse_variable (line 540) | def parse_variable(self, stream): method parse_type (line 552) | def parse_type(self, stream): method parse_template (line 566) | def parse_template(self, stream, num): method parse_constant (line 577) | def parse_constant(self, stream, type): method parse_struct (line 637) | def parse_struct(self, stream): method parse_struct_body (line 652) | def parse_struct_body(self, stream): method parse_struct_item (line 664) | def parse_struct_item(self, stream): method parse_condition (line 673) | def parse_condition(self, stream): method parse_enum (line 689) | def parse_enum(self, stream): class CodeStream (line 714) | class CodeStream: method __init__ (line 715) | def __init__(self): method get (line 719) | def get(self): return self.code method indent (line 721) | def indent(self): self.tabs += 1 method unindent (line 722) | def unindent(self): self.tabs -= 1 method write (line 724) | def write(self, text): method begin_line (line 727) | def begin_line(self): method write_line (line 730) | def write_line(self, line=""): function make_class_name (line 758) | def make_class_name(name, type): class CodeGenerator (line 764) | class CodeGenerator: method process (line 765) | def process(self, file): method generate_file (line 774) | def generate_file(self, stream): method generate_header (line 790) | def generate_header(self, stream): method generate_enum (line 800) | def generate_enum(self, stream, enum): method generate_struct (line 812) | def generate_struct(self, stream, struct): method generate_struct_init (line 834) | def generate_struct_init(self, stream, struct): method generate_struct_init_body (line 842) | def generate_struct_init_body(self, stream, body, defaults): method generate_if_statement (line 855) | def generate_if_statement(self, stream, cond, prefix=""): method generate_struct_version (line 862) | def generate_struct_version(self, stream, struct): method generate_struct_version_body (line 872) | def generate_struct_version_body(self, stream, body): method generate_struct_check (line 884) | def generate_struct_check(self, stream, struct): method generate_struct_check_body (line 891) | def generate_struct_check_body(self, stream, body): method generate_struct_load (line 914) | def generate_struct_load(self, stream, struct): method generate_struct_load_body (line 921) | def generate_struct_load_body(self, stream, body): method generate_struct_save (line 934) | def generate_struct_save(self, stream, struct): method generate_struct_save_body (line 941) | def generate_struct_save_body(self, stream, body): method generate_protocol (line 951) | def generate_protocol(self, stream, proto): method generate_client (line 970) | def generate_client(self, stream, proto): method generate_client_method (line 995) | def generate_client_method(self, stream, proto, method): method generate_server (line 1033) | def generate_server(self, stream, proto): method generate_server_method (line 1071) | def generate_server_method(self, stream, proto, method): method generate_server_stub (line 1114) | def generate_server_stub(self, stream, proto, method): method make_python_type (line 1120) | def make_python_type(self, type): method make_constant (line 1140) | def make_constant(self, type, value): method make_extract (line 1168) | def make_extract(self, type, stream="stream"): method make_extract_func (line 1183) | def make_extract_func(self, type, stream="stream"): method make_encode (line 1193) | def make_encode(self, type, name, stream="stream"): method make_encode_func (line 1203) | def make_encode_func(self, type, stream="stream"): class DocsGenerator (line 1213) | class DocsGenerator: method process (line 1214) | def process(self, file, name): method generate_file (line 1222) | def generate_file(self, name): method generate_header (line 1235) | def generate_header(self, name): method generate_enum (line 1285) | def generate_enum(self, enum): method generate_struct (line 1293) | def generate_struct(self, struct): method generate_struct_body (line 1302) | def generate_struct_body(self, body): method generate_client (line 1320) | def generate_client(self, proto): method generate_client_method (line 1330) | def generate_client_method(self, method): method generate_server (line 1343) | def generate_server(self, proto): method generate_server_method (line 1355) | def generate_server_method(self, method): method format_variable (line 1371) | def format_variable(self, var, defaults): method format_type (line 1378) | def format_type(self, type): method format_return_value (line 1401) | def format_return_value(self, method): method format_constant (line 1408) | def format_constant(self, type, value): function process (line 1439) | def process(filename): FILE: nintendo/miis.py function swap32 (line 6) | def swap32(data, offs): function swap16 (line 9) | def swap16(data, offs): function crc16 (line 12) | def crc16(data): class MiiData (line 37) | class MiiData: method decode (line 48) | def decode(self, stream): method encode (line 140) | def encode(self, outstream): method swap_endian (line 231) | def swap_endian(self, data): method build (line 250) | def build(self): method parse (line 256) | def parse(cls, data): FILE: nintendo/nasc.py function b64decode (line 17) | def b64decode(text): function b64encode (line 21) | def b64encode(text): function decode_form (line 29) | def decode_form(form): function encode_form (line 32) | def encode_form(form): function parse_date (line 35) | def parse_date(text): class NASCError (line 48) | class NASCError(Exception): method __init__ (line 49) | def __init__(self, status_code, form): method __str__ (line 57) | def __str__(self): class LoginResponse (line 63) | class LoginResponse: method __init__ (line 64) | def __init__(self): method parse (line 71) | def parse(cls, form): class NASCClient (line 82) | class NASCClient: method __init__ (line 83) | def __init__(self): method set_context (line 123) | def set_context(self, context): method set_url (line 126) | def set_url(self, url): self.url = url method set_sdk_version (line 128) | def set_sdk_version(self, major_version, minor_version): method set_title (line 132) | def set_title( method set_device (line 146) | def set_device(self, serial_number, mac_address, fcd_cert, name="", un... method set_network (line 153) | def set_network(self, bss_id, ap_info): method set_locale (line 157) | def set_locale(self, region, language): method set_user (line 161) | def set_user(self, pid, pid_hmac): method set_password (line 166) | def set_password(self, password): method set_fpd_version (line 171) | def set_fpd_version(self, version): self.fpd_version = version method set_environment (line 172) | def set_environment(self, environment): self.environment = environment method request (line 174) | async def request(self, req): method login (line 188) | async def login(self, game_server_id, nickname=""): FILE: nintendo/nex/aauser.py class ApplicationInfo (line 10) | class ApplicationInfo(common.Structure): method __init__ (line 11) | def __init__(self): method check_required (line 16) | def check_required(self, settings, version): method load (line 21) | def load(self, stream, version): method save (line 25) | def save(self, stream, version): class AAUserProtocol (line 31) | class AAUserProtocol: class AAUserClient (line 40) | class AAUserClient(AAUserProtocol): method __init__ (line 41) | def __init__(self, client): method register_application (line 45) | async def register_application(self, title_id): method unregister_application (line 58) | async def unregister_application(self, title_id): method set_application_info (line 71) | async def set_application_info(self, application_info): method get_application_info (line 84) | async def get_application_info(self): class AAUserServer (line 99) | class AAUserServer(AAUserProtocol): method __init__ (line 100) | def __init__(self): method logout (line 108) | async def logout(self, client): method handle (line 111) | async def handle(self, client, method_id, input, output): method handle_register_application (line 118) | async def handle_register_application(self, client, input, output): method handle_unregister_application (line 124) | async def handle_unregister_application(self, client, input, output): method handle_set_application_info (line 130) | async def handle_set_application_info(self, client, input, output): method handle_get_application_info (line 136) | async def handle_get_application_info(self, client, input, output): method register_application (line 146) | async def register_application(self, *args): method unregister_application (line 150) | async def unregister_application(self, *args): method set_application_info (line 154) | async def set_application_info(self, *args): method get_application_info (line 158) | async def get_application_info(self, *args): FILE: nintendo/nex/account.py class AccountData (line 10) | class AccountData(common.Structure): method __init__ (line 11) | def __init__(self): method check_required (line 23) | def check_required(self, settings, version): method load (line 28) | def load(self, stream, version): method save (line 39) | def save(self, stream, version): class BasicAccountInfo (line 52) | class BasicAccountInfo(common.Structure): method __init__ (line 53) | def __init__(self): method check_required (line 58) | def check_required(self, settings, version): method load (line 63) | def load(self, stream, version): method save (line 67) | def save(self, stream, version): class AccountProtocol (line 73) | class AccountProtocol: class AccountClient (line 108) | class AccountClient(AccountProtocol): method __init__ (line 109) | def __init__(self, client): method create_account (line 113) | async def create_account(self, name, key, groups, email): method delete_account (line 131) | async def delete_account(self, pid): method disable_account (line 144) | async def disable_account(self, pid, until, message): method change_password (line 161) | async def change_password(self, new_key): method test_capability (line 176) | async def test_capability(self, capability): method get_name (line 191) | async def get_name(self, pid): method get_account_data (line 206) | async def get_account_data(self): method get_private_data (line 222) | async def get_private_data(self): method get_public_data (line 238) | async def get_public_data(self, pid): method get_multiple_public_data (line 255) | async def get_multiple_public_data(self, pids): method update_account_name (line 272) | async def update_account_name(self, name): method update_account_email (line 287) | async def update_account_email(self, email): method update_custom_data (line 302) | async def update_custom_data(self, public_data, private_data): method find_by_name_regex (line 318) | async def find_by_name_regex(self, groups, regex, range): method update_account_expiry_date (line 335) | async def update_account_expiry_date(self, pid, expiry, message): method update_account_effective_date (line 350) | async def update_account_effective_date(self, pid, effective_from, mes... method update_status (line 365) | async def update_status(self, status): method get_status (line 378) | async def get_status(self, pid): method get_last_connection_stats (line 393) | async def get_last_connection_stats(self, pid): method reset_password (line 411) | async def reset_password(self): method create_account_with_custom_data (line 425) | async def create_account_with_custom_data(self, name, key, groups, ema... method retrieve_account (line 443) | async def retrieve_account(self): method update_account (line 460) | async def update_account(self, key, email, public_data, private_data): method change_password_by_guest (line 476) | async def change_password_by_guest(self, name, email, key): method find_by_name_like (line 491) | async def find_by_name_like(self, groups, like, range): method custom_create_account (line 508) | async def custom_create_account(self, name, key, groups, email, auth_d... method nintendo_create_account (line 527) | async def nintendo_create_account(self, name, key, groups, email, auth... method lookup_or_create_account (line 548) | async def lookup_or_create_account(self, name, key, groups, email, aut... method disconnect_principal (line 567) | async def disconnect_principal(self, pid): method disconnect_all_principals (line 582) | async def disconnect_all_principals(self): class AccountServer (line 597) | class AccountServer(AccountProtocol): method __init__ (line 598) | def __init__(self): method logout (line 632) | async def logout(self, client): method handle (line 635) | async def handle(self, client, method_id, input, output): method handle_create_account (line 642) | async def handle_create_account(self, client, input, output): method handle_delete_account (line 656) | async def handle_delete_account(self, client, input, output): method handle_disable_account (line 662) | async def handle_disable_account(self, client, input, output): method handle_change_password (line 675) | async def handle_change_password(self, client, input, output): method handle_test_capability (line 686) | async def handle_test_capability(self, client, input, output): method handle_get_name (line 697) | async def handle_get_name(self, client, input, output): method handle_get_account_data (line 708) | async def handle_get_account_data(self, client, input, output): method handle_get_private_data (line 722) | async def handle_get_private_data(self, client, input, output): method handle_get_public_data (line 736) | async def handle_get_public_data(self, client, input, output): method handle_get_multiple_public_data (line 751) | async def handle_get_multiple_public_data(self, client, input, output): method handle_update_account_name (line 766) | async def handle_update_account_name(self, client, input, output): method handle_update_account_email (line 777) | async def handle_update_account_email(self, client, input, output): method handle_update_custom_data (line 788) | async def handle_update_custom_data(self, client, input, output): method handle_find_by_name_regex (line 800) | async def handle_find_by_name_regex(self, client, input, output): method handle_update_account_expiry_date (line 813) | async def handle_update_account_expiry_date(self, client, input, output): method handle_update_account_effective_date (line 821) | async def handle_update_account_effective_date(self, client, input, ou... method handle_update_status (line 829) | async def handle_update_status(self, client, input, output): method handle_get_status (line 835) | async def handle_get_status(self, client, input, output): method handle_get_last_connection_stats (line 846) | async def handle_get_last_connection_stats(self, client, input, output): method handle_reset_password (line 862) | async def handle_reset_password(self, client, input, output): method handle_create_account_with_custom_data (line 872) | async def handle_create_account_with_custom_data(self, client, input, ... method handle_retrieve_account (line 883) | async def handle_retrieve_account(self, client, input, output): method handle_update_account (line 898) | async def handle_update_account(self, client, input, output): method handle_change_password_by_guest (line 907) | async def handle_change_password_by_guest(self, client, input, output): method handle_find_by_name_like (line 915) | async def handle_find_by_name_like(self, client, input, output): method handle_custom_create_account (line 928) | async def handle_custom_create_account(self, client, input, output): method handle_nintendo_create_account (line 943) | async def handle_nintendo_create_account(self, client, input, output): method handle_lookup_or_create_account (line 962) | async def handle_lookup_or_create_account(self, client, input, output): method handle_disconnect_principal (line 977) | async def handle_disconnect_principal(self, client, input, output): method handle_disconnect_all_principals (line 988) | async def handle_disconnect_all_principals(self, client, input, output): method create_account (line 998) | async def create_account(self, *args): method delete_account (line 1002) | async def delete_account(self, *args): method disable_account (line 1006) | async def disable_account(self, *args): method change_password (line 1010) | async def change_password(self, *args): method test_capability (line 1014) | async def test_capability(self, *args): method get_name (line 1018) | async def get_name(self, *args): method get_account_data (line 1022) | async def get_account_data(self, *args): method get_private_data (line 1026) | async def get_private_data(self, *args): method get_public_data (line 1030) | async def get_public_data(self, *args): method get_multiple_public_data (line 1034) | async def get_multiple_public_data(self, *args): method update_account_name (line 1038) | async def update_account_name(self, *args): method update_account_email (line 1042) | async def update_account_email(self, *args): method update_custom_data (line 1046) | async def update_custom_data(self, *args): method find_by_name_regex (line 1050) | async def find_by_name_regex(self, *args): method update_account_expiry_date (line 1054) | async def update_account_expiry_date(self, *args): method update_account_effective_date (line 1058) | async def update_account_effective_date(self, *args): method update_status (line 1062) | async def update_status(self, *args): method get_status (line 1066) | async def get_status(self, *args): method get_last_connection_stats (line 1070) | async def get_last_connection_stats(self, *args): method reset_password (line 1074) | async def reset_password(self, *args): method create_account_with_custom_data (line 1078) | async def create_account_with_custom_data(self, *args): method retrieve_account (line 1082) | async def retrieve_account(self, *args): method update_account (line 1086) | async def update_account(self, *args): method change_password_by_guest (line 1090) | async def change_password_by_guest(self, *args): method find_by_name_like (line 1094) | async def find_by_name_like(self, *args): method custom_create_account (line 1098) | async def custom_create_account(self, *args): method nintendo_create_account (line 1102) | async def nintendo_create_account(self, *args): method lookup_or_create_account (line 1106) | async def lookup_or_create_account(self, *args): method disconnect_principal (line 1110) | async def disconnect_principal(self, *args): method disconnect_all_principals (line 1114) | async def disconnect_all_principals(self, *args): FILE: nintendo/nex/authentication.py class AuthenticationInfo (line 10) | class AuthenticationInfo(common.Data): method __init__ (line 11) | def __init__(self): method check_required (line 18) | def check_required(self, settings, version): method load (line 23) | def load(self, stream, version): method save (line 29) | def save(self, stream, version): class RVConnectionData (line 38) | class RVConnectionData(common.Structure): method __init__ (line 39) | def __init__(self): method max_version (line 46) | def max_version(self, settings): method check_required (line 52) | def check_required(self, settings, version): method load (line 57) | def load(self, stream, version): method save (line 65) | def save(self, stream, version): class ValidateAndRequestTicketParam (line 75) | class ValidateAndRequestTicketParam(common.Structure): method __init__ (line 76) | def __init__(self): method check_required (line 85) | def check_required(self, settings, version): method load (line 90) | def load(self, stream, version): method save (line 98) | def save(self, stream, version): class ValidateAndRequestTicketResult (line 108) | class ValidateAndRequestTicketResult(common.Structure): method __init__ (line 109) | def __init__(self): method check_required (line 118) | def check_required(self, settings, version): method load (line 123) | def load(self, stream, version): method save (line 131) | def save(self, stream, version): class AuthenticationProtocol (line 141) | class AuthenticationProtocol: class AuthenticationProtocolNX (line 152) | class AuthenticationProtocolNX: class AuthenticationClient (line 163) | class AuthenticationClient(AuthenticationProtocol): method __init__ (line 164) | def __init__(self, client): method login (line 168) | async def login(self, username): method login_ex (line 188) | async def login_ex(self, username, extra_data): method request_ticket (line 209) | async def request_ticket(self, source, target): method get_pid (line 227) | async def get_pid(self, username): method get_name (line 242) | async def get_name(self, pid): method login_with_context (line 257) | async def login_with_context(self, login_data): class AuthenticationClientNX (line 277) | class AuthenticationClientNX(AuthenticationProtocolNX): method __init__ (line 278) | def __init__(self, client): method validate_and_request_ticket (line 282) | async def validate_and_request_ticket(self, username): method validate_and_request_ticket_with_custom_data (line 302) | async def validate_and_request_ticket_with_custom_data(self, username,... method request_ticket (line 324) | async def request_ticket(self, source, target): method get_pid (line 343) | async def get_pid(self, username): method get_name (line 358) | async def get_name(self, pid): method validate_and_request_ticket_with_param (line 373) | async def validate_and_request_ticket_with_param(self, param): class AuthenticationServer (line 389) | class AuthenticationServer(AuthenticationProtocol): method __init__ (line 390) | def __init__(self): method logout (line 400) | async def logout(self, client): method handle (line 403) | async def handle(self, client, method_id, input, output): method handle_login (line 410) | async def handle_login(self, client, input, output): method handle_login_ex (line 428) | async def handle_login_ex(self, client, input, output): method handle_request_ticket (line 447) | async def handle_request_ticket(self, client, input, output): method handle_get_pid (line 463) | async def handle_get_pid(self, client, input, output): method handle_get_name (line 474) | async def handle_get_name(self, client, input, output): method handle_login_with_context (line 485) | async def handle_login_with_context(self, client, input, output): method login (line 502) | async def login(self, *args): method login_ex (line 506) | async def login_ex(self, *args): method request_ticket (line 510) | async def request_ticket(self, *args): method get_pid (line 514) | async def get_pid(self, *args): method get_name (line 518) | async def get_name(self, *args): method login_with_context (line 522) | async def login_with_context(self, *args): class AuthenticationServerNX (line 527) | class AuthenticationServerNX(AuthenticationProtocolNX): method __init__ (line 528) | def __init__(self): method logout (line 538) | async def logout(self, client): method handle (line 541) | async def handle(self, client, method_id, input, output): method handle_validate_and_request_ticket (line 548) | async def handle_validate_and_request_ticket(self, client, input, outp... method handle_validate_and_request_ticket_with_custom_data (line 566) | async def handle_validate_and_request_ticket_with_custom_data(self, cl... method handle_request_ticket (line 586) | async def handle_request_ticket(self, client, input, output): method handle_get_pid (line 603) | async def handle_get_pid(self, client, input, output): method handle_get_name (line 614) | async def handle_get_name(self, client, input, output): method handle_validate_and_request_ticket_with_param (line 625) | async def handle_validate_and_request_ticket_with_param(self, client, ... method validate_and_request_ticket (line 636) | async def validate_and_request_ticket(self, *args): method validate_and_request_ticket_with_custom_data (line 640) | async def validate_and_request_ticket_with_custom_data(self, *args): method request_ticket (line 644) | async def request_ticket(self, *args): method get_pid (line 648) | async def get_pid(self, *args): method get_name (line 652) | async def get_name(self, *args): method validate_and_request_ticket_with_param (line 656) | async def validate_and_request_ticket_with_param(self, *args): FILE: nintendo/nex/backend.py class LoginResult (line 10) | class LoginResult: method __init__ (line 11) | def __init__(self, pid, ticket, source_key, secure_station): class BackEndClient (line 18) | class BackEndClient: method __init__ (line 19) | def __init__(self, settings, client, host, port): method login (line 36) | async def login(self, username, password=None, auth_info=None, servers... method login_old (line 84) | async def login_old(self, username, auth_info): method login_switch (line 95) | async def login_switch(self, username, auth_info): method login_with_param (line 113) | async def login_with_param(self, username, auth_info): method login_guest (line 130) | def login_guest(self): function connect (line 135) | async def connect(settings, host, port): FILE: nintendo/nex/common.py class RMCError (line 12) | class RMCError(Exception): method __init__ (line 13) | def __init__(self, code="Core::Unknown"): method __str__ (line 16) | def __str__(self): method result (line 19) | def result(self): method name (line 22) | def name(self): method code (line 25) | def code(self): class Result (line 29) | class Result: method __init__ (line 30) | def __init__(self, code=0x10001): method __str__ (line 33) | def __str__(self): method success (line 37) | def success(code="Core::Unknown"): method error (line 43) | def error(code="Core::Unknown"): method is_success (line 48) | def is_success(self): method is_error (line 51) | def is_error(self): method code (line 54) | def code(self): method name (line 57) | def name(self): method raise_if_error (line 62) | def raise_if_error(self): class Structure (line 68) | class Structure: method max_version (line 69) | def max_version(self, settings): return 0 method get_hierarchy (line 71) | def get_hierarchy(self): method encode (line 79) | def encode(self, stream): method decode (line 93) | def decode(self, stream): method load (line 117) | def load(self, stream, version): raise NotImplementedError("%s.load()"... method save (line 118) | def save(self, stream, version): raise NotImplementedError("%s.save()"... class Data (line 121) | class Data(Structure): method save (line 122) | def save(self, stream, version): pass method load (line 123) | def load(self, stream, version): pass class DataHolder (line 126) | class DataHolder: method __init__ (line 130) | def __init__(self): method encode (line 133) | def encode(self, stream): method decode (line 142) | def decode(self, stream): method register (line 148) | def register(cls, object, name): class NullData (line 152) | class NullData(Data): method save (line 153) | def save(self, stream, version): pass method load (line 154) | def load(self, stream, version): pass class StationURL (line 158) | class StationURL: method __init__ (line 168) | def __init__(self, scheme="prudp", **kwargs): method __repr__ (line 172) | def __repr__(self): method __getitem__ (line 180) | def __getitem__(self, field): method __setitem__ (line 187) | def __setitem__(self, field, value): method scheme (line 190) | def scheme(self): method address (line 193) | def address(self): method is_public (line 196) | def is_public(self): return bool(self["type"] & 2) method is_behind_nat (line 197) | def is_behind_nat(self): return bool(self["type"] & 1) method is_global (line 198) | def is_global(self): return self.is_public() and not self.is_behind_nat() method copy (line 200) | def copy(self): method parse (line 204) | def parse(cls, string): class DateTime (line 215) | class DateTime: method __init__ (line 216) | def __init__(self, value): method second (line 219) | def second(self): return self.val & 63 method minute (line 220) | def minute(self): return (self.val >> 6) & 63 method hour (line 221) | def hour(self): return (self.val >> 12) & 31 method day (line 222) | def day(self): return (self.val >> 17) & 31 method month (line 223) | def month(self): return (self.val >> 22) & 15 method year (line 224) | def year(self): return self.val >> 26 method value (line 226) | def value(self): return self.val method standard_datetime (line 228) | def standard_datetime(self): method timestamp (line 235) | def timestamp(self): method __repr__ (line 238) | def __repr__(self): method never (line 242) | def never(cls): method future (line 246) | def future(cls): method make (line 250) | def make(cls, year, month=1, day=1, hour=0, minute=0, second=0): method fromtimestamp (line 254) | def fromtimestamp(cls, timestamp): method now (line 259) | def now(cls): class ResultRange (line 263) | class ResultRange(Structure): method __init__ (line 264) | def __init__(self, offset=0, size=10): method load (line 268) | def load(self, stream, version): method save (line 272) | def save(self, stream, version): FILE: nintendo/nex/datastore.py class DataStoreChangeMetaCompareParam (line 10) | class DataStoreChangeMetaCompareParam(common.Structure): method __init__ (line 11) | def __init__(self): method check_required (line 24) | def check_required(self, settings, version): method load (line 29) | def load(self, stream, version): method save (line 41) | def save(self, stream, version): class DataStoreChangeMetaParam (line 55) | class DataStoreChangeMetaParam(common.Structure): method __init__ (line 56) | def __init__(self): method check_required (line 73) | def check_required(self, settings, version): method load (line 78) | def load(self, stream, version): method save (line 94) | def save(self, stream, version): class DataStoreChangeMetaParamV1 (line 112) | class DataStoreChangeMetaParamV1(common.Structure): method __init__ (line 113) | def __init__(self): method check_required (line 125) | def check_required(self, settings, version): method load (line 130) | def load(self, stream, version): method save (line 141) | def save(self, stream, version): class DataStoreCompletePostParam (line 154) | class DataStoreCompletePostParam(common.Structure): method __init__ (line 155) | def __init__(self): method check_required (line 160) | def check_required(self, settings, version): method load (line 165) | def load(self, stream, version): method save (line 169) | def save(self, stream, version): class DataStoreCompletePostParamV1 (line 175) | class DataStoreCompletePostParamV1(common.Structure): method __init__ (line 176) | def __init__(self): method check_required (line 181) | def check_required(self, settings, version): method load (line 186) | def load(self, stream, version): method save (line 190) | def save(self, stream, version): class DataStoreCompleteUpdateParam (line 196) | class DataStoreCompleteUpdateParam(common.Structure): method __init__ (line 197) | def __init__(self): method check_required (line 203) | def check_required(self, settings, version): method load (line 208) | def load(self, stream, version): method save (line 213) | def save(self, stream, version): class DataStoreDeleteParam (line 220) | class DataStoreDeleteParam(common.Structure): method __init__ (line 221) | def __init__(self): method check_required (line 226) | def check_required(self, settings, version): method load (line 231) | def load(self, stream, version): method save (line 235) | def save(self, stream, version): class DataStoreGetMetaParam (line 241) | class DataStoreGetMetaParam(common.Structure): method __init__ (line 242) | def __init__(self): method check_required (line 249) | def check_required(self, settings, version): method load (line 252) | def load(self, stream, version): method save (line 258) | def save(self, stream, version): class DataStoreGetNewArrivedNotificationsParam (line 266) | class DataStoreGetNewArrivedNotificationsParam(common.Structure): method __init__ (line 267) | def __init__(self): method check_required (line 272) | def check_required(self, settings, version): method load (line 277) | def load(self, stream, version): method save (line 281) | def save(self, stream, version): class DataStoreGetNotificationUrlParam (line 287) | class DataStoreGetNotificationUrlParam(common.Structure): method __init__ (line 288) | def __init__(self): method check_required (line 292) | def check_required(self, settings, version): method load (line 297) | def load(self, stream, version): method save (line 300) | def save(self, stream, version): class DataStoreGetSpecificMetaParam (line 305) | class DataStoreGetSpecificMetaParam(common.Structure): method __init__ (line 306) | def __init__(self): method check_required (line 310) | def check_required(self, settings, version): method load (line 315) | def load(self, stream, version): method save (line 318) | def save(self, stream, version): class DataStoreGetSpecificMetaParamV1 (line 323) | class DataStoreGetSpecificMetaParamV1(common.Structure): method __init__ (line 324) | def __init__(self): method check_required (line 328) | def check_required(self, settings, version): method load (line 333) | def load(self, stream, version): method save (line 336) | def save(self, stream, version): class DataStoreKeyValue (line 341) | class DataStoreKeyValue(common.Structure): method __init__ (line 342) | def __init__(self): method check_required (line 347) | def check_required(self, settings, version): method load (line 352) | def load(self, stream, version): method save (line 356) | def save(self, stream, version): class DataStoreMetaInfo (line 362) | class DataStoreMetaInfo(common.Structure): method __init__ (line 363) | def __init__(self): method check_required (line 385) | def check_required(self, settings, version): method load (line 390) | def load(self, stream, version): method save (line 411) | def save(self, stream, version): class DataStoreNotification (line 434) | class DataStoreNotification(common.Structure): method __init__ (line 435) | def __init__(self): method check_required (line 440) | def check_required(self, settings, version): method load (line 445) | def load(self, stream, version): method save (line 449) | def save(self, stream, version): class DataStoreNotificationV1 (line 455) | class DataStoreNotificationV1(common.Structure): method __init__ (line 456) | def __init__(self): method check_required (line 461) | def check_required(self, settings, version): method load (line 466) | def load(self, stream, version): method save (line 470) | def save(self, stream, version): class DataStorePasswordInfo (line 476) | class DataStorePasswordInfo(common.Structure): method __init__ (line 477) | def __init__(self): method check_required (line 483) | def check_required(self, settings, version): method load (line 488) | def load(self, stream, version): method save (line 493) | def save(self, stream, version): class DataStorePermission (line 500) | class DataStorePermission(common.Structure): method __init__ (line 501) | def __init__(self): method check_required (line 506) | def check_required(self, settings, version): method load (line 509) | def load(self, stream, version): method save (line 513) | def save(self, stream, version): class DataStorePersistenceInfo (line 519) | class DataStorePersistenceInfo(common.Structure): method __init__ (line 520) | def __init__(self): method check_required (line 526) | def check_required(self, settings, version): method load (line 531) | def load(self, stream, version): method save (line 536) | def save(self, stream, version): class DataStorePersistenceInitParam (line 543) | class DataStorePersistenceInitParam(common.Structure): method __init__ (line 544) | def __init__(self): method check_required (line 549) | def check_required(self, settings, version): method load (line 552) | def load(self, stream, version): method save (line 556) | def save(self, stream, version): class DataStorePersistenceTarget (line 562) | class DataStorePersistenceTarget(common.Structure): method __init__ (line 563) | def __init__(self): method check_required (line 568) | def check_required(self, settings, version): method load (line 571) | def load(self, stream, version): method save (line 575) | def save(self, stream, version): class DataStorePrepareGetParam (line 581) | class DataStorePrepareGetParam(common.Structure): method __init__ (line 582) | def __init__(self): method check_required (line 590) | def check_required(self, settings, version): method load (line 594) | def load(self, stream, version): method save (line 602) | def save(self, stream, version): class DataStorePrepareGetParamV1 (line 612) | class DataStorePrepareGetParamV1(common.Structure): method __init__ (line 613) | def __init__(self): method check_required (line 618) | def check_required(self, settings, version): method load (line 623) | def load(self, stream, version): method save (line 627) | def save(self, stream, version): class DataStorePreparePostParam (line 633) | class DataStorePreparePostParam(common.Structure): method __init__ (line 634) | def __init__(self): method check_required (line 650) | def check_required(self, settings, version): method load (line 659) | def load(self, stream, version): method save (line 675) | def save(self, stream, version): class DataStorePreparePostParamV1 (line 693) | class DataStorePreparePostParamV1(common.Structure): method __init__ (line 694) | def __init__(self): method check_required (line 708) | def check_required(self, settings, version): method load (line 713) | def load(self, stream, version): method save (line 726) | def save(self, stream, version): class DataStorePrepareUpdateParam (line 741) | class DataStorePrepareUpdateParam(common.Structure): method __init__ (line 742) | def __init__(self): method check_required (line 749) | def check_required(self, settings, version): method load (line 754) | def load(self, stream, version): method save (line 760) | def save(self, stream, version): class DataStoreRateObjectParam (line 768) | class DataStoreRateObjectParam(common.Structure): method __init__ (line 769) | def __init__(self): method check_required (line 774) | def check_required(self, settings, version): method load (line 779) | def load(self, stream, version): method save (line 783) | def save(self, stream, version): class DataStoreRatingInfo (line 789) | class DataStoreRatingInfo(common.Structure): method __init__ (line 790) | def __init__(self): method check_required (line 796) | def check_required(self, settings, version): method load (line 801) | def load(self, stream, version): method save (line 806) | def save(self, stream, version): class DataStoreRatingInfoWithSlot (line 813) | class DataStoreRatingInfoWithSlot(common.Structure): method __init__ (line 814) | def __init__(self): method check_required (line 819) | def check_required(self, settings, version): method load (line 824) | def load(self, stream, version): method save (line 828) | def save(self, stream, version): class DataStoreRatingInitParam (line 834) | class DataStoreRatingInitParam(common.Structure): method __init__ (line 835) | def __init__(self): method check_required (line 846) | def check_required(self, settings, version): method load (line 851) | def load(self, stream, version): method save (line 861) | def save(self, stream, version): class DataStoreRatingInitParamWithSlot (line 873) | class DataStoreRatingInitParamWithSlot(common.Structure): method __init__ (line 874) | def __init__(self): method check_required (line 879) | def check_required(self, settings, version): method load (line 884) | def load(self, stream, version): method save (line 888) | def save(self, stream, version): class DataStoreRatingLog (line 894) | class DataStoreRatingLog(common.Structure): method __init__ (line 895) | def __init__(self): method check_required (line 902) | def check_required(self, settings, version): method load (line 907) | def load(self, stream, version): method save (line 913) | def save(self, stream, version): class DataStoreRatingTarget (line 921) | class DataStoreRatingTarget(common.Structure): method __init__ (line 922) | def __init__(self): method check_required (line 927) | def check_required(self, settings, version): method load (line 932) | def load(self, stream, version): method save (line 936) | def save(self, stream, version): class DataStoreReqGetAdditionalMeta (line 942) | class DataStoreReqGetAdditionalMeta(common.Structure): method __init__ (line 943) | def __init__(self): method check_required (line 950) | def check_required(self, settings, version): method load (line 955) | def load(self, stream, version): method save (line 961) | def save(self, stream, version): class DataStoreReqGetInfo (line 969) | class DataStoreReqGetInfo(common.Structure): method __init__ (line 970) | def __init__(self): method check_required (line 978) | def check_required(self, settings, version): method load (line 987) | def load(self, stream, version): method save (line 995) | def save(self, stream, version): class DataStoreReqGetInfoV1 (line 1005) | class DataStoreReqGetInfoV1(common.Structure): method __init__ (line 1006) | def __init__(self): method check_required (line 1013) | def check_required(self, settings, version): method load (line 1018) | def load(self, stream, version): method save (line 1024) | def save(self, stream, version): class DataStoreReqGetNotificationUrlInfo (line 1032) | class DataStoreReqGetNotificationUrlInfo(common.Structure): method __init__ (line 1033) | def __init__(self): method check_required (line 1040) | def check_required(self, settings, version): method load (line 1045) | def load(self, stream, version): method save (line 1051) | def save(self, stream, version): class DataStoreReqPostInfo (line 1059) | class DataStoreReqPostInfo(common.Structure): method __init__ (line 1060) | def __init__(self): method check_required (line 1068) | def check_required(self, settings, version): method load (line 1073) | def load(self, stream, version): method save (line 1080) | def save(self, stream, version): class DataStoreReqPostInfoV1 (line 1089) | class DataStoreReqPostInfoV1(common.Structure): method __init__ (line 1090) | def __init__(self): method check_required (line 1098) | def check_required(self, settings, version): method load (line 1103) | def load(self, stream, version): method save (line 1110) | def save(self, stream, version): class DataStoreReqUpdateInfo (line 1119) | class DataStoreReqUpdateInfo(common.Structure): method __init__ (line 1120) | def __init__(self): method check_required (line 1128) | def check_required(self, settings, version): method load (line 1133) | def load(self, stream, version): method save (line 1140) | def save(self, stream, version): class DataStoreSearchParam (line 1149) | class DataStoreSearchParam(common.Structure): method __init__ (line 1150) | def __init__(self): method check_required (line 1172) | def check_required(self, settings, version): method load (line 1175) | def load(self, stream, version): method save (line 1196) | def save(self, stream, version): class DataStoreSearchResult (line 1219) | class DataStoreSearchResult(common.Structure): method __init__ (line 1220) | def __init__(self): method check_required (line 1226) | def check_required(self, settings, version): method load (line 1231) | def load(self, stream, version): method save (line 1236) | def save(self, stream, version): class DataStoreSpecificMetaInfo (line 1243) | class DataStoreSpecificMetaInfo(common.Structure): method __init__ (line 1244) | def __init__(self): method check_required (line 1252) | def check_required(self, settings, version): method load (line 1257) | def load(self, stream, version): method save (line 1264) | def save(self, stream, version): class DataStoreSpecificMetaInfoV1 (line 1273) | class DataStoreSpecificMetaInfoV1(common.Structure): method __init__ (line 1274) | def __init__(self): method check_required (line 1282) | def check_required(self, settings, version): method load (line 1287) | def load(self, stream, version): method save (line 1294) | def save(self, stream, version): class DataStoreTouchObjectParam (line 1303) | class DataStoreTouchObjectParam(common.Structure): method __init__ (line 1304) | def __init__(self): method check_required (line 1310) | def check_required(self, settings, version): method load (line 1315) | def load(self, stream, version): method save (line 1320) | def save(self, stream, version): class DataStoreProtocol (line 1327) | class DataStoreProtocol: class DataStoreClient (line 1378) | class DataStoreClient(DataStoreProtocol): method __init__ (line 1379) | def __init__(self, client): method prepare_get_object_v1 (line 1383) | async def prepare_get_object_v1(self, param): method prepare_post_object_v1 (line 1398) | async def prepare_post_object_v1(self, param): method complete_post_object_v1 (line 1413) | async def complete_post_object_v1(self, param): method delete_object (line 1426) | async def delete_object(self, param): method delete_objects (line 1439) | async def delete_objects(self, param, transactional): method change_meta_v1 (line 1455) | async def change_meta_v1(self, param): method change_metas_v1 (line 1468) | async def change_metas_v1(self, data_ids, param, transactional): method get_meta (line 1485) | async def get_meta(self, param): method get_metas (line 1500) | async def get_metas(self, data_ids, param): method prepare_update_object (line 1518) | async def prepare_update_object(self, param): method complete_update_object (line 1533) | async def complete_update_object(self, param): method search_object (line 1546) | async def search_object(self, param): method get_notification_url (line 1561) | async def get_notification_url(self, param): method get_new_arrived_notifications_v1 (line 1576) | async def get_new_arrived_notifications_v1(self, param): method rate_object (line 1593) | async def rate_object(self, target, param, fetch_ratings): method get_rating (line 1610) | async def get_rating(self, target, access_password): method get_ratings (line 1626) | async def get_ratings(self, data_ids, access_password): method reset_rating (line 1644) | async def reset_rating(self, target, update_password): method reset_ratings (line 1658) | async def reset_ratings(self, data_ids, transactional): method get_specific_meta_v1 (line 1674) | async def get_specific_meta_v1(self, param): method post_meta_binary (line 1689) | async def post_meta_binary(self, param): method touch_object (line 1704) | async def touch_object(self, param): method get_rating_with_log (line 1717) | async def get_rating_with_log(self, target, access_password): method prepare_post_object (line 1735) | async def prepare_post_object(self, param): method prepare_get_object (line 1750) | async def prepare_get_object(self, param): method complete_post_object (line 1765) | async def complete_post_object(self, param): method get_new_arrived_notifications (line 1778) | async def get_new_arrived_notifications(self, param): method get_specific_meta (line 1795) | async def get_specific_meta(self, param): method get_persistence_info (line 1810) | async def get_persistence_info(self, owner_id, slot_id): method get_persistence_infos (line 1826) | async def get_persistence_infos(self, owner_id, slot_ids): method perpetuate_object (line 1844) | async def perpetuate_object(self, persistence_slot_id, data_id, delete... method unperpetuate_object (line 1859) | async def unperpetuate_object(self, persistence_slot_id, delete_last_o... method prepare_get_object_or_meta_binary (line 1873) | async def prepare_get_object_or_meta_binary(self, param): method get_password_info (line 1890) | async def get_password_info(self, data_id): method get_password_infos (line 1905) | async def get_password_infos(self, data_ids): method get_metas_multiple_param (line 1922) | async def get_metas_multiple_param(self, params): method complete_post_objects (line 1939) | async def complete_post_objects(self, data_ids): method change_meta (line 1952) | async def change_meta(self, param): method change_metas (line 1965) | async def change_metas(self, data_ids, param, transactional): method rate_objects (line 1982) | async def rate_objects(self, targets, param, transactional, fetch_rati... method post_meta_binary_with_data_id (line 2002) | async def post_meta_binary_with_data_id(self, data_id, param): method post_meta_binaries_with_data_id (line 2016) | async def post_meta_binaries_with_data_id(self, data_ids, param, trans... method rate_object_with_posting (line 2033) | async def rate_object_with_posting(self, target, rate_param, post_para... method rate_objects_with_posting (line 2051) | async def rate_objects_with_posting(self, targets, rate_param, post_pa... method get_object_infos (line 2072) | async def get_object_infos(self, data_ids): method search_object_light (line 2089) | async def search_object_light(self, param): class DataStoreServer (line 2105) | class DataStoreServer(DataStoreProtocol): method __init__ (line 2106) | def __init__(self): method logout (line 2156) | async def logout(self, client): method handle (line 2159) | async def handle(self, client, method_id, input, output): method handle_prepare_get_object_v1 (line 2166) | async def handle_prepare_get_object_v1(self, client, input, output): method handle_prepare_post_object_v1 (line 2177) | async def handle_prepare_post_object_v1(self, client, input, output): method handle_complete_post_object_v1 (line 2188) | async def handle_complete_post_object_v1(self, client, input, output): method handle_delete_object (line 2194) | async def handle_delete_object(self, client, input, output): method handle_delete_objects (line 2200) | async def handle_delete_objects(self, client, input, output): method handle_change_meta_v1 (line 2212) | async def handle_change_meta_v1(self, client, input, output): method handle_change_metas_v1 (line 2218) | async def handle_change_metas_v1(self, client, input, output): method handle_get_meta (line 2231) | async def handle_get_meta(self, client, input, output): method handle_get_metas (line 2242) | async def handle_get_metas(self, client, input, output): method handle_prepare_update_object (line 2258) | async def handle_prepare_update_object(self, client, input, output): method handle_complete_update_object (line 2269) | async def handle_complete_update_object(self, client, input, output): method handle_search_object (line 2275) | async def handle_search_object(self, client, input, output): method handle_get_notification_url (line 2286) | async def handle_get_notification_url(self, client, input, output): method handle_get_new_arrived_notifications_v1 (line 2297) | async def handle_get_new_arrived_notifications_v1(self, client, input,... method handle_rate_object (line 2312) | async def handle_rate_object(self, client, input, output): method handle_get_rating (line 2325) | async def handle_get_rating(self, client, input, output): method handle_get_ratings (line 2337) | async def handle_get_ratings(self, client, input, output): method handle_reset_rating (line 2353) | async def handle_reset_rating(self, client, input, output): method handle_reset_ratings (line 2360) | async def handle_reset_ratings(self, client, input, output): method handle_get_specific_meta_v1 (line 2372) | async def handle_get_specific_meta_v1(self, client, input, output): method handle_post_meta_binary (line 2383) | async def handle_post_meta_binary(self, client, input, output): method handle_touch_object (line 2394) | async def handle_touch_object(self, client, input, output): method handle_get_rating_with_log (line 2400) | async def handle_get_rating_with_log(self, client, input, output): method handle_prepare_post_object (line 2416) | async def handle_prepare_post_object(self, client, input, output): method handle_prepare_get_object (line 2427) | async def handle_prepare_get_object(self, client, input, output): method handle_complete_post_object (line 2438) | async def handle_complete_post_object(self, client, input, output): method handle_get_new_arrived_notifications (line 2444) | async def handle_get_new_arrived_notifications(self, client, input, ou... method handle_get_specific_meta (line 2459) | async def handle_get_specific_meta(self, client, input, output): method handle_get_persistence_info (line 2470) | async def handle_get_persistence_info(self, client, input, output): method handle_get_persistence_infos (line 2482) | async def handle_get_persistence_infos(self, client, input, output): method handle_perpetuate_object (line 2498) | async def handle_perpetuate_object(self, client, input, output): method handle_unperpetuate_object (line 2506) | async def handle_unperpetuate_object(self, client, input, output): method handle_prepare_get_object_or_meta_binary (line 2513) | async def handle_prepare_get_object_or_meta_binary(self, client, input... method handle_get_password_info (line 2528) | async def handle_get_password_info(self, client, input, output): method handle_get_password_infos (line 2539) | async def handle_get_password_infos(self, client, input, output): method handle_get_metas_multiple_param (line 2554) | async def handle_get_metas_multiple_param(self, client, input, output): method handle_complete_post_objects (line 2569) | async def handle_complete_post_objects(self, client, input, output): method handle_change_meta (line 2575) | async def handle_change_meta(self, client, input, output): method handle_change_metas (line 2581) | async def handle_change_metas(self, client, input, output): method handle_rate_objects (line 2594) | async def handle_rate_objects(self, client, input, output): method handle_post_meta_binary_with_data_id (line 2612) | async def handle_post_meta_binary_with_data_id(self, client, input, ou... method handle_post_meta_binaries_with_data_id (line 2619) | async def handle_post_meta_binaries_with_data_id(self, client, input, ... method handle_rate_object_with_posting (line 2632) | async def handle_rate_object_with_posting(self, client, input, output): method handle_rate_objects_with_posting (line 2646) | async def handle_rate_objects_with_posting(self, client, input, output): method handle_get_object_infos (line 2665) | async def handle_get_object_infos(self, client, input, output): method handle_search_object_light (line 2680) | async def handle_search_object_light(self, client, input, output): method prepare_get_object_v1 (line 2691) | async def prepare_get_object_v1(self, *args): method prepare_post_object_v1 (line 2695) | async def prepare_post_object_v1(self, *args): method complete_post_object_v1 (line 2699) | async def complete_post_object_v1(self, *args): method delete_object (line 2703) | async def delete_object(self, *args): method delete_objects (line 2707) | async def delete_objects(self, *args): method change_meta_v1 (line 2711) | async def change_meta_v1(self, *args): method change_metas_v1 (line 2715) | async def change_metas_v1(self, *args): method get_meta (line 2719) | async def get_meta(self, *args): method get_metas (line 2723) | async def get_metas(self, *args): method prepare_update_object (line 2727) | async def prepare_update_object(self, *args): method complete_update_object (line 2731) | async def complete_update_object(self, *args): method search_object (line 2735) | async def search_object(self, *args): method get_notification_url (line 2739) | async def get_notification_url(self, *args): method get_new_arrived_notifications_v1 (line 2743) | async def get_new_arrived_notifications_v1(self, *args): method rate_object (line 2747) | async def rate_object(self, *args): method get_rating (line 2751) | async def get_rating(self, *args): method get_ratings (line 2755) | async def get_ratings(self, *args): method reset_rating (line 2759) | async def reset_rating(self, *args): method reset_ratings (line 2763) | async def reset_ratings(self, *args): method get_specific_meta_v1 (line 2767) | async def get_specific_meta_v1(self, *args): method post_meta_binary (line 2771) | async def post_meta_binary(self, *args): method touch_object (line 2775) | async def touch_object(self, *args): method get_rating_with_log (line 2779) | async def get_rating_with_log(self, *args): method prepare_post_object (line 2783) | async def prepare_post_object(self, *args): method prepare_get_object (line 2787) | async def prepare_get_object(self, *args): method complete_post_object (line 2791) | async def complete_post_object(self, *args): method get_new_arrived_notifications (line 2795) | async def get_new_arrived_notifications(self, *args): method get_specific_meta (line 2799) | async def get_specific_meta(self, *args): method get_persistence_info (line 2803) | async def get_persistence_info(self, *args): method get_persistence_infos (line 2807) | async def get_persistence_infos(self, *args): method perpetuate_object (line 2811) | async def perpetuate_object(self, *args): method unperpetuate_object (line 2815) | async def unperpetuate_object(self, *args): method prepare_get_object_or_meta_binary (line 2819) | async def prepare_get_object_or_meta_binary(self, *args): method get_password_info (line 2823) | async def get_password_info(self, *args): method get_password_infos (line 2827) | async def get_password_infos(self, *args): method get_metas_multiple_param (line 2831) | async def get_metas_multiple_param(self, *args): method complete_post_objects (line 2835) | async def complete_post_objects(self, *args): method change_meta (line 2839) | async def change_meta(self, *args): method change_metas (line 2843) | async def change_metas(self, *args): method rate_objects (line 2847) | async def rate_objects(self, *args): method post_meta_binary_with_data_id (line 2851) | async def post_meta_binary_with_data_id(self, *args): method post_meta_binaries_with_data_id (line 2855) | async def post_meta_binaries_with_data_id(self, *args): method rate_object_with_posting (line 2859) | async def rate_object_with_posting(self, *args): method rate_objects_with_posting (line 2863) | async def rate_objects_with_posting(self, *args): method get_object_infos (line 2867) | async def get_object_infos(self, *args): method search_object_light (line 2871) | async def search_object_light(self, *args): FILE: nintendo/nex/datastore_miitopia_3ds.py class Gender (line 10) | class Gender: class Category (line 16) | class Category: class DataStoreChangeMetaCompareParam (line 39) | class DataStoreChangeMetaCompareParam(common.Structure): method __init__ (line 40) | def __init__(self): method check_required (line 53) | def check_required(self, settings, version): method load (line 58) | def load(self, stream, version): method save (line 70) | def save(self, stream, version): class DataStoreChangeMetaParam (line 84) | class DataStoreChangeMetaParam(common.Structure): method __init__ (line 85) | def __init__(self): method check_required (line 102) | def check_required(self, settings, version): method load (line 107) | def load(self, stream, version): method save (line 123) | def save(self, stream, version): class DataStoreChangeMetaParamV1 (line 141) | class DataStoreChangeMetaParamV1(common.Structure): method __init__ (line 142) | def __init__(self): method check_required (line 154) | def check_required(self, settings, version): method load (line 159) | def load(self, stream, version): method save (line 170) | def save(self, stream, version): class DataStoreCompletePostParam (line 183) | class DataStoreCompletePostParam(common.Structure): method __init__ (line 184) | def __init__(self): method check_required (line 189) | def check_required(self, settings, version): method load (line 194) | def load(self, stream, version): method save (line 198) | def save(self, stream, version): class DataStoreCompletePostParamV1 (line 204) | class DataStoreCompletePostParamV1(common.Structure): method __init__ (line 205) | def __init__(self): method check_required (line 210) | def check_required(self, settings, version): method load (line 215) | def load(self, stream, version): method save (line 219) | def save(self, stream, version): class DataStoreCompleteUpdateParam (line 225) | class DataStoreCompleteUpdateParam(common.Structure): method __init__ (line 226) | def __init__(self): method check_required (line 232) | def check_required(self, settings, version): method load (line 237) | def load(self, stream, version): method save (line 242) | def save(self, stream, version): class DataStoreDeleteParam (line 249) | class DataStoreDeleteParam(common.Structure): method __init__ (line 250) | def __init__(self): method check_required (line 255) | def check_required(self, settings, version): method load (line 260) | def load(self, stream, version): method save (line 264) | def save(self, stream, version): class DataStoreGetMetaParam (line 270) | class DataStoreGetMetaParam(common.Structure): method __init__ (line 271) | def __init__(self): method check_required (line 278) | def check_required(self, settings, version): method load (line 281) | def load(self, stream, version): method save (line 287) | def save(self, stream, version): class DataStoreGetNewArrivedNotificationsParam (line 295) | class DataStoreGetNewArrivedNotificationsParam(common.Structure): method __init__ (line 296) | def __init__(self): method check_required (line 301) | def check_required(self, settings, version): method load (line 306) | def load(self, stream, version): method save (line 310) | def save(self, stream, version): class DataStoreGetNotificationUrlParam (line 316) | class DataStoreGetNotificationUrlParam(common.Structure): method __init__ (line 317) | def __init__(self): method check_required (line 321) | def check_required(self, settings, version): method load (line 326) | def load(self, stream, version): method save (line 329) | def save(self, stream, version): class DataStoreGetSpecificMetaParam (line 334) | class DataStoreGetSpecificMetaParam(common.Structure): method __init__ (line 335) | def __init__(self): method check_required (line 339) | def check_required(self, settings, version): method load (line 344) | def load(self, stream, version): method save (line 347) | def save(self, stream, version): class DataStoreGetSpecificMetaParamV1 (line 352) | class DataStoreGetSpecificMetaParamV1(common.Structure): method __init__ (line 353) | def __init__(self): method check_required (line 357) | def check_required(self, settings, version): method load (line 362) | def load(self, stream, version): method save (line 365) | def save(self, stream, version): class DataStoreKeyValue (line 370) | class DataStoreKeyValue(common.Structure): method __init__ (line 371) | def __init__(self): method check_required (line 376) | def check_required(self, settings, version): method load (line 381) | def load(self, stream, version): method save (line 385) | def save(self, stream, version): class DataStoreMetaInfo (line 391) | class DataStoreMetaInfo(common.Structure): method __init__ (line 392) | def __init__(self): method check_required (line 414) | def check_required(self, settings, version): method load (line 419) | def load(self, stream, version): method save (line 440) | def save(self, stream, version): class DataStoreNotification (line 463) | class DataStoreNotification(common.Structure): method __init__ (line 464) | def __init__(self): method check_required (line 469) | def check_required(self, settings, version): method load (line 474) | def load(self, stream, version): method save (line 478) | def save(self, stream, version): class DataStoreNotificationV1 (line 484) | class DataStoreNotificationV1(common.Structure): method __init__ (line 485) | def __init__(self): method check_required (line 490) | def check_required(self, settings, version): method load (line 495) | def load(self, stream, version): method save (line 499) | def save(self, stream, version): class DataStorePasswordInfo (line 505) | class DataStorePasswordInfo(common.Structure): method __init__ (line 506) | def __init__(self): method check_required (line 512) | def check_required(self, settings, version): method load (line 517) | def load(self, stream, version): method save (line 522) | def save(self, stream, version): class DataStorePermission (line 529) | class DataStorePermission(common.Structure): method __init__ (line 530) | def __init__(self): method check_required (line 535) | def check_required(self, settings, version): method load (line 538) | def load(self, stream, version): method save (line 542) | def save(self, stream, version): class DataStorePersistenceInfo (line 548) | class DataStorePersistenceInfo(common.Structure): method __init__ (line 549) | def __init__(self): method check_required (line 555) | def check_required(self, settings, version): method load (line 560) | def load(self, stream, version): method save (line 565) | def save(self, stream, version): class DataStorePersistenceInitParam (line 572) | class DataStorePersistenceInitParam(common.Structure): method __init__ (line 573) | def __init__(self): method check_required (line 578) | def check_required(self, settings, version): method load (line 581) | def load(self, stream, version): method save (line 585) | def save(self, stream, version): class DataStorePersistenceTarget (line 591) | class DataStorePersistenceTarget(common.Structure): method __init__ (line 592) | def __init__(self): method check_required (line 597) | def check_required(self, settings, version): method load (line 600) | def load(self, stream, version): method save (line 604) | def save(self, stream, version): class DataStorePrepareGetParam (line 610) | class DataStorePrepareGetParam(common.Structure): method __init__ (line 611) | def __init__(self): method check_required (line 619) | def check_required(self, settings, version): method load (line 623) | def load(self, stream, version): method save (line 631) | def save(self, stream, version): class DataStorePrepareGetParamV1 (line 641) | class DataStorePrepareGetParamV1(common.Structure): method __init__ (line 642) | def __init__(self): method check_required (line 647) | def check_required(self, settings, version): method load (line 652) | def load(self, stream, version): method save (line 656) | def save(self, stream, version): class DataStorePreparePostParam (line 662) | class DataStorePreparePostParam(common.Structure): method __init__ (line 663) | def __init__(self): method check_required (line 679) | def check_required(self, settings, version): method load (line 688) | def load(self, stream, version): method save (line 704) | def save(self, stream, version): class DataStorePreparePostParamV1 (line 722) | class DataStorePreparePostParamV1(common.Structure): method __init__ (line 723) | def __init__(self): method check_required (line 737) | def check_required(self, settings, version): method load (line 742) | def load(self, stream, version): method save (line 755) | def save(self, stream, version): class DataStorePrepareUpdateParam (line 770) | class DataStorePrepareUpdateParam(common.Structure): method __init__ (line 771) | def __init__(self): method check_required (line 778) | def check_required(self, settings, version): method load (line 783) | def load(self, stream, version): method save (line 789) | def save(self, stream, version): class DataStoreRateObjectParam (line 797) | class DataStoreRateObjectParam(common.Structure): method __init__ (line 798) | def __init__(self): method check_required (line 803) | def check_required(self, settings, version): method load (line 808) | def load(self, stream, version): method save (line 812) | def save(self, stream, version): class DataStoreRatingInfo (line 818) | class DataStoreRatingInfo(common.Structure): method __init__ (line 819) | def __init__(self): method check_required (line 825) | def check_required(self, settings, version): method load (line 830) | def load(self, stream, version): method save (line 835) | def save(self, stream, version): class DataStoreRatingInfoWithSlot (line 842) | class DataStoreRatingInfoWithSlot(common.Structure): method __init__ (line 843) | def __init__(self): method check_required (line 848) | def check_required(self, settings, version): method load (line 853) | def load(self, stream, version): method save (line 857) | def save(self, stream, version): class DataStoreRatingInitParam (line 863) | class DataStoreRatingInitParam(common.Structure): method __init__ (line 864) | def __init__(self): method check_required (line 875) | def check_required(self, settings, version): method load (line 880) | def load(self, stream, version): method save (line 890) | def save(self, stream, version): class DataStoreRatingInitParamWithSlot (line 902) | class DataStoreRatingInitParamWithSlot(common.Structure): method __init__ (line 903) | def __init__(self): method check_required (line 908) | def check_required(self, settings, version): method load (line 913) | def load(self, stream, version): method save (line 917) | def save(self, stream, version): class DataStoreRatingLog (line 923) | class DataStoreRatingLog(common.Structure): method __init__ (line 924) | def __init__(self): method check_required (line 931) | def check_required(self, settings, version): method load (line 936) | def load(self, stream, version): method save (line 942) | def save(self, stream, version): class DataStoreRatingTarget (line 950) | class DataStoreRatingTarget(common.Structure): method __init__ (line 951) | def __init__(self): method check_required (line 956) | def check_required(self, settings, version): method load (line 961) | def load(self, stream, version): method save (line 965) | def save(self, stream, version): class DataStoreReqGetAdditionalMeta (line 971) | class DataStoreReqGetAdditionalMeta(common.Structure): method __init__ (line 972) | def __init__(self): method check_required (line 979) | def check_required(self, settings, version): method load (line 984) | def load(self, stream, version): method save (line 990) | def save(self, stream, version): class DataStoreReqGetInfo (line 998) | class DataStoreReqGetInfo(common.Structure): method __init__ (line 999) | def __init__(self): method check_required (line 1007) | def check_required(self, settings, version): method load (line 1016) | def load(self, stream, version): method save (line 1024) | def save(self, stream, version): class DataStoreReqGetInfoV1 (line 1034) | class DataStoreReqGetInfoV1(common.Structure): method __init__ (line 1035) | def __init__(self): method check_required (line 1042) | def check_required(self, settings, version): method load (line 1047) | def load(self, stream, version): method save (line 1053) | def save(self, stream, version): class DataStoreReqGetNotificationUrlInfo (line 1061) | class DataStoreReqGetNotificationUrlInfo(common.Structure): method __init__ (line 1062) | def __init__(self): method check_required (line 1069) | def check_required(self, settings, version): method load (line 1074) | def load(self, stream, version): method save (line 1080) | def save(self, stream, version): class DataStoreReqPostInfo (line 1088) | class DataStoreReqPostInfo(common.Structure): method __init__ (line 1089) | def __init__(self): method check_required (line 1097) | def check_required(self, settings, version): method load (line 1102) | def load(self, stream, version): method save (line 1109) | def save(self, stream, version): class DataStoreReqPostInfoV1 (line 1118) | class DataStoreReqPostInfoV1(common.Structure): method __init__ (line 1119) | def __init__(self): method check_required (line 1127) | def check_required(self, settings, version): method load (line 1132) | def load(self, stream, version): method save (line 1139) | def save(self, stream, version): class DataStoreReqUpdateInfo (line 1148) | class DataStoreReqUpdateInfo(common.Structure): method __init__ (line 1149) | def __init__(self): method check_required (line 1157) | def check_required(self, settings, version): method load (line 1162) | def load(self, stream, version): method save (line 1169) | def save(self, stream, version): class DataStoreSearchParam (line 1178) | class DataStoreSearchParam(common.Structure): method __init__ (line 1179) | def __init__(self): method check_required (line 1201) | def check_required(self, settings, version): method load (line 1204) | def load(self, stream, version): method save (line 1225) | def save(self, stream, version): class DataStoreSearchResult (line 1248) | class DataStoreSearchResult(common.Structure): method __init__ (line 1249) | def __init__(self): method check_required (line 1255) | def check_required(self, settings, version): method load (line 1260) | def load(self, stream, version): method save (line 1265) | def save(self, stream, version): class DataStoreSpecificMetaInfo (line 1272) | class DataStoreSpecificMetaInfo(common.Structure): method __init__ (line 1273) | def __init__(self): method check_required (line 1281) | def check_required(self, settings, version): method load (line 1286) | def load(self, stream, version): method save (line 1293) | def save(self, stream, version): class DataStoreSpecificMetaInfoV1 (line 1302) | class DataStoreSpecificMetaInfoV1(common.Structure): method __init__ (line 1303) | def __init__(self): method check_required (line 1311) | def check_required(self, settings, version): method load (line 1316) | def load(self, stream, version): method save (line 1323) | def save(self, stream, version): class DataStoreTouchObjectParam (line 1332) | class DataStoreTouchObjectParam(common.Structure): method __init__ (line 1333) | def __init__(self): method check_required (line 1339) | def check_required(self, settings, version): method load (line 1344) | def load(self, stream, version): method save (line 1349) | def save(self, stream, version): class MiiTubeSearchParam (line 1356) | class MiiTubeSearchParam(common.Structure): method __init__ (line 1357) | def __init__(self): method check_required (line 1367) | def check_required(self, settings, version): method load (line 1372) | def load(self, stream, version): method save (line 1381) | def save(self, stream, version): class MiiTubeMiiInfo (line 1392) | class MiiTubeMiiInfo(common.Structure): method __init__ (line 1393) | def __init__(self): method check_required (line 1399) | def check_required(self, settings, version): method load (line 1404) | def load(self, stream, version): method save (line 1409) | def save(self, stream, version): class MiiTubeSearchResult (line 1416) | class MiiTubeSearchResult(common.Structure): method __init__ (line 1417) | def __init__(self): method check_required (line 1424) | def check_required(self, settings, version): method load (line 1429) | def load(self, stream, version): method save (line 1435) | def save(self, stream, version): class DataStoreProtocolMiitopia3DS (line 1443) | class DataStoreProtocolMiitopia3DS: class DataStoreClientMiitopia3DS (line 1495) | class DataStoreClientMiitopia3DS(DataStoreProtocolMiitopia3DS): method __init__ (line 1496) | def __init__(self, client): method prepare_get_object_v1 (line 1500) | async def prepare_get_object_v1(self, param): method prepare_post_object_v1 (line 1515) | async def prepare_post_object_v1(self, param): method complete_post_object_v1 (line 1530) | async def complete_post_object_v1(self, param): method delete_object (line 1543) | async def delete_object(self, param): method delete_objects (line 1556) | async def delete_objects(self, param, transactional): method change_meta_v1 (line 1572) | async def change_meta_v1(self, param): method change_metas_v1 (line 1585) | async def change_metas_v1(self, data_ids, param, transactional): method get_meta (line 1602) | async def get_meta(self, param): method get_metas (line 1617) | async def get_metas(self, data_ids, param): method prepare_update_object (line 1635) | async def prepare_update_object(self, param): method complete_update_object (line 1650) | async def complete_update_object(self, param): method search_object (line 1663) | async def search_object(self, param): method get_notification_url (line 1678) | async def get_notification_url(self, param): method get_new_arrived_notifications_v1 (line 1693) | async def get_new_arrived_notifications_v1(self, param): method rate_object (line 1710) | async def rate_object(self, target, param, fetch_ratings): method get_rating (line 1727) | async def get_rating(self, target, access_password): method get_ratings (line 1743) | async def get_ratings(self, data_ids, access_password): method reset_rating (line 1761) | async def reset_rating(self, target, update_password): method reset_ratings (line 1775) | async def reset_ratings(self, data_ids, transactional): method get_specific_meta_v1 (line 1791) | async def get_specific_meta_v1(self, param): method post_meta_binary (line 1806) | async def post_meta_binary(self, param): method touch_object (line 1821) | async def touch_object(self, param): method get_rating_with_log (line 1834) | async def get_rating_with_log(self, target, access_password): method prepare_post_object (line 1852) | async def prepare_post_object(self, param): method prepare_get_object (line 1867) | async def prepare_get_object(self, param): method complete_post_object (line 1882) | async def complete_post_object(self, param): method get_new_arrived_notifications (line 1895) | async def get_new_arrived_notifications(self, param): method get_specific_meta (line 1912) | async def get_specific_meta(self, param): method get_persistence_info (line 1927) | async def get_persistence_info(self, owner_id, slot_id): method get_persistence_infos (line 1943) | async def get_persistence_infos(self, owner_id, slot_ids): method perpetuate_object (line 1961) | async def perpetuate_object(self, persistence_slot_id, data_id, delete... method unperpetuate_object (line 1976) | async def unperpetuate_object(self, persistence_slot_id, delete_last_o... method prepare_get_object_or_meta_binary (line 1990) | async def prepare_get_object_or_meta_binary(self, param): method get_password_info (line 2007) | async def get_password_info(self, data_id): method get_password_infos (line 2022) | async def get_password_infos(self, data_ids): method get_metas_multiple_param (line 2039) | async def get_metas_multiple_param(self, params): method complete_post_objects (line 2056) | async def complete_post_objects(self, data_ids): method change_meta (line 2069) | async def change_meta(self, param): method change_metas (line 2082) | async def change_metas(self, data_ids, param, transactional): method rate_objects (line 2099) | async def rate_objects(self, targets, param, transactional, fetch_rati... method post_meta_binary_with_data_id (line 2119) | async def post_meta_binary_with_data_id(self, data_id, param): method post_meta_binaries_with_data_id (line 2133) | async def post_meta_binaries_with_data_id(self, data_ids, param, trans... method rate_object_with_posting (line 2150) | async def rate_object_with_posting(self, target, rate_param, post_para... method rate_objects_with_posting (line 2168) | async def rate_objects_with_posting(self, targets, rate_param, post_pa... method get_object_infos (line 2189) | async def get_object_infos(self, data_ids): method search_object_light (line 2206) | async def search_object_light(self, param): method search_mii (line 2221) | async def search_mii(self, param): class DataStoreServerMiitopia3DS (line 2237) | class DataStoreServerMiitopia3DS(DataStoreProtocolMiitopia3DS): method __init__ (line 2238) | def __init__(self): method logout (line 2289) | async def logout(self, client): method handle (line 2292) | async def handle(self, client, method_id, input, output): method handle_prepare_get_object_v1 (line 2299) | async def handle_prepare_get_object_v1(self, client, input, output): method handle_prepare_post_object_v1 (line 2310) | async def handle_prepare_post_object_v1(self, client, input, output): method handle_complete_post_object_v1 (line 2321) | async def handle_complete_post_object_v1(self, client, input, output): method handle_delete_object (line 2327) | async def handle_delete_object(self, client, input, output): method handle_delete_objects (line 2333) | async def handle_delete_objects(self, client, input, output): method handle_change_meta_v1 (line 2345) | async def handle_change_meta_v1(self, client, input, output): method handle_change_metas_v1 (line 2351) | async def handle_change_metas_v1(self, client, input, output): method handle_get_meta (line 2364) | async def handle_get_meta(self, client, input, output): method handle_get_metas (line 2375) | async def handle_get_metas(self, client, input, output): method handle_prepare_update_object (line 2391) | async def handle_prepare_update_object(self, client, input, output): method handle_complete_update_object (line 2402) | async def handle_complete_update_object(self, client, input, output): method handle_search_object (line 2408) | async def handle_search_object(self, client, input, output): method handle_get_notification_url (line 2419) | async def handle_get_notification_url(self, client, input, output): method handle_get_new_arrived_notifications_v1 (line 2430) | async def handle_get_new_arrived_notifications_v1(self, client, input,... method handle_rate_object (line 2445) | async def handle_rate_object(self, client, input, output): method handle_get_rating (line 2458) | async def handle_get_rating(self, client, input, output): method handle_get_ratings (line 2470) | async def handle_get_ratings(self, client, input, output): method handle_reset_rating (line 2486) | async def handle_reset_rating(self, client, input, output): method handle_reset_ratings (line 2493) | async def handle_reset_ratings(self, client, input, output): method handle_get_specific_meta_v1 (line 2505) | async def handle_get_specific_meta_v1(self, client, input, output): method handle_post_meta_binary (line 2516) | async def handle_post_meta_binary(self, client, input, output): method handle_touch_object (line 2527) | async def handle_touch_object(self, client, input, output): method handle_get_rating_with_log (line 2533) | async def handle_get_rating_with_log(self, client, input, output): method handle_prepare_post_object (line 2549) | async def handle_prepare_post_object(self, client, input, output): method handle_prepare_get_object (line 2560) | async def handle_prepare_get_object(self, client, input, output): method handle_complete_post_object (line 2571) | async def handle_complete_post_object(self, client, input, output): method handle_get_new_arrived_notifications (line 2577) | async def handle_get_new_arrived_notifications(self, client, input, ou... method handle_get_specific_meta (line 2592) | async def handle_get_specific_meta(self, client, input, output): method handle_get_persistence_info (line 2603) | async def handle_get_persistence_info(self, client, input, output): method handle_get_persistence_infos (line 2615) | async def handle_get_persistence_infos(self, client, input, output): method handle_perpetuate_object (line 2631) | async def handle_perpetuate_object(self, client, input, output): method handle_unperpetuate_object (line 2639) | async def handle_unperpetuate_object(self, client, input, output): method handle_prepare_get_object_or_meta_binary (line 2646) | async def handle_prepare_get_object_or_meta_binary(self, client, input... method handle_get_password_info (line 2661) | async def handle_get_password_info(self, client, input, output): method handle_get_password_infos (line 2672) | async def handle_get_password_infos(self, client, input, output): method handle_get_metas_multiple_param (line 2687) | async def handle_get_metas_multiple_param(self, client, input, output): method handle_complete_post_objects (line 2702) | async def handle_complete_post_objects(self, client, input, output): method handle_change_meta (line 2708) | async def handle_change_meta(self, client, input, output): method handle_change_metas (line 2714) | async def handle_change_metas(self, client, input, output): method handle_rate_objects (line 2727) | async def handle_rate_objects(self, client, input, output): method handle_post_meta_binary_with_data_id (line 2745) | async def handle_post_meta_binary_with_data_id(self, client, input, ou... method handle_post_meta_binaries_with_data_id (line 2752) | async def handle_post_meta_binaries_with_data_id(self, client, input, ... method handle_rate_object_with_posting (line 2765) | async def handle_rate_object_with_posting(self, client, input, output): method handle_rate_objects_with_posting (line 2779) | async def handle_rate_objects_with_posting(self, client, input, output): method handle_get_object_infos (line 2798) | async def handle_get_object_infos(self, client, input, output): method handle_search_object_light (line 2813) | async def handle_search_object_light(self, client, input, output): method handle_search_mii (line 2824) | async def handle_search_mii(self, client, input, output): method prepare_get_object_v1 (line 2835) | async def prepare_get_object_v1(self, *args): method prepare_post_object_v1 (line 2839) | async def prepare_post_object_v1(self, *args): method complete_post_object_v1 (line 2843) | async def complete_post_object_v1(self, *args): method delete_object (line 2847) | async def delete_object(self, *args): method delete_objects (line 2851) | async def delete_objects(self, *args): method change_meta_v1 (line 2855) | async def change_meta_v1(self, *args): method change_metas_v1 (line 2859) | async def change_metas_v1(self, *args): method get_meta (line 2863) | async def get_meta(self, *args): method get_metas (line 2867) | async def get_metas(self, *args): method prepare_update_object (line 2871) | async def prepare_update_object(self, *args): method complete_update_object (line 2875) | async def complete_update_object(self, *args): method search_object (line 2879) | async def search_object(self, *args): method get_notification_url (line 2883) | async def get_notification_url(self, *args): method get_new_arrived_notifications_v1 (line 2887) | async def get_new_arrived_notifications_v1(self, *args): method rate_object (line 2891) | async def rate_object(self, *args): method get_rating (line 2895) | async def get_rating(self, *args): method get_ratings (line 2899) | async def get_ratings(self, *args): method reset_rating (line 2903) | async def reset_rating(self, *args): method reset_ratings (line 2907) | async def reset_ratings(self, *args): method get_specific_meta_v1 (line 2911) | async def get_specific_meta_v1(self, *args): method post_meta_binary (line 2915) | async def post_meta_binary(self, *args): method touch_object (line 2919) | async def touch_object(self, *args): method get_rating_with_log (line 2923) | async def get_rating_with_log(self, *args): method prepare_post_object (line 2927) | async def prepare_post_object(self, *args): method prepare_get_object (line 2931) | async def prepare_get_object(self, *args): method complete_post_object (line 2935) | async def complete_post_object(self, *args): method get_new_arrived_notifications (line 2939) | async def get_new_arrived_notifications(self, *args): method get_specific_meta (line 2943) | async def get_specific_meta(self, *args): method get_persistence_info (line 2947) | async def get_persistence_info(self, *args): method get_persistence_infos (line 2951) | async def get_persistence_infos(self, *args): method perpetuate_object (line 2955) | async def perpetuate_object(self, *args): method unperpetuate_object (line 2959) | async def unperpetuate_object(self, *args): method prepare_get_object_or_meta_binary (line 2963) | async def prepare_get_object_or_meta_binary(self, *args): method get_password_info (line 2967) | async def get_password_info(self, *args): method get_password_infos (line 2971) | async def get_password_infos(self, *args): method get_metas_multiple_param (line 2975) | async def get_metas_multiple_param(self, *args): method complete_post_objects (line 2979) | async def complete_post_objects(self, *args): method change_meta (line 2983) | async def change_meta(self, *args): method change_metas (line 2987) | async def change_metas(self, *args): method rate_objects (line 2991) | async def rate_objects(self, *args): method post_meta_binary_with_data_id (line 2995) | async def post_meta_binary_with_data_id(self, *args): method post_meta_binaries_with_data_id (line 2999) | async def post_meta_binaries_with_data_id(self, *args): method rate_object_with_posting (line 3003) | async def rate_object_with_posting(self, *args): method rate_objects_with_posting (line 3007) | async def rate_objects_with_posting(self, *args): method get_object_infos (line 3011) | async def get_object_infos(self, *args): method search_object_light (line 3015) | async def search_object_light(self, *args): method search_mii (line 3019) | async def search_mii(self, *args): FILE: nintendo/nex/datastore_smm.py class DataStoreChangeMetaCompareParam (line 10) | class DataStoreChangeMetaCompareParam(common.Structure): method __init__ (line 11) | def __init__(self): method check_required (line 24) | def check_required(self, settings, version): method load (line 29) | def load(self, stream, version): method save (line 41) | def save(self, stream, version): class DataStoreChangeMetaParam (line 55) | class DataStoreChangeMetaParam(common.Structure): method __init__ (line 56) | def __init__(self): method check_required (line 73) | def check_required(self, settings, version): method load (line 78) | def load(self, stream, version): method save (line 94) | def save(self, stream, version): class DataStoreChangeMetaParamV1 (line 112) | class DataStoreChangeMetaParamV1(common.Structure): method __init__ (line 113) | def __init__(self): method check_required (line 125) | def check_required(self, settings, version): method load (line 130) | def load(self, stream, version): method save (line 141) | def save(self, stream, version): class DataStoreCompletePostParam (line 154) | class DataStoreCompletePostParam(common.Structure): method __init__ (line 155) | def __init__(self): method check_required (line 160) | def check_required(self, settings, version): method load (line 165) | def load(self, stream, version): method save (line 169) | def save(self, stream, version): class DataStoreCompletePostParamV1 (line 175) | class DataStoreCompletePostParamV1(common.Structure): method __init__ (line 176) | def __init__(self): method check_required (line 181) | def check_required(self, settings, version): method load (line 186) | def load(self, stream, version): method save (line 190) | def save(self, stream, version): class DataStoreCompleteUpdateParam (line 196) | class DataStoreCompleteUpdateParam(common.Structure): method __init__ (line 197) | def __init__(self): method check_required (line 203) | def check_required(self, settings, version): method load (line 208) | def load(self, stream, version): method save (line 213) | def save(self, stream, version): class DataStoreDeleteParam (line 220) | class DataStoreDeleteParam(common.Structure): method __init__ (line 221) | def __init__(self): method check_required (line 226) | def check_required(self, settings, version): method load (line 231) | def load(self, stream, version): method save (line 235) | def save(self, stream, version): class DataStoreGetMetaParam (line 241) | class DataStoreGetMetaParam(common.Structure): method __init__ (line 242) | def __init__(self): method check_required (line 249) | def check_required(self, settings, version): method load (line 252) | def load(self, stream, version): method save (line 258) | def save(self, stream, version): class DataStoreGetNewArrivedNotificationsParam (line 266) | class DataStoreGetNewArrivedNotificationsParam(common.Structure): method __init__ (line 267) | def __init__(self): method check_required (line 272) | def check_required(self, settings, version): method load (line 277) | def load(self, stream, version): method save (line 281) | def save(self, stream, version): class DataStoreGetNotificationUrlParam (line 287) | class DataStoreGetNotificationUrlParam(common.Structure): method __init__ (line 288) | def __init__(self): method check_required (line 292) | def check_required(self, settings, version): method load (line 297) | def load(self, stream, version): method save (line 300) | def save(self, stream, version): class DataStoreGetSpecificMetaParam (line 305) | class DataStoreGetSpecificMetaParam(common.Structure): method __init__ (line 306) | def __init__(self): method check_required (line 310) | def check_required(self, settings, version): method load (line 315) | def load(self, stream, version): method save (line 318) | def save(self, stream, version): class DataStoreGetSpecificMetaParamV1 (line 323) | class DataStoreGetSpecificMetaParamV1(common.Structure): method __init__ (line 324) | def __init__(self): method check_required (line 328) | def check_required(self, settings, version): method load (line 333) | def load(self, stream, version): method save (line 336) | def save(self, stream, version): class DataStoreKeyValue (line 341) | class DataStoreKeyValue(common.Structure): method __init__ (line 342) | def __init__(self): method check_required (line 347) | def check_required(self, settings, version): method load (line 352) | def load(self, stream, version): method save (line 356) | def save(self, stream, version): class DataStoreMetaInfo (line 362) | class DataStoreMetaInfo(common.Structure): method __init__ (line 363) | def __init__(self): method check_required (line 385) | def check_required(self, settings, version): method load (line 390) | def load(self, stream, version): method save (line 411) | def save(self, stream, version): class DataStoreNotification (line 434) | class DataStoreNotification(common.Structure): method __init__ (line 435) | def __init__(self): method check_required (line 440) | def check_required(self, settings, version): method load (line 445) | def load(self, stream, version): method save (line 449) | def save(self, stream, version): class DataStoreNotificationV1 (line 455) | class DataStoreNotificationV1(common.Structure): method __init__ (line 456) | def __init__(self): method check_required (line 461) | def check_required(self, settings, version): method load (line 466) | def load(self, stream, version): method save (line 470) | def save(self, stream, version): class DataStorePasswordInfo (line 476) | class DataStorePasswordInfo(common.Structure): method __init__ (line 477) | def __init__(self): method check_required (line 483) | def check_required(self, settings, version): method load (line 488) | def load(self, stream, version): method save (line 493) | def save(self, stream, version): class DataStorePermission (line 500) | class DataStorePermission(common.Structure): method __init__ (line 501) | def __init__(self): method check_required (line 506) | def check_required(self, settings, version): method load (line 509) | def load(self, stream, version): method save (line 513) | def save(self, stream, version): class DataStorePersistenceInfo (line 519) | class DataStorePersistenceInfo(common.Structure): method __init__ (line 520) | def __init__(self): method check_required (line 526) | def check_required(self, settings, version): method load (line 531) | def load(self, stream, version): method save (line 536) | def save(self, stream, version): class DataStorePersistenceInitParam (line 543) | class DataStorePersistenceInitParam(common.Structure): method __init__ (line 544) | def __init__(self): method check_required (line 549) | def check_required(self, settings, version): method load (line 552) | def load(self, stream, version): method save (line 556) | def save(self, stream, version): class DataStorePersistenceTarget (line 562) | class DataStorePersistenceTarget(common.Structure): method __init__ (line 563) | def __init__(self): method check_required (line 568) | def check_required(self, settings, version): method load (line 571) | def load(self, stream, version): method save (line 575) | def save(self, stream, version): class DataStorePrepareGetParam (line 581) | class DataStorePrepareGetParam(common.Structure): method __init__ (line 582) | def __init__(self): method check_required (line 590) | def check_required(self, settings, version): method load (line 594) | def load(self, stream, version): method save (line 602) | def save(self, stream, version): class DataStorePrepareGetParamV1 (line 612) | class DataStorePrepareGetParamV1(common.Structure): method __init__ (line 613) | def __init__(self): method check_required (line 618) | def check_required(self, settings, version): method load (line 623) | def load(self, stream, version): method save (line 627) | def save(self, stream, version): class DataStorePreparePostParam (line 633) | class DataStorePreparePostParam(common.Structure): method __init__ (line 634) | def __init__(self): method check_required (line 650) | def check_required(self, settings, version): method load (line 659) | def load(self, stream, version): method save (line 675) | def save(self, stream, version): class DataStorePreparePostParamV1 (line 693) | class DataStorePreparePostParamV1(common.Structure): method __init__ (line 694) | def __init__(self): method check_required (line 708) | def check_required(self, settings, version): method load (line 713) | def load(self, stream, version): method save (line 726) | def save(self, stream, version): class DataStorePrepareUpdateParam (line 741) | class DataStorePrepareUpdateParam(common.Structure): method __init__ (line 742) | def __init__(self): method check_required (line 749) | def check_required(self, settings, version): method load (line 754) | def load(self, stream, version): method save (line 760) | def save(self, stream, version): class DataStoreRateObjectParam (line 768) | class DataStoreRateObjectParam(common.Structure): method __init__ (line 769) | def __init__(self): method check_required (line 774) | def check_required(self, settings, version): method load (line 779) | def load(self, stream, version): method save (line 783) | def save(self, stream, version): class DataStoreRatingInfo (line 789) | class DataStoreRatingInfo(common.Structure): method __init__ (line 790) | def __init__(self): method check_required (line 796) | def check_required(self, settings, version): method load (line 801) | def load(self, stream, version): method save (line 806) | def save(self, stream, version): class DataStoreRatingInfoWithSlot (line 813) | class DataStoreRatingInfoWithSlot(common.Structure): method __init__ (line 814) | def __init__(self): method check_required (line 819) | def check_required(self, settings, version): method load (line 824) | def load(self, stream, version): method save (line 828) | def save(self, stream, version): class DataStoreRatingInitParam (line 834) | class DataStoreRatingInitParam(common.Structure): method __init__ (line 835) | def __init__(self): method check_required (line 846) | def check_required(self, settings, version): method load (line 851) | def load(self, stream, version): method save (line 861) | def save(self, stream, version): class DataStoreRatingInitParamWithSlot (line 873) | class DataStoreRatingInitParamWithSlot(common.Structure): method __init__ (line 874) | def __init__(self): method check_required (line 879) | def check_required(self, settings, version): method load (line 884) | def load(self, stream, version): method save (line 888) | def save(self, stream, version): class DataStoreRatingLog (line 894) | class DataStoreRatingLog(common.Structure): method __init__ (line 895) | def __init__(self): method check_required (line 902) | def check_required(self, settings, version): method load (line 907) | def load(self, stream, version): method save (line 913) | def save(self, stream, version): class DataStoreRatingTarget (line 921) | class DataStoreRatingTarget(common.Structure): method __init__ (line 922) | def __init__(self): method check_required (line 927) | def check_required(self, settings, version): method load (line 932) | def load(self, stream, version): method save (line 936) | def save(self, stream, version): class DataStoreReqGetAdditionalMeta (line 942) | class DataStoreReqGetAdditionalMeta(common.Structure): method __init__ (line 943) | def __init__(self): method check_required (line 950) | def check_required(self, settings, version): method load (line 955) | def load(self, stream, version): method save (line 961) | def save(self, stream, version): class DataStoreReqGetInfo (line 969) | class DataStoreReqGetInfo(common.Structure): method __init__ (line 970) | def __init__(self): method check_required (line 978) | def check_required(self, settings, version): method load (line 987) | def load(self, stream, version): method save (line 995) | def save(self, stream, version): class DataStoreReqGetInfoV1 (line 1005) | class DataStoreReqGetInfoV1(common.Structure): method __init__ (line 1006) | def __init__(self): method check_required (line 1013) | def check_required(self, settings, version): method load (line 1018) | def load(self, stream, version): method save (line 1024) | def save(self, stream, version): class DataStoreReqGetNotificationUrlInfo (line 1032) | class DataStoreReqGetNotificationUrlInfo(common.Structure): method __init__ (line 1033) | def __init__(self): method check_required (line 1040) | def check_required(self, settings, version): method load (line 1045) | def load(self, stream, version): method save (line 1051) | def save(self, stream, version): class DataStoreReqPostInfo (line 1059) | class DataStoreReqPostInfo(common.Structure): method __init__ (line 1060) | def __init__(self): method check_required (line 1068) | def check_required(self, settings, version): method load (line 1073) | def load(self, stream, version): method save (line 1080) | def save(self, stream, version): class DataStoreReqPostInfoV1 (line 1089) | class DataStoreReqPostInfoV1(common.Structure): method __init__ (line 1090) | def __init__(self): method check_required (line 1098) | def check_required(self, settings, version): method load (line 1103) | def load(self, stream, version): method save (line 1110) | def save(self, stream, version): class DataStoreReqUpdateInfo (line 1119) | class DataStoreReqUpdateInfo(common.Structure): method __init__ (line 1120) | def __init__(self): method check_required (line 1128) | def check_required(self, settings, version): method load (line 1133) | def load(self, stream, version): method save (line 1140) | def save(self, stream, version): class DataStoreSearchParam (line 1149) | class DataStoreSearchParam(common.Structure): method __init__ (line 1150) | def __init__(self): method check_required (line 1172) | def check_required(self, settings, version): method load (line 1175) | def load(self, stream, version): method save (line 1196) | def save(self, stream, version): class DataStoreSearchResult (line 1219) | class DataStoreSearchResult(common.Structure): method __init__ (line 1220) | def __init__(self): method check_required (line 1226) | def check_required(self, settings, version): method load (line 1231) | def load(self, stream, version): method save (line 1236) | def save(self, stream, version): class DataStoreSpecificMetaInfo (line 1243) | class DataStoreSpecificMetaInfo(common.Structure): method __init__ (line 1244) | def __init__(self): method check_required (line 1252) | def check_required(self, settings, version): method load (line 1257) | def load(self, stream, version): method save (line 1264) | def save(self, stream, version): class DataStoreSpecificMetaInfoV1 (line 1273) | class DataStoreSpecificMetaInfoV1(common.Structure): method __init__ (line 1274) | def __init__(self): method check_required (line 1282) | def check_required(self, settings, version): method load (line 1287) | def load(self, stream, version): method save (line 1294) | def save(self, stream, version): class DataStoreTouchObjectParam (line 1303) | class DataStoreTouchObjectParam(common.Structure): method __init__ (line 1304) | def __init__(self): method check_required (line 1310) | def check_required(self, settings, version): method load (line 1315) | def load(self, stream, version): method save (line 1320) | def save(self, stream, version): class DataStoreProtocolSMM (line 1327) | class DataStoreProtocolSMM: class DataStoreClientSMM (line 1380) | class DataStoreClientSMM(DataStoreProtocolSMM): method __init__ (line 1381) | def __init__(self, client): method prepare_get_object_v1 (line 1385) | async def prepare_get_object_v1(self, param): method prepare_post_object_v1 (line 1400) | async def prepare_post_object_v1(self, param): method complete_post_object_v1 (line 1415) | async def complete_post_object_v1(self, param): method delete_object (line 1428) | async def delete_object(self, param): method delete_objects (line 1441) | async def delete_objects(self, param, transactional): method change_meta_v1 (line 1457) | async def change_meta_v1(self, param): method change_metas_v1 (line 1470) | async def change_metas_v1(self, data_ids, param, transactional): method get_meta (line 1487) | async def get_meta(self, param): method get_metas (line 1502) | async def get_metas(self, data_ids, param): method prepare_update_object (line 1520) | async def prepare_update_object(self, param): method complete_update_object (line 1535) | async def complete_update_object(self, param): method search_object (line 1548) | async def search_object(self, param): method get_notification_url (line 1563) | async def get_notification_url(self, param): method get_new_arrived_notifications_v1 (line 1578) | async def get_new_arrived_notifications_v1(self, param): method rate_object (line 1595) | async def rate_object(self, target, param, fetch_ratings): method get_rating (line 1612) | async def get_rating(self, target, access_password): method get_ratings (line 1628) | async def get_ratings(self, data_ids, access_password): method reset_rating (line 1646) | async def reset_rating(self, target, update_password): method reset_ratings (line 1660) | async def reset_ratings(self, data_ids, transactional): method get_specific_meta_v1 (line 1676) | async def get_specific_meta_v1(self, param): method post_meta_binary (line 1691) | async def post_meta_binary(self, param): method touch_object (line 1706) | async def touch_object(self, param): method get_rating_with_log (line 1719) | async def get_rating_with_log(self, target, access_password): method prepare_post_object (line 1737) | async def prepare_post_object(self, param): method prepare_get_object (line 1752) | async def prepare_get_object(self, param): method complete_post_object (line 1767) | async def complete_post_object(self, param): method get_new_arrived_notifications (line 1780) | async def get_new_arrived_notifications(self, param): method get_specific_meta (line 1797) | async def get_specific_meta(self, param): method get_persistence_info (line 1812) | async def get_persistence_info(self, owner_id, slot_id): method get_persistence_infos (line 1828) | async def get_persistence_infos(self, owner_id, slot_ids): method perpetuate_object (line 1846) | async def perpetuate_object(self, persistence_slot_id, data_id, delete... method unperpetuate_object (line 1861) | async def unperpetuate_object(self, persistence_slot_id, delete_last_o... method prepare_get_object_or_meta_binary (line 1875) | async def prepare_get_object_or_meta_binary(self, param): method get_password_info (line 1892) | async def get_password_info(self, data_id): method get_password_infos (line 1907) | async def get_password_infos(self, data_ids): method get_metas_multiple_param (line 1924) | async def get_metas_multiple_param(self, params): method complete_post_objects (line 1941) | async def complete_post_objects(self, data_ids): method change_meta (line 1954) | async def change_meta(self, param): method change_metas (line 1967) | async def change_metas(self, data_ids, param, transactional): method rate_objects (line 1984) | async def rate_objects(self, targets, param, transactional, fetch_rati... method post_meta_binary_with_data_id (line 2004) | async def post_meta_binary_with_data_id(self, data_id, param): method post_meta_binaries_with_data_id (line 2018) | async def post_meta_binaries_with_data_id(self, data_ids, param, trans... method rate_object_with_posting (line 2035) | async def rate_object_with_posting(self, target, rate_param, post_para... method rate_objects_with_posting (line 2053) | async def rate_objects_with_posting(self, targets, rate_param, post_pa... method get_object_infos (line 2074) | async def get_object_infos(self, data_ids): method search_object_light (line 2091) | async def search_object_light(self, param): method get_application_config (line 2106) | async def get_application_config(self, id): method get_application_config_string (line 2121) | async def get_application_config_string(self, id): class DataStoreServerSMM (line 2137) | class DataStoreServerSMM(DataStoreProtocolSMM): method __init__ (line 2138) | def __init__(self): method logout (line 2190) | async def logout(self, client): method handle (line 2193) | async def handle(self, client, method_id, input, output): method handle_prepare_get_object_v1 (line 2200) | async def handle_prepare_get_object_v1(self, client, input, output): method handle_prepare_post_object_v1 (line 2211) | async def handle_prepare_post_object_v1(self, client, input, output): method handle_complete_post_object_v1 (line 2222) | async def handle_complete_post_object_v1(self, client, input, output): method handle_delete_object (line 2228) | async def handle_delete_object(self, client, input, output): method handle_delete_objects (line 2234) | async def handle_delete_objects(self, client, input, output): method handle_change_meta_v1 (line 2246) | async def handle_change_meta_v1(self, client, input, output): method handle_change_metas_v1 (line 2252) | async def handle_change_metas_v1(self, client, input, output): method handle_get_meta (line 2265) | async def handle_get_meta(self, client, input, output): method handle_get_metas (line 2276) | async def handle_get_metas(self, client, input, output): method handle_prepare_update_object (line 2292) | async def handle_prepare_update_object(self, client, input, output): method handle_complete_update_object (line 2303) | async def handle_complete_update_object(self, client, input, output): method handle_search_object (line 2309) | async def handle_search_object(self, client, input, output): method handle_get_notification_url (line 2320) | async def handle_get_notification_url(self, client, input, output): method handle_get_new_arrived_notifications_v1 (line 2331) | async def handle_get_new_arrived_notifications_v1(self, client, input,... method handle_rate_object (line 2346) | async def handle_rate_object(self, client, input, output): method handle_get_rating (line 2359) | async def handle_get_rating(self, client, input, output): method handle_get_ratings (line 2371) | async def handle_get_ratings(self, client, input, output): method handle_reset_rating (line 2387) | async def handle_reset_rating(self, client, input, output): method handle_reset_ratings (line 2394) | async def handle_reset_ratings(self, client, input, output): method handle_get_specific_meta_v1 (line 2406) | async def handle_get_specific_meta_v1(self, client, input, output): method handle_post_meta_binary (line 2417) | async def handle_post_meta_binary(self, client, input, output): method handle_touch_object (line 2428) | async def handle_touch_object(self, client, input, output): method handle_get_rating_with_log (line 2434) | async def handle_get_rating_with_log(self, client, input, output): method handle_prepare_post_object (line 2450) | async def handle_prepare_post_object(self, client, input, output): method handle_prepare_get_object (line 2461) | async def handle_prepare_get_object(self, client, input, output): method handle_complete_post_object (line 2472) | async def handle_complete_post_object(self, client, input, output): method handle_get_new_arrived_notifications (line 2478) | async def handle_get_new_arrived_notifications(self, client, input, ou... method handle_get_specific_meta (line 2493) | async def handle_get_specific_meta(self, client, input, output): method handle_get_persistence_info (line 2504) | async def handle_get_persistence_info(self, client, input, output): method handle_get_persistence_infos (line 2516) | async def handle_get_persistence_infos(self, client, input, output): method handle_perpetuate_object (line 2532) | async def handle_perpetuate_object(self, client, input, output): method handle_unperpetuate_object (line 2540) | async def handle_unperpetuate_object(self, client, input, output): method handle_prepare_get_object_or_meta_binary (line 2547) | async def handle_prepare_get_object_or_meta_binary(self, client, input... method handle_get_password_info (line 2562) | async def handle_get_password_info(self, client, input, output): method handle_get_password_infos (line 2573) | async def handle_get_password_infos(self, client, input, output): method handle_get_metas_multiple_param (line 2588) | async def handle_get_metas_multiple_param(self, client, input, output): method handle_complete_post_objects (line 2603) | async def handle_complete_post_objects(self, client, input, output): method handle_change_meta (line 2609) | async def handle_change_meta(self, client, input, output): method handle_change_metas (line 2615) | async def handle_change_metas(self, client, input, output): method handle_rate_objects (line 2628) | async def handle_rate_objects(self, client, input, output): method handle_post_meta_binary_with_data_id (line 2646) | async def handle_post_meta_binary_with_data_id(self, client, input, ou... method handle_post_meta_binaries_with_data_id (line 2653) | async def handle_post_meta_binaries_with_data_id(self, client, input, ... method handle_rate_object_with_posting (line 2666) | async def handle_rate_object_with_posting(self, client, input, output): method handle_rate_objects_with_posting (line 2680) | async def handle_rate_objects_with_posting(self, client, input, output): method handle_get_object_infos (line 2699) | async def handle_get_object_infos(self, client, input, output): method handle_search_object_light (line 2714) | async def handle_search_object_light(self, client, input, output): method handle_get_application_config (line 2725) | async def handle_get_application_config(self, client, input, output): method handle_get_application_config_string (line 2736) | async def handle_get_application_config_string(self, client, input, ou... method prepare_get_object_v1 (line 2747) | async def prepare_get_object_v1(self, *args): method prepare_post_object_v1 (line 2751) | async def prepare_post_object_v1(self, *args): method complete_post_object_v1 (line 2755) | async def complete_post_object_v1(self, *args): method delete_object (line 2759) | async def delete_object(self, *args): method delete_objects (line 2763) | async def delete_objects(self, *args): method change_meta_v1 (line 2767) | async def change_meta_v1(self, *args): method change_metas_v1 (line 2771) | async def change_metas_v1(self, *args): method get_meta (line 2775) | async def get_meta(self, *args): method get_metas (line 2779) | async def get_metas(self, *args): method prepare_update_object (line 2783) | async def prepare_update_object(self, *args): method complete_update_object (line 2787) | async def complete_update_object(self, *args): method search_object (line 2791) | async def search_object(self, *args): method get_notification_url (line 2795) | async def get_notification_url(self, *args): method get_new_arrived_notifications_v1 (line 2799) | async def get_new_arrived_notifications_v1(self, *args): method rate_object (line 2803) | async def rate_object(self, *args): method get_rating (line 2807) | async def get_rating(self, *args): method get_ratings (line 2811) | async def get_ratings(self, *args): method reset_rating (line 2815) | async def reset_rating(self, *args): method reset_ratings (line 2819) | async def reset_ratings(self, *args): method get_specific_meta_v1 (line 2823) | async def get_specific_meta_v1(self, *args): method post_meta_binary (line 2827) | async def post_meta_binary(self, *args): method touch_object (line 2831) | async def touch_object(self, *args): method get_rating_with_log (line 2835) | async def get_rating_with_log(self, *args): method prepare_post_object (line 2839) | async def prepare_post_object(self, *args): method prepare_get_object (line 2843) | async def prepare_get_object(self, *args): method complete_post_object (line 2847) | async def complete_post_object(self, *args): method get_new_arrived_notifications (line 2851) | async def get_new_arrived_notifications(self, *args): method get_specific_meta (line 2855) | async def get_specific_meta(self, *args): method get_persistence_info (line 2859) | async def get_persistence_info(self, *args): method get_persistence_infos (line 2863) | async def get_persistence_infos(self, *args): method perpetuate_object (line 2867) | async def perpetuate_object(self, *args): method unperpetuate_object (line 2871) | async def unperpetuate_object(self, *args): method prepare_get_object_or_meta_binary (line 2875) | async def prepare_get_object_or_meta_binary(self, *args): method get_password_info (line 2879) | async def get_password_info(self, *args): method get_password_infos (line 2883) | async def get_password_infos(self, *args): method get_metas_multiple_param (line 2887) | async def get_metas_multiple_param(self, *args): method complete_post_objects (line 2891) | async def complete_post_objects(self, *args): method change_meta (line 2895) | async def change_meta(self, *args): method change_metas (line 2899) | async def change_metas(self, *args): method rate_objects (line 2903) | async def rate_objects(self, *args): method post_meta_binary_with_data_id (line 2907) | async def post_meta_binary_with_data_id(self, *args): method post_meta_binaries_with_data_id (line 2911) | async def post_meta_binaries_with_data_id(self, *args): method rate_object_with_posting (line 2915) | async def rate_object_with_posting(self, *args): method rate_objects_with_posting (line 2919) | async def rate_objects_with_posting(self, *args): method get_object_infos (line 2923) | async def get_object_infos(self, *args): method search_object_light (line 2927) | async def search_object_light(self, *args): method get_application_config (line 2931) | async def get_application_config(self, *args): method get_application_config_string (line 2935) | async def get_application_config_string(self, *args): FILE: nintendo/nex/datastore_smm2.py class ClearCondition (line 10) | class ClearCondition: class CourseDifficulty (line 16) | class CourseDifficulty: class CourseTag (line 23) | class CourseTag: class CourseTheme (line 36) | class CourseTheme: class GameStyle (line 49) | class GameStyle: class MultiplayerStatsKeys (line 57) | class MultiplayerStatsKeys: class PlayStatsKeys (line 65) | class PlayStatsKeys: class CourseOption (line 72) | class CourseOption: class EventCourseOption (line 85) | class EventCourseOption: class UserOption (line 97) | class UserOption: class DataStoreChangeMetaCompareParam (line 114) | class DataStoreChangeMetaCompareParam(common.Structure): method __init__ (line 115) | def __init__(self): method check_required (line 128) | def check_required(self, settings, version): method load (line 133) | def load(self, stream, version): method save (line 145) | def save(self, stream, version): class DataStoreChangeMetaParam (line 159) | class DataStoreChangeMetaParam(common.Structure): method __init__ (line 160) | def __init__(self): method check_required (line 177) | def check_required(self, settings, version): method load (line 182) | def load(self, stream, version): method save (line 198) | def save(self, stream, version): class DataStoreChangeMetaParamV1 (line 216) | class DataStoreChangeMetaParamV1(common.Structure): method __init__ (line 217) | def __init__(self): method check_required (line 229) | def check_required(self, settings, version): method load (line 234) | def load(self, stream, version): method save (line 245) | def save(self, stream, version): class DataStoreCompletePostParam (line 258) | class DataStoreCompletePostParam(common.Structure): method __init__ (line 259) | def __init__(self): method check_required (line 264) | def check_required(self, settings, version): method load (line 269) | def load(self, stream, version): method save (line 273) | def save(self, stream, version): class DataStoreCompletePostParamV1 (line 279) | class DataStoreCompletePostParamV1(common.Structure): method __init__ (line 280) | def __init__(self): method check_required (line 285) | def check_required(self, settings, version): method load (line 290) | def load(self, stream, version): method save (line 294) | def save(self, stream, version): class DataStoreCompleteUpdateParam (line 300) | class DataStoreCompleteUpdateParam(common.Structure): method __init__ (line 301) | def __init__(self): method check_required (line 307) | def check_required(self, settings, version): method load (line 312) | def load(self, stream, version): method save (line 317) | def save(self, stream, version): class DataStoreDeleteParam (line 324) | class DataStoreDeleteParam(common.Structure): method __init__ (line 325) | def __init__(self): method check_required (line 330) | def check_required(self, settings, version): method load (line 335) | def load(self, stream, version): method save (line 339) | def save(self, stream, version): class DataStoreGetMetaParam (line 345) | class DataStoreGetMetaParam(common.Structure): method __init__ (line 346) | def __init__(self): method check_required (line 353) | def check_required(self, settings, version): method load (line 356) | def load(self, stream, version): method save (line 362) | def save(self, stream, version): class DataStoreGetNewArrivedNotificationsParam (line 370) | class DataStoreGetNewArrivedNotificationsParam(common.Structure): method __init__ (line 371) | def __init__(self): method check_required (line 376) | def check_required(self, settings, version): method load (line 381) | def load(self, stream, version): method save (line 385) | def save(self, stream, version): class DataStoreGetNotificationUrlParam (line 391) | class DataStoreGetNotificationUrlParam(common.Structure): method __init__ (line 392) | def __init__(self): method check_required (line 396) | def check_required(self, settings, version): method load (line 401) | def load(self, stream, version): method save (line 404) | def save(self, stream, version): class DataStoreGetSpecificMetaParam (line 409) | class DataStoreGetSpecificMetaParam(common.Structure): method __init__ (line 410) | def __init__(self): method check_required (line 414) | def check_required(self, settings, version): method load (line 419) | def load(self, stream, version): method save (line 422) | def save(self, stream, version): class DataStoreGetSpecificMetaParamV1 (line 427) | class DataStoreGetSpecificMetaParamV1(common.Structure): method __init__ (line 428) | def __init__(self): method check_required (line 432) | def check_required(self, settings, version): method load (line 437) | def load(self, stream, version): method save (line 440) | def save(self, stream, version): class DataStoreKeyValue (line 445) | class DataStoreKeyValue(common.Structure): method __init__ (line 446) | def __init__(self): method check_required (line 451) | def check_required(self, settings, version): method load (line 456) | def load(self, stream, version): method save (line 460) | def save(self, stream, version): class DataStoreMetaInfo (line 466) | class DataStoreMetaInfo(common.Structure): method __init__ (line 467) | def __init__(self): method check_required (line 489) | def check_required(self, settings, version): method load (line 494) | def load(self, stream, version): method save (line 515) | def save(self, stream, version): class DataStoreNotification (line 538) | class DataStoreNotification(common.Structure): method __init__ (line 539) | def __init__(self): method check_required (line 544) | def check_required(self, settings, version): method load (line 549) | def load(self, stream, version): method save (line 553) | def save(self, stream, version): class DataStoreNotificationV1 (line 559) | class DataStoreNotificationV1(common.Structure): method __init__ (line 560) | def __init__(self): method check_required (line 565) | def check_required(self, settings, version): method load (line 570) | def load(self, stream, version): method save (line 574) | def save(self, stream, version): class DataStorePasswordInfo (line 580) | class DataStorePasswordInfo(common.Structure): method __init__ (line 581) | def __init__(self): method check_required (line 587) | def check_required(self, settings, version): method load (line 592) | def load(self, stream, version): method save (line 597) | def save(self, stream, version): class DataStorePermission (line 604) | class DataStorePermission(common.Structure): method __init__ (line 605) | def __init__(self): method check_required (line 610) | def check_required(self, settings, version): method load (line 613) | def load(self, stream, version): method save (line 617) | def save(self, stream, version): class DataStorePersistenceInfo (line 623) | class DataStorePersistenceInfo(common.Structure): method __init__ (line 624) | def __init__(self): method check_required (line 630) | def check_required(self, settings, version): method load (line 635) | def load(self, stream, version): method save (line 640) | def save(self, stream, version): class DataStorePersistenceInitParam (line 647) | class DataStorePersistenceInitParam(common.Structure): method __init__ (line 648) | def __init__(self): method check_required (line 653) | def check_required(self, settings, version): method load (line 656) | def load(self, stream, version): method save (line 660) | def save(self, stream, version): class DataStorePersistenceTarget (line 666) | class DataStorePersistenceTarget(common.Structure): method __init__ (line 667) | def __init__(self): method check_required (line 672) | def check_required(self, settings, version): method load (line 675) | def load(self, stream, version): method save (line 679) | def save(self, stream, version): class DataStorePrepareGetParam (line 685) | class DataStorePrepareGetParam(common.Structure): method __init__ (line 686) | def __init__(self): method check_required (line 694) | def check_required(self, settings, version): method load (line 698) | def load(self, stream, version): method save (line 706) | def save(self, stream, version): class DataStorePrepareGetParamV1 (line 716) | class DataStorePrepareGetParamV1(common.Structure): method __init__ (line 717) | def __init__(self): method check_required (line 722) | def check_required(self, settings, version): method load (line 727) | def load(self, stream, version): method save (line 731) | def save(self, stream, version): class DataStorePreparePostParam (line 737) | class DataStorePreparePostParam(common.Structure): method __init__ (line 738) | def __init__(self): method check_required (line 754) | def check_required(self, settings, version): method load (line 763) | def load(self, stream, version): method save (line 779) | def save(self, stream, version): class DataStorePreparePostParamV1 (line 797) | class DataStorePreparePostParamV1(common.Structure): method __init__ (line 798) | def __init__(self): method check_required (line 812) | def check_required(self, settings, version): method load (line 817) | def load(self, stream, version): method save (line 830) | def save(self, stream, version): class DataStorePrepareUpdateParam (line 845) | class DataStorePrepareUpdateParam(common.Structure): method __init__ (line 846) | def __init__(self): method check_required (line 853) | def check_required(self, settings, version): method load (line 858) | def load(self, stream, version): method save (line 864) | def save(self, stream, version): class DataStoreRateObjectParam (line 872) | class DataStoreRateObjectParam(common.Structure): method __init__ (line 873) | def __init__(self): method check_required (line 878) | def check_required(self, settings, version): method load (line 883) | def load(self, stream, version): method save (line 887) | def save(self, stream, version): class DataStoreRatingInfo (line 893) | class DataStoreRatingInfo(common.Structure): method __init__ (line 894) | def __init__(self): method check_required (line 900) | def check_required(self, settings, version): method load (line 905) | def load(self, stream, version): method save (line 910) | def save(self, stream, version): class DataStoreRatingInfoWithSlot (line 917) | class DataStoreRatingInfoWithSlot(common.Structure): method __init__ (line 918) | def __init__(self): method check_required (line 923) | def check_required(self, settings, version): method load (line 928) | def load(self, stream, version): method save (line 932) | def save(self, stream, version): class DataStoreRatingInitParam (line 938) | class DataStoreRatingInitParam(common.Structure): method __init__ (line 939) | def __init__(self): method check_required (line 950) | def check_required(self, settings, version): method load (line 955) | def load(self, stream, version): method save (line 965) | def save(self, stream, version): class DataStoreRatingInitParamWithSlot (line 977) | class DataStoreRatingInitParamWithSlot(common.Structure): method __init__ (line 978) | def __init__(self): method check_required (line 983) | def check_required(self, settings, version): method load (line 988) | def load(self, stream, version): method save (line 992) | def save(self, stream, version): class DataStoreRatingLog (line 998) | class DataStoreRatingLog(common.Structure): method __init__ (line 999) | def __init__(self): method check_required (line 1006) | def check_required(self, settings, version): method load (line 1011) | def load(self, stream, version): method save (line 1017) | def save(self, stream, version): class DataStoreRatingTarget (line 1025) | class DataStoreRatingTarget(common.Structure): method __init__ (line 1026) | def __init__(self): method check_required (line 1031) | def check_required(self, settings, version): method load (line 1036) | def load(self, stream, version): method save (line 1040) | def save(self, stream, version): class DataStoreReqGetAdditionalMeta (line 1046) | class DataStoreReqGetAdditionalMeta(common.Structure): method __init__ (line 1047) | def __init__(self): method check_required (line 1054) | def check_required(self, settings, version): method load (line 1059) | def load(self, stream, version): method save (line 1065) | def save(self, stream, version): class DataStoreReqGetInfo (line 1073) | class DataStoreReqGetInfo(common.Structure): method __init__ (line 1074) | def __init__(self): method check_required (line 1082) | def check_required(self, settings, version): method load (line 1091) | def load(self, stream, version): method save (line 1099) | def save(self, stream, version): class DataStoreReqGetInfoV1 (line 1109) | class DataStoreReqGetInfoV1(common.Structure): method __init__ (line 1110) | def __init__(self): method check_required (line 1117) | def check_required(self, settings, version): method load (line 1122) | def load(self, stream, version): method save (line 1128) | def save(self, stream, version): class DataStoreReqGetNotificationUrlInfo (line 1136) | class DataStoreReqGetNotificationUrlInfo(common.Structure): method __init__ (line 1137) | def __init__(self): method check_required (line 1144) | def check_required(self, settings, version): method load (line 1149) | def load(self, stream, version): method save (line 1155) | def save(self, stream, version): class DataStoreReqPostInfo (line 1163) | class DataStoreReqPostInfo(common.Structure): method __init__ (line 1164) | def __init__(self): method check_required (line 1172) | def check_required(self, settings, version): method load (line 1177) | def load(self, stream, version): method save (line 1184) | def save(self, stream, version): class DataStoreReqPostInfoV1 (line 1193) | class DataStoreReqPostInfoV1(common.Structure): method __init__ (line 1194) | def __init__(self): method check_required (line 1202) | def check_required(self, settings, version): method load (line 1207) | def load(self, stream, version): method save (line 1214) | def save(self, stream, version): class DataStoreReqUpdateInfo (line 1223) | class DataStoreReqUpdateInfo(common.Structure): method __init__ (line 1224) | def __init__(self): method check_required (line 1232) | def check_required(self, settings, version): method load (line 1237) | def load(self, stream, version): method save (line 1244) | def save(self, stream, version): class DataStoreSearchParam (line 1253) | class DataStoreSearchParam(common.Structure): method __init__ (line 1254) | def __init__(self): method check_required (line 1276) | def check_required(self, settings, version): method load (line 1279) | def load(self, stream, version): method save (line 1300) | def save(self, stream, version): class DataStoreSearchResult (line 1323) | class DataStoreSearchResult(common.Structure): method __init__ (line 1324) | def __init__(self): method check_required (line 1330) | def check_required(self, settings, version): method load (line 1335) | def load(self, stream, version): method save (line 1340) | def save(self, stream, version): class DataStoreSpecificMetaInfo (line 1347) | class DataStoreSpecificMetaInfo(common.Structure): method __init__ (line 1348) | def __init__(self): method check_required (line 1356) | def check_required(self, settings, version): method load (line 1361) | def load(self, stream, version): method save (line 1368) | def save(self, stream, version): class DataStoreSpecificMetaInfoV1 (line 1377) | class DataStoreSpecificMetaInfoV1(common.Structure): method __init__ (line 1378) | def __init__(self): method check_required (line 1386) | def check_required(self, settings, version): method load (line 1391) | def load(self, stream, version): method save (line 1398) | def save(self, stream, version): class DataStoreTouchObjectParam (line 1407) | class DataStoreTouchObjectParam(common.Structure): method __init__ (line 1408) | def __init__(self): method check_required (line 1414) | def check_required(self, settings, version): method load (line 1419) | def load(self, stream, version): method save (line 1424) | def save(self, stream, version): class GetCoursesParam (line 1431) | class GetCoursesParam(common.Structure): method __init__ (line 1432) | def __init__(self): method check_required (line 1437) | def check_required(self, settings, version): method load (line 1442) | def load(self, stream, version): method save (line 1446) | def save(self, stream, version): class GetCoursesEventParam (line 1452) | class GetCoursesEventParam(common.Structure): method __init__ (line 1453) | def __init__(self): method check_required (line 1456) | def check_required(self, settings, version): method load (line 1459) | def load(self, stream, version): method save (line 1462) | def save(self, stream, version): class SearchCommentsInOrderParam (line 1466) | class SearchCommentsInOrderParam(common.Structure): method __init__ (line 1467) | def __init__(self): method check_required (line 1472) | def check_required(self, settings, version): method load (line 1477) | def load(self, stream, version): method save (line 1481) | def save(self, stream, version): class GetEventCourseGhostParam (line 1487) | class GetEventCourseGhostParam(common.Structure): method __init__ (line 1488) | def __init__(self): method check_required (line 1494) | def check_required(self, settings, version): method load (line 1499) | def load(self, stream, version): method save (line 1504) | def save(self, stream, version): class GetEventCourseHistogramParam (line 1511) | class GetEventCourseHistogramParam(common.Structure): method __init__ (line 1512) | def __init__(self): method check_required (line 1516) | def check_required(self, settings, version): method load (line 1521) | def load(self, stream, version): method save (line 1524) | def save(self, stream, version): class GetUserOrCourseParam (line 1529) | class GetUserOrCourseParam(common.Structure): method __init__ (line 1530) | def __init__(self): method check_required (line 1536) | def check_required(self, settings, version): method load (line 1541) | def load(self, stream, version): method save (line 1546) | def save(self, stream, version): class GetUsersParam (line 1553) | class GetUsersParam(common.Structure): method __init__ (line 1554) | def __init__(self): method check_required (line 1559) | def check_required(self, settings, version): method load (line 1564) | def load(self, stream, version): method save (line 1568) | def save(self, stream, version): class RegisterUserParam (line 1574) | class RegisterUserParam(common.Structure): method __init__ (line 1575) | def __init__(self): method check_required (line 1584) | def check_required(self, settings, version): method load (line 1589) | def load(self, stream, version): method save (line 1597) | def save(self, stream, version): class SearchCoursesPostedByParam (line 1607) | class SearchCoursesPostedByParam(common.Structure): method __init__ (line 1608) | def __init__(self): method check_required (line 1614) | def check_required(self, settings, version): method load (line 1619) | def load(self, stream, version): method save (line 1624) | def save(self, stream, version): class SearchCoursesPositiveRatedByParam (line 1631) | class SearchCoursesPositiveRatedByParam(common.Structure): method __init__ (line 1632) | def __init__(self): method check_required (line 1638) | def check_required(self, settings, version): method load (line 1643) | def load(self, stream, version): method save (line 1648) | def save(self, stream, version): class SearchCoursesPlayedByParam (line 1655) | class SearchCoursesPlayedByParam(common.Structure): method __init__ (line 1656) | def __init__(self): method check_required (line 1662) | def check_required(self, settings, version): method load (line 1667) | def load(self, stream, version): method save (line 1672) | def save(self, stream, version): class SearchCoursesEndlessModeParam (line 1679) | class SearchCoursesEndlessModeParam(common.Structure): method __init__ (line 1680) | def __init__(self): method check_required (line 1686) | def check_required(self, settings, version): method load (line 1691) | def load(self, stream, version): method save (line 1696) | def save(self, stream, version): class SearchCoursesFirstClearParam (line 1703) | class SearchCoursesFirstClearParam(common.Structure): method __init__ (line 1704) | def __init__(self): method check_required (line 1710) | def check_required(self, settings, version): method load (line 1715) | def load(self, stream, version): method save (line 1720) | def save(self, stream, version): class SearchCoursesBestTimeParam (line 1727) | class SearchCoursesBestTimeParam(common.Structure): method __init__ (line 1728) | def __init__(self): method check_required (line 1734) | def check_required(self, settings, version): method load (line 1739) | def load(self, stream, version): method save (line 1744) | def save(self, stream, version): class SearchCoursesEventParam (line 1751) | class SearchCoursesEventParam(common.Structure): method __init__ (line 1752) | def __init__(self): method check_required (line 1756) | def check_required(self, settings, version): method load (line 1759) | def load(self, stream, version): method save (line 1762) | def save(self, stream, version): class SearchCoursesLatestParam (line 1767) | class SearchCoursesLatestParam(common.Structure): method __init__ (line 1768) | def __init__(self): method check_required (line 1773) | def check_required(self, settings, version): method load (line 1776) | def load(self, stream, version): method save (line 1780) | def save(self, stream, version): class SearchUsersPlayedCourseParam (line 1786) | class SearchUsersPlayedCourseParam(common.Structure): method __init__ (line 1787) | def __init__(self): method check_required (line 1793) | def check_required(self, settings, version): method load (line 1798) | def load(self, stream, version): method save (line 1803) | def save(self, stream, version): class SearchUsersClearedCourseParam (line 1810) | class SearchUsersClearedCourseParam(common.Structure): method __init__ (line 1811) | def __init__(self): method check_required (line 1817) | def check_required(self, settings, version): method load (line 1822) | def load(self, stream, version): method save (line 1827) | def save(self, stream, version): class SearchUsersPositiveRatedCourseParam (line 1834) | class SearchUsersPositiveRatedCourseParam(common.Structure): method __init__ (line 1835) | def __init__(self): method check_required (line 1841) | def check_required(self, settings, version): method load (line 1846) | def load(self, stream, version): method save (line 1851) | def save(self, stream, version): class SearchCoursesPointRankingParam (line 1858) | class SearchCoursesPointRankingParam(common.Structure): method __init__ (line 1859) | def __init__(self): method check_required (line 1866) | def check_required(self, settings, version): method load (line 1871) | def load(self, stream, version): method save (line 1877) | def save(self, stream, version): class SearchUsersUserPointParam (line 1885) | class SearchUsersUserPointParam(common.Structure): method __init__ (line 1886) | def __init__(self): method check_required (line 1892) | def check_required(self, settings, version): method load (line 1897) | def load(self, stream, version): method save (line 1902) | def save(self, stream, version): class SyncUserProfileParam (line 1909) | class SyncUserProfileParam(common.Structure): method __init__ (line 1910) | def __init__(self): method check_required (line 1922) | def check_required(self, settings, version): method load (line 1927) | def load(self, stream, version): method save (line 1938) | def save(self, stream, version): class GetWorldMapParam (line 1951) | class GetWorldMapParam(common.Structure): method __init__ (line 1952) | def __init__(self): method check_required (line 1957) | def check_required(self, settings, version): method load (line 1962) | def load(self, stream, version): method save (line 1966) | def save(self, stream, version): class SearchWorldMapPickUpParam (line 1972) | class SearchWorldMapPickUpParam(common.Structure): method __init__ (line 1973) | def __init__(self): method check_required (line 1977) | def check_required(self, settings, version): method load (line 1982) | def load(self, stream, version): method save (line 1985) | def save(self, stream, version): class SearchWorldMapPlayedByParam (line 1990) | class SearchWorldMapPlayedByParam(common.Structure): method __init__ (line 1991) | def __init__(self): method check_required (line 1996) | def check_required(self, settings, version): method load (line 2001) | def load(self, stream, version): method save (line 2005) | def save(self, stream, version): class BadgeInfo (line 2011) | class BadgeInfo(common.Structure): method __init__ (line 2012) | def __init__(self): method check_required (line 2017) | def check_required(self, settings, version): method load (line 2022) | def load(self, stream, version): method save (line 2026) | def save(self, stream, version): class CommentInfo (line 2032) | class CommentInfo(common.Structure): method __init__ (line 2033) | def __init__(self): method check_required (line 2054) | def check_required(self, settings, version): method load (line 2059) | def load(self, stream, version): method save (line 2079) | def save(self, stream, version): class DeathPositionInfo (line 2101) | class DeathPositionInfo(common.Structure): method __init__ (line 2102) | def __init__(self): method check_required (line 2109) | def check_required(self, settings, version): method load (line 2114) | def load(self, stream, version): method save (line 2120) | def save(self, stream, version): class CommentPictureReqGetInfoWithoutHeaders (line 2128) | class CommentPictureReqGetInfoWithoutHeaders(common.Structure): method __init__ (line 2129) | def __init__(self): method check_required (line 2137) | def check_required(self, settings, version): method load (line 2142) | def load(self, stream, version): method save (line 2149) | def save(self, stream, version): class CourseInfo (line 2158) | class CourseInfo(common.Structure): method __init__ (line 2159) | def __init__(self): method check_required (line 2189) | def check_required(self, settings, version): method load (line 2194) | def load(self, stream, version): method save (line 2223) | def save(self, stream, version): class WorldMapInfo (line 2254) | class WorldMapInfo(common.Structure): method __init__ (line 2255) | def __init__(self): method check_required (line 2271) | def check_required(self, settings, version): method load (line 2276) | def load(self, stream, version): method save (line 2291) | def save(self, stream, version): class CourseTimeStats (line 2308) | class CourseTimeStats(common.Structure): method __init__ (line 2309) | def __init__(self): method check_required (line 2316) | def check_required(self, settings, version): method load (line 2321) | def load(self, stream, version): method save (line 2327) | def save(self, stream, version): class EventCourseGhostInfo (line 2335) | class EventCourseGhostInfo(common.Structure): method __init__ (line 2336) | def __init__(self): method check_required (line 2342) | def check_required(self, settings, version): method load (line 2347) | def load(self, stream, version): method save (line 2352) | def save(self, stream, version): class EventCourseHistogram (line 2359) | class EventCourseHistogram(common.Structure): method __init__ (line 2360) | def __init__(self): method check_required (line 2370) | def check_required(self, settings, version): method load (line 2375) | def load(self, stream, version): method save (line 2384) | def save(self, stream, version): class EventCourseInfo (line 2395) | class EventCourseInfo(common.Structure): method __init__ (line 2396) | def __init__(self): method max_version (line 2422) | def max_version(self, settings): method check_required (line 2427) | def check_required(self, settings, version): method load (line 2436) | def load(self, stream, version): method save (line 2462) | def save(self, stream, version): class EventCourseStatusInfo (line 2490) | class EventCourseStatusInfo(common.Structure): method __init__ (line 2491) | def __init__(self): method check_required (line 2497) | def check_required(self, settings, version): method load (line 2502) | def load(self, stream, version): method save (line 2507) | def save(self, stream, version): class EventCourseThumbnail (line 2514) | class EventCourseThumbnail(common.Structure): method __init__ (line 2515) | def __init__(self): method check_required (line 2523) | def check_required(self, settings, version): method load (line 2528) | def load(self, stream, version): method save (line 2535) | def save(self, stream, version): class RelationObjectReqGetInfo (line 2544) | class RelationObjectReqGetInfo(common.Structure): method __init__ (line 2545) | def __init__(self): method check_required (line 2553) | def check_required(self, settings, version): method load (line 2558) | def load(self, stream, version): method save (line 2565) | def save(self, stream, version): class ReqGetInfoHeadersInfo (line 2574) | class ReqGetInfoHeadersInfo(common.Structure): method __init__ (line 2575) | def __init__(self): method check_required (line 2580) | def check_required(self, settings, version): method load (line 2585) | def load(self, stream, version): method save (line 2589) | def save(self, stream, version): class SyncUserProfileResult (line 2595) | class SyncUserProfileResult(common.Structure): method __init__ (line 2596) | def __init__(self): method check_required (line 2608) | def check_required(self, settings, version): method load (line 2613) | def load(self, stream, version): method save (line 2624) | def save(self, stream, version): class UserInfo (line 2637) | class UserInfo(common.Structure): method __init__ (line 2638) | def __init__(self): method max_version (line 2667) | def max_version(self, settings): method check_required (line 2674) | def check_required(self, settings, version): method load (line 2689) | def load(self, stream, version): method save (line 2720) | def save(self, stream, version): class UnknownStruct1 (line 2753) | class UnknownStruct1(common.Structure): method __init__ (line 2754) | def __init__(self): method check_required (line 2761) | def check_required(self, settings, version): method load (line 2766) | def load(self, stream, version): method save (line 2772) | def save(self, stream, version): class UnknownStruct3 (line 2780) | class UnknownStruct3(common.Structure): method __init__ (line 2781) | def __init__(self): method check_required (line 2786) | def check_required(self, settings, version): method load (line 2791) | def load(self, stream, version): method save (line 2795) | def save(self, stream, version): class UnknownStruct6 (line 2801) | class UnknownStruct6(common.Structure): method __init__ (line 2802) | def __init__(self): method check_required (line 2807) | def check_required(self, settings, version): method load (line 2812) | def load(self, stream, version): method save (line 2816) | def save(self, stream, version): class DataStoreProtocolSMM2 (line 2822) | class DataStoreProtocolSMM2: class DataStoreClientSMM2 (line 2904) | class DataStoreClientSMM2(DataStoreProtocolSMM2): method __init__ (line 2905) | def __init__(self, client): method prepare_get_object_v1 (line 2909) | async def prepare_get_object_v1(self, param): method prepare_post_object_v1 (line 2924) | async def prepare_post_object_v1(self, param): method complete_post_object_v1 (line 2939) | async def complete_post_object_v1(self, param): method delete_object (line 2952) | async def delete_object(self, param): method delete_objects (line 2965) | async def delete_objects(self, param, transactional): method change_meta_v1 (line 2981) | async def change_meta_v1(self, param): method change_metas_v1 (line 2994) | async def change_metas_v1(self, data_ids, param, transactional): method get_meta (line 3011) | async def get_meta(self, param): method get_metas (line 3026) | async def get_metas(self, data_ids, param): method prepare_update_object (line 3044) | async def prepare_update_object(self, param): method complete_update_object (line 3059) | async def complete_update_object(self, param): method search_object (line 3072) | async def search_object(self, param): method get_notification_url (line 3087) | async def get_notification_url(self, param): method get_new_arrived_notifications_v1 (line 3102) | async def get_new_arrived_notifications_v1(self, param): method rate_object (line 3119) | async def rate_object(self, target, param, fetch_ratings): method get_rating (line 3136) | async def get_rating(self, target, access_password): method get_ratings (line 3152) | async def get_ratings(self, data_ids, access_password): method reset_rating (line 3170) | async def reset_rating(self, target, update_password): method reset_ratings (line 3184) | async def reset_ratings(self, data_ids, transactional): method get_specific_meta_v1 (line 3200) | async def get_specific_meta_v1(self, param): method post_meta_binary (line 3215) | async def post_meta_binary(self, param): method touch_object (line 3230) | async def touch_object(self, param): method get_rating_with_log (line 3243) | async def get_rating_with_log(self, target, access_password): method prepare_post_object (line 3261) | async def prepare_post_object(self, param): method prepare_get_object (line 3276) | async def prepare_get_object(self, param): method complete_post_object (line 3291) | async def complete_post_object(self, param): method get_new_arrived_notifications (line 3304) | async def get_new_arrived_notifications(self, param): method get_specific_meta (line 3321) | async def get_specific_meta(self, param): method get_persistence_info (line 3336) | async def get_persistence_info(self, owner_id, slot_id): method get_persistence_infos (line 3352) | async def get_persistence_infos(self, owner_id, slot_ids): method perpetuate_object (line 3370) | async def perpetuate_object(self, persistence_slot_id, data_id, delete... method unperpetuate_object (line 3385) | async def unperpetuate_object(self, persistence_slot_id, delete_last_o... method prepare_get_object_or_meta_binary (line 3399) | async def prepare_get_object_or_meta_binary(self, param): method get_password_info (line 3416) | async def get_password_info(self, data_id): method get_password_infos (line 3431) | async def get_password_infos(self, data_ids): method get_metas_multiple_param (line 3448) | async def get_metas_multiple_param(self, params): method complete_post_objects (line 3465) | async def complete_post_objects(self, data_ids): method change_meta (line 3478) | async def change_meta(self, param): method change_metas (line 3491) | async def change_metas(self, data_ids, param, transactional): method rate_objects (line 3508) | async def rate_objects(self, targets, param, transactional, fetch_rati... method post_meta_binary_with_data_id (line 3528) | async def post_meta_binary_with_data_id(self, data_id, param): method post_meta_binaries_with_data_id (line 3542) | async def post_meta_binaries_with_data_id(self, data_ids, param, trans... method rate_object_with_posting (line 3559) | async def rate_object_with_posting(self, target, rate_param, post_para... method rate_objects_with_posting (line 3577) | async def rate_objects_with_posting(self, targets, rate_param, post_pa... method get_object_infos (line 3598) | async def get_object_infos(self, data_ids): method search_object_light (line 3615) | async def search_object_light(self, param): method register_user (line 3630) | async def register_user(self, param): method get_users (line 3643) | async def get_users(self, param): method sync_user_profile (line 3660) | async def sync_user_profile(self, param): method search_users_user_point (line 3675) | async def search_users_user_point(self, param): method search_users_played_course (line 3693) | async def search_users_played_course(self, param): method search_users_cleared_course (line 3708) | async def search_users_cleared_course(self, param): method search_users_positive_rated_course (line 3723) | async def search_users_positive_rated_course(self, param): method update_last_login_time (line 3738) | async def update_last_login_time(self): method get_username_ng_type (line 3750) | async def get_username_ng_type(self): method get_courses (line 3764) | async def get_courses(self, param): method search_courses_point_ranking (line 3781) | async def search_courses_point_ranking(self, param): method search_courses_latest (line 3799) | async def search_courses_latest(self, param): method search_courses_posted_by (line 3816) | async def search_courses_posted_by(self, param): method search_courses_positive_rated_by (line 3833) | async def search_courses_positive_rated_by(self, param): method search_courses_played_by (line 3848) | async def search_courses_played_by(self, param): method search_courses_endless_mode (line 3863) | async def search_courses_endless_mode(self, param): method search_courses_first_clear (line 3878) | async def search_courses_first_clear(self, param): method search_courses_best_time (line 3895) | async def search_courses_best_time(self, param): method get_courses_event (line 3912) | async def get_courses_event(self, param, dummy): method search_courses_event (line 3930) | async def search_courses_event(self, param): method search_comments_in_order (line 3945) | async def search_comments_in_order(self, param): method search_comments (line 3962) | async def search_comments(self, data_id): method get_death_positions (line 3977) | async def get_death_positions(self, data_id): method get_user_or_course (line 3992) | async def get_user_or_course(self, param): method get_req_get_info_headers_info (line 4009) | async def get_req_get_info_headers_info(self, type): method get_event_course_stamp (line 4024) | async def get_event_course_stamp(self): method get_event_course_status (line 4038) | async def get_event_course_status(self): method get_event_course_histogram (line 4052) | async def get_event_course_histogram(self, param): method get_event_course_ghost (line 4067) | async def get_event_course_ghost(self, param): method get_world_map (line 4082) | async def get_world_map(self, param): method search_world_map_pick_up (line 4099) | async def search_world_map_pick_up(self, param): class DataStoreServerSMM2 (line 4115) | class DataStoreServerSMM2(DataStoreProtocolSMM2): method __init__ (line 4116) | def __init__(self): method logout (line 4197) | async def logout(self, client): method handle (line 4200) | async def handle(self, client, method_id, input, output): method handle_prepare_get_object_v1 (line 4207) | async def handle_prepare_get_object_v1(self, client, input, output): method handle_prepare_post_object_v1 (line 4218) | async def handle_prepare_post_object_v1(self, client, input, output): method handle_complete_post_object_v1 (line 4229) | async def handle_complete_post_object_v1(self, client, input, output): method handle_delete_object (line 4235) | async def handle_delete_object(self, client, input, output): method handle_delete_objects (line 4241) | async def handle_delete_objects(self, client, input, output): method handle_change_meta_v1 (line 4253) | async def handle_change_meta_v1(self, client, input, output): method handle_change_metas_v1 (line 4259) | async def handle_change_metas_v1(self, client, input, output): method handle_get_meta (line 4272) | async def handle_get_meta(self, client, input, output): method handle_get_metas (line 4283) | async def handle_get_metas(self, client, input, output): method handle_prepare_update_object (line 4299) | async def handle_prepare_update_object(self, client, input, output): method handle_complete_update_object (line 4310) | async def handle_complete_update_object(self, client, input, output): method handle_search_object (line 4316) | async def handle_search_object(self, client, input, output): method handle_get_notification_url (line 4327) | async def handle_get_notification_url(self, client, input, output): method handle_get_new_arrived_notifications_v1 (line 4338) | async def handle_get_new_arrived_notifications_v1(self, client, input,... method handle_rate_object (line 4353) | async def handle_rate_object(self, client, input, output): method handle_get_rating (line 4366) | async def handle_get_rating(self, client, input, output): method handle_get_ratings (line 4378) | async def handle_get_ratings(self, client, input, output): method handle_reset_rating (line 4394) | async def handle_reset_rating(self, client, input, output): method handle_reset_ratings (line 4401) | async def handle_reset_ratings(self, client, input, output): method handle_get_specific_meta_v1 (line 4413) | async def handle_get_specific_meta_v1(self, client, input, output): method handle_post_meta_binary (line 4424) | async def handle_post_meta_binary(self, client, input, output): method handle_touch_object (line 4435) | async def handle_touch_object(self, client, input, output): method handle_get_rating_with_log (line 4441) | async def handle_get_rating_with_log(self, client, input, output): method handle_prepare_post_object (line 4457) | async def handle_prepare_post_object(self, client, input, output): method handle_prepare_get_object (line 4468) | async def handle_prepare_get_object(self, client, input, output): method handle_complete_post_object (line 4479) | async def handle_complete_post_object(self, client, input, output): method handle_get_new_arrived_notifications (line 4485) | async def handle_get_new_arrived_notifications(self, client, input, ou... method handle_get_specific_meta (line 4500) | async def handle_get_specific_meta(self, client, input, output): method handle_get_persistence_info (line 4511) | async def handle_get_persistence_info(self, client, input, output): method handle_get_persistence_infos (line 4523) | async def handle_get_persistence_infos(self, client, input, output): method handle_perpetuate_object (line 4539) | async def handle_perpetuate_object(self, client, input, output): method handle_unperpetuate_object (line 4547) | async def handle_unperpetuate_object(self, client, input, output): method handle_prepare_get_object_or_meta_binary (line 4554) | async def handle_prepare_get_object_or_meta_binary(self, client, input... method handle_get_password_info (line 4569) | async def handle_get_password_info(self, client, input, output): method handle_get_password_infos (line 4580) | async def handle_get_password_infos(self, client, input, output): method handle_get_metas_multiple_param (line 4595) | async def handle_get_metas_multiple_param(self, client, input, output): method handle_complete_post_objects (line 4610) | async def handle_complete_post_objects(self, client, input, output): method handle_change_meta (line 4616) | async def handle_change_meta(self, client, input, output): method handle_change_metas (line 4622) | async def handle_change_metas(self, client, input, output): method handle_rate_objects (line 4635) | async def handle_rate_objects(self, client, input, output): method handle_post_meta_binary_with_data_id (line 4653) | async def handle_post_meta_binary_with_data_id(self, client, input, ou... method handle_post_meta_binaries_with_data_id (line 4660) | async def handle_post_meta_binaries_with_data_id(self, client, input, ... method handle_rate_object_with_posting (line 4673) | async def handle_rate_object_with_posting(self, client, input, output): method handle_rate_objects_with_posting (line 4687) | async def handle_rate_objects_with_posting(self, client, input, output): method handle_get_object_infos (line 4706) | async def handle_get_object_infos(self, client, input, output): method handle_search_object_light (line 4721) | async def handle_search_object_light(self, client, input, output): method handle_register_user (line 4732) | async def handle_register_user(self, client, input, output): method handle_get_users (line 4738) | async def handle_get_users(self, client, input, output): method handle_sync_user_profile (line 4753) | async def handle_sync_user_profile(self, client, input, output): method handle_search_users_user_point (line 4764) | async def handle_search_users_user_point(self, client, input, output): method handle_search_users_played_course (line 4780) | async def handle_search_users_played_course(self, client, input, output): method handle_search_users_cleared_course (line 4791) | async def handle_search_users_cleared_course(self, client, input, outp... method handle_search_users_positive_rated_course (line 4802) | async def handle_search_users_positive_rated_course(self, client, inpu... method handle_update_last_login_time (line 4813) | async def handle_update_last_login_time(self, client, input, output): method handle_get_username_ng_type (line 4818) | async def handle_get_username_ng_type(self, client, input, output): method handle_get_courses (line 4828) | async def handle_get_courses(self, client, input, output): method handle_search_courses_point_ranking (line 4843) | async def handle_search_courses_point_ranking(self, client, input, out... method handle_search_courses_latest (line 4859) | async def handle_search_courses_latest(self, client, input, output): method handle_search_courses_posted_by (line 4874) | async def handle_search_courses_posted_by(self, client, input, output): method handle_search_courses_positive_rated_by (line 4889) | async def handle_search_courses_positive_rated_by(self, client, input,... method handle_search_courses_played_by (line 4900) | async def handle_search_courses_played_by(self, client, input, output): method handle_search_courses_endless_mode (line 4911) | async def handle_search_courses_endless_mode(self, client, input, outp... method handle_search_courses_first_clear (line 4922) | async def handle_search_courses_first_clear(self, client, input, output): method handle_search_courses_best_time (line 4937) | async def handle_search_courses_best_time(self, client, input, output): method handle_get_courses_event (line 4952) | async def handle_get_courses_event(self, client, input, output): method handle_search_courses_event (line 4968) | async def handle_search_courses_event(self, client, input, output): method handle_search_comments_in_order (line 4979) | async def handle_search_comments_in_order(self, client, input, output): method handle_search_comments (line 4994) | async def handle_search_comments(self, client, input, output): method handle_get_death_positions (line 5005) | async def handle_get_death_positions(self, client, input, output): method handle_get_user_or_course (line 5016) | async def handle_get_user_or_course(self, client, input, output): method handle_get_req_get_info_headers_info (line 5031) | async def handle_get_req_get_info_headers_info(self, client, input, ou... method handle_get_event_course_stamp (line 5042) | async def handle_get_event_course_stamp(self, client, input, output): method handle_get_event_course_status (line 5052) | async def handle_get_event_course_status(self, client, input, output): method handle_get_event_course_histogram (line 5062) | async def handle_get_event_course_histogram(self, client, input, output): method handle_get_event_course_ghost (line 5073) | async def handle_get_event_course_ghost(self, client, input, output): method handle_get_world_map (line 5084) | async def handle_get_world_map(self, client, input, output): method handle_search_world_map_pick_up (line 5099) | async def handle_search_world_map_pick_up(self, client, input, output): method prepare_get_object_v1 (line 5110) | async def prepare_get_object_v1(self, *args): method prepare_post_object_v1 (line 5114) | async def prepare_post_object_v1(self, *args): method complete_post_object_v1 (line 5118) | async def complete_post_object_v1(self, *args): method delete_object (line 5122) | async def delete_object(self, *args): method delete_objects (line 5126) | async def delete_objects(self, *args): method change_meta_v1 (line 5130) | async def change_meta_v1(self, *args): method change_metas_v1 (line 5134) | async def change_metas_v1(self, *args): method get_meta (line 5138) | async def get_meta(self, *args): method get_metas (line 5142) | async def get_metas(self, *args): method prepare_update_object (line 5146) | async def prepare_update_object(self, *args): method complete_update_object (line 5150) | async def complete_update_object(self, *args): method search_object (line 5154) | async def search_object(self, *args): method get_notification_url (line 5158) | async def get_notification_url(self, *args): method get_new_arrived_notifications_v1 (line 5162) | async def get_new_arrived_notifications_v1(self, *args): method rate_object (line 5166) | async def rate_object(self, *args): method get_rating (line 5170) | async def get_rating(self, *args): method get_ratings (line 5174) | async def get_ratings(self, *args): method reset_rating (line 5178) | async def reset_rating(self, *args): method reset_ratings (line 5182) | async def reset_ratings(self, *args): method get_specific_meta_v1 (line 5186) | async def get_specific_meta_v1(self, *args): method post_meta_binary (line 5190) | async def post_meta_binary(self, *args): method touch_object (line 5194) | async def touch_object(self, *args): method get_rating_with_log (line 5198) | async def get_rating_with_log(self, *args): method prepare_post_object (line 5202) | async def prepare_post_object(self, *args): method prepare_get_object (line 5206) | async def prepare_get_object(self, *args): method complete_post_object (line 5210) | async def complete_post_object(self, *args): method get_new_arrived_notifications (line 5214) | async def get_new_arrived_notifications(self, *args): method get_specific_meta (line 5218) | async def get_specific_meta(self, *args): method get_persistence_info (line 5222) | async def get_persistence_info(self, *args): method get_persistence_infos (line 5226) | async def get_persistence_infos(self, *args): method perpetuate_object (line 5230) | async def perpetuate_object(self, *args): method unperpetuate_object (line 5234) | async def unperpetuate_object(self, *args): method prepare_get_object_or_meta_binary (line 5238) | async def prepare_get_object_or_meta_binary(self, *args): method get_password_info (line 5242) | async def get_password_info(self, *args): method get_password_infos (line 5246) | async def get_password_infos(self, *args): method get_metas_multiple_param (line 5250) | async def get_metas_multiple_param(self, *args): method complete_post_objects (line 5254) | async def complete_post_objects(self, *args): method change_meta (line 5258) | async def change_meta(self, *args): method change_metas (line 5262) | async def change_metas(self, *args): method rate_objects (line 5266) | async def rate_objects(self, *args): method post_meta_binary_with_data_id (line 5270) | async def post_meta_binary_with_data_id(self, *args): method post_meta_binaries_with_data_id (line 5274) | async def post_meta_binaries_with_data_id(self, *args): method rate_object_with_posting (line 5278) | async def rate_object_with_posting(self, *args): method rate_objects_with_posting (line 5282) | async def rate_objects_with_posting(self, *args): method get_object_infos (line 5286) | async def get_object_infos(self, *args): method search_object_light (line 5290) | async def search_object_light(self, *args): method register_user (line 5294) | async def register_user(self, *args): method get_users (line 5298) | async def get_users(self, *args): method sync_user_profile (line 5302) | async def sync_user_profile(self, *args): method search_users_user_point (line 5306) | async def search_users_user_point(self, *args): method search_users_played_course (line 5310) | async def search_users_played_course(self, *args): method search_users_cleared_course (line 5314) | async def search_users_cleared_course(self, *args): method search_users_positive_rated_course (line 5318) | async def search_users_positive_rated_course(self, *args): method update_last_login_time (line 5322) | async def update_last_login_time(self, *args): method get_username_ng_type (line 5326) | async def get_username_ng_type(self, *args): method get_courses (line 5330) | async def get_courses(self, *args): method search_courses_point_ranking (line 5334) | async def search_courses_point_ranking(self, *args): method search_courses_latest (line 5338) | async def search_courses_latest(self, *args): method search_courses_posted_by (line 5342) | async def search_courses_posted_by(self, *args): method search_courses_positive_rated_by (line 5346) | async def search_courses_positive_rated_by(self, *args): method search_courses_played_by (line 5350) | async def search_courses_played_by(self, *args): method search_courses_endless_mode (line 5354) | async def search_courses_endless_mode(self, *args): method search_courses_first_clear (line 5358) | async def search_courses_first_clear(self, *args): method search_courses_best_time (line 5362) | async def search_courses_best_time(self, *args): method get_courses_event (line 5366) | async def get_courses_event(self, *args): method search_courses_event (line 5370) | async def search_courses_event(self, *args): method search_comments_in_order (line 5374) | async def search_comments_in_order(self, *args): method search_comments (line 5378) | async def search_comments(self, *args): method get_death_positions (line 5382) | async def get_death_positions(self, *args): method get_user_or_course (line 5386) | async def get_user_or_course(self, *args): method get_req_get_info_headers_info (line 5390) | async def get_req_get_info_headers_info(self, *args): method get_event_course_stamp (line 5394) | async def get_event_course_stamp(self, *args): method get_event_course_status (line 5398) | async def get_event_course_status(self, *args): method get_event_course_histogram (line 5402) | async def get_event_course_histogram(self, *args): method get_event_course_ghost (line 5406) | async def get_event_course_ghost(self, *args): method get_world_map (line 5410) | async def get_world_map(self, *args): method search_world_map_pick_up (line 5414) | async def search_world_map_pick_up(self, *args): FILE: nintendo/nex/debug.py class ApiCall (line 10) | class ApiCall(common.Structure): method __init__ (line 11) | def __init__(self): method check_required (line 17) | def check_required(self, settings, version): method load (line 22) | def load(self, stream, version): method save (line 27) | def save(self, stream, version): class ApiCallSummary (line 34) | class ApiCallSummary(common.Structure): method __init__ (line 35) | def __init__(self): method check_required (line 45) | def check_required(self, settings, version): method load (line 50) | def load(self, stream, version): method save (line 59) | def save(self, stream, version): class DebugProtocol (line 70) | class DebugProtocol: class DebugClient (line 82) | class DebugClient(DebugProtocol): method __init__ (line 83) | def __init__(self, client): method enable_api_recorder (line 87) | async def enable_api_recorder(self): method disable_api_recorder (line 99) | async def disable_api_recorder(self): method is_api_recorder_enabled (line 111) | async def is_api_recorder_enabled(self): method get_api_calls (line 125) | async def get_api_calls(self, pids, start, end): method get_api_call_summary (line 142) | async def get_api_call_summary(self, pid, start, end, only_limit_excee... class DebugServer (line 161) | class DebugServer(DebugProtocol): method __init__ (line 162) | def __init__(self): method logout (line 173) | async def logout(self, client): method handle (line 176) | async def handle(self, client, method_id, input, output): method handle_enable_api_recorder (line 183) | async def handle_enable_api_recorder(self, client, input, output): method handle_disable_api_recorder (line 188) | async def handle_disable_api_recorder(self, client, input, output): method handle_is_api_recorder_enabled (line 193) | async def handle_is_api_recorder_enabled(self, client, input, output): method handle_get_api_calls (line 203) | async def handle_get_api_calls(self, client, input, output): method handle_set_exclude_joined_matchmake_session (line 216) | async def handle_set_exclude_joined_matchmake_session(self, client, in... method handle_get_exclude_joined_matchmake_session (line 220) | async def handle_get_exclude_joined_matchmake_session(self, client, in... method handle_get_api_call_summary (line 224) | async def handle_get_api_call_summary(self, client, input, output): method enable_api_recorder (line 238) | async def enable_api_recorder(self, *args): method disable_api_recorder (line 242) | async def disable_api_recorder(self, *args): method is_api_recorder_enabled (line 246) | async def is_api_recorder_enabled(self, *args): method get_api_calls (line 250) | async def get_api_calls(self, *args): method get_api_call_summary (line 254) | async def get_api_call_summary(self, *args): FILE: nintendo/nex/friends.py class AccountExtraInfo (line 10) | class AccountExtraInfo(common.Structure): method __init__ (line 11) | def __init__(self): method check_required (line 17) | def check_required(self, settings, version): method load (line 22) | def load(self, stream, version): method save (line 27) | def save(self, stream, version): class FriendComment (line 34) | class FriendComment(common.Data): method __init__ (line 35) | def __init__(self): method check_required (line 41) | def check_required(self, settings, version): method load (line 46) | def load(self, stream, version): method save (line 51) | def save(self, stream, version): class FriendKey (line 59) | class FriendKey(common.Structure): method __init__ (line 60) | def __init__(self): method check_required (line 65) | def check_required(self, settings, version): method load (line 70) | def load(self, stream, version): method save (line 74) | def save(self, stream, version): class FriendMii (line 80) | class FriendMii(common.Data): method __init__ (line 81) | def __init__(self): method check_required (line 87) | def check_required(self, settings, version): method load (line 92) | def load(self, stream, version): method save (line 97) | def save(self, stream, version): class FriendMiiList (line 105) | class FriendMiiList(common.Data): method __init__ (line 106) | def __init__(self): method check_required (line 112) | def check_required(self, settings, version): method load (line 117) | def load(self, stream, version): method save (line 122) | def save(self, stream, version): class FriendPersistentInfo (line 130) | class FriendPersistentInfo(common.Data): method __init__ (line 131) | def __init__(self): method check_required (line 145) | def check_required(self, settings, version): method load (line 150) | def load(self, stream, version): method save (line 163) | def save(self, stream, version): class FriendPicture (line 179) | class FriendPicture(common.Data): method __init__ (line 180) | def __init__(self): method check_required (line 186) | def check_required(self, settings, version): method load (line 191) | def load(self, stream, version): method save (line 196) | def save(self, stream, version): class FriendPresence (line 204) | class FriendPresence(common.Data): method __init__ (line 205) | def __init__(self): method check_required (line 210) | def check_required(self, settings, version): method load (line 215) | def load(self, stream, version): method save (line 219) | def save(self, stream, version): class FriendRelationship (line 226) | class FriendRelationship(common.Data): method __init__ (line 227) | def __init__(self): method check_required (line 233) | def check_required(self, settings, version): method load (line 238) | def load(self, stream, version): method save (line 243) | def save(self, stream, version): class GameKey (line 251) | class GameKey(common.Data): method __init__ (line 252) | def __init__(self): method check_required (line 257) | def check_required(self, settings, version): method load (line 260) | def load(self, stream, version): method save (line 264) | def save(self, stream, version): class Mii (line 271) | class Mii(common.Data): method __init__ (line 272) | def __init__(self): method check_required (line 279) | def check_required(self, settings, version): method load (line 284) | def load(self, stream, version): method save (line 290) | def save(self, stream, version): class MiiList (line 299) | class MiiList(common.Data): method __init__ (line 300) | def __init__(self): method check_required (line 307) | def check_required(self, settings, version): method load (line 312) | def load(self, stream, version): method save (line 318) | def save(self, stream, version): class MyProfile (line 327) | class MyProfile(common.Data): method __init__ (line 328) | def __init__(self): method check_required (line 339) | def check_required(self, settings, version): method load (line 344) | def load(self, stream, version): method save (line 354) | def save(self, stream, version): class NintendoPresence (line 367) | class NintendoPresence(common.Data): method __init__ (line 368) | def __init__(self): method check_required (line 381) | def check_required(self, settings, version): method load (line 386) | def load(self, stream, version): method save (line 398) | def save(self, stream, version): class PlayedGame (line 413) | class PlayedGame(common.Data): method __init__ (line 414) | def __init__(self): method check_required (line 419) | def check_required(self, settings, version): method load (line 424) | def load(self, stream, version): method save (line 428) | def save(self, stream, version): class BlacklistedPrincipal (line 435) | class BlacklistedPrincipal(common.Data): method __init__ (line 436) | def __init__(self): method check_required (line 442) | def check_required(self, settings, version): method load (line 447) | def load(self, stream, version): method save (line 452) | def save(self, stream, version): class Comment (line 460) | class Comment(common.Data): method __init__ (line 461) | def __init__(self): method check_required (line 467) | def check_required(self, settings, version): method load (line 472) | def load(self, stream, version): method save (line 477) | def save(self, stream, version): class FriendInfo (line 485) | class FriendInfo(common.Data): method __init__ (line 486) | def __init__(self): method check_required (line 495) | def check_required(self, settings, version): method load (line 500) | def load(self, stream, version): method save (line 508) | def save(self, stream, version): class FriendRequest (line 519) | class FriendRequest(common.Data): method __init__ (line 520) | def __init__(self): method check_required (line 526) | def check_required(self, settings, version): method load (line 531) | def load(self, stream, version): method save (line 536) | def save(self, stream, version): class FriendRequestMessage (line 544) | class FriendRequestMessage(common.Data): method __init__ (line 545) | def __init__(self): method check_required (line 557) | def check_required(self, settings, version): method load (line 562) | def load(self, stream, version): method save (line 573) | def save(self, stream, version): class MiiV2 (line 587) | class MiiV2(common.Data): method __init__ (line 588) | def __init__(self): method check_required (line 596) | def check_required(self, settings, version): method load (line 601) | def load(self, stream, version): method save (line 608) | def save(self, stream, version): class NNAInfo (line 618) | class NNAInfo(common.Data): method __init__ (line 619) | def __init__(self): method check_required (line 625) | def check_required(self, settings, version): method load (line 628) | def load(self, stream, version): method save (line 633) | def save(self, stream, version): class NintendoCreateAccountData (line 641) | class NintendoCreateAccountData(common.Data): method __init__ (line 642) | def __init__(self): method check_required (line 649) | def check_required(self, settings, version): method load (line 654) | def load(self, stream, version): method save (line 660) | def save(self, stream, version): class NintendoPresenceV2 (line 669) | class NintendoPresenceV2(common.Data): method __init__ (line 670) | def __init__(self): method check_required (line 688) | def check_required(self, settings, version): method load (line 691) | def load(self, stream, version): method save (line 708) | def save(self, stream, version): class PersistentNotification (line 728) | class PersistentNotification(common.Data): method __init__ (line 729) | def __init__(self): method check_required (line 737) | def check_required(self, settings, version): method load (line 742) | def load(self, stream, version): method save (line 749) | def save(self, stream, version): class PrincipalBasicInfo (line 759) | class PrincipalBasicInfo(common.Data): method __init__ (line 760) | def __init__(self): method check_required (line 767) | def check_required(self, settings, version): method load (line 772) | def load(self, stream, version): method save (line 778) | def save(self, stream, version): class PrincipalPreference (line 787) | class PrincipalPreference(common.Data): method __init__ (line 788) | def __init__(self): method check_required (line 794) | def check_required(self, settings, version): method load (line 799) | def load(self, stream, version): method save (line 804) | def save(self, stream, version): class PrincipalRequestBlockSetting (line 812) | class PrincipalRequestBlockSetting(common.Data): method __init__ (line 813) | def __init__(self): method check_required (line 818) | def check_required(self, settings, version): method load (line 823) | def load(self, stream, version): method save (line 827) | def save(self, stream, version): class FriendsProtocolV1 (line 834) | class FriendsProtocolV1: class FriendsProtocolV2 (line 865) | class FriendsProtocolV2: class FriendsClientV1 (line 890) | class FriendsClientV1(FriendsProtocolV1): method __init__ (line 891) | def __init__(self, client): method update_profile (line 895) | async def update_profile(self, profile_data): method update_mii (line 908) | async def update_mii(self, mii): method update_mii_list (line 921) | async def update_mii_list(self, mii_list): method update_played_games (line 934) | async def update_played_games(self, played_games): method update_preference (line 947) | async def update_preference(self, show_online_status, show_current_tit... method get_friend_mii (line 962) | async def get_friend_mii(self, friends): method get_friend_mii_list (line 977) | async def get_friend_mii_list(self, friends): method is_active_game (line 992) | async def is_active_game(self, unk1, game_key): method get_principal_id_by_local_friend_code (line 1008) | async def get_principal_id_by_local_friend_code(self, unk1, unk2): method get_friend_relationships (line 1024) | async def get_friend_relationships(self, principal_ids): method add_friend_by_principal_id (line 1039) | async def add_friend_by_principal_id(self, friend_seed, pid): method add_friend_by_principal_ids (line 1055) | async def add_friend_by_principal_ids(self, unk, pids): method remove_friend_by_local_friend_code (line 1071) | async def remove_friend_by_local_friend_code(self, friend_code): method remove_friend_by_principal_id (line 1084) | async def remove_friend_by_principal_id(self, pid): method get_all_friends (line 1097) | async def get_all_friends(self): method update_black_list (line 1111) | async def update_black_list(self, unk): method sync_friend (line 1124) | async def sync_friend(self, friend_seed, principal_ids, unk): method update_presence (line 1141) | async def update_presence(self, presence_info, unk): method update_favorite_game_key (line 1155) | async def update_favorite_game_key(self, game_key): method update_comment (line 1168) | async def update_comment(self, comment): method update_picture (line 1181) | async def update_picture(self, unk, picture): method get_friend_presence (line 1195) | async def get_friend_presence(self, principal_ids): method get_friend_comment (line 1210) | async def get_friend_comment(self, friends): method get_friend_picture (line 1225) | async def get_friend_picture(self, principal_ids): method get_friend_persistent_info (line 1240) | async def get_friend_persistent_info(self, principal_ids): method send_invitation (line 1255) | async def send_invitation(self, unk): class FriendsClientV2 (line 1269) | class FriendsClientV2(FriendsProtocolV2): method __init__ (line 1270) | def __init__(self, client): method update_and_get_all_information (line 1274) | async def update_and_get_all_information(self, nna_info, presence, bir... method add_friend (line 1300) | async def add_friend(self, pid): method add_friend_by_name (line 1317) | async def add_friend_by_name(self, name): method remove_friend (line 1334) | async def remove_friend(self, pid): method add_friend_request (line 1347) | async def add_friend_request(self, unk1, unk2, unk3, unk4, unk5, game_... method cancel_friend_request (line 1370) | async def cancel_friend_request(self, id): method accept_friend_request (line 1383) | async def accept_friend_request(self, id): method delete_friend_request (line 1398) | async def delete_friend_request(self, id): method deny_friend_request (line 1411) | async def deny_friend_request(self, id): method mark_friend_requests_as_received (line 1426) | async def mark_friend_requests_as_received(self, ids): method add_black_list (line 1439) | async def add_black_list(self, principal): method remove_black_list (line 1454) | async def remove_black_list(self, pid): method update_presence (line 1467) | async def update_presence(self, presence): method update_mii (line 1480) | async def update_mii(self, mii): method update_comment (line 1495) | async def update_comment(self, comment): method update_preference (line 1510) | async def update_preference(self, preference): method get_basic_info (line 1523) | async def get_basic_info(self, pids): method delete_persistent_notification (line 1538) | async def delete_persistent_notification(self, notifications): method check_setting_status (line 1551) | async def check_setting_status(self): method get_request_block_settings (line 1565) | async def get_request_block_settings(self, unk): class FriendsServerV1 (line 1581) | class FriendsServerV1(FriendsProtocolV1): method __init__ (line 1582) | def __init__(self): method logout (line 1612) | async def logout(self, client): method handle (line 1615) | async def handle(self, client, method_id, input, output): method handle_update_profile (line 1622) | async def handle_update_profile(self, client, input, output): method handle_update_mii (line 1628) | async def handle_update_mii(self, client, input, output): method handle_update_mii_list (line 1634) | async def handle_update_mii_list(self, client, input, output): method handle_update_played_games (line 1640) | async def handle_update_played_games(self, client, input, output): method handle_update_preference (line 1646) | async def handle_update_preference(self, client, input, output): method handle_get_friend_mii (line 1654) | async def handle_get_friend_mii(self, client, input, output): method handle_get_friend_mii_list (line 1665) | async def handle_get_friend_mii_list(self, client, input, output): method handle_is_active_game (line 1676) | async def handle_is_active_game(self, client, input, output): method handle_get_principal_id_by_local_friend_code (line 1688) | async def handle_get_principal_id_by_local_friend_code(self, client, i... method handle_get_friend_relationships (line 1700) | async def handle_get_friend_relationships(self, client, input, output): method handle_add_friend_by_principal_id (line 1711) | async def handle_add_friend_by_principal_id(self, client, input, output): method handle_add_friend_by_principal_ids (line 1723) | async def handle_add_friend_by_principal_ids(self, client, input, outp... method handle_remove_friend_by_local_friend_code (line 1735) | async def handle_remove_friend_by_local_friend_code(self, client, inpu... method handle_remove_friend_by_principal_id (line 1741) | async def handle_remove_friend_by_principal_id(self, client, input, ou... method handle_get_all_friends (line 1747) | async def handle_get_all_friends(self, client, input, output): method handle_update_black_list (line 1757) | async def handle_update_black_list(self, client, input, output): method handle_sync_friend (line 1763) | async def handle_sync_friend(self, client, input, output): method handle_update_presence (line 1776) | async def handle_update_presence(self, client, input, output): method handle_update_favorite_game_key (line 1783) | async def handle_update_favorite_game_key(self, client, input, output): method handle_update_comment (line 1789) | async def handle_update_comment(self, client, input, output): method handle_update_picture (line 1795) | async def handle_update_picture(self, client, input, output): method handle_get_friend_presence (line 1802) | async def handle_get_friend_presence(self, client, input, output): method handle_get_friend_comment (line 1813) | async def handle_get_friend_comment(self, client, input, output): method handle_get_friend_picture (line 1824) | async def handle_get_friend_picture(self, client, input, output): method handle_get_friend_persistent_info (line 1835) | async def handle_get_friend_persistent_info(self, client, input, output): method handle_send_invitation (line 1846) | async def handle_send_invitation(self, client, input, output): method update_profile (line 1852) | async def update_profile(self, *args): method update_mii (line 1856) | async def update_mii(self, *args): method update_mii_list (line 1860) | async def update_mii_list(self, *args): method update_played_games (line 1864) | async def update_played_games(self, *args): method update_preference (line 1868) | async def update_preference(self, *args): method get_friend_mii (line 1872) | async def get_friend_mii(self, *args): method get_friend_mii_list (line 1876) | async def get_friend_mii_list(self, *args): method is_active_game (line 1880) | async def is_active_game(self, *args): method get_principal_id_by_local_friend_code (line 1884) | async def get_principal_id_by_local_friend_code(self, *args): method get_friend_relationships (line 1888) | async def get_friend_relationships(self, *args): method add_friend_by_principal_id (line 1892) | async def add_friend_by_principal_id(self, *args): method add_friend_by_principal_ids (line 1896) | async def add_friend_by_principal_ids(self, *args): method remove_friend_by_local_friend_code (line 1900) | async def remove_friend_by_local_friend_code(self, *args): method remove_friend_by_principal_id (line 1904) | async def remove_friend_by_principal_id(self, *args): method get_all_friends (line 1908) | async def get_all_friends(self, *args): method update_black_list (line 1912) | async def update_black_list(self, *args): method sync_friend (line 1916) | async def sync_friend(self, *args): method update_presence (line 1920) | async def update_presence(self, *args): method update_favorite_game_key (line 1924) | async def update_favorite_game_key(self, *args): method update_comment (line 1928) | async def update_comment(self, *args): method update_picture (line 1932) | async def update_picture(self, *args): method get_friend_presence (line 1936) | async def get_friend_presence(self, *args): method get_friend_comment (line 1940) | async def get_friend_comment(self, *args): method get_friend_picture (line 1944) | async def get_friend_picture(self, *args): method get_friend_persistent_info (line 1948) | async def get_friend_persistent_info(self, *args): method send_invitation (line 1952) | async def send_invitation(self, *args): class FriendsServerV2 (line 1957) | class FriendsServerV2(FriendsProtocolV2): method __init__ (line 1958) | def __init__(self): method logout (line 1982) | async def logout(self, client): method handle (line 1985) | async def handle(self, client, method_id, input, output): method handle_update_and_get_all_information (line 1992) | async def handle_update_and_get_all_information(self, client, input, o... method handle_add_friend (line 2016) | async def handle_add_friend(self, client, input, output): method handle_add_friend_by_name (line 2031) | async def handle_add_friend_by_name(self, client, input, output): method handle_remove_friend (line 2046) | async def handle_remove_friend(self, client, input, output): method handle_add_friend_request (line 2052) | async def handle_add_friend_request(self, client, input, output): method handle_cancel_friend_request (line 2073) | async def handle_cancel_friend_request(self, client, input, output): method handle_accept_friend_request (line 2079) | async def handle_accept_friend_request(self, client, input, output): method handle_delete_friend_request (line 2090) | async def handle_delete_friend_request(self, client, input, output): method handle_deny_friend_request (line 2096) | async def handle_deny_friend_request(self, client, input, output): method handle_mark_friend_requests_as_received (line 2107) | async def handle_mark_friend_requests_as_received(self, client, input,... method handle_add_black_list (line 2113) | async def handle_add_black_list(self, client, input, output): method handle_remove_black_list (line 2124) | async def handle_remove_black_list(self, client, input, output): method handle_update_presence (line 2130) | async def handle_update_presence(self, client, input, output): method handle_update_mii (line 2136) | async def handle_update_mii(self, client, input, output): method handle_update_comment (line 2147) | async def handle_update_comment(self, client, input, output): method handle_update_preference (line 2158) | async def handle_update_preference(self, client, input, output): method handle_get_basic_info (line 2164) | async def handle_get_basic_info(self, client, input, output): method handle_delete_persistent_notification (line 2175) | async def handle_delete_persistent_notification(self, client, input, o... method handle_check_setting_status (line 2181) | async def handle_check_setting_status(self, client, input, output): method handle_get_request_block_settings (line 2191) | async def handle_get_request_block_settings(self, client, input, output): method update_and_get_all_information (line 2202) | async def update_and_get_all_information(self, *args): method add_friend (line 2206) | async def add_friend(self, *args): method add_friend_by_name (line 2210) | async def add_friend_by_name(self, *args): method remove_friend (line 2214) | async def remove_friend(self, *args): method add_friend_request (line 2218) | async def add_friend_request(self, *args): method cancel_friend_request (line 2222) | async def cancel_friend_request(self, *args): method accept_friend_request (line 2226) | async def accept_friend_request(self, *args): method delete_friend_request (line 2230) | async def delete_friend_request(self, *args): method deny_friend_request (line 2234) | async def deny_friend_request(self, *args): method mark_friend_requests_as_received (line 2238) | async def mark_friend_requests_as_received(self, *args): method add_black_list (line 2242) | async def add_black_list(self, *args): method remove_black_list (line 2246) | async def remove_black_list(self, *args): method update_presence (line 2250) | async def update_presence(self, *args): method update_mii (line 2254) | async def update_mii(self, *args): method update_comment (line 2258) | async def update_comment(self, *args): method update_preference (line 2262) | async def update_preference(self, *args): method get_basic_info (line 2266) | async def get_basic_info(self, *args): method delete_persistent_notification (line 2270) | async def delete_persistent_notification(self, *args): method check_setting_status (line 2274) | async def check_setting_status(self, *args): method get_request_block_settings (line 2278) | async def get_request_block_settings(self, *args): FILE: nintendo/nex/health.py class HealthProtocol (line 10) | class HealthProtocol: class HealthClient (line 19) | class HealthClient(HealthProtocol): method __init__ (line 20) | def __init__(self, client): method ping_daemon (line 24) | async def ping_daemon(self): method ping_database (line 38) | async def ping_database(self): method run_sanity_check (line 52) | async def run_sanity_check(self): method fix_sanity_errors (line 66) | async def fix_sanity_errors(self): class HealthServer (line 81) | class HealthServer(HealthProtocol): method __init__ (line 82) | def __init__(self): method logout (line 90) | async def logout(self, client): method handle (line 93) | async def handle(self, client, method_id, input, output): method handle_ping_daemon (line 100) | async def handle_ping_daemon(self, client, input, output): method handle_ping_database (line 110) | async def handle_ping_database(self, client, input, output): method handle_run_sanity_check (line 120) | async def handle_run_sanity_check(self, client, input, output): method handle_fix_sanity_errors (line 130) | async def handle_fix_sanity_errors(self, client, input, output): method ping_daemon (line 140) | async def ping_daemon(self, *args): method ping_database (line 144) | async def ping_database(self, *args): method run_sanity_check (line 148) | async def run_sanity_check(self, *args): method fix_sanity_errors (line 152) | async def fix_sanity_errors(self, *args): FILE: nintendo/nex/hpp.py class HppClient (line 10) | class HppClient: method __init__ (line 11) | def __init__(self, settings, game_server_id, nex_version, pid, password): method set_environment (line 28) | def set_environment(self, env): self.environment = env method host (line 30) | def host(self): method request (line 33) | async def request(self, protocol, method, body): FILE: nintendo/nex/kerberos.py class KeyDerivationOld (line 10) | class KeyDerivationOld: method __init__ (line 11) | def __init__(self, base_count = 65000, pid_count = 1024): method derive_key (line 15) | def derive_key(self, password, pid): class KeyDerivationNew (line 22) | class KeyDerivationNew: method __init__ (line 23) | def __init__(self, base_count = 1, pid_count = 1): method derive_key (line 27) | def derive_key(self, password, pid): class KerberosEncryption (line 39) | class KerberosEncryption: method __init__ (line 40) | def __init__(self, key): method check (line 43) | def check(self, buffer): method decrypt (line 49) | def decrypt(self, buffer): method encrypt (line 54) | def encrypt(self, buffer): class ClientTicket (line 60) | class ClientTicket: method __init__ (line 61) | def __init__(self): method decrypt (line 67) | def decrypt(cls, data, key, settings): method encrypt (line 78) | def encrypt(self, key, settings): class ServerTicket (line 91) | class ServerTicket: method __init__ (line 92) | def __init__(self): method decrypt (line 98) | def decrypt(cls, data, key, settings): method encrypt (line 116) | def encrypt(self, key, settings): class Credentials (line 142) | class Credentials: method __init__ (line 143) | def __init__(self, ticket, pid, cid): FILE: nintendo/nex/matchmaking.py class MatchmakeSystem (line 10) | class MatchmakeSystem: class Gathering (line 15) | class Gathering(common.Structure): method __init__ (line 16) | def __init__(self): method check_required (line 29) | def check_required(self, settings, version): method load (line 32) | def load(self, stream, version): method save (line 44) | def save(self, stream, version): class GatheringURLs (line 58) | class GatheringURLs(common.Structure): method __init__ (line 59) | def __init__(self): method check_required (line 64) | def check_required(self, settings, version): method load (line 69) | def load(self, stream, version): method save (line 73) | def save(self, stream, version): class GatheringStats (line 79) | class GatheringStats(common.Structure): method __init__ (line 80) | def __init__(self): method check_required (line 86) | def check_required(self, settings, version): method load (line 91) | def load(self, stream, version): method save (line 96) | def save(self, stream, version): class Invitation (line 103) | class Invitation(common.Structure): method __init__ (line 104) | def __init__(self): method check_required (line 110) | def check_required(self, settings, version): method load (line 115) | def load(self, stream, version): method save (line 120) | def save(self, stream, version): class ParticipantDetails (line 127) | class ParticipantDetails(common.Structure): method __init__ (line 128) | def __init__(self): method check_required (line 135) | def check_required(self, settings, version): method load (line 140) | def load(self, stream, version): method save (line 146) | def save(self, stream, version): class DeletionEntry (line 154) | class DeletionEntry(common.Structure): method __init__ (line 155) | def __init__(self): method check_required (line 161) | def check_required(self, settings, version): method load (line 166) | def load(self, stream, version): method save (line 171) | def save(self, stream, version): class MatchmakeParam (line 178) | class MatchmakeParam(common.Structure): method __init__ (line 179) | def __init__(self): method check_required (line 183) | def check_required(self, settings, version): method load (line 186) | def load(self, stream, version): method save (line 189) | def save(self, stream, version): class MatchmakeSessionSearchCriteria (line 194) | class MatchmakeSessionSearchCriteria(common.Structure): method __init__ (line 195) | def __init__(self): method check_required (line 214) | def check_required(self, settings, version): method load (line 220) | def load(self, stream, version): method save (line 240) | def save(self, stream, version): class MatchmakeSession (line 262) | class MatchmakeSession(Gathering): method __init__ (line 263) | def __init__(self): method max_version (line 282) | def max_version(self, settings): method check_required (line 293) | def check_required(self, settings, version): method load (line 313) | def load(self, stream, version): method save (line 351) | def save(self, stream, version): class MatchmakeBlockListParam (line 392) | class MatchmakeBlockListParam(common.Structure): method __init__ (line 393) | def __init__(self): method check_required (line 397) | def check_required(self, settings, version): method load (line 400) | def load(self, stream, version): method save (line 403) | def save(self, stream, version): class CreateMatchmakeSessionParam (line 408) | class CreateMatchmakeSessionParam(common.Structure): method __init__ (line 409) | def __init__(self): method check_required (line 418) | def check_required(self, settings, version): method load (line 423) | def load(self, stream, version): method save (line 431) | def save(self, stream, version): class JoinMatchmakeSessionParam (line 441) | class JoinMatchmakeSessionParam(common.Structure): method __init__ (line 442) | def __init__(self): method check_required (line 456) | def check_required(self, settings, version): method load (line 461) | def load(self, stream, version): method save (line 474) | def save(self, stream, version): class UpdateMatchmakeSessionParam (line 489) | class UpdateMatchmakeSessionParam(common.Structure): method __init__ (line 490) | def __init__(self): method check_required (line 510) | def check_required(self, settings, version): method load (line 515) | def load(self, stream, version): method save (line 534) | def save(self, stream, version): class AutoMatchmakeParam (line 555) | class AutoMatchmakeParam(common.Structure): method __init__ (line 556) | def __init__(self): method check_required (line 568) | def check_required(self, settings, version): method load (line 573) | def load(self, stream, version): method save (line 584) | def save(self, stream, version): class FindMatchmakeSessionByParticipantParam (line 597) | class FindMatchmakeSessionByParticipantParam(common.Structure): method __init__ (line 598) | def __init__(self): method check_required (line 604) | def check_required(self, settings, version): method load (line 609) | def load(self, stream, version): method save (line 614) | def save(self, stream, version): class FindMatchmakeSessionByParticipantResult (line 621) | class FindMatchmakeSessionByParticipantResult(common.Structure): method __init__ (line 622) | def __init__(self): method check_required (line 627) | def check_required(self, settings, version): method load (line 632) | def load(self, stream, version): method save (line 636) | def save(self, stream, version): class PersistentGathering (line 642) | class PersistentGathering(Gathering): method __init__ (line 643) | def __init__(self): method check_required (line 654) | def check_required(self, settings, version): method load (line 659) | def load(self, stream, version): method save (line 669) | def save(self, stream, version): class SimpleCommunity (line 682) | class SimpleCommunity(common.Structure): method __init__ (line 683) | def __init__(self): method check_required (line 688) | def check_required(self, settings, version): method load (line 693) | def load(self, stream, version): method save (line 697) | def save(self, stream, version): class PlayingSession (line 703) | class PlayingSession(common.Structure): method __init__ (line 704) | def __init__(self): method check_required (line 709) | def check_required(self, settings, version): method load (line 714) | def load(self, stream, version): method save (line 718) | def save(self, stream, version): class SimplePlayingSession (line 724) | class SimplePlayingSession(common.Structure): method __init__ (line 725) | def __init__(self): method check_required (line 732) | def check_required(self, settings, version): method load (line 737) | def load(self, stream, version): method save (line 743) | def save(self, stream, version): class MatchmakeRefereeRound (line 751) | class MatchmakeRefereeRound(common.Structure): method __init__ (line 752) | def __init__(self): method check_required (line 760) | def check_required(self, settings, version): method load (line 765) | def load(self, stream, version): method save (line 772) | def save(self, stream, version): class MatchmakeRefereeStartRoundParam (line 781) | class MatchmakeRefereeStartRoundParam(common.Structure): method __init__ (line 782) | def __init__(self): method check_required (line 788) | def check_required(self, settings, version): method load (line 793) | def load(self, stream, version): method save (line 798) | def save(self, stream, version): class MatchmakeRefereeEndRoundParam (line 805) | class MatchmakeRefereeEndRoundParam(common.Structure): method __init__ (line 806) | def __init__(self): method check_required (line 811) | def check_required(self, settings, version): method load (line 816) | def load(self, stream, version): method save (line 820) | def save(self, stream, version): class MatchmakeRefereePersonalRoundResult (line 826) | class MatchmakeRefereePersonalRoundResult(common.Structure): method __init__ (line 827) | def __init__(self): method check_required (line 835) | def check_required(self, settings, version): method load (line 840) | def load(self, stream, version): method save (line 847) | def save(self, stream, version): class MatchmakeRefereeStats (line 856) | class MatchmakeRefereeStats(common.Structure): method __init__ (line 857) | def __init__(self): method check_required (line 876) | def check_required(self, settings, version): method load (line 881) | def load(self, stream, version): method save (line 899) | def save(self, stream, version): class MatchmakeRefereeStatsTarget (line 919) | class MatchmakeRefereeStatsTarget(common.Structure): method __init__ (line 920) | def __init__(self): method check_required (line 925) | def check_required(self, settings, version): method load (line 930) | def load(self, stream, version): method save (line 934) | def save(self, stream, version): class MatchmakeRefereeStatsInitParam (line 940) | class MatchmakeRefereeStatsInitParam(common.Structure): method __init__ (line 941) | def __init__(self): method check_required (line 946) | def check_required(self, settings, version): method load (line 951) | def load(self, stream, version): method save (line 955) | def save(self, stream, version): class MatchMakingProtocol (line 961) | class MatchMakingProtocol: class MatchMakingProtocolExt (line 1010) | class MatchMakingProtocolExt: class MatchmakeExtensionProtocol (line 1021) | class MatchmakeExtensionProtocol: class MatchmakeRefereeProtocol (line 1079) | class MatchmakeRefereeProtocol: class MatchMakingClient (line 1097) | class MatchMakingClient(MatchMakingProtocol): method __init__ (line 1098) | def __init__(self, client): method register_gathering (line 1102) | async def register_gathering(self, gathering): method unregister_gathering (line 1117) | async def unregister_gathering(self, gid): method unregister_gatherings (line 1132) | async def unregister_gatherings(self, gids): method update_gathering (line 1147) | async def update_gathering(self, gathering): method invite (line 1162) | async def invite(self, gid, pids, message): method accept_invitation (line 1179) | async def accept_invitation(self, gid, message): method decline_invitation (line 1195) | async def decline_invitation(self, gid, message): method cancel_invitation (line 1211) | async def cancel_invitation(self, gid, pids, message): method get_invitations_sent (line 1228) | async def get_invitations_sent(self, gid): method get_invitations_received (line 1243) | async def get_invitations_received(self): method participate (line 1257) | async def participate(self, gid, message): method cancel_participation (line 1273) | async def cancel_participation(self, gid, message): method get_participants (line 1289) | async def get_participants(self, gid): method add_participants (line 1304) | async def add_participants(self, gid, pids, message): method get_detailed_participants (line 1321) | async def get_detailed_participants(self, gid): method get_participants_urls (line 1336) | async def get_participants_urls(self, gid): method find_by_type (line 1351) | async def find_by_type(self, type, range): method find_by_description (line 1367) | async def find_by_description(self, description, range): method find_by_description_regex (line 1383) | async def find_by_description_regex(self, regex, range): method find_by_id (line 1399) | async def find_by_id(self, ids): method find_by_single_id (line 1414) | async def find_by_single_id(self, gid): method find_by_owner (line 1431) | async def find_by_owner(self, owner, range): method find_by_participants (line 1447) | async def find_by_participants(self, pids): method find_invitations (line 1462) | async def find_invitations(self, range): method find_by_sql_query (line 1477) | async def find_by_sql_query(self, query, range): method launch_session (line 1493) | async def launch_session(self, gid, url): method update_session_url (line 1509) | async def update_session_url(self, gid, url): method get_session_url (line 1525) | async def get_session_url(self, gid): method get_state (line 1542) | async def get_state(self, gid): method set_state (line 1559) | async def set_state(self, gid, state): method report_stats (line 1575) | async def report_stats(self, gid, stats): method get_stats (line 1591) | async def get_stats(self, gid, pids, columns): method delete_gathering (line 1610) | async def delete_gathering(self, gid): method get_pending_deletions (line 1625) | async def get_pending_deletions(self, reason, range): method delete_from_deletions (line 1643) | async def delete_from_deletions(self, deletions): method migrate_gathering_ownership_v1 (line 1658) | async def migrate_gathering_ownership_v1(self, gid, potential_owners): method find_by_description_like (line 1674) | async def find_by_description_like(self, description, range): method register_local_url (line 1690) | async def register_local_url(self, gid, url): method register_local_urls (line 1704) | async def register_local_urls(self, gid, urls): method update_session_host_v1 (line 1718) | async def update_session_host_v1(self, gid): method get_session_urls (line 1731) | async def get_session_urls(self, gid): method update_session_host (line 1746) | async def update_session_host(self, gid, is_migrate_owner): method update_gathering_ownership (line 1760) | async def update_gathering_ownership(self, gid, participants_only): method migrate_gathering_ownership (line 1776) | async def migrate_gathering_ownership(self, gid, potential_owners, par... class MatchMakingClientExt (line 1792) | class MatchMakingClientExt(MatchMakingProtocolExt): method __init__ (line 1793) | def __init__(self, client): method end_participation (line 1797) | async def end_participation(self, gid, message): method get_participants (line 1813) | async def get_participants(self, gid, only_active): method get_detailed_participants (line 1829) | async def get_detailed_participants(self, gid, only_active): method get_participants_urls (line 1845) | async def get_participants_urls(self, gids): method get_gathering_relations (line 1860) | async def get_gathering_relations(self, id, descr): method delete_from_deletions (line 1876) | async def delete_from_deletions(self, deletions, pid): class MatchmakeExtensionClient (line 1891) | class MatchmakeExtensionClient(MatchmakeExtensionProtocol): method __init__ (line 1892) | def __init__(self, client): method close_participation (line 1896) | async def close_participation(self, gid): method open_participation (line 1909) | async def open_participation(self, gid): method auto_matchmake_postpone (line 1922) | async def auto_matchmake_postpone(self, gathering, message): method browse_matchmake_session (line 1938) | async def browse_matchmake_session(self, search_criteria, range): method browse_matchmake_session_with_host_urls (line 1954) | async def browse_matchmake_session_with_host_urls(self, search_criteri... method create_matchmake_session (line 1972) | async def create_matchmake_session(self, gathering, description, num_p... method join_matchmake_session (line 1991) | async def join_matchmake_session(self, gid, message): method modify_current_game_attribute (line 2007) | async def modify_current_game_attribute(self, gid, attrib, value): method update_notification_data (line 2022) | async def update_notification_data(self, type, param1, param2, param3): method get_friend_notification_data (line 2038) | async def get_friend_notification_data(self, type): method update_application_buffer (line 2053) | async def update_application_buffer(self, gid, buffer): method update_matchmake_session_attribute (line 2067) | async def update_matchmake_session_attribute(self, gid, attribs): method get_friend_notification_data_list (line 2081) | async def get_friend_notification_data_list(self, types): method update_matchmake_session (line 2096) | async def update_matchmake_session(self, gathering): method auto_matchmake_with_search_criteria_postpone (line 2109) | async def auto_matchmake_with_search_criteria_postpone(self, search_cr... method get_playing_session (line 2126) | async def get_playing_session(self, pids): method create_community (line 2141) | async def create_community(self, community, message): method update_community (line 2157) | async def update_community(self, community): method join_community (line 2170) | async def join_community(self, gid, message, password): method find_community_by_gathering_id (line 2185) | async def find_community_by_gathering_id(self, gids): method find_official_community (line 2200) | async def find_official_community(self, available_only, range): method find_community_by_participant (line 2216) | async def find_community_by_participant(self, pid, range): method update_privacy_setting (line 2232) | async def update_privacy_setting(self, online_status, community_partic... method get_my_block_list (line 2246) | async def get_my_block_list(self): method add_to_block_list (line 2260) | async def add_to_block_list(self, pids): method remove_from_block_list (line 2273) | async def remove_from_block_list(self, pids): method clear_my_block_list (line 2286) | async def clear_my_block_list(self): method report_violation (line 2298) | async def report_violation(self, pid, username, violation_code): method is_violation_user (line 2313) | async def is_violation_user(self): method join_matchmake_session_ex (line 2329) | async def join_matchmake_session_ex(self, gid, gmessage, ignore_block_... method get_simple_playing_session (line 2347) | async def get_simple_playing_session(self, pids, include_login_user): method get_simple_community (line 2363) | async def get_simple_community(self, gids): method auto_matchmake_with_gathering_id_postpone (line 2378) | async def auto_matchmake_with_gathering_id_postpone(self, gids, gather... method update_progress_score (line 2395) | async def update_progress_score(self, gid, score): method debug_notify_event (line 2409) | async def debug_notify_event(self, pid, main_type, sub_type, param1, p... method generate_matchmake_session_system_password (line 2427) | async def generate_matchmake_session_system_password(self, gid): method clear_matchmake_session_system_password (line 2442) | async def clear_matchmake_session_system_password(self, gid): method create_matchmake_session_with_param (line 2455) | async def create_matchmake_session_with_param(self, param): method join_matchmake_session_with_param (line 2470) | async def join_matchmake_session_with_param(self, param): method auto_matchmake_with_param_postpone (line 2485) | async def auto_matchmake_with_param_postpone(self, param): method find_matchmake_session_by_gathering_id_detail (line 2500) | async def find_matchmake_session_by_gathering_id_detail(self, gid): method browse_matchmake_session_no_holder (line 2515) | async def browse_matchmake_session_no_holder(self, search_criteria, ra... method browse_matchmake_session_with_host_urls_no_holder (line 2531) | async def browse_matchmake_session_with_host_urls_no_holder(self, sear... method update_matchmake_session_part (line 2549) | async def update_matchmake_session_part(self, param): method request_matchmaking (line 2562) | async def request_matchmaking(self, param): method withdraw_matchmaking (line 2577) | async def withdraw_matchmaking(self, request_id): method withdraw_matchmaking_all (line 2590) | async def withdraw_matchmaking_all(self): method find_matchmake_session_by_gathering_id (line 2602) | async def find_matchmake_session_by_gathering_id(self, gids): method find_matchmake_session_by_single_gathering_id (line 2617) | async def find_matchmake_session_by_single_gathering_id(self, gid): method find_matchmake_session_by_owner (line 2632) | async def find_matchmake_session_by_owner(self, pid, range): method find_matchmake_session_by_participant (line 2648) | async def find_matchmake_session_by_participant(self, param): method browse_matchmake_session_no_holder_no_result_range (line 2663) | async def browse_matchmake_session_no_holder_no_result_range(self, sea... method browse_matchmake_session_with_host_urls_no_holder_no_result_range (line 2678) | async def browse_matchmake_session_with_host_urls_no_holder_no_result_... class MatchmakeRefereeClient (line 2696) | class MatchmakeRefereeClient(MatchmakeRefereeProtocol): method __init__ (line 2697) | def __init__(self, client): method start_round (line 2701) | async def start_round(self, param): method get_start_round_param (line 2716) | async def get_start_round_param(self, round_id): method end_round (line 2731) | async def end_round(self, param): method end_round_without_report (line 2744) | async def end_round_without_report(self, round_id): method get_round_participants (line 2757) | async def get_round_participants(self, round_id): method get_not_summarized_round (line 2772) | async def get_not_summarized_round(self): method get_round (line 2786) | async def get_round(self, round): method get_stats_primary (line 2801) | async def get_stats_primary(self, target): method get_stats_primaries (line 2816) | async def get_stats_primaries(self, targets): method get_stats_all (line 2833) | async def get_stats_all(self, target): method create_stats (line 2848) | async def create_stats(self, param): method get_or_create_stats (line 2863) | async def get_or_create_stats(self, param): method reset_stats (line 2878) | async def reset_stats(self): class MatchMakingServer (line 2891) | class MatchMakingServer(MatchMakingProtocol): method __init__ (line 2892) | def __init__(self): method logout (line 2940) | async def logout(self, client): method handle (line 2943) | async def handle(self, client, method_id, input, output): method handle_register_gathering (line 2950) | async def handle_register_gathering(self, client, input, output): method handle_unregister_gathering (line 2961) | async def handle_unregister_gathering(self, client, input, output): method handle_unregister_gatherings (line 2972) | async def handle_unregister_gatherings(self, client, input, output): method handle_update_gathering (line 2983) | async def handle_update_gathering(self, client, input, output): method handle_invite (line 2994) | async def handle_invite(self, client, input, output): method handle_accept_invitation (line 3007) | async def handle_accept_invitation(self, client, input, output): method handle_decline_invitation (line 3019) | async def handle_decline_invitation(self, client, input, output): method handle_cancel_invitation (line 3031) | async def handle_cancel_invitation(self, client, input, output): method handle_get_invitations_sent (line 3044) | async def handle_get_invitations_sent(self, client, input, output): method handle_get_invitations_received (line 3055) | async def handle_get_invitations_received(self, client, input, output): method handle_participate (line 3065) | async def handle_participate(self, client, input, output): method handle_cancel_participation (line 3077) | async def handle_cancel_participation(self, client, input, output): method handle_get_participants (line 3089) | async def handle_get_participants(self, client, input, output): method handle_add_participants (line 3100) | async def handle_add_participants(self, client, input, output): method handle_get_detailed_participants (line 3113) | async def handle_get_detailed_participants(self, client, input, output): method handle_get_participants_urls (line 3124) | async def handle_get_participants_urls(self, client, input, output): method handle_find_by_type (line 3135) | async def handle_find_by_type(self, client, input, output): method handle_find_by_description (line 3147) | async def handle_find_by_description(self, client, input, output): method handle_find_by_description_regex (line 3159) | async def handle_find_by_description_regex(self, client, input, output): method handle_find_by_id (line 3171) | async def handle_find_by_id(self, client, input, output): method handle_find_by_single_id (line 3182) | async def handle_find_by_single_id(self, client, input, output): method handle_find_by_owner (line 3197) | async def handle_find_by_owner(self, client, input, output): method handle_find_by_participants (line 3209) | async def handle_find_by_participants(self, client, input, output): method handle_find_invitations (line 3220) | async def handle_find_invitations(self, client, input, output): method handle_find_by_sql_query (line 3231) | async def handle_find_by_sql_query(self, client, input, output): method handle_launch_session (line 3243) | async def handle_launch_session(self, client, input, output): method handle_update_session_url (line 3255) | async def handle_update_session_url(self, client, input, output): method handle_get_session_url (line 3267) | async def handle_get_session_url(self, client, input, output): method handle_get_state (line 3282) | async def handle_get_state(self, client, input, output): method handle_set_state (line 3297) | async def handle_set_state(self, client, input, output): method handle_report_stats (line 3309) | async def handle_report_stats(self, client, input, output): method handle_get_stats (line 3321) | async def handle_get_stats(self, client, input, output): method handle_delete_gathering (line 3338) | async def handle_delete_gathering(self, client, input, output): method handle_get_pending_deletions (line 3349) | async def handle_get_pending_deletions(self, client, input, output): method handle_delete_from_deletions (line 3365) | async def handle_delete_from_deletions(self, client, input, output): method handle_migrate_gathering_ownership_v1 (line 3376) | async def handle_migrate_gathering_ownership_v1(self, client, input, o... method handle_find_by_description_like (line 3388) | async def handle_find_by_description_like(self, client, input, output): method handle_register_local_url (line 3400) | async def handle_register_local_url(self, client, input, output): method handle_register_local_urls (line 3407) | async def handle_register_local_urls(self, client, input, output): method handle_update_session_host_v1 (line 3414) | async def handle_update_session_host_v1(self, client, input, output): method handle_get_session_urls (line 3420) | async def handle_get_session_urls(self, client, input, output): method handle_update_session_host (line 3431) | async def handle_update_session_host(self, client, input, output): method handle_update_gathering_ownership (line 3438) | async def handle_update_gathering_ownership(self, client, input, output): method handle_migrate_gathering_ownership (line 3450) | async def handle_migrate_gathering_ownership(self, client, input, outp... method register_gathering (line 3458) | async def register_gathering(self, *args): method unregister_gathering (line 3462) | async def unregister_gathering(self, *args): method unregister_gatherings (line 3466) | async def unregister_gatherings(self, *args): method update_gathering (line 3470) | async def update_gathering(self, *args): method invite (line 3474) | async def invite(self, *args): method accept_invitation (line 3478) | async def accept_invitation(self, *args): method decline_invitation (line 3482) | async def decline_invitation(self, *args): method cancel_invitation (line 3486) | async def cancel_invitation(self, *args): method get_invitations_sent (line 3490) | async def get_invitations_sent(self, *args): method get_invitations_received (line 3494) | async def get_invitations_received(self, *args): method participate (line 3498) | async def participate(self, *args): method cancel_participation (line 3502) | async def cancel_participation(self, *args): method get_participants (line 3506) | async def get_participants(self, *args): method add_participants (line 3510) | async def add_participants(self, *args): method get_detailed_participants (line 3514) | async def get_detailed_participants(self, *args): method get_participants_urls (line 3518) | async def get_participants_urls(self, *args): method find_by_type (line 3522) | async def find_by_type(self, *args): method find_by_description (line 3526) | async def find_by_description(self, *args): method find_by_description_regex (line 3530) | async def find_by_description_regex(self, *args): method find_by_id (line 3534) | async def find_by_id(self, *args): method find_by_single_id (line 3538) | async def find_by_single_id(self, *args): method find_by_owner (line 3542) | async def find_by_owner(self, *args): method find_by_participants (line 3546) | async def find_by_participants(self, *args): method find_invitations (line 3550) | async def find_invitations(self, *args): method find_by_sql_query (line 3554) | async def find_by_sql_query(self, *args): method launch_session (line 3558) | async def launch_session(self, *args): method update_session_url (line 3562) | async def update_session_url(self, *args): method get_session_url (line 3566) | async def get_session_url(self, *args): method get_state (line 3570) | async def get_state(self, *args): method set_state (line 3574) | async def set_state(self, *args): method report_stats (line 3578) | async def report_stats(self, *args): method get_stats (line 3582) | async def get_stats(self, *args): method delete_gathering (line 3586) | async def delete_gathering(self, *args): method get_pending_deletions (line 3590) | async def get_pending_deletions(self, *args): method delete_from_deletions (line 3594) | async def delete_from_deletions(self, *args): method migrate_gathering_ownership_v1 (line 3598) | async def migrate_gathering_ownership_v1(self, *args): method find_by_description_like (line 3602) | async def find_by_description_like(self, *args): method register_local_url (line 3606) | async def register_local_url(self, *args): method register_local_urls (line 3610) | async def register_local_urls(self, *args): method update_session_host_v1 (line 3614) | async def update_session_host_v1(self, *args): method get_session_urls (line 3618) | async def get_session_urls(self, *args): method update_session_host (line 3622) | async def update_session_host(self, *args): method update_gathering_ownership (line 3626) | async def update_gathering_ownership(self, *args): method migrate_gathering_ownership (line 3630) | async def migrate_gathering_ownership(self, *args): class MatchMakingServerExt (line 3635) | class MatchMakingServerExt(MatchMakingProtocolExt): method __init__ (line 3636) | def __init__(self): method logout (line 3646) | async def logout(self, client): method handle (line 3649) | async def handle(self, client, method_id, input, output): method handle_end_participation (line 3656) | async def handle_end_participation(self, client, input, output): method handle_get_participants (line 3668) | async def handle_get_participants(self, client, input, output): method handle_get_detailed_participants (line 3680) | async def handle_get_detailed_participants(self, client, input, output): method handle_get_participants_urls (line 3692) | async def handle_get_participants_urls(self, client, input, output): method handle_get_gathering_relations (line 3703) | async def handle_get_gathering_relations(self, client, input, output): method handle_delete_from_deletions (line 3715) | async def handle_delete_from_deletions(self, client, input, output): method end_participation (line 3722) | async def end_participation(self, *args): method get_participants (line 3726) | async def get_participants(self, *args): method get_detailed_participants (line 3730) | async def get_detailed_participants(self, *args): method get_participants_urls (line 3734) | async def get_participants_urls(self, *args): method get_gathering_relations (line 3738) | async def get_gathering_relations(self, *args): method delete_from_deletions (line 3742) | async def delete_from_deletions(self, *args): class MatchmakeExtensionServer (line 3747) | class MatchmakeExtensionServer(MatchmakeExtensionProtocol): method __init__ (line 3748) | def __init__(self): method logout (line 3805) | async def logout(self, client): method handle (line 3808) | async def handle(self, client, method_id, input, output): method handle_close_participation (line 3815) | async def handle_close_participation(self, client, input, output): method handle_open_participation (line 3821) | async def handle_open_participation(self, client, input, output): method handle_auto_matchmake_postpone (line 3827) | async def handle_auto_matchmake_postpone(self, client, input, output): method handle_browse_matchmake_session (line 3839) | async def handle_browse_matchmake_session(self, client, input, output): method handle_browse_matchmake_session_with_host_urls (line 3851) | async def handle_browse_matchmake_session_with_host_urls(self, client,... method handle_create_matchmake_session (line 3867) | async def handle_create_matchmake_session(self, client, input, output): method handle_join_matchmake_session (line 3884) | async def handle_join_matchmake_session(self, client, input, output): method handle_modify_current_game_attribute (line 3896) | async def handle_modify_current_game_attribute(self, client, input, ou... method handle_update_notification_data (line 3904) | async def handle_update_notification_data(self, client, input, output): method handle_get_friend_notification_data (line 3913) | async def handle_get_friend_notification_data(self, client, input, out... method handle_update_application_buffer (line 3924) | async def handle_update_application_buffer(self, client, input, output): method handle_update_matchmake_session_attribute (line 3931) | async def handle_update_matchmake_session_attribute(self, client, inpu... method handle_get_friend_notification_data_list (line 3938) | async def handle_get_friend_notification_data_list(self, client, input... method handle_update_matchmake_session (line 3949) | async def handle_update_matchmake_session(self, client, input, output): method handle_auto_matchmake_with_search_criteria_postpone (line 3955) | async def handle_auto_matchmake_with_search_criteria_postpone(self, cl... method handle_get_playing_session (line 3968) | async def handle_get_playing_session(self, client, input, output): method handle_create_community (line 3979) | async def handle_create_community(self, client, input, output): method handle_update_community (line 3991) | async def handle_update_community(self, client, input, output): method handle_join_community (line 3997) | async def handle_join_community(self, client, input, output): method handle_find_community_by_gathering_id (line 4005) | async def handle_find_community_by_gathering_id(self, client, input, o... method handle_find_official_community (line 4016) | async def handle_find_official_community(self, client, input, output): method handle_find_community_by_participant (line 4028) | async def handle_find_community_by_participant(self, client, input, ou... method handle_update_privacy_setting (line 4040) | async def handle_update_privacy_setting(self, client, input, output): method handle_get_my_block_list (line 4047) | async def handle_get_my_block_list(self, client, input, output): method handle_add_to_block_list (line 4057) | async def handle_add_to_block_list(self, client, input, output): method handle_remove_from_block_list (line 4063) | async def handle_remove_from_block_list(self, client, input, output): method handle_clear_my_block_list (line 4069) | async def handle_clear_my_block_list(self, client, input, output): method handle_report_violation (line 4074) | async def handle_report_violation(self, client, input, output): method handle_is_violation_user (line 4082) | async def handle_is_violation_user(self, client, input, output): method handle_join_matchmake_session_ex (line 4096) | async def handle_join_matchmake_session_ex(self, client, input, output): method handle_get_simple_playing_session (line 4110) | async def handle_get_simple_playing_session(self, client, input, output): method handle_get_simple_community (line 4122) | async def handle_get_simple_community(self, client, input, output): method handle_auto_matchmake_with_gathering_id_postpone (line 4133) | async def handle_auto_matchmake_with_gathering_id_postpone(self, clien... method handle_update_progress_score (line 4146) | async def handle_update_progress_score(self, client, input, output): method handle_debug_notify_event (line 4153) | async def handle_debug_notify_event(self, client, input, output): method handle_generate_matchmake_session_system_password (line 4164) | async def handle_generate_matchmake_session_system_password(self, clie... method handle_clear_matchmake_session_system_password (line 4175) | async def handle_clear_matchmake_session_system_password(self, client,... method handle_create_matchmake_session_with_param (line 4181) | async def handle_create_matchmake_session_with_param(self, client, inp... method handle_join_matchmake_session_with_param (line 4192) | async def handle_join_matchmake_session_with_param(self, client, input... method handle_auto_matchmake_with_param_postpone (line 4203) | async def handle_auto_matchmake_with_param_postpone(self, client, inpu... method handle_find_matchmake_session_by_gathering_id_detail (line 4214) | async def handle_find_matchmake_session_by_gathering_id_detail(self, c... method handle_browse_matchmake_session_no_holder (line 4225) | async def handle_browse_matchmake_session_no_holder(self, client, inpu... method handle_browse_matchmake_session_with_host_urls_no_holder (line 4237) | async def handle_browse_matchmake_session_with_host_urls_no_holder(sel... method handle_update_matchmake_session_part (line 4253) | async def handle_update_matchmake_session_part(self, client, input, ou... method handle_request_matchmaking (line 4259) | async def handle_request_matchmaking(self, client, input, output): method handle_withdraw_matchmaking (line 4270) | async def handle_withdraw_matchmaking(self, client, input, output): method handle_withdraw_matchmaking_all (line 4276) | async def handle_withdraw_matchmaking_all(self, client, input, output): method handle_find_matchmake_session_by_gathering_id (line 4281) | async def handle_find_matchmake_session_by_gathering_id(self, client, ... method handle_find_matchmake_session_by_single_gathering_id (line 4292) | async def handle_find_matchmake_session_by_single_gathering_id(self, c... method handle_find_matchmake_session_by_owner (line 4303) | async def handle_find_matchmake_session_by_owner(self, client, input, ... method handle_find_matchmake_session_by_participant (line 4315) | async def handle_find_matchmake_session_by_participant(self, client, i... method handle_browse_matchmake_session_no_holder_no_result_range (line 4326) | async def handle_browse_matchmake_session_no_holder_no_result_range(se... method handle_browse_matchmake_session_with_host_urls_no_holder_no_result_range (line 4337) | async def handle_browse_matchmake_session_with_host_urls_no_holder_no_... method close_participation (line 4352) | async def close_participation(self, *args): method open_participation (line 4356) | async def open_participation(self, *args): method auto_matchmake_postpone (line 4360) | async def auto_matchmake_postpone(self, *args): method browse_matchmake_session (line 4364) | async def browse_matchmake_session(self, *args): method browse_matchmake_session_with_host_urls (line 4368) | async def browse_matchmake_session_with_host_urls(self, *args): method create_matchmake_session (line 4372) | async def create_matchmake_session(self, *args): method join_matchmake_session (line 4376) | async def join_matchmake_session(self, *args): method modify_current_game_attribute (line 4380) | async def modify_current_game_attribute(self, *args): method update_notification_data (line 4384) | async def update_notification_data(self, *args): method get_friend_notification_data (line 4388) | async def get_friend_notification_data(self, *args): method update_application_buffer (line 4392) | async def update_application_buffer(self, *args): method update_matchmake_session_attribute (line 4396) | async def update_matchmake_session_attribute(self, *args): method get_friend_notification_data_list (line 4400) | async def get_friend_notification_data_list(self, *args): method update_matchmake_session (line 4404) | async def update_matchmake_session(self, *args): method auto_matchmake_with_search_criteria_postpone (line 4408) | async def auto_matchmake_with_search_criteria_postpone(self, *args): method get_playing_session (line 4412) | async def get_playing_session(self, *args): method create_community (line 4416) | async def create_community(self, *args): method update_community (line 4420) | async def update_community(self, *args): method join_community (line 4424) | async def join_community(self, *args): method find_community_by_gathering_id (line 4428) | async def find_community_by_gathering_id(self, *args): method find_official_community (line 4432) | async def find_official_community(self, *args): method find_community_by_participant (line 4436) | async def find_community_by_participant(self, *args): method update_privacy_setting (line 4440) | async def update_privacy_setting(self, *args): method get_my_block_list (line 4444) | async def get_my_block_list(self, *args): method add_to_block_list (line 4448) | async def add_to_block_list(self, *args): method remove_from_block_list (line 4452) | async def remove_from_block_list(self, *args): method clear_my_block_list (line 4456) | async def clear_my_block_list(self, *args): method report_violation (line 4460) | async def report_violation(self, *args): method is_violation_user (line 4464) | async def is_violation_user(self, *args): method join_matchmake_session_ex (line 4468) | async def join_matchmake_session_ex(self, *args): method get_simple_playing_session (line 4472) | async def get_simple_playing_session(self, *args): method get_simple_community (line 4476) | async def get_simple_community(self, *args): method auto_matchmake_with_gathering_id_postpone (line 4480) | async def auto_matchmake_with_gathering_id_postpone(self, *args): method update_progress_score (line 4484) | async def update_progress_score(self, *args): method debug_notify_event (line 4488) | async def debug_notify_event(self, *args): method generate_matchmake_session_system_password (line 4492) | async def generate_matchmake_session_system_password(self, *args): method clear_matchmake_session_system_password (line 4496) | async def clear_matchmake_session_system_password(self, *args): method create_matchmake_session_with_param (line 4500) | async def create_matchmake_session_with_param(self, *args): method join_matchmake_session_with_param (line 4504) | async def join_matchmake_session_with_param(self, *args): method auto_matchmake_with_param_postpone (line 4508) | async def auto_matchmake_with_param_postpone(self, *args): method find_matchmake_session_by_gathering_id_detail (line 4512) | async def find_matchmake_session_by_gathering_id_detail(self, *args): method browse_matchmake_session_no_holder (line 4516) | async def browse_matchmake_session_no_holder(self, *args): method browse_matchmake_session_with_host_urls_no_holder (line 4520) | async def browse_matchmake_session_with_host_urls_no_holder(self, *args): method update_matchmake_session_part (line 4524) | async def update_matchmake_session_part(self, *args): method request_matchmaking (line 4528) | async def request_matchmaking(self, *args): method withdraw_matchmaking (line 4532) | async def withdraw_matchmaking(self, *args): method withdraw_matchmaking_all (line 4536) | async def withdraw_matchmaking_all(self, *args): method find_matchmake_session_by_gathering_id (line 4540) | async def find_matchmake_session_by_gathering_id(self, *args): method find_matchmake_session_by_single_gathering_id (line 4544) | async def find_matchmake_session_by_single_gathering_id(self, *args): method find_matchmake_session_by_owner (line 4548) | async def find_matchmake_session_by_owner(self, *args): method find_matchmake_session_by_participant (line 4552) | async def find_matchmake_session_by_participant(self, *args): method browse_matchmake_session_no_holder_no_result_range (line 4556) | async def browse_matchmake_session_no_holder_no_result_range(self, *ar... method browse_matchmake_session_with_host_urls_no_holder_no_result_range (line 4560) | async def browse_matchmake_session_with_host_urls_no_holder_no_result_... class MatchmakeRefereeServer (line 4565) | class MatchmakeRefereeServer(MatchmakeRefereeProtocol): method __init__ (line 4566) | def __init__(self): method logout (line 4583) | async def logout(self, client): method handle (line 4586) | async def handle(self, client, method_id, input, output): method handle_start_round (line 4593) | async def handle_start_round(self, client, input, output): method handle_get_start_round_param (line 4604) | async def handle_get_start_round_param(self, client, input, output): method handle_end_round (line 4615) | async def handle_end_round(self, client, input, output): method handle_end_round_without_report (line 4621) | async def handle_end_round_without_report(self, client, input, output): method handle_get_round_participants (line 4627) | async def handle_get_round_participants(self, client, input, output): method handle_get_not_summarized_round (line 4638) | async def handle_get_not_summarized_round(self, client, input, output): method handle_get_round (line 4648) | async def handle_get_round(self, client, input, output): method handle_get_stats_primary (line 4659) | async def handle_get_stats_primary(self, client, input, output): method handle_get_stats_primaries (line 4670) | async def handle_get_stats_primaries(self, client, input, output): method handle_get_stats_all (line 4685) | async def handle_get_stats_all(self, client, input, output): method handle_create_stats (line 4696) | async def handle_create_stats(self, client, input, output): method handle_get_or_create_stats (line 4707) | async def handle_get_or_create_stats(self, client, input, output): method handle_reset_stats (line 4718) | async def handle_reset_stats(self, client, input, output): method start_round (line 4723) | async def start_round(self, *args): method get_start_round_param (line 4727) | async def get_start_round_param(self, *args): method end_round (line 4731) | async def end_round(self, *args): method end_round_without_report (line 4735) | async def end_round_without_report(self, *args): method get_round_participants (line 4739) | async def get_round_participants(self, *args): method get_not_summarized_round (line 4743) | async def get_not_summarized_round(self, *args): method get_round (line 4747) | async def get_round(self, *args): method get_stats_primary (line 4751) | async def get_stats_primary(self, *args): method get_stats_primaries (line 4755) | async def get_stats_primaries(self, *args): method get_stats_all (line 4759) | async def get_stats_all(self, *args): method create_stats (line 4763) | async def create_stats(self, *args): method get_or_create_stats (line 4767) | async def get_or_create_stats(self, *args): method reset_stats (line 4771) | async def reset_stats(self, *args): FILE: nintendo/nex/matchmaking_eagle.py class MatchmakeSystem (line 10) | class MatchmakeSystem: class Gathering (line 15) | class Gathering(common.Structure): method __init__ (line 16) | def __init__(self): method check_required (line 29) | def check_required(self, settings, version): method load (line 32) | def load(self, stream, version): method save (line 44) | def save(self, stream, version): class GatheringURLs (line 58) | class GatheringURLs(common.Structure): method __init__ (line 59) | def __init__(self): method check_required (line 64) | def check_required(self, settings, version): method load (line 69) | def load(self, stream, version): method save (line 73) | def save(self, stream, version): class GatheringStats (line 79) | class GatheringStats(common.Structure): method __init__ (line 80) | def __init__(self): method check_required (line 86) | def check_required(self, settings, version): method load (line 91) | def load(self, stream, version): method save (line 96) | def save(self, stream, version): class Invitation (line 103) | class Invitation(common.Structure): method __init__ (line 104) | def __init__(self): method check_required (line 110) | def check_required(self, settings, version): method load (line 115) | def load(self, stream, version): method save (line 120) | def save(self, stream, version): class ParticipantDetails (line 127) | class ParticipantDetails(common.Structure): method __init__ (line 128) | def __init__(self): method check_required (line 135) | def check_required(self, settings, version): method load (line 140) | def load(self, stream, version): method save (line 146) | def save(self, stream, version): class DeletionEntry (line 154) | class DeletionEntry(common.Structure): method __init__ (line 155) | def __init__(self): method check_required (line 161) | def check_required(self, settings, version): method load (line 166) | def load(self, stream, version): method save (line 171) | def save(self, stream, version): class MatchmakeParam (line 178) | class MatchmakeParam(common.Structure): method __init__ (line 179) | def __init__(self): method check_required (line 183) | def check_required(self, settings, version): method load (line 186) | def load(self, stream, version): method save (line 189) | def save(self, stream, version): class MatchmakeSessionSearchCriteria (line 194) | class MatchmakeSessionSearchCriteria(common.Structure): method __init__ (line 195) | def __init__(self): method check_required (line 214) | def check_required(self, settings, version): method load (line 220) | def load(self, stream, version): method save (line 240) | def save(self, stream, version): class MatchmakeSession (line 262) | class MatchmakeSession(Gathering): method __init__ (line 263) | def __init__(self): method max_version (line 282) | def max_version(self, settings): method check_required (line 293) | def check_required(self, settings, version): method load (line 313) | def load(self, stream, version): method save (line 351) | def save(self, stream, version): class MatchmakeBlockListParam (line 392) | class MatchmakeBlockListParam(common.Structure): method __init__ (line 393) | def __init__(self): method check_required (line 397) | def check_required(self, settings, version): method load (line 400) | def load(self, stream, version): method save (line 403) | def save(self, stream, version): class CreateMatchmakeSessionParam (line 408) | class CreateMatchmakeSessionParam(common.Structure): method __init__ (line 409) | def __init__(self): method check_required (line 418) | def check_required(self, settings, version): method load (line 423) | def load(self, stream, version): method save (line 431) | def save(self, stream, version): class JoinMatchmakeSessionParam (line 441) | class JoinMatchmakeSessionParam(common.Structure): method __init__ (line 442) | def __init__(self): method check_required (line 456) | def check_required(self, settings, version): method load (line 461) | def load(self, stream, version): method save (line 474) | def save(self, stream, version): class UpdateMatchmakeSessionParam (line 489) | class UpdateMatchmakeSessionParam(common.Structure): method __init__ (line 490) | def __init__(self): method check_required (line 510) | def check_required(self, settings, version): method load (line 515) | def load(self, stream, version): method save (line 534) | def save(self, stream, version): class AutoMatchmakeParam (line 555) | class AutoMatchmakeParam(common.Structure): method __init__ (line 556) | def __init__(self): method check_required (line 568) | def check_required(self, settings, version): method load (line 573) | def load(self, stream, version): method save (line 584) | def save(self, stream, version): class FindMatchmakeSessionByParticipantParam (line 597) | class FindMatchmakeSessionByParticipantParam(common.Structure): method __init__ (line 598) | def __init__(self): method check_required (line 604) | def check_required(self, settings, version): method load (line 609) | def load(self, stream, version): method save (line 614) | def save(self, stream, version): class FindMatchmakeSessionByParticipantResult (line 621) | class FindMatchmakeSessionByParticipantResult(common.Structure): method __init__ (line 622) | def __init__(self): method check_required (line 627) | def check_required(self, settings, version): method load (line 632) | def load(self, stream, version): method save (line 636) | def save(self, stream, version): class PersistentGathering (line 642) | class PersistentGathering(Gathering): method __init__ (line 643) | def __init__(self): method check_required (line 654) | def check_required(self, settings, version): method load (line 659) | def load(self, stream, version): method save (line 669) | def save(self, stream, version): class SimpleCommunity (line 682) | class SimpleCommunity(common.Structure): method __init__ (line 683) | def __init__(self): method check_required (line 688) | def check_required(self, settings, version): method load (line 693) | def load(self, stream, version): method save (line 697) | def save(self, stream, version): class PlayingSession (line 703) | class PlayingSession(common.Structure): method __init__ (line 704) | def __init__(self): method check_required (line 709) | def check_required(self, settings, version): method load (line 714) | def load(self, stream, version): method save (line 718) | def save(self, stream, version): class SimplePlayingSession (line 724) | class SimplePlayingSession(common.Structure): method __init__ (line 725) | def __init__(self): method check_required (line 732) | def check_required(self, settings, version): method load (line 737) | def load(self, stream, version): method save (line 743) | def save(self, stream, version): class MatchmakeRefereeRound (line 751) | class MatchmakeRefereeRound(common.Structure): method __init__ (line 752) | def __init__(self): method check_required (line 760) | def check_required(self, settings, version): method load (line 765) | def load(self, stream, version): method save (line 772) | def save(self, stream, version): class MatchmakeRefereeStartRoundParam (line 781) | class MatchmakeRefereeStartRoundParam(common.Structure): method __init__ (line 782) | def __init__(self): method check_required (line 790) | def check_required(self, settings, version): method load (line 795) | def load(self, stream, version): method save (line 802) | def save(self, stream, version): class MatchmakeRefereeEndRoundParam (line 811) | class MatchmakeRefereeEndRoundParam(common.Structure): method __init__ (line 812) | def __init__(self): method check_required (line 817) | def check_required(self, settings, version): method load (line 822) | def load(self, stream, version): method save (line 826) | def save(self, stream, version): class MatchmakeRefereePersonalRoundResult (line 832) | class MatchmakeRefereePersonalRoundResult(common.Structure): method __init__ (line 833) | def __init__(self): method check_required (line 843) | def check_required(self, settings, version): method load (line 848) | def load(self, stream, version): method save (line 857) | def save(self, stream, version): class MatchmakeRefereeStats (line 868) | class MatchmakeRefereeStats(common.Structure): method __init__ (line 869) | def __init__(self): method check_required (line 888) | def check_required(self, settings, version): method load (line 893) | def load(self, stream, version): method save (line 911) | def save(self, stream, version): class MatchmakeRefereeStatsTarget (line 931) | class MatchmakeRefereeStatsTarget(common.Structure): method __init__ (line 932) | def __init__(self): method check_required (line 937) | def check_required(self, settings, version): method load (line 942) | def load(self, stream, version): method save (line 946) | def save(self, stream, version): class MatchmakeRefereeStatsInitParam (line 952) | class MatchmakeRefereeStatsInitParam(common.Structure): method __init__ (line 953) | def __init__(self): method check_required (line 958) | def check_required(self, settings, version): method load (line 963) | def load(self, stream, version): method save (line 967) | def save(self, stream, version): class MatchMakingProtocol (line 973) | class MatchMakingProtocol: class MatchMakingProtocolExt (line 1022) | class MatchMakingProtocolExt: class MatchmakeExtensionProtocol (line 1033) | class MatchmakeExtensionProtocol: class MatchmakeRefereeProtocol (line 1091) | class MatchmakeRefereeProtocol: class MatchMakingClient (line 1112) | class MatchMakingClient(MatchMakingProtocol): method __init__ (line 1113) | def __init__(self, client): method register_gathering (line 1117) | async def register_gathering(self, gathering): method unregister_gathering (line 1132) | async def unregister_gathering(self, gid): method unregister_gatherings (line 1147) | async def unregister_gatherings(self, gids): method update_gathering (line 1162) | async def update_gathering(self, gathering): method invite (line 1177) | async def invite(self, gid, pids, message): method accept_invitation (line 1194) | async def accept_invitation(self, gid, message): method decline_invitation (line 1210) | async def decline_invitation(self, gid, message): method cancel_invitation (line 1226) | async def cancel_invitation(self, gid, pids, message): method get_invitations_sent (line 1243) | async def get_invitations_sent(self, gid): method get_invitations_received (line 1258) | async def get_invitations_received(self): method participate (line 1272) | async def participate(self, gid, message): method cancel_participation (line 1288) | async def cancel_participation(self, gid, message): method get_participants (line 1304) | async def get_participants(self, gid): method add_participants (line 1319) | async def add_participants(self, gid, pids, message): method get_detailed_participants (line 1336) | async def get_detailed_participants(self, gid): method get_participants_urls (line 1351) | async def get_participants_urls(self, gid): method find_by_type (line 1366) | async def find_by_type(self, type, range): method find_by_description (line 1382) | async def find_by_description(self, description, range): method find_by_description_regex (line 1398) | async def find_by_description_regex(self, regex, range): method find_by_id (line 1414) | async def find_by_id(self, ids): method find_by_single_id (line 1429) | async def find_by_single_id(self, gid): method find_by_owner (line 1446) | async def find_by_owner(self, owner, range): method find_by_participants (line 1462) | async def find_by_participants(self, pids): method find_invitations (line 1477) | async def find_invitations(self, range): method find_by_sql_query (line 1492) | async def find_by_sql_query(self, query, range): method launch_session (line 1508) | async def launch_session(self, gid, url): method update_session_url (line 1524) | async def update_session_url(self, gid, url): method get_session_url (line 1540) | async def get_session_url(self, gid): method get_state (line 1557) | async def get_state(self, gid): method set_state (line 1574) | async def set_state(self, gid, state): method report_stats (line 1590) | async def report_stats(self, gid, stats): method get_stats (line 1606) | async def get_stats(self, gid, pids, columns): method delete_gathering (line 1625) | async def delete_gathering(self, gid): method get_pending_deletions (line 1640) | async def get_pending_deletions(self, reason, range): method delete_from_deletions (line 1658) | async def delete_from_deletions(self, deletions): method migrate_gathering_ownership_v1 (line 1673) | async def migrate_gathering_ownership_v1(self, gid, potential_owners): method find_by_description_like (line 1689) | async def find_by_description_like(self, description, range): method register_local_url (line 1705) | async def register_local_url(self, gid, url): method register_local_urls (line 1719) | async def register_local_urls(self, gid, urls): method update_session_host_v1 (line 1733) | async def update_session_host_v1(self, gid): method get_session_urls (line 1746) | async def get_session_urls(self, gid): method update_session_host (line 1761) | async def update_session_host(self, gid, is_migrate_owner): method update_gathering_ownership (line 1775) | async def update_gathering_ownership(self, gid, participants_only): method migrate_gathering_ownership (line 1791) | async def migrate_gathering_ownership(self, gid, potential_owners, par... class MatchMakingClientExt (line 1807) | class MatchMakingClientExt(MatchMakingProtocolExt): method __init__ (line 1808) | def __init__(self, client): method end_participation (line 1812) | async def end_participation(self, gid, message): method get_participants (line 1828) | async def get_participants(self, gid, only_active): method get_detailed_participants (line 1844) | async def get_detailed_participants(self, gid, only_active): method get_participants_urls (line 1860) | async def get_participants_urls(self, gids): method get_gathering_relations (line 1875) | async def get_gathering_relations(self, id, descr): method delete_from_deletions (line 1891) | async def delete_from_deletions(self, deletions, pid): class MatchmakeExtensionClient (line 1906) | class MatchmakeExtensionClient(MatchmakeExtensionProtocol): method __init__ (line 1907) | def __init__(self, client): method close_participation (line 1911) | async def close_participation(self, gid): method open_participation (line 1924) | async def open_participation(self, gid): method auto_matchmake_postpone (line 1937) | async def auto_matchmake_postpone(self, gathering, message): method browse_matchmake_session (line 1953) | async def browse_matchmake_session(self, search_criteria, range): method browse_matchmake_session_with_host_urls (line 1969) | async def browse_matchmake_session_with_host_urls(self, search_criteri... method create_matchmake_session (line 1987) | async def create_matchmake_session(self, gathering, description, num_p... method join_matchmake_session (line 2006) | async def join_matchmake_session(self, gid, message): method modify_current_game_attribute (line 2022) | async def modify_current_game_attribute(self, gid, attrib, value): method update_notification_data (line 2037) | async def update_notification_data(self, type, param1, param2, param3): method get_friend_notification_data (line 2053) | async def get_friend_notification_data(self, type): method update_application_buffer (line 2068) | async def update_application_buffer(self, gid, buffer): method update_matchmake_session_attribute (line 2082) | async def update_matchmake_session_attribute(self, gid, attribs): method get_friend_notification_data_list (line 2096) | async def get_friend_notification_data_list(self, types): method update_matchmake_session (line 2111) | async def update_matchmake_session(self, gathering): method auto_matchmake_with_search_criteria_postpone (line 2124) | async def auto_matchmake_with_search_criteria_postpone(self, search_cr... method get_playing_session (line 2141) | async def get_playing_session(self, pids): method create_community (line 2156) | async def create_community(self, community, message): method update_community (line 2172) | async def update_community(self, community): method join_community (line 2185) | async def join_community(self, gid, message, password): method find_community_by_gathering_id (line 2200) | async def find_community_by_gathering_id(self, gids): method find_official_community (line 2215) | async def find_official_community(self, available_only, range): method find_community_by_participant (line 2231) | async def find_community_by_participant(self, pid, range): method update_privacy_setting (line 2247) | async def update_privacy_setting(self, online_status, community_partic... method get_my_block_list (line 2261) | async def get_my_block_list(self): method add_to_block_list (line 2275) | async def add_to_block_list(self, pids): method remove_from_block_list (line 2288) | async def remove_from_block_list(self, pids): method clear_my_block_list (line 2301) | async def clear_my_block_list(self): method report_violation (line 2313) | async def report_violation(self, pid, username, violation_code): method is_violation_user (line 2328) | async def is_violation_user(self): method join_matchmake_session_ex (line 2344) | async def join_matchmake_session_ex(self, gid, gmessage, ignore_block_... method get_simple_playing_session (line 2362) | async def get_simple_playing_session(self, pids, include_login_user): method get_simple_community (line 2378) | async def get_simple_community(self, gids): method auto_matchmake_with_gathering_id_postpone (line 2393) | async def auto_matchmake_with_gathering_id_postpone(self, gids, gather... method update_progress_score (line 2410) | async def update_progress_score(self, gid, score): method debug_notify_event (line 2424) | async def debug_notify_event(self, pid, main_type, sub_type, param1, p... method generate_matchmake_session_system_password (line 2442) | async def generate_matchmake_session_system_password(self, gid): method clear_matchmake_session_system_password (line 2457) | async def clear_matchmake_session_system_password(self, gid): method create_matchmake_session_with_param (line 2470) | async def create_matchmake_session_with_param(self, param): method join_matchmake_session_with_param (line 2485) | async def join_matchmake_session_with_param(self, param): method auto_matchmake_with_param_postpone (line 2500) | async def auto_matchmake_with_param_postpone(self, param): method find_matchmake_session_by_gathering_id_detail (line 2515) | async def find_matchmake_session_by_gathering_id_detail(self, gid): method browse_matchmake_session_no_holder (line 2530) | async def browse_matchmake_session_no_holder(self, search_criteria, ra... method browse_matchmake_session_with_host_urls_no_holder (line 2546) | async def browse_matchmake_session_with_host_urls_no_holder(self, sear... method update_matchmake_session_part (line 2564) | async def update_matchmake_session_part(self, param): method request_matchmaking (line 2577) | async def request_matchmaking(self, param): method withdraw_matchmaking (line 2592) | async def withdraw_matchmaking(self, request_id): method withdraw_matchmaking_all (line 2605) | async def withdraw_matchmaking_all(self): method find_matchmake_session_by_gathering_id (line 2617) | async def find_matchmake_session_by_gathering_id(self, gids): method find_matchmake_session_by_single_gathering_id (line 2632) | async def find_matchmake_session_by_single_gathering_id(self, gid): method find_matchmake_session_by_owner (line 2647) | async def find_matchmake_session_by_owner(self, pid, range): method find_matchmake_session_by_participant (line 2663) | async def find_matchmake_session_by_participant(self, param): method browse_matchmake_session_no_holder_no_result_range (line 2678) | async def browse_matchmake_session_no_holder_no_result_range(self, sea... method browse_matchmake_session_with_host_urls_no_holder_no_result_range (line 2693) | async def browse_matchmake_session_with_host_urls_no_holder_no_result_... class MatchmakeRefereeClient (line 2711) | class MatchmakeRefereeClient(MatchmakeRefereeProtocol): method __init__ (line 2712) | def __init__(self, client): method start_round (line 2716) | async def start_round(self, param): method get_start_round_param (line 2731) | async def get_start_round_param(self, round_id): method end_round (line 2746) | async def end_round(self, param): method end_round_with_partial_report (line 2759) | async def end_round_with_partial_report(self, param): method end_round_without_report (line 2772) | async def end_round_without_report(self, round_id): method get_round_participants (line 2785) | async def get_round_participants(self, round_id): method get_not_summarized_round (line 2800) | async def get_not_summarized_round(self): method get_round (line 2814) | async def get_round(self, round): method get_stats_primary (line 2829) | async def get_stats_primary(self, target): method get_stats_primaries (line 2844) | async def get_stats_primaries(self, targets): method get_stats_all (line 2861) | async def get_stats_all(self, target): method create_stats (line 2876) | async def create_stats(self, param): method get_or_create_stats (line 2891) | async def get_or_create_stats(self, param): method reset_stats (line 2906) | async def reset_stats(self): class MatchMakingServer (line 2919) | class MatchMakingServer(MatchMakingProtocol): method __init__ (line 2920) | def __init__(self): method logout (line 2968) | async def logout(self, client): method handle (line 2971) | async def handle(self, client, method_id, input, output): method handle_register_gathering (line 2978) | async def handle_register_gathering(self, client, input, output): method handle_unregister_gathering (line 2989) | async def handle_unregister_gathering(self, client, input, output): method handle_unregister_gatherings (line 3000) | async def handle_unregister_gatherings(self, client, input, output): method handle_update_gathering (line 3011) | async def handle_update_gathering(self, client, input, output): method handle_invite (line 3022) | async def handle_invite(self, client, input, output): method handle_accept_invitation (line 3035) | async def handle_accept_invitation(self, client, input, output): method handle_decline_invitation (line 3047) | async def handle_decline_invitation(self, client, input, output): method handle_cancel_invitation (line 3059) | async def handle_cancel_invitation(self, client, input, output): method handle_get_invitations_sent (line 3072) | async def handle_get_invitations_sent(self, client, input, output): method handle_get_invitations_received (line 3083) | async def handle_get_invitations_received(self, client, input, output): method handle_participate (line 3093) | async def handle_participate(self, client, input, output): method handle_cancel_participation (line 3105) | async def handle_cancel_participation(self, client, input, output): method handle_get_participants (line 3117) | async def handle_get_participants(self, client, input, output): method handle_add_participants (line 3128) | async def handle_add_participants(self, client, input, output): method handle_get_detailed_participants (line 3141) | async def handle_get_detailed_participants(self, client, input, output): method handle_get_participants_urls (line 3152) | async def handle_get_participants_urls(self, client, input, output): method handle_find_by_type (line 3163) | async def handle_find_by_type(self, client, input, output): method handle_find_by_description (line 3175) | async def handle_find_by_description(self, client, input, output): method handle_find_by_description_regex (line 3187) | async def handle_find_by_description_regex(self, client, input, output): method handle_find_by_id (line 3199) | async def handle_find_by_id(self, client, input, output): method handle_find_by_single_id (line 3210) | async def handle_find_by_single_id(self, client, input, output): method handle_find_by_owner (line 3225) | async def handle_find_by_owner(self, client, input, output): method handle_find_by_participants (line 3237) | async def handle_find_by_participants(self, client, input, output): method handle_find_invitations (line 3248) | async def handle_find_invitations(self, client, input, output): method handle_find_by_sql_query (line 3259) | async def handle_find_by_sql_query(self, client, input, output): method handle_launch_session (line 3271) | async def handle_launch_session(self, client, input, output): method handle_update_session_url (line 3283) | async def handle_update_session_url(self, client, input, output): method handle_get_session_url (line 3295) | async def handle_get_session_url(self, client, input, output): method handle_get_state (line 3310) | async def handle_get_state(self, client, input, output): method handle_set_state (line 3325) | async def handle_set_state(self, client, input, output): method handle_report_stats (line 3337) | async def handle_report_stats(self, client, input, output): method handle_get_stats (line 3349) | async def handle_get_stats(self, client, input, output): method handle_delete_gathering (line 3366) | async def handle_delete_gathering(self, client, input, output): method handle_get_pending_deletions (line 3377) | async def handle_get_pending_deletions(self, client, input, output): method handle_delete_from_deletions (line 3393) | async def handle_delete_from_deletions(self, client, input, output): method handle_migrate_gathering_ownership_v1 (line 3404) | async def handle_migrate_gathering_ownership_v1(self, client, input, o... method handle_find_by_description_like (line 3416) | async def handle_find_by_description_like(self, client, input, output): method handle_register_local_url (line 3428) | async def handle_register_local_url(self, client, input, output): method handle_register_local_urls (line 3435) | async def handle_register_local_urls(self, client, input, output): method handle_update_session_host_v1 (line 3442) | async def handle_update_session_host_v1(self, client, input, output): method handle_get_session_urls (line 3448) | async def handle_get_session_urls(self, client, input, output): method handle_update_session_host (line 3459) | async def handle_update_session_host(self, client, input, output): method handle_update_gathering_ownership (line 3466) | async def handle_update_gathering_ownership(self, client, input, output): method handle_migrate_gathering_ownership (line 3478) | async def handle_migrate_gathering_ownership(self, client, input, outp... method register_gathering (line 3486) | async def register_gathering(self, *args): method unregister_gathering (line 3490) | async def unregister_gathering(self, *args): method unregister_gatherings (line 3494) | async def unregister_gatherings(self, *args): method update_gathering (line 3498) | async def update_gathering(self, *args): method invite (line 3502) | async def invite(self, *args): method accept_invitation (line 3506) | async def accept_invitation(self, *args): method decline_invitation (line 3510) | async def decline_invitation(self, *args): method cancel_invitation (line 3514) | async def cancel_invitation(self, *args): method get_invitations_sent (line 3518) | async def get_invitations_sent(self, *args): method get_invitations_received (line 3522) | async def get_invitations_received(self, *args): method participate (line 3526) | async def participate(self, *args): method cancel_participation (line 3530) | async def cancel_participation(self, *args): method get_participants (line 3534) | async def get_participants(self, *args): method add_participants (line 3538) | async def add_participants(self, *args): method get_detailed_participants (line 3542) | async def get_detailed_participants(self, *args): method get_participants_urls (line 3546) | async def get_participants_urls(self, *args): method find_by_type (line 3550) | async def find_by_type(self, *args): method find_by_description (line 3554) | async def find_by_description(self, *args): method find_by_description_regex (line 3558) | async def find_by_description_regex(self, *args): method find_by_id (line 3562) | async def find_by_id(self, *args): method find_by_single_id (line 3566) | async def find_by_single_id(self, *args): method find_by_owner (line 3570) | async def find_by_owner(self, *args): method find_by_participants (line 3574) | async def find_by_participants(self, *args): method find_invitations (line 3578) | async def find_invitations(self, *args): method find_by_sql_query (line 3582) | async def find_by_sql_query(self, *args): method launch_session (line 3586) | async def launch_session(self, *args): method update_session_url (line 3590) | async def update_session_url(self, *args): method get_session_url (line 3594) | async def get_session_url(self, *args): method get_state (line 3598) | async def get_state(self, *args): method set_state (line 3602) | async def set_state(self, *args): method report_stats (line 3606) | async def report_stats(self, *args): method get_stats (line 3610) | async def get_stats(self, *args): method delete_gathering (line 3614) | async def delete_gathering(self, *args): method get_pending_deletions (line 3618) | async def get_pending_deletions(self, *args): method delete_from_deletions (line 3622) | async def delete_from_deletions(self, *args): method migrate_gathering_ownership_v1 (line 3626) | async def migrate_gathering_ownership_v1(self, *args): method find_by_description_like (line 3630) | async def find_by_description_like(self, *args): method register_local_url (line 3634) | async def register_local_url(self, *args): method register_local_urls (line 3638) | async def register_local_urls(self, *args): method update_session_host_v1 (line 3642) | async def update_session_host_v1(self, *args): method get_session_urls (line 3646) | async def get_session_urls(self, *args): method update_session_host (line 3650) | async def update_session_host(self, *args): method update_gathering_ownership (line 3654) | async def update_gathering_ownership(self, *args): method migrate_gathering_ownership (line 3658) | async def migrate_gathering_ownership(self, *args): class MatchMakingServerExt (line 3663) | class MatchMakingServerExt(MatchMakingProtocolExt): method __init__ (line 3664) | def __init__(self): method logout (line 3674) | async def logout(self, client): method handle (line 3677) | async def handle(self, client, method_id, input, output): method handle_end_participation (line 3684) | async def handle_end_participation(self, client, input, output): method handle_get_participants (line 3696) | async def handle_get_participants(self, client, input, output): method handle_get_detailed_participants (line 3708) | async def handle_get_detailed_participants(self, client, input, output): method handle_get_participants_urls (line 3720) | async def handle_get_participants_urls(self, client, input, output): method handle_get_gathering_relations (line 3731) | async def handle_get_gathering_relations(self, client, input, output): method handle_delete_from_deletions (line 3743) | async def handle_delete_from_deletions(self, client, input, output): method end_participation (line 3750) | async def end_participation(self, *args): method get_participants (line 3754) | async def get_participants(self, *args): method get_detailed_participants (line 3758) | async def get_detailed_participants(self, *args): method get_participants_urls (line 3762) | async def get_participants_urls(self, *args): method get_gathering_relations (line 3766) | async def get_gathering_relations(self, *args): method delete_from_deletions (line 3770) | async def delete_from_deletions(self, *args): class MatchmakeExtensionServer (line 3775) | class MatchmakeExtensionServer(MatchmakeExtensionProtocol): method __init__ (line 3776) | def __init__(self): method logout (line 3833) | async def logout(self, client): method handle (line 3836) | async def handle(self, client, method_id, input, output): method handle_close_participation (line 3843) | async def handle_close_participation(self, client, input, output): method handle_open_participation (line 3849) | async def handle_open_participation(self, client, input, output): method handle_auto_matchmake_postpone (line 3855) | async def handle_auto_matchmake_postpone(self, client, input, output): method handle_browse_matchmake_session (line 3867) | async def handle_browse_matchmake_session(self, client, input, output): method handle_browse_matchmake_session_with_host_urls (line 3879) | async def handle_browse_matchmake_session_with_host_urls(self, client,... method handle_create_matchmake_session (line 3895) | async def handle_create_matchmake_session(self, client, input, output): method handle_join_matchmake_session (line 3912) | async def handle_join_matchmake_session(self, client, input, output): method handle_modify_current_game_attribute (line 3924) | async def handle_modify_current_game_attribute(self, client, input, ou... method handle_update_notification_data (line 3932) | async def handle_update_notification_data(self, client, input, output): method handle_get_friend_notification_data (line 3941) | async def handle_get_friend_notification_data(self, client, input, out... method handle_update_application_buffer (line 3952) | async def handle_update_application_buffer(self, client, input, output): method handle_update_matchmake_session_attribute (line 3959) | async def handle_update_matchmake_session_attribute(self, client, inpu... method handle_get_friend_notification_data_list (line 3966) | async def handle_get_friend_notification_data_list(self, client, input... method handle_update_matchmake_session (line 3977) | async def handle_update_matchmake_session(self, client, input, output): method handle_auto_matchmake_with_search_criteria_postpone (line 3983) | async def handle_auto_matchmake_with_search_criteria_postpone(self, cl... method handle_get_playing_session (line 3996) | async def handle_get_playing_session(self, client, input, output): method handle_create_community (line 4007) | async def handle_create_community(self, client, input, output): method handle_update_community (line 4019) | async def handle_update_community(self, client, input, output): method handle_join_community (line 4025) | async def handle_join_community(self, client, input, output): method handle_find_community_by_gathering_id (line 4033) | async def handle_find_community_by_gathering_id(self, client, input, o... method handle_find_official_community (line 4044) | async def handle_find_official_community(self, client, input, output): method handle_find_community_by_participant (line 4056) | async def handle_find_community_by_participant(self, client, input, ou... method handle_update_privacy_setting (line 4068) | async def handle_update_privacy_setting(self, client, input, output): method handle_get_my_block_list (line 4075) | async def handle_get_my_block_list(self, client, input, output): method handle_add_to_block_list (line 4085) | async def handle_add_to_block_list(self, client, input, output): method handle_remove_from_block_list (line 4091) | async def handle_remove_from_block_list(self, client, input, output): method handle_clear_my_block_list (line 4097) | async def handle_clear_my_block_list(self, client, input, output): method handle_report_violation (line 4102) | async def handle_report_violation(self, client, input, output): method handle_is_violation_user (line 4110) | async def handle_is_violation_user(self, client, input, output): method handle_join_matchmake_session_ex (line 4124) | async def handle_join_matchmake_session_ex(self, client, input, output): method handle_get_simple_playing_session (line 4138) | async def handle_get_simple_playing_session(self, client, input, output): method handle_get_simple_community (line 4150) | async def handle_get_simple_community(self, client, input, output): method handle_auto_matchmake_with_gathering_id_postpone (line 4161) | async def handle_auto_matchmake_with_gathering_id_postpone(self, clien... method handle_update_progress_score (line 4174) | async def handle_update_progress_score(self, client, input, output): method handle_debug_notify_event (line 4181) | async def handle_debug_notify_event(self, client, input, output): method handle_generate_matchmake_session_system_password (line 4192) | async def handle_generate_matchmake_session_system_password(self, clie... method handle_clear_matchmake_session_system_password (line 4203) | async def handle_clear_matchmake_session_system_password(self, client,... method handle_create_matchmake_session_with_param (line 4209) | async def handle_create_matchmake_session_with_param(self, client, inp... method handle_join_matchmake_session_with_param (line 4220) | async def handle_join_matchmake_session_with_param(self, client, input... method handle_auto_matchmake_with_param_postpone (line 4231) | async def handle_auto_matchmake_with_param_postpone(self, client, inpu... method handle_find_matchmake_session_by_gathering_id_detail (line 4242) | async def handle_find_matchmake_session_by_gathering_id_detail(self, c... method handle_browse_matchmake_session_no_holder (line 4253) | async def handle_browse_matchmake_session_no_holder(self, client, inpu... method handle_browse_matchmake_session_with_host_urls_no_holder (line 4265) | async def handle_browse_matchmake_session_with_host_urls_no_holder(sel... method handle_update_matchmake_session_part (line 4281) | async def handle_update_matchmake_session_part(self, client, input, ou... method handle_request_matchmaking (line 4287) | async def handle_request_matchmaking(self, client, input, output): method handle_withdraw_matchmaking (line 4298) | async def handle_withdraw_matchmaking(self, client, input, output): method handle_withdraw_matchmaking_all (line 4304) | async def handle_withdraw_matchmaking_all(self, client, input, output): method handle_find_matchmake_session_by_gathering_id (line 4309) | async def handle_find_matchmake_session_by_gathering_id(self, client, ... method handle_find_matchmake_session_by_single_gathering_id (line 4320) | async def handle_find_matchmake_session_by_single_gathering_id(self, c... method handle_find_matchmake_session_by_owner (line 4331) | async def handle_find_matchmake_session_by_owner(self, client, input, ... method handle_find_matchmake_session_by_participant (line 4343) | async def handle_find_matchmake_session_by_participant(self, client, i... method handle_browse_matchmake_session_no_holder_no_result_range (line 4354) | async def handle_browse_matchmake_session_no_holder_no_result_range(se... method handle_browse_matchmake_session_with_host_urls_no_holder_no_result_range (line 4365) | async def handle_browse_matchmake_session_with_host_urls_no_holder_no_... method close_participation (line 4380) | async def close_participation(self, *args): method open_participation (line 4384) | async def open_participation(self, *args): method auto_matchmake_postpone (line 4388) | async def auto_matchmake_postpone(self, *args): method browse_matchmake_session (line 4392) | async def browse_matchmake_session(self, *args): method browse_matchmake_session_with_host_urls (line 4396) | async def browse_matchmake_session_with_host_urls(self, *args): method create_matchmake_session (line 4400) | async def create_matchmake_session(self, *args): method join_matchmake_session (line 4404) | async def join_matchmake_session(self, *args): method modify_current_game_attribute (line 4408) | async def modify_current_game_attribute(self, *args): method update_notification_data (line 4412) | async def update_notification_data(self, *args): method get_friend_notification_data (line 4416) | async def get_friend_notification_data(self, *args): method update_application_buffer (line 4420) | async def update_application_buffer(self, *args): method update_matchmake_session_attribute (line 4424) | async def update_matchmake_session_attribute(self, *args): method get_friend_notification_data_list (line 4428) | async def get_friend_notification_data_list(self, *args): method update_matchmake_session (line 4432) | async def update_matchmake_session(self, *args): method auto_matchmake_with_search_criteria_postpone (line 4436) | async def auto_matchmake_with_search_criteria_postpone(self, *args): method get_playing_session (line 4440) | async def get_playing_session(self, *args): method create_community (line 4444) | async def create_community(self, *args): method update_community (line 4448) | async def update_community(self, *args): method join_community (line 4452) | async def join_community(self, *args): method find_community_by_gathering_id (line 4456) | async def find_community_by_gathering_id(self, *args): method find_official_community (line 4460) | async def find_official_community(self, *args): method find_community_by_participant (line 4464) | async def find_community_by_participant(self, *args): method update_privacy_setting (line 4468) | async def update_privacy_setting(self, *args): method get_my_block_list (line 4472) | async def get_my_block_list(self, *args): method add_to_block_list (line 4476) | async def add_to_block_list(self, *args): method remove_from_block_list (line 4480) | async def remove_from_block_list(self, *args): method clear_my_block_list (line 4484) | async def clear_my_block_list(self, *args): method report_violation (line 4488) | async def report_violation(self, *args): method is_violation_user (line 4492) | async def is_violation_user(self, *args): method join_matchmake_session_ex (line 4496) | async def join_matchmake_session_ex(self, *args): method get_simple_playing_session (line 4500) | async def get_simple_playing_session(self, *args): method get_simple_community (line 4504) | async def get_simple_community(self, *args): method auto_matchmake_with_gathering_id_postpone (line 4508) | async def auto_matchmake_with_gathering_id_postpone(self, *args): method update_progress_score (line 4512) | async def update_progress_score(self, *args): method debug_notify_event (line 4516) | async def debug_notify_event(self, *args): method generate_matchmake_session_system_password (line 4520) | async def generate_matchmake_session_system_password(self, *args): method clear_matchmake_session_system_password (line 4524) | async def clear_matchmake_session_system_password(self, *args): method create_matchmake_session_with_param (line 4528) | async def create_matchmake_session_with_param(self, *args): method join_matchmake_session_with_param (line 4532) | async def join_matchmake_session_with_param(self, *args): method auto_matchmake_with_param_postpone (line 4536) | async def auto_matchmake_with_param_postpone(self, *args): method find_matchmake_session_by_gathering_id_detail (line 4540) | async def find_matchmake_session_by_gathering_id_detail(self, *args): method browse_matchmake_session_no_holder (line 4544) | async def browse_matchmake_session_no_holder(self, *args): method browse_matchmake_session_with_host_urls_no_holder (line 4548) | async def browse_matchmake_session_with_host_urls_no_holder(self, *args): method update_matchmake_session_part (line 4552) | async def update_matchmake_session_part(self, *args): method request_matchmaking (line 4556) | async def request_matchmaking(self, *args): method withdraw_matchmaking (line 4560) | async def withdraw_matchmaking(self, *args): method withdraw_matchmaking_all (line 4564) | async def withdraw_matchmaking_all(self, *args): method find_matchmake_session_by_gathering_id (line 4568) | async def find_matchmake_session_by_gathering_id(self, *args): method find_matchmake_session_by_single_gathering_id (line 4572) | async def find_matchmake_session_by_single_gathering_id(self, *args): method find_matchmake_session_by_owner (line 4576) | async def find_matchmake_session_by_owner(self, *args): method find_matchmake_session_by_participant (line 4580) | async def find_matchmake_session_by_participant(self, *args): method browse_matchmake_session_no_holder_no_result_range (line 4584) | async def browse_matchmake_session_no_holder_no_result_range(self, *ar... method browse_matchmake_session_with_host_urls_no_holder_no_result_range (line 4588) | async def browse_matchmake_session_with_host_urls_no_holder_no_result_... class MatchmakeRefereeServer (line 4593) | class MatchmakeRefereeServer(MatchmakeRefereeProtocol): method __init__ (line 4594) | def __init__(self): method logout (line 4614) | async def logout(self, client): method handle (line 4617) | async def handle(self, client, method_id, input, output): method handle_start_round (line 4624) | async def handle_start_round(self, client, input, output): method handle_get_start_round_param (line 4635) | async def handle_get_start_round_param(self, client, input, output): method handle_end_round (line 4646) | async def handle_end_round(self, client, input, output): method handle_end_round_with_partial_report (line 4652) | async def handle_end_round_with_partial_report(self, client, input, ou... method handle_end_round_without_report (line 4658) | async def handle_end_round_without_report(self, client, input, output): method handle_get_round_participants (line 4664) | async def handle_get_round_participants(self, client, input, output): method handle_get_not_summarized_round (line 4675) | async def handle_get_not_summarized_round(self, client, input, output): method handle_get_round (line 4685) | async def handle_get_round(self, client, input, output): method handle_get_stats_primary (line 4696) | async def handle_get_stats_primary(self, client, input, output): method handle_get_stats_primaries (line 4707) | async def handle_get_stats_primaries(self, client, input, output): method handle_get_stats_all (line 4722) | async def handle_get_stats_all(self, client, input, output): method handle_create_stats (line 4733) | async def handle_create_stats(self, client, input, output): method handle_get_or_create_stats (line 4744) | async def handle_get_or_create_stats(self, client, input, output): method handle_reset_stats (line 4755) | async def handle_reset_stats(self, client, input, output): method handle_get_event_point (line 4760) | async def handle_get_event_point(self, client, input, output): method handle_reset_event_point (line 4764) | async def handle_reset_event_point(self, client, input, output): method start_round (line 4768) | async def start_round(self, *args): method get_start_round_param (line 4772) | async def get_start_round_param(self, *args): method end_round (line 4776) | async def end_round(self, *args): method end_round_with_partial_report (line 4780) | async def end_round_with_partial_report(self, *args): method end_round_without_report (line 4784) | async def end_round_without_report(self, *args): method get_round_participants (line 4788) | async def get_round_participants(self, *args): method get_not_summarized_round (line 4792) | async def get_not_summarized_round(self, *args): method get_round (line 4796) | async def get_round(self, *args): method get_stats_primary (line 4800) | async def get_stats_primary(self, *args): method get_stats_primaries (line 4804) | async def get_stats_primaries(self, *args): method get_stats_all (line 4808) | async def get_stats_all(self, *args): method create_stats (line 4812) | async def create_stats(self, *args): method get_or_create_stats (line 4816) | async def get_or_create_stats(self, *args): method reset_stats (line 4820) | async def reset_stats(self, *args): FILE: nintendo/nex/matchmaking_mhxx.py class MatchmakeSystem (line 10) | class MatchmakeSystem: class Gathering (line 15) | class Gathering(common.Structure): method __init__ (line 16) | def __init__(self): method check_required (line 29) | def check_required(self, settings, version): method load (line 32) | def load(self, stream, version): method save (line 44) | def save(self, stream, version): class GatheringURLs (line 58) | class GatheringURLs(common.Structure): method __init__ (line 59) | def __init__(self): method check_required (line 64) | def check_required(self, settings, version): method load (line 69) | def load(self, stream, version): method save (line 73) | def save(self, stream, version): class GatheringStats (line 79) | class GatheringStats(common.Structure): method __init__ (line 80) | def __init__(self): method check_required (line 86) | def check_required(self, settings, version): method load (line 91) | def load(self, stream, version): method save (line 96) | def save(self, stream, version): class Invitation (line 103) | class Invitation(common.Structure): method __init__ (line 104) | def __init__(self): method check_required (line 110) | def check_required(self, settings, version): method load (line 115) | def load(self, stream, version): method save (line 120) | def save(self, stream, version): class ParticipantDetails (line 127) | class ParticipantDetails(common.Structure): method __init__ (line 128) | def __init__(self): method check_required (line 135) | def check_required(self, settings, version): method load (line 140) | def load(self, stream, version): method save (line 146) | def save(self, stream, version): class DeletionEntry (line 154) | class DeletionEntry(common.Structure): method __init__ (line 155) | def __init__(self): method check_required (line 161) | def check_required(self, settings, version): method load (line 166) | def load(self, stream, version): method save (line 171) | def save(self, stream, version): class MatchmakeParam (line 178) | class MatchmakeParam(common.Structure): method __init__ (line 179) | def __init__(self): method check_required (line 183) | def check_required(self, settings, version): method load (line 186) | def load(self, stream, version): method save (line 189) | def save(self, stream, version): class MatchmakeSessionSearchCriteria (line 194) | class MatchmakeSessionSearchCriteria(common.Structure): method __init__ (line 195) | def __init__(self): method check_required (line 214) | def check_required(self, settings, version): method load (line 220) | def load(self, stream, version): method save (line 240) | def save(self, stream, version): class MatchmakeSession (line 262) | class MatchmakeSession(Gathering): method __init__ (line 263) | def __init__(self): method max_version (line 282) | def max_version(self, settings): method check_required (line 293) | def check_required(self, settings, version): method load (line 313) | def load(self, stream, version): method save (line 351) | def save(self, stream, version): class MatchmakeBlockListParam (line 392) | class MatchmakeBlockListParam(common.Structure): method __init__ (line 393) | def __init__(self): method check_required (line 397) | def check_required(self, settings, version): method load (line 400) | def load(self, stream, version): method save (line 403) | def save(self, stream, version): class CreateMatchmakeSessionParam (line 408) | class CreateMatchmakeSessionParam(common.Structure): method __init__ (line 409) | def __init__(self): method check_required (line 418) | def check_required(self, settings, version): method load (line 423) | def load(self, stream, version): method save (line 431) | def save(self, stream, version): class JoinMatchmakeSessionParam (line 441) | class JoinMatchmakeSessionParam(common.Structure): method __init__ (line 442) | def __init__(self): method check_required (line 456) | def check_required(self, settings, version): method load (line 461) | def load(self, stream, version): method save (line 474) | def save(self, stream, version): class UpdateMatchmakeSessionParam (line 489) | class UpdateMatchmakeSessionParam(common.Structure): method __init__ (line 490) | def __init__(self): method check_required (line 510) | def check_required(self, settings, version): method load (line 515) | def load(self, stream, version): method save (line 534) | def save(self, stream, version): class AutoMatchmakeParam (line 555) | class AutoMatchmakeParam(common.Structure): method __init__ (line 556) | def __init__(self): method check_required (line 568) | def check_required(self, settings, version): method load (line 573) | def load(self, stream, version): method save (line 584) | def save(self, stream, version): class FindMatchmakeSessionByParticipantParam (line 597) | class FindMatchmakeSessionByParticipantParam(common.Structure): method __init__ (line 598) | def __init__(self): method check_required (line 604) | def check_required(self, settings, version): method load (line 609) | def load(self, stream, version): method save (line 614) | def save(self, stream, version): class FindMatchmakeSessionByParticipantResult (line 621) | class FindMatchmakeSessionByParticipantResult(common.Structure): method __init__ (line 622) | def __init__(self): method check_required (line 627) | def check_required(self, settings, version): method load (line 632) | def load(self, stream, version): method save (line 636) | def save(self, stream, version): class PersistentGathering (line 642) | class PersistentGathering(Gathering): method __init__ (line 643) | def __init__(self): method check_required (line 654) | def check_required(self, settings, version): method load (line 659) | def load(self, stream, version): method save (line 669) | def save(self, stream, version): class SimpleCommunity (line 682) | class SimpleCommunity(common.Structure): method __init__ (line 683) | def __init__(self): method check_required (line 688) | def check_required(self, settings, version): method load (line 693) | def load(self, stream, version): method save (line 697) | def save(self, stream, version): class PlayingSession (line 703) | class PlayingSession(common.Structure): method __init__ (line 704) | def __init__(self): method check_required (line 709) | def check_required(self, settings, version): method load (line 714) | def load(self, stream, version): method save (line 718) | def save(self, stream, version): class SimplePlayingSession (line 724) | class SimplePlayingSession(common.Structure): method __init__ (line 725) | def __init__(self): method check_required (line 732) | def check_required(self, settings, version): method load (line 737) | def load(self, stream, version): method save (line 743) | def save(self, stream, version): class MatchmakeRefereeRound (line 751) | class MatchmakeRefereeRound(common.Structure): method __init__ (line 752) | def __init__(self): method check_required (line 760) | def check_required(self, settings, version): method load (line 765) | def load(self, stream, version): method save (line 772) | def save(self, stream, version): class MatchmakeRefereeStartRoundParam (line 781) | class MatchmakeRefereeStartRoundParam(common.Structure): method __init__ (line 782) | def __init__(self): method check_required (line 788) | def check_required(self, settings, version): method load (line 793) | def load(self, stream, version): method save (line 798) | def save(self, stream, version): class MatchmakeRefereeEndRoundParam (line 805) | class MatchmakeRefereeEndRoundParam(common.Structure): method __init__ (line 806) | def __init__(self): method check_required (line 811) | def check_required(self, settings, version): method load (line 816) | def load(self, stream, version): method save (line 820) | def save(self, stream, version): class MatchmakeRefereePersonalRoundResult (line 826) | class MatchmakeRefereePersonalRoundResult(common.Structure): method __init__ (line 827) | def __init__(self): method check_required (line 835) | def check_required(self, settings, version): method load (line 840) | def load(self, stream, version): method save (line 847) | def save(self, stream, version): class MatchmakeRefereeStats (line 856) | class MatchmakeRefereeStats(common.Structure): method __init__ (line 857) | def __init__(self): method check_required (line 876) | def check_required(self, settings, version): method load (line 881) | def load(self, stream, version): method save (line 899) | def save(self, stream, version): class MatchmakeRefereeStatsTarget (line 919) | class MatchmakeRefereeStatsTarget(common.Structure): method __init__ (line 920) | def __init__(self): method check_required (line 925) | def check_required(self, settings, version): method load (line 930) | def load(self, stream, version): method save (line 934) | def save(self, stream, version): class MatchmakeRefereeStatsInitParam (line 940) | class MatchmakeRefereeStatsInitParam(common.Structure): method __init__ (line 941) | def __init__(self): method check_required (line 946) | def check_required(self, settings, version): method load (line 951) | def load(self, stream, version): method save (line 955) | def save(self, stream, version): class FriendUserParam (line 961) | class FriendUserParam(common.Structure): method __init__ (line 962) | def __init__(self): method check_required (line 966) | def check_required(self, settings, version): method load (line 971) | def load(self, stream, version): method save (line 974) | def save(self, stream, version): class FriendUserInfo (line 979) | class FriendUserInfo(common.Structure): method __init__ (line 980) | def __init__(self): method check_required (line 986) | def check_required(self, settings, version): method load (line 991) | def load(self, stream, version): method save (line 996) | def save(self, stream, version): class MatchMakingProtocol (line 1003) | class MatchMakingProtocol: class MatchMakingProtocolExt (line 1052) | class MatchMakingProtocolExt: class MatchmakeRefereeProtocol (line 1063) | class MatchmakeRefereeProtocol: class MatchmakeExtensionProtocolMHXX (line 1081) | class MatchmakeExtensionProtocolMHXX: class MatchMakingClient (line 1145) | class MatchMakingClient(MatchMakingProtocol): method __init__ (line 1146) | def __init__(self, client): method register_gathering (line 1150) | async def register_gathering(self, gathering): method unregister_gathering (line 1165) | async def unregister_gathering(self, gid): method unregister_gatherings (line 1180) | async def unregister_gatherings(self, gids): method update_gathering (line 1195) | async def update_gathering(self, gathering): method invite (line 1210) | async def invite(self, gid, pids, message): method accept_invitation (line 1227) | async def accept_invitation(self, gid, message): method decline_invitation (line 1243) | async def decline_invitation(self, gid, message): method cancel_invitation (line 1259) | async def cancel_invitation(self, gid, pids, message): method get_invitations_sent (line 1276) | async def get_invitations_sent(self, gid): method get_invitations_received (line 1291) | async def get_invitations_received(self): method participate (line 1305) | async def participate(self, gid, message): method cancel_participation (line 1321) | async def cancel_participation(self, gid, message): method get_participants (line 1337) | async def get_participants(self, gid): method add_participants (line 1352) | async def add_participants(self, gid, pids, message): method get_detailed_participants (line 1369) | async def get_detailed_participants(self, gid): method get_participants_urls (line 1384) | async def get_participants_urls(self, gid): method find_by_type (line 1399) | async def find_by_type(self, type, range): method find_by_description (line 1415) | async def find_by_description(self, description, range): method find_by_description_regex (line 1431) | async def find_by_description_regex(self, regex, range): method find_by_id (line 1447) | async def find_by_id(self, ids): method find_by_single_id (line 1462) | async def find_by_single_id(self, gid): method find_by_owner (line 1479) | async def find_by_owner(self, owner, range): method find_by_participants (line 1495) | async def find_by_participants(self, pids): method find_invitations (line 1510) | async def find_invitations(self, range): method find_by_sql_query (line 1525) | async def find_by_sql_query(self, query, range): method launch_session (line 1541) | async def launch_session(self, gid, url): method update_session_url (line 1557) | async def update_session_url(self, gid, url): method get_session_url (line 1573) | async def get_session_url(self, gid): method get_state (line 1590) | async def get_state(self, gid): method set_state (line 1607) | async def set_state(self, gid, state): method report_stats (line 1623) | async def report_stats(self, gid, stats): method get_stats (line 1639) | async def get_stats(self, gid, pids, columns): method delete_gathering (line 1658) | async def delete_gathering(self, gid): method get_pending_deletions (line 1673) | async def get_pending_deletions(self, reason, range): method delete_from_deletions (line 1691) | async def delete_from_deletions(self, deletions): method migrate_gathering_ownership_v1 (line 1706) | async def migrate_gathering_ownership_v1(self, gid, potential_owners): method find_by_description_like (line 1722) | async def find_by_description_like(self, description, range): method register_local_url (line 1738) | async def register_local_url(self, gid, url): method register_local_urls (line 1752) | async def register_local_urls(self, gid, urls): method update_session_host_v1 (line 1766) | async def update_session_host_v1(self, gid): method get_session_urls (line 1779) | async def get_session_urls(self, gid): method update_session_host (line 1794) | async def update_session_host(self, gid, is_migrate_owner): method update_gathering_ownership (line 1808) | async def update_gathering_ownership(self, gid, participants_only): method migrate_gathering_ownership (line 1824) | async def migrate_gathering_ownership(self, gid, potential_owners, par... class MatchMakingClientExt (line 1840) | class MatchMakingClientExt(MatchMakingProtocolExt): method __init__ (line 1841) | def __init__(self, client): method end_participation (line 1845) | async def end_participation(self, gid, message): method get_participants (line 1861) | async def get_participants(self, gid, only_active): method get_detailed_participants (line 1877) | async def get_detailed_participants(self, gid, only_active): method get_participants_urls (line 1893) | async def get_participants_urls(self, gids): method get_gathering_relations (line 1908) | async def get_gathering_relations(self, id, descr): method delete_from_deletions (line 1924) | async def delete_from_deletions(self, deletions, pid): class MatchmakeRefereeClient (line 1939) | class MatchmakeRefereeClient(MatchmakeRefereeProtocol): method __init__ (line 1940) | def __init__(self, client): method start_round (line 1944) | async def start_round(self, param): method get_start_round_param (line 1959) | async def get_start_round_param(self, round_id): method end_round (line 1974) | async def end_round(self, param): method end_round_without_report (line 1987) | async def end_round_without_report(self, round_id): method get_round_participants (line 2000) | async def get_round_participants(self, round_id): method get_not_summarized_round (line 2015) | async def get_not_summarized_round(self): method get_round (line 2029) | async def get_round(self, round): method get_stats_primary (line 2044) | async def get_stats_primary(self, target): method get_stats_primaries (line 2059) | async def get_stats_primaries(self, targets): method get_stats_all (line 2076) | async def get_stats_all(self, target): method create_stats (line 2091) | async def create_stats(self, param): method get_or_create_stats (line 2106) | async def get_or_create_stats(self, param): method reset_stats (line 2121) | async def reset_stats(self): class MatchmakeExtensionClientMHXX (line 2134) | class MatchmakeExtensionClientMHXX(MatchmakeExtensionProtocolMHXX): method __init__ (line 2135) | def __init__(self, client): method close_participation (line 2139) | async def close_participation(self, gid): method open_participation (line 2152) | async def open_participation(self, gid): method auto_matchmake_postpone (line 2165) | async def auto_matchmake_postpone(self, gathering, message): method browse_matchmake_session (line 2181) | async def browse_matchmake_session(self, search_criteria, range): method browse_matchmake_session_with_host_urls (line 2197) | async def browse_matchmake_session_with_host_urls(self, search_criteri... method create_matchmake_session (line 2215) | async def create_matchmake_session(self, gathering, description, num_p... method join_matchmake_session (line 2234) | async def join_matchmake_session(self, gid, message): method modify_current_game_attribute (line 2250) | async def modify_current_game_attribute(self, gid, attrib, value): method update_notification_data (line 2265) | async def update_notification_data(self, type, param1, param2, param3): method get_friend_notification_data (line 2281) | async def get_friend_notification_data(self, type): method update_application_buffer (line 2296) | async def update_application_buffer(self, gid, buffer): method update_matchmake_session_attribute (line 2310) | async def update_matchmake_session_attribute(self, gid, attribs): method get_friend_notification_data_list (line 2324) | async def get_friend_notification_data_list(self, types): method update_matchmake_session (line 2339) | async def update_matchmake_session(self, gathering): method auto_matchmake_with_search_criteria_postpone (line 2352) | async def auto_matchmake_with_search_criteria_postpone(self, search_cr... method get_playing_session (line 2369) | async def get_playing_session(self, pids): method create_community (line 2384) | async def create_community(self, community, message): method update_community (line 2400) | async def update_community(self, community): method join_community (line 2413) | async def join_community(self, gid, message, password): method find_community_by_gathering_id (line 2428) | async def find_community_by_gathering_id(self, gids): method find_official_community (line 2443) | async def find_official_community(self, available_only, range): method find_community_by_participant (line 2459) | async def find_community_by_participant(self, pid, range): method update_privacy_setting (line 2475) | async def update_privacy_setting(self, online_status, community_partic... method get_my_block_list (line 2489) | async def get_my_block_list(self): method add_to_block_list (line 2503) | async def add_to_block_list(self, pids): method remove_from_block_list (line 2516) | async def remove_from_block_list(self, pids): method clear_my_block_list (line 2529) | async def clear_my_block_list(self): method report_violation (line 2541) | async def report_violation(self, pid, username, violation_code): method is_violation_user (line 2556) | async def is_violation_user(self): method join_matchmake_session_ex (line 2572) | async def join_matchmake_session_ex(self, gid, gmessage, ignore_block_... method get_simple_playing_session (line 2590) | async def get_simple_playing_session(self, pids, include_login_user): method get_simple_community (line 2606) | async def get_simple_community(self, gids): method auto_matchmake_with_gathering_id_postpone (line 2621) | async def auto_matchmake_with_gathering_id_postpone(self, gids, gather... method update_progress_score (line 2638) | async def update_progress_score(self, gid, score): method debug_notify_event (line 2652) | async def debug_notify_event(self, pid, main_type, sub_type, param1, p... method generate_matchmake_session_system_password (line 2670) | async def generate_matchmake_session_system_password(self, gid): method clear_matchmake_session_system_password (line 2685) | async def clear_matchmake_session_system_password(self, gid): method create_matchmake_session_with_param (line 2698) | async def create_matchmake_session_with_param(self, param): method join_matchmake_session_with_param (line 2713) | async def join_matchmake_session_with_param(self, param): method auto_matchmake_with_param_postpone (line 2728) | async def auto_matchmake_with_param_postpone(self, param): method find_matchmake_session_by_gathering_id_detail (line 2743) | async def find_matchmake_session_by_gathering_id_detail(self, gid): method browse_matchmake_session_no_holder (line 2758) | async def browse_matchmake_session_no_holder(self, search_criteria, ra... method browse_matchmake_session_with_host_urls_no_holder (line 2774) | async def browse_matchmake_session_with_host_urls_no_holder(self, sear... method update_matchmake_session_part (line 2792) | async def update_matchmake_session_part(self, param): method request_matchmaking (line 2805) | async def request_matchmaking(self, param): method withdraw_matchmaking (line 2820) | async def withdraw_matchmaking(self, request_id): method withdraw_matchmaking_all (line 2833) | async def withdraw_matchmaking_all(self): method find_matchmake_session_by_gathering_id (line 2845) | async def find_matchmake_session_by_gathering_id(self, gids): method find_matchmake_session_by_single_gathering_id (line 2860) | async def find_matchmake_session_by_single_gathering_id(self, gid): method find_matchmake_session_by_owner (line 2875) | async def find_matchmake_session_by_owner(self, pid, range): method find_matchmake_session_by_participant (line 2891) | async def find_matchmake_session_by_participant(self, param): method browse_matchmake_session_no_holder_no_result_range (line 2906) | async def browse_matchmake_session_no_holder_no_result_range(self, sea... method browse_matchmake_session_with_host_urls_no_holder_no_result_range (line 2921) | async def browse_matchmake_session_with_host_urls_no_holder_no_result_... method update_friend_user_profile (line 2938) | async def update_friend_user_profile(self, param): method get_friend_user_profiles (line 2951) | async def get_friend_user_profiles(self, pids): method get_friends (line 2966) | async def get_friends(self): method add_friends (line 2980) | async def add_friends(self, pids): method remove_friend (line 2993) | async def remove_friend(self, pid): method find_community_by_owner (line 3006) | async def find_community_by_owner(self, id, range): class MatchMakingServer (line 3023) | class MatchMakingServer(MatchMakingProtocol): method __init__ (line 3024) | def __init__(self): method logout (line 3072) | async def logout(self, client): method handle (line 3075) | async def handle(self, client, method_id, input, output): method handle_register_gathering (line 3082) | async def handle_register_gathering(self, client, input, output): method handle_unregister_gathering (line 3093) | async def handle_unregister_gathering(self, client, input, output): method handle_unregister_gatherings (line 3104) | async def handle_unregister_gatherings(self, client, input, output): method handle_update_gathering (line 3115) | async def handle_update_gathering(self, client, input, output): method handle_invite (line 3126) | async def handle_invite(self, client, input, output): method handle_accept_invitation (line 3139) | async def handle_accept_invitation(self, client, input, output): method handle_decline_invitation (line 3151) | async def handle_decline_invitation(self, client, input, output): method handle_cancel_invitation (line 3163) | async def handle_cancel_invitation(self, client, input, output): method handle_get_invitations_sent (line 3176) | async def handle_get_invitations_sent(self, client, input, output): method handle_get_invitations_received (line 3187) | async def handle_get_invitations_received(self, client, input, output): method handle_participate (line 3197) | async def handle_participate(self, client, input, output): method handle_cancel_participation (line 3209) | async def handle_cancel_participation(self, client, input, output): method handle_get_participants (line 3221) | async def handle_get_participants(self, client, input, output): method handle_add_participants (line 3232) | async def handle_add_participants(self, client, input, output): method handle_get_detailed_participants (line 3245) | async def handle_get_detailed_participants(self, client, input, output): method handle_get_participants_urls (line 3256) | async def handle_get_participants_urls(self, client, input, output): method handle_find_by_type (line 3267) | async def handle_find_by_type(self, client, input, output): method handle_find_by_description (line 3279) | async def handle_find_by_description(self, client, input, output): method handle_find_by_description_regex (line 3291) | async def handle_find_by_description_regex(self, client, input, output): method handle_find_by_id (line 3303) | async def handle_find_by_id(self, client, input, output): method handle_find_by_single_id (line 3314) | async def handle_find_by_single_id(self, client, input, output): method handle_find_by_owner (line 3329) | async def handle_find_by_owner(self, client, input, output): method handle_find_by_participants (line 3341) | async def handle_find_by_participants(self, client, input, output): method handle_find_invitations (line 3352) | async def handle_find_invitations(self, client, input, output): method handle_find_by_sql_query (line 3363) | async def handle_find_by_sql_query(self, client, input, output): method handle_launch_session (line 3375) | async def handle_launch_session(self, client, input, output): method handle_update_session_url (line 3387) | async def handle_update_session_url(self, client, input, output): method handle_get_session_url (line 3399) | async def handle_get_session_url(self, client, input, output): method handle_get_state (line 3414) | async def handle_get_state(self, client, input, output): method handle_set_state (line 3429) | async def handle_set_state(self, client, input, output): method handle_report_stats (line 3441) | async def handle_report_stats(self, client, input, output): method handle_get_stats (line 3453) | async def handle_get_stats(self, client, input, output): method handle_delete_gathering (line 3470) | async def handle_delete_gathering(self, client, input, output): method handle_get_pending_deletions (line 3481) | async def handle_get_pending_deletions(self, client, input, output): method handle_delete_from_deletions (line 3497) | async def handle_delete_from_deletions(self, client, input, output): method handle_migrate_gathering_ownership_v1 (line 3508) | async def handle_migrate_gathering_ownership_v1(self, client, input, o... method handle_find_by_description_like (line 3520) | async def handle_find_by_description_like(self, client, input, output): method handle_register_local_url (line 3532) | async def handle_register_local_url(self, client, input, output): method handle_register_local_urls (line 3539) | async def handle_register_local_urls(self, client, input, output): method handle_update_session_host_v1 (line 3546) | async def handle_update_session_host_v1(self, client, input, output): method handle_get_session_urls (line 3552) | async def handle_get_session_urls(self, client, input, output): method handle_update_session_host (line 3563) | async def handle_update_session_host(self, client, input, output): method handle_update_gathering_ownership (line 3570) | async def handle_update_gathering_ownership(self, client, input, output): method handle_migrate_gathering_ownership (line 3582) | async def handle_migrate_gathering_ownership(self, client, input, outp... method register_gathering (line 3590) | async def register_gathering(self, *args): method unregister_gathering (line 3594) | async def unregister_gathering(self, *args): method unregister_gatherings (line 3598) | async def unregister_gatherings(self, *args): method update_gathering (line 3602) | async def update_gathering(self, *args): method invite (line 3606) | async def invite(self, *args): method accept_invitation (line 3610) | async def accept_invitation(self, *args): method decline_invitation (line 3614) | async def decline_invitation(self, *args): method cancel_invitation (line 3618) | async def cancel_invitation(self, *args): method get_invitations_sent (line 3622) | async def get_invitations_sent(self, *args): method get_invitations_received (line 3626) | async def get_invitations_received(self, *args): method participate (line 3630) | async def participate(self, *args): method cancel_participation (line 3634) | async def cancel_participation(self, *args): method get_participants (line 3638) | async def get_participants(self, *args): method add_participants (line 3642) | async def add_participants(self, *args): method get_detailed_participants (line 3646) | async def get_detailed_participants(self, *args): method get_participants_urls (line 3650) | async def get_participants_urls(self, *args): method find_by_type (line 3654) | async def find_by_type(self, *args): method find_by_description (line 3658) | async def find_by_description(self, *args): method find_by_description_regex (line 3662) | async def find_by_description_regex(self, *args): method find_by_id (line 3666) | async def find_by_id(self, *args): method find_by_single_id (line 3670) | async def find_by_single_id(self, *args): method find_by_owner (line 3674) | async def find_by_owner(self, *args): method find_by_participants (line 3678) | async def find_by_participants(self, *args): method find_invitations (line 3682) | async def find_invitations(self, *args): method find_by_sql_query (line 3686) | async def find_by_sql_query(self, *args): method launch_session (line 3690) | async def launch_session(self, *args): method update_session_url (line 3694) | async def update_session_url(self, *args): method get_session_url (line 3698) | async def get_session_url(self, *args): method get_state (line 3702) | async def get_state(self, *args): method set_state (line 3706) | async def set_state(self, *args): method report_stats (line 3710) | async def report_stats(self, *args): method get_stats (line 3714) | async def get_stats(self, *args): method delete_gathering (line 3718) | async def delete_gathering(self, *args): method get_pending_deletions (line 3722) | async def get_pending_deletions(self, *args): method delete_from_deletions (line 3726) | async def delete_from_deletions(self, *args): method migrate_gathering_ownership_v1 (line 3730) | async def migrate_gathering_ownership_v1(self, *args): method find_by_description_like (line 3734) | async def find_by_description_like(self, *args): method register_local_url (line 3738) | async def register_local_url(self, *args): method register_local_urls (line 3742) | async def register_local_urls(self, *args): method update_session_host_v1 (line 3746) | async def update_session_host_v1(self, *args): method get_session_urls (line 3750) | async def get_session_urls(self, *args): method update_session_host (line 3754) | async def update_session_host(self, *args): method update_gathering_ownership (line 3758) | async def update_gathering_ownership(self, *args): method migrate_gathering_ownership (line 3762) | async def migrate_gathering_ownership(self, *args): class MatchMakingServerExt (line 3767) | class MatchMakingServerExt(MatchMakingProtocolExt): method __init__ (line 3768) | def __init__(self): method logout (line 3778) | async def logout(self, client): method handle (line 3781) | async def handle(self, client, method_id, input, output): method handle_end_participation (line 3788) | async def handle_end_participation(self, client, input, output): method handle_get_participants (line 3800) | async def handle_get_participants(self, client, input, output): method handle_get_detailed_participants (line 3812) | async def handle_get_detailed_participants(self, client, input, output): method handle_get_participants_urls (line 3824) | async def handle_get_participants_urls(self, client, input, output): method handle_get_gathering_relations (line 3835) | async def handle_get_gathering_relations(self, client, input, output): method handle_delete_from_deletions (line 3847) | async def handle_delete_from_deletions(self, client, input, output): method end_participation (line 3854) | async def end_participation(self, *args): method get_participants (line 3858) | async def get_participants(self, *args): method get_detailed_participants (line 3862) | async def get_detailed_participants(self, *args): method get_participants_urls (line 3866) | async def get_participants_urls(self, *args): method get_gathering_relations (line 3870) | async def get_gathering_relations(self, *args): method delete_from_deletions (line 3874) | async def delete_from_deletions(self, *args): class MatchmakeRefereeServer (line 3879) | class MatchmakeRefereeServer(MatchmakeRefereeProtocol): method __init__ (line 3880) | def __init__(self): method logout (line 3897) | async def logout(self, client): method handle (line 3900) | async def handle(self, client, method_id, input, output): method handle_start_round (line 3907) | async def handle_start_round(self, client, input, output): method handle_get_start_round_param (line 3918) | async def handle_get_start_round_param(self, client, input, output): method handle_end_round (line 3929) | async def handle_end_round(self, client, input, output): method handle_end_round_without_report (line 3935) | async def handle_end_round_without_report(self, client, input, output): method handle_get_round_participants (line 3941) | async def handle_get_round_participants(self, client, input, output): method handle_get_not_summarized_round (line 3952) | async def handle_get_not_summarized_round(self, client, input, output): method handle_get_round (line 3962) | async def handle_get_round(self, client, input, output): method handle_get_stats_primary (line 3973) | async def handle_get_stats_primary(self, client, input, output): method handle_get_stats_primaries (line 3984) | async def handle_get_stats_primaries(self, client, input, output): method handle_get_stats_all (line 3999) | async def handle_get_stats_all(self, client, input, output): method handle_create_stats (line 4010) | async def handle_create_stats(self, client, input, output): method handle_get_or_create_stats (line 4021) | async def handle_get_or_create_stats(self, client, input, output): method handle_reset_stats (line 4032) | async def handle_reset_stats(self, client, input, output): method start_round (line 4037) | async def start_round(self, *args): method get_start_round_param (line 4041) | async def get_start_round_param(self, *args): method end_round (line 4045) | async def end_round(self, *args): method end_round_without_report (line 4049) | async def end_round_without_report(self, *args): method get_round_participants (line 4053) | async def get_round_participants(self, *args): method get_not_summarized_round (line 4057) | async def get_not_summarized_round(self, *args): method get_round (line 4061) | async def get_round(self, *args): method get_stats_primary (line 4065) | async def get_stats_primary(self, *args): method get_stats_primaries (line 4069) | async def get_stats_primaries(self, *args): method get_stats_all (line 4073) | async def get_stats_all(self, *args): method create_stats (line 4077) | async def create_stats(self, *args): method get_or_create_stats (line 4081) | async def get_or_create_stats(self, *args): method reset_stats (line 4085) | async def reset_stats(self, *args): class MatchmakeExtensionServerMHXX (line 4090) | class MatchmakeExtensionServerMHXX(MatchmakeExtensionProtocolMHXX): method __init__ (line 4091) | def __init__(self): method logout (line 4154) | async def logout(self, client): method handle (line 4157) | async def handle(self, client, method_id, input, output): method handle_close_participation (line 4164) | async def handle_close_participation(self, client, input, output): method handle_open_participation (line 4170) | async def handle_open_participation(self, client, input, output): method handle_auto_matchmake_postpone (line 4176) | async def handle_auto_matchmake_postpone(self, client, input, output): method handle_browse_matchmake_session (line 4188) | async def handle_browse_matchmake_session(self, client, input, output): method handle_browse_matchmake_session_with_host_urls (line 4200) | async def handle_browse_matchmake_session_with_host_urls(self, client,... method handle_create_matchmake_session (line 4216) | async def handle_create_matchmake_session(self, client, input, output): method handle_join_matchmake_session (line 4233) | async def handle_join_matchmake_session(self, client, input, output): method handle_modify_current_game_attribute (line 4245) | async def handle_modify_current_game_attribute(self, client, input, ou... method handle_update_notification_data (line 4253) | async def handle_update_notification_data(self, client, input, output): method handle_get_friend_notification_data (line 4262) | async def handle_get_friend_notification_data(self, client, input, out... method handle_update_application_buffer (line 4273) | async def handle_update_application_buffer(self, client, input, output): method handle_update_matchmake_session_attribute (line 4280) | async def handle_update_matchmake_session_attribute(self, client, inpu... method handle_get_friend_notification_data_list (line 4287) | async def handle_get_friend_notification_data_list(self, client, input... method handle_update_matchmake_session (line 4298) | async def handle_update_matchmake_session(self, client, input, output): method handle_auto_matchmake_with_search_criteria_postpone (line 4304) | async def handle_auto_matchmake_with_search_criteria_postpone(self, cl... method handle_get_playing_session (line 4317) | async def handle_get_playing_session(self, client, input, output): method handle_create_community (line 4328) | async def handle_create_community(self, client, input, output): method handle_update_community (line 4340) | async def handle_update_community(self, client, input, output): method handle_join_community (line 4346) | async def handle_join_community(self, client, input, output): method handle_find_community_by_gathering_id (line 4354) | async def handle_find_community_by_gathering_id(self, client, input, o... method handle_find_official_community (line 4365) | async def handle_find_official_community(self, client, input, output): method handle_find_community_by_participant (line 4377) | async def handle_find_community_by_participant(self, client, input, ou... method handle_update_privacy_setting (line 4389) | async def handle_update_privacy_setting(self, client, input, output): method handle_get_my_block_list (line 4396) | async def handle_get_my_block_list(self, client, input, output): method handle_add_to_block_list (line 4406) | async def handle_add_to_block_list(self, client, input, output): method handle_remove_from_block_list (line 4412) | async def handle_remove_from_block_list(self, client, input, output): method handle_clear_my_block_list (line 4418) | async def handle_clear_my_block_list(self, client, input, output): method handle_report_violation (line 4423) | async def handle_report_violation(self, client, input, output): method handle_is_violation_user (line 4431) | async def handle_is_violation_user(self, client, input, output): method handle_join_matchmake_session_ex (line 4445) | async def handle_join_matchmake_session_ex(self, client, input, output): method handle_get_simple_playing_session (line 4459) | async def handle_get_simple_playing_session(self, client, input, output): method handle_get_simple_community (line 4471) | async def handle_get_simple_community(self, client, input, output): method handle_auto_matchmake_with_gathering_id_postpone (line 4482) | async def handle_auto_matchmake_with_gathering_id_postpone(self, clien... method handle_update_progress_score (line 4495) | async def handle_update_progress_score(self, client, input, output): method handle_debug_notify_event (line 4502) | async def handle_debug_notify_event(self, client, input, output): method handle_generate_matchmake_session_system_password (line 4513) | async def handle_generate_matchmake_session_system_password(self, clie... method handle_clear_matchmake_session_system_password (line 4524) | async def handle_clear_matchmake_session_system_password(self, client,... method handle_create_matchmake_session_with_param (line 4530) | async def handle_create_matchmake_session_with_param(self, client, inp... method handle_join_matchmake_session_with_param (line 4541) | async def handle_join_matchmake_session_with_param(self, client, input... method handle_auto_matchmake_with_param_postpone (line 4552) | async def handle_auto_matchmake_with_param_postpone(self, client, inpu... method handle_find_matchmake_session_by_gathering_id_detail (line 4563) | async def handle_find_matchmake_session_by_gathering_id_detail(self, c... method handle_browse_matchmake_session_no_holder (line 4574) | async def handle_browse_matchmake_session_no_holder(self, client, inpu... method handle_browse_matchmake_session_with_host_urls_no_holder (line 4586) | async def handle_browse_matchmake_session_with_host_urls_no_holder(sel... method handle_update_matchmake_session_part (line 4602) | async def handle_update_matchmake_session_part(self, client, input, ou... method handle_request_matchmaking (line 4608) | async def handle_request_matchmaking(self, client, input, output): method handle_withdraw_matchmaking (line 4619) | async def handle_withdraw_matchmaking(self, client, input, output): method handle_withdraw_matchmaking_all (line 4625) | async def handle_withdraw_matchmaking_all(self, client, input, output): method handle_find_matchmake_session_by_gathering_id (line 4630) | async def handle_find_matchmake_session_by_gathering_id(self, client, ... method handle_find_matchmake_session_by_single_gathering_id (line 4641) | async def handle_find_matchmake_session_by_single_gathering_id(self, c... method handle_find_matchmake_session_by_owner (line 4652) | async def handle_find_matchmake_session_by_owner(self, client, input, ... method handle_find_matchmake_session_by_participant (line 4664) | async def handle_find_matchmake_session_by_participant(self, client, i... method handle_browse_matchmake_session_no_holder_no_result_range (line 4675) | async def handle_browse_matchmake_session_no_holder_no_result_range(se... method handle_browse_matchmake_session_with_host_urls_no_holder_no_result_range (line 4686) | async def handle_browse_matchmake_session_with_host_urls_no_holder_no_... method handle_update_friend_user_profile (line 4701) | async def handle_update_friend_user_profile(self, client, input, output): method handle_get_friend_user_profiles (line 4707) | async def handle_get_friend_user_profiles(self, client, input, output): method handle_get_friends (line 4718) | async def handle_get_friends(self, client, input, output): method handle_add_friends (line 4728) | async def handle_add_friends(self, client, input, output): method handle_remove_friend (line 4734) | async def handle_remove_friend(self, client, input, output): method handle_find_community_by_owner (line 4740) | async def handle_find_community_by_owner(self, client, input, output): method close_participation (line 4752) | async def close_participation(self, *args): method open_participation (line 4756) | async def open_participation(self, *args): method auto_matchmake_postpone (line 4760) | async def auto_matchmake_postpone(self, *args): method browse_matchmake_session (line 4764) | async def browse_matchmake_session(self, *args): method browse_matchmake_session_with_host_urls (line 4768) | async def browse_matchmake_session_with_host_urls(self, *args): method create_matchmake_session (line 4772) | async def create_matchmake_session(self, *args): method join_matchmake_session (line 4776) | async def join_matchmake_session(self, *args): method modify_current_game_attribute (line 4780) | async def modify_current_game_attribute(self, *args): method update_notification_data (line 4784) | async def update_notification_data(self, *args): method get_friend_notification_data (line 4788) | async def get_friend_notification_data(self, *args): method update_application_buffer (line 4792) | async def update_application_buffer(self, *args): method update_matchmake_session_attribute (line 4796) | async def update_matchmake_session_attribute(self, *args): method get_friend_notification_data_list (line 4800) | async def get_friend_notification_data_list(self, *args): method update_matchmake_session (line 4804) | async def update_matchmake_session(self, *args): method auto_matchmake_with_search_criteria_postpone (line 4808) | async def auto_matchmake_with_search_criteria_postpone(self, *args): method get_playing_session (line 4812) | async def get_playing_session(self, *args): method create_community (line 4816) | async def create_community(self, *args): method update_community (line 4820) | async def update_community(self, *args): method join_community (line 4824) | async def join_community(self, *args): method find_community_by_gathering_id (line 4828) | async def find_community_by_gathering_id(self, *args): method find_official_community (line 4832) | async def find_official_community(self, *args): method find_community_by_participant (line 4836) | async def find_community_by_participant(self, *args): method update_privacy_setting (line 4840) | async def update_privacy_setting(self, *args): method get_my_block_list (line 4844) | async def get_my_block_list(self, *args): method add_to_block_list (line 4848) | async def add_to_block_list(self, *args): method remove_from_block_list (line 4852) | async def remove_from_block_list(self, *args): method clear_my_block_list (line 4856) | async def clear_my_block_list(self, *args): method report_violation (line 4860) | async def report_violation(self, *args): method is_violation_user (line 4864) | async def is_violation_user(self, *args): method join_matchmake_session_ex (line 4868) | async def join_matchmake_session_ex(self, *args): method get_simple_playing_session (line 4872) | async def get_simple_playing_session(self, *args): method get_simple_community (line 4876) | async def get_simple_community(self, *args): method auto_matchmake_with_gathering_id_postpone (line 4880) | async def auto_matchmake_with_gathering_id_postpone(self, *args): method update_progress_score (line 4884) | async def update_progress_score(self, *args): method debug_notify_event (line 4888) | async def debug_notify_event(self, *args): method generate_matchmake_session_system_password (line 4892) | async def generate_matchmake_session_system_password(self, *args): method clear_matchmake_session_system_password (line 4896) | async def clear_matchmake_session_system_password(self, *args): method create_matchmake_session_with_param (line 4900) | async def create_matchmake_session_with_param(self, *args): method join_matchmake_session_with_param (line 4904) | async def join_matchmake_session_with_param(self, *args): method auto_matchmake_with_param_postpone (line 4908) | async def auto_matchmake_with_param_postpone(self, *args): method find_matchmake_session_by_gathering_id_detail (line 4912) | async def find_matchmake_session_by_gathering_id_detail(self, *args): method browse_matchmake_session_no_holder (line 4916) | async def browse_matchmake_session_no_holder(self, *args): method browse_matchmake_session_with_host_urls_no_holder (line 4920) | async def browse_matchmake_session_with_host_urls_no_holder(self, *args): method update_matchmake_session_part (line 4924) | async def update_matchmake_session_part(self, *args): method request_matchmaking (line 4928) | async def request_matchmaking(self, *args): method withdraw_matchmaking (line 4932) | async def withdraw_matchmaking(self, *args): method withdraw_matchmaking_all (line 4936) | async def withdraw_matchmaking_all(self, *args): method find_matchmake_session_by_gathering_id (line 4940) | async def find_matchmake_session_by_gathering_id(self, *args): method find_matchmake_session_by_single_gathering_id (line 4944) | async def find_matchmake_session_by_single_gathering_id(self, *args): method find_matchmake_session_by_owner (line 4948) | async def find_matchmake_session_by_owner(self, *args): method find_matchmake_session_by_participant (line 4952) | async def find_matchmake_session_by_participant(self, *args): method browse_matchmake_session_no_holder_no_result_range (line 4956) | async def browse_matchmake_session_no_holder_no_result_range(self, *ar... method browse_matchmake_session_with_host_urls_no_holder_no_result_range (line 4960) | async def browse_matchmake_session_with_host_urls_no_holder_no_result_... method update_friend_user_profile (line 4964) | async def update_friend_user_profile(self, *args): method get_friend_user_profiles (line 4968) | async def get_friend_user_profiles(self, *args): method get_friends (line 4972) | async def get_friends(self, *args): method add_friends (line 4976) | async def add_friends(self, *args): method remove_friend (line 4980) | async def remove_friend(self, *args): method find_community_by_owner (line 4984) | async def find_community_by_owner(self, *args): FILE: nintendo/nex/matchmaking_mk8.py class MatchmakeSystem (line 10) | class MatchmakeSystem: class Gathering (line 15) | class Gathering(common.Structure): method __init__ (line 16) | def __init__(self): method check_required (line 29) | def check_required(self, settings, version): method load (line 32) | def load(self, stream, version): method save (line 44) | def save(self, stream, version): class GatheringURLs (line 58) | class GatheringURLs(common.Structure): method __init__ (line 59) | def __init__(self): method check_required (line 64) | def check_required(self, settings, version): method load (line 69) | def load(self, stream, version): method save (line 73) | def save(self, stream, version): class GatheringStats (line 79) | class GatheringStats(common.Structure): method __init__ (line 80) | def __init__(self): method check_required (line 86) | def check_required(self, settings, version): method load (line 91) | def load(self, stream, version): method save (line 96) | def save(self, stream, version): class Invitation (line 103) | class Invitation(common.Structure): method __init__ (line 104) | def __init__(self): method check_required (line 110) | def check_required(self, settings, version): method load (line 115) | def load(self, stream, version): method save (line 120) | def save(self, stream, version): class ParticipantDetails (line 127) | class ParticipantDetails(common.Structure): method __init__ (line 128) | def __init__(self): method check_required (line 135) | def check_required(self, settings, version): method load (line 140) | def load(self, stream, version): method save (line 146) | def save(self, stream, version): class DeletionEntry (line 154) | class DeletionEntry(common.Structure): method __init__ (line 155) | def __init__(self): method check_required (line 161) | def check_required(self, settings, version): method load (line 166) | def load(self, stream, version): method save (line 171) | def save(self, stream, version): class MatchmakeParam (line 178) | class MatchmakeParam(common.Structure): method __init__ (line 179) | def __init__(self): method check_required (line 183) | def check_required(self, settings, version): method load (line 186) | def load(self, stream, version): method save (line 189) | def save(self, stream, version): class MatchmakeSessionSearchCriteria (line 194) | class MatchmakeSessionSearchCriteria(common.Structure): method __init__ (line 195) | def __init__(self): method check_required (line 214) | def check_required(self, settings, version): method load (line 220) | def load(self, stream, version): method save (line 240) | def save(self, stream, version): class MatchmakeSession (line 262) | class MatchmakeSession(Gathering): method __init__ (line 263) | def __init__(self): method max_version (line 282) | def max_version(self, settings): method check_required (line 293) | def check_required(self, settings, version): method load (line 313) | def load(self, stream, version): method save (line 351) | def save(self, stream, version): class MatchmakeBlockListParam (line 392) | class MatchmakeBlockListParam(common.Structure): method __init__ (line 393) | def __init__(self): method check_required (line 397) | def check_required(self, settings, version): method load (line 400) | def load(self, stream, version): method save (line 403) | def save(self, stream, version): class CreateMatchmakeSessionParam (line 408) | class CreateMatchmakeSessionParam(common.Structure): method __init__ (line 409) | def __init__(self): method check_required (line 418) | def check_required(self, settings, version): method load (line 423) | def load(self, stream, version): method save (line 431) | def save(self, stream, version): class JoinMatchmakeSessionParam (line 441) | class JoinMatchmakeSessionParam(common.Structure): method __init__ (line 442) | def __init__(self): method check_required (line 456) | def check_required(self, settings, version): method load (line 461) | def load(self, stream, version): method save (line 474) | def save(self, stream, version): class UpdateMatchmakeSessionParam (line 489) | class UpdateMatchmakeSessionParam(common.Structure): method __init__ (line 490) | def __init__(self): method check_required (line 510) | def check_required(self, settings, version): method load (line 515) | def load(self, stream, version): method save (line 534) | def save(self, stream, version): class AutoMatchmakeParam (line 555) | class AutoMatchmakeParam(common.Structure): method __init__ (line 556) | def __init__(self): method check_required (line 568) | def check_required(self, settings, version): method load (line 573) | def load(self, stream, version): method save (line 584) | def save(self, stream, version): class FindMatchmakeSessionByParticipantParam (line 597) | class FindMatchmakeSessionByParticipantParam(common.Structure): method __init__ (line 598) | def __init__(self): method check_required (line 604) | def check_required(self, settings, version): method load (line 609) | def load(self, stream, version): method save (line 614) | def save(self, stream, version): class FindMatchmakeSessionByParticipantResult (line 621) | class FindMatchmakeSessionByParticipantResult(common.Structure): method __init__ (line 622) | def __init__(self): method check_required (line 627) | def check_required(self, settings, version): method load (line 632) | def load(self, stream, version): method save (line 636) | def save(self, stream, version): class PersistentGathering (line 642) | class PersistentGathering(Gathering): method __init__ (line 643) | def __init__(self): method check_required (line 654) | def check_required(self, settings, version): method load (line 659) | def load(self, stream, version): method save (line 669) | def save(self, stream, version): class SimpleCommunity (line 682) | class SimpleCommunity(common.Structure): method __init__ (line 683) | def __init__(self): method check_required (line 688) | def check_required(self, settings, version): method load (line 693) | def load(self, stream, version): method save (line 697) | def save(self, stream, version): class PlayingSession (line 703) | class PlayingSession(common.Structure): method __init__ (line 704) | def __init__(self): method check_required (line 709) | def check_required(self, settings, version): method load (line 714) | def load(self, stream, version): method save (line 718) | def save(self, stream, version): class SimplePlayingSession (line 724) | class SimplePlayingSession(common.Structure): method __init__ (line 725) | def __init__(self): method check_required (line 732) | def check_required(self, settings, version): method load (line 737) | def load(self, stream, version): method save (line 743) | def save(self, stream, version): class MatchmakeRefereeRound (line 751) | class MatchmakeRefereeRound(common.Structure): method __init__ (line 752) | def __init__(self): method check_required (line 760) | def check_required(self, settings, version): method load (line 765) | def load(self, stream, version): method save (line 772) | def save(self, stream, version): class MatchmakeRefereeStartRoundParam (line 781) | class MatchmakeRefereeStartRoundParam(common.Structure): method __init__ (line 782) | def __init__(self): method check_required (line 788) | def check_required(self, settings, version): method load (line 793) | def load(self, stream, version): method save (line 798) | def save(self, stream, version): class MatchmakeRefereeEndRoundParam (line 805) | class MatchmakeRefereeEndRoundParam(common.Structure): method __init__ (line 806) | def __init__(self): method check_required (line 811) | def check_required(self, settings, version): method load (line 816) | def load(self, stream, version): method save (line 820) | def save(self, stream, version): class MatchmakeRefereePersonalRoundResult (line 826) | class MatchmakeRefereePersonalRoundResult(common.Structure): method __init__ (line 827) | def __init__(self): method check_required (line 835) | def check_required(self, settings, version): method load (line 840) | def load(self, stream, version): method save (line 847) | def save(self, stream, version): class MatchmakeRefereeStats (line 856) | class MatchmakeRefereeStats(common.Structure): method __init__ (line 857) | def __init__(self): method check_required (line 876) | def check_required(self, settings, version): method load (line 881) | def load(self, stream, version): method save (line 899) | def save(self, stream, version): class MatchmakeRefereeStatsTarget (line 919) | class MatchmakeRefereeStatsTarget(common.Structure): method __init__ (line 920) | def __init__(self): method check_required (line 925) | def check_required(self, settings, version): method load (line 930) | def load(self, stream, version): method save (line 934) | def save(self, stream, version): class MatchmakeRefereeStatsInitParam (line 940) | class MatchmakeRefereeStatsInitParam(common.Structure): method __init__ (line 941) | def __init__(self): method check_required (line 946) | def check_required(self, settings, version): method load (line 951) | def load(self, stream, version): method save (line 955) | def save(self, stream, version): class SimpleSearchObject (line 961) | class SimpleSearchObject(common.Structure): method __init__ (line 962) | def __init__(self): method check_required (line 972) | def check_required(self, settings, version): method load (line 977) | def load(self, stream, version): method save (line 986) | def save(self, stream, version): class SimpleSearchDateTimeAttribute (line 997) | class SimpleSearchDateTimeAttribute(common.Structure): method __init__ (line 998) | def __init__(self): method check_required (line 1007) | def check_required(self, settings, version): method load (line 1012) | def load(self, stream, version): method save (line 1020) | def save(self, stream, version): class SimpleSearchParam (line 1030) | class SimpleSearchParam(common.Structure): method __init__ (line 1031) | def __init__(self): method check_required (line 1040) | def check_required(self, settings, version): method load (line 1045) | def load(self, stream, version): method save (line 1053) | def save(self, stream, version): class SimpleSearchCondition (line 1063) | class SimpleSearchCondition(common.Structure): method __init__ (line 1064) | def __init__(self): method check_required (line 1069) | def check_required(self, settings, version): method load (line 1074) | def load(self, stream, version): method save (line 1078) | def save(self, stream, version): class MatchMakingProtocol (line 1084) | class MatchMakingProtocol: class MatchMakingProtocolExt (line 1133) | class MatchMakingProtocolExt: class MatchmakeRefereeProtocol (line 1144) | class MatchmakeRefereeProtocol: class MatchmakeExtensionProtocolMK8 (line 1162) | class MatchmakeExtensionProtocolMK8: class MatchMakingClient (line 1220) | class MatchMakingClient(MatchMakingProtocol): method __init__ (line 1221) | def __init__(self, client): method register_gathering (line 1225) | async def register_gathering(self, gathering): method unregister_gathering (line 1240) | async def unregister_gathering(self, gid): method unregister_gatherings (line 1255) | async def unregister_gatherings(self, gids): method update_gathering (line 1270) | async def update_gathering(self, gathering): method invite (line 1285) | async def invite(self, gid, pids, message): method accept_invitation (line 1302) | async def accept_invitation(self, gid, message): method decline_invitation (line 1318) | async def decline_invitation(self, gid, message): method cancel_invitation (line 1334) | async def cancel_invitation(self, gid, pids, message): method get_invitations_sent (line 1351) | async def get_invitations_sent(self, gid): method get_invitations_received (line 1366) | async def get_invitations_received(self): method participate (line 1380) | async def participate(self, gid, message): method cancel_participation (line 1396) | async def cancel_participation(self, gid, message): method get_participants (line 1412) | async def get_participants(self, gid): method add_participants (line 1427) | async def add_participants(self, gid, pids, message): method get_detailed_participants (line 1444) | async def get_detailed_participants(self, gid): method get_participants_urls (line 1459) | async def get_participants_urls(self, gid): method find_by_type (line 1474) | async def find_by_type(self, type, range): method find_by_description (line 1490) | async def find_by_description(self, description, range): method find_by_description_regex (line 1506) | async def find_by_description_regex(self, regex, range): method find_by_id (line 1522) | async def find_by_id(self, ids): method find_by_single_id (line 1537) | async def find_by_single_id(self, gid): method find_by_owner (line 1554) | async def find_by_owner(self, owner, range): method find_by_participants (line 1570) | async def find_by_participants(self, pids): method find_invitations (line 1585) | async def find_invitations(self, range): method find_by_sql_query (line 1600) | async def find_by_sql_query(self, query, range): method launch_session (line 1616) | async def launch_session(self, gid, url): method update_session_url (line 1632) | async def update_session_url(self, gid, url): method get_session_url (line 1648) | async def get_session_url(self, gid): method get_state (line 1665) | async def get_state(self, gid): method set_state (line 1682) | async def set_state(self, gid, state): method report_stats (line 1698) | async def report_stats(self, gid, stats): method get_stats (line 1714) | async def get_stats(self, gid, pids, columns): method delete_gathering (line 1733) | async def delete_gathering(self, gid): method get_pending_deletions (line 1748) | async def get_pending_deletions(self, reason, range): method delete_from_deletions (line 1766) | async def delete_from_deletions(self, deletions): method migrate_gathering_ownership_v1 (line 1781) | async def migrate_gathering_ownership_v1(self, gid, potential_owners): method find_by_description_like (line 1797) | async def find_by_description_like(self, description, range): method register_local_url (line 1813) | async def register_local_url(self, gid, url): method register_local_urls (line 1827) | async def register_local_urls(self, gid, urls): method update_session_host_v1 (line 1841) | async def update_session_host_v1(self, gid): method get_session_urls (line 1854) | async def get_session_urls(self, gid): method update_session_host (line 1869) | async def update_session_host(self, gid, is_migrate_owner): method update_gathering_ownership (line 1883) | async def update_gathering_ownership(self, gid, participants_only): method migrate_gathering_ownership (line 1899) | async def migrate_gathering_ownership(self, gid, potential_owners, par... class MatchMakingClientExt (line 1915) | class MatchMakingClientExt(MatchMakingProtocolExt): method __init__ (line 1916) | def __init__(self, client): method end_participation (line 1920) | async def end_participation(self, gid, message): method get_participants (line 1936) | async def get_participants(self, gid, only_active): method get_detailed_participants (line 1952) | async def get_detailed_participants(self, gid, only_active): method get_participants_urls (line 1968) | async def get_participants_urls(self, gids): method get_gathering_relations (line 1983) | async def get_gathering_relations(self, id, descr): method delete_from_deletions (line 1999) | async def delete_from_deletions(self, deletions, pid): class MatchmakeRefereeClient (line 2014) | class MatchmakeRefereeClient(MatchmakeRefereeProtocol): method __init__ (line 2015) | def __init__(self, client): method start_round (line 2019) | async def start_round(self, param): method get_start_round_param (line 2034) | async def get_start_round_param(self, round_id): method end_round (line 2049) | async def end_round(self, param): method end_round_without_report (line 2062) | async def end_round_without_report(self, round_id): method get_round_participants (line 2075) | async def get_round_participants(self, round_id): method get_not_summarized_round (line 2090) | async def get_not_summarized_round(self): method get_round (line 2104) | async def get_round(self, round): method get_stats_primary (line 2119) | async def get_stats_primary(self, target): method get_stats_primaries (line 2134) | async def get_stats_primaries(self, targets): method get_stats_all (line 2151) | async def get_stats_all(self, target): method create_stats (line 2166) | async def create_stats(self, param): method get_or_create_stats (line 2181) | async def get_or_create_stats(self, param): method reset_stats (line 2196) | async def reset_stats(self): class MatchmakeExtensionClientMK8 (line 2209) | class MatchmakeExtensionClientMK8(MatchmakeExtensionProtocolMK8): method __init__ (line 2210) | def __init__(self, client): method close_participation (line 2214) | async def close_participation(self, gid): method open_participation (line 2227) | async def open_participation(self, gid): method auto_matchmake_postpone (line 2240) | async def auto_matchmake_postpone(self, gathering, message): method browse_matchmake_session (line 2256) | async def browse_matchmake_session(self, search_criteria, range): method browse_matchmake_session_with_host_urls (line 2272) | async def browse_matchmake_session_with_host_urls(self, search_criteri... method create_matchmake_session (line 2290) | async def create_matchmake_session(self, gathering, description, num_p... method join_matchmake_session (line 2309) | async def join_matchmake_session(self, gid, message): method modify_current_game_attribute (line 2325) | async def modify_current_game_attribute(self, gid, attrib, value): method update_notification_data (line 2340) | async def update_notification_data(self, type, param1, param2, param3): method get_friend_notification_data (line 2356) | async def get_friend_notification_data(self, type): method update_application_buffer (line 2371) | async def update_application_buffer(self, gid, buffer): method update_matchmake_session_attribute (line 2385) | async def update_matchmake_session_attribute(self, gid, attribs): method get_friend_notification_data_list (line 2399) | async def get_friend_notification_data_list(self, types): method update_matchmake_session (line 2414) | async def update_matchmake_session(self, gathering): method auto_matchmake_with_search_criteria_postpone (line 2427) | async def auto_matchmake_with_search_criteria_postpone(self, search_cr... method get_playing_session (line 2444) | async def get_playing_session(self, pids): method create_community (line 2459) | async def create_community(self, community, message): method update_community (line 2475) | async def update_community(self, community): method join_community (line 2488) | async def join_community(self, gid, message, password): method find_community_by_gathering_id (line 2503) | async def find_community_by_gathering_id(self, gids): method find_official_community (line 2518) | async def find_official_community(self, available_only, range): method find_community_by_participant (line 2534) | async def find_community_by_participant(self, pid, range): method update_privacy_setting (line 2550) | async def update_privacy_setting(self, online_status, community_partic... method get_my_block_list (line 2564) | async def get_my_block_list(self): method add_to_block_list (line 2578) | async def add_to_block_list(self, pids): method remove_from_block_list (line 2591) | async def remove_from_block_list(self, pids): method clear_my_block_list (line 2604) | async def clear_my_block_list(self): method report_violation (line 2616) | async def report_violation(self, pid, username, violation_code): method is_violation_user (line 2631) | async def is_violation_user(self): method join_matchmake_session_ex (line 2647) | async def join_matchmake_session_ex(self, gid, gmessage, ignore_block_... method get_simple_playing_session (line 2665) | async def get_simple_playing_session(self, pids, include_login_user): method get_simple_community (line 2681) | async def get_simple_community(self, gids): method auto_matchmake_with_gathering_id_postpone (line 2696) | async def auto_matchmake_with_gathering_id_postpone(self, gids, gather... method update_progress_score (line 2713) | async def update_progress_score(self, gid, score): method debug_notify_event (line 2727) | async def debug_notify_event(self, pid, main_type, sub_type, param1, p... method create_simple_search_object (line 2745) | async def create_simple_search_object(self, object): method update_simple_search_object (line 2760) | async def update_simple_search_object(self, id, object): method delete_simple_search_object (line 2774) | async def delete_simple_search_object(self, id): method search_simple_search_object (line 2787) | async def search_simple_search_object(self, param): method join_matchmake_session_with_extra_participants (line 2802) | async def join_matchmake_session_with_extra_participants(self, gid, jo... method search_simple_search_object_by_object_ids (line 2821) | async def search_simple_search_object_by_object_ids(self, ids): method browse_matchmake_session_no_holder (line 2836) | async def browse_matchmake_session_no_holder(self, search_criteria, ra... method browse_matchmake_session_with_host_urls_no_holder (line 2852) | async def browse_matchmake_session_with_host_urls_no_holder(self, sear... method update_matchmake_session_part (line 2870) | async def update_matchmake_session_part(self, param): method request_matchmaking (line 2883) | async def request_matchmaking(self, param): method withdraw_matchmaking (line 2898) | async def withdraw_matchmaking(self, request_id): method withdraw_matchmaking_all (line 2911) | async def withdraw_matchmaking_all(self): method find_matchmake_session_by_gathering_id (line 2923) | async def find_matchmake_session_by_gathering_id(self, gids): method find_matchmake_session_by_single_gathering_id (line 2938) | async def find_matchmake_session_by_single_gathering_id(self, gid): method find_matchmake_session_by_owner (line 2953) | async def find_matchmake_session_by_owner(self, pid, range): method find_matchmake_session_by_participant (line 2969) | async def find_matchmake_session_by_participant(self, param): method browse_matchmake_session_no_holder_no_result_range (line 2984) | async def browse_matchmake_session_no_holder_no_result_range(self, sea... method browse_matchmake_session_with_host_urls_no_holder_no_result_range (line 2999) | async def browse_matchmake_session_with_host_urls_no_holder_no_result_... class MatchMakingServer (line 3017) | class MatchMakingServer(MatchMakingProtocol): method __init__ (line 3018) | def __init__(self): method logout (line 3066) | async def logout(self, client): method handle (line 3069) | async def handle(self, client, method_id, input, output): method handle_register_gathering (line 3076) | async def handle_register_gathering(self, client, input, output): method handle_unregister_gathering (line 3087) | async def handle_unregister_gathering(self, client, input, output): method handle_unregister_gatherings (line 3098) | async def handle_unregister_gatherings(self, client, input, output): method handle_update_gathering (line 3109) | async def handle_update_gathering(self, client, input, output): method handle_invite (line 3120) | async def handle_invite(self, client, input, output): method handle_accept_invitation (line 3133) | async def handle_accept_invitation(self, client, input, output): method handle_decline_invitation (line 3145) | async def handle_decline_invitation(self, client, input, output): method handle_cancel_invitation (line 3157) | async def handle_cancel_invitation(self, client, input, output): method handle_get_invitations_sent (line 3170) | async def handle_get_invitations_sent(self, client, input, output): method handle_get_invitations_received (line 3181) | async def handle_get_invitations_received(self, client, input, output): method handle_participate (line 3191) | async def handle_participate(self, client, input, output): method handle_cancel_participation (line 3203) | async def handle_cancel_participation(self, client, input, output): method handle_get_participants (line 3215) | async def handle_get_participants(self, client, input, output): method handle_add_participants (line 3226) | async def handle_add_participants(self, client, input, output): method handle_get_detailed_participants (line 3239) | async def handle_get_detailed_participants(self, client, input, output): method handle_get_participants_urls (line 3250) | async def handle_get_participants_urls(self, client, input, output): method handle_find_by_type (line 3261) | async def handle_find_by_type(self, client, input, output): method handle_find_by_description (line 3273) | async def handle_find_by_description(self, client, input, output): method handle_find_by_description_regex (line 3285) | async def handle_find_by_description_regex(self, client, input, output): method handle_find_by_id (line 3297) | async def handle_find_by_id(self, client, input, output): method handle_find_by_single_id (line 3308) | async def handle_find_by_single_id(self, client, input, output): method handle_find_by_owner (line 3323) | async def handle_find_by_owner(self, client, input, output): method handle_find_by_participants (line 3335) | async def handle_find_by_participants(self, client, input, output): method handle_find_invitations (line 3346) | async def handle_find_invitations(self, client, input, output): method handle_find_by_sql_query (line 3357) | async def handle_find_by_sql_query(self, client, input, output): method handle_launch_session (line 3369) | async def handle_launch_session(self, client, input, output): method handle_update_session_url (line 3381) | async def handle_update_session_url(self, client, input, output): method handle_get_session_url (line 3393) | async def handle_get_session_url(self, client, input, output): method handle_get_state (line 3408) | async def handle_get_state(self, client, input, output): method handle_set_state (line 3423) | async def handle_set_state(self, client, input, output): method handle_report_stats (line 3435) | async def handle_report_stats(self, client, input, output): method handle_get_stats (line 3447) | async def handle_get_stats(self, client, input, output): method handle_delete_gathering (line 3464) | async def handle_delete_gathering(self, client, input, output): method handle_get_pending_deletions (line 3475) | async def handle_get_pending_deletions(self, client, input, output): method handle_delete_from_deletions (line 3491) | async def handle_delete_from_deletions(self, client, input, output): method handle_migrate_gathering_ownership_v1 (line 3502) | async def handle_migrate_gathering_ownership_v1(self, client, input, o... method handle_find_by_description_like (line 3514) | async def handle_find_by_description_like(self, client, input, output): method handle_register_local_url (line 3526) | async def handle_register_local_url(self, client, input, output): method handle_register_local_urls (line 3533) | async def handle_register_local_urls(self, client, input, output): method handle_update_session_host_v1 (line 3540) | async def handle_update_session_host_v1(self, client, input, output): method handle_get_session_urls (line 3546) | async def handle_get_session_urls(self, client, input, output): method handle_update_session_host (line 3557) | async def handle_update_session_host(self, client, input, output): method handle_update_gathering_ownership (line 3564) | async def handle_update_gathering_ownership(self, client, input, output): method handle_migrate_gathering_ownership (line 3576) | async def handle_migrate_gathering_ownership(self, client, input, outp... method register_gathering (line 3584) | async def register_gathering(self, *args): method unregister_gathering (line 3588) | async def unregister_gathering(self, *args): method unregister_gatherings (line 3592) | async def unregister_gatherings(self, *args): method update_gathering (line 3596) | async def update_gathering(self, *args): method invite (line 3600) | async def invite(self, *args): method accept_invitation (line 3604) | async def accept_invitation(self, *args): method decline_invitation (line 3608) | async def decline_invitation(self, *args): method cancel_invitation (line 3612) | async def cancel_invitation(self, *args): method get_invitations_sent (line 3616) | async def get_invitations_sent(self, *args): method get_invitations_received (line 3620) | async def get_invitations_received(self, *args): method participate (line 3624) | async def participate(self, *args): method cancel_participation (line 3628) | async def cancel_participation(self, *args): method get_participants (line 3632) | async def get_participants(self, *args): method add_participants (line 3636) | async def add_participants(self, *args): method get_detailed_participants (line 3640) | async def get_detailed_participants(self, *args): method get_participants_urls (line 3644) | async def get_participants_urls(self, *args): method find_by_type (line 3648) | async def find_by_type(self, *args): method find_by_description (line 3652) | async def find_by_description(self, *args): method find_by_description_regex (line 3656) | async def find_by_description_regex(self, *args): method find_by_id (line 3660) | async def find_by_id(self, *args): method find_by_single_id (line 3664) | async def find_by_single_id(self, *args): method find_by_owner (line 3668) | async def find_by_owner(self, *args): method find_by_participants (line 3672) | async def find_by_participants(self, *args): method find_invitations (line 3676) | async def find_invitations(self, *args): method find_by_sql_query (line 3680) | async def find_by_sql_query(self, *args): method launch_session (line 3684) | async def launch_session(self, *args): method update_session_url (line 3688) | async def update_session_url(self, *args): method get_session_url (line 3692) | async def get_session_url(self, *args): method get_state (line 3696) | async def get_state(self, *args): method set_state (line 3700) | async def set_state(self, *args): method report_stats (line 3704) | async def report_stats(self, *args): method get_stats (line 3708) | async def get_stats(self, *args): method delete_gathering (line 3712) | async def delete_gathering(self, *args): method get_pending_deletions (line 3716) | async def get_pending_deletions(self, *args): method delete_from_deletions (line 3720) | async def delete_from_deletions(self, *args): method migrate_gathering_ownership_v1 (line 3724) | async def migrate_gathering_ownership_v1(self, *args): method find_by_description_like (line 3728) | async def find_by_description_like(self, *args): method register_local_url (line 3732) | async def register_local_url(self, *args): method register_local_urls (line 3736) | async def register_local_urls(self, *args): method update_session_host_v1 (line 3740) | async def update_session_host_v1(self, *args): method get_session_urls (line 3744) | async def get_session_urls(self, *args): method update_session_host (line 3748) | async def update_session_host(self, *args): method update_gathering_ownership (line 3752) | async def update_gathering_ownership(self, *args): method migrate_gathering_ownership (line 3756) | async def migrate_gathering_ownership(self, *args): class MatchMakingServerExt (line 3761) | class MatchMakingServerExt(MatchMakingProtocolExt): method __init__ (line 3762) | def __init__(self): method logout (line 3772) | async def logout(self, client): method handle (line 3775) | async def handle(self, client, method_id, input, output): method handle_end_participation (line 3782) | async def handle_end_participation(self, client, input, output): method handle_get_participants (line 3794) | async def handle_get_participants(self, client, input, output): method handle_get_detailed_participants (line 3806) | async def handle_get_detailed_participants(self, client, input, output): method handle_get_participants_urls (line 3818) | async def handle_get_participants_urls(self, client, input, output): method handle_get_gathering_relations (line 3829) | async def handle_get_gathering_relations(self, client, input, output): method handle_delete_from_deletions (line 3841) | async def handle_delete_from_deletions(self, client, input, output): method end_participation (line 3848) | async def end_participation(self, *args): method get_participants (line 3852) | async def get_participants(self, *args): method get_detailed_participants (line 3856) | async def get_detailed_participants(self, *args): method get_participants_urls (line 3860) | async def get_participants_urls(self, *args): method get_gathering_relations (line 3864) | async def get_gathering_relations(self, *args): method delete_from_deletions (line 3868) | async def delete_from_deletions(self, *args): class MatchmakeRefereeServer (line 3873) | class MatchmakeRefereeServer(MatchmakeRefereeProtocol): method __init__ (line 3874) | def __init__(self): method logout (line 3891) | async def logout(self, client): method handle (line 3894) | async def handle(self, client, method_id, input, output): method handle_start_round (line 3901) | async def handle_start_round(self, client, input, output): method handle_get_start_round_param (line 3912) | async def handle_get_start_round_param(self, client, input, output): method handle_end_round (line 3923) | async def handle_end_round(self, client, input, output): method handle_end_round_without_report (line 3929) | async def handle_end_round_without_report(self, client, input, output): method handle_get_round_participants (line 3935) | async def handle_get_round_participants(self, client, input, output): method handle_get_not_summarized_round (line 3946) | async def handle_get_not_summarized_round(self, client, input, output): method handle_get_round (line 3956) | async def handle_get_round(self, client, input, output): method handle_get_stats_primary (line 3967) | async def handle_get_stats_primary(self, client, input, output): method handle_get_stats_primaries (line 3978) | async def handle_get_stats_primaries(self, client, input, output): method handle_get_stats_all (line 3993) | async def handle_get_stats_all(self, client, input, output): method handle_create_stats (line 4004) | async def handle_create_stats(self, client, input, output): method handle_get_or_create_stats (line 4015) | async def handle_get_or_create_stats(self, client, input, output): method handle_reset_stats (line 4026) | async def handle_reset_stats(self, client, input, output): method start_round (line 4031) | async def start_round(self, *args): method get_start_round_param (line 4035) | async def get_start_round_param(self, *args): method end_round (line 4039) | async def end_round(self, *args): method end_round_without_report (line 4043) | async def end_round_without_report(self, *args): method get_round_participants (line 4047) | async def get_round_participants(self, *args): method get_not_summarized_round (line 4051) | async def get_not_summarized_round(self, *args): method get_round (line 4055) | async def get_round(self, *args): method get_stats_primary (line 4059) | async def get_stats_primary(self, *args): method get_stats_primaries (line 4063) | async def get_stats_primaries(self, *args): method get_stats_all (line 4067) | async def get_stats_all(self, *args): method create_stats (line 4071) | async def create_stats(self, *args): method get_or_create_stats (line 4075) | async def get_or_create_stats(self, *args): method reset_stats (line 4079) | async def reset_stats(self, *args): class MatchmakeExtensionServerMK8 (line 4084) | class MatchmakeExtensionServerMK8(MatchmakeExtensionProtocolMK8): method __init__ (line 4085) | def __init__(self): method logout (line 4142) | async def logout(self, client): method handle (line 4145) | async def handle(self, client, method_id, input, output): method handle_close_participation (line 4152) | async def handle_close_participation(self, client, input, output): method handle_open_participation (line 4158) | async def handle_open_participation(self, client, input, output): method handle_auto_matchmake_postpone (line 4164) | async def handle_auto_matchmake_postpone(self, client, input, output): method handle_browse_matchmake_session (line 4176) | async def handle_browse_matchmake_session(self, client, input, output): method handle_browse_matchmake_session_with_host_urls (line 4188) | async def handle_browse_matchmake_session_with_host_urls(self, client,... method handle_create_matchmake_session (line 4204) | async def handle_create_matchmake_session(self, client, input, output): method handle_join_matchmake_session (line 4221) | async def handle_join_matchmake_session(self, client, input, output): method handle_modify_current_game_attribute (line 4233) | async def handle_modify_current_game_attribute(self, client, input, ou... method handle_update_notification_data (line 4241) | async def handle_update_notification_data(self, client, input, output): method handle_get_friend_notification_data (line 4250) | async def handle_get_friend_notification_data(self, client, input, out... method handle_update_application_buffer (line 4261) | async def handle_update_application_buffer(self, client, input, output): method handle_update_matchmake_session_attribute (line 4268) | async def handle_update_matchmake_session_attribute(self, client, inpu... method handle_get_friend_notification_data_list (line 4275) | async def handle_get_friend_notification_data_list(self, client, input... method handle_update_matchmake_session (line 4286) | async def handle_update_matchmake_session(self, client, input, output): method handle_auto_matchmake_with_search_criteria_postpone (line 4292) | async def handle_auto_matchmake_with_search_criteria_postpone(self, cl... method handle_get_playing_session (line 4305) | async def handle_get_playing_session(self, client, input, output): method handle_create_community (line 4316) | async def handle_create_community(self, client, input, output): method handle_update_community (line 4328) | async def handle_update_community(self, client, input, output): method handle_join_community (line 4334) | async def handle_join_community(self, client, input, output): method handle_find_community_by_gathering_id (line 4342) | async def handle_find_community_by_gathering_id(self, client, input, o... method handle_find_official_community (line 4353) | async def handle_find_official_community(self, client, input, output): method handle_find_community_by_participant (line 4365) | async def handle_find_community_by_participant(self, client, input, ou... method handle_update_privacy_setting (line 4377) | async def handle_update_privacy_setting(self, client, input, output): method handle_get_my_block_list (line 4384) | async def handle_get_my_block_list(self, client, input, output): method handle_add_to_block_list (line 4394) | async def handle_add_to_block_list(self, client, input, output): method handle_remove_from_block_list (line 4400) | async def handle_remove_from_block_list(self, client, input, output): method handle_clear_my_block_list (line 4406) | async def handle_clear_my_block_list(self, client, input, output): method handle_report_violation (line 4411) | async def handle_report_violation(self, client, input, output): method handle_is_violation_user (line 4419) | async def handle_is_violation_user(self, client, input, output): method handle_join_matchmake_session_ex (line 4433) | async def handle_join_matchmake_session_ex(self, client, input, output): method handle_get_simple_playing_session (line 4447) | async def handle_get_simple_playing_session(self, client, input, output): method handle_get_simple_community (line 4459) | async def handle_get_simple_community(self, client, input, output): method handle_auto_matchmake_with_gathering_id_postpone (line 4470) | async def handle_auto_matchmake_with_gathering_id_postpone(self, clien... method handle_update_progress_score (line 4483) | async def handle_update_progress_score(self, client, input, output): method handle_debug_notify_event (line 4490) | async def handle_debug_notify_event(self, client, input, output): method handle_create_simple_search_object (line 4501) | async def handle_create_simple_search_object(self, client, input, outp... method handle_update_simple_search_object (line 4512) | async def handle_update_simple_search_object(self, client, input, outp... method handle_delete_simple_search_object (line 4519) | async def handle_delete_simple_search_object(self, client, input, outp... method handle_search_simple_search_object (line 4525) | async def handle_search_simple_search_object(self, client, input, outp... method handle_join_matchmake_session_with_extra_participants (line 4536) | async def handle_join_matchmake_session_with_extra_participants(self, ... method handle_search_simple_search_object_by_object_ids (line 4551) | async def handle_search_simple_search_object_by_object_ids(self, clien... method handle_browse_matchmake_session_no_holder (line 4562) | async def handle_browse_matchmake_session_no_holder(self, client, inpu... method handle_browse_matchmake_session_with_host_urls_no_holder (line 4574) | async def handle_browse_matchmake_session_with_host_urls_no_holder(sel... method handle_update_matchmake_session_part (line 4590) | async def handle_update_matchmake_session_part(self, client, input, ou... method handle_request_matchmaking (line 4596) | async def handle_request_matchmaking(self, client, input, output): method handle_withdraw_matchmaking (line 4607) | async def handle_withdraw_matchmaking(self, client, input, output): method handle_withdraw_matchmaking_all (line 4613) | async def handle_withdraw_matchmaking_all(self, client, input, output): method handle_find_matchmake_session_by_gathering_id (line 4618) | async def handle_find_matchmake_session_by_gathering_id(self, client, ... method handle_find_matchmake_session_by_single_gathering_id (line 4629) | async def handle_find_matchmake_session_by_single_gathering_id(self, c... method handle_find_matchmake_session_by_owner (line 4640) | async def handle_find_matchmake_session_by_owner(self, client, input, ... method handle_find_matchmake_session_by_participant (line 4652) | async def handle_find_matchmake_session_by_participant(self, client, i... method handle_browse_matchmake_session_no_holder_no_result_range (line 4663) | async def handle_browse_matchmake_session_no_holder_no_result_range(se... method handle_browse_matchmake_session_with_host_urls_no_holder_no_result_range (line 4674) | async def handle_browse_matchmake_session_with_host_urls_no_holder_no_... method close_participation (line 4689) | async def close_participation(self, *args): method open_participation (line 4693) | async def open_participation(self, *args): method auto_matchmake_postpone (line 4697) | async def auto_matchmake_postpone(self, *args): method browse_matchmake_session (line 4701) | async def browse_matchmake_session(self, *args): method browse_matchmake_session_with_host_urls (line 4705) | async def browse_matchmake_session_with_host_urls(self, *args): method create_matchmake_session (line 4709) | async def create_matchmake_session(self, *args): method join_matchmake_session (line 4713) | async def join_matchmake_session(self, *args): method modify_current_game_attribute (line 4717) | async def modify_current_game_attribute(self, *args): method update_notification_data (line 4721) | async def update_notification_data(self, *args): method get_friend_notification_data (line 4725) | async def get_friend_notification_data(self, *args): method update_application_buffer (line 4729) | async def update_application_buffer(self, *args): method update_matchmake_session_attribute (line 4733) | async def update_matchmake_session_attribute(self, *args): method get_friend_notification_data_list (line 4737) | async def get_friend_notification_data_list(self, *args): method update_matchmake_session (line 4741) | async def update_matchmake_session(self, *args): method auto_matchmake_with_search_criteria_postpone (line 4745) | async def auto_matchmake_with_search_criteria_postpone(self, *args): method get_playing_session (line 4749) | async def get_playing_session(self, *args): method create_community (line 4753) | async def create_community(self, *args): method update_community (line 4757) | async def update_community(self, *args): method join_community (line 4761) | async def join_community(self, *args): method find_community_by_gathering_id (line 4765) | async def find_community_by_gathering_id(self, *args): method find_official_community (line 4769) | async def find_official_community(self, *args): method find_community_by_participant (line 4773) | async def find_community_by_participant(self, *args): method update_privacy_setting (line 4777) | async def update_privacy_setting(self, *args): method get_my_block_list (line 4781) | async def get_my_block_list(self, *args): method add_to_block_list (line 4785) | async def add_to_block_list(self, *args): method remove_from_block_list (line 4789) | async def remove_from_block_list(self, *args): method clear_my_block_list (line 4793) | async def clear_my_block_list(self, *args): method report_violation (line 4797) | async def report_violation(self, *args): method is_violation_user (line 4801) | async def is_violation_user(self, *args): method join_matchmake_session_ex (line 4805) | async def join_matchmake_session_ex(self, *args): method get_simple_playing_session (line 4809) | async def get_simple_playing_session(self, *args): method get_simple_community (line 4813) | async def get_simple_community(self, *args): method auto_matchmake_with_gathering_id_postpone (line 4817) | async def auto_matchmake_with_gathering_id_postpone(self, *args): method update_progress_score (line 4821) | async def update_progress_score(self, *args): method debug_notify_event (line 4825) | async def debug_notify_event(self, *args): method create_simple_search_object (line 4829) | async def create_simple_search_object(self, *args): method update_simple_search_object (line 4833) | async def update_simple_search_object(self, *args): method delete_simple_search_object (line 4837) | async def delete_simple_search_object(self, *args): method search_simple_search_object (line 4841) | async def search_simple_search_object(self, *args): method join_matchmake_session_with_extra_participants (line 4845) | async def join_matchmake_session_with_extra_participants(self, *args): method search_simple_search_object_by_object_ids (line 4849) | async def search_simple_search_object_by_object_ids(self, *args): method browse_matchmake_session_no_holder (line 4853) | async def browse_matchmake_session_no_holder(self, *args): method browse_matchmake_session_with_host_urls_no_holder (line 4857) | async def browse_matchmake_session_with_host_urls_no_holder(self, *args): method update_matchmake_session_part (line 4861) | async def update_matchmake_session_part(self, *args): method request_matchmaking (line 4865) | async def request_matchmaking(self, *args): method withdraw_matchmaking (line 4869) | async def withdraw_matchmaking(self, *args): method withdraw_matchmaking_all (line 4873) | async def withdraw_matchmaking_all(self, *args): method find_matchmake_session_by_gathering_id (line 4877) | async def find_matchmake_session_by_gathering_id(self, *args): method find_matchmake_session_by_single_gathering_id (line 4881) | async def find_matchmake_session_by_single_gathering_id(self, *args): method find_matchmake_session_by_owner (line 4885) | async def find_matchmake_session_by_owner(self, *args): method find_matchmake_session_by_participant (line 4889) | async def find_matchmake_session_by_participant(self, *args): method browse_matchmake_session_no_holder_no_result_range (line 4893) | async def browse_matchmake_session_no_holder_no_result_range(self, *ar... method browse_matchmake_session_with_host_urls_no_holder_no_result_range (line 4897) | async def browse_matchmake_session_with_host_urls_no_holder_no_result_... FILE: nintendo/nex/matchmaking_mk8d.py class MatchmakeSystem (line 10) | class MatchmakeSystem: class SimpleSearchConditionOperator (line 15) | class SimpleSearchConditionOperator: class Gathering (line 24) | class Gathering(common.Structure): method __init__ (line 25) | def __init__(self): method check_required (line 38) | def check_required(self, settings, version): method load (line 41) | def load(self, stream, version): method save (line 53) | def save(self, stream, version): class GatheringURLs (line 67) | class GatheringURLs(common.Structure): method __init__ (line 68) | def __init__(self): method check_required (line 73) | def check_required(self, settings, version): method load (line 78) | def load(self, stream, version): method save (line 82) | def save(self, stream, version): class GatheringStats (line 88) | class GatheringStats(common.Structure): method __init__ (line 89) | def __init__(self): method check_required (line 95) | def check_required(self, settings, version): method load (line 100) | def load(self, stream, version): method save (line 105) | def save(self, stream, version): class Invitation (line 112) | class Invitation(common.Structure): method __init__ (line 113) | def __init__(self): method check_required (line 119) | def check_required(self, settings, version): method load (line 124) | def load(self, stream, version): method save (line 129) | def save(self, stream, version): class ParticipantDetails (line 136) | class ParticipantDetails(common.Structure): method __init__ (line 137) | def __init__(self): method check_required (line 144) | def check_required(self, settings, version): method load (line 149) | def load(self, stream, version): method save (line 155) | def save(self, stream, version): class DeletionEntry (line 163) | class DeletionEntry(common.Structure): method __init__ (line 164) | def __init__(self): method check_required (line 170) | def check_required(self, settings, version): method load (line 175) | def load(self, stream, version): method save (line 180) | def save(self, stream, version): class MatchmakeParam (line 187) | class MatchmakeParam(common.Structure): method __init__ (line 188) | def __init__(self): method check_required (line 192) | def check_required(self, settings, version): method load (line 195) | def load(self, stream, version): method save (line 198) | def save(self, stream, version): class MatchmakeSessionSearchCriteria (line 203) | class MatchmakeSessionSearchCriteria(common.Structure): method __init__ (line 204) | def __init__(self): method check_required (line 223) | def check_required(self, settings, version): method load (line 229) | def load(self, stream, version): method save (line 249) | def save(self, stream, version): class MatchmakeSession (line 271) | class MatchmakeSession(Gathering): method __init__ (line 272) | def __init__(self): method max_version (line 291) | def max_version(self, settings): method check_required (line 302) | def check_required(self, settings, version): method load (line 322) | def load(self, stream, version): method save (line 360) | def save(self, stream, version): class MatchmakeBlockListParam (line 401) | class MatchmakeBlockListParam(common.Structure): method __init__ (line 402) | def __init__(self): method check_required (line 406) | def check_required(self, settings, version): method load (line 409) | def load(self, stream, version): method save (line 412) | def save(self, stream, version): class CreateMatchmakeSessionParam (line 417) | class CreateMatchmakeSessionParam(common.Structure): method __init__ (line 418) | def __init__(self): method check_required (line 427) | def check_required(self, settings, version): method load (line 432) | def load(self, stream, version): method save (line 440) | def save(self, stream, version): class JoinMatchmakeSessionParam (line 450) | class JoinMatchmakeSessionParam(common.Structure): method __init__ (line 451) | def __init__(self): method check_required (line 465) | def check_required(self, settings, version): method load (line 470) | def load(self, stream, version): method save (line 483) | def save(self, stream, version): class UpdateMatchmakeSessionParam (line 498) | class UpdateMatchmakeSessionParam(common.Structure): method __init__ (line 499) | def __init__(self): method check_required (line 519) | def check_required(self, settings, version): method load (line 524) | def load(self, stream, version): method save (line 543) | def save(self, stream, version): class AutoMatchmakeParam (line 564) | class AutoMatchmakeParam(common.Structure): method __init__ (line 565) | def __init__(self): method check_required (line 577) | def check_required(self, settings, version): method load (line 582) | def load(self, stream, version): method save (line 593) | def save(self, stream, version): class FindMatchmakeSessionByParticipantParam (line 606) | class FindMatchmakeSessionByParticipantParam(common.Structure): method __init__ (line 607) | def __init__(self): method check_required (line 613) | def check_required(self, settings, version): method load (line 618) | def load(self, stream, version): method save (line 623) | def save(self, stream, version): class FindMatchmakeSessionByParticipantResult (line 630) | class FindMatchmakeSessionByParticipantResult(common.Structure): method __init__ (line 631) | def __init__(self): method check_required (line 636) | def check_required(self, settings, version): method load (line 641) | def load(self, stream, version): method save (line 645) | def save(self, stream, version): class PersistentGathering (line 651) | class PersistentGathering(Gathering): method __init__ (line 652) | def __init__(self): method check_required (line 663) | def check_required(self, settings, version): method load (line 668) | def load(self, stream, version): method save (line 678) | def save(self, stream, version): class SimpleCommunity (line 691) | class SimpleCommunity(common.Structure): method __init__ (line 692) | def __init__(self): method check_required (line 697) | def check_required(self, settings, version): method load (line 702) | def load(self, stream, version): method save (line 706) | def save(self, stream, version): class PlayingSession (line 712) | class PlayingSession(common.Structure): method __init__ (line 713) | def __init__(self): method check_required (line 718) | def check_required(self, settings, version): method load (line 723) | def load(self, stream, version): method save (line 727) | def save(self, stream, version): class SimplePlayingSession (line 733) | class SimplePlayingSession(common.Structure): method __init__ (line 734) | def __init__(self): method check_required (line 741) | def check_required(self, settings, version): method load (line 746) | def load(self, stream, version): method save (line 752) | def save(self, stream, version): class MatchmakeRefereeRound (line 760) | class MatchmakeRefereeRound(common.Structure): method __init__ (line 761) | def __init__(self): method check_required (line 769) | def check_required(self, settings, version): method load (line 774) | def load(self, stream, version): method save (line 781) | def save(self, stream, version): class MatchmakeRefereeStartRoundParam (line 790) | class MatchmakeRefereeStartRoundParam(common.Structure): method __init__ (line 791) | def __init__(self): method check_required (line 797) | def check_required(self, settings, version): method load (line 802) | def load(self, stream, version): method save (line 807) | def save(self, stream, version): class MatchmakeRefereeEndRoundParam (line 814) | class MatchmakeRefereeEndRoundParam(common.Structure): method __init__ (line 815) | def __init__(self): method check_required (line 820) | def check_required(self, settings, version): method load (line 825) | def load(self, stream, version): method save (line 829) | def save(self, stream, version): class MatchmakeRefereePersonalRoundResult (line 835) | class MatchmakeRefereePersonalRoundResult(common.Structure): method __init__ (line 836) | def __init__(self): method check_required (line 844) | def check_required(self, settings, version): method load (line 849) | def load(self, stream, version): method save (line 856) | def save(self, stream, version): class MatchmakeRefereeStats (line 865) | class MatchmakeRefereeStats(common.Structure): method __init__ (line 866) | def __init__(self): method check_required (line 885) | def check_required(self, settings, version): method load (line 890) | def load(self, stream, version): method save (line 908) | def save(self, stream, version): class MatchmakeRefereeStatsTarget (line 928) | class MatchmakeRefereeStatsTarget(common.Structure): method __init__ (line 929) | def __init__(self): method check_required (line 934) | def check_required(self, settings, version): method load (line 939) | def load(self, stream, version): method save (line 943) | def save(self, stream, version): class MatchmakeRefereeStatsInitParam (line 949) | class MatchmakeRefereeStatsInitParam(common.Structure): method __init__ (line 950) | def __init__(self): method check_required (line 955) | def check_required(self, settings, version): method load (line 960) | def load(self, stream, version): method save (line 964) | def save(self, stream, version): class SimpleSearchObject (line 970) | class SimpleSearchObject(common.Structure): method __init__ (line 971) | def __init__(self): method max_version (line 983) | def max_version(self, settings): method check_required (line 989) | def check_required(self, settings, version): method load (line 999) | def load(self, stream, version): method save (line 1012) | def save(self, stream, version): class SimpleSearchDateTimeAttribute (line 1027) | class SimpleSearchDateTimeAttribute(common.Structure): method __init__ (line 1028) | def __init__(self): method check_required (line 1037) | def check_required(self, settings, version): method load (line 1042) | def load(self, stream, version): method save (line 1050) | def save(self, stream, version): class SimpleSearchParam (line 1060) | class SimpleSearchParam(common.Structure): method __init__ (line 1061) | def __init__(self): method check_required (line 1070) | def check_required(self, settings, version): method load (line 1073) | def load(self, stream, version): method save (line 1081) | def save(self, stream, version): class SimpleSearchCondition (line 1091) | class SimpleSearchCondition(common.Structure): method __init__ (line 1092) | def __init__(self): method check_required (line 1097) | def check_required(self, settings, version): method load (line 1102) | def load(self, stream, version): method save (line 1106) | def save(self, stream, version): class MatchMakingProtocol (line 1112) | class MatchMakingProtocol: class MatchMakingProtocolExt (line 1161) | class MatchMakingProtocolExt: class MatchmakeRefereeProtocol (line 1172) | class MatchmakeRefereeProtocol: class MatchmakeExtensionProtocolMK8D (line 1190) | class MatchmakeExtensionProtocolMK8D: class MatchMakingClient (line 1262) | class MatchMakingClient(MatchMakingProtocol): method __init__ (line 1263) | def __init__(self, client): method register_gathering (line 1267) | async def register_gathering(self, gathering): method unregister_gathering (line 1282) | async def unregister_gathering(self, gid): method unregister_gatherings (line 1297) | async def unregister_gatherings(self, gids): method update_gathering (line 1312) | async def update_gathering(self, gathering): method invite (line 1327) | async def invite(self, gid, pids, message): method accept_invitation (line 1344) | async def accept_invitation(self, gid, message): method decline_invitation (line 1360) | async def decline_invitation(self, gid, message): method cancel_invitation (line 1376) | async def cancel_invitation(self, gid, pids, message): method get_invitations_sent (line 1393) | async def get_invitations_sent(self, gid): method get_invitations_received (line 1408) | async def get_invitations_received(self): method participate (line 1422) | async def participate(self, gid, message): method cancel_participation (line 1438) | async def cancel_participation(self, gid, message): method get_participants (line 1454) | async def get_participants(self, gid): method add_participants (line 1469) | async def add_participants(self, gid, pids, message): method get_detailed_participants (line 1486) | async def get_detailed_participants(self, gid): method get_participants_urls (line 1501) | async def get_participants_urls(self, gid): method find_by_type (line 1516) | async def find_by_type(self, type, range): method find_by_description (line 1532) | async def find_by_description(self, description, range): method find_by_description_regex (line 1548) | async def find_by_description_regex(self, regex, range): method find_by_id (line 1564) | async def find_by_id(self, ids): method find_by_single_id (line 1579) | async def find_by_single_id(self, gid): method find_by_owner (line 1596) | async def find_by_owner(self, owner, range): method find_by_participants (line 1612) | async def find_by_participants(self, pids): method find_invitations (line 1627) | async def find_invitations(self, range): method find_by_sql_query (line 1642) | async def find_by_sql_query(self, query, range): method launch_session (line 1658) | async def launch_session(self, gid, url): method update_session_url (line 1674) | async def update_session_url(self, gid, url): method get_session_url (line 1690) | async def get_session_url(self, gid): method get_state (line 1707) | async def get_state(self, gid): method set_state (line 1724) | async def set_state(self, gid, state): method report_stats (line 1740) | async def report_stats(self, gid, stats): method get_stats (line 1756) | async def get_stats(self, gid, pids, columns): method delete_gathering (line 1775) | async def delete_gathering(self, gid): method get_pending_deletions (line 1790) | async def get_pending_deletions(self, reason, range): method delete_from_deletions (line 1808) | async def delete_from_deletions(self, deletions): method migrate_gathering_ownership_v1 (line 1823) | async def migrate_gathering_ownership_v1(self, gid, potential_owners): method find_by_description_like (line 1839) | async def find_by_description_like(self, description, range): method register_local_url (line 1855) | async def register_local_url(self, gid, url): method register_local_urls (line 1869) | async def register_local_urls(self, gid, urls): method update_session_host_v1 (line 1883) | async def update_session_host_v1(self, gid): method get_session_urls (line 1896) | async def get_session_urls(self, gid): method update_session_host (line 1911) | async def update_session_host(self, gid, is_migrate_owner): method update_gathering_ownership (line 1925) | async def update_gathering_ownership(self, gid, participants_only): method migrate_gathering_ownership (line 1941) | async def migrate_gathering_ownership(self, gid, potential_owners, par... class MatchMakingClientExt (line 1957) | class MatchMakingClientExt(MatchMakingProtocolExt): method __init__ (line 1958) | def __init__(self, client): method end_participation (line 1962) | async def end_participation(self, gid, message): method get_participants (line 1978) | async def get_participants(self, gid, only_active): method get_detailed_participants (line 1994) | async def get_detailed_participants(self, gid, only_active): method get_participants_urls (line 2010) | async def get_participants_urls(self, gids): method get_gathering_relations (line 2025) | async def get_gathering_relations(self, id, descr): method delete_from_deletions (line 2041) | async def delete_from_deletions(self, deletions, pid): class MatchmakeRefereeClient (line 2056) | class MatchmakeRefereeClient(MatchmakeRefereeProtocol): method __init__ (line 2057) | def __init__(self, client): method start_round (line 2061) | async def start_round(self, param): method get_start_round_param (line 2076) | async def get_start_round_param(self, round_id): method end_round (line 2091) | async def end_round(self, param): method end_round_without_report (line 2104) | async def end_round_without_report(self, round_id): method get_round_participants (line 2117) | async def get_round_participants(self, round_id): method get_not_summarized_round (line 2132) | async def get_not_summarized_round(self): method get_round (line 2146) | async def get_round(self, round): method get_stats_primary (line 2161) | async def get_stats_primary(self, target): method get_stats_primaries (line 2176) | async def get_stats_primaries(self, targets): method get_stats_all (line 2193) | async def get_stats_all(self, target): method create_stats (line 2208) | async def create_stats(self, param): method get_or_create_stats (line 2223) | async def get_or_create_stats(self, param): method reset_stats (line 2238) | async def reset_stats(self): class MatchmakeExtensionClientMK8D (line 2251) | class MatchmakeExtensionClientMK8D(MatchmakeExtensionProtocolMK8D): method __init__ (line 2252) | def __init__(self, client): method close_participation (line 2256) | async def close_participation(self, gid): method open_participation (line 2269) | async def open_participation(self, gid): method auto_matchmake_postpone (line 2282) | async def auto_matchmake_postpone(self, gathering, message): method browse_matchmake_session (line 2298) | async def browse_matchmake_session(self, search_criteria, range): method browse_matchmake_session_with_host_urls (line 2314) | async def browse_matchmake_session_with_host_urls(self, search_criteri... method create_matchmake_session (line 2332) | async def create_matchmake_session(self, gathering, description, num_p... method join_matchmake_session (line 2351) | async def join_matchmake_session(self, gid, message): method modify_current_game_attribute (line 2367) | async def modify_current_game_attribute(self, gid, attrib, value): method update_notification_data (line 2382) | async def update_notification_data(self, type, param1, param2, param3): method get_friend_notification_data (line 2398) | async def get_friend_notification_data(self, type): method update_application_buffer (line 2413) | async def update_application_buffer(self, gid, buffer): method update_matchmake_session_attribute (line 2427) | async def update_matchmake_session_attribute(self, gid, attribs): method get_friend_notification_data_list (line 2441) | async def get_friend_notification_data_list(self, types): method update_matchmake_session (line 2456) | async def update_matchmake_session(self, gathering): method auto_matchmake_with_search_criteria_postpone (line 2469) | async def auto_matchmake_with_search_criteria_postpone(self, search_cr... method get_playing_session (line 2486) | async def get_playing_session(self, pids): method create_community (line 2501) | async def create_community(self, community, message): method update_community (line 2517) | async def update_community(self, community): method join_community (line 2530) | async def join_community(self, gid, message, password): method find_community_by_gathering_id (line 2545) | async def find_community_by_gathering_id(self, gids): method find_official_community (line 2560) | async def find_official_community(self, available_only, range): method find_community_by_participant (line 2576) | async def find_community_by_participant(self, pid, range): method update_privacy_setting (line 2592) | async def update_privacy_setting(self, online_status, community_partic... method get_my_block_list (line 2606) | async def get_my_block_list(self): method add_to_block_list (line 2620) | async def add_to_block_list(self, pids): method remove_from_block_list (line 2633) | async def remove_from_block_list(self, pids): method clear_my_block_list (line 2646) | async def clear_my_block_list(self): method report_violation (line 2658) | async def report_violation(self, pid, username, violation_code): method is_violation_user (line 2673) | async def is_violation_user(self): method join_matchmake_session_ex (line 2689) | async def join_matchmake_session_ex(self, gid, gmessage, ignore_block_... method get_simple_playing_session (line 2707) | async def get_simple_playing_session(self, pids, include_login_user): method get_simple_community (line 2723) | async def get_simple_community(self, gids): method auto_matchmake_with_gathering_id_postpone (line 2738) | async def auto_matchmake_with_gathering_id_postpone(self, gids, gather... method update_progress_score (line 2755) | async def update_progress_score(self, gid, score): method debug_notify_event (line 2769) | async def debug_notify_event(self, pid, main_type, sub_type, param1, p... method generate_matchmake_session_system_password (line 2787) | async def generate_matchmake_session_system_password(self, gid): method clear_matchmake_session_system_password (line 2802) | async def clear_matchmake_session_system_password(self, gid): method create_matchmake_session_with_param (line 2815) | async def create_matchmake_session_with_param(self, param): method join_matchmake_session_with_param (line 2830) | async def join_matchmake_session_with_param(self, param): method auto_matchmake_with_param_postpone (line 2845) | async def auto_matchmake_with_param_postpone(self, param): method find_matchmake_session_by_gathering_id_detail (line 2860) | async def find_matchmake_session_by_gathering_id_detail(self, gid): method browse_matchmake_session_no_holder (line 2875) | async def browse_matchmake_session_no_holder(self, search_criteria, ra... method browse_matchmake_session_with_host_urls_no_holder (line 2891) | async def browse_matchmake_session_with_host_urls_no_holder(self, sear... method update_matchmake_session_part (line 2909) | async def update_matchmake_session_part(self, param): method request_matchmaking (line 2922) | async def request_matchmaking(self, param): method withdraw_matchmaking (line 2937) | async def withdraw_matchmaking(self, request_id): method withdraw_matchmaking_all (line 2950) | async def withdraw_matchmaking_all(self): method find_matchmake_session_by_gathering_id (line 2962) | async def find_matchmake_session_by_gathering_id(self, gids): method find_matchmake_session_by_single_gathering_id (line 2977) | async def find_matchmake_session_by_single_gathering_id(self, gid): method find_matchmake_session_by_owner (line 2992) | async def find_matchmake_session_by_owner(self, pid, range): method find_matchmake_session_by_participant (line 3008) | async def find_matchmake_session_by_participant(self, param): method browse_matchmake_session_no_holder_no_result_range (line 3023) | async def browse_matchmake_session_no_holder_no_result_range(self, sea... method browse_matchmake_session_with_host_urls_no_holder_no_result_range (line 3038) | async def browse_matchmake_session_with_host_urls_no_holder_no_result_... method create_simple_search_object (line 3055) | async def create_simple_search_object(self, object): method update_simple_search_object (line 3070) | async def update_simple_search_object(self, id, object): method delete_simple_search_object (line 3084) | async def delete_simple_search_object(self, id): method search_simple_search_object (line 3097) | async def search_simple_search_object(self, param): method search_simple_search_object_by_object_ids (line 3112) | async def search_simple_search_object_by_object_ids(self, ids): method join_matchmake_session_with_extra_participants (line 3127) | async def join_matchmake_session_with_extra_participants(self, gid, jo... method create_competition (line 3146) | async def create_competition(self, competition): method delete_competition (line 3161) | async def delete_competition(self, id): method register_favorite_competition (line 3174) | async def register_favorite_competition(self, id): method unregister_favorite_competition (line 3187) | async def unregister_favorite_competition(self, id): method get_favorite_competition (line 3200) | async def get_favorite_competition(self): class MatchMakingServer (line 3215) | class MatchMakingServer(MatchMakingProtocol): method __init__ (line 3216) | def __init__(self): method logout (line 3264) | async def logout(self, client): method handle (line 3267) | async def handle(self, client, method_id, input, output): method handle_register_gathering (line 3274) | async def handle_register_gathering(self, client, input, output): method handle_unregister_gathering (line 3285) | async def handle_unregister_gathering(self, client, input, output): method handle_unregister_gatherings (line 3296) | async def handle_unregister_gatherings(self, client, input, output): method handle_update_gathering (line 3307) | async def handle_update_gathering(self, client, input, output): method handle_invite (line 3318) | async def handle_invite(self, client, input, output): method handle_accept_invitation (line 3331) | async def handle_accept_invitation(self, client, input, output): method handle_decline_invitation (line 3343) | async def handle_decline_invitation(self, client, input, output): method handle_cancel_invitation (line 3355) | async def handle_cancel_invitation(self, client, input, output): method handle_get_invitations_sent (line 3368) | async def handle_get_invitations_sent(self, client, input, output): method handle_get_invitations_received (line 3379) | async def handle_get_invitations_received(self, client, input, output): method handle_participate (line 3389) | async def handle_participate(self, client, input, output): method handle_cancel_participation (line 3401) | async def handle_cancel_participation(self, client, input, output): method handle_get_participants (line 3413) | async def handle_get_participants(self, client, input, output): method handle_add_participants (line 3424) | async def handle_add_participants(self, client, input, output): method handle_get_detailed_participants (line 3437) | async def handle_get_detailed_participants(self, client, input, output): method handle_get_participants_urls (line 3448) | async def handle_get_participants_urls(self, client, input, output): method handle_find_by_type (line 3459) | async def handle_find_by_type(self, client, input, output): method handle_find_by_description (line 3471) | async def handle_find_by_description(self, client, input, output): method handle_find_by_description_regex (line 3483) | async def handle_find_by_description_regex(self, client, input, output): method handle_find_by_id (line 3495) | async def handle_find_by_id(self, client, input, output): method handle_find_by_single_id (line 3506) | async def handle_find_by_single_id(self, client, input, output): method handle_find_by_owner (line 3521) | async def handle_find_by_owner(self, client, input, output): method handle_find_by_participants (line 3533) | async def handle_find_by_participants(self, client, input, output): method handle_find_invitations (line 3544) | async def handle_find_invitations(self, client, input, output): method handle_find_by_sql_query (line 3555) | async def handle_find_by_sql_query(self, client, input, output): method handle_launch_session (line 3567) | async def handle_launch_session(self, client, input, output): method handle_update_session_url (line 3579) | async def handle_update_session_url(self, client, input, output): method handle_get_session_url (line 3591) | async def handle_get_session_url(self, client, input, output): method handle_get_state (line 3606) | async def handle_get_state(self, client, input, output): method handle_set_state (line 3621) | async def handle_set_state(self, client, input, output): method handle_report_stats (line 3633) | async def handle_report_stats(self, client, input, output): method handle_get_stats (line 3645) | async def handle_get_stats(self, client, input, output): method handle_delete_gathering (line 3662) | async def handle_delete_gathering(self, client, input, output): method handle_get_pending_deletions (line 3673) | async def handle_get_pending_deletions(self, client, input, output): method handle_delete_from_deletions (line 3689) | async def handle_delete_from_deletions(self, client, input, output): method handle_migrate_gathering_ownership_v1 (line 3700) | async def handle_migrate_gathering_ownership_v1(self, client, input, o... method handle_find_by_description_like (line 3712) | async def handle_find_by_description_like(self, client, input, output): method handle_register_local_url (line 3724) | async def handle_register_local_url(self, client, input, output): method handle_register_local_urls (line 3731) | async def handle_register_local_urls(self, client, input, output): method handle_update_session_host_v1 (line 3738) | async def handle_update_session_host_v1(self, client, input, output): method handle_get_session_urls (line 3744) | async def handle_get_session_urls(self, client, input, output): method handle_update_session_host (line 3755) | async def handle_update_session_host(self, client, input, output): method handle_update_gathering_ownership (line 3762) | async def handle_update_gathering_ownership(self, client, input, output): method handle_migrate_gathering_ownership (line 3774) | async def handle_migrate_gathering_ownership(self, client, input, outp... method register_gathering (line 3782) | async def register_gathering(self, *args): method unregister_gathering (line 3786) | async def unregister_gathering(self, *args): method unregister_gatherings (line 3790) | async def unregister_gatherings(self, *args): method update_gathering (line 3794) | async def update_gathering(self, *args): method invite (line 3798) | async def invite(self, *args): method accept_invitation (line 3802) | async def accept_invitation(self, *args): method decline_invitation (line 3806) | async def decline_invitation(self, *args): method cancel_invitation (line 3810) | async def cancel_invitation(self, *args): method get_invitations_sent (line 3814) | async def get_invitations_sent(self, *args): method get_invitations_received (line 3818) | async def get_invitations_received(self, *args): method participate (line 3822) | async def participate(self, *args): method cancel_participation (line 3826) | async def cancel_participation(self, *args): method get_participants (line 3830) | async def get_participants(self, *args): method add_participants (line 3834) | async def add_participants(self, *args): method get_detailed_participants (line 3838) | async def get_detailed_participants(self, *args): method get_participants_urls (line 3842) | async def get_participants_urls(self, *args): method find_by_type (line 3846) | async def find_by_type(self, *args): method find_by_description (line 3850) | async def find_by_description(self, *args): method find_by_description_regex (line 3854) | async def find_by_description_regex(self, *args): method find_by_id (line 3858) | async def find_by_id(self, *args): method find_by_single_id (line 3862) | async def find_by_single_id(self, *args): method find_by_owner (line 3866) | async def find_by_owner(self, *args): method find_by_participants (line 3870) | async def find_by_participants(self, *args): method find_invitations (line 3874) | async def find_invitations(self, *args): method find_by_sql_query (line 3878) | async def find_by_sql_query(self, *args): method launch_session (line 3882) | async def launch_session(self, *args): method update_session_url (line 3886) | async def update_session_url(self, *args): method get_session_url (line 3890) | async def get_session_url(self, *args): method get_state (line 3894) | async def get_state(self, *args): method set_state (line 3898) | async def set_state(self, *args): method report_stats (line 3902) | async def report_stats(self, *args): method get_stats (line 3906) | async def get_stats(self, *args): method delete_gathering (line 3910) | async def delete_gathering(self, *args): method get_pending_deletions (line 3914) | async def get_pending_deletions(self, *args): method delete_from_deletions (line 3918) | async def delete_from_deletions(self, *args): method migrate_gathering_ownership_v1 (line 3922) | async def migrate_gathering_ownership_v1(self, *args): method find_by_description_like (line 3926) | async def find_by_description_like(self, *args): method register_local_url (line 3930) | async def register_local_url(self, *args): method register_local_urls (line 3934) | async def register_local_urls(self, *args): method update_session_host_v1 (line 3938) | async def update_session_host_v1(self, *args): method get_session_urls (line 3942) | async def get_session_urls(self, *args): method update_session_host (line 3946) | async def update_session_host(self, *args): method update_gathering_ownership (line 3950) | async def update_gathering_ownership(self, *args): method migrate_gathering_ownership (line 3954) | async def migrate_gathering_ownership(self, *args): class MatchMakingServerExt (line 3959) | class MatchMakingServerExt(MatchMakingProtocolExt): method __init__ (line 3960) | def __init__(self): method logout (line 3970) | async def logout(self, client): method handle (line 3973) | async def handle(self, client, method_id, input, output): method handle_end_participation (line 3980) | async def handle_end_participation(self, client, input, output): method handle_get_participants (line 3992) | async def handle_get_participants(self, client, input, output): method handle_get_detailed_participants (line 4004) | async def handle_get_detailed_participants(self, client, input, output): method handle_get_participants_urls (line 4016) | async def handle_get_participants_urls(self, client, input, output): method handle_get_gathering_relations (line 4027) | async def handle_get_gathering_relations(self, client, input, output): method handle_delete_from_deletions (line 4039) | async def handle_delete_from_deletions(self, client, input, output): method end_participation (line 4046) | async def end_participation(self, *args): method get_participants (line 4050) | async def get_participants(self, *args): method get_detailed_participants (line 4054) | async def get_detailed_participants(self, *args): method get_participants_urls (line 4058) | async def get_participants_urls(self, *args): method get_gathering_relations (line 4062) | async def get_gathering_relations(self, *args): method delete_from_deletions (line 4066) | async def delete_from_deletions(self, *args): class MatchmakeRefereeServer (line 4071) | class MatchmakeRefereeServer(MatchmakeRefereeProtocol): method __init__ (line 4072) | def __init__(self): method logout (line 4089) | async def logout(self, client): method handle (line 4092) | async def handle(self, client, method_id, input, output): method handle_start_round (line 4099) | async def handle_start_round(self, client, input, output): method handle_get_start_round_param (line 4110) | async def handle_get_start_round_param(self, client, input, output): method handle_end_round (line 4121) | async def handle_end_round(self, client, input, output): method handle_end_round_without_report (line 4127) | async def handle_end_round_without_report(self, client, input, output): method handle_get_round_participants (line 4133) | async def handle_get_round_participants(self, client, input, output): method handle_get_not_summarized_round (line 4144) | async def handle_get_not_summarized_round(self, client, input, output): method handle_get_round (line 4154) | async def handle_get_round(self, client, input, output): method handle_get_stats_primary (line 4165) | async def handle_get_stats_primary(self, client, input, output): method handle_get_stats_primaries (line 4176) | async def handle_get_stats_primaries(self, client, input, output): method handle_get_stats_all (line 4191) | async def handle_get_stats_all(self, client, input, output): method handle_create_stats (line 4202) | async def handle_create_stats(self, client, input, output): method handle_get_or_create_stats (line 4213) | async def handle_get_or_create_stats(self, client, input, output): method handle_reset_stats (line 4224) | async def handle_reset_stats(self, client, input, output): method start_round (line 4229) | async def start_round(self, *args): method get_start_round_param (line 4233) | async def get_start_round_param(self, *args): method end_round (line 4237) | async def end_round(self, *args): method end_round_without_report (line 4241) | async def end_round_without_report(self, *args): method get_round_participants (line 4245) | async def get_round_participants(self, *args): method get_not_summarized_round (line 4249) | async def get_not_summarized_round(self, *args): method get_round (line 4253) | async def get_round(self, *args): method get_stats_primary (line 4257) | async def get_stats_primary(self, *args): method get_stats_primaries (line 4261) | async def get_stats_primaries(self, *args): method get_stats_all (line 4265) | async def get_stats_all(self, *args): method create_stats (line 4269) | async def create_stats(self, *args): method get_or_create_stats (line 4273) | async def get_or_create_stats(self, *args): method reset_stats (line 4277) | async def reset_stats(self, *args): class MatchmakeExtensionServerMK8D (line 4282) | class MatchmakeExtensionServerMK8D(MatchmakeExtensionProtocolMK8D): method __init__ (line 4283) | def __init__(self): method logout (line 4354) | async def logout(self, client): method handle (line 4357) | async def handle(self, client, method_id, input, output): method handle_close_participation (line 4364) | async def handle_close_participation(self, client, input, output): method handle_open_participation (line 4370) | async def handle_open_participation(self, client, input, output): method handle_auto_matchmake_postpone (line 4376) | async def handle_auto_matchmake_postpone(self, client, input, output): method handle_browse_matchmake_session (line 4388) | async def handle_browse_matchmake_session(self, client, input, output): method handle_browse_matchmake_session_with_host_urls (line 4400) | async def handle_browse_matchmake_session_with_host_urls(self, client,... method handle_create_matchmake_session (line 4416) | async def handle_create_matchmake_session(self, client, input, output): method handle_join_matchmake_session (line 4433) | async def handle_join_matchmake_session(self, client, input, output): method handle_modify_current_game_attribute (line 4445) | async def handle_modify_current_game_attribute(self, client, input, ou... method handle_update_notification_data (line 4453) | async def handle_update_notification_data(self, client, input, output): method handle_get_friend_notification_data (line 4462) | async def handle_get_friend_notification_data(self, client, input, out... method handle_update_application_buffer (line 4473) | async def handle_update_application_buffer(self, client, input, output): method handle_update_matchmake_session_attribute (line 4480) | async def handle_update_matchmake_session_attribute(self, client, inpu... method handle_get_friend_notification_data_list (line 4487) | async def handle_get_friend_notification_data_list(self, client, input... method handle_update_matchmake_session (line 4498) | async def handle_update_matchmake_session(self, client, input, output): method handle_auto_matchmake_with_search_criteria_postpone (line 4504) | async def handle_auto_matchmake_with_search_criteria_postpone(self, cl... method handle_get_playing_session (line 4517) | async def handle_get_playing_session(self, client, input, output): method handle_create_community (line 4528) | async def handle_create_community(self, client, input, output): method handle_update_community (line 4540) | async def handle_update_community(self, client, input, output): method handle_join_community (line 4546) | async def handle_join_community(self, client, input, output): method handle_find_community_by_gathering_id (line 4554) | async def handle_find_community_by_gathering_id(self, client, input, o... method handle_find_official_community (line 4565) | async def handle_find_official_community(self, client, input, output): method handle_find_community_by_participant (line 4577) | async def handle_find_community_by_participant(self, client, input, ou... method handle_update_privacy_setting (line 4589) | async def handle_update_privacy_setting(self, client, input, output): method handle_get_my_block_list (line 4596) | async def handle_get_my_block_list(self, client, input, output): method handle_add_to_block_list (line 4606) | async def handle_add_to_block_list(self, client, input, output): method handle_remove_from_block_list (line 4612) | async def handle_remove_from_block_list(self, client, input, output): method handle_clear_my_block_list (line 4618) | async def handle_clear_my_block_list(self, client, input, output): method handle_report_violation (line 4623) | async def handle_report_violation(self, client, input, output): method handle_is_violation_user (line 4631) | async def handle_is_violation_user(self, client, input, output): method handle_join_matchmake_session_ex (line 4645) | async def handle_join_matchmake_session_ex(self, client, input, output): method handle_get_simple_playing_session (line 4659) | async def handle_get_simple_playing_session(self, client, input, output): method handle_get_simple_community (line 4671) | async def handle_get_simple_community(self, client, input, output): method handle_auto_matchmake_with_gathering_id_postpone (line 4682) | async def handle_auto_matchmake_with_gathering_id_postpone(self, clien... method handle_update_progress_score (line 4695) | async def handle_update_progress_score(self, client, input, output): method handle_debug_notify_event (line 4702) | async def handle_debug_notify_event(self, client, input, output): method handle_generate_matchmake_session_system_password (line 4713) | async def handle_generate_matchmake_session_system_password(self, clie... method handle_clear_matchmake_session_system_password (line 4724) | async def handle_clear_matchmake_session_system_password(self, client,... method handle_create_matchmake_session_with_param (line 4730) | async def handle_create_matchmake_session_with_param(self, client, inp... method handle_join_matchmake_session_with_param (line 4741) | async def handle_join_matchmake_session_with_param(self, client, input... method handle_auto_matchmake_with_param_postpone (line 4752) | async def handle_auto_matchmake_with_param_postpone(self, client, inpu... method handle_find_matchmake_session_by_gathering_id_detail (line 4763) | async def handle_find_matchmake_session_by_gathering_id_detail(self, c... method handle_browse_matchmake_session_no_holder (line 4774) | async def handle_browse_matchmake_session_no_holder(self, client, inpu... method handle_browse_matchmake_session_with_host_urls_no_holder (line 4786) | async def handle_browse_matchmake_session_with_host_urls_no_holder(sel... method handle_update_matchmake_session_part (line 4802) | async def handle_update_matchmake_session_part(self, client, input, ou... method handle_request_matchmaking (line 4808) | async def handle_request_matchmaking(self, client, input, output): method handle_withdraw_matchmaking (line 4819) | async def handle_withdraw_matchmaking(self, client, input, output): method handle_withdraw_matchmaking_all (line 4825) | async def handle_withdraw_matchmaking_all(self, client, input, output): method handle_find_matchmake_session_by_gathering_id (line 4830) | async def handle_find_matchmake_session_by_gathering_id(self, client, ... method handle_find_matchmake_session_by_single_gathering_id (line 4841) | async def handle_find_matchmake_session_by_single_gathering_id(self, c... method handle_find_matchmake_session_by_owner (line 4852) | async def handle_find_matchmake_session_by_owner(self, client, input, ... method handle_find_matchmake_session_by_participant (line 4864) | async def handle_find_matchmake_session_by_participant(self, client, i... method handle_browse_matchmake_session_no_holder_no_result_range (line 4875) | async def handle_browse_matchmake_session_no_holder_no_result_range(se... method handle_browse_matchmake_session_with_host_urls_no_holder_no_result_range (line 4886) | async def handle_browse_matchmake_session_with_host_urls_no_holder_no_... method handle_create_simple_search_object (line 4901) | async def handle_create_simple_search_object(self, client, input, outp... method handle_update_simple_search_object (line 4912) | async def handle_update_simple_search_object(self, client, input, outp... method handle_delete_simple_search_object (line 4919) | async def handle_delete_simple_search_object(self, client, input, outp... method handle_search_simple_search_object (line 4925) | async def handle_search_simple_search_object(self, client, input, outp... method handle_search_simple_search_object_by_object_ids (line 4936) | async def handle_search_simple_search_object_by_object_ids(self, clien... method handle_join_matchmake_session_with_extra_participants (line 4947) | async def handle_join_matchmake_session_with_extra_participants(self, ... method handle_custom_get_simple_playing_session (line 4962) | async def handle_custom_get_simple_playing_session(self, client, input... method handle_create_competition (line 4966) | async def handle_create_competition(self, client, input, output): method handle_delete_competition (line 4977) | async def handle_delete_competition(self, client, input, output): method handle_register_favorite_competition (line 4983) | async def handle_register_favorite_competition(self, client, input, ou... method handle_unregister_favorite_competition (line 4989) | async def handle_unregister_favorite_competition(self, client, input, ... method handle_get_favorite_competition (line 4995) | async def handle_get_favorite_competition(self, client, input, output): method handle_get_team_participants (line 5005) | async def handle_get_team_participants(self, client, input, output): method handle_find_community_by_owner (line 5009) | async def handle_find_community_by_owner(self, client, input, output): method close_participation (line 5013) | async def close_participation(self, *args): method open_participation (line 5017) | async def open_participation(self, *args): method auto_matchmake_postpone (line 5021) | async def auto_matchmake_postpone(self, *args): method browse_matchmake_session (line 5025) | async def browse_matchmake_session(self, *args): method browse_matchmake_session_with_host_urls (line 5029) | async def browse_matchmake_session_with_host_urls(self, *args): method create_matchmake_session (line 5033) | async def create_matchmake_session(self, *args): method join_matchmake_session (line 5037) | async def join_matchmake_session(self, *args): method modify_current_game_attribute (line 5041) | async def modify_current_game_attribute(self, *args): method update_notification_data (line 5045) | async def update_notification_data(self, *args): method get_friend_notification_data (line 5049) | async def get_friend_notification_data(self, *args): method update_application_buffer (line 5053) | async def update_application_buffer(self, *args): method update_matchmake_session_attribute (line 5057) | async def update_matchmake_session_attribute(self, *args): method get_friend_notification_data_list (line 5061) | async def get_friend_notification_data_list(self, *args): method update_matchmake_session (line 5065) | async def update_matchmake_session(self, *args): method auto_matchmake_with_search_criteria_postpone (line 5069) | async def auto_matchmake_with_search_criteria_postpone(self, *args): method get_playing_session (line 5073) | async def get_playing_session(self, *args): method create_community (line 5077) | async def create_community(self, *args): method update_community (line 5081) | async def update_community(self, *args): method join_community (line 5085) | async def join_community(self, *args): method find_community_by_gathering_id (line 5089) | async def find_community_by_gathering_id(self, *args): method find_official_community (line 5093) | async def find_official_community(self, *args): method find_community_by_participant (line 5097) | async def find_community_by_participant(self, *args): method update_privacy_setting (line 5101) | async def update_privacy_setting(self, *args): method get_my_block_list (line 5105) | async def get_my_block_list(self, *args): method add_to_block_list (line 5109) | async def add_to_block_list(self, *args): method remove_from_block_list (line 5113) | async def remove_from_block_list(self, *args): method clear_my_block_list (line 5117) | async def clear_my_block_list(self, *args): method report_violation (line 5121) | async def report_violation(self, *args): method is_violation_user (line 5125) | async def is_violation_user(self, *args): method join_matchmake_session_ex (line 5129) | async def join_matchmake_session_ex(self, *args): method get_simple_playing_session (line 5133) | async def get_simple_playing_session(self, *args): method get_simple_community (line 5137) | async def get_simple_community(self, *args): method auto_matchmake_with_gathering_id_postpone (line 5141) | async def auto_matchmake_with_gathering_id_postpone(self, *args): method update_progress_score (line 5145) | async def update_progress_score(self, *args): method debug_notify_event (line 5149) | async def debug_notify_event(self, *args): method generate_matchmake_session_system_password (line 5153) | async def generate_matchmake_session_system_password(self, *args): method clear_matchmake_session_system_password (line 5157) | async def clear_matchmake_session_system_password(self, *args): method create_matchmake_session_with_param (line 5161) | async def create_matchmake_session_with_param(self, *args): method join_matchmake_session_with_param (line 5165) | async def join_matchmake_session_with_param(self, *args): method auto_matchmake_with_param_postpone (line 5169) | async def auto_matchmake_with_param_postpone(self, *args): method find_matchmake_session_by_gathering_id_detail (line 5173) | async def find_matchmake_session_by_gathering_id_detail(self, *args): method browse_matchmake_session_no_holder (line 5177) | async def browse_matchmake_session_no_holder(self, *args): method browse_matchmake_session_with_host_urls_no_holder (line 5181) | async def browse_matchmake_session_with_host_urls_no_holder(self, *args): method update_matchmake_session_part (line 5185) | async def update_matchmake_session_part(self, *args): method request_matchmaking (line 5189) | async def request_matchmaking(self, *args): method withdraw_matchmaking (line 5193) | async def withdraw_matchmaking(self, *args): method withdraw_matchmaking_all (line 5197) | async def withdraw_matchmaking_all(self, *args): method find_matchmake_session_by_gathering_id (line 5201) | async def find_matchmake_session_by_gathering_id(self, *args): method find_matchmake_session_by_single_gathering_id (line 5205) | async def find_matchmake_session_by_single_gathering_id(self, *args): method find_matchmake_session_by_owner (line 5209) | async def find_matchmake_session_by_owner(self, *args): method find_matchmake_session_by_participant (line 5213) | async def find_matchmake_session_by_participant(self, *args): method browse_matchmake_session_no_holder_no_result_range (line 5217) | async def browse_matchmake_session_no_holder_no_result_range(self, *ar... method browse_matchmake_session_with_host_urls_no_holder_no_result_range (line 5221) | async def browse_matchmake_session_with_host_urls_no_holder_no_result_... method create_simple_search_object (line 5225) | async def create_simple_search_object(self, *args): method update_simple_search_object (line 5229) | async def update_simple_search_object(self, *args): method delete_simple_search_object (line 5233) | async def delete_simple_search_object(self, *args): method search_simple_search_object (line 5237) | async def search_simple_search_object(self, *args): method search_simple_search_object_by_object_ids (line 5241) | async def search_simple_search_object_by_object_ids(self, *args): method join_matchmake_session_with_extra_participants (line 5245) | async def join_matchmake_session_with_extra_participants(self, *args): method create_competition (line 5249) | async def create_competition(self, *args): method delete_competition (line 5253) | async def delete_competition(self, *args): method register_favorite_competition (line 5257) | async def register_favorite_competition(self, *args): method unregister_favorite_competition (line 5261) | async def unregister_favorite_competition(self, *args): method get_favorite_competition (line 5265) | async def get_favorite_competition(self, *args): FILE: nintendo/nex/messaging.py class RecipientType (line 10) | class RecipientType: class MessageRecipient (line 15) | class MessageRecipient(common.Structure): method __init__ (line 16) | def __init__(self): method check_required (line 22) | def check_required(self, settings, version): method load (line 27) | def load(self, stream, version): method save (line 32) | def save(self, stream, version): class UserMessage (line 39) | class UserMessage(common.Data): method __init__ (line 40) | def __init__(self): method check_required (line 52) | def check_required(self, settings, version): method load (line 57) | def load(self, stream, version): method save (line 68) | def save(self, stream, version): class TextMessage (line 82) | class TextMessage(UserMessage): method __init__ (line 83) | def __init__(self): method check_required (line 87) | def check_required(self, settings, version): method load (line 92) | def load(self, stream, version): method save (line 95) | def save(self, stream, version): class BinaryMessage (line 101) | class BinaryMessage(UserMessage): method __init__ (line 102) | def __init__(self): method check_required (line 106) | def check_required(self, settings, version): method load (line 111) | def load(self, stream, version): method save (line 114) | def save(self, stream, version): class MessagingProtocol (line 120) | class MessagingProtocol: class MessageDeliveryProtocol (line 132) | class MessageDeliveryProtocol: class MessagingClient (line 140) | class MessagingClient(MessagingProtocol): method __init__ (line 141) | def __init__(self, client): method deliver_message (line 145) | async def deliver_message(self, message): method get_number_of_messages (line 163) | async def get_number_of_messages(self, recipient): method get_message_headers (line 178) | async def get_message_headers(self, recipient, range): method retrieve_all_messages_within_range (line 194) | async def retrieve_all_messages_within_range(self, recipient, range): method retrieve_messages (line 210) | async def retrieve_messages(self, recipient, message_ids, leave_on_ser... method delete_messages (line 227) | async def delete_messages(self, recipient, message_ids): method delete_all_messages (line 241) | async def delete_all_messages(self, recipient): class MessageDeliveryClient (line 257) | class MessageDeliveryClient(MessageDeliveryProtocol): method __init__ (line 258) | def __init__(self, client): method deliver_message (line 262) | async def deliver_message(self, message): class MessagingServer (line 270) | class MessagingServer(MessagingProtocol): method __init__ (line 271) | def __init__(self): method logout (line 282) | async def logout(self, client): method handle (line 285) | async def handle(self, client, method_id, input, output): method handle_deliver_message (line 292) | async def handle_deliver_message(self, client, input, output): method handle_get_number_of_messages (line 308) | async def handle_get_number_of_messages(self, client, input, output): method handle_get_message_headers (line 319) | async def handle_get_message_headers(self, client, input, output): method handle_retrieve_all_messages_within_range (line 331) | async def handle_retrieve_all_messages_within_range(self, client, inpu... method handle_retrieve_messages (line 343) | async def handle_retrieve_messages(self, client, input, output): method handle_delete_messages (line 356) | async def handle_delete_messages(self, client, input, output): method handle_delete_all_messages (line 363) | async def handle_delete_all_messages(self, client, input, output): method deliver_message (line 374) | async def deliver_message(self, *args): method get_number_of_messages (line 378) | async def get_number_of_messages(self, *args): method get_message_headers (line 382) | async def get_message_headers(self, *args): method retrieve_all_messages_within_range (line 386) | async def retrieve_all_messages_within_range(self, *args): method retrieve_messages (line 390) | async def retrieve_messages(self, *args): method delete_messages (line 394) | async def delete_messages(self, *args): method delete_all_messages (line 398) | async def delete_all_messages(self, *args): class MessageDeliveryServer (line 403) | class MessageDeliveryServer(MessageDeliveryProtocol): method __init__ (line 404) | def __init__(self): method logout (line 409) | async def logout(self, client): method handle (line 412) | async def handle(self, client, method_id, input, output): method handle_deliver_message (line 419) | async def handle_deliver_message(self, client, input, output): method deliver_message (line 425) | async def deliver_message(self, *args): FILE: nintendo/nex/monitoring.py class MonitoringProtocol (line 10) | class MonitoringProtocol: class MonitoringClient (line 17) | class MonitoringClient(MonitoringProtocol): method __init__ (line 18) | def __init__(self, client): method ping_daemon (line 22) | async def ping_daemon(self): method get_cluster_members (line 36) | async def get_cluster_members(self): class MonitoringServer (line 51) | class MonitoringServer(MonitoringProtocol): method __init__ (line 52) | def __init__(self): method logout (line 58) | async def logout(self, client): method handle (line 61) | async def handle(self, client, method_id, input, output): method handle_ping_daemon (line 68) | async def handle_ping_daemon(self, client, input, output): method handle_get_cluster_members (line 78) | async def handle_get_cluster_members(self, client, input, output): method ping_daemon (line 88) | async def ping_daemon(self, *args): method get_cluster_members (line 92) | async def get_cluster_members(self, *args): FILE: nintendo/nex/natcheck.py function detect_external_address (line 10) | async def detect_external_address(socket): FILE: nintendo/nex/nattraversal.py class NATTraversalProtocol (line 10) | class NATTraversalProtocol: class NATTraversalClient (line 22) | class NATTraversalClient(NATTraversalProtocol): method __init__ (line 23) | def __init__(self, client): method request_probe_initiation (line 27) | async def request_probe_initiation(self, target_urls): method initiate_probe (line 40) | async def initiate_probe(self, station_to_probe): method request_probe_initiation_ext (line 53) | async def request_probe_initiation_ext(self, target_urls, station_to_p... method report_nat_traversal_result (line 67) | async def report_nat_traversal_result(self, cid, result): method report_nat_properties (line 81) | async def report_nat_properties(self, natm, natf, rtt): method get_relay_signature_key (line 96) | async def get_relay_signature_key(self): method report_nat_traversal_result_detail (line 116) | async def report_nat_traversal_result_detail(self, cid, result, detail... class NATTraversalServer (line 133) | class NATTraversalServer(NATTraversalProtocol): method __init__ (line 134) | def __init__(self): method logout (line 145) | async def logout(self, client): method handle (line 148) | async def handle(self, client, method_id, input, output): method handle_request_probe_initiation (line 155) | async def handle_request_probe_initiation(self, client, input, output): method handle_initiate_probe (line 161) | async def handle_initiate_probe(self, client, input, output): method handle_request_probe_initiation_ext (line 167) | async def handle_request_probe_initiation_ext(self, client, input, out... method handle_report_nat_traversal_result (line 174) | async def handle_report_nat_traversal_result(self, client, input, outp... method handle_report_nat_properties (line 181) | async def handle_report_nat_properties(self, client, input, output): method handle_get_relay_signature_key (line 189) | async def handle_get_relay_signature_key(self, client, input, output): method handle_report_nat_traversal_result_detail (line 207) | async def handle_report_nat_traversal_result_detail(self, client, inpu... method request_probe_initiation (line 216) | async def request_probe_initiation(self, *args): method initiate_probe (line 220) | async def initiate_probe(self, *args): method request_probe_initiation_ext (line 224) | async def request_probe_initiation_ext(self, *args): method report_nat_traversal_result (line 228) | async def report_nat_traversal_result(self, *args): method report_nat_properties (line 232) | async def report_nat_properties(self, *args): method get_relay_signature_key (line 236) | async def get_relay_signature_key(self, *args): method report_nat_traversal_result_detail (line 240) | async def report_nat_traversal_result_detail(self, *args): FILE: nintendo/nex/nintendonotification.py class NintendoNotificationType (line 10) | class NintendoNotificationType: class u8KeyValue (line 18) | class u8KeyValue(common.Data): method __init__ (line 19) | def __init__(self): method check_required (line 24) | def check_required(self, settings, version): method load (line 29) | def load(self, stream, version): method save (line 33) | def save(self, stream, version): class u32KeyValue (line 40) | class u32KeyValue(common.Data): method __init__ (line 41) | def __init__(self): method check_required (line 46) | def check_required(self, settings, version): method load (line 51) | def load(self, stream, version): method save (line 55) | def save(self, stream, version): class u64KeyValue (line 62) | class u64KeyValue(common.Data): method __init__ (line 63) | def __init__(self): method check_required (line 68) | def check_required(self, settings, version): method load (line 73) | def load(self, stream, version): method save (line 77) | def save(self, stream, version): class StringKeyValue (line 84) | class StringKeyValue(common.Data): method __init__ (line 85) | def __init__(self): method check_required (line 90) | def check_required(self, settings, version): method load (line 95) | def load(self, stream, version): method save (line 99) | def save(self, stream, version): class NintendoNotificationEvent (line 106) | class NintendoNotificationEvent(common.Structure): method __init__ (line 107) | def __init__(self): method check_required (line 113) | def check_required(self, settings, version): method load (line 118) | def load(self, stream, version): method save (line 123) | def save(self, stream, version): class NintendoNotificationEventGeneral (line 130) | class NintendoNotificationEventGeneral(common.Data): method __init__ (line 131) | def __init__(self): method check_required (line 138) | def check_required(self, settings, version): method load (line 143) | def load(self, stream, version): method save (line 149) | def save(self, stream, version): class NintendoNotificationEventKeyValue (line 158) | class NintendoNotificationEventKeyValue(common.Data): method __init__ (line 159) | def __init__(self): method check_required (line 166) | def check_required(self, settings, version): method load (line 171) | def load(self, stream, version): method save (line 177) | def save(self, stream, version): class NintendoNotificationEventProfile (line 186) | class NintendoNotificationEventProfile(common.Data): method __init__ (line 187) | def __init__(self): method check_required (line 195) | def check_required(self, settings, version): method load (line 200) | def load(self, stream, version): method save (line 207) | def save(self, stream, version): class NintendoNotificationProtocol (line 217) | class NintendoNotificationProtocol: class NintendoNotificationClient (line 226) | class NintendoNotificationClient(NintendoNotificationProtocol): method __init__ (line 227) | def __init__(self, client): method process_nintendo_notification_event (line 231) | async def process_nintendo_notification_event(self, event): method process_nintendo_notification_event_alt (line 238) | async def process_nintendo_notification_event_alt(self, event): class NintendoNotificationServer (line 246) | class NintendoNotificationServer(NintendoNotificationProtocol): method __init__ (line 247) | def __init__(self): method logout (line 253) | async def logout(self, client): method handle (line 256) | async def handle(self, client, method_id, input, output): method handle_process_nintendo_notification_event (line 263) | async def handle_process_nintendo_notification_event(self, client, inp... method handle_process_nintendo_notification_event_alt (line 269) | async def handle_process_nintendo_notification_event_alt(self, client,... method process_nintendo_notification_event (line 275) | async def process_nintendo_notification_event(self, *args): method process_nintendo_notification_event_alt (line 279) | async def process_nintendo_notification_event_alt(self, *args): FILE: nintendo/nex/notification.py class NotificationEvent (line 10) | class NotificationEvent(common.Structure): method __init__ (line 11) | def __init__(self): method max_version (line 21) | def max_version(self, settings): method check_required (line 27) | def check_required(self, settings, version): method load (line 37) | def load(self, stream, version): method save (line 49) | def save(self, stream, version): class NotificationProtocol (line 63) | class NotificationProtocol: class NotificationClient (line 71) | class NotificationClient(NotificationProtocol): method __init__ (line 72) | def __init__(self, client): method process_notification_event (line 76) | async def process_notification_event(self, event): class NotificationServer (line 84) | class NotificationServer(NotificationProtocol): method __init__ (line 85) | def __init__(self): method logout (line 90) | async def logout(self, client): method handle (line 93) | async def handle(self, client, method_id, input, output): method handle_process_notification_event (line 100) | async def handle_process_notification_event(self, client, input, output): method process_notification_event (line 106) | async def process_notification_event(self, *args): FILE: nintendo/nex/prudp.py function encode_options (line 69) | def encode_options(options): function decode_options (line 76) | def decode_options(data): class PRUDPPacket (line 98) | class PRUDPPacket: method __init__ (line 99) | def __init__(self, type=None, flags=None): method __repr__ (line 121) | def __repr__(self): class PRUDPMessageV0 (line 133) | class PRUDPMessageV0: method __init__ (line 134) | def __init__(self, settings): method signature_size (line 141) | def signature_size(self): return 4 method calc_checksum (line 143) | def calc_checksum(self, data): method calc_data_signature (line 158) | def calc_data_signature(self, packet, session_key): method calc_packet_signature (line 170) | def calc_packet_signature(self, packet, session_key, connection_signat... method calc_connection_signature (line 179) | def calc_connection_signature(self, addr): method encode (line 183) | def encode(self, packet): method encode_options (line 204) | def encode_options(self, packet, stream): method decode (line 212) | def decode(self, data): class PRUDPMessageV1 (line 274) | class PRUDPMessageV1: method __init__ (line 275) | def __init__(self, settings): method signature_size (line 278) | def signature_size(self): return 16 method calc_packet_signature (line 280) | def calc_packet_signature(self, packet, session_key, connection_signat... method calc_connection_signature (line 294) | def calc_connection_signature(self, addr): method encode (line 299) | def encode(self, packet): method encode_header (line 304) | def encode_header(self, packet, option_size): method encode_options (line 317) | def encode_options(self, packet): method verify_options (line 329) | def verify_options(self, packet, options): method decode (line 339) | def decode(self, data): class PRUDPLiteMessage (line 394) | class PRUDPLiteMessage: method __init__ (line 395) | def __init__(self, settings): method signature_size (line 400) | def signature_size(self): return 16 method calc_packet_signature (line 402) | def calc_packet_signature(self, packet, session_key, connection_signat... method calc_connection_signature (line 408) | def calc_connection_signature(self, addr): method encode (line 413) | def encode(self, packet): method encode_header (line 418) | def encode_header(self, packet, option_size): method encode_options (line 431) | def encode_options(self, packet): method verify_options (line 441) | def verify_options(self, packet, options): method decode (line 451) | def decode(self, data): class PRUDPMessageSelector (line 506) | class PRUDPMessageSelector: method __init__ (line 507) | def __init__(self, settings): method select (line 513) | def select(self, version): method analyze (line 520) | def analyze(self, data): method signature_size (line 528) | def signature_size(self, version=None): method calc_packet_signature (line 530) | def calc_packet_signature(self, packet, session_key, connection_signat... method calc_connection_signature (line 532) | def calc_connection_signature(self, addr, version=None): method encode (line 534) | def encode(self, packet): method decode (line 536) | def decode(self, data): class RC4Encryption (line 540) | class RC4Encryption: method __init__ (line 541) | def __init__(self, key): method set_key (line 545) | def set_key(self, key): method encrypt (line 549) | def encrypt(self, data): return self.rc4enc.encrypt(data) method decrypt (line 550) | def decrypt(self, data): return self.rc4dec.decrypt(data) class DummyEncryption (line 553) | class DummyEncryption: method set_key (line 554) | def set_key(self, key): pass method encrypt (line 555) | def encrypt(self, data): return data method decrypt (line 556) | def decrypt(self, data): return data class ZlibCompression (line 559) | class ZlibCompression: method compress (line 560) | def compress(self, data): method decompress (line 565) | def decompress(self, data): class DummyCompression (line 576) | class DummyCompression: method compress (line 577) | def compress(self, data): return data method decompress (line 578) | def decompress(self, data): return data class PayloadEncoder (line 581) | class PayloadEncoder: method __init__ (line 585) | def __init__(self, settings): method create_encryption (line 598) | def create_encryption(self, settings): method encode (line 603) | def encode(self, packet): method decode (line 616) | def decode(self, packet): method make_unreliable_key (line 629) | def make_unreliable_key(self, packet): method modify_key (line 636) | def modify_key(self, key): method combine_keys (line 645) | def combine_keys(self, key1, key2): method init_unreliable_key (line 648) | def init_unreliable_key(self, key): method set_session_key (line 653) | def set_session_key(self, key): class SequenceCounter (line 664) | class SequenceCounter: method __init__ (line 665) | def __init__(self, initial = 1): method next (line 668) | def next(self): class SequenceMgr (line 674) | class SequenceMgr: method __init__ (line 675) | def __init__(self, settings): method assign (line 687) | def assign(self, packet): class SlidingWindow (line 697) | class SlidingWindow: method __init__ (line 698) | def __init__(self): method skip (line 702) | def skip(self): method update (line 705) | def update(self, packet): class PRUDPClient (line 718) | class PRUDPClient: method __init__ (line 719) | def __init__(self, settings, transport, version): method __aenter__ (line 773) | async def __aenter__(self): return self method __aexit__ (line 774) | async def __aexit__(self, typ, val, tb): method bind (line 777) | def bind(self, addr, port, type): method connect (line 782) | def connect(self, addr, port, type): method login (line 787) | def login(self, pid, cid, session_key): method configure (line 794) | def configure(self, max_substream_id, supported_functions, minor_versi... method remote (line 799) | def remote(self, connection_signature, session_id): method handshake (line 803) | async def handshake(self, credentials, group): method serve (line 821) | async def serve(self, group): method send (line 833) | async def send(self, data, substream=0): method send_fragment (line 848) | async def send_fragment(self, data, fragment_id, substream): method send_unreliable (line 855) | async def send_unreliable(self, data): method send_ping (line 863) | async def send_ping(self): method send_syn (line 867) | async def send_syn(self): method send_connect (line 875) | async def send_connect(self): method send_ack (line 886) | async def send_ack(self, packet): method send_packet (line 897) | async def send_packet(self, packet): method resend_packet (line 927) | async def resend_packet(self, packet, counter): method schedule_timeout (line 944) | def schedule_timeout(self, packet): method build_connection_request (line 949) | def build_connection_request(self): method check_connection_response (line 965) | def check_connection_response(self, data): method handle (line 978) | async def handle(self, packet): method process_syn (line 1000) | async def process_syn(self, packet): method process_connect (line 1025) | async def process_connect(self, packet): method process_other (line 1045) | async def process_other(self, packet): method process_reliable (line 1071) | async def process_reliable(self, packet): method is_new_aggregate_ack (line 1083) | def is_new_aggregate_ack(self, packet): method verify_aggregate_ack (line 1090) | def verify_aggregate_ack(self, packet): method handle_aggregate_ack (line 1105) | def handle_aggregate_ack(self, packet): method cleanup (line 1125) | async def cleanup(self): method close (line 1134) | async def close(self): method disconnect (line 1144) | async def disconnect(self): method recv (line 1159) | async def recv(self, substream=0): method recv_unreliable (line 1162) | async def recv_unreliable(self): method pid (line 1165) | def pid(self): method minor_version (line 1167) | def minor_version(self): method local_address (line 1170) | def local_address(self): method remote_address (line 1172) | def remote_address(self): method local_sid (line 1175) | def local_sid(self): method remote_sid (line 1177) | def remote_sid(self): class PRUDPPortTable (line 1181) | class PRUDPPortTable: method __init__ (line 1182) | def __init__(self, settings): method __iter__ (line 1188) | def __iter__(self): method get (line 1191) | def get(self, port, type): method allocate (line 1197) | def allocate(self, type): method bind (line 1204) | def bind(self, obj, port=None, type=10): class PRUDPServerStream (line 1219) | class PRUDPServerStream: method __init__ (line 1220) | def __init__(self, settings, transport, handler, key, group, disconnec... method bind (line 1240) | def bind(self, addr, port, type): method get_client (line 1245) | def get_client(self, packet, addr): method start_client (line 1249) | async def start_client(self, client): method serve_client (line 1258) | async def serve_client(self, client): method handle (line 1266) | async def handle(self, packet, addr): method process_other (line 1274) | async def process_other(self, packet, addr): method process_syn (line 1281) | async def process_syn(self, packet, addr): method process_connect (line 1303) | async def process_connect(self, packet, addr): method process_login_request (line 1347) | def process_login_request(self, data, client): class PRUDPClientTransport (line 1375) | class PRUDPClientTransport: method __init__ (line 1376) | def __init__(self, settings, socket, group): method connect (line 1385) | async def connect(self, port, type=10, credentials=None, *, disconnect... method start (line 1398) | def start(self): method process (line 1401) | async def process(self): method process_data (line 1406) | async def process_data(self, data): method process_packet (line 1414) | async def process_packet(self, packet): method send (line 1418) | async def send(self, packet, addr): method local_address (line 1427) | def local_address(self): return self.socket.local_address() method remote_address (line 1428) | def remote_address(self): return self.socket.remote_address() class PRUDPServerTransport (line 1431) | class PRUDPServerTransport: method __init__ (line 1432) | def __init__(self, settings): method serve (line 1439) | async def serve(self, handler, port, type=10, key=None, *, disconnect_... method send (line 1446) | async def send(self, packet, addr): method process_data (line 1452) | async def process_data(self, data, addr): method process_packet (line 1460) | async def process_packet(self, packet, addr): class PRUDPDatagramTransport (line 1465) | class PRUDPDatagramTransport(PRUDPServerTransport): method __init__ (line 1466) | def __init__(self, settings, socket, group): method start (line 1471) | def start(self): method process (line 1474) | async def process(self): method sendto (line 1479) | async def sendto(self, data, addr): method local_address (line 1482) | def local_address(self): class PRUDPSocketTransport (line 1486) | class PRUDPSocketTransport(PRUDPServerTransport): method __init__ (line 1487) | def __init__(self, settings, addr): method handle (line 1492) | async def handle(self, client): method process (line 1500) | async def process(self, client, addr): method sendto (line 1510) | async def sendto(self, data, addr): method local_address (line 1515) | def local_address(self): function connect_transport_socket (line 1519) | def connect_transport_socket(settings, host, port, context): function serve_transport_socket (line 1527) | def serve_transport_socket(handler, settings, host, port, context): function connect_transport (line 1534) | async def connect_transport(settings, host, port, context=None): function serve_transport (line 1543) | async def serve_transport(settings, host="", port=0, context=None): function connect (line 1558) | async def connect(settings, host, port, vport=1, type=10, context=None, ... function serve (line 1564) | async def serve(handler, settings, host="", port=0, vport=1, type=10, co... FILE: nintendo/nex/ranking.py class RankingOrderCalc (line 10) | class RankingOrderCalc: class RankingMode (line 15) | class RankingMode: class RankingStatFlags (line 21) | class RankingStatFlags: class RankingOrderParam (line 30) | class RankingOrderParam(common.Structure): method __init__ (line 31) | def __init__(self): method check_required (line 40) | def check_required(self, settings, version): method load (line 43) | def load(self, stream, version): method save (line 51) | def save(self, stream, version): class RankingRankData (line 61) | class RankingRankData(common.Structure): method __init__ (line 62) | def __init__(self): method check_required (line 74) | def check_required(self, settings, version): method load (line 83) | def load(self, stream, version): method save (line 95) | def save(self, stream, version): class RankingResult (line 109) | class RankingResult(common.Structure): method __init__ (line 110) | def __init__(self): method check_required (line 116) | def check_required(self, settings, version): method load (line 121) | def load(self, stream, version): method save (line 126) | def save(self, stream, version): class RankingCachedResult (line 133) | class RankingCachedResult(RankingResult): method __init__ (line 134) | def __init__(self): method check_required (line 140) | def check_required(self, settings, version): method load (line 145) | def load(self, stream, version): method save (line 150) | def save(self, stream, version): class RankingStats (line 158) | class RankingStats(common.Structure): method __init__ (line 159) | def __init__(self): method check_required (line 163) | def check_required(self, settings, version): method load (line 168) | def load(self, stream, version): method save (line 171) | def save(self, stream, version): class RankingScoreData (line 176) | class RankingScoreData(common.Structure): method __init__ (line 177) | def __init__(self): method check_required (line 186) | def check_required(self, settings, version): method load (line 191) | def load(self, stream, version): method save (line 199) | def save(self, stream, version): class RankingChangeAttributesParam (line 209) | class RankingChangeAttributesParam(common.Structure): method __init__ (line 210) | def __init__(self): method check_required (line 216) | def check_required(self, settings, version): method load (line 221) | def load(self, stream, version): method save (line 226) | def save(self, stream, version): class RankingProtocol (line 233) | class RankingProtocol: class RankingClient (line 253) | class RankingClient(RankingProtocol): method __init__ (line 254) | def __init__(self, client): method upload_score (line 258) | async def upload_score(self, score_data, unique_id): method delete_score (line 272) | async def delete_score(self, category, unique_id): method delete_all_scores (line 286) | async def delete_all_scores(self, unique_id): method upload_common_data (line 299) | async def upload_common_data(self, common_data, unique_id): method delete_common_data (line 313) | async def delete_common_data(self, unique_id): method get_common_data (line 326) | async def get_common_data(self, unique_id): method change_attributes (line 341) | async def change_attributes(self, category, param, unique_id): method change_all_attributes (line 356) | async def change_all_attributes(self, param, unique_id): method get_ranking (line 370) | async def get_ranking(self, mode, category, order, unique_id, pid): method get_approx_order (line 389) | async def get_approx_order(self, category, order, score, unique_id, pid): method get_stats (line 408) | async def get_stats(self, category, order, flags): method get_ranking_by_pid_list (line 425) | async def get_ranking_by_pid_list(self, pids, mode, category, order, u... method get_ranking_by_unique_id_list (line 444) | async def get_ranking_by_unique_id_list(self, ids, mode, category, ord... method get_cached_topx_ranking (line 463) | async def get_cached_topx_ranking(self, category, order): method get_cached_topx_rankings (line 479) | async def get_cached_topx_rankings(self, categories, order): class RankingServer (line 496) | class RankingServer(RankingProtocol): method __init__ (line 497) | def __init__(self): method logout (line 516) | async def logout(self, client): method handle (line 519) | async def handle(self, client, method_id, input, output): method handle_upload_score (line 526) | async def handle_upload_score(self, client, input, output): method handle_delete_score (line 533) | async def handle_delete_score(self, client, input, output): method handle_delete_all_scores (line 540) | async def handle_delete_all_scores(self, client, input, output): method handle_upload_common_data (line 546) | async def handle_upload_common_data(self, client, input, output): method handle_delete_common_data (line 553) | async def handle_delete_common_data(self, client, input, output): method handle_get_common_data (line 559) | async def handle_get_common_data(self, client, input, output): method handle_change_attributes (line 570) | async def handle_change_attributes(self, client, input, output): method handle_change_all_attributes (line 578) | async def handle_change_all_attributes(self, client, input, output): method handle_get_ranking (line 585) | async def handle_get_ranking(self, client, input, output): method handle_get_approx_order (line 600) | async def handle_get_approx_order(self, client, input, output): method handle_get_stats (line 615) | async def handle_get_stats(self, client, input, output): method handle_get_ranking_by_pid_list (line 628) | async def handle_get_ranking_by_pid_list(self, client, input, output): method handle_get_ranking_by_unique_id_list (line 643) | async def handle_get_ranking_by_unique_id_list(self, client, input, ou... method handle_get_cached_topx_ranking (line 658) | async def handle_get_cached_topx_ranking(self, client, input, output): method handle_get_cached_topx_rankings (line 670) | async def handle_get_cached_topx_rankings(self, client, input, output): method upload_score (line 682) | async def upload_score(self, *args): method delete_score (line 686) | async def delete_score(self, *args): method delete_all_scores (line 690) | async def delete_all_scores(self, *args): method upload_common_data (line 694) | async def upload_common_data(self, *args): method delete_common_data (line 698) | async def delete_common_data(self, *args): method get_common_data (line 702) | async def get_common_data(self, *args): method change_attributes (line 706) | async def change_attributes(self, *args): method change_all_attributes (line 710) | async def change_all_attributes(self, *args): method get_ranking (line 714) | async def get_ranking(self, *args): method get_approx_order (line 718) | async def get_approx_order(self, *args): method get_stats (line 722) | async def get_stats(self, *args): method get_ranking_by_pid_list (line 726) | async def get_ranking_by_pid_list(self, *args): method get_ranking_by_unique_id_list (line 730) | async def get_ranking_by_unique_id_list(self, *args): method get_cached_topx_ranking (line 734) | async def get_cached_topx_ranking(self, *args): method get_cached_topx_rankings (line 738) | async def get_cached_topx_rankings(self, *args): FILE: nintendo/nex/ranking2.py class RankingMode (line 10) | class RankingMode: class Ranking2CategorySetting (line 16) | class Ranking2CategorySetting(common.Structure): method __init__ (line 17) | def __init__(self): method check_required (line 29) | def check_required(self, settings, version): method load (line 34) | def load(self, stream, version): method save (line 45) | def save(self, stream, version): class Ranking2ChartInfo (line 58) | class Ranking2ChartInfo(common.Structure): method __init__ (line 59) | def __init__(self): method check_required (line 80) | def check_required(self, settings, version): method load (line 85) | def load(self, stream, version): method save (line 105) | def save(self, stream, version): class Ranking2ChartInfoInput (line 127) | class Ranking2ChartInfoInput(common.Structure): method __init__ (line 128) | def __init__(self): method check_required (line 133) | def check_required(self, settings, version): method load (line 138) | def load(self, stream, version): method save (line 142) | def save(self, stream, version): class Ranking2CommonData (line 148) | class Ranking2CommonData(common.Structure): method __init__ (line 149) | def __init__(self): method check_required (line 155) | def check_required(self, settings, version): method load (line 160) | def load(self, stream, version): method save (line 165) | def save(self, stream, version): class Ranking2EstimateScoreRankInput (line 172) | class Ranking2EstimateScoreRankInput(common.Structure): method __init__ (line 173) | def __init__(self): method check_required (line 179) | def check_required(self, settings, version): method load (line 184) | def load(self, stream, version): method save (line 189) | def save(self, stream, version): class Ranking2EstimateScoreRankOutput (line 196) | class Ranking2EstimateScoreRankOutput(common.Structure): method __init__ (line 197) | def __init__(self): method check_required (line 206) | def check_required(self, settings, version): method load (line 211) | def load(self, stream, version): method save (line 219) | def save(self, stream, version): class Ranking2GetByListParam (line 229) | class Ranking2GetByListParam(common.Structure): method __init__ (line 230) | def __init__(self): method check_required (line 239) | def check_required(self, settings, version): method load (line 244) | def load(self, stream, version): method save (line 252) | def save(self, stream, version): class Ranking2GetParam (line 262) | class Ranking2GetParam(common.Structure): method __init__ (line 263) | def __init__(self): method check_required (line 275) | def check_required(self, settings, version): method load (line 280) | def load(self, stream, version): method save (line 291) | def save(self, stream, version): class Ranking2Info (line 304) | class Ranking2Info(common.Structure): method __init__ (line 305) | def __init__(self): method check_required (line 312) | def check_required(self, settings, version): method load (line 317) | def load(self, stream, version): method save (line 323) | def save(self, stream, version): class Ranking2RankData (line 331) | class Ranking2RankData(common.Structure): method __init__ (line 332) | def __init__(self): method check_required (line 341) | def check_required(self, settings, version): method load (line 346) | def load(self, stream, version): method save (line 354) | def save(self, stream, version): class Ranking2ScoreData (line 364) | class Ranking2ScoreData(common.Structure): method __init__ (line 365) | def __init__(self): method check_required (line 371) | def check_required(self, settings, version): method load (line 376) | def load(self, stream, version): method save (line 381) | def save(self, stream, version): class Ranking2Protocol (line 388) | class Ranking2Protocol: class Ranking2Client (line 403) | class Ranking2Client(Ranking2Protocol): method __init__ (line 404) | def __init__(self, client): method put_score (line 408) | async def put_score(self, socres, unique_id): method get_common_data (line 422) | async def get_common_data(self, option_flags, pid, unique_id): method put_common_data (line 439) | async def put_common_data(self, data, unique_id): method delete_common_data (line 453) | async def delete_common_data(self, unique_id): method get_ranking (line 466) | async def get_ranking(self, param): method get_ranking_by_principal_id (line 481) | async def get_ranking_by_principal_id(self, param, pids): method get_category_setting (line 497) | async def get_category_setting(self, category): method get_ranking_chart (line 512) | async def get_ranking_chart(self, input): method get_ranking_charts (line 527) | async def get_ranking_charts(self, inputs): method get_estimate_score_rank (line 542) | async def get_estimate_score_rank(self, input): class Ranking2Server (line 558) | class Ranking2Server(Ranking2Protocol): method __init__ (line 559) | def __init__(self): method logout (line 573) | async def logout(self, client): method handle (line 576) | async def handle(self, client, method_id, input, output): method handle_put_score (line 583) | async def handle_put_score(self, client, input, output): method handle_get_common_data (line 590) | async def handle_get_common_data(self, client, input, output): method handle_put_common_data (line 603) | async def handle_put_common_data(self, client, input, output): method handle_delete_common_data (line 610) | async def handle_delete_common_data(self, client, input, output): method handle_get_ranking (line 616) | async def handle_get_ranking(self, client, input, output): method handle_get_ranking_by_principal_id (line 627) | async def handle_get_ranking_by_principal_id(self, client, input, outp... method handle_get_category_setting (line 639) | async def handle_get_category_setting(self, client, input, output): method handle_get_ranking_chart (line 650) | async def handle_get_ranking_chart(self, client, input, output): method handle_get_ranking_charts (line 661) | async def handle_get_ranking_charts(self, client, input, output): method handle_get_estimate_score_rank (line 672) | async def handle_get_estimate_score_rank(self, client, input, output): method put_score (line 683) | async def put_score(self, *args): method get_common_data (line 687) | async def get_common_data(self, *args): method put_common_data (line 691) | async def put_common_data(self, *args): method delete_common_data (line 695) | async def delete_common_data(self, *args): method get_ranking (line 699) | async def get_ranking(self, *args): method get_ranking_by_principal_id (line 703) | async def get_ranking_by_principal_id(self, *args): method get_category_setting (line 707) | async def get_category_setting(self, *args): method get_ranking_chart (line 711) | async def get_ranking_chart(self, *args): method get_ranking_charts (line 715) | async def get_ranking_charts(self, *args): method get_estimate_score_rank (line 719) | async def get_estimate_score_rank(self, *args): FILE: nintendo/nex/ranking2_eagle.py class RankingMode (line 10) | class RankingMode: class Ranking2CategorySetting (line 16) | class Ranking2CategorySetting(common.Structure): method __init__ (line 17) | def __init__(self): method check_required (line 29) | def check_required(self, settings, version): method load (line 34) | def load(self, stream, version): method save (line 45) | def save(self, stream, version): class Ranking2ChartInfo (line 58) | class Ranking2ChartInfo(common.Structure): method __init__ (line 59) | def __init__(self): method check_required (line 80) | def check_required(self, settings, version): method load (line 85) | def load(self, stream, version): method save (line 105) | def save(self, stream, version): class Ranking2ChartInfoInput (line 127) | class Ranking2ChartInfoInput(common.Structure): method __init__ (line 128) | def __init__(self): method check_required (line 133) | def check_required(self, settings, version): method load (line 138) | def load(self, stream, version): method save (line 142) | def save(self, stream, version): class Ranking2CommonData (line 148) | class Ranking2CommonData(common.Structure): method __init__ (line 149) | def __init__(self): method check_required (line 155) | def check_required(self, settings, version): method load (line 160) | def load(self, stream, version): method save (line 165) | def save(self, stream, version): class Ranking2EstimateScoreRankInput (line 172) | class Ranking2EstimateScoreRankInput(common.Structure): method __init__ (line 173) | def __init__(self): method check_required (line 179) | def check_required(self, settings, version): method load (line 184) | def load(self, stream, version): method save (line 189) | def save(self, stream, version): class Ranking2EstimateScoreRankOutput (line 196) | class Ranking2EstimateScoreRankOutput(common.Structure): method __init__ (line 197) | def __init__(self): method check_required (line 206) | def check_required(self, settings, version): method load (line 211) | def load(self, stream, version): method save (line 219) | def save(self, stream, version): class Ranking2GetByListParam (line 229) | class Ranking2GetByListParam(common.Structure): method __init__ (line 230) | def __init__(self): method check_required (line 239) | def check_required(self, settings, version): method load (line 244) | def load(self, stream, version): method save (line 252) | def save(self, stream, version): class Ranking2GetParam (line 262) | class Ranking2GetParam(common.Structure): method __init__ (line 263) | def __init__(self): method check_required (line 275) | def check_required(self, settings, version): method load (line 280) | def load(self, stream, version): method save (line 291) | def save(self, stream, version): class Ranking2Info (line 304) | class Ranking2Info(common.Structure): method __init__ (line 305) | def __init__(self): method check_required (line 312) | def check_required(self, settings, version): method load (line 317) | def load(self, stream, version): method save (line 323) | def save(self, stream, version): class Ranking2RankData (line 331) | class Ranking2RankData(common.Structure): method __init__ (line 332) | def __init__(self): method check_required (line 341) | def check_required(self, settings, version): method load (line 346) | def load(self, stream, version): method save (line 354) | def save(self, stream, version): class Ranking2ScoreData (line 364) | class Ranking2ScoreData(common.Structure): method __init__ (line 365) | def __init__(self): method check_required (line 371) | def check_required(self, settings, version): method load (line 376) | def load(self, stream, version): method save (line 381) | def save(self, stream, version): class Ranking2EstimateMyScoreRankInput (line 388) | class Ranking2EstimateMyScoreRankInput(common.Structure): method __init__ (line 389) | def __init__(self): method check_required (line 394) | def check_required(self, settings, version): method load (line 399) | def load(self, stream, version): method save (line 403) | def save(self, stream, version): class Ranking2Protocol (line 409) | class Ranking2Protocol: class Ranking2Client (line 425) | class Ranking2Client(Ranking2Protocol): method __init__ (line 426) | def __init__(self, client): method put_score (line 430) | async def put_score(self, socres, unique_id): method get_common_data (line 444) | async def get_common_data(self, option_flags, pid, unique_id): method put_common_data (line 461) | async def put_common_data(self, data, unique_id): method delete_common_data (line 475) | async def delete_common_data(self, unique_id): method get_ranking (line 488) | async def get_ranking(self, param): method get_ranking_by_principal_id (line 503) | async def get_ranking_by_principal_id(self, param, pids): method get_category_setting (line 519) | async def get_category_setting(self, category): method get_ranking_chart (line 534) | async def get_ranking_chart(self, input): method get_ranking_charts (line 549) | async def get_ranking_charts(self, inputs): method get_estimate_score_rank (line 564) | async def get_estimate_score_rank(self, input): method get_estimate_my_score_rank (line 579) | async def get_estimate_my_score_rank(self, input): class Ranking2Server (line 595) | class Ranking2Server(Ranking2Protocol): method __init__ (line 596) | def __init__(self): method logout (line 611) | async def logout(self, client): method handle (line 614) | async def handle(self, client, method_id, input, output): method handle_put_score (line 621) | async def handle_put_score(self, client, input, output): method handle_get_common_data (line 628) | async def handle_get_common_data(self, client, input, output): method handle_put_common_data (line 641) | async def handle_put_common_data(self, client, input, output): method handle_delete_common_data (line 648) | async def handle_delete_common_data(self, client, input, output): method handle_get_ranking (line 654) | async def handle_get_ranking(self, client, input, output): method handle_get_ranking_by_principal_id (line 665) | async def handle_get_ranking_by_principal_id(self, client, input, outp... method handle_get_category_setting (line 677) | async def handle_get_category_setting(self, client, input, output): method handle_get_ranking_chart (line 688) | async def handle_get_ranking_chart(self, client, input, output): method handle_get_ranking_charts (line 699) | async def handle_get_ranking_charts(self, client, input, output): method handle_get_estimate_score_rank (line 710) | async def handle_get_estimate_score_rank(self, client, input, output): method handle_get_estimate_my_score_rank (line 721) | async def handle_get_estimate_my_score_rank(self, client, input, output): method put_score (line 732) | async def put_score(self, *args): method get_common_data (line 736) | async def get_common_data(self, *args): method put_common_data (line 740) | async def put_common_data(self, *args): method delete_common_data (line 744) | async def delete_common_data(self, *args): method get_ranking (line 748) | async def get_ranking(self, *args): method get_ranking_by_principal_id (line 752) | async def get_ranking_by_principal_id(self, *args): method get_category_setting (line 756) | async def get_category_setting(self, *args): method get_ranking_chart (line 760) | async def get_ranking_chart(self, *args): method get_ranking_charts (line 764) | async def get_ranking_charts(self, *args): method get_estimate_score_rank (line 768) | async def get_estimate_score_rank(self, *args): method get_estimate_my_score_rank (line 772) | async def get_estimate_my_score_rank(self, *args): FILE: nintendo/nex/ranking_mk8.py class RankingOrderCalc (line 10) | class RankingOrderCalc: class RankingMode (line 15) | class RankingMode: class RankingStatFlags (line 21) | class RankingStatFlags: class RankingOrderParam (line 30) | class RankingOrderParam(common.Structure): method __init__ (line 31) | def __init__(self): method check_required (line 40) | def check_required(self, settings, version): method load (line 43) | def load(self, stream, version): method save (line 51) | def save(self, stream, version): class RankingRankData (line 61) | class RankingRankData(common.Structure): method __init__ (line 62) | def __init__(self): method check_required (line 74) | def check_required(self, settings, version): method load (line 83) | def load(self, stream, version): method save (line 95) | def save(self, stream, version): class RankingResult (line 109) | class RankingResult(common.Structure): method __init__ (line 110) | def __init__(self): method check_required (line 116) | def check_required(self, settings, version): method load (line 121) | def load(self, stream, version): method save (line 126) | def save(self, stream, version): class RankingCachedResult (line 133) | class RankingCachedResult(RankingResult): method __init__ (line 134) | def __init__(self): method check_required (line 140) | def check_required(self, settings, version): method load (line 145) | def load(self, stream, version): method save (line 150) | def save(self, stream, version): class RankingStats (line 158) | class RankingStats(common.Structure): method __init__ (line 159) | def __init__(self): method check_required (line 163) | def check_required(self, settings, version): method load (line 168) | def load(self, stream, version): method save (line 171) | def save(self, stream, version): class RankingScoreData (line 176) | class RankingScoreData(common.Structure): method __init__ (line 177) | def __init__(self): method check_required (line 186) | def check_required(self, settings, version): method load (line 191) | def load(self, stream, version): method save (line 199) | def save(self, stream, version): class RankingChangeAttributesParam (line 209) | class RankingChangeAttributesParam(common.Structure): method __init__ (line 210) | def __init__(self): method check_required (line 216) | def check_required(self, settings, version): method load (line 221) | def load(self, stream, version): method save (line 226) | def save(self, stream, version): class CompetitionRankingInfo (line 233) | class CompetitionRankingInfo(common.Structure): method __init__ (line 234) | def __init__(self): method check_required (line 240) | def check_required(self, settings, version): method load (line 245) | def load(self, stream, version): method save (line 250) | def save(self, stream, version): class CompetitionRankingInfoGetParam (line 257) | class CompetitionRankingInfoGetParam(common.Structure): method __init__ (line 258) | def __init__(self): method check_required (line 263) | def check_required(self, settings, version): method load (line 268) | def load(self, stream, version): method save (line 272) | def save(self, stream, version): class CompetitionRankingUploadScoreParam (line 278) | class CompetitionRankingUploadScoreParam(common.Structure): method __init__ (line 279) | def __init__(self): method check_required (line 290) | def check_required(self, settings, version): method load (line 295) | def load(self, stream, version): method save (line 305) | def save(self, stream, version): class RankingProtocolMK8 (line 317) | class RankingProtocolMK8: class RankingClientMK8 (line 338) | class RankingClientMK8(RankingProtocolMK8): method __init__ (line 339) | def __init__(self, client): method upload_score (line 343) | async def upload_score(self, score_data, unique_id): method delete_score (line 357) | async def delete_score(self, category, unique_id): method delete_all_scores (line 371) | async def delete_all_scores(self, unique_id): method upload_common_data (line 384) | async def upload_common_data(self, common_data, unique_id): method delete_common_data (line 398) | async def delete_common_data(self, unique_id): method get_common_data (line 411) | async def get_common_data(self, unique_id): method change_attributes (line 426) | async def change_attributes(self, category, param, unique_id): method change_all_attributes (line 441) | async def change_all_attributes(self, param, unique_id): method get_ranking (line 455) | async def get_ranking(self, mode, category, order, unique_id, pid): method get_approx_order (line 474) | async def get_approx_order(self, category, order, score, unique_id, pid): method get_stats (line 493) | async def get_stats(self, category, order, flags): method get_ranking_by_pid_list (line 510) | async def get_ranking_by_pid_list(self, pids, mode, category, order, u... method get_ranking_by_unique_id_list (line 529) | async def get_ranking_by_unique_id_list(self, ids, mode, category, ord... method upload_competition_ranking_score (line 548) | async def upload_competition_ranking_score(self, param): method get_competition_info (line 563) | async def get_competition_info(self, param): class RankingServerMK8 (line 579) | class RankingServerMK8(RankingProtocolMK8): method __init__ (line 580) | def __init__(self): method logout (line 600) | async def logout(self, client): method handle (line 603) | async def handle(self, client, method_id, input, output): method handle_upload_score (line 610) | async def handle_upload_score(self, client, input, output): method handle_delete_score (line 617) | async def handle_delete_score(self, client, input, output): method handle_delete_all_scores (line 624) | async def handle_delete_all_scores(self, client, input, output): method handle_upload_common_data (line 630) | async def handle_upload_common_data(self, client, input, output): method handle_delete_common_data (line 637) | async def handle_delete_common_data(self, client, input, output): method handle_get_common_data (line 643) | async def handle_get_common_data(self, client, input, output): method handle_change_attributes (line 654) | async def handle_change_attributes(self, client, input, output): method handle_change_all_attributes (line 662) | async def handle_change_all_attributes(self, client, input, output): method handle_get_ranking (line 669) | async def handle_get_ranking(self, client, input, output): method handle_get_approx_order (line 684) | async def handle_get_approx_order(self, client, input, output): method handle_get_stats (line 699) | async def handle_get_stats(self, client, input, output): method handle_get_ranking_by_pid_list (line 712) | async def handle_get_ranking_by_pid_list(self, client, input, output): method handle_get_ranking_by_unique_id_list (line 727) | async def handle_get_ranking_by_unique_id_list(self, client, input, ou... method handle_get_competition_ranking_score (line 742) | async def handle_get_competition_ranking_score(self, client, input, ou... method handle_upload_competition_ranking_score (line 746) | async def handle_upload_competition_ranking_score(self, client, input,... method handle_get_competition_info (line 757) | async def handle_get_competition_info(self, client, input, output): method upload_score (line 768) | async def upload_score(self, *args): method delete_score (line 772) | async def delete_score(self, *args): method delete_all_scores (line 776) | async def delete_all_scores(self, *args): method upload_common_data (line 780) | async def upload_common_data(self, *args): method delete_common_data (line 784) | async def delete_common_data(self, *args): method get_common_data (line 788) | async def get_common_data(self, *args): method change_attributes (line 792) | async def change_attributes(self, *args): method change_all_attributes (line 796) | async def change_all_attributes(self, *args): method get_ranking (line 800) | async def get_ranking(self, *args): method get_approx_order (line 804) | async def get_approx_order(self, *args): method get_stats (line 808) | async def get_stats(self, *args): method get_ranking_by_pid_list (line 812) | async def get_ranking_by_pid_list(self, *args): method get_ranking_by_unique_id_list (line 816) | async def get_ranking_by_unique_id_list(self, *args): method upload_competition_ranking_score (line 820) | async def upload_competition_ranking_score(self, *args): method get_competition_info (line 824) | async def get_competition_info(self, *args): FILE: nintendo/nex/ranking_mk8d.py class RankingOrderCalc (line 10) | class RankingOrderCalc: class RankingMode (line 15) | class RankingMode: class RankingStatFlags (line 21) | class RankingStatFlags: class RankingOrderParam (line 30) | class RankingOrderParam(common.Structure): method __init__ (line 31) | def __init__(self): method check_required (line 40) | def check_required(self, settings, version): method load (line 43) | def load(self, stream, version): method save (line 51) | def save(self, stream, version): class RankingRankData (line 61) | class RankingRankData(common.Structure): method __init__ (line 62) | def __init__(self): method check_required (line 74) | def check_required(self, settings, version): method load (line 83) | def load(self, stream, version): method save (line 95) | def save(self, stream, version): class RankingResult (line 109) | class RankingResult(common.Structure): method __init__ (line 110) | def __init__(self): method check_required (line 116) | def check_required(self, settings, version): method load (line 121) | def load(self, stream, version): method save (line 126) | def save(self, stream, version): class RankingCachedResult (line 133) | class RankingCachedResult(RankingResult): method __init__ (line 134) | def __init__(self): method check_required (line 140) | def check_required(self, settings, version): method load (line 145) | def load(self, stream, version): method save (line 150) | def save(self, stream, version): class RankingStats (line 158) | class RankingStats(common.Structure): method __init__ (line 159) | def __init__(self): method check_required (line 163) | def check_required(self, settings, version): method load (line 168) | def load(self, stream, version): method save (line 171) | def save(self, stream, version): class RankingScoreData (line 176) | class RankingScoreData(common.Structure): method __init__ (line 177) | def __init__(self): method check_required (line 186) | def check_required(self, settings, version): method load (line 191) | def load(self, stream, version): method save (line 199) | def save(self, stream, version): class RankingChangeAttributesParam (line 209) | class RankingChangeAttributesParam(common.Structure): method __init__ (line 210) | def __init__(self): method check_required (line 216) | def check_required(self, settings, version): method load (line 221) | def load(self, stream, version): method save (line 226) | def save(self, stream, version): class CommonDataList (line 233) | class CommonDataList(common.Structure): method __init__ (line 234) | def __init__(self): method check_required (line 238) | def check_required(self, settings, version): method load (line 243) | def load(self, stream, version): method save (line 246) | def save(self, stream, version): class CompetitionRankingGetScoreParam (line 251) | class CompetitionRankingGetScoreParam(common.Structure): method __init__ (line 252) | def __init__(self): method check_required (line 257) | def check_required(self, settings, version): method load (line 262) | def load(self, stream, version): method save (line 266) | def save(self, stream, version): class CompetitionRankingInfo (line 272) | class CompetitionRankingInfo(common.Structure): method __init__ (line 273) | def __init__(self): method check_required (line 279) | def check_required(self, settings, version): method load (line 284) | def load(self, stream, version): method save (line 289) | def save(self, stream, version): class CompetitionRankingInfoGetParam (line 296) | class CompetitionRankingInfoGetParam(common.Structure): method __init__ (line 297) | def __init__(self): method check_required (line 302) | def check_required(self, settings, version): method load (line 307) | def load(self, stream, version): method save (line 311) | def save(self, stream, version): class CompetitionRankingScoreData (line 317) | class CompetitionRankingScoreData(common.Structure): method __init__ (line 318) | def __init__(self): method check_required (line 327) | def check_required(self, settings, version): method load (line 332) | def load(self, stream, version): method save (line 340) | def save(self, stream, version): class CompetitionRankingScoreInfo (line 350) | class CompetitionRankingScoreInfo(common.Structure): method __init__ (line 351) | def __init__(self): method check_required (line 358) | def check_required(self, settings, version): method load (line 363) | def load(self, stream, version): method save (line 369) | def save(self, stream, version): class CompetitionRankingUploadScoreParam (line 377) | class CompetitionRankingUploadScoreParam(common.Structure): method __init__ (line 378) | def __init__(self): method check_required (line 389) | def check_required(self, settings, version): method load (line 394) | def load(self, stream, version): method save (line 404) | def save(self, stream, version): class ScorePack (line 416) | class ScorePack(common.Structure): method __init__ (line 417) | def __init__(self): method check_required (line 421) | def check_required(self, settings, version): method load (line 426) | def load(self, stream, version): method save (line 429) | def save(self, stream, version): class RankingProtocolMK8D (line 434) | class RankingProtocolMK8D: class RankingClientMK8D (line 461) | class RankingClientMK8D(RankingProtocolMK8D): method __init__ (line 462) | def __init__(self, client): method upload_score (line 466) | async def upload_score(self, score_data, unique_id): method delete_score (line 480) | async def delete_score(self, category, unique_id): method delete_all_scores (line 494) | async def delete_all_scores(self, unique_id): method upload_common_data (line 507) | async def upload_common_data(self, common_data, unique_id): method delete_common_data (line 521) | async def delete_common_data(self, unique_id): method get_common_data (line 534) | async def get_common_data(self, unique_id): method change_attributes (line 549) | async def change_attributes(self, category, param, unique_id): method change_all_attributes (line 564) | async def change_all_attributes(self, param, unique_id): method get_ranking (line 578) | async def get_ranking(self, mode, category, order, unique_id, pid): method get_approx_order (line 597) | async def get_approx_order(self, category, order, score, unique_id, pid): method get_stats (line 616) | async def get_stats(self, category, order, flags): method get_ranking_by_pid_list (line 633) | async def get_ranking_by_pid_list(self, pids, mode, category, order, u... method get_ranking_by_unique_id_list (line 652) | async def get_ranking_by_unique_id_list(self, ids, mode, category, ord... method get_cached_topx_ranking (line 671) | async def get_cached_topx_ranking(self, category, order): method get_cached_topx_rankings (line 687) | async def get_cached_topx_rankings(self, categories, order): method get_competition_ranking_score (line 703) | async def get_competition_ranking_score(self, param): method upload_competition_ranking_score (line 718) | async def upload_competition_ranking_score(self, param): method get_competition_info (line 733) | async def get_competition_info(self, param): method upload_score_pack (line 748) | async def upload_score_pack(self, score_data, metadata): method get_score_pack (line 762) | async def get_score_pack(self, pids, category): method get_commmon_data_by_pid_list (line 778) | async def get_commmon_data_by_pid_list(self, pids): class RankingServerMK8D (line 794) | class RankingServerMK8D(RankingProtocolMK8D): method __init__ (line 795) | def __init__(self): method logout (line 821) | async def logout(self, client): method handle (line 824) | async def handle(self, client, method_id, input, output): method handle_upload_score (line 831) | async def handle_upload_score(self, client, input, output): method handle_delete_score (line 838) | async def handle_delete_score(self, client, input, output): method handle_delete_all_scores (line 845) | async def handle_delete_all_scores(self, client, input, output): method handle_upload_common_data (line 851) | async def handle_upload_common_data(self, client, input, output): method handle_delete_common_data (line 858) | async def handle_delete_common_data(self, client, input, output): method handle_get_common_data (line 864) | async def handle_get_common_data(self, client, input, output): method handle_change_attributes (line 875) | async def handle_change_attributes(self, client, input, output): method handle_change_all_attributes (line 883) | async def handle_change_all_attributes(self, client, input, output): method handle_get_ranking (line 890) | async def handle_get_ranking(self, client, input, output): method handle_get_approx_order (line 905) | async def handle_get_approx_order(self, client, input, output): method handle_get_stats (line 920) | async def handle_get_stats(self, client, input, output): method handle_get_ranking_by_pid_list (line 933) | async def handle_get_ranking_by_pid_list(self, client, input, output): method handle_get_ranking_by_unique_id_list (line 948) | async def handle_get_ranking_by_unique_id_list(self, client, input, ou... method handle_get_cached_topx_ranking (line 963) | async def handle_get_cached_topx_ranking(self, client, input, output): method handle_get_cached_topx_rankings (line 975) | async def handle_get_cached_topx_rankings(self, client, input, output): method handle_get_competition_ranking_score (line 987) | async def handle_get_competition_ranking_score(self, client, input, ou... method handle_upload_competition_ranking_score (line 998) | async def handle_upload_competition_ranking_score(self, client, input,... method handle_get_competition_info (line 1009) | async def handle_get_competition_info(self, client, input, output): method handle_upload_score_pack (line 1020) | async def handle_upload_score_pack(self, client, input, output): method handle_get_score_pack (line 1027) | async def handle_get_score_pack(self, client, input, output): method handle_execute_delete_score_job (line 1039) | async def handle_execute_delete_score_job(self, client, input, output): method handle_get_commmon_data_by_pid_list (line 1043) | async def handle_get_commmon_data_by_pid_list(self, client, input, out... method upload_score (line 1054) | async def upload_score(self, *args): method delete_score (line 1058) | async def delete_score(self, *args): method delete_all_scores (line 1062) | async def delete_all_scores(self, *args): method upload_common_data (line 1066) | async def upload_common_data(self, *args): method delete_common_data (line 1070) | async def delete_common_data(self, *args): method get_common_data (line 1074) | async def get_common_data(self, *args): method change_attributes (line 1078) | async def change_attributes(self, *args): method change_all_attributes (line 1082) | async def change_all_attributes(self, *args): method get_ranking (line 1086) | async def get_ranking(self, *args): method get_approx_order (line 1090) | async def get_approx_order(self, *args): method get_stats (line 1094) | async def get_stats(self, *args): method get_ranking_by_pid_list (line 1098) | async def get_ranking_by_pid_list(self, *args): method get_ranking_by_unique_id_list (line 1102) | async def get_ranking_by_unique_id_list(self, *args): method get_cached_topx_ranking (line 1106) | async def get_cached_topx_ranking(self, *args): method get_cached_topx_rankings (line 1110) | async def get_cached_topx_rankings(self, *args): method get_competition_ranking_score (line 1114) | async def get_competition_ranking_score(self, *args): method upload_competition_ranking_score (line 1118) | async def upload_competition_ranking_score(self, *args): method get_competition_info (line 1122) | async def get_competition_info(self, *args): method upload_score_pack (line 1126) | async def upload_score_pack(self, *args): method get_score_pack (line 1130) | async def get_score_pack(self, *args): method get_commmon_data_by_pid_list (line 1134) | async def get_commmon_data_by_pid_list(self, *args): FILE: nintendo/nex/remotelog.py class RemoteLogDeviceProtocol (line 10) | class RemoteLogDeviceProtocol: class RemoteLogDeviceClient (line 16) | class RemoteLogDeviceClient(RemoteLogDeviceProtocol): method __init__ (line 17) | def __init__(self, client): method log (line 21) | async def log(self, message): class RemoteLogDeviceServer (line 35) | class RemoteLogDeviceServer(RemoteLogDeviceProtocol): method __init__ (line 36) | def __init__(self): method logout (line 41) | async def logout(self, client): method handle (line 44) | async def handle(self, client, method_id, input, output): method handle_log (line 51) | async def handle_log(self, client, input, output): method log (line 57) | async def log(self, *args): FILE: nintendo/nex/rmc.py class RMCResponse (line 12) | class RMCResponse: class RMCMessage (line 16) | class RMCMessage: method __init__ (line 20) | def __init__(self, settings): method prepare (line 31) | def prepare(settings, mode, protocol, method, call_id, body): method request (line 41) | def request(settings, protocol, method, call_id, body): method response (line 47) | def response(settings, protocol, method, call_id, body): method error (line 53) | def error(settings, protocol, method, call_id, error): method parse (line 63) | def parse(settings, data): method encode (line 68) | def encode(self): method decode (line 94) | def decode(self, data): class RMCClient (line 124) | class RMCClient: method __init__ (line 125) | def __init__(self, settings, client): method __aenter__ (line 139) | async def __aenter__(self): return self method __aexit__ (line 140) | async def __aexit__(self, typ, val, tb): method register_server (line 143) | def register_server(self, server): method cleanup (line 148) | async def cleanup(self): method close (line 157) | async def close(self): method disconnect (line 162) | async def disconnect(self): method start (line 167) | async def start(self, servers): method handle_request (line 198) | async def handle_request(self, request): method request (line 245) | async def request(self, protocol, method, body, noresponse=False): method pid (line 270) | def pid(self): return self.client.pid() method local_address (line 272) | def local_address(self): method remote_address (line 274) | def remote_address(self): method local_sid (line 277) | def local_sid(self): method remote_sid (line 279) | def remote_sid(self): function connect (line 284) | async def connect(settings, host, port, vport=1, context=None, credentia... function serve (line 295) | async def serve(settings, servers, host="", port=0, vport=1, context=Non... function serve_on_transport (line 310) | async def serve_on_transport(settings, servers, transport, port, key=None): FILE: nintendo/nex/screening.py class ScreeningProtocol (line 10) | class ScreeningProtocol: class ScreeningClient (line 17) | class ScreeningClient(ScreeningProtocol): method __init__ (line 18) | def __init__(self, client): class ScreeningServer (line 24) | class ScreeningServer(ScreeningProtocol): method __init__ (line 25) | def __init__(self): method logout (line 31) | async def logout(self, client): method handle (line 34) | async def handle(self, client, method_id, input, output): method handle_report_data_store_content (line 41) | async def handle_report_data_store_content(self, client, input, output): method handle_report_user (line 45) | async def handle_report_user(self, client, input, output): FILE: nintendo/nex/secure.py class ConnectionData (line 10) | class ConnectionData(common.Structure): method __init__ (line 11) | def __init__(self): method check_required (line 16) | def check_required(self, settings, version): method load (line 21) | def load(self, stream, version): method save (line 25) | def save(self, stream, version): class NintendoLoginData (line 31) | class NintendoLoginData(common.Structure): method __init__ (line 32) | def __init__(self): method check_required (line 36) | def check_required(self, settings, version): method load (line 41) | def load(self, stream, version): method save (line 44) | def save(self, stream, version): class SecureConnectionProtocol (line 49) | class SecureConnectionProtocol: class SecureConnectionClient (line 62) | class SecureConnectionClient(SecureConnectionProtocol): method __init__ (line 63) | def __init__(self, client): method register (line 67) | async def register(self, urls): method request_connection_data (line 85) | async def request_connection_data(self, cid, pid): method request_urls (line 103) | async def request_urls(self, cid, pid): method register_ex (line 121) | async def register_ex(self, urls, login_data): method test_connectivity (line 140) | async def test_connectivity(self): method update_urls (line 152) | async def update_urls(self, urls): method replace_url (line 165) | async def replace_url(self, url, new): method send_report (line 179) | async def send_report(self, report_id, data): class SecureConnectionServer (line 194) | class SecureConnectionServer(SecureConnectionProtocol): method __init__ (line 195) | def __init__(self): method logout (line 207) | async def logout(self, client): method handle (line 210) | async def handle(self, client, method_id, input, output): method handle_register (line 217) | async def handle_register(self, client, input, output): method handle_request_connection_data (line 233) | async def handle_request_connection_data(self, client, input, output): method handle_request_urls (line 249) | async def handle_request_urls(self, client, input, output): method handle_register_ex (line 265) | async def handle_register_ex(self, client, input, output): method handle_test_connectivity (line 282) | async def handle_test_connectivity(self, client, input, output): method handle_update_urls (line 287) | async def handle_update_urls(self, client, input, output): method handle_replace_url (line 293) | async def handle_replace_url(self, client, input, output): method handle_send_report (line 300) | async def handle_send_report(self, client, input, output): method register (line 307) | async def register(self, *args): method request_connection_data (line 311) | async def request_connection_data(self, *args): method request_urls (line 315) | async def request_urls(self, *args): method register_ex (line 319) | async def register_ex(self, *args): method test_connectivity (line 323) | async def test_connectivity(self, *args): method update_urls (line 327) | async def update_urls(self, *args): method replace_url (line 331) | async def replace_url(self, *args): method send_report (line 335) | async def send_report(self, *args): FILE: nintendo/nex/settings.py class Settings (line 5) | class Settings: method __init__ (line 48) | def __init__(self, filename=None): method __getitem__ (line 54) | def __getitem__(self, name): return self.settings[name] method __setitem__ (line 55) | def __setitem__(self, name, value): method configure (line 60) | def configure(self, access_key, nex_version, client_version=None): method reset (line 68) | def reset(self): self.load("default") method copy (line 69) | def copy(self): method load (line 74) | def load(self, name): function default (line 88) | def default(): function load (line 91) | def load(name): FILE: nintendo/nex/streams.py class StreamOut (line 6) | class StreamOut(streams.StreamOut): method __init__ (line 7) | def __init__(self, settings): method pid (line 11) | def pid(self, value): method result (line 17) | def result(self, result): method list (line 20) | def list(self, list, func): method map (line 24) | def map(self, map, keyfunc, valuefunc): method string (line 30) | def string(self, string): method stationurl (line 38) | def stationurl(self, url): method datetime (line 41) | def datetime(self, datetime): method buffer (line 44) | def buffer(self, data): method qbuffer (line 48) | def qbuffer(self, data): method add (line 52) | def add(self, inst): method anydata (line 55) | def anydata(self, inst): method variant (line 60) | def variant(self, value): class StreamIn (line 87) | class StreamIn(streams.StreamIn): method __init__ (line 88) | def __init__(self, data, settings): method pid (line 92) | def pid(self): method result (line 97) | def result(self): method list (line 100) | def list(self, func): method map (line 103) | def map(self, keyfunc, valuefunc): method repeat (line 111) | def repeat(self, func, count): method callback (line 114) | def callback(self, func): method string (line 119) | def string(self): method stationurl (line 124) | def stationurl(self): method datetime (line 127) | def datetime(self): method buffer (line 130) | def buffer(self): return self.read(self.u32()) method qbuffer (line 131) | def qbuffer(self): return self.read(self.u16()) method substream (line 133) | def substream(self): method extract (line 136) | def extract(self, cls): method anydata (line 141) | def anydata(self): method variant (line 144) | def variant(self): FILE: nintendo/nex/subscriber.py class SubscriberProtocol (line 10) | class SubscriberProtocol: class SubscriberClient (line 30) | class SubscriberClient(SubscriberProtocol): method __init__ (line 31) | def __init__(self, client): class SubscriberServer (line 37) | class SubscriberServer(SubscriberProtocol): method __init__ (line 38) | def __init__(self): method logout (line 57) | async def logout(self, client): method handle (line 60) | async def handle(self, client, method_id, input, output): method handle_hello (line 67) | async def handle_hello(self, client, input, output): method handle_post_content (line 71) | async def handle_post_content(self, client, input, output): method handle_get_content (line 75) | async def handle_get_content(self, client, input, output): method handle_follow (line 79) | async def handle_follow(self, client, input, output): method handle_unfollow_all_and_follow (line 83) | async def handle_unfollow_all_and_follow(self, client, input, output): method handle_unfollow (line 87) | async def handle_unfollow(self, client, input, output): method handle_get_following (line 91) | async def handle_get_following(self, client, input, output): method handle_get_follower (line 95) | async def handle_get_follower(self, client, input, output): method handle_get_num_followers (line 99) | async def handle_get_num_followers(self, client, input, output): method handle_get_timeline (line 103) | async def handle_get_timeline(self, client, input, output): method handle_delete_content (line 107) | async def handle_delete_content(self, client, input, output): method handle_get_content_multi (line 111) | async def handle_get_content_multi(self, client, input, output): method handle_update_user_status (line 115) | async def handle_update_user_status(self, client, input, output): method handle_get_friend_user_statuses (line 119) | async def handle_get_friend_user_statuses(self, client, input, output): method handle_get_user_statuses (line 123) | async def handle_get_user_statuses(self, client, input, output): FILE: nintendo/nex/utility.py class UniqueIdInfo (line 10) | class UniqueIdInfo(common.Structure): method __init__ (line 11) | def __init__(self): method check_required (line 16) | def check_required(self, settings, version): method load (line 19) | def load(self, stream, version): method save (line 23) | def save(self, stream, version): class UtilityProtocol (line 29) | class UtilityProtocol: class UtilityClient (line 42) | class UtilityClient(UtilityProtocol): method __init__ (line 43) | def __init__(self, client): method acquire_nex_unique_id (line 47) | async def acquire_nex_unique_id(self): method acquire_nex_unique_id_with_password (line 61) | async def acquire_nex_unique_id_with_password(self): method associate_nex_unique_id_with_my_principal_id (line 75) | async def associate_nex_unique_id_with_my_principal_id(self, info): method associate_nex_unique_ids_with_my_principal_id (line 88) | async def associate_nex_unique_ids_with_my_principal_id(self, infos): method get_associated_nex_unique_id_with_my_principal_id (line 101) | async def get_associated_nex_unique_id_with_my_principal_id(self): method get_associated_nex_unique_ids_with_my_principal_id (line 115) | async def get_associated_nex_unique_ids_with_my_principal_id(self): method get_integer_settings (line 129) | async def get_integer_settings(self, index): method get_string_settings (line 144) | async def get_string_settings(self, index): class UtilityServer (line 160) | class UtilityServer(UtilityProtocol): method __init__ (line 161) | def __init__(self): method logout (line 173) | async def logout(self, client): method handle (line 176) | async def handle(self, client, method_id, input, output): method handle_acquire_nex_unique_id (line 183) | async def handle_acquire_nex_unique_id(self, client, input, output): method handle_acquire_nex_unique_id_with_password (line 193) | async def handle_acquire_nex_unique_id_with_password(self, client, inp... method handle_associate_nex_unique_id_with_my_principal_id (line 203) | async def handle_associate_nex_unique_id_with_my_principal_id(self, cl... method handle_associate_nex_unique_ids_with_my_principal_id (line 209) | async def handle_associate_nex_unique_ids_with_my_principal_id(self, c... method handle_get_associated_nex_unique_id_with_my_principal_id (line 215) | async def handle_get_associated_nex_unique_id_with_my_principal_id(sel... method handle_get_associated_nex_unique_ids_with_my_principal_id (line 225) | async def handle_get_associated_nex_unique_ids_with_my_principal_id(se... method handle_get_integer_settings (line 235) | async def handle_get_integer_settings(self, client, input, output): method handle_get_string_settings (line 246) | async def handle_get_string_settings(self, client, input, output): method acquire_nex_unique_id (line 257) | async def acquire_nex_unique_id(self, *args): method acquire_nex_unique_id_with_password (line 261) | async def acquire_nex_unique_id_with_password(self, *args): method associate_nex_unique_id_with_my_principal_id (line 265) | async def associate_nex_unique_id_with_my_principal_id(self, *args): method associate_nex_unique_ids_with_my_principal_id (line 269) | async def associate_nex_unique_ids_with_my_principal_id(self, *args): method get_associated_nex_unique_id_with_my_principal_id (line 273) | async def get_associated_nex_unique_id_with_my_principal_id(self, *args): method get_associated_nex_unique_ids_with_my_principal_id (line 277) | async def get_associated_nex_unique_ids_with_my_principal_id(self, *ar... method get_integer_settings (line 281) | async def get_integer_settings(self, *args): method get_string_settings (line 285) | async def get_string_settings(self, *args): FILE: nintendo/nnas.py function calc_password_hash (line 13) | def calc_password_hash(pid, password): class NNASError (line 18) | class NNASError(Exception): method __init__ (line 19) | def __init__(self, status_code, errors): method __str__ (line 23) | def __str__(self): class OAuth20 (line 30) | class OAuth20: method __init__ (line 31) | def __init__(self): method parse (line 37) | def parse(cls, tree): class NexToken (line 47) | class NexToken: method __init__ (line 48) | def __init__(self): method parse (line 56) | def parse(cls, tree): class MiiImage (line 66) | class MiiImage: method __init__ (line 67) | def __init__(self): method parse (line 74) | def parse(cls, image): class Mii (line 83) | class Mii: method __init__ (line 84) | def __init__(self): method parse (line 94) | def parse(cls, mii): class Account (line 106) | class Account: method __init__ (line 107) | def __init__(self): method parse (line 113) | def parse(cls, account): class DeviceAttribute (line 121) | class DeviceAttribute: method __init__ (line 122) | def __init__(self): method parse (line 128) | def parse(cls, attribute): class Email (line 136) | class Email: method __init__ (line 137) | def __init__(self): method parse (line 148) | def parse(cls, email): class ProfileMii (line 161) | class ProfileMii: method __init__ (line 162) | def __init__(self): method parse (line 172) | def parse(cls, mii): class Profile (line 184) | class Profile: method __init__ (line 185) | def __init__(self): method parse (line 208) | def parse(cls, profile): class NNASClient (line 235) | class NNASClient: method __init__ (line 236) | def __init__(self): method set_context (line 268) | def set_context(self, context): method set_url (line 271) | def set_url(self, url): self.url = url method set_client_id (line 273) | def set_client_id(self, client_id): self.client_id = client_id method set_client_secret (line 274) | def set_client_secret(self, client_secret): self.client_secret = clien... method set_platform_id (line 276) | def set_platform_id(self, platform_id): self.platform_id = platform_id method set_device_type (line 277) | def set_device_type(self, device_type): self.device_type = device_type method set_device (line 279) | def set_device(self, device_id, serial_number, system_version, cert=No... method set_locale (line 285) | def set_locale(self, region, country, language): method set_fpd_version (line 290) | def set_fpd_version(self, version): self.fpd_version = version method set_environment (line 291) | def set_environment(self, environment): self.environment = environment method set_title (line 293) | def set_title(self, title_id, title_version): method prepare (line 297) | def prepare(self, req, auth=None, cert=None): method request (line 331) | async def request(self, req): method login (line 338) | async def login(self, username, password, password_type=None): method get_nex_token (line 354) | async def get_nex_token(self, access_token, game_server_id): method get_service_token (line 365) | async def get_service_token(self, access_token, client_id): method get_profile (line 376) | async def get_profile(self, access_token): method get_miis (line 385) | async def get_miis(self, pids): method get_pids (line 396) | async def get_pids(self, nnids): method get_nnids (line 408) | async def get_nnids(self, pids): method get_mii (line 420) | async def get_mii(self, pid): return (await self.get_miis([pid]))[0] method get_pid (line 421) | async def get_pid(self, nnid): return (await self.get_pids([nnid]))[nnid] method get_nnid (line 422) | async def get_nnid(self, pid): return (await self.get_nnids([pid]))[pid] FILE: nintendo/resources.py function get (line 6) | def get(path): function open (line 9) | def open(path, mode="r", *, encoding="utf-8"): function read_bytes (line 12) | def read_bytes(path): function certificate (line 15) | def certificate(name): function private_key (line 19) | def private_key(name): FILE: nintendo/switch/__init__.py function load_keys (line 9) | def load_keys(filename): function crc16 (line 27) | def crc16(data): class ProdInfo (line 38) | class ProdInfo: method __init__ (line 39) | def __init__(self, keys, filename): method check (line 44) | def check(self, offset, size): method get_device_id (line 51) | def get_device_id(self): method get_tls_cert (line 55) | def get_tls_cert(self): method get_tls_key (line 69) | def get_tls_key(self): FILE: nintendo/switch/aauth.py class AAuthError (line 153) | class AAuthError(Exception): method __init__ (line 163) | def __init__(self, response): method __str__ (line 168) | def __str__(self): class AAuthClient (line 172) | class AAuthClient: method __init__ (line 173) | def __init__(self): method set_request_callback (line 185) | def set_request_callback(self, callback): self.request_callback = call... method set_context (line 187) | def set_context(self, context): method set_certificate (line 191) | def set_certificate(self, cert, key): method set_host (line 194) | def set_host(self, host): method set_power_state (line 198) | def set_power_state(self, state): self.power_state = state method set_system_version (line 200) | def set_system_version(self, version): method request (line 222) | async def request(self, req, use_power_state): method verify_ticket (line 256) | def verify_ticket(self, ticket, title_id): method verify_token (line 268) | def verify_token(self, token): method get_time (line 274) | async def get_time(self): method challenge (line 286) | async def challenge(self, device_token): method auth_nocert (line 299) | async def auth_nocert(self, title_id, title_version, device_token): method auth_system (line 313) | async def auth_system(self, title_id, title_version, device_token): method auth_digital (line 327) | async def auth_digital(self, title_id, title_version, device_token, ce... method auth_gamecard (line 361) | async def auth_gamecard(self, title_id, title_version, device_token, c... FILE: nintendo/switch/atumn.py class AtumnClient (line 15) | class AtumnClient: method __init__ (line 16) | def __init__(self, device_id): method set_request_callback (line 29) | def set_request_callback(self, callback): self.request_callback = call... method set_context (line 31) | def set_context(self, context): self.context = context method set_certificate (line 32) | def set_certificate(self, cert, key): self.context.set_certificate(cer... method set_host (line 34) | def set_host(self, host): self.host = host method set_system_version (line 36) | def set_system_version(self, version): method request (line 41) | async def request(self, req): method download_content_metadata (line 50) | async def download_content_metadata(self, title_id, title_version, *, ... method download_content (line 65) | async def download_content(self, content_id): FILE: nintendo/switch/baas.py class PresenceState (line 74) | class PresenceState: class BAASError (line 80) | class BAASError(Exception): method __init__ (line 81) | def __init__(self, response): method __str__ (line 91) | def __str__(self): class BAASClient (line 95) | class BAASClient: method __init__ (line 96) | def __init__(self): method set_request_callback (line 107) | def set_request_callback(self, callback): self.request_callback = call... method set_context (line 108) | def set_context(self, context): self.context = context method set_certificate (line 110) | def set_certificate(self, cert, key): method set_host (line 113) | def set_host(self, host): self.host = host method set_power_state (line 114) | def set_power_state(self, state): self.power_state = state method set_system_version (line 116) | def set_system_version(self, version): method get_host (line 122) | def get_host(self, module): method request (line 130) | async def request(self, req, token, module, *, use_power_state=False): method authenticate (line 175) | async def authenticate(self, device_token, penne_id=None): method login (line 187) | async def login(self, id, password, access_token, app_token=None, na_c... method register (line 211) | async def register(self, access_token): method update_presence (line 217) | async def update_presence(self, user_id, device_account_id, access_tok... method get_friends (line 233) | async def get_friends(self, user_id, access_token, count=300): FILE: nintendo/switch/dauth.py class DAuthError (line 302) | class DAuthError(Exception): method __init__ (line 312) | def __init__(self, response, error): method __str__ (line 317) | def __str__(self): class DAuthClient (line 321) | class DAuthClient: method __init__ (line 322) | def __init__(self, keys): method set_request_callback (line 342) | def set_request_callback(self, callback): self.request_callback = call... method set_context (line 344) | def set_context(self, context): self.context = context method set_certificate (line 345) | def set_certificate(self, cert, key): self.context.set_certificate(cer... method set_power_state (line 347) | def set_power_state(self, state): self.power_state = state method set_platform_region (line 348) | def set_platform_region(self, region): self.region = region method set_host (line 350) | def set_host(self, host): self.host = host method set_system_version (line 352) | def set_system_version(self, version): method request (line 364) | async def request(self, req): method challenge (line 398) | async def challenge(self): method request_token (line 407) | async def request_token(self, client_id, vendor_id="akamai", *, edge_t... method request_tokens (line 439) | async def request_tokens(self, token_requests, *, edge_tokens): method device_token (line 496) | async def device_token(self, client_id): method edge_token (line 499) | async def edge_token(self, client_id, vendor_id="akamai"): method device_tokens (line 502) | async def device_tokens(self, client_ids): method edge_tokens (line 506) | async def edge_tokens(self, token_requests): method preload_device_tokens (line 510) | async def preload_device_tokens(self): method preload_edge_tokens (line 513) | async def preload_edge_tokens(self): method get_master_key (line 516) | def get_master_key(self): method decrypt_key (line 521) | def decrypt_key(self, key, kek): method calculate_mac (line 525) | def calculate_mac(self, form, data): class DAuthCache (line 538) | class DAuthCache: method __init__ (line 539) | def __init__(self, client, expiration=None): method device_token (line 546) | async def device_token(self, client_id): method edge_token (line 565) | async def edge_token(self, client_id, vendor_id="akamai"): FILE: nintendo/switch/dragons.py class DragonsError (line 75) | class DragonsError(Exception): method __init__ (line 76) | def __init__(self, response): method __str__ (line 86) | def __str__(self): class DragonsClient (line 90) | class DragonsClient: method __init__ (line 91) | def __init__(self, device_id=None): method set_request_callback (line 111) | def set_request_callback(self, callback): self.request_callback = call... method set_context (line 113) | def set_context(self, context): self.context = context method set_certificate (line 114) | def set_certificate(self, cert, key): self.context.set_certificate(cer... method set_hosts (line 116) | def set_hosts(self, dragons, dragonst, tigers): method set_system_version (line 121) | def set_system_version(self, version): method request (line 131) | async def request(self, req, host, device_token, *, account_id=None): method request_dauth (line 155) | async def request_dauth(self, req, device_token, title_id): method publish_elicense_archive (line 174) | async def publish_elicense_archive(self, device_token, challenge, cert... method report_elicense_archive (line 184) | async def report_elicense_archive(self, device_token, elicense_archive... method publish_device_linked_elicenses (line 188) | async def publish_device_linked_elicenses(self, device_token): method exercise_elicense (line 193) | async def exercise_elicense(self, device_token, elicense_ids, account_... method contents_authorization_token_for_aauth (line 201) | async def contents_authorization_token_for_aauth(self, device_token, e... FILE: nintendo/switch/five.py class FiveError (line 77) | class FiveError(Exception): method __init__ (line 84) | def __init__(self, response): method __str__ (line 90) | def __str__(self): class FiveClient (line 94) | class FiveClient: method __init__ (line 95) | def __init__(self): method set_request_callback (line 107) | def set_request_callback(self, callback): self.request_callback = call... method set_context (line 108) | def set_context(self, context): self.context = context method set_host (line 109) | def set_host(self, host): self.host = host method set_system_version (line 111) | def set_system_version(self, version): method request (line 117) | async def request(self, req, access_token): method get_unread_invitation_count (line 145) | async def get_unread_invitation_count(self, access_token, user_id): method get_inbox (line 162) | async def get_inbox(self, access_token, user_id): method get_invitation_group (line 173) | async def get_invitation_group(self, access_token, invitation_group_id): method mark_as_read (line 178) | async def mark_as_read(self, access_token, ids): method mark_all_as_read (line 186) | async def mark_all_as_read(self, access_token, user_id): method send_invitation (line 190) | async def send_invitation( FILE: nintendo/switch/sun.py class SunError (line 15) | class SunError(Exception): method __init__ (line 16) | def __init__(self, response): method __str__ (line 22) | def __str__(self): class SunClient (line 26) | class SunClient: method __init__ (line 27) | def __init__(self, device_id): method set_request_callback (line 40) | def set_request_callback(self, callback): self.request_callback = call... method set_context (line 42) | def set_context(self, context): self.context = context method set_certificate (line 43) | def set_certificate(self, cert, key): self.context.set_certificate(cer... method set_host (line 45) | def set_host(self, host): self.host = host method set_system_version (line 47) | def set_system_version(self, version): method request (line 52) | async def request(self, req): method system_update_meta (line 64) | async def system_update_meta(self): FILE: tests/nex/test_backend.py class AuthenticationServer (line 10) | class AuthenticationServer(authentication.AuthenticationServer): method __init__ (line 11) | def __init__(self, settings): method login (line 15) | async def login(self, client, username): class AccountManagementServer (line 50) | class AccountManagementServer(account.AccountServer): method get_name (line 51) | async def get_name(self, client, pid): function test_backend (line 57) | async def test_backend(): FILE: tests/nex/test_common.py function test_result (line 6) | def test_result(): function test_rmcerror (line 28) | def test_rmcerror(): function test_resultrange (line 47) | def test_resultrange(): class TestStationURL (line 57) | class TestStationURL: method test_repr (line 58) | def test_repr(self): method test_parse (line 62) | def test_parse(self): method test_parse_empty (line 66) | def test_parse_empty(self): method test_getitem (line 70) | def test_getitem(self): method test_setitem (line 78) | def test_setitem(self): method test_scheme (line 85) | def test_scheme(self): method test_address (line 89) | def test_address(self): method test_flags (line 93) | def test_flags(self): class TestDateTime (line 105) | class TestDateTime: method test_value (line 106) | def test_value(self): method test_datetime (line 110) | def test_datetime(self): method test_standard_datetime (line 119) | def test_standard_datetime(self): method test_timestamp (line 124) | def test_timestamp(self): method test_make (line 128) | def test_make(self): method test_fromtimestamp (line 132) | def test_fromtimestamp(self): method test_now (line 136) | def test_now(self): method test_never (line 140) | def test_never(self): method test_future (line 144) | def test_future(self): FILE: tests/nex/test_errors.py function test_basic (line 4) | def test_basic(): FILE: tests/nex/test_kerberos.py function test_key_derivation_old (line 4) | def test_key_derivation_old(): function test_key_derivation_new (line 10) | def test_key_derivation_new(): function test_kerberos_encryption (line 16) | def test_kerberos_encryption(): function test_client_ticket (line 25) | def test_client_ticket(): function test_server_ticket (line 39) | def test_server_ticket(): function test_server_ticket_old (line 53) | def test_server_ticket_old(): function test_credentials (line 69) | def test_credentials(): FILE: tests/nex/test_nex_streams.py class TestStreamOut (line 5) | class TestStreamOut: method test_pid (line 6) | def test_pid(self): method test_result (line 15) | def test_result(self): method test_list (line 20) | def test_list(self): method test_map (line 25) | def test_map(self): method test_string (line 30) | def test_string(self): method test_stationurl (line 35) | def test_stationurl(self): method test_datetime (line 40) | def test_datetime(self): method test_buffer (line 45) | def test_buffer(self): method test_qbuffer (line 50) | def test_qbuffer(self): method test_add (line 55) | def test_add(self): method test_anydata (line 64) | def test_anydata(self): method test_variant (line 73) | def test_variant(self): class TestStreamIn (line 104) | class TestStreamIn: method test_pid (line 105) | def test_pid(self): method test_result (line 116) | def test_result(self): method test_repeat (line 121) | def test_repeat(self): method test_list (line 131) | def test_list(self): method test_map (line 142) | def test_map(self): method test_string (line 154) | def test_string(self): method test_stationurl (line 159) | def test_stationurl(self): method test_datetime (line 167) | def test_datetime(self): method test_buffer (line 172) | def test_buffer(self): method test_qbuffer (line 177) | def test_qbuffer(self): method test_substream (line 182) | def test_substream(self): method test_extract (line 192) | def test_extract(self): method test_anydata (line 205) | def test_anydata(self): method test_variant (line 216) | def test_variant(self): FILE: tests/nex/test_prudp.py function test_v0 (line 10) | async def test_v0(): function test_v1 (line 27) | async def test_v1(): function test_lite (line 41) | async def test_lite(): function test_v0_alt (line 55) | async def test_v0_alt(): function test_compression (line 72) | async def test_compression(): function test_fragmentation (line 87) | async def test_fragmentation(): function test_unreliable (line 102) | async def test_unreliable(): function test_substreams (line 116) | async def test_substreams(): function test_client_transport (line 135) | async def test_client_transport(): function test_server_transport (line 153) | async def test_server_transport(): function test_negotiation (line 176) | async def test_negotiation(): function test_pid (line 192) | async def test_pid(): function test_credentials (line 204) | async def test_credentials(): FILE: tests/nex/test_rmc.py class AuthenticationServer (line 10) | class AuthenticationServer(authentication.AuthenticationServer): method __init__ (line 11) | def __init__(self): method logout (line 15) | async def logout(self, client): method get_name (line 18) | async def get_name(self, client, pid): function test_simple (line 23) | async def test_simple(): function test_unimplemented_protocol (line 37) | async def test_unimplemented_protocol(): function test_logout_event (line 53) | async def test_logout_event(): FILE: tests/nex/test_settings.py function test_constants (line 5) | def test_constants(): function test_basic (line 18) | def test_basic(): FILE: tests/switch/test_aauth.py function test_aauth_1300 (line 113) | async def test_aauth_1300(): function test_aauth_1500 (line 135) | async def test_aauth_1500(): function test_aauth_1800 (line 155) | async def test_aauth_1800(): function test_aauth_1900 (line 175) | async def test_aauth_1900(): function test_challenge_1300 (line 196) | async def test_challenge_1300(): function test_challenge_1900 (line 217) | async def test_challenge_1900(): function test_challenge_2000 (line 239) | async def test_challenge_2000(): function test_gamecard_1300 (line 261) | async def test_gamecard_1300(): function test_gamecard_1900 (line 283) | async def test_gamecard_1900(): function test_gamecard_2000 (line 306) | async def test_gamecard_2000(): function test_aauth_error (line 329) | async def test_aauth_error(): FILE: tests/switch/test_atumn.py function test_download_content_metadata_system_update (line 51) | async def test_download_content_metadata_system_update(): function test_download_content_metadata_normal_title (line 79) | async def test_download_content_metadata_normal_title(): function test_download_content (line 106) | async def test_download_content(): FILE: tests/switch/test_baas.py function test_authenticate_1200 (line 122) | async def test_authenticate_1200(): function test_authenticate_1900 (line 140) | async def test_authenticate_1900(): function test_authenticate_2000 (line 158) | async def test_authenticate_2000(): function test_login_1200 (line 176) | async def test_login_1200(): function test_login_2000 (line 196) | async def test_login_2000(): function test_login_2110 (line 216) | async def test_login_2110(): function test_register (line 236) | async def test_register(): function test_update_presence_1500 (line 249) | async def test_update_presence_1500(): function test_update_presence_1900 (line 265) | async def test_update_presence_1900(): function test_get_friends (line 281) | async def test_get_friends(): FILE: tests/switch/test_dauth.py function test_dauth_1200 (line 106) | async def test_dauth_1200(): function test_dauth_1300 (line 139) | async def test_dauth_1300(): function test_dauth_1800 (line 172) | async def test_dauth_1800(): function test_dauth_2000 (line 205) | async def test_dauth_2000(): function test_edge_token_2000 (line 237) | async def test_edge_token_2000(): function test_dauth_error (line 269) | async def test_dauth_error(): FILE: tests/switch/test_dragons.py function test_publish_device_linked_elicenses (line 71) | async def test_publish_device_linked_elicenses(): function test_exercise_elicense (line 88) | async def test_exercise_elicense(): function test_contents_authorization_token_for_aauth_1500 (line 105) | async def test_contents_authorization_token_for_aauth_1500(): function test_contents_authorization_token_for_aauth_1800 (line 126) | async def test_contents_authorization_token_for_aauth_1800(): function test_contents_authorization_token_for_aauth_2000 (line 147) | async def test_contents_authorization_token_for_aauth_2000(): FILE: tests/switch/test_five.py function check (line 57) | def check(handler, version): function check_simple (line 69) | def check_simple(version): function check_request (line 74) | def check_request(expected_request, version, *, response={}): function test_get_unread_invitation_count (line 85) | async def test_get_unread_invitation_count(client): function test_get_inbox (line 89) | async def test_get_inbox(client): function test_get_invitation_group (line 93) | async def test_get_invitation_group(client): function test_mark_as_read (line 97) | async def test_mark_as_read(client): function test_mark_all_as_read (line 101) | async def test_mark_all_as_read(client): function test_send_invitation (line 105) | async def test_send_invitation(client): FILE: tests/switch/test_sun.py function test_system_update_meta (line 18) | async def test_system_update_meta():