Last active
March 10, 2024 23:47
-
-
Save hthh/bb896c743878a2c0c337f41febdc0426 to your computer and use it in GitHub Desktop.
Switch IPC changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from data1 import data1 | |
from data2 import data2 | |
from data3 import data3 | |
from data4 import data4 | |
from data500 import data500 | |
from data600 import data600 | |
from data610 import data610 | |
from data700 import data700 | |
all_data = (data1, data2, data3, data4, data500, data600, data610, data700) | |
DIFF_WITHOUT_PROCESSES = False | |
def sort_key(o): | |
for i, k in enumerate(['inbytes', 'outbytes', 'ininterfaces', 'outinterfaces', 'inhandles', 'outhandles', 'buffers']): | |
if o[0] == k: | |
return (i, o[1]) | |
return o | |
def ipc_repr(o, key=None, depth=0): | |
if isinstance(o, dict): | |
return '{%s}' % ', '.join('%r: %s' % (k, ipc_repr(v, key=k, depth=depth+1)) for k,v in sorted(o.iteritems(), key=sort_key)) | |
if isinstance(o, list): | |
return '[%s]' % ', '.join(ipc_repr(v, depth=depth+1) for v in o) | |
if isinstance(o, (int, long)): | |
if o < 10: | |
value = '%d' % o # all negatives are decimal for now | |
else: | |
value = '0x%X' % o | |
if key in ('inbytes', 'outbytes') and depth == 1: | |
value = value.rjust(4) | |
return value | |
return repr(o) | |
def chain_str(chain): | |
out = repr(chain) | |
if isinstance(chain[-1], (int, long)): | |
out += ' ' * (5 - len('%d' % chain[-1])) | |
return out | |
# TODO - this isn't a good diff, especially when services move between processes | |
def diff_dicts(a, b, f, chain=[]): | |
keys = sorted(set(a.keys()) | set(b.keys())) | |
for k in keys: | |
if k in a and k in b: | |
if a[k] != b[k]: | |
if isinstance(a[k], dict) and isinstance(b[k], dict) and len(chain) < 2: | |
diff_dicts(a[k], b[k], f, chain + [k]) | |
else: | |
f.write('- %s = %s\n' % (chain_str(chain + [k]), ipc_repr(a[k]))) | |
f.write('+ %s = %s\n' % (chain_str(chain + [k]), ipc_repr(b[k]))) | |
elif k in a: | |
f.write('- %s = %s\n' % (chain_str(chain + [k]), ipc_repr(a[k]))) | |
else: | |
assert k in b | |
f.write('+ %s = %s\n' % (chain_str(chain + [k]), ipc_repr(b[k]))) | |
# some data is missing on some versions - so just do interface counts | |
for v in all_data: | |
if 'nvnflinger' in v: | |
# for some reason nns::hosbinder::IHOSBinderDriver (dispdrv) | |
# didn't dump cleanly so discard data on versions where it did | |
# to avoid misleading diffs. | |
del v['nvnflinger'] | |
for v in v.values(): | |
if 'nn::sf::hipc::detail::IHipcManager' in v: | |
del v['nn::sf::hipc::detail::IHipcManager'] | |
if DIFF_WITHOUT_PROCESSES: | |
for v in all_data: | |
new_value = {} | |
for vv in v.values(): | |
new_value.update(vv) | |
for k in v.keys(): | |
del v[k] | |
v['.'] = new_value | |
def remove_empty_entries(v): | |
kill_keys = set() | |
for k, vv in v.items(): | |
if not vv: | |
kill_keys.add(k) | |
for i in kill_keys: | |
del v[i] | |
for v in all_data: | |
for k, vv in v.items(): | |
remove_empty_entries(vv) | |
remove_empty_entries(v) | |
with open('b-100-to-200.diff', 'wb') as f: | |
diff_dicts(data1, data2, f) | |
with open('b-200-to-300.diff', 'wb') as f: | |
diff_dicts(data2, data3, f) | |
with open('b-300-to-400.diff', 'wb') as f: | |
diff_dicts(data3, data4, f) | |
with open('b-400-to-500.diff', 'wb') as f: | |
diff_dicts(data4, data500, f) | |
with open('b-500-to-600.diff', 'wb') as f: | |
diff_dicts(data500, data600, f) | |
with open('b-600-to-610.diff', 'wb') as f: | |
diff_dicts(data600, data610, f) | |
with open('b-610-to-700.diff', 'wb') as f: | |
diff_dicts(data610, data700, f) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
+ ['Bus', 'nn::gpio::IManager', 6] = {'inbytes': 1, 'outbytes': 0} | |
+ ['account', 'nn::account::IAccountServiceForAdministrator', 104] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::account::detail::INotifier']} | |
+ ['account', 'nn::account::IAccountServiceForAdministrator', 206] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['account', 'nn::account::IAccountServiceForAdministrator', 299] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::account::detail::ISessionObject']} | |
+ ['account', 'nn::account::IAccountServiceForSystemService', 104] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::account::detail::INotifier']} | |
+ ['account', 'nn::account::baas::IAdministrator', 221] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::account::detail::IAsyncContext']} | |
+ ['account', 'nn::account::baas::IAdministrator', 222] = {'inbytes': 4, 'outbytes': 1, 'outinterfaces': ['nn::account::detail::IAsyncContext']} | |
- ['account', 'nn::account::baas::IAdministrator', 999] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::account::detail::IAsyncContext']} | |
+ ['account', 'nn::account::detail::ISessionObject'] = {999: {'inbytes': 0, 'outbytes': 0}} | |
+ ['account', 'nn::account::nas::IAuthorizationRequest', 19] = {'inbytes': 0, 'outbytes': 1} | |
+ ['account', 'nn::account::nas::IOAuthProcedureForNintendoAccountLinkage', 199] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0x1A]} | |
+ ['am', 'nn::am::service::IApplicationAccessor', 123] = {'inbytes': 0, 'outbytes': 0, 'buffers': [6]} | |
+ ['am', 'nn::am::service::IApplicationFunctions', 24] = {'inbytes': 0, 'outbytes': 2} | |
+ ['am', 'nn::am::service::IApplicationFunctions', 32] = {'inbytes': 8, 'outbytes': 0} | |
+ ['am', 'nn::am::service::IApplicationFunctions', 33] = {'inbytes': 0, 'outbytes': 0} | |
+ ['am', 'nn::am::service::IApplicationFunctions', 50] = {'inbytes': 0, 'outbytes': 0x10} | |
+ ['am', 'nn::am::service::IApplicationFunctions', 60] = {'inbytes': 1, 'outbytes': 0} | |
+ ['am', 'nn::am::service::ICommonStateGetter', 31] = {'inbytes': 4, 'outbytes': 0, 'outinterfaces': ['nn::am::service::ILockAccessor']} | |
+ ['am', 'nn::am::service::ICommonStateGetter', 40] = {'inbytes': 0, 'outbytes': 0x10} | |
+ ['am', 'nn::am::service::IDisplayController', 8] = {'inbytes': 8, 'outbytes': 0} | |
+ ['am', 'nn::am::service::IGlobalStateController', 11] = {'inbytes': 0, 'outbytes': 0} | |
+ ['am', 'nn::am::service::IHomeMenuFunctions', 31] = {'inbytes': 4, 'outbytes': 0, 'outinterfaces': ['nn::am::service::ILockAccessor']} | |
+ ['am', 'nn::am::service::ILibraryAppletAccessor', 50] = {'inbytes': 1, 'outbytes': 0} | |
+ ['am', 'nn::am::service::ILibraryAppletAccessor', 160] = {'inbytes': 8, 'outbytes': 8, 'pid': 1} | |
+ ['am', 'nn::am::service::ILibraryAppletCreator', 12] = {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::am::service::IStorage'], 'inhandles': [1]} | |
+ ['am', 'nn::am::service::ILibraryAppletSelfAccessor', 15] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0x16]} | |
+ ['am', 'nn::am::service::ILibraryAppletSelfAccessor', 16] = {'inbytes': 0, 'outbytes': 1} | |
+ ['am', 'nn::am::service::ILibraryAppletSelfAccessor', 40] = {'inbytes': 0, 'outbytes': 8} | |
+ ['am', 'nn::am::service::IOverlayFunctions', 4] = {'inbytes': 1, 'outbytes': 0} | |
+ ['am', 'nn::am::service::IOverlayFunctions', 5] = {'inbytes': 4, 'outbytes': 0} | |
+ ['am', 'nn::am::service::ISelfController', 3] = {'inbytes': 0, 'outbytes': 0} | |
+ ['am', 'nn::am::service::ISelfController', 4] = {'inbytes': 0, 'outbytes': 0} | |
+ ['am', 'nn::am::service::ISelfController', 15] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['am', 'nn::am::service::ISelfController', 16] = {'inbytes': 1, 'outbytes': 0} | |
+ ['am', 'nn::am::service::ISelfController', 65] = {'inbytes': 0, 'outbytes': 0} | |
+ ['am', 'nn::am::service::IStorage', 1] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::am::service::ITransferStorageAccessor']} | |
+ ['am', 'nn::am::service::ITransferStorageAccessor'] = {0: {'inbytes': 0, 'outbytes': 8}, 1: {'inbytes': 0, 'outbytes': 8, 'outhandles': [1]}} | |
+ ['am', 'nn::idle::detail::IPolicyManagerSystem', 5] = {'inbytes': 0, 'outbytes': 0} | |
- ['am', 'nn::omm::detail::IOperationModeManager', 4] = {'inbytes': 0, 'outbytes': 0} | |
+ ['am', 'nn::omm::detail::IOperationModeManager', 4] = {'inbytes': 0, 'outbytes': 0, 'inhandles': [1]} | |
+ ['am', 'nn::omm::detail::IOperationModeManager', 8] = {'inbytes': 0, 'outbytes': 0x10} | |
+ ['am', 'nn::omm::detail::IOperationModeManager', 9] = {'inbytes': 0, 'outbytes': 0} | |
+ ['am', 'nn::spsm::detail::IPowerStateInterface', 10] = {'inbytes': 0, 'outbytes': 0} | |
+ ['am', 'nn::spsm::detail::IPowerStateInterface', 11] = {'inbytes': 0, 'outbytes': 0} | |
- ['arp'] = {'nn::arp::detail::IReader': {0: {'inbytes': 8, 'outbytes': 0x10}, 1: {'inbytes': 8, 'outbytes': 0x10}, 2: {'inbytes': 8, 'outbytes': 0, 'buffers': [0x16]}, 3: {'inbytes': 8, 'outbytes': 0, 'buffers': [0x16]}}, 'nn::arp::detail::IRegistrar': {0: {'inbytes': 8, 'outbytes': 0}, 1: {'inbytes': 0x10, 'outbytes': 0}, 2: {'inbytes': 0, 'outbytes': 0, 'buffers': [0x15]}}, 'nn::arp::detail::IWriter': {0: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::arp::detail::IRegistrar']}, 1: {'inbytes': 8, 'outbytes': 0}}} | |
- ['audio', 'nn::audio::detail::IFinalOutputRecorder', 5] = {'inbytes': 0, 'outbytes': 4, 'buffers': [6]} | |
+ ['audio', 'nn::audio::detail::IFinalOutputRecorder', 5] = {'inbytes': 0, 'outbytes': 0x10, 'buffers': [6]} | |
+ ['audio', 'nn::audio::detail::IFinalOutputRecorder', 7] = {'inbytes': 8, 'outbytes': 8} | |
+ ['bcat', 'nn::bcat::detail::ipc::IBcatService'] = {10100: {'inbytes': 0, 'outbytes': 0}, 20100: {'inbytes': 8, 'outbytes': 0}, 30100: {'inbytes': 8, 'outbytes': 0, 'buffers': [9]}, 30101: {'inbytes': 0x10, 'outbytes': 0}, 30102: {'inbytes': 8, 'outbytes': 0}, 90100: {'inbytes': 0, 'outbytes': 4, 'buffers': [6]}, 90200: {'inbytes': 0, 'outbytes': 4, 'buffers': [6]}} | |
+ ['bcat', 'nn::bcat::detail::ipc::IDeliveryCacheDirectoryService'] = {0: {'inbytes': 0x20, 'outbytes': 0}, 1: {'inbytes': 0, 'outbytes': 4, 'buffers': [6]}, 2: {'inbytes': 0, 'outbytes': 4}} | |
+ ['bcat', 'nn::bcat::detail::ipc::IDeliveryCacheFileService'] = {0: {'inbytes': 0x40, 'outbytes': 0}, 1: {'inbytes': 8, 'outbytes': 8, 'buffers': [6]}, 2: {'inbytes': 0, 'outbytes': 8}, 3: {'inbytes': 0, 'outbytes': 0x10}} | |
+ ['bcat', 'nn::bcat::detail::ipc::IDeliveryCacheProgressService'] = {0: {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]}, 1: {'inbytes': 0, 'outbytes': 0, 'buffers': [0x1A]}} | |
+ ['bcat', 'nn::bcat::detail::ipc::IDeliveryCacheStorageService'] = {0: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::bcat::detail::ipc::IDeliveryCacheFileService']}, 1: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::bcat::detail::ipc::IDeliveryCacheDirectoryService']}, 10: {'inbytes': 0, 'outbytes': 4, 'buffers': [6]}} | |
+ ['bcat', 'nn::bcat::detail::ipc::IServiceCreator'] = {0: {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::bcat::detail::ipc::IBcatService'], 'pid': 1}, 1: {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::bcat::detail::ipc::IDeliveryCacheStorageService'], 'pid': 1}, 2: {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::bcat::detail::ipc::IDeliveryCacheStorageService']}, 3: {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::bcat::detail::ipc::IDeliveryCacheProgressService'], 'pid': 1}, 4: {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::bcat::detail::ipc::IDeliveryCacheProgressService']}} | |
- ['bcat', 'nn::news::detail::ipc::INewsService', 30900] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::news::detail::ipc::INewlyArrivedEventHolder']} | |
- ['bcat', 'nn::news::detail::ipc::INewsService', 30901] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::news::detail::ipc::INewsDataService']} | |
- ['bcat', 'nn::news::detail::ipc::INewsService', 30902] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::news::detail::ipc::INewsDatabaseService']} | |
+ ['bcat', 'nn::news::detail::ipc::IOverwriteEventHolder'] = {0: {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]}} | |
+ ['bcat', 'nn::news::detail::ipc::IServiceCreator'] = {0: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::news::detail::ipc::INewsService']}, 1: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::news::detail::ipc::INewlyArrivedEventHolder']}, 2: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::news::detail::ipc::INewsDataService']}, 3: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::news::detail::ipc::INewsDatabaseService']}, 4: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::news::detail::ipc::IOverwriteEventHolder']}} | |
+ ['bcat', 'nn::prepo::detail::ipc::IPrepoService', 40100] = {'inbytes': 0, 'outbytes': 1} | |
+ ['bcat', 'nn::prepo::detail::ipc::IPrepoService', 40101] = {'inbytes': 1, 'outbytes': 0} | |
- ['bcat', 'nn::prepo::detail::ipc::IPrepoService', 90100] = {'inbytes': 4, 'outbytes': 0} | |
+ ['bcat', 'nn::prepo::detail::ipc::IPrepoService', 90100] = {'inbytes': 0, 'outbytes': 0x10} | |
- ['bcat', 'nn::prepo::detail::ipc::IPrepoService', 90101] = {'inbytes': 0, 'outbytes': 4} | |
- ['bcat', 'nn::prepo::detail::ipc::IPrepoService', 90102] = {'inbytes': 0, 'outbytes': 0x10} | |
+ ['btm', 'nn::btm::IBtm', 18] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['capsrv', 'nn::capsrv::sf::IAlbumAccessorService', 9] = {'inbytes': 0x18, 'outbytes': 0x10, 'buffers': [0x46, 6]} | |
+ ['capsrv', 'nn::capsrv::sf::IAlbumAccessorService', 10] = {'inbytes': 0x18, 'outbytes': 0x10, 'buffers': [0x46, 6]} | |
+ ['capsrv', 'nn::capsrv::sf::IAlbumAccessorService', 11] = {'inbytes': 0x28, 'outbytes': 0x20} | |
+ ['capsrv', 'nn::capsrv::sf::IAlbumAccessorService', 8021] = {'inbytes': 0x28, 'outbytes': 0x20, 'pid': 1} | |
+ ['capsrv', 'nn::capsrv::sf::IAlbumControlService'] = {2001: {'inbytes': 1, 'outbytes': 0}, 2002: {'inbytes': 1, 'outbytes': 0}, 2011: {'inbytes': 0x10, 'outbytes': 0}, 2012: {'inbytes': 0x10, 'outbytes': 0}, 2013: {'inbytes': 8, 'outbytes': 8}, 2014: {'inbytes': 8, 'outbytes': 0}, 2101: {'inbytes': 0x10, 'outbytes': 0x18}, 2102: {'inbytes': 0x28, 'outbytes': 0x20}, 2201: {'inbytes': 0x18, 'outbytes': 0, 'buffers': [0x45]}, 2301: {'inbytes': 0x18, 'outbytes': 0, 'buffers': [0x45]}} | |
- ['capsrv', 'nn::capsrv::sf::ICaptureControllerService'] = {1: {'inbytes': 0x20, 'outbytes': 0, 'buffers': [0x46]}, 2: {'inbytes': 0x28, 'outbytes': 0, 'buffers': [0x46]}, 1001: {'inbytes': 0x10, 'outbytes': 0}, 1002: {'inbytes': 0x18, 'outbytes': 0}, 1011: {'inbytes': 8, 'outbytes': 0}, 2001: {'inbytes': 1, 'outbytes': 0}, 2002: {'inbytes': 1, 'outbytes': 0}} | |
- ['capsrv', 'nn::mmnv::IRequest'] = {0: {'inbytes': 0xC, 'outbytes': 0}, 1: {'inbytes': 4, 'outbytes': 0}, 2: {'inbytes': 0xC, 'outbytes': 0}, 3: {'inbytes': 4, 'outbytes': 4}} | |
- ['es', 'nn::es::IETicketService', 3] = {'inbytes': 0, 'outbytes': 0, 'buffers': [9]} | |
+ ['es', 'nn::es::IETicketService', 3] = {'inbytes': 0, 'outbytes': 0, 'buffers': [5]} | |
- ['es', 'nn::es::IETicketService', 7] = {'inbytes': 0, 'outbytes': 0, 'buffers': [9]} | |
+ ['es', 'nn::es::IETicketService', 7] = {'inbytes': 0, 'outbytes': 0, 'buffers': [5]} | |
- ['es', 'nn::es::IETicketService', 11] = {'inbytes': 0, 'outbytes': 4, 'buffers': [0xA]} | |
+ ['es', 'nn::es::IETicketService', 11] = {'inbytes': 0, 'outbytes': 4, 'buffers': [6]} | |
- ['es', 'nn::es::IETicketService', 12] = {'inbytes': 0, 'outbytes': 4, 'buffers': [0xA]} | |
+ ['es', 'nn::es::IETicketService', 12] = {'inbytes': 0, 'outbytes': 4, 'buffers': [6]} | |
- ['es', 'nn::es::IETicketService', 13] = {'inbytes': 0, 'outbytes': 4, 'buffers': [0xA, 5]} | |
+ ['es', 'nn::es::IETicketService', 13] = {'inbytes': 0, 'outbytes': 4, 'buffers': [6, 5]} | |
- ['es', 'nn::es::IETicketService', 18] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0xA, 9]} | |
+ ['es', 'nn::es::IETicketService', 18] = {'inbytes': 0, 'outbytes': 0, 'buffers': [6, 5]} | |
- ['es', 'nn::es::IETicketService', 19] = {'inbytes': 0, 'outbytes': 4, 'buffers': [0xA, 9]} | |
+ ['es', 'nn::es::IETicketService', 19] = {'inbytes': 0, 'outbytes': 4, 'buffers': [6, 5]} | |
- ['es', 'nn::es::IETicketService', 20] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0x16, 0x16, 5]} | |
+ ['es', 'nn::es::IETicketService', 20] = {'inbytes': 0x10, 'outbytes': 4, 'buffers': [6]} | |
+ ['es', 'nn::es::IETicketService', 21] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0x16, 0x16, 5]} | |
+ ['friends', 'nn::friends::detail::ipc::IFriendService', 10200] = {'inbytes': 0x20, 'outbytes': 0, 'buffers': [0x19, 0x19], 'pid': 1} | |
+ ['friends', 'nn::friends::detail::ipc::IFriendService', 10211] = {'inbytes': 0x80, 'outbytes': 0, 'buffers': [0x19, 0x19, 5], 'pid': 1} | |
+ ['friends', 'nn::friends::detail::ipc::IFriendService', 20104] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['friends', 'nn::friends::detail::ipc::IFriendService', 21000] = {'inbytes': 0x18, 'outbytes': 0, 'buffers': [0x1A]} | |
+ ['friends', 'nn::friends::detail::ipc::IFriendService', 30215] = {'inbytes': 0x30, 'outbytes': 0, 'buffers': [0x19, 0x19]} | |
+ ['friends', 'nn::friends::detail::ipc::IFriendService', 30216] = {'inbytes': 0x18, 'outbytes': 0} | |
- ['friends', 'nn::friends::detail::ipc::IFriendServiceCreator'] = {0: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::friends::detail::ipc::IFriendService']}} | |
+ ['friends', 'nn::friends::detail::ipc::INotificationService'] = {0: {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]}, 1: {'inbytes': 0, 'outbytes': 0}, 2: {'inbytes': 0, 'outbytes': 0x10}} | |
+ ['friends', 'nn::friends::detail::ipc::IServiceCreator'] = {0: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::friends::detail::ipc::IFriendService']}, 1: {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::friends::detail::ipc::INotificationService']}} | |
+ ['fs', 'nn::fssrv::sf::IDeviceOperator', 2] = {'inbytes': 8, 'outbytes': 0, 'buffers': [6]} | |
+ ['fs', 'nn::fssrv::sf::IDeviceOperator', 3] = {'inbytes': 0, 'outbytes': 8} | |
+ ['fs', 'nn::fssrv::sf::IDeviceOperator', 4] = {'inbytes': 0, 'outbytes': 8} | |
+ ['fs', 'nn::fssrv::sf::IDeviceOperator', 5] = {'inbytes': 8, 'outbytes': 0x18, 'buffers': [6]} | |
+ ['fs', 'nn::fssrv::sf::IDeviceOperator', 112] = {'inbytes': 0, 'outbytes': 4} | |
+ ['fs', 'nn::fssrv::sf::IDeviceOperator', 113] = {'inbytes': 8, 'outbytes': 0x18, 'buffers': [6]} | |
+ ['fs', 'nn::fssrv::sf::IDeviceOperator', 114] = {'inbytes': 8, 'outbytes': 0, 'buffers': [6]} | |
+ ['fs', 'nn::fssrv::sf::IDeviceOperator', 212] = {'inbytes': 0x10, 'outbytes': 0, 'buffers': [6, 5]} | |
+ ['fs', 'nn::fssrv::sf::IDeviceOperator', 213] = {'inbytes': 8, 'outbytes': 0, 'buffers': [5]} | |
+ ['fs', 'nn::fssrv::sf::IDeviceOperator', 214] = {'inbytes': 8, 'outbytes': 0, 'buffers': [6]} | |
+ ['fs', 'nn::fssrv::sf::IDeviceOperator', 215] = {'inbytes': 0, 'outbytes': 0} | |
+ ['fs', 'nn::fssrv::sf::IDeviceOperator', 216] = {'inbytes': 0, 'outbytes': 0x10} | |
- ['fs', 'nn::fssrv::sf::IFileSystemProxy', 0] = {'inbytes': 4, 'outbytes': 0, 'outinterfaces': ['nn::fssrv::sf::IFileSystem'], 'buffers': [0x19]} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 7] = {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::fssrv::sf::IFileSystem']} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 8] = {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::fssrv::sf::IFileSystem'], 'buffers': [0x19]} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 19] = {'inbytes': 0, 'outbytes': 0} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 25] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 26] = {'inbytes': 0, 'outbytes': 0} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 27] = {'inbytes': 0, 'outbytes': 1} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 53] = {'inbytes': 0x48, 'outbytes': 0, 'outinterfaces': ['nn::fssrv::sf::IFileSystem']} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 59] = {'inbytes': 0x10, 'outbytes': 0, 'buffers': [5]} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 606] = {'inbytes': 0x10, 'outbytes': 0x10} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 607] = {'inbytes': 0x20, 'outbytes': 0} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 608] = {'inbytes': 0, 'outbytes': 0} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 609] = {'inbytes': 0, 'outbytes': 0x10, 'buffers': [0x19]} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 620] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 800] = {'inbytes': 0, 'outbytes': 0x80} | |
- ['fs', 'nn::fssrv::sf::IFileSystemProxyForLoader', 0] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::fssrv::sf::IFileSystem'], 'buffers': [0x19]} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxyForLoader', 0] = {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::fssrv::sf::IFileSystem'], 'buffers': [0x19]} | |
+ ['glue'] = {'nn::arp::detail::IReader': {0: {'inbytes': 8, 'outbytes': 0x10}, 1: {'inbytes': 8, 'outbytes': 0x10}, 2: {'inbytes': 8, 'outbytes': 0, 'buffers': [0x16]}, 3: {'inbytes': 8, 'outbytes': 0, 'buffers': [0x16]}}, 'nn::arp::detail::IRegistrar': {0: {'inbytes': 8, 'outbytes': 0}, 1: {'inbytes': 0x10, 'outbytes': 0}, 2: {'inbytes': 0, 'outbytes': 0, 'buffers': [0x15]}}, 'nn::arp::detail::IWriter': {0: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::arp::detail::IRegistrar']}, 1: {'inbytes': 8, 'outbytes': 0}}, 'nn::bgtc::IStateControlService': {1: {'inbytes': 0, 'outbytes': 4}, 2: {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]}, 3: {'inbytes': 0, 'outbytes': 0}, 4: {'inbytes': 0, 'outbytes': 0}}, 'nn::bgtc::ITaskService': {1: {'inbytes': 0, 'outbytes': 0}, 2: {'inbytes': 0, 'outbytes': 0}, 3: {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]}, 4: {'inbytes': 0, 'outbytes': 1}, 5: {'inbytes': 0, 'outbytes': 0, 'buffers': [9]}, 11: {'inbytes': 4, 'outbytes': 0}, 12: {'inbytes': 0, 'outbytes': 4}, 13: {'inbytes': 0, 'outbytes': 0}, 14: {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]}, 15: {'inbytes': 8, 'outbytes': 0}}} | |
+ ['hid', 'nn::hid::IHidDebugServer', 91] = {'inbytes': 0, 'outbytes': 0} | |
- ['hid', 'nn::hid::IHidDebugServer', 203] = {'inbytes': 8, 'outbytes': 0, 'outhandles': [1]} | |
+ ['hid', 'nn::hid::IHidDebugServer', 203] = {'inbytes': 0x20, 'outbytes': 0, 'inhandles': [1, 1], 'outhandles': [1]} | |
+ ['hid', 'nn::hid::IHidDebugServer', 207] = {'inbytes': 8, 'outbytes': 5} | |
+ ['hid', 'nn::hid::IHidServer', 91] = {'inbytes': 0x10, 'outbytes': 0, 'pid': 1} | |
+ ['hid', 'nn::hid::IHidSystemServer', 306] = {'inbytes': 0, 'outbytes': 4} | |
+ ['hid', 'nn::hid::IHidSystemServer', 307] = {'inbytes': 4, 'outbytes': 0x10} | |
+ ['hid', 'nn::hid::IHidSystemServer', 311] = {'inbytes': 0x10, 'outbytes': 0, 'pid': 1} | |
+ ['hid', 'nn::hid::IHidSystemServer', 505] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidSystemServer', 540] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['hid', 'nn::hid::IHidSystemServer', 541] = {'inbytes': 0, 'outbytes': 8, 'buffers': [0xA]} | |
+ ['hid', 'nn::hid::IHidSystemServer', 542] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['hid', 'nn::hid::IHidSystemServer', 543] = {'inbytes': 0, 'outbytes': 8, 'buffers': [0xA]} | |
+ ['hid', 'nn::irsensor::IIrSensorServer', 313] = {'inbytes': 0x10, 'outbytes': 0, 'pid': 1} | |
+ ['ncm', 'nn::lr::IAddOnContentLocationResolver'] = {0: {'inbytes': 8, 'outbytes': 0, 'buffers': [0x1A]}, 1: {'inbytes': 0x10, 'outbytes': 0}, 2: {'inbytes': 0, 'outbytes': 0}} | |
+ ['ncm', 'nn::lr::ILocationResolverManager', 3] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::lr::IAddOnContentLocationResolver']} | |
+ ['ncm', 'nn::lr::IRegisteredLocationResolver', 4] = {'inbytes': 8, 'outbytes': 0, 'buffers': [0x1A]} | |
+ ['ncm', 'nn::lr::IRegisteredLocationResolver', 5] = {'inbytes': 8, 'outbytes': 0, 'buffers': [0x19]} | |
+ ['ncm', 'nn::lr::IRegisteredLocationResolver', 6] = {'inbytes': 8, 'outbytes': 0} | |
+ ['ncm', 'nn::lr::IRegisteredLocationResolver', 7] = {'inbytes': 8, 'outbytes': 0, 'buffers': [0x19]} | |
- ['ncm', 'nn::ncm::IContentManager', 6] = {'inbytes': 1, 'outbytes': 0} | |
- ['ncm', 'nn::ncm::IContentManager', 7] = {'inbytes': 1, 'outbytes': 0} | |
+ ['ncm', 'nn::ncm::IContentManager', 9] = {'inbytes': 1, 'outbytes': 0} | |
+ ['ncm', 'nn::ncm::IContentManager', 10] = {'inbytes': 1, 'outbytes': 0} | |
+ ['ncm', 'nn::ncm::IContentManager', 11] = {'inbytes': 1, 'outbytes': 0} | |
+ ['ncm', 'nn::ncm::IContentManager', 12] = {'inbytes': 1, 'outbytes': 0} | |
+ ['ncm', 'nn::ncm::IContentMetaDatabase', 19] = {'inbytes': 0x10, 'outbytes': 4} | |
+ ['ncm', 'nn::ncm::IContentStorage', 16] = {'inbytes': 0x30, 'outbytes': 0} | |
+ ['ncm', 'nn::ncm::IContentStorage', 17] = {'inbytes': 0x18, 'outbytes': 0} | |
+ ['ncm', 'nn::ncm::IContentStorage', 18] = {'inbytes': 0x18, 'outbytes': 0, 'buffers': [6]} | |
+ ['ncm', 'nn::ncm::IContentStorage', 19] = {'inbytes': 0x10, 'outbytes': 0x10} | |
+ ['ncm', 'nn::ncm::IContentStorage', 20] = {'inbytes': 0x10, 'outbytes': 0x10} | |
+ ['ncm', 'nn::ncm::IContentStorage', 21] = {'inbytes': 0x18, 'outbytes': 0, 'buffers': [5]} | |
+ ['ncm', 'nn::ncm::IContentStorage', 22] = {'inbytes': 0, 'outbytes': 8} | |
+ ['ncm', 'nn::ncm::IContentStorage', 23] = {'inbytes': 0, 'outbytes': 8} | |
+ ['nfc', 'nn::nfp::detail::IDebug', 206] = {'inbytes': 0xC, 'outbytes': 0, 'buffers': [5]} | |
+ ['nifm', 'nn::nifm::detail::IGeneralService', 31] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['nifm', 'nn::nifm::detail::IGeneralService', 32] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0x16]} | |
+ ['nifm', 'nn::nifm::detail::IGeneralService', 33] = {'inbytes': 0, 'outbytes': 0} | |
+ ['nifm', 'nn::nifm::detail::INetworkProfile', 1] = {'inbytes': 0x10, 'outbytes': 0x10} | |
+ ['nim', 'nn::nim::detail::IAsyncData'] = {0: {'inbytes': 0, 'outbytes': 0}, 1: {'inbytes': 0, 'outbytes': 0}, 2: {'inbytes': 0, 'outbytes': 8}, 3: {'inbytes': 8, 'outbytes': 8, 'buffers': [6]}, 4: {'inbytes': 0, 'outbytes': 0x28}} | |
+ ['nim', 'nn::nim::detail::IAsyncProgressResult'] = {0: {'inbytes': 0, 'outbytes': 0}, 1: {'inbytes': 0, 'outbytes': 0}, 2: {'inbytes': 0, 'outbytes': 0x10}} | |
- ['nim', 'nn::nim::detail::INetworkInstallManager', 10] = {'inbytes': 0x10, 'outbytes': 0x20} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 10] = {'inbytes': 0x10, 'outbytes': 0x28} | |
- ['nim', 'nn::nim::detail::INetworkInstallManager', 13] = {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncValue'], 'outhandles': [1]} | |
- ['nim', 'nn::nim::detail::INetworkInstallManager', 15] = {'inbytes': 0x10, 'outbytes': 4, 'buffers': [6]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 15] = {'inbytes': 0x14, 'outbytes': 4, 'buffers': [6]} | |
- ['nim', 'nn::nim::detail::INetworkInstallManager', 16] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncValue'], 'outhandles': [1], 'buffers': [5]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 16] = {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncValue'], 'outhandles': [1]} | |
- ['nim', 'nn::nim::detail::INetworkInstallManager', 17] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 17] = {'inbytes': 0x18, 'outbytes': 0} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 23] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncValue'], 'outhandles': [1]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 24] = {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncValue'], 'outhandles': [1], 'buffers': [5, 5]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 25] = {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncResult'], 'outhandles': [1], 'buffers': [5, 5]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 26] = {'inbytes': 0x28, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncResult'], 'outhandles': [1]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 27] = {'inbytes': 0x28, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncData'], 'outhandles': [1]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 28] = {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncValue'], 'outhandles': [1]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 29] = {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncValue'], 'outhandles': [1]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 30] = {'inbytes': 0x28, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncData'], 'outhandles': [1]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 31] = {'inbytes': 0x20, 'outbytes': 0x10, 'buffers': [5]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 32] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 33] = {'inbytes': 8, 'outbytes': 4, 'buffers': [6]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 34] = {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncResult'], 'outhandles': [1]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 35] = {'inbytes': 0x10, 'outbytes': 0x20} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 36] = {'inbytes': 0x14, 'outbytes': 4, 'buffers': [6]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 37] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 38] = {'inbytes': 0x10, 'outbytes': 8} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 39] = {'inbytes': 0, 'outbytes': 0} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 40] = {'inbytes': 0, 'outbytes': 4, 'buffers': [6]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 41] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['nim', 'nn::nim::detail::IShopServiceManager'] = {0: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncValue'], 'outhandles': [1]}, 100: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncResult'], 'outhandles': [1]}, 101: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncResult'], 'outhandles': [1]}, 102: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncValue'], 'outhandles': [1]}, 103: {'inbytes': 0, 'outbytes': 0x20}, 104: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncValue'], 'outhandles': [1]}, 105: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncResult'], 'outhandles': [1]}, 200: {'inbytes': 0x28, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncResult'], 'outhandles': [1]}, 300: {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncResult'], 'outhandles': [1]}, 301: {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncResult'], 'outhandles': [1]}, 302: {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncResult'], 'outhandles': [1]}, 303: {'inbytes': 0x10, 'outbytes': 1}, 400: {'inbytes': 4, 'outbytes': 0x10}, 500: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncProgressResult'], 'outhandles': [1]}, 501: {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncResult'], 'outhandles': [1]}} | |
+ ['npns', 'nn::npns::INpnsSystem', 32] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['ns', 'nn::aocsrv::detail::IAddOnContentManager', 6] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['ns', 'nn::aocsrv::detail::IAddOnContentManager', 7] = {'inbytes': 0x10, 'outbytes': 0, 'pid': 1} | |
- ['ns', 'nn::ns::detail::IApplicationManagerInterface', 18] = {'inbytes': 8, 'outbytes': 1} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 23] = {'inbytes': 0x10, 'outbytes': 0} | |
- ['ns', 'nn::ns::detail::IApplicationManagerInterface', 27] = {'inbytes': 0, 'outbytes': 0, 'buffers': [5]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 27] = {'inbytes': 8, 'outbytes': 0} | |
- ['ns', 'nn::ns::detail::IApplicationManagerInterface', 34] = {'inbytes': 0, 'outbytes': 0} | |
- ['ns', 'nn::ns::detail::IApplicationManagerInterface', 41] = {'inbytes': 8, 'outbytes': 8} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 41] = {'inbytes': 8, 'outbytes': 0x10} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 64] = {'inbytes': 8, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 65] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::ns::detail::IRequestServerStopper']} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 102] = {'inbytes': 0, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 404] = {'inbytes': 8, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 405] = {'inbytes': 0, 'outbytes': 4, 'buffers': [6]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 502] = {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::ns::detail::IAsyncResult'], 'outhandles': [1]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 503] = {'inbytes': 0x18, 'outbytes': 0, 'outinterfaces': ['nn::ns::detail::IAsyncValue'], 'outhandles': [1]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 504] = {'inbytes': 0x20, 'outbytes': 0, 'outinterfaces': ['nn::ns::detail::IAsyncResult'], 'outhandles': [1]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 600] = {'inbytes': 8, 'outbytes': 4} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 601] = {'inbytes': 0x10, 'outbytes': 4, 'buffers': [6]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 602] = {'inbytes': 0x10, 'outbytes': 4, 'buffers': [6]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 603] = {'inbytes': 0x10, 'outbytes': 0x10} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 604] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 605] = {'inbytes': 0x10, 'outbytes': 4, 'buffers': [6]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 700] = {'inbytes': 0, 'outbytes': 0, 'buffers': [5]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 701] = {'inbytes': 0, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 702] = {'inbytes': 0, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 703] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::ns::detail::IAsyncResult'], 'outhandles': [1]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 704] = {'inbytes': 0, 'outbytes': 4, 'buffers': [6]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 705] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::ns::detail::IAsyncValue'], 'outhandles': [1]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 800] = {'inbytes': 0, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 801] = {'inbytes': 0, 'outbytes': 4, 'buffers': [6]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 900] = {'inbytes': 8, 'outbytes': 0x18} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 901] = {'inbytes': 8, 'outbytes': 0, 'buffers': [0x16]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 902] = {'inbytes': 8, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 903] = {'inbytes': 8, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 904] = {'inbytes': 8, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 905] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 906] = {'inbytes': 8, 'outbytes': 8} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 907] = {'inbytes': 8, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 908] = {'inbytes': 0x10, 'outbytes': 4, 'buffers': [6]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 1000] = {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::ns::detail::IProgressAsyncResult'], 'inhandles': [1], 'outhandles': [1]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 1001] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 1200] = {'inbytes': 0, 'outbytes': 1} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 1300] = {'inbytes': 8, 'outbytes': 1} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 1301] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 1302] = {'inbytes': 8, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 1400] = {'inbytes': 0, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 1500] = {'inbytes': 0, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 1501] = {'inbytes': 0, 'outbytes': 1} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 1502] = {'inbytes': 0, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 1503] = {'inbytes': 0, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 1600] = {'inbytes': 0, 'outbytes': 0x20} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 1700] = {'inbytes': 0x10, 'outbytes': 4, 'buffers': [6]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 1800] = {'inbytes': 0, 'outbytes': 1} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 1801] = {'inbytes': 0, 'outbytes': 8} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 1802] = {'inbytes': 0, 'outbytes': 4, 'buffers': [6]} | |
+ ['ns', 'nn::ns::detail::IProgressAsyncResult'] = {0: {'inbytes': 0, 'outbytes': 0}, 1: {'inbytes': 0, 'outbytes': 0}, 2: {'inbytes': 0, 'outbytes': 0, 'buffers': [6]}, 3: {'inbytes': 0, 'outbytes': 0}} | |
- ['ns', 'nn::ns::detail::ISystemUpdateInterface', 7] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
- ['ns', 'nn::ns::detail::ISystemUpdateInterface', 8] = {'inbytes': 0, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::ISystemUpdateInterface', 9] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['ns', 'nn::ns::detail::ISystemUpdateInterface', 10] = {'inbytes': 0, 'outbytes': 0} | |
+ ['ns', 'nn::pdm::detail::INotifyService', 5] = {'inbytes': 0, 'outbytes': 0, 'buffers': [5]} | |
- ['pctl', 'nn::pctl::detail::ipc::IParentalControlService', 1040] = {'inbytes': 4, 'outbytes': 4, 'buffers': [0xA]} | |
- ['pctl', 'nn::pctl::detail::ipc::IParentalControlService', 1041] = {'inbytes': 0, 'outbytes': 0, 'buffers': [9]} | |
+ ['pctl', 'nn::pctl::detail::ipc::IParentalControlService', 1046] = {'inbytes': 0, 'outbytes': 0} | |
+ ['pctl', 'nn::pctl::detail::ipc::IParentalControlService', 1207] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
- ['pctl', 'nn::pctl::detail::ipc::IParentalControlService', 1401] = {'inbytes': 0, 'outbytes': 0x10, 'buffers': [9]} | |
- ['pctl', 'nn::pctl::detail::ipc::IParentalControlService', 1402] = {'inbytes': 0x10, 'outbytes': 0x10} | |
- ['pctl', 'nn::pctl::detail::ipc::IParentalControlService', 1404] = {'inbytes': 0, 'outbytes': 0x10} | |
- ['pctl', 'nn::pctl::detail::ipc::IParentalControlService', 1405] = {'inbytes': 1, 'outbytes': 0} | |
+ ['pctl', 'nn::pctl::detail::ipc::IParentalControlService', 1406] = {'inbytes': 0, 'outbytes': 8} | |
- ['pctl', 'nn::pctl::detail::ipc::IParentalControlService', 1422] = {'inbytes': 0x10, 'outbytes': 4, 'buffers': [6]} | |
- ['pctl', 'nn::pctl::detail::ipc::IParentalControlService', 1423] = {'inbytes': 0x10, 'outbytes': 4, 'buffers': [0xA]} | |
- ['pctl', 'nn::pctl::detail::ipc::IParentalControlService', 1431] = {'inbytes': 0, 'outbytes': 0} | |
+ ['pctl', 'nn::pctl::detail::ipc::IParentalControlService', 1473] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['pctl', 'nn::pctl::detail::ipc::IParentalControlService', 1474] = {'inbytes': 0, 'outbytes': 0} | |
+ ['pctl', 'nn::pctl::detail::ipc::IParentalControlService', 1952] = {'inbytes': 0, 'outbytes': 8} | |
+ ['pctl', 'nn::pctl::detail::ipc::IParentalControlService', 2015] = {'inbytes': 8, 'outbytes': 8} | |
+ ['pcv', 'nn::bpc::IBoardPowerControlManager', 6] = {'inbytes': 0, 'outbytes': 4} | |
+ ['pcv', 'nn::bpc::IBoardPowerControlManager', 7] = {'inbytes': 4, 'outbytes': 0, 'outhandles': [1]} | |
+ ['pcv', 'nn::bpc::IBoardPowerControlManager', 8] = {'inbytes': 8, 'outbytes': 4} | |
+ ['pcv', 'nn::bpc::IBoardPowerControlManager', 9] = {'inbytes': 4, 'outbytes': 0} | |
+ ['pcv', 'nn::bpc::IBoardPowerControlManager', 10] = {'inbytes': 0, 'outbytes': 0x10} | |
- ['pcv', 'nn::bpc::IPowerButtonManager'] = {0: {'inbytes': 0, 'outbytes': 4}, 1: {'inbytes': 4, 'outbytes': 0, 'outhandles': [1]}} | |
+ ['pcv', 'nn::bpc::IRtcManager', 3] = {'inbytes': 0, 'outbytes': 0} | |
- ['pcv', 'nn::bpc::IWakeupConfigManager'] = {0: {'inbytes': 8, 'outbytes': 4}, 1: {'inbytes': 4, 'outbytes': 0}, 2: {'inbytes': 0, 'outbytes': 0x10}} | |
+ ['pcv', 'nn::pcv::IArbitrationManager'] = {0: {'inbytes': 4, 'outbytes': 0}} | |
+ ['pcv', 'nn::timesrv::detail::service::ISteadyClock', 100] = {'inbytes': 0, 'outbytes': 8} | |
+ ['pcv', 'nn::timesrv::detail::service::ISteadyClock', 101] = {'inbytes': 0, 'outbytes': 1} | |
+ ['pcv', 'nn::timesrv::detail::service::ISteadyClock', 102] = {'inbytes': 0, 'outbytes': 4} | |
+ ['pcv', 'nn::timesrv::detail::service::ITimeZoneService', 5] = {'inbytes': 0, 'outbytes': 0x10} | |
- ['ppc', 'nn::apm::IDebugManager'] = {0: {'inbytes': 0, 'outbytes': 0x28}, 1: {'inbytes': 0, 'outbytes': 0x28}, 2: {'inbytes': 0, 'outbytes': 0}} | |
+ ['ppc', 'nn::apm::ISystemManager', 2] = {'inbytes': 0, 'outbytes': 0x28} | |
+ ['ppc', 'nn::apm::ISystemManager', 3] = {'inbytes': 0, 'outbytes': 0x28} | |
+ ['ppc', 'nn::apm::ISystemManager', 4] = {'inbytes': 0, 'outbytes': 0} | |
+ ['ptm', 'nn::psm::IPsmServer', 16] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['ptm', 'nn::psm::IPsmServer', 17] = {'inbytes': 0, 'outbytes': 0x40} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 95] = {'inbytes': 0, 'outbytes': 1} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 96] = {'inbytes': 1, 'outbytes': 0} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 97] = {'inbytes': 0, 'outbytes': 4, 'buffers': [6]} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 98] = {'inbytes': 0, 'outbytes': 0, 'buffers': [5]} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 99] = {'inbytes': 0, 'outbytes': 1} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 100] = {'inbytes': 1, 'outbytes': 0} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 101] = {'inbytes': 0, 'outbytes': 1} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 102] = {'inbytes': 1, 'outbytes': 0} | |
- ['spl', 'nn::spl::detail::IGeneralInterface', 15] = {'inbytes': 0x14, 'outbytes': 0, 'buffers': [6, 5]} | |
+ ['spl', 'nn::spl::detail::IGeneralInterface', 15] = {'inbytes': 0x14, 'outbytes': 0, 'buffers': [0x46, 0x45]} | |
+ ['spl', 'nn::spl::detail::IGeneralInterface', 20] = {'inbytes': 0x10, 'outbytes': 0x10} | |
+ ['spl', 'nn::spl::detail::IGeneralInterface', 21] = {'inbytes': 0, 'outbytes': 4} | |
+ ['spl', 'nn::spl::detail::IGeneralInterface', 22] = {'inbytes': 4, 'outbytes': 0} | |
+ ['spl', 'nn::spl::detail::IGeneralInterface', 23] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['ssl', 'nn::ssl::sf::ISslConnection', 22] = {'inbytes': 8, 'outbytes': 0} | |
+ ['ssl', 'nn::ssl::sf::ISslConnection', 23] = {'inbytes': 4, 'outbytes': 1} | |
+ ['ssl', 'nn::ssl::sf::ISslConnection', 24] = {'inbytes': 0, 'outbytes': 8, 'buffers': [6]} | |
+ ['ssl', 'nn::ssl::sf::ISslContext', 9] = {'inbytes': 0, 'outbytes': 0, 'buffers': [5]} | |
+ ['ssl', 'nn::ssl::sf::ISslService', 2] = {'inbytes': 0, 'outbytes': 0, 'buffers': [6, 5]} | |
+ ['ssl', 'nn::ssl::sf::ISslService', 3] = {'inbytes': 0, 'outbytes': 4, 'buffers': [5]} | |
+ ['usb', 'nn::usb::ds::IDsService', 5] = {'inbytes': 0, 'outbytes': 0, 'buffers': [5]} | |
- ['usb', 'nn::usb::hs::IClientEpSession', 0] = {'inbytes': 8, 'outbytes': 4, 'buffers': [5]} | |
+ ['usb', 'nn::usb::hs::IClientEpSession', 0] = {'inbytes': 0, 'outbytes': 0} | |
- ['usb', 'nn::usb::hs::IClientEpSession', 1] = {'inbytes': 8, 'outbytes': 4, 'buffers': [6]} | |
+ ['usb', 'nn::usb::hs::IClientEpSession', 1] = {'inbytes': 0, 'outbytes': 0} | |
- ['usb', 'nn::usb::hs::IClientEpSession', 2] = {'inbytes': 0, 'outbytes': 0} | |
+ ['usb', 'nn::usb::hs::IClientEpSession', 2] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['usb', 'nn::usb::hs::IClientEpSession', 4] = {'inbytes': 0x18, 'outbytes': 4} | |
+ ['usb', 'nn::usb::hs::IClientEpSession', 5] = {'inbytes': 4, 'outbytes': 4, 'buffers': [6]} | |
+ ['usb', 'nn::usb::hs::IClientEpSession', 6] = {'inbytes': 0x20, 'outbytes': 4, 'buffers': [5]} | |
- ['usb', 'nn::usb::hs::IClientIfSession', 4] = {'inbytes': 0x14, 'outbytes': 7, 'outinterfaces': ['nn::usb::hs::IClientEpSession']} | |
+ ['usb', 'nn::usb::hs::IClientIfSession', 4] = {'inbytes': 0, 'outbytes': 4} | |
- ['usb', 'nn::usb::hs::IClientIfSession', 5] = {'inbytes': 0, 'outbytes': 4} | |
+ ['usb', 'nn::usb::hs::IClientIfSession', 5] = {'inbytes': 0x10, 'outbytes': 0} | |
- ['usb', 'nn::usb::hs::IClientIfSession', 6] = {'inbytes': 0xC, 'outbytes': 4, 'buffers': [6]} | |
+ ['usb', 'nn::usb::hs::IClientIfSession', 6] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
- ['usb', 'nn::usb::hs::IClientIfSession', 7] = {'inbytes': 0xC, 'outbytes': 4, 'buffers': [5]} | |
+ ['usb', 'nn::usb::hs::IClientIfSession', 7] = {'inbytes': 0, 'outbytes': 0, 'buffers': [6]} | |
+ ['usb', 'nn::usb::hs::IClientIfSession', 9] = {'inbytes': 0x14, 'outbytes': 7, 'outinterfaces': ['nn::usb::hs::IClientEpSession']} | |
- ['usb', 'nn::usb::hs::IClientRootSession', 0] = {'inbytes': 0x10, 'outbytes': 4, 'buffers': [6]} | |
+ ['usb', 'nn::usb::hs::IClientRootSession', 0] = {'inbytes': 0, 'outbytes': 0, 'inhandles': [1]} | |
- ['usb', 'nn::usb::hs::IClientRootSession', 2] = {'inbytes': 0, 'outbytes': 4, 'buffers': [6]} | |
+ ['usb', 'nn::usb::hs::IClientRootSession', 2] = {'inbytes': 0x10, 'outbytes': 4, 'buffers': [6]} | |
- ['usb', 'nn::usb::hs::IClientRootSession', 3] = {'inbytes': 0x12, 'outbytes': 0, 'outhandles': [1]} | |
+ ['usb', 'nn::usb::hs::IClientRootSession', 3] = {'inbytes': 0, 'outbytes': 4, 'buffers': [6]} | |
- ['usb', 'nn::usb::hs::IClientRootSession', 4] = {'inbytes': 1, 'outbytes': 0} | |
+ ['usb', 'nn::usb::hs::IClientRootSession', 4] = {'inbytes': 0x12, 'outbytes': 0, 'outhandles': [1]} | |
- ['usb', 'nn::usb::hs::IClientRootSession', 5] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['usb', 'nn::usb::hs::IClientRootSession', 5] = {'inbytes': 1, 'outbytes': 0} | |
- ['usb', 'nn::usb::hs::IClientRootSession', 6] = {'inbytes': 4, 'outbytes': 0, 'outinterfaces': ['nn::usb::hs::IClientIfSession'], 'buffers': [6]} | |
+ ['usb', 'nn::usb::hs::IClientRootSession', 6] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
- ['usb', 'nn::usb::hs::IClientRootSession', 7] = {'inbytes': 8, 'outbytes': 4, 'buffers': [6]} | |
+ ['usb', 'nn::usb::hs::IClientRootSession', 7] = {'inbytes': 4, 'outbytes': 0, 'outinterfaces': ['nn::usb::hs::IClientIfSession'], 'buffers': [6]} | |
- ['usb', 'nn::usb::hs::IClientRootSession', 8] = {'inbytes': 4, 'outbytes': 0} | |
+ ['usb', 'nn::usb::pd::detail::IPdCradleSession', 3] = {'inbytes': 0, 'outbytes': 2} | |
+ ['usb', 'nn::usb::pd::detail::IPdCradleSession', 4] = {'inbytes': 0, 'outbytes': 2} | |
+ ['usb', 'nn::usb::pd::detail::IPdCradleSession', 5] = {'inbytes': 0, 'outbytes': 2} | |
+ ['usb', 'nn::usb::pd::detail::IPdCradleSession', 6] = {'inbytes': 0, 'outbytes': 2} | |
- ['usb', 'nn::usb::pd::detail::IPdManufactureManager'] = {0: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::usb::pd::detail::IPdManufactureSession']}} | |
- ['usb', 'nn::usb::pd::detail::IPdManufactureSession'] = {0: {'inbytes': 0, 'outbytes': 2}, 1: {'inbytes': 0, 'outbytes': 2}, 2: {'inbytes': 0, 'outbytes': 2}, 3: {'inbytes': 0, 'outbytes': 2}} | |
+ ['vi', 'nn::capsrv::sf::IScreenShotControlService'] = {1: {'inbytes': 0x28, 'outbytes': 0, 'buffers': [0x46]}, 2: {'inbytes': 0x30, 'outbytes': 0, 'buffers': [0x46]}, 1001: {'inbytes': 0x10, 'outbytes': 0}, 1002: {'inbytes': 0x18, 'outbytes': 0}, 1011: {'inbytes': 8, 'outbytes': 0}, 1012: {'inbytes': 8, 'outbytes': 0}} | |
+ ['vi', 'nn::capsrv::sf::IScreenShotService'] = {201: {'inbytes': 0x10, 'outbytes': 0x20, 'buffers': [0x45], 'pid': 1}, 202: {'inbytes': 0x38, 'outbytes': 0x20, 'buffers': [0x45, 0x45]}} | |
+ ['vi', 'nn::cec::ICecManager', 6] = {'inbytes': 0, 'outbytes': 8} | |
+ ['vi', 'nn::mmnv::IRequest'] = {0: {'inbytes': 0xC, 'outbytes': 0}, 1: {'inbytes': 4, 'outbytes': 0}, 2: {'inbytes': 0xC, 'outbytes': 0}, 3: {'inbytes': 4, 'outbytes': 4}, 4: {'inbytes': 0xC, 'outbytes': 4}, 5: {'inbytes': 4, 'outbytes': 0}, 6: {'inbytes': 0xC, 'outbytes': 0}, 7: {'inbytes': 4, 'outbytes': 4}} | |
+ ['vi', 'nn::visrv::sf::IApplicationDisplayService', 103] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nns::hosbinder::IHOSBinderDriver']} | |
+ ['vi', 'nn::visrv::sf::IApplicationDisplayService', 2450] = {'inbytes': 0x20, 'outbytes': 0x10, 'buffers': [0x46], 'pid': 1} | |
+ ['vi', 'nn::visrv::sf::IApplicationDisplayService', 2451] = {'inbytes': 0x30, 'outbytes': 0x10, 'buffers': [0x46], 'pid': 1} | |
+ ['vi', 'nn::visrv::sf::IApplicationDisplayService', 2460] = {'inbytes': 0x10, 'outbytes': 0x10} | |
+ ['vi', 'nn::visrv::sf::IApplicationDisplayService', 5203] = {'inbytes': 8, 'outbytes': 0, 'outhandles': [1]} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 2050] = {'inbytes': 0, 'outbytes': 8} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 2051] = {'inbytes': 8, 'outbytes': 0} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 2052] = {'inbytes': 0x10, 'outbytes': 8} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 2053] = {'inbytes': 8, 'outbytes': 0} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 2054] = {'inbytes': 0x10, 'outbytes': 8} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 2055] = {'inbytes': 8, 'outbytes': 0} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 6002] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 8100] = {'inbytes': 0x18, 'outbytes': 0} | |
+ ['vi', 'nn::visrv::sf::ISystemDisplayService', 2400] = {'inbytes': 0x10, 'outbytes': 8, 'buffers': [6], 'pid': 1} | |
+ ['vi', 'nn::visrv::sf::ISystemDisplayService', 2401] = {'inbytes': 8, 'outbytes': 0} | |
+ ['vi', 'nn::visrv::sf::ISystemDisplayService', 2402] = {'inbytes': 8, 'outbytes': 0} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
+ ['Bus', 'nn::sasbus::IManager'] = {0: {'inbytes': 4, 'outbytes': 0, 'outinterfaces': ['nn::sasbus::ISession']}} | |
+ ['Bus', 'nn::sasbus::ISession'] = {0: {'inbytes': 1, 'outbytes': 0, 'buffers': [0x21]}, 1: {'inbytes': 1, 'outbytes': 0, 'buffers': [0x22]}, 2: {'inbytes': 0x18, 'outbytes': 0, 'inhandles': [1]}, 3: {'inbytes': 0, 'outbytes': 0}} | |
+ ['LogManager.Prod', 'nn::lm::ILogger', 1] = {'inbytes': 4, 'outbytes': 0} | |
+ ['account', 'nn::account::IAccountServiceForAdministrator', 6] = {'inbytes': 0x10, 'outbytes': 0x10} | |
+ ['account', 'nn::account::IAccountServiceForAdministrator', 210] = {'inbytes': 4, 'outbytes': 0, 'outinterfaces': ['nn::account::baas::IFloatingRegistrationRequest'], 'inhandles': [1]} | |
- ['account', 'nn::account::IAccountServiceForAdministrator', 290] = {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::account::nas::IOAuthProcedureForGuestLogin']} | |
+ ['account', 'nn::account::IAccountServiceForAdministrator', 290] = {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::account::nas::IOAuthProcedureForExternalNsa']} | |
+ ['account', 'nn::account::IAccountServiceForAdministrator', 291] = {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::account::nas::IOAuthProcedureForExternalNsa']} | |
+ ['account', 'nn::account::IAccountServiceForAdministrator', 997] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['account', 'nn::account::IAccountServiceForApplication', 6] = {'inbytes': 0x10, 'outbytes': 0x10} | |
+ ['account', 'nn::account::IAccountServiceForSystemService', 6] = {'inbytes': 0x10, 'outbytes': 0x10} | |
+ ['account', 'nn::account::IAccountServiceForSystemService', 997] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['account', 'nn::account::baas::IAdministrator', 260] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::account::http::IOAuthProcedure']} | |
+ ['account', 'nn::account::baas::IAdministrator', 261] = {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::account::http::IOAuthProcedure']} | |
+ ['account', 'nn::account::baas::IFloatingRegistrationRequest'] = {0: {'inbytes': 0, 'outbytes': 0x10}, 12: {'inbytes': 0, 'outbytes': 8}, 13: {'inbytes': 0, 'outbytes': 8}, 14: {'inbytes': 0, 'outbytes': 0, 'buffers': [0xA]}, 15: {'inbytes': 0, 'outbytes': 4, 'buffers': [6]}, 21: {'inbytes': 0, 'outbytes': 4, 'buffers': [6]}, 100: {'inbytes': 0, 'outbytes': 0x10, 'outinterfaces': ['nn::account::detail::IAsyncContext']}, 101: {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::account::detail::IAsyncContext']}, 110: {'inbytes': 8, 'outbytes': 0, 'buffers': [0x19], 'pid': 1}, 111: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::account::detail::IAsyncContext']}} | |
- ['account', 'nn::account::baas::IGuestLoginRequest', 11] = {'inbytes': 0, 'outbytes': 4, 'buffers': [6]} | |
+ ['account', 'nn::account::baas::IGuestLoginRequest', 21] = {'inbytes': 0, 'outbytes': 4, 'buffers': [6]} | |
+ ['account', 'nn::account::nas::IOAuthProcedureForExternalNsa'] = {0: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::account::detail::IAsyncContext']}, 1: {'inbytes': 0, 'outbytes': 0, 'buffers': [0x1A, 0x1A]}, 2: {'inbytes': 0, 'outbytes': 0, 'buffers': [9]}, 3: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::account::detail::IAsyncContext'], 'buffers': [9]}, 10: {'inbytes': 0, 'outbytes': 0x10}, 100: {'inbytes': 0, 'outbytes': 8}, 101: {'inbytes': 0, 'outbytes': 8}, 102: {'inbytes': 0, 'outbytes': 0, 'buffers': [0xA]}, 103: {'inbytes': 0, 'outbytes': 4, 'buffers': [6]}} | |
- ['account', 'nn::account::nas::IOAuthProcedureForGuestLogin'] = {0: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::account::detail::IAsyncContext']}, 1: {'inbytes': 0, 'outbytes': 0, 'buffers': [0x1A, 0x1A]}, 2: {'inbytes': 0, 'outbytes': 0, 'buffers': [9]}, 3: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::account::detail::IAsyncContext'], 'buffers': [9]}, 10: {'inbytes': 0, 'outbytes': 0x10}, 100: {'inbytes': 0, 'outbytes': 8}, 101: {'inbytes': 0, 'outbytes': 8}, 102: {'inbytes': 0, 'outbytes': 0, 'buffers': [0xA]}, 103: {'inbytes': 0, 'outbytes': 4, 'buffers': [6]}} | |
+ ['am', 'nn::am::service::IAllSystemAppletProxiesService', 201] = {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::am::service::ILibraryAppletProxy'], 'inhandles': [1], 'buffers': [0x15], 'pid': 1} | |
+ ['am', 'nn::am::service::IApplicationFunctions', 11] = {'inbytes': 0x10, 'outbytes': 0, 'ininterfaces': ['nn::am::service::IStorage']} | |
+ ['am', 'nn::am::service::IApplicationFunctions', 25] = {'inbytes': 0x28, 'outbytes': 8} | |
+ ['am', 'nn::am::service::IApplicationFunctions', 26] = {'inbytes': 0x18, 'outbytes': 0x10} | |
+ ['am', 'nn::am::service::IApplicationFunctions', 65] = {'inbytes': 0, 'outbytes': 1} | |
+ ['am', 'nn::am::service::IApplicationFunctions', 66] = {'inbytes': 8, 'outbytes': 0, 'inhandles': [1]} | |
+ ['am', 'nn::am::service::IApplicationFunctions', 67] = {'inbytes': 4, 'outbytes': 0} | |
+ ['am', 'nn::am::service::IApplicationFunctions', 70] = {'inbytes': 0, 'outbytes': 0} | |
+ ['am', 'nn::am::service::IApplicationFunctions', 71] = {'inbytes': 0, 'outbytes': 0} | |
+ ['am', 'nn::am::service::ICommonStateGetter', 50] = {'inbytes': 0, 'outbytes': 1} | |
+ ['am', 'nn::am::service::ICommonStateGetter', 51] = {'inbytes': 1, 'outbytes': 0} | |
+ ['am', 'nn::am::service::ICommonStateGetter', 55] = {'inbytes': 0, 'outbytes': 1} | |
+ ['am', 'nn::am::service::ICommonStateGetter', 60] = {'inbytes': 0, 'outbytes': 8} | |
+ ['am', 'nn::am::service::ICommonStateGetter', 61] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['am', 'nn::am::service::IDisplayController', 20] = {'inbytes': 0xC, 'outbytes': 0} | |
+ ['am', 'nn::am::service::IDisplayController', 21] = {'inbytes': 4, 'outbytes': 0} | |
+ ['am', 'nn::am::service::IGlobalStateController', 12] = {'inbytes': 8, 'outbytes': 0} | |
+ ['am', 'nn::am::service::IGlobalStateController', 13] = {'inbytes': 0, 'outbytes': 0} | |
+ ['am', 'nn::am::service::IGlobalStateController', 14] = {'inbytes': 0, 'outbytes': 1} | |
+ ['am', 'nn::am::service::ILibraryAppletSelfAccessor', 17] = {'inbytes': 0, 'outbytes': 4, 'buffers': [6]} | |
+ ['am', 'nn::am::service::ILibraryAppletSelfAccessor', 50] = {'inbytes': 8, 'outbytes': 0} | |
+ ['am', 'nn::am::service::IOverlayFunctions', 6] = {'inbytes': 1, 'outbytes': 0} | |
+ ['am', 'nn::am::service::ISelfController', 17] = {'inbytes': 1, 'outbytes': 0} | |
+ ['am', 'nn::am::service::ISelfController', 18] = {'inbytes': 1, 'outbytes': 0} | |
+ ['am', 'nn::am::service::ISelfController', 19] = {'inbytes': 4, 'outbytes': 0} | |
+ ['am', 'nn::am::service::ISelfController', 66] = {'inbytes': 0, 'outbytes': 4} | |
+ ['am', 'nn::am::service::ISelfController', 67] = {'inbytes': 0, 'outbytes': 1} | |
- ['am', 'nn::idle::detail::IPolicyManagerSystem', 3] = {'inbytes': 0x28, 'outbytes': 0} | |
+ ['am', 'nn::idle::detail::IPolicyManagerSystem', 3] = {'inbytes': 0x38, 'outbytes': 0} | |
+ ['am', 'nn::omm::detail::IOperationModeManager', 10] = {'inbytes': 1, 'outbytes': 0} | |
+ ['am', 'nn::omm::detail::IOperationModeManager', 11] = {'inbytes': 0, 'outbytes': 8} | |
+ ['am', 'nn::omm::detail::IOperationModeManager', 12] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['am', 'nn::omm::detail::IOperationModeManager', 13] = {'inbytes': 0, 'outbytes': 0} | |
+ ['am', 'nn::omm::detail::IOperationModeManager', 14] = {'inbytes': 0, 'outbytes': 1} | |
- ['am', 'nn::spsm::detail::IPowerStateInterface', 11] = {'inbytes': 0, 'outbytes': 0} | |
+ ['am', 'nn::spsm::detail::IPowerStateInterface', 11] = {'inbytes': 8, 'outbytes': 0} | |
+ ['audio', 'nn::audio::detail::IAudioDevice', 6] = {'inbytes': 0, 'outbytes': 4, 'buffers': [0x22]} | |
+ ['audio', 'nn::audio::detail::IAudioDevice', 7] = {'inbytes': 4, 'outbytes': 0, 'buffers': [0x21]} | |
+ ['audio', 'nn::audio::detail::IAudioDevice', 8] = {'inbytes': 0, 'outbytes': 4, 'buffers': [0x21]} | |
+ ['audio', 'nn::audio::detail::IAudioDevice', 10] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0x22]} | |
+ ['audio', 'nn::audio::detail::IAudioDevice', 11] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['audio', 'nn::audio::detail::IAudioDevice', 12] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['audio', 'nn::audio::detail::IAudioIn', 7] = {'inbytes': 8, 'outbytes': 0, 'inhandles': [1], 'buffers': [5]} | |
+ ['audio', 'nn::audio::detail::IAudioIn', 8] = {'inbytes': 8, 'outbytes': 0, 'buffers': [0x21]} | |
+ ['audio', 'nn::audio::detail::IAudioIn', 9] = {'inbytes': 0, 'outbytes': 4, 'buffers': [0x22]} | |
+ ['audio', 'nn::audio::detail::IAudioIn', 10] = {'inbytes': 8, 'outbytes': 0, 'inhandles': [1], 'buffers': [0x21]} | |
+ ['audio', 'nn::audio::detail::IAudioInManager', 2] = {'inbytes': 0, 'outbytes': 4, 'buffers': [0x22]} | |
+ ['audio', 'nn::audio::detail::IAudioInManager', 3] = {'inbytes': 0x10, 'outbytes': 0x10, 'outinterfaces': ['nn::audio::detail::IAudioIn'], 'inhandles': [1], 'buffers': [0x21, 0x22], 'pid': 1} | |
+ ['audio', 'nn::audio::detail::IAudioInManager', 4] = {'inbytes': 0, 'outbytes': 4, 'buffers': [0x22]} | |
+ ['audio', 'nn::audio::detail::IAudioOut', 7] = {'inbytes': 8, 'outbytes': 0, 'buffers': [0x21]} | |
+ ['audio', 'nn::audio::detail::IAudioOut', 8] = {'inbytes': 0, 'outbytes': 4, 'buffers': [0x22]} | |
+ ['audio', 'nn::audio::detail::IAudioOutManager', 2] = {'inbytes': 0, 'outbytes': 4, 'buffers': [0x22]} | |
+ ['audio', 'nn::audio::detail::IAudioOutManager', 3] = {'inbytes': 0x10, 'outbytes': 0x10, 'outinterfaces': ['nn::audio::detail::IAudioOut'], 'inhandles': [1], 'buffers': [0x21, 0x22], 'pid': 1} | |
+ ['audio', 'nn::audio::detail::IAudioRenderer', 10] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0x22, 0x22, 0x21]} | |
+ ['audio', 'nn::audio::detail::IAudioRenderer', 11] = {'inbytes': 0, 'outbytes': 0} | |
+ ['audio', 'nn::audio::detail::IAudioRendererManager', 3] = {'inbytes': 0x50, 'outbytes': 0, 'outinterfaces': ['nn::audio::detail::IAudioRenderer'], 'inhandles': [1], 'pid': 1} | |
- ['audio', 'nn::audio::detail::ICodecController'] = {0: {'inbytes': 0, 'outbytes': 0}, 1: {'inbytes': 0, 'outbytes': 0}, 2: {'inbytes': 0, 'outbytes': 0}, 3: {'inbytes': 0, 'outbytes': 0}, 4: {'inbytes': 4, 'outbytes': 0}, 5: {'inbytes': 0, 'outbytes': 4}, 6: {'inbytes': 0, 'outbytes': 4}, 7: {'inbytes': 4, 'outbytes': 0}, 8: {'inbytes': 0, 'outbytes': 4}, 9: {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]}, 10: {'inbytes': 0, 'outbytes': 1}, 11: {'inbytes': 0, 'outbytes': 0}, 12: {'inbytes': 0, 'outbytes': 1}} | |
+ ['audio', 'nn::audio::detail::IFinalOutputRecorder', 8] = {'inbytes': 8, 'outbytes': 0, 'buffers': [0x21]} | |
+ ['audio', 'nn::audio::detail::IFinalOutputRecorder', 9] = {'inbytes': 0, 'outbytes': 0x10, 'buffers': [0x22]} | |
+ ['audio', 'nn::audioctrl::detail::IAudioController', 17] = {'inbytes': 4, 'outbytes': 0} | |
+ ['audio', 'nn::audioctrl::detail::IAudioController', 18] = {'inbytes': 0, 'outbytes': 4} | |
+ ['audio', 'nn::audioctrl::detail::IAudioController', 19] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['audio', 'nn::audioctrl::detail::IAudioController', 20] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['audio', 'nn::audioctrl::detail::IAudioController', 21] = {'inbytes': 0, 'outbytes': 4} | |
+ ['audio', 'nn::audioctrl::detail::IAudioController', 22] = {'inbytes': 0, 'outbytes': 0} | |
+ ['audio', 'nn::codec::detail::IHardwareOpusDecoder', 2] = {'inbytes': 0, 'outbytes': 8, 'buffers': [6, 5]} | |
+ ['audio', 'nn::codec::detail::IHardwareOpusDecoder', 3] = {'inbytes': 0, 'outbytes': 0, 'buffers': [5]} | |
+ ['audio', 'nn::codec::detail::IHardwareOpusDecoderManager', 2] = {'inbytes': 4, 'outbytes': 0, 'outinterfaces': ['nn::codec::detail::IHardwareOpusDecoder'], 'inhandles': [1], 'buffers': [0x19]} | |
+ ['audio', 'nn::codec::detail::IHardwareOpusDecoderManager', 3] = {'inbytes': 0, 'outbytes': 4, 'buffers': [0x19]} | |
- ['bcat', 'nn::bcat::detail::ipc::IBcatService', 10100] = {'inbytes': 0, 'outbytes': 0} | |
+ ['bcat', 'nn::bcat::detail::ipc::IBcatService', 10100] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::bcat::detail::ipc::IDeliveryCacheProgressService']} | |
- ['bcat', 'nn::bcat::detail::ipc::IBcatService', 20100] = {'inbytes': 8, 'outbytes': 0} | |
+ ['bcat', 'nn::bcat::detail::ipc::IBcatService', 20100] = {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::bcat::detail::ipc::IDeliveryCacheProgressService']} | |
- ['bcat', 'nn::bcat::detail::ipc::IBcatService', 30101] = {'inbytes': 0x10, 'outbytes': 0} | |
- ['bcat', 'nn::bcat::detail::ipc::IBcatService', 30102] = {'inbytes': 8, 'outbytes': 0} | |
+ ['bcat', 'nn::bcat::detail::ipc::IBcatService', 30200] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['bcat', 'nn::bcat::detail::ipc::IBcatService', 30201] = {'inbytes': 8, 'outbytes': 0} | |
+ ['bcat', 'nn::bcat::detail::ipc::IBcatService', 30202] = {'inbytes': 8, 'outbytes': 0} | |
+ ['bcat', 'nn::bcat::detail::ipc::IBcatService', 30203] = {'inbytes': 8, 'outbytes': 0} | |
- ['bcat', 'nn::bcat::detail::ipc::IBcatService', 90200] = {'inbytes': 0, 'outbytes': 4, 'buffers': [6]} | |
+ ['bcat', 'nn::bcat::detail::ipc::IBcatService', 90200] = {'inbytes': 8, 'outbytes': 8, 'buffers': [6]} | |
+ ['bcat', 'nn::bcat::detail::ipc::IBcatService', 90201] = {'inbytes': 8, 'outbytes': 0} | |
+ ['bcat', 'nn::bcat::detail::ipc::IBcatService', 90300] = {'inbytes': 0, 'outbytes': 4, 'buffers': [6]} | |
- ['bcat', 'nn::bcat::detail::ipc::IServiceCreator', 3] = {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::bcat::detail::ipc::IDeliveryCacheProgressService'], 'pid': 1} | |
- ['bcat', 'nn::bcat::detail::ipc::IServiceCreator', 4] = {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::bcat::detail::ipc::IDeliveryCacheProgressService']} | |
+ ['bcat', 'nn::news::detail::ipc::INewsService', 30101] = {'inbytes': 4, 'outbytes': 4, 'buffers': [6]} | |
+ ['bcat', 'nn::news::detail::ipc::INewsService', 30400] = {'inbytes': 0, 'outbytes': 8, 'buffers': [6, 5]} | |
+ ['bcat', 'nn::news::detail::ipc::INewsService', 40101] = {'inbytes': 8, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 40] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0x16]} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 41] = {'inbytes': 1, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 42] = {'inbytes': 0, 'outbytes': 1} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 43] = {'inbytes': 1, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 44] = {'inbytes': 0, 'outbytes': 1} | |
- ['bsdsocket', 'nn::bsdsocket::cfg::ServerInterface', 0] = {'inbytes': 0x28, 'outbytes': 0, 'buffers': [5]} | |
+ ['bsdsocket', 'nn::bsdsocket::cfg::ServerInterface', 0] = {'inbytes': 0x2C, 'outbytes': 0, 'buffers': [5]} | |
- ['bsdsocket', 'nn::bsdsocket::cfg::ServerInterface', 1] = {'inbytes': 0x28, 'outbytes': 0, 'outhandles': [1], 'buffers': [5]} | |
+ ['bsdsocket', 'nn::bsdsocket::cfg::ServerInterface', 1] = {'inbytes': 0x2C, 'outbytes': 0, 'outhandles': [1], 'buffers': [5]} | |
+ ['bsdsocket', 'nn::socket::sf::IClient', 29] = {'inbytes': 0x20, 'outbytes': 8, 'buffers': [0x22]} | |
+ ['bsdsocket', 'nn::socket::sf::IClient', 30] = {'inbytes': 0xC, 'outbytes': 8, 'buffers': [0x21, 0x21]} | |
- ['btm', 'nn::btm::IBtm', 2] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['btm', 'nn::btm::IBtm', 2] = {'inbytes': 0, 'outbytes': 1, 'outhandles': [1]} | |
- ['btm', 'nn::btm::IBtm', 8] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['btm', 'nn::btm::IBtm', 8] = {'inbytes': 0, 'outbytes': 1, 'outhandles': [1]} | |
- ['btm', 'nn::btm::IBtm', 18] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['btm', 'nn::btm::IBtm', 18] = {'inbytes': 0, 'outbytes': 1, 'outhandles': [1]} | |
- ['btm', 'nn::btm::IBtmDebug', 0] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['btm', 'nn::btm::IBtmDebug', 0] = {'inbytes': 0, 'outbytes': 1, 'outhandles': [1]} | |
+ ['btm', 'nn::btm::IBtmSystemCore', 7] = {'inbytes': 0, 'outbytes': 1, 'outhandles': [1]} | |
+ ['btm', 'nn::btm::IBtmSystemCore', 8] = {'inbytes': 0, 'outbytes': 1, 'outhandles': [1]} | |
+ ['btm', 'nn::btm::IBtmSystemCore', 9] = {'inbytes': 0, 'outbytes': 1} | |
+ ['capsrv', 'nn::capsrv::sf::IAlbumAccessorService', 12] = {'inbytes': 0x38, 'outbytes': 0x10, 'buffers': [0x46, 6]} | |
+ ['capsrv', 'nn::capsrv::sf::IAlbumAccessorService', 13] = {'inbytes': 0x38, 'outbytes': 0x10, 'buffers': [0x46, 6]} | |
+ ['capsrv', 'nn::capsrv::sf::IAlbumAccessorService', 14] = {'inbytes': 0x38, 'outbytes': 0x50, 'buffers': [0x46, 6]} | |
- ['capsrv', 'nn::capsrv::sf::IAlbumAccessorService', 202] = {'inbytes': 0x38, 'outbytes': 0x20, 'buffers': [5, 5]} | |
+ ['capsrv', 'nn::capsrv::sf::IAlbumAccessorService', 1001] = {'inbytes': 0x38, 'outbytes': 0x50, 'buffers': [0x46, 6]} | |
+ ['capsrv', 'nn::capsrv::sf::IAlbumAccessorService', 1002] = {'inbytes': 0x38, 'outbytes': 0x20, 'buffers': [5, 5]} | |
+ ['erpt', 'nn::erpt::sf::IContext', 2] = {'inbytes': 0x18, 'outbytes': 0} | |
+ ['erpt', 'nn::erpt::sf::IContext', 3] = {'inbytes': 0, 'outbytes': 0} | |
+ ['erpt', 'nn::erpt::sf::IContext', 4] = {'inbytes': 0, 'outbytes': 0} | |
+ ['erpt', 'nn::erpt::sf::IContext', 5] = {'inbytes': 0, 'outbytes': 0} | |
- ['es', 'nn::es::IETicketService', 8] = {'inbytes': 0x10, 'outbytes': 0, 'buffers': [0x16]} | |
+ ['es', 'nn::es::IETicketService', 8] = {'inbytes': 0x14, 'outbytes': 0, 'buffers': [0x16]} | |
+ ['friends', 'nn::friends::detail::ipc::IFriendService', 20301] = {'inbytes': 0x18, 'outbytes': 4, 'buffers': [0x1A, 6]} | |
+ ['friends', 'nn::friends::detail::ipc::IFriendService', 30217] = {'inbytes': 0x80, 'outbytes': 0} | |
+ ['fs', 'nn::fssrv::sf::IDeviceOperator', 217] = {'inbytes': 0, 'outbytes': 0x40} | |
+ ['fs', 'nn::fssrv::sf::IDeviceOperator', 218] = {'inbytes': 8, 'outbytes': 0, 'buffers': [6]} | |
+ ['fs', 'nn::fssrv::sf::IFileSystem', 13] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0x19]} | |
+ ['fs', 'nn::fssrv::sf::IFileSystem', 14] = {'inbytes': 0, 'outbytes': 0x20, 'buffers': [0x19]} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 9] = {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::fssrv::sf::IFileSystem']} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 32] = {'inbytes': 0x20, 'outbytes': 0} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 57] = {'inbytes': 0x10, 'outbytes': 0, 'buffers': [6]} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 201] = {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::fssrv::sf::IStorage']} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 610] = {'inbytes': 0, 'outbytes': 0x18, 'buffers': [0x19]} | |
+ ['glue', 'nn::bgtc::IStateControlService', 5] = {'inbytes': 1, 'outbytes': 0} | |
+ ['glue', 'nn::bgtc::ITaskService', 6] = {'inbytes': 0, 'outbytes': 1} | |
+ ['glue', 'nn::bgtc::ITaskService', 101] = {'inbytes': 0, 'outbytes': 4} | |
+ ['glue', 'nn::bgtc::ITaskService', 102] = {'inbytes': 0, 'outbytes': 1} | |
+ ['glue', 'nn::bgtc::ITaskService', 103] = {'inbytes': 0, 'outbytes': 1} | |
+ ['hid', 'nn::ahid::ICtrlSession', 12] = {'inbytes': 8, 'outbytes': 4, 'buffers': [5]} | |
- ['hid', 'nn::ahid::IReadSession', 0] = {'inbytes': 0, 'outbytes': 4, 'buffers': [6]} | |
+ ['hid', 'nn::ahid::IReadSession', 0] = {'inbytes': 8, 'outbytes': 4, 'buffers': [6]} | |
- ['hid', 'nn::ahid::IServerSession', 4] = {'inbytes': 4, 'outbytes': 0, 'outinterfaces': ['nn::ahid::IWriteSession']} | |
- ['hid', 'nn::ahid::IWriteSession'] = {0: {'inbytes': 0, 'outbytes': 4, 'buffers': [5]}} | |
+ ['hid', 'nn::hid::IHidDebugServer', 133] = {'inbytes': 0x18, 'outbytes': 0, 'pid': 1} | |
+ ['hid', 'nn::hid::IHidDebugServer', 134] = {'inbytes': 0x10, 'outbytes': 8, 'pid': 1} | |
+ ['hid', 'nn::hid::IHidDebugServer', 135] = {'inbytes': 0x18, 'outbytes': 0, 'pid': 1} | |
+ ['hid', 'nn::hid::IHidDebugServer', 136] = {'inbytes': 0x10, 'outbytes': 8, 'pid': 1} | |
+ ['hid', 'nn::hid::IHidDebugServer', 140] = {'inbytes': 0, 'outbytes': 0} | |
- ['hid', 'nn::hid::IHidDebugServer', 203] = {'inbytes': 0x20, 'outbytes': 0, 'inhandles': [1, 1], 'outhandles': [1]} | |
+ ['hid', 'nn::hid::IHidDebugServer', 203] = {'inbytes': 8, 'outbytes': 0} | |
- ['hid', 'nn::hid::IHidDebugServer', 205] = {'inbytes': 8, 'outbytes': 4} | |
+ ['hid', 'nn::hid::IHidDebugServer', 205] = {'inbytes': 8, 'outbytes': 0x10} | |
- ['hid', 'nn::hid::IHidDebugServer', 206] = {'inbytes': 8, 'outbytes': 4} | |
+ ['hid', 'nn::hid::IHidDebugServer', 206] = {'inbytes': 8, 'outbytes': 0x10} | |
- ['hid', 'nn::hid::IHidDebugServer', 207] = {'inbytes': 8, 'outbytes': 5} | |
+ ['hid', 'nn::hid::IHidDebugServer', 207] = {'inbytes': 0, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidDebugServer', 208] = {'inbytes': 8, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidDebugServer', 209] = {'inbytes': 8, 'outbytes': 0x10} | |
+ ['hid', 'nn::hid::IHidDebugServer', 221] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidServer', 300] = {'inbytes': 8, 'outbytes': 0, 'pid': 1} | |
+ ['hid', 'nn::hid::IHidServer', 301] = {'inbytes': 0x10, 'outbytes': 0, 'pid': 1} | |
+ ['hid', 'nn::hid::IHidServer', 302] = {'inbytes': 0x10, 'outbytes': 0, 'pid': 1} | |
+ ['hid', 'nn::hid::IHidServer', 400] = {'inbytes': 0, 'outbytes': 1} | |
+ ['hid', 'nn::hid::IHidServer', 401] = {'inbytes': 1, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidServer', 402] = {'inbytes': 4, 'outbytes': 1} | |
+ ['hid', 'nn::hid::IHidSystemServer', 321] = {'inbytes': 4, 'outbytes': 8, 'buffers': [0xA]} | |
+ ['hid', 'nn::hid::IHidSystemServer', 512] = {'inbytes': 8, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidSystemServer', 513] = {'inbytes': 0, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidSystemServer', 544] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['hid', 'nn::hid::IHidSystemServer', 545] = {'inbytes': 6, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidSystemServer', 546] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['hid', 'nn::hid::IHidSystemServer', 547] = {'inbytes': 0, 'outbytes': 8} | |
+ ['hid', 'nn::hid::IHidSystemServer', 805] = {'inbytes': 8, 'outbytes': 6} | |
+ ['hid', 'nn::hid::IHidSystemServer', 806] = {'inbytes': 8, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidSystemServer', 850] = {'inbytes': 0, 'outbytes': 1} | |
+ ['hid', 'nn::hid::IHidSystemServer', 851] = {'inbytes': 1, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidSystemServer', 852] = {'inbytes': 8, 'outbytes': 1} | |
+ ['hid', 'nn::hid::IHidSystemServer', 1000] = {'inbytes': 0, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidSystemServer', 1001] = {'inbytes': 8, 'outbytes': 0x10} | |
+ ['hid', 'nn::hid::IHidSystemServer', 1002] = {'inbytes': 8, 'outbytes': 0x10} | |
+ ['hid', 'nn::hid::IHidSystemServer', 1003] = {'inbytes': 8, 'outbytes': 1} | |
+ ['hid', 'nn::hid::IHidSystemServer', 1004] = {'inbytes': 8, 'outbytes': 8} | |
+ ['hid', 'nn::hid::IHidSystemServer', 1005] = {'inbytes': 8, 'outbytes': 8} | |
+ ['hid', 'nn::hid::IHidSystemServer', 1006] = {'inbytes': 0, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidSystemServer', 1007] = {'inbytes': 8, 'outbytes': 4} | |
+ ['hid', 'nn::hid::IHidTemporaryServer'] = {0: {'inbytes': 0x10, 'outbytes': 0x18, 'pid': 1}} | |
+ ['hid', 'nn::irsensor::IIrSensorServer', 314] = {'inbytes': 0x10, 'outbytes': 0, 'pid': 1} | |
+ ['lbl', 'nn::lbl::detail::ILblController', 23] = {'inbytes': 0, 'outbytes': 1} | |
+ ['lbl', 'nn::lbl::detail::ILblController', 24] = {'inbytes': 4, 'outbytes': 0} | |
+ ['lbl', 'nn::lbl::detail::ILblController', 25] = {'inbytes': 0, 'outbytes': 4} | |
+ ['lbl', 'nn::lbl::detail::ILblController', 26] = {'inbytes': 0, 'outbytes': 0} | |
+ ['lbl', 'nn::lbl::detail::ILblController', 27] = {'inbytes': 0, 'outbytes': 0} | |
+ ['lbl', 'nn::lbl::detail::ILblController', 28] = {'inbytes': 0, 'outbytes': 1} | |
- ['loader', 'nn::ldr::detail::IRoInterface'] = {0: {'inbytes': 0x28, 'outbytes': 8, 'pid': 1}, 1: {'inbytes': 0x10, 'outbytes': 0, 'pid': 1}, 2: {'inbytes': 0x18, 'outbytes': 0, 'pid': 1}, 3: {'inbytes': 0x10, 'outbytes': 0, 'pid': 1}, 4: {'inbytes': 8, 'outbytes': 0, 'inhandles': [1], 'pid': 1}} | |
- ['ncm', 'nn::ncm::IContentStorage', 19] = {'inbytes': 0x10, 'outbytes': 0x10} | |
+ ['ncm', 'nn::ncm::IContentStorage', 19] = {'inbytes': 0x10, 'outbytes': 0x18} | |
- ['ncm', 'nn::ncm::IContentStorage', 20] = {'inbytes': 0x10, 'outbytes': 0x10} | |
+ ['ncm', 'nn::ncm::IContentStorage', 20] = {'inbytes': 0x10, 'outbytes': 0x18} | |
+ ['ncm', 'nn::ncm::IContentStorage', 24] = {'inbytes': 0, 'outbytes': 0} | |
+ ['nfc', 'nn::nfc::mifare::detail::IUser', 13] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['nfc', 'nn::nfp::detail::IDebug', 23] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['nfc', 'nn::nfp::detail::IDebug', 24] = {'inbytes': 0xC, 'outbytes': 0, 'buffers': [5]} | |
+ ['nfc', 'nn::nfp::detail::IDebug', 300] = {'inbytes': 0x10, 'outbytes': 0, 'buffers': [5], 'pid': 1} | |
+ ['nfc', 'nn::nfp::detail::IDebug', 301] = {'inbytes': 0, 'outbytes': 0} | |
+ ['nfc', 'nn::nfp::detail::IDebug', 302] = {'inbytes': 0, 'outbytes': 4, 'buffers': [0xA]} | |
+ ['nfc', 'nn::nfp::detail::IDebug', 303] = {'inbytes': 0xC, 'outbytes': 0} | |
+ ['nfc', 'nn::nfp::detail::IDebug', 304] = {'inbytes': 8, 'outbytes': 0} | |
+ ['nfc', 'nn::nfp::detail::IDebug', 305] = {'inbytes': 0x10, 'outbytes': 4, 'buffers': [6, 5]} | |
+ ['nfc', 'nn::nfp::detail::IDebug', 306] = {'inbytes': 8, 'outbytes': 0, 'buffers': [0x1A]} | |
+ ['nfc', 'nn::nfp::detail::IDebug', 307] = {'inbytes': 8, 'outbytes': 0, 'outhandles': [1]} | |
+ ['nfc', 'nn::nfp::detail::IDebug', 308] = {'inbytes': 8, 'outbytes': 0, 'outhandles': [1]} | |
+ ['nfc', 'nn::nfp::detail::IDebug', 309] = {'inbytes': 0, 'outbytes': 4} | |
+ ['nfc', 'nn::nfp::detail::IDebug', 310] = {'inbytes': 8, 'outbytes': 4} | |
+ ['nfc', 'nn::nfp::detail::IDebug', 311] = {'inbytes': 8, 'outbytes': 4} | |
+ ['nfc', 'nn::nfp::detail::IDebug', 312] = {'inbytes': 8, 'outbytes': 0} | |
+ ['nfc', 'nn::nfp::detail::IDebug', 313] = {'inbytes': 8, 'outbytes': 0} | |
+ ['nfc', 'nn::nfp::detail::IDebug', 314] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['nfc', 'nn::nfp::detail::ISystem', 23] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['nfc', 'nn::nfp::detail::IUser', 23] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['nfc', 'nn::nfp::detail::IUser', 24] = {'inbytes': 0xC, 'outbytes': 0, 'buffers': [5]} | |
+ ['nifm', 'nn::nifm::detail::INetworkProfile', 2] = {'inbytes': 0, 'outbytes': 0x10} | |
- ['nifm', 'nn::nifm::detail::IRequest', 5] = {'inbytes': 0x20, 'outbytes': 0} | |
+ ['nifm', 'nn::nifm::detail::IRequest', 5] = {'inbytes': 0x24, 'outbytes': 0} | |
- ['nifm', 'nn::nifm::detail::IRequest', 19] = {'inbytes': 0, 'outbytes': 0x20} | |
+ ['nifm', 'nn::nifm::detail::IRequest', 19] = {'inbytes': 0, 'outbytes': 0x24} | |
+ ['nifm', 'nn::nifm::detail::IRequest', 23] = {'inbytes': 1, 'outbytes': 0} | |
+ ['nifm', 'nn::nifm::detail::IRequest', 24] = {'inbytes': 4, 'outbytes': 0} | |
+ ['nifm', 'nn::nifm::detail::IRequest', 25] = {'inbytes': 4, 'outbytes': 0} | |
+ ['nifm', 'nn::nifm::detail::IStaticService', 5] = {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::nifm::detail::IGeneralService'], 'pid': 1} | |
- ['nim', 'nn::nim::detail::INetworkInstallManager', 4] = {'inbytes': 0x10, 'outbytes': 0x28} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 4] = {'inbytes': 0x10, 'outbytes': 0x38} | |
- ['nim', 'nn::nim::detail::INetworkInstallManager', 10] = {'inbytes': 0x10, 'outbytes': 0x28} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 10] = {'inbytes': 0x10, 'outbytes': 0x40} | |
- ['nim', 'nn::nim::detail::INetworkInstallManager', 35] = {'inbytes': 0x10, 'outbytes': 0x20} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 35] = {'inbytes': 0x10, 'outbytes': 0x30} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 42] = {'inbytes': 0x10, 'outbytes': 0x10} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 43] = {'inbytes': 0, 'outbytes': 0x10} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 44] = {'inbytes': 0x10, 'outbytes': 1} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 45] = {'inbytes': 0x28, 'outbytes': 8} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 46] = {'inbytes': 0, 'outbytes': 0} | |
+ ['nim', 'nn::nim::detail::IShopServiceManager', 1] = {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncValue'], 'outhandles': [1]} | |
+ ['nim', 'nn::nim::detail::IShopServiceManager', 106] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncResult'], 'outhandles': [1]} | |
+ ['nim', 'nn::nim::detail::IShopServiceManager', 107] = {'inbytes': 8, 'outbytes': 1} | |
+ ['nim', 'nn::ntc::detail::service::IEnsureNetworkClockAvailabilityService', 5] = {'inbytes': 0, 'outbytes': 8} | |
+ ['nim', 'nn::ntc::detail::service::IStaticService', 100] = {'inbytes': 0, 'outbytes': 0} | |
+ ['nim', 'nn::ntc::detail::service::IStaticService', 101] = {'inbytes': 0, 'outbytes': 0} | |
+ ['npns', 'nn::npns::INpnsSystem', 104] = {'inbytes': 0, 'outbytes': 0, 'buffers': [6]} | |
+ ['npns', 'nn::npns::INpnsSystem', 105] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['npns', 'nn::npns::INpnsSystem', 201] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['npns', 'nn::npns::INpnsSystem', 202] = {'inbytes': 4, 'outbytes': 0} | |
+ ['npns', 'nn::npns::INpnsUser', 104] = {'inbytes': 0, 'outbytes': 0, 'buffers': [6]} | |
- ['ns', 'nn::mii::detail::IDatabaseService'] = {0: {'inbytes': 4, 'outbytes': 1}, 1: {'inbytes': 0, 'outbytes': 1}, 2: {'inbytes': 4, 'outbytes': 4}, 3: {'inbytes': 4, 'outbytes': 4, 'buffers': [6]}, 4: {'inbytes': 4, 'outbytes': 4, 'buffers': [6]}, 5: {'inbytes': 0x5C, 'outbytes': 0x58}, 6: {'inbytes': 0xC, 'outbytes': 0x58}, 7: {'inbytes': 4, 'outbytes': 0x58}, 8: {'inbytes': 4, 'outbytes': 4, 'buffers': [6]}, 9: {'inbytes': 4, 'outbytes': 4, 'buffers': [6]}, 10: {'inbytes': 0x48, 'outbytes': 0x44}, 11: {'inbytes': 0x11, 'outbytes': 4}, 12: {'inbytes': 0x14, 'outbytes': 0}, 13: {'inbytes': 0x44, 'outbytes': 0}, 14: {'inbytes': 0x10, 'outbytes': 0}, 15: {'inbytes': 0, 'outbytes': 0}, 16: {'inbytes': 0, 'outbytes': 0}, 17: {'inbytes': 0, 'outbytes': 0}, 18: {'inbytes': 0, 'outbytes': 0, 'buffers': [5]}, 19: {'inbytes': 0, 'outbytes': 0, 'buffers': [6]}, 20: {'inbytes': 0, 'outbytes': 1}, 21: {'inbytes': 0x58, 'outbytes': 4}} | |
- ['ns', 'nn::mii::detail::IStaticService'] = {0: {'inbytes': 4, 'outbytes': 0, 'outinterfaces': ['nn::mii::detail::IDatabaseService']}} | |
+ ['ns', 'nn::ns::detail::IAccountProxyInterface'] = {0: {'inbytes': 0x21, 'outbytes': 0, 'buffers': [5]}} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 66] = {'inbytes': 0, 'outbytes': 0x10} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 67] = {'inbytes': 8, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 68] = {'inbytes': 8, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 69] = {'inbytes': 8, 'outbytes': 0x10} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 70] = {'inbytes': 0, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 71] = {'inbytes': 1, 'outbytes': 0x10} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 80] = {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::ns::detail::IAsyncResult'], 'outhandles': [1]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 81] = {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::ns::detail::IAsyncResult'], 'outhandles': [1], 'buffers': [5]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 82] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 505] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 506] = {'inbytes': 0, 'outbytes': 1} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 507] = {'inbytes': 0, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 508] = {'inbytes': 0, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 606] = {'inbytes': 0x10, 'outbytes': 1} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 802] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::ns::detail::IAsyncValue'], 'outhandles': [1]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 909] = {'inbytes': 8, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 1002] = {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::ns::detail::IProgressAsyncResult'], 'outhandles': [1]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 1303] = {'inbytes': 8, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 1304] = {'inbytes': 0x10, 'outbytes': 0} | |
- ['ns', 'nn::ns::detail::IApplicationManagerInterface', 1503] = {'inbytes': 0, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 1504] = {'inbytes': 0, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 1505] = {'inbytes': 0, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 1601] = {'inbytes': 0, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 1701] = {'inbytes': 0, 'outbytes': 0, 'buffers': [6, 5]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 1702] = {'inbytes': 8, 'outbytes': 1} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 1803] = {'inbytes': 0, 'outbytes': 4, 'buffers': [6]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 1900] = {'inbytes': 4, 'outbytes': 1} | |
+ ['ns', 'nn::ns::detail::IContentManagementInterface'] = {11: {'inbytes': 8, 'outbytes': 0x80}, 43: {'inbytes': 0, 'outbytes': 0}, 47: {'inbytes': 1, 'outbytes': 8}, 48: {'inbytes': 1, 'outbytes': 8}, 600: {'inbytes': 8, 'outbytes': 4}, 601: {'inbytes': 0x10, 'outbytes': 4, 'buffers': [6]}, 605: {'inbytes': 0x10, 'outbytes': 4, 'buffers': [6]}, 607: {'inbytes': 0, 'outbytes': 1}} | |
+ ['ns', 'nn::ns::detail::IDocumentInterface'] = {21: {'inbytes': 0x10, 'outbytes': 0, 'buffers': [0x16]}, 23: {'inbytes': 0x10, 'outbytes': 0}} | |
+ ['ns', 'nn::ns::detail::IDownloadTaskInterface'] = {701: {'inbytes': 0, 'outbytes': 0}, 702: {'inbytes': 0, 'outbytes': 0}, 703: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::ns::detail::IAsyncResult'], 'outhandles': [1]}, 704: {'inbytes': 0, 'outbytes': 4, 'buffers': [6]}, 705: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::ns::detail::IAsyncValue'], 'outhandles': [1]}} | |
+ ['ns', 'nn::ns::detail::IFactoryResetInterface'] = {100: {'inbytes': 0, 'outbytes': 0}, 101: {'inbytes': 0, 'outbytes': 0}, 102: {'inbytes': 0, 'outbytes': 0}} | |
+ ['ns', 'nn::ns::detail::IServiceGetterInterface'] = {7994: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::ns::detail::IFactoryResetInterface']}, 7995: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::ns::detail::IAccountProxyInterface']}, 7996: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::ns::detail::IApplicationManagerInterface']}, 7997: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::ns::detail::IDownloadTaskInterface']}, 7998: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::ns::detail::IContentManagementInterface']}, 7999: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::ns::detail::IDocumentInterface']}} | |
+ ['ns', 'nn::ns::detail::ISystemUpdateInterface', 11] = {'inbytes': 0, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::ISystemUpdateInterface', 12] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['ns', 'nn::ns::detail::ISystemUpdateInterface', 13] = {'inbytes': 0, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::ISystemUpdateInterface', 14] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['ns', 'nn::ns::detail::ISystemUpdateInterface', 15] = {'inbytes': 0, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IVulnerabilityManagerInterface'] = {1200: {'inbytes': 0, 'outbytes': 1}} | |
- ['ns', 'nn::pdm::detail::INotifyService'] = {0: {'inbytes': 0x10, 'outbytes': 0}, 2: {'inbytes': 1, 'outbytes': 0}, 3: {'inbytes': 1, 'outbytes': 0}, 4: {'inbytes': 0, 'outbytes': 0}, 5: {'inbytes': 0, 'outbytes': 0, 'buffers': [5]}} | |
- ['ns', 'nn::pdm::detail::IQueryService'] = {0: {'inbytes': 4, 'outbytes': 4, 'buffers': [6]}, 1: {'inbytes': 0, 'outbytes': 4, 'buffers': [6]}, 2: {'inbytes': 0x10, 'outbytes': 4, 'buffers': [6]}, 3: {'inbytes': 8, 'outbytes': 4, 'buffers': [6]}, 4: {'inbytes': 8, 'outbytes': 0x28}, 5: {'inbytes': 0x18, 'outbytes': 0x28}, 6: {'inbytes': 0x10, 'outbytes': 0x28}, 7: {'inbytes': 0, 'outbytes': 4, 'buffers': [6, 5]}, 8: {'inbytes': 4, 'outbytes': 4, 'buffers': [6]}, 9: {'inbytes': 0, 'outbytes': 0xC}} | |
- ['ns', 'nn::pl::detail::ISharedFontManager'] = {0: {'inbytes': 4, 'outbytes': 0}, 1: {'inbytes': 4, 'outbytes': 4}, 2: {'inbytes': 4, 'outbytes': 4}, 3: {'inbytes': 4, 'outbytes': 4}, 4: {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]}, 5: {'inbytes': 8, 'outbytes': 8, 'buffers': [6, 6, 6]}} | |
+ ['nvservices', 'nns::nvdrv::INvDrvServices', 10] = {'inbytes': 4, 'outbytes': 4, 'inhandles': [1]} | |
+ ['nvservices', 'nns::nvdrv::INvDrvServices', 11] = {'inbytes': 8, 'outbytes': 4, 'buffers': [0x21, 0x22, 0x21]} | |
+ ['nvservices', 'nns::nvdrv::INvDrvServices', 12] = {'inbytes': 8, 'outbytes': 4, 'buffers': [0x21, 0x22, 0x22]} | |
+ ['nvservices', 'nns::nvdrv::INvDrvServices', 13] = {'inbytes': 8, 'outbytes': 0} | |
+ ['nvservices', 'nv::gemcontrol::INvGemControl', 7] = {'inbytes': 0, 'outbytes': 0x10} | |
+ ['pcie.withoutHb', 'nn::pcie::detail::ISession', 21] = {'inbytes': 8, 'outbytes': 0} | |
+ ['pctl', 'nn::pctl::detail::ipc::IParentalControlService', 1047] = {'inbytes': 8, 'outbytes': 0} | |
- ['pcv', 'nn::bpc::IBoardPowerControlManager', 10] = {'inbytes': 0, 'outbytes': 0x10} | |
+ ['pcv', 'nn::bpc::IBoardPowerControlManager', 10] = {'inbytes': 0, 'outbytes': 0xC} | |
+ ['pcv', 'nn::bpc::IBoardPowerControlManager', 11] = {'inbytes': 0x10, 'outbytes': 4} | |
+ ['pcv', 'nn::bpc::IBoardPowerControlManager', 12] = {'inbytes': 0, 'outbytes': 4} | |
+ ['pcv', 'nn::bpc::IBoardPowerControlManager', 13] = {'inbytes': 4, 'outbytes': 0} | |
+ ['pcv', 'nn::bpc::IRtcManager', 4] = {'inbytes': 0, 'outbytes': 0} | |
+ ['pcv', 'nn::pcv::detail::IPcvService', 18] = {'inbytes': 8, 'outbytes': 0} | |
+ ['pcv', 'nn::pcv::detail::IPcvService', 19] = {'inbytes': 4, 'outbytes': 0} | |
+ ['pcv', 'nn::pcv::detail::IPcvService', 20] = {'inbytes': 8, 'outbytes': 0} | |
+ ['pcv', 'nn::pcv::detail::IPcvService', 21] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['pcv', 'nn::pcv::detail::IPcvService', 22] = {'inbytes': 0, 'outbytes': 4} | |
+ ['pcv', 'nn::pcv::detail::IPcvService', 23] = {'inbytes': 8, 'outbytes': 4, 'buffers': [0xA, 0xA]} | |
+ ['pcv', 'nn::pcv::detail::IPcvService', 24] = {'inbytes': 4, 'outbytes': 4, 'buffers': [0xA]} | |
+ ['pcv', 'nn::pcv::detail::IPcvService', 25] = {'inbytes': 4, 'outbytes': 4, 'buffers': [0xA]} | |
+ ['pcv', 'nn::pcv::detail::IPcvService', 26] = {'inbytes': 4, 'outbytes': 4, 'buffers': [0xA]} | |
+ ['pcv', 'nn::timesrv::detail::service::IStaticService', 200] = {'inbytes': 0, 'outbytes': 1} | |
+ ['pcv', 'nn::timesrv::detail::service::ISteadyClock', 200] = {'inbytes': 0, 'outbytes': 8} | |
+ ['pcv', 'nn::timesrv::detail::service::ISteadyClock', 201] = {'inbytes': 8, 'outbytes': 0} | |
+ ['ptm', 'nn::psm::IPsmServer', 18] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['ro'] = {'nn::ro::detail::IDebugMonitorInterface': {0: {'inbytes': 8, 'outbytes': 4, 'buffers': [6]}}, 'nn::ro::detail::IRoInterface': {0: {'inbytes': 0x28, 'outbytes': 8, 'pid': 1}, 1: {'inbytes': 0x10, 'outbytes': 0, 'pid': 1}, 2: {'inbytes': 0x18, 'outbytes': 0, 'pid': 1}, 3: {'inbytes': 0x10, 'outbytes': 0, 'pid': 1}, 4: {'inbytes': 8, 'outbytes': 0, 'inhandles': [1], 'pid': 1}}} | |
+ ['sdb'] = {'nn::mii::detail::IDatabaseService': {0: {'inbytes': 4, 'outbytes': 1}, 1: {'inbytes': 0, 'outbytes': 1}, 2: {'inbytes': 4, 'outbytes': 4}, 3: {'inbytes': 4, 'outbytes': 4, 'buffers': [6]}, 4: {'inbytes': 4, 'outbytes': 4, 'buffers': [6]}, 5: {'inbytes': 0x5C, 'outbytes': 0x58}, 6: {'inbytes': 0xC, 'outbytes': 0x58}, 7: {'inbytes': 4, 'outbytes': 0x58}, 8: {'inbytes': 4, 'outbytes': 4, 'buffers': [6]}, 9: {'inbytes': 4, 'outbytes': 4, 'buffers': [6]}, 10: {'inbytes': 0x48, 'outbytes': 0x44}, 11: {'inbytes': 0x11, 'outbytes': 4}, 12: {'inbytes': 0x14, 'outbytes': 0}, 13: {'inbytes': 0x44, 'outbytes': 0}, 14: {'inbytes': 0x10, 'outbytes': 0}, 15: {'inbytes': 0, 'outbytes': 0}, 16: {'inbytes': 0, 'outbytes': 0}, 17: {'inbytes': 0, 'outbytes': 0}, 18: {'inbytes': 0, 'outbytes': 0, 'buffers': [5]}, 19: {'inbytes': 0, 'outbytes': 0, 'buffers': [6]}, 20: {'inbytes': 0, 'outbytes': 1}, 21: {'inbytes': 0x58, 'outbytes': 4}}, 'nn::mii::detail::IStaticService': {0: {'inbytes': 4, 'outbytes': 0, 'outinterfaces': ['nn::mii::detail::IDatabaseService']}}, 'nn::pdm::detail::INotifyService': {0: {'inbytes': 0x10, 'outbytes': 0}, 2: {'inbytes': 1, 'outbytes': 0}, 3: {'inbytes': 1, 'outbytes': 0}, 4: {'inbytes': 0, 'outbytes': 0}, 5: {'inbytes': 0, 'outbytes': 0, 'buffers': [5]}}, 'nn::pdm::detail::IQueryService': {0: {'inbytes': 4, 'outbytes': 4, 'buffers': [6]}, 1: {'inbytes': 0, 'outbytes': 4, 'buffers': [6]}, 2: {'inbytes': 0x10, 'outbytes': 4, 'buffers': [6]}, 3: {'inbytes': 8, 'outbytes': 4, 'buffers': [6]}, 4: {'inbytes': 8, 'outbytes': 0x28}, 5: {'inbytes': 0x18, 'outbytes': 0x28}, 6: {'inbytes': 0x10, 'outbytes': 0x28}, 7: {'inbytes': 0, 'outbytes': 4, 'buffers': [6, 5]}, 8: {'inbytes': 4, 'outbytes': 4, 'buffers': [6]}, 9: {'inbytes': 0, 'outbytes': 0xC}, 10: {'inbytes': 4, 'outbytes': 4, 'buffers': [6]}}, 'nn::pl::detail::ISharedFontManager': {0: {'inbytes': 4, 'outbytes': 0}, 1: {'inbytes': 4, 'outbytes': 4}, 2: {'inbytes': 4, 'outbytes': 4}, 3: {'inbytes': 4, 'outbytes': 4}, 4: {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]}, 5: {'inbytes': 8, 'outbytes': 8, 'buffers': [6, 6, 6]}}} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 4] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0x1A]} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 103] = {'inbytes': 0, 'outbytes': 1} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 104] = {'inbytes': 1, 'outbytes': 0} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 105] = {'inbytes': 8, 'outbytes': 0} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 106] = {'inbytes': 0, 'outbytes': 8} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 107] = {'inbytes': 0, 'outbytes': 0x2C} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 108] = {'inbytes': 0x2C, 'outbytes': 0} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 109] = {'inbytes': 0, 'outbytes': 4} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 110] = {'inbytes': 4, 'outbytes': 0} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 111] = {'inbytes': 0, 'outbytes': 1} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 112] = {'inbytes': 1, 'outbytes': 0} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 113] = {'inbytes': 0, 'outbytes': 1} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 114] = {'inbytes': 1, 'outbytes': 0} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 115] = {'inbytes': 0, 'outbytes': 1} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 116] = {'inbytes': 1, 'outbytes': 0} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 117] = {'inbytes': 0, 'outbytes': 1} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 118] = {'inbytes': 1, 'outbytes': 0} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 119] = {'inbytes': 1, 'outbytes': 3} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 120] = {'inbytes': 0, 'outbytes': 4} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 121] = {'inbytes': 4, 'outbytes': 0} | |
- ['spl', 'nn::spl::detail::IGeneralInterface', 18] = {'inbytes': 0, 'outbytes': 0x10, 'buffers': [9, 9, 9]} | |
+ ['spl', 'nn::spl::detail::IGeneralInterface', 18] = {'inbytes': 4, 'outbytes': 0x10, 'buffers': [9, 9, 9]} | |
- ['spl', 'nn::spl::detail::IGeneralInterface', 20] = {'inbytes': 0x10, 'outbytes': 0x10} | |
+ ['spl', 'nn::spl::detail::IGeneralInterface', 20] = {'inbytes': 0x14, 'outbytes': 0x10} | |
+ ['spl', 'nn::spl::detail::IGeneralInterface', 24] = {'inbytes': 4, 'outbytes': 0} | |
+ ['spl', 'nn::spl::detail::IGeneralInterface', 25] = {'inbytes': 0, 'outbytes': 4} | |
+ ['ssl', 'nn::ssl::sf::ISslContext', 10] = {'inbytes': 0, 'outbytes': 8, 'buffers': [5]} | |
+ ['ssl', 'nn::ssl::sf::ISslContext', 11] = {'inbytes': 8, 'outbytes': 0} | |
- ['ssl', 'nn::ssl::sf::ISslService', 2] = {'inbytes': 0, 'outbytes': 0, 'buffers': [6, 5]} | |
+ ['ssl', 'nn::ssl::sf::ISslService', 2] = {'inbytes': 0, 'outbytes': 4, 'buffers': [6, 5]} | |
+ ['ssl', 'nn::ssl::sf::ISslService', 4] = {'inbytes': 8, 'outbytes': 0, 'buffers': [6, 5]} | |
+ ['ssl', 'nn::ssl::sf::ISslService', 5] = {'inbytes': 4, 'outbytes': 0} | |
- ['usb', 'nn::usb::hs::IClientEpSession', 5] = {'inbytes': 4, 'outbytes': 4, 'buffers': [6]} | |
+ ['usb', 'nn::usb::hs::IClientEpSession', 5] = {'inbytes': 4, 'outbytes': 4, 'buffers': [0x22]} | |
- ['usb', 'nn::usb::hs::IClientEpSession', 6] = {'inbytes': 0x20, 'outbytes': 4, 'buffers': [5]} | |
+ ['usb', 'nn::usb::hs::IClientEpSession', 6] = {'inbytes': 0x20, 'outbytes': 4, 'buffers': [0x21]} | |
- ['usb', 'nn::usb::hs::IClientRootSession', 7] = {'inbytes': 4, 'outbytes': 0, 'outinterfaces': ['nn::usb::hs::IClientIfSession'], 'buffers': [6]} | |
+ ['usb', 'nn::usb::hs::IClientRootSession', 7] = {'inbytes': 4, 'outbytes': 0, 'outinterfaces': ['nn::usb::hs::IClientIfSession'], 'buffers': [6, 6]} | |
+ ['usb', 'nn::usb::pd::detail::IPdCradleSession', 7] = {'inbytes': 0, 'outbytes': 1} | |
+ ['usb', 'nn::usb::pd::detail::IPdCradleSession', 8] = {'inbytes': 0, 'outbytes': 1} | |
+ ['vi', 'nn::capsrv::sf::IScreenShotApplicationService'] = {201: {'inbytes': 0x10, 'outbytes': 0x20, 'buffers': [0x45], 'pid': 1}, 203: {'inbytes': 0x50, 'outbytes': 0x20, 'buffers': [0x45], 'pid': 1}} | |
+ ['vi', 'nn::capsrv::sf::IScreenShotControlService', 1003] = {'inbytes': 0x58, 'outbytes': 0} | |
+ ['vi', 'nn::capsrv::sf::IScreenShotControlService', 1201] = {'inbytes': 0x10, 'outbytes': 0x18} | |
+ ['vi', 'nn::capsrv::sf::IScreenShotControlService', 1202] = {'inbytes': 0, 'outbytes': 0} | |
+ ['vi', 'nn::capsrv::sf::IScreenShotControlService', 1203] = {'inbytes': 8, 'outbytes': 8, 'buffers': [6]} | |
+ ['vi', 'nn::capsrv::sf::IScreenShotService', 203] = {'inbytes': 0x50, 'outbytes': 0x20, 'buffers': [0x45], 'pid': 1} | |
+ ['vi', 'nn::capsrv::sf::IScreenShotService', 204] = {'inbytes': 0x78, 'outbytes': 0x20, 'buffers': [0x45, 0x45]} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 1102] = {'inbytes': 8, 'outbytes': 0x10} | |
+ ['vi', 'nn::visrv::sf::ISystemDisplayService', 1204] = {'inbytes': 0x18, 'outbytes': 0} | |
+ ['vi', 'nns::hosbinder::IHOSBinderDriver', 3] = {'inbytes': 0xC, 'outbytes': 0, 'buffers': [0x21, 0x22]} | |
+ ['wlan', 'nn::wlan::detail::IInfraManager', 18] = {'inbytes': 0, 'outbytes': 4} | |
+ ['wlan', 'nn::wlan::detail::IInfraManager', 19] = {'inbytes': 0x18, 'outbytes': 0} | |
+ ['wlan', 'nn::wlan::detail::IInfraManager', 20] = {'inbytes': 0, 'outbytes': 0} | |
+ ['wlan', 'nn::wlan::detail::IInfraManager', 21] = {'inbytes': 0, 'outbytes': 4} | |
+ ['wlan', 'nn::wlan::detail::IInfraManager', 22] = {'inbytes': 4, 'outbytes': 0} | |
+ ['wlan', 'nn::wlan::detail::IInfraManager', 23] = {'inbytes': 4, 'outbytes': 0} | |
+ ['wlan', 'nn::wlan::detail::IInfraManager', 24] = {'inbytes': 0, 'outbytes': 0x5C} | |
+ ['wlan', 'nn::wlan::detail::IInfraManager', 25] = {'inbytes': 2, 'outbytes': 0} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- ['Bus', 'nn::gpio::IManager', 6] = {'inbytes': 1, 'outbytes': 0} | |
+ ['Bus', 'nn::gpio::IManager', 6] = {'inbytes': 4, 'outbytes': 0} | |
+ ['Bus', 'nn::gpio::IPadSession', 16] = {'inbytes': 4, 'outbytes': 0} | |
+ ['account', 'nn::account::IAccountServiceForAdministrator', 105] = {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::account::detail::IAsyncContext'], 'buffers': [0x19], 'pid': 1} | |
+ ['account', 'nn::account::IAccountServiceForApplication', 103] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::account::detail::IAsyncContext']} | |
+ ['account', 'nn::account::IAccountServiceForSystemService', 105] = {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::account::detail::IAsyncContext'], 'buffers': [0x19], 'pid': 1} | |
+ ['account', 'nn::account::baas::IAdministrator', 110] = {'inbytes': 8, 'outbytes': 4} | |
+ ['account', 'nn::account::baas::IAdministrator', 111] = {'inbytes': 8, 'outbytes': 0} | |
+ ['account', 'nn::account::baas::IAdministrator', 112] = {'inbytes': 8, 'outbytes': 0} | |
- ['account', 'nn::account::baas::IFloatingRegistrationRequest', 100] = {'inbytes': 0, 'outbytes': 0x10, 'outinterfaces': ['nn::account::detail::IAsyncContext']} | |
+ ['account', 'nn::account::baas::IFloatingRegistrationRequest', 100] = {'inbytes': 0, 'outbytes': 0x10} | |
- ['account', 'nn::account::baas::IFloatingRegistrationRequest', 101] = {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::account::detail::IAsyncContext']} | |
+ ['account', 'nn::account::baas::IFloatingRegistrationRequest', 101] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['account', 'nn::account::baas::IFloatingRegistrationRequest', 102] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::account::detail::IAsyncContext']} | |
+ ['account', 'nn::account::baas::IFloatingRegistrationRequest', 103] = {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::account::detail::IAsyncContext']} | |
+ ['account', 'nn::account::baas::IManagerForSystemService', 110] = {'inbytes': 8, 'outbytes': 4} | |
+ ['account', 'nn::account::baas::IManagerForSystemService', 111] = {'inbytes': 8, 'outbytes': 0} | |
+ ['account', 'nn::account::baas::IManagerForSystemService', 112] = {'inbytes': 8, 'outbytes': 0} | |
+ ['am', 'nn::am::service::IApplicationFunctions', 12] = {'inbytes': 8, 'outbytes': 0} | |
+ ['am', 'nn::am::service::IApplicationFunctions', 13] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['am', 'nn::am::service::IApplicationFunctions', 68] = {'inbytes': 0, 'outbytes': 0} | |
+ ['am', 'nn::am::service::IApplicationFunctions', 80] = {'inbytes': 0, 'outbytes': 0} | |
+ ['am', 'nn::am::service::IApplicationFunctions', 90] = {'inbytes': 1, 'outbytes': 0} | |
+ ['am', 'nn::am::service::ICommonStateGetter', 52] = {'inbytes': 1, 'outbytes': 0} | |
+ ['am', 'nn::am::service::ICommonStateGetter', 62] = {'inbytes': 0, 'outbytes': 4} | |
+ ['am', 'nn::am::service::ICommonStateGetter', 63] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['am', 'nn::am::service::IDisplayController', 22] = {'inbytes': 0, 'outbytes': 8} | |
+ ['am', 'nn::am::service::IDisplayController', 23] = {'inbytes': 0, 'outbytes': 0} | |
+ ['am', 'nn::am::service::IDisplayController', 24] = {'inbytes': 0, 'outbytes': 8} | |
+ ['am', 'nn::am::service::IDisplayController', 25] = {'inbytes': 0, 'outbytes': 0} | |
+ ['am', 'nn::am::service::IDisplayController', 26] = {'inbytes': 0, 'outbytes': 8} | |
+ ['am', 'nn::am::service::IDisplayController', 27] = {'inbytes': 0, 'outbytes': 0} | |
+ ['am', 'nn::am::service::IGlobalStateController', 15] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['am', 'nn::am::service::ILibraryAppletSelfAccessor', 18] = {'inbytes': 0, 'outbytes': 0x10} | |
+ ['am', 'nn::am::service::ILibraryAppletSelfAccessor', 19] = {'inbytes': 0, 'outbytes': 4} | |
+ ['am', 'nn::am::service::ILibraryAppletSelfAccessor', 51] = {'inbytes': 8, 'outbytes': 0, 'buffers': [0x15]} | |
+ ['am', 'nn::am::service::ILibraryAppletSelfAccessor', 60] = {'inbytes': 0, 'outbytes': 8} | |
+ ['am', 'nn::am::service::ILibraryAppletSelfAccessor', 100] = {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::grcsrv::IGameMovieTrimmer'], 'inhandles': [1]} | |
+ ['am', 'nn::am::service::IProcessWindingController', 41] = {'inbytes': 0, 'outbytes': 0, 'ininterfaces': ['nn::am::service::ILibraryAppletAccessor']} | |
+ ['am', 'nn::am::service::ISelfController', 20] = {'inbytes': 4, 'outbytes': 0} | |
+ ['am', 'nn::am::service::ISelfController', 41] = {'inbytes': 0, 'outbytes': 0} | |
+ ['am', 'nn::am::service::ISelfController', 42] = {'inbytes': 0, 'outbytes': 0x10} | |
+ ['am', 'nn::am::service::ISelfController', 70] = {'inbytes': 4, 'outbytes': 0, 'buffers': [5]} | |
+ ['am', 'nn::am::service::ISelfController', 80] = {'inbytes': 4, 'outbytes': 0} | |
+ ['am', 'nn::grcsrv::IGameMovieTrimmer'] = {1: {'inbytes': 0x48, 'outbytes': 0}, 2: {'inbytes': 0, 'outbytes': 0x40}, 10: {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]}, 20: {'inbytes': 8, 'outbytes': 0, 'buffers': [0x45]}} | |
- ['am', 'nn::idle::detail::IPolicyManagerSystem', 1] = {'inbytes': 0, 'outbytes': 0} | |
- ['am', 'nn::idle::detail::IPolicyManagerSystem', 2] = {'inbytes': 0, 'outbytes': 0} | |
+ ['am', 'nn::omm::detail::IOperationModeManager', 15] = {'inbytes': 0, 'outbytes': 0} | |
+ ['am', 'nn::omm::detail::IOperationModeManager', 16] = {'inbytes': 0, 'outbytes': 0} | |
+ ['am', 'nn::omm::detail::IOperationModeManager', 17] = {'inbytes': 0, 'outbytes': 0} | |
+ ['am', 'nn::omm::detail::IOperationModeManager', 18] = {'inbytes': 0, 'outbytes': 0} | |
+ ['am', 'nn::omm::detail::IOperationModeManager', 19] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['am', 'nn::omm::detail::IOperationModeManager', 20] = {'inbytes': 0, 'outbytes': 1} | |
+ ['am', 'nn::omm::detail::IOperationModeManager', 21] = {'inbytes': 1, 'outbytes': 0} | |
+ ['am', 'nn::omm::detail::IOperationModeManager', 22] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['am', 'nn::omm::detail::IOperationModeManager', 23] = {'inbytes': 0, 'outbytes': 1} | |
- ['am', 'nn::spsm::detail::IPowerStateInterface', 11] = {'inbytes': 8, 'outbytes': 0} | |
+ ['audio', 'nn::audio::detail::IAudioIn', 11] = {'inbytes': 0, 'outbytes': 4} | |
+ ['audio', 'nn::audio::detail::IAudioIn', 12] = {'inbytes': 4, 'outbytes': 0} | |
+ ['audio', 'nn::audio::detail::IAudioIn', 13] = {'inbytes': 0, 'outbytes': 4} | |
- ['audio', 'nn::audio::detail::IAudioInManagerForApplet', 0] = {'inbytes': 0x10, 'outbytes': 0, 'outhandles': [1]} | |
+ ['audio', 'nn::audio::detail::IAudioInManagerForApplet', 0] = {'inbytes': 0x10, 'outbytes': 0} | |
- ['audio', 'nn::audio::detail::IAudioInManagerForApplet', 1] = {'inbytes': 0x10, 'outbytes': 0, 'outhandles': [1]} | |
+ ['audio', 'nn::audio::detail::IAudioInManagerForApplet', 1] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['audio', 'nn::audio::detail::IAudioOut', 9] = {'inbytes': 0, 'outbytes': 4} | |
+ ['audio', 'nn::audio::detail::IAudioOut', 10] = {'inbytes': 0, 'outbytes': 8} | |
+ ['audio', 'nn::audio::detail::IAudioOut', 11] = {'inbytes': 0, 'outbytes': 1} | |
- ['audio', 'nn::audio::detail::IAudioOutManagerForApplet', 0] = {'inbytes': 0x10, 'outbytes': 0, 'outhandles': [1]} | |
+ ['audio', 'nn::audio::detail::IAudioOutManagerForApplet', 0] = {'inbytes': 0x10, 'outbytes': 0} | |
- ['audio', 'nn::audio::detail::IAudioOutManagerForApplet', 1] = {'inbytes': 0x10, 'outbytes': 0, 'outhandles': [1]} | |
+ ['audio', 'nn::audio::detail::IAudioOutManagerForApplet', 1] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['audio', 'nn::audio::detail::IAudioOutManagerForApplet', 4] = {'inbytes': 8, 'outbytes': 4} | |
+ ['audio', 'nn::audio::detail::IAudioOutManagerForApplet', 5] = {'inbytes': 0x18, 'outbytes': 0} | |
+ ['audio', 'nn::audio::detail::IAudioRendererManager', 4] = {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::audio::detail::IAudioDevice']} | |
- ['audio', 'nn::audio::detail::IAudioRendererManagerForApplet', 0] = {'inbytes': 0x10, 'outbytes': 0, 'outhandles': [1]} | |
+ ['audio', 'nn::audio::detail::IAudioRendererManagerForApplet', 0] = {'inbytes': 0x10, 'outbytes': 0} | |
- ['audio', 'nn::audio::detail::IAudioRendererManagerForApplet', 1] = {'inbytes': 0x10, 'outbytes': 0, 'outhandles': [1]} | |
+ ['audio', 'nn::audio::detail::IAudioRendererManagerForApplet', 1] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['audio', 'nn::audio::detail::IAudioRendererManagerForApplet', 6] = {'inbytes': 8, 'outbytes': 4} | |
+ ['audio', 'nn::audio::detail::IAudioRendererManagerForApplet', 7] = {'inbytes': 0x18, 'outbytes': 0} | |
- ['audio', 'nn::audio::detail::IFinalOutputRecorderManagerForApplet', 0] = {'inbytes': 0x10, 'outbytes': 0, 'outhandles': [1]} | |
+ ['audio', 'nn::audio::detail::IFinalOutputRecorderManagerForApplet', 0] = {'inbytes': 0x10, 'outbytes': 0} | |
- ['audio', 'nn::audio::detail::IFinalOutputRecorderManagerForApplet', 1] = {'inbytes': 0x10, 'outbytes': 0, 'outhandles': [1]} | |
+ ['audio', 'nn::audio::detail::IFinalOutputRecorderManagerForApplet', 1] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['audio', 'nn::audioctrl::detail::IAudioController', 23] = {'inbytes': 4, 'outbytes': 0} | |
+ ['audio', 'nn::audioctrl::detail::IAudioController', 24] = {'inbytes': 0, 'outbytes': 4} | |
+ ['audio', 'nn::audioctrl::detail::IAudioController', 25] = {'inbytes': 0, 'outbytes': 7} | |
+ ['audio', 'nn::audioctrl::detail::IAudioController', 26] = {'inbytes': 1, 'outbytes': 0} | |
+ ['audio', 'nn::codec::detail::IHardwareOpusDecoder', 4] = {'inbytes': 0, 'outbytes': 0x10, 'buffers': [0x46, 5]} | |
+ ['audio', 'nn::codec::detail::IHardwareOpusDecoder', 5] = {'inbytes': 0, 'outbytes': 0x10, 'buffers': [0x46, 5]} | |
+ ['bcat', 'nn::prepo::detail::ipc::IPrepoService', 20200] = {'inbytes': 8, 'outbytes': 0} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 36] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 36] = {'inbytes': 1, 'outbytes': 0} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 37] = {'inbytes': 0, 'outbytes': 4, 'buffers': [0xA]} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 37] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 38] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0x16]} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 38] = {'inbytes': 0, 'outbytes': 4, 'buffers': [0xA]} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 39] = {'inbytes': 0, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 39] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0x16]} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 40] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0x16]} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 40] = {'inbytes': 0, 'outbytes': 0} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 41] = {'inbytes': 1, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 41] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0x16]} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 42] = {'inbytes': 0, 'outbytes': 1} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 42] = {'inbytes': 1, 'outbytes': 0} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 43] = {'inbytes': 1, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 43] = {'inbytes': 0, 'outbytes': 1} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 44] = {'inbytes': 0, 'outbytes': 1} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 44] = {'inbytes': 1, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 45] = {'inbytes': 0, 'outbytes': 1} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 46] = {'inbytes': 0, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 47] = {'inbytes': 0, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 48] = {'inbytes': 0, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 49] = {'inbytes': 2, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 50] = {'inbytes': 0x14, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 51] = {'inbytes': 0x14, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 52] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0x19]} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 53] = {'inbytes': 0xA, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 54] = {'inbytes': 0, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 55] = {'inbytes': 0, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 56] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0x19]} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 57] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0x19]} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 58] = {'inbytes': 1, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 59] = {'inbytes': 0, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 60] = {'inbytes': 1, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 61] = {'inbytes': 0x14, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 62] = {'inbytes': 1, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 63] = {'inbytes': 0, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 64] = {'inbytes': 8, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 65] = {'inbytes': 2, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 66] = {'inbytes': 8, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 67] = {'inbytes': 0x18, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 68] = {'inbytes': 0x34, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 69] = {'inbytes': 0x4C, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 70] = {'inbytes': 0x38, 'outbytes': 0, 'buffers': [9]} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 71] = {'inbytes': 0x50, 'outbytes': 0, 'buffers': [9]} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 72] = {'inbytes': 0x34, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 73] = {'inbytes': 0x34, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 74] = {'inbytes': 4, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 75] = {'inbytes': 0x14, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 76] = {'inbytes': 1, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 77] = {'inbytes': 8, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 78] = {'inbytes': 7, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 79] = {'inbytes': 0x18, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 80] = {'inbytes': 0x18, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 81] = {'inbytes': 0x2C, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 82] = {'inbytes': 0x2C, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 83] = {'inbytes': 0x2C, 'outbytes': 0, 'buffers': [9]} | |
+ ['bsdsocket', 'nn::nsd::detail::IManager', 15] = {'inbytes': 1, 'outbytes': 0} | |
+ ['bsdsocket', 'nn::nsd::detail::IManager', 63] = {'inbytes': 0, 'outbytes': 1} | |
- ['bsdsocket', 'nn::socket::sf::IClient', 28] = {'inbytes': 8, 'outbytes': 8, 'buffers': [0x22], 'pid': 1} | |
+ ['bsdsocket', 'nn::socket::sf::IClient', 28] = {'inbytes': 0x10, 'outbytes': 8, 'buffers': [0x22], 'pid': 1} | |
+ ['btm', 'nn::btm::IBtm', 19] = {'inbytes': 0, 'outbytes': 1, 'outhandles': [1]} | |
+ ['btm', 'nn::btm::IBtm', 20] = {'inbytes': 0, 'outbytes': 1} | |
+ ['btm', 'nn::btm::IBtm', 21] = {'inbytes': 1, 'outbytes': 0} | |
+ ['capsrv', 'nn::capsrv::sf::IAlbumAccessorService', 15] = {'inbytes': 1, 'outbytes': 0x48} | |
+ ['capsrv', 'nn::capsrv::sf::IAlbumAccessorService', 16] = {'inbytes': 1, 'outbytes': 0} | |
+ ['capsrv', 'nn::capsrv::sf::IAlbumAccessorService', 17] = {'inbytes': 0x10, 'outbytes': 0, 'buffers': [0x16]} | |
+ ['capsrv', 'nn::capsrv::sf::IAlbumAccessorService', 302] = {'inbytes': 0, 'outbytes': 0x20, 'buffers': [6]} | |
- ['capsrv', 'nn::capsrv::sf::IAlbumAccessorService', 1002] = {'inbytes': 0x38, 'outbytes': 0x20, 'buffers': [5, 5]} | |
+ ['capsrv', 'nn::capsrv::sf::IAlbumAccessorService', 1002] = {'inbytes': 0x38, 'outbytes': 0, 'buffers': [0x16, 0x46, 6]} | |
+ ['capsrv', 'nn::capsrv::sf::IAlbumAccessorService', 1003] = {'inbytes': 0x38, 'outbytes': 0, 'buffers': [0x16, 0x46, 6]} | |
+ ['capsrv', 'nn::capsrv::sf::IAlbumAccessorService', 8013] = {'inbytes': 2, 'outbytes': 0x10} | |
+ ['capsrv', 'nn::capsrv::sf::IAlbumAccessorService', 60002] = {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::capsrv::sf::IAlbumAccessorSession'], 'pid': 1} | |
+ ['capsrv', 'nn::capsrv::sf::IAlbumAccessorSession'] = {2001: {'inbytes': 0x18, 'outbytes': 8}, 2002: {'inbytes': 8, 'outbytes': 0}, 2003: {'inbytes': 8, 'outbytes': 8}, 2004: {'inbytes': 0x10, 'outbytes': 8, 'buffers': [6]}, 2005: {'inbytes': 8, 'outbytes': 0}, 2006: {'inbytes': 8, 'outbytes': 8}, 2007: {'inbytes': 0x10, 'outbytes': 8, 'buffers': [6]}, 2008: {'inbytes': 8, 'outbytes': 0x40}} | |
- ['capsrv', 'nn::capsrv::sf::IAlbumControlService', 2201] = {'inbytes': 0x18, 'outbytes': 0, 'buffers': [0x45]} | |
+ ['capsrv', 'nn::capsrv::sf::IAlbumControlService', 2202] = {'inbytes': 0x30, 'outbytes': 0, 'buffers': [0x45]} | |
+ ['capsrv', 'nn::capsrv::sf::IAlbumControlService', 2302] = {'inbytes': 0x18, 'outbytes': 0, 'buffers': [0x45]} | |
+ ['capsrv', 'nn::capsrv::sf::IAlbumControlService', 60001] = {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::capsrv::sf::IAlbumControlSession'], 'pid': 1} | |
+ ['capsrv', 'nn::capsrv::sf::IAlbumControlSession'] = {2001: {'inbytes': 0x18, 'outbytes': 8}, 2002: {'inbytes': 8, 'outbytes': 0}, 2003: {'inbytes': 8, 'outbytes': 8}, 2004: {'inbytes': 0x10, 'outbytes': 8, 'buffers': [6]}, 2005: {'inbytes': 8, 'outbytes': 0}, 2006: {'inbytes': 8, 'outbytes': 8}, 2007: {'inbytes': 0x10, 'outbytes': 8, 'buffers': [6]}, 2008: {'inbytes': 8, 'outbytes': 0x40}, 2401: {'inbytes': 0x18, 'outbytes': 8}, 2402: {'inbytes': 8, 'outbytes': 0}, 2403: {'inbytes': 8, 'outbytes': 0}, 2404: {'inbytes': 8, 'outbytes': 0}, 2405: {'inbytes': 8, 'outbytes': 0}, 2411: {'inbytes': 8, 'outbytes': 0}, 2412: {'inbytes': 8, 'outbytes': 0}, 2413: {'inbytes': 8, 'outbytes': 0}, 2414: {'inbytes': 8, 'outbytes': 0}, 2421: {'inbytes': 0x10, 'outbytes': 8, 'buffers': [6]}, 2422: {'inbytes': 0x10, 'outbytes': 0, 'buffers': [5]}, 2424: {'inbytes': 0x20, 'outbytes': 0, 'buffers': [5]}, 2431: {'inbytes': 8, 'outbytes': 0}, 2433: {'inbytes': 8, 'outbytes': 8}, 2434: {'inbytes': 0x10, 'outbytes': 0}} | |
+ ['erpt', 'nn::erpt::sf::IManager', 2] = {'inbytes': 0, 'outbytes': 0} | |
+ ['es', 'nn::es::IETicketService', 22] = {'inbytes': 0x10, 'outbytes': 0x10} | |
+ ['es', 'nn::es::IETicketService', 23] = {'inbytes': 0x10, 'outbytes': 0x10, 'buffers': [6, 6]} | |
+ ['es', 'nn::es::IETicketService', 24] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0x15]} | |
+ ['es', 'nn::es::IETicketService', 25] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0x15]} | |
+ ['es', 'nn::es::IETicketService', 26] = {'inbytes': 0, 'outbytes': 0} | |
+ ['es', 'nn::es::IETicketService', 27] = {'inbytes': 0, 'outbytes': 4} | |
+ ['es', 'nn::es::IETicketService', 28] = {'inbytes': 0, 'outbytes': 4, 'buffers': [6]} | |
+ ['es', 'nn::es::IETicketService', 29] = {'inbytes': 0x10, 'outbytes': 4, 'buffers': [6]} | |
+ ['friends', 'nn::friends::detail::ipc::IServiceCreator', 2] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['FriendsSubinterface2']} | |
+ ['fs', 'nn::fssrv::sf::IDeviceOperator', 115] = {'inbytes': 0, 'outbytes': 0} | |
+ ['fs', 'nn::fssrv::sf::IDeviceOperator', 116] = {'inbytes': 0, 'outbytes': 0} | |
+ ['fs', 'nn::fssrv::sf::IFile', 5] = {'inbytes': 0x18, 'outbytes': 0x40} | |
+ ['fs', 'nn::fssrv::sf::IFileSystem', 15] = {'inbytes': 4, 'outbytes': 0, 'buffers': [0x19, 0x46, 0x45]} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 28] = {'inbytes': 0x48, 'outbytes': 0} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 81] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::fssrv::sf::ISaveDataTransferManager']} | |
- ['fs', 'nn::fssrv::sf::IFileSystemProxy', 600] = {'inbytes': 8, 'outbytes': 0} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 611] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 612] = {'inbytes': 1, 'outbytes': 8} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 613] = {'inbytes': 0x10, 'outbytes': 0, 'buffers': [6]} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 614] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 630] = {'inbytes': 1, 'outbytes': 0} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 631] = {'inbytes': 0, 'outbytes': 1} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 640] = {'inbytes': 0, 'outbytes': 1} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 1007] = {'inbytes': 0, 'outbytes': 0} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 1008] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::fssrv::sf::IFileSystem']} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 1009] = {'inbytes': 0, 'outbytes': 0x80} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 1100] = {'inbytes': 0, 'outbytes': 0, 'buffers': [5]} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxyForLoader', 2] = {'inbytes': 8, 'outbytes': 0, 'pid': 1} | |
+ ['fs', 'nn::fssrv::sf::IProgramRegistry', 2] = {'inbytes': 8, 'outbytes': 0, 'pid': 1} | |
+ ['fs', 'nn::fssrv::sf::ISaveDataExporter'] = {0: {'inbytes': 0, 'outbytes': 0, 'buffers': [0x1A]}, 1: {'inbytes': 0, 'outbytes': 8}, 16: {'inbytes': 0, 'outbytes': 8, 'buffers': [6]}, 17: {'inbytes': 0, 'outbytes': 0, 'buffers': [6]}} | |
+ ['fs', 'nn::fssrv::sf::ISaveDataImporter'] = {0: {'inbytes': 0, 'outbytes': 0, 'buffers': [0x1A]}, 1: {'inbytes': 0, 'outbytes': 8}, 16: {'inbytes': 0, 'outbytes': 0, 'buffers': [5]}, 17: {'inbytes': 0, 'outbytes': 0}} | |
+ ['fs', 'nn::fssrv::sf::ISaveDataTransferManager'] = {0: {'inbytes': 0, 'outbytes': 0, 'buffers': [6]}, 16: {'inbytes': 0, 'outbytes': 0, 'buffers': [5]}, 32: {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::fssrv::sf::ISaveDataExporter']}, 64: {'inbytes': 0x18, 'outbytes': 8, 'outinterfaces': ['nn::fssrv::sf::ISaveDataImporter'], 'buffers': [5]}} | |
+ ['fs', 'nn::fssrv::sf::IStorage', 5] = {'inbytes': 0x18, 'outbytes': 0x40} | |
+ ['grc'] = {'nn::grcsrv::IContinuousRecorder': {1: {'inbytes': 0, 'outbytes': 0}, 2: {'inbytes': 0, 'outbytes': 0}, 10: {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]}, 11: {'inbytes': 0, 'outbytes': 0}, 12: {'inbytes': 0, 'outbytes': 0}, 13: {'inbytes': 8, 'outbytes': 0}}, 'nn::grcsrv::IGameMovieTrimmer': {1: {'inbytes': 0x48, 'outbytes': 0}, 2: {'inbytes': 0, 'outbytes': 0x40}, 10: {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]}, 20: {'inbytes': 8, 'outbytes': 0, 'buffers': [0x45]}}, 'nn::grcsrv::IGrcService': {1: {'inbytes': 0x28, 'outbytes': 0, 'outinterfaces': ['nn::grcsrv::IContinuousRecorder'], 'inhandles': [1]}, 2: {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::grcsrv::IGameMovieTrimmer'], 'inhandles': [1]}}} | |
+ ['hid', 'nn::hid::IHidDebugServer', 210] = {'inbytes': 8, 'outbytes': 1} | |
+ ['hid', 'nn::hid::IHidDebugServer', 222] = {'inbytes': 0, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidDebugServer', 223] = {'inbytes': 0, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidServer', 207] = {'inbytes': 0x18, 'outbytes': 0, 'pid': 1} | |
+ ['hid', 'nn::hid::IHidServer', 208] = {'inbytes': 0x10, 'outbytes': 8, 'pid': 1} | |
+ ['hid', 'nn::hid::IHidServer', 209] = {'inbytes': 8, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidServer', 210] = {'inbytes': 0, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidServer', 403] = {'inbytes': 4, 'outbytes': 1} | |
+ ['hid', 'nn::hid::IHidServer', 404] = {'inbytes': 4, 'outbytes': 2} | |
+ ['hid', 'nn::hid::IHidServer', 405] = {'inbytes': 4, 'outbytes': 1} | |
+ ['hid', 'nn::hid::IHidServer', 406] = {'inbytes': 4, 'outbytes': 2} | |
+ ['hid', 'nn::hid::IHidSystemServer', 214] = {'inbytes': 0x10, 'outbytes': 8} | |
+ ['hid', 'nn::hid::IHidSystemServer', 215] = {'inbytes': 4, 'outbytes': 1} | |
+ ['hid', 'nn::hid::IHidSystemServer', 1008] = {'inbytes': 0, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidSystemServer', 1009] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['hid', 'nn::hid::IHidSystemServer', 1010] = {'inbytes': 0, 'outbytes': 8, 'buffers': [0xA]} | |
+ ['hid', 'nn::hid::IHidSystemServer', 1011] = {'inbytes': 0, 'outbytes': 0} | |
+ ['jpegdec'] = {'JpegDecoder': {3001: {'inbytes': 0x28, 'outbytes': 0, 'buffers': [0x46, 5]}}} | |
+ ['ldn', 'nn::ldn::detail::ISystemLocalCommunicationService', 402] = {'inbytes': 4, 'outbytes': 0} | |
+ ['migration'] = {'nn::migration::detail::IAsyncContext': {0: {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]}, 1: {'inbytes': 0, 'outbytes': 0}, 2: {'inbytes': 0, 'outbytes': 1}, 3: {'inbytes': 0, 'outbytes': 0}}, 'nn::migration::user::IClient': {0: {'inbytes': 0, 'outbytes': 0, 'buffers': [0x1A]}, 10: {'inbytes': 0, 'outbytes': 0x10}, 11: {'inbytes': 0, 'outbytes': 8}, 12: {'inbytes': 0, 'outbytes': 0x21}, 13: {'inbytes': 0, 'outbytes': 4, 'buffers': [6]}, 100: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::migration::detail::IAsyncContext']}, 101: {'inbytes': 0, 'outbytes': 1}, 200: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::migration::detail::IAsyncContext']}, 201: {'inbytes': 0, 'outbytes': 4, 'buffers': [6]}, 210: {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::migration::detail::IAsyncContext']}, 300: {'inbytes': 0, 'outbytes': 8}, 301: {'inbytes': 0, 'outbytes': 0x10}, 302: {'inbytes': 0, 'outbytes': 0x10}, 310: {'inbytes': 0, 'outbytes': 0x10}, 311: {'inbytes': 0, 'outbytes': 4, 'buffers': [6]}, 320: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::migration::detail::IAsyncContext']}, 350: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::migration::detail::IAsyncContext']}, 400: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::migration::detail::IAsyncContext']}, 500: {'inbytes': 0, 'outbytes': 0}, 999: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::migration::detail::IAsyncContext']}}, 'nn::migration::user::IServer': {0: {'inbytes': 0, 'outbytes': 0x10}, 1: {'inbytes': 0, 'outbytes': 0, 'buffers': [0x1A]}, 100: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::migration::detail::IAsyncContext']}, 101: {'inbytes': 0, 'outbytes': 1}, 200: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::migration::detail::IAsyncContext']}, 201: {'inbytes': 0, 'outbytes': 0, 'buffers': [0x1A]}, 202: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::migration::detail::IAsyncContext']}, 203: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::migration::detail::IAsyncContext']}, 300: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::migration::detail::IAsyncContext']}, 400: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::migration::detail::IAsyncContext']}, 500: {'inbytes': 0, 'outbytes': 0}}, 'nn::migration::user::IService': {10: {'inbytes': 0, 'outbytes': 0xC}, 100: {'inbytes': 0x18, 'outbytes': 0, 'outinterfaces': ['nn::migration::user::IServer'], 'inhandles': [1], 'buffers': [0x19]}, 101: {'inbytes': 4, 'outbytes': 0, 'outinterfaces': ['nn::migration::user::IServer'], 'inhandles': [1]}, 200: {'inbytes': 4, 'outbytes': 0, 'outinterfaces': ['nn::migration::user::IClient'], 'inhandles': [1], 'buffers': [0x19]}, 201: {'inbytes': 4, 'outbytes': 0, 'outinterfaces': ['nn::migration::user::IClient'], 'inhandles': [1]}}} | |
+ ['ncm', 'nn::ncm::IContentStorage', 25] = {'inbytes': 0x10, 'outbytes': 8} | |
+ ['ncm', 'nn::ncm::IContentStorage', 26] = {'inbytes': 0, 'outbytes': 0} | |
+ ['nfc', 'nn::nfc::detail::ISystem', 400] = {'inbytes': 0x10, 'outbytes': 0, 'buffers': [5], 'pid': 1} | |
+ ['nfc', 'nn::nfc::detail::ISystem', 401] = {'inbytes': 0, 'outbytes': 0} | |
+ ['nfc', 'nn::nfc::detail::ISystem', 402] = {'inbytes': 0, 'outbytes': 4} | |
+ ['nfc', 'nn::nfc::detail::ISystem', 403] = {'inbytes': 0, 'outbytes': 1} | |
+ ['nfc', 'nn::nfc::detail::ISystem', 404] = {'inbytes': 0, 'outbytes': 4, 'buffers': [0xA]} | |
+ ['nfc', 'nn::nfc::detail::ISystem', 405] = {'inbytes': 8, 'outbytes': 4} | |
+ ['nfc', 'nn::nfc::detail::ISystem', 406] = {'inbytes': 8, 'outbytes': 4} | |
+ ['nfc', 'nn::nfc::detail::ISystem', 407] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['nfc', 'nn::nfc::detail::ISystem', 408] = {'inbytes': 0xC, 'outbytes': 0} | |
+ ['nfc', 'nn::nfc::detail::ISystem', 409] = {'inbytes': 8, 'outbytes': 0} | |
+ ['nfc', 'nn::nfc::detail::ISystem', 410] = {'inbytes': 8, 'outbytes': 0, 'buffers': [0x1A]} | |
+ ['nfc', 'nn::nfc::detail::ISystem', 411] = {'inbytes': 8, 'outbytes': 0, 'outhandles': [1]} | |
+ ['nfc', 'nn::nfc::detail::ISystem', 412] = {'inbytes': 8, 'outbytes': 0, 'outhandles': [1]} | |
+ ['nfc', 'nn::nfc::detail::ISystem', 500] = {'inbytes': 1, 'outbytes': 0} | |
+ ['nfc', 'nn::nfc::detail::ISystem', 1000] = {'inbytes': 8, 'outbytes': 0, 'buffers': [6, 5]} | |
+ ['nfc', 'nn::nfc::detail::ISystem', 1001] = {'inbytes': 8, 'outbytes': 0, 'buffers': [5]} | |
+ ['nfc', 'nn::nfc::detail::ISystem', 1300] = {'inbytes': 0x10, 'outbytes': 4, 'buffers': [6, 5]} | |
+ ['nfc', 'nn::nfc::detail::ISystem', 1301] = {'inbytes': 8, 'outbytes': 0} | |
+ ['nfc', 'nn::nfc::detail::ISystem', 1302] = {'inbytes': 8, 'outbytes': 0} | |
+ ['nfc', 'nn::nfc::detail::IUser', 400] = {'inbytes': 0x10, 'outbytes': 0, 'buffers': [5], 'pid': 1} | |
+ ['nfc', 'nn::nfc::detail::IUser', 401] = {'inbytes': 0, 'outbytes': 0} | |
+ ['nfc', 'nn::nfc::detail::IUser', 402] = {'inbytes': 0, 'outbytes': 4} | |
+ ['nfc', 'nn::nfc::detail::IUser', 403] = {'inbytes': 0, 'outbytes': 1} | |
+ ['nfc', 'nn::nfc::detail::IUser', 404] = {'inbytes': 0, 'outbytes': 4, 'buffers': [0xA]} | |
+ ['nfc', 'nn::nfc::detail::IUser', 405] = {'inbytes': 8, 'outbytes': 4} | |
+ ['nfc', 'nn::nfc::detail::IUser', 406] = {'inbytes': 8, 'outbytes': 4} | |
+ ['nfc', 'nn::nfc::detail::IUser', 407] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['nfc', 'nn::nfc::detail::IUser', 408] = {'inbytes': 0xC, 'outbytes': 0} | |
+ ['nfc', 'nn::nfc::detail::IUser', 409] = {'inbytes': 8, 'outbytes': 0} | |
+ ['nfc', 'nn::nfc::detail::IUser', 410] = {'inbytes': 8, 'outbytes': 0, 'buffers': [0x1A]} | |
+ ['nfc', 'nn::nfc::detail::IUser', 411] = {'inbytes': 8, 'outbytes': 0, 'outhandles': [1]} | |
+ ['nfc', 'nn::nfc::detail::IUser', 412] = {'inbytes': 8, 'outbytes': 0, 'outhandles': [1]} | |
+ ['nfc', 'nn::nfc::detail::IUser', 1000] = {'inbytes': 8, 'outbytes': 0, 'buffers': [6, 5]} | |
+ ['nfc', 'nn::nfc::detail::IUser', 1001] = {'inbytes': 8, 'outbytes': 0, 'buffers': [5]} | |
+ ['nfc', 'nn::nfc::detail::IUser', 1300] = {'inbytes': 0x10, 'outbytes': 4, 'buffers': [6, 5]} | |
+ ['nfc', 'nn::nfc::detail::IUser', 1301] = {'inbytes': 8, 'outbytes': 0} | |
+ ['nfc', 'nn::nfc::detail::IUser', 1302] = {'inbytes': 8, 'outbytes': 0} | |
- ['nfc', 'nn::nfp::detail::IDebug', 300] = {'inbytes': 0x10, 'outbytes': 0, 'buffers': [5], 'pid': 1} | |
- ['nfc', 'nn::nfp::detail::IDebug', 301] = {'inbytes': 0, 'outbytes': 0} | |
- ['nfc', 'nn::nfp::detail::IDebug', 302] = {'inbytes': 0, 'outbytes': 4, 'buffers': [0xA]} | |
- ['nfc', 'nn::nfp::detail::IDebug', 303] = {'inbytes': 0xC, 'outbytes': 0} | |
- ['nfc', 'nn::nfp::detail::IDebug', 304] = {'inbytes': 8, 'outbytes': 0} | |
- ['nfc', 'nn::nfp::detail::IDebug', 305] = {'inbytes': 0x10, 'outbytes': 4, 'buffers': [6, 5]} | |
- ['nfc', 'nn::nfp::detail::IDebug', 306] = {'inbytes': 8, 'outbytes': 0, 'buffers': [0x1A]} | |
- ['nfc', 'nn::nfp::detail::IDebug', 307] = {'inbytes': 8, 'outbytes': 0, 'outhandles': [1]} | |
- ['nfc', 'nn::nfp::detail::IDebug', 308] = {'inbytes': 8, 'outbytes': 0, 'outhandles': [1]} | |
- ['nfc', 'nn::nfp::detail::IDebug', 309] = {'inbytes': 0, 'outbytes': 4} | |
- ['nfc', 'nn::nfp::detail::IDebug', 310] = {'inbytes': 8, 'outbytes': 4} | |
- ['nfc', 'nn::nfp::detail::IDebug', 311] = {'inbytes': 8, 'outbytes': 4} | |
- ['nfc', 'nn::nfp::detail::IDebug', 312] = {'inbytes': 8, 'outbytes': 0} | |
- ['nfc', 'nn::nfp::detail::IDebug', 313] = {'inbytes': 8, 'outbytes': 0} | |
- ['nfc', 'nn::nfp::detail::IDebug', 314] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['nifm', 'nn::nifm::detail::IGeneralService', 34] = {'inbytes': 1, 'outbytes': 0} | |
+ ['nifm', 'nn::nifm::detail::IGeneralService', 35] = {'inbytes': 0, 'outbytes': 4, 'buffers': [6]} | |
+ ['nifm', 'nn::nifm::detail::IGeneralService', 36] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0x1A]} | |
+ ['nifm', 'nn::nifm::detail::IGeneralService', 37] = {'inbytes': 0, 'outbytes': 0} | |
+ ['nim', 'nn::nim::detail::IAsyncData', 5] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0x16]} | |
+ ['nim', 'nn::nim::detail::IAsyncProgressResult', 3] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0x16]} | |
+ ['nim', 'nn::nim::detail::IAsyncResult', 2] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0x16]} | |
+ ['nim', 'nn::nim::detail::IAsyncValue', 3] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0x16]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 47] = {'inbytes': 0x10, 'outbytes': 4} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 48] = {'inbytes': 0x10, 'outbytes': 0, 'buffers': [5]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 49] = {'inbytes': 0x14, 'outbytes': 4, 'buffers': [6]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 50] = {'inbytes': 0x14, 'outbytes': 4, 'buffers': [6]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 51] = {'inbytes': 0x10, 'outbytes': 4} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 52] = {'inbytes': 0x10, 'outbytes': 0, 'buffers': [0x16]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 53] = {'inbytes': 0x18, 'outbytes': 0x10, 'buffers': [5]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 54] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 55] = {'inbytes': 0, 'outbytes': 4, 'buffers': [6]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 56] = {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncResult'], 'outhandles': [1]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 57] = {'inbytes': 0x10, 'outbytes': 0x38} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 58] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 59] = {'inbytes': 0x14, 'outbytes': 4, 'buffers': [6]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 60] = {'inbytes': 0x10, 'outbytes': 0x10, 'buffers': [5]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 61] = {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncResult'], 'outhandles': [1]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 62] = {'inbytes': 0x10, 'outbytes': 0, 'buffers': [0x16]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 63] = {'inbytes': 0x10, 'outbytes': 0x20} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 64] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 65] = {'inbytes': 0x10, 'outbytes': 0, 'buffers': [0x16]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 66] = {'inbytes': 0x10, 'outbytes': 8} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 67] = {'inbytes': 8, 'outbytes': 4, 'buffers': [6]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 68] = {'inbytes': 8, 'outbytes': 4, 'buffers': [6]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 69] = {'inbytes': 0x20, 'outbytes': 0x10} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 70] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 71] = {'inbytes': 0, 'outbytes': 4, 'buffers': [6]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 72] = {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncResult'], 'outhandles': [1]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 73] = {'inbytes': 0x10, 'outbytes': 0x38} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 74] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 75] = {'inbytes': 0x10, 'outbytes': 0, 'buffers': [0x16]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 76] = {'inbytes': 0x18, 'outbytes': 0x10} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 77] = {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncResult'], 'outhandles': [1]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 78] = {'inbytes': 0x10, 'outbytes': 0x20} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 79] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 80] = {'inbytes': 0x10, 'outbytes': 0, 'buffers': [0x16]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 81] = {'inbytes': 0, 'outbytes': 4, 'buffers': [6]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 82] = {'inbytes': 0x18, 'outbytes': 0, 'buffers': [0x16]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 83] = {'inbytes': 0x11, 'outbytes': 8} | |
+ ['nim', 'nn::nim::detail::IShopServiceManager', 304] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncResult'], 'outhandles': [1]} | |
+ ['nim', 'nn::nim::detail::IShopServiceManager', 305] = {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncResult'], 'outhandles': [1]} | |
+ ['nim', 'nn::nim::detail::IShopServiceManager', 306] = {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncValue'], 'outhandles': [1]} | |
+ ['nim', 'nn::nim::detail::IShopServiceManager', 502] = {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncValue'], 'outhandles': [1]} | |
+ ['ns', 'nn::aocsrv::detail::IAddOnContentManager', 8] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
- ['ns', 'nn::ns::detail::IApplicationManagerInterface', 31] = {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::ns::detail::IAsyncResult'], 'outhandles': [1]} | |
- ['ns', 'nn::ns::detail::IApplicationManagerInterface', 81] = {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::ns::detail::IAsyncResult'], 'outhandles': [1], 'buffers': [5]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 81] = {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::ns::detail::IAsyncResult'], 'outhandles': [1], 'buffers': [5]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 83] = {'inbytes': 8, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 84] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 85] = {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::ns::detail::IAsyncResult'], 'outhandles': [1]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 86] = {'inbytes': 1, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 87] = {'inbytes': 0, 'outbytes': 1} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 90] = {'inbytes': 8, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 1703] = {'inbytes': 8, 'outbytes': 0, 'buffers': [0x16]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 1901] = {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::ns::detail::IAsyncResult'], 'outhandles': [1]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 2000] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0x16]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 2001] = {'inbytes': 0, 'outbytes': 4, 'buffers': [0x15, 5, 5]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 2002] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0x15]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 2003] = {'inbytes': 0x10, 'outbytes': 4, 'buffers': [6]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 2004] = {'inbytes': 0, 'outbytes': 1, 'buffers': [5]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 2005] = {'inbytes': 0, 'outbytes': 4, 'buffers': [5, 5]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 2006] = {'inbytes': 0, 'outbytes': 1, 'buffers': [5, 5]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 2007] = {'inbytes': 4, 'outbytes': 4, 'buffers': [6, 5]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 2008] = {'inbytes': 0, 'outbytes': 1, 'buffers': [0x15, 5]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 2009] = {'inbytes': 0, 'outbytes': 8, 'buffers': [5]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 2010] = {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::ns::detail::IAsyncResult'], 'outhandles': [1], 'buffers': [5]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 2011] = {'inbytes': 8, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 2012] = {'inbytes': 8, 'outbytes': 0x10} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 2013] = {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::ns::detail::IAsyncResult'], 'outhandles': [1], 'buffers': [5]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 2014] = {'inbytes': 8, 'outbytes': 0x10} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 2015] = {'inbytes': 0, 'outbytes': 4, 'buffers': [0x15, 0x15]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 2016] = {'inbytes': 0x10, 'outbytes': 4, 'buffers': [6]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 2017] = {'inbytes': 8, 'outbytes': 0, 'buffers': [5]} | |
+ ['ns', 'nn::ns::detail::IApplicationVersionInterface'] = {0: {'inbytes': 8, 'outbytes': 4}, 1: {'inbytes': 0x10, 'outbytes': 0}, 35: {'inbytes': 0, 'outbytes': 0, 'buffers': [5]}, 36: {'inbytes': 0x10, 'outbytes': 0}, 37: {'inbytes': 0, 'outbytes': 4, 'buffers': [6]}, 800: {'inbytes': 0, 'outbytes': 0}, 801: {'inbytes': 0, 'outbytes': 4, 'buffers': [6]}, 802: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::ns::detail::IAsyncValue'], 'outhandles': [1]}, 1000: {'inbytes': 0, 'outbytes': 0}} | |
+ ['ns', 'nn::ns::detail::IAsyncResult', 2] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0x16]} | |
+ ['ns', 'nn::ns::detail::IAsyncValue', 3] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0x16]} | |
+ ['ns', 'nn::ns::detail::IDownloadTaskInterface', 706] = {'inbytes': 0, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IDownloadTaskInterface', 707] = {'inbytes': 0, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IDownloadTaskInterface', 708] = {'inbytes': 0, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IDownloadTaskInterface', 709] = {'inbytes': 0, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IECommerceInterface'] = {0: {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::ns::detail::IAsyncResult'], 'outhandles': [1]}} | |
+ ['ns', 'nn::ns::detail::IProgressAsyncResult', 4] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0x16]} | |
+ ['ns', 'nn::ns::detail::IServiceGetterInterface', 7992] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::ns::detail::IECommerceInterface']} | |
+ ['ns', 'nn::ns::detail::IServiceGetterInterface', 7993] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::ns::detail::IApplicationVersionInterface']} | |
+ ['ns', 'nn::ns::detail::ISystemUpdateControl', 14] = {'inbytes': 8, 'outbytes': 0, 'inhandles': [1]} | |
+ ['ns', 'nn::ns::detail::ISystemUpdateControl', 15] = {'inbytes': 0, 'outbytes': 1} | |
+ ['ns', 'nn::ns::detail::ISystemUpdateControl', 16] = {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::ns::detail::IAsyncResult'], 'outhandles': [1], 'buffers': [0x15]} | |
+ ['ns', 'nn::ns::detail::ISystemUpdateControl', 17] = {'inbytes': 0, 'outbytes': 0x10} | |
+ ['ns', 'nn::ns::detail::ISystemUpdateControl', 18] = {'inbytes': 0, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::ISystemUpdateControl', 19] = {'inbytes': 0, 'outbytes': 8, 'buffers': [0x15]} | |
+ ['ns', 'nn::ns::detail::ISystemUpdateControl', 20] = {'inbytes': 0, 'outbytes': 8, 'buffers': [0x15, 6]} | |
+ ['ns', 'nn::ns::detail::ISystemUpdateControl', 21] = {'inbytes': 0, 'outbytes': 0} | |
- ['ns', 'nn::ns::detail::ISystemUpdateInterface', 12] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
- ['ns', 'nn::ns::detail::ISystemUpdateInterface', 13] = {'inbytes': 0, 'outbytes': 0} | |
- ['ns', 'nn::ns::detail::ISystemUpdateInterface', 14] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
- ['ns', 'nn::ns::detail::ISystemUpdateInterface', 15] = {'inbytes': 0, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::ISystemUpdateInterface', 16] = {'inbytes': 0, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::ISystemUpdateInterface', 17] = {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::ns::detail::IAsyncResult'], 'outhandles': [1], 'buffers': [0x15]} | |
+ ['ns', 'nn::ns::detail::ISystemUpdateInterface', 18] = {'inbytes': 0, 'outbytes': 0x10} | |
+ ['ns', 'nn::ns::detail::IVulnerabilityManagerInterface', 1201] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IVulnerabilityManagerInterface', 1202] = {'inbytes': 0, 'outbytes': 0x10} | |
+ ['pcie.withoutHb', 'nn::pcie::detail::ISession', 22] = {'inbytes': 8, 'outbytes': 0} | |
+ ['pctl', 'nn::pctl::detail::ipc::IParentalControlService', 1] = {'inbytes': 0, 'outbytes': 0} | |
+ ['pctl', 'nn::pctl::detail::ipc::IParentalControlService', 1013] = {'inbytes': 0, 'outbytes': 0} | |
+ ['pctl', 'nn::pctl::detail::ipc::IParentalControlService', 1061] = {'inbytes': 0, 'outbytes': 0} | |
+ ['pctl', 'nn::pctl::detail::ipc::IParentalControlService', 1062] = {'inbytes': 0, 'outbytes': 1} | |
+ ['pctl', 'nn::pctl::detail::ipc::IParentalControlService', 1063] = {'inbytes': 1, 'outbytes': 0} | |
+ ['pctl', 'nn::pctl::detail::ipc::IParentalControlService', 1208] = {'inbytes': 0, 'outbytes': 4, 'buffers': [0xA]} | |
+ ['pctl', 'nn::pctl::detail::ipc::IParentalControlService', 1458] = {'inbytes': 0, 'outbytes': 1} | |
+ ['pctl', 'nn::pctl::detail::ipc::IParentalControlService', 1953] = {'inbytes': 1, 'outbytes': 0} | |
+ ['pctl', 'nn::pctl::detail::ipc::IParentalControlServiceFactory', 1] = {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::pctl::detail::ipc::IParentalControlService'], 'pid': 1} | |
+ ['pcv', 'nn::timesrv::detail::service::IStaticService', 5] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::timesrv::detail::service::ISystemClock']} | |
+ ['pcv', 'nn::timesrv::detail::service::IStaticService', 50] = {'inbytes': 8, 'outbytes': 0} | |
+ ['pcv', 'nn::timesrv::detail::service::IStaticService', 300] = {'inbytes': 0x20, 'outbytes': 8} | |
+ ['pcv', 'nn::timesrv::detail::service::IStaticService', 400] = {'inbytes': 1, 'outbytes': 0, 'buffers': [0x1A]} | |
+ ['pcv', 'nn::timesrv::detail::service::IStaticService', 401] = {'inbytes': 0x48, 'outbytes': 0, 'buffers': [0x1A]} | |
+ ['pcv', 'nn::timesrv::detail::service::IStaticService', 500] = {'inbytes': 0, 'outbytes': 8, 'buffers': [0x19, 0x19]} | |
+ ['pcv', 'nn::timesrv::detail::service::IStaticService', 501] = {'inbytes': 0, 'outbytes': 8, 'buffers': [0x19, 0x19]} | |
- ['pcv', 'nn::timesrv::detail::service::ISteadyClock', 201] = {'inbytes': 8, 'outbytes': 0} | |
+ ['pm', 'nn::pm::detail::IShellInterface', 9] = {'inbytes': 8, 'outbytes': 0} | |
+ ['sdb', 'nn::pdm::detail::INotifyService', 6] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['sdb', 'nn::pdm::detail::INotifyService', 7] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['sdb', 'nn::pdm::detail::IQueryService', 11] = {'inbytes': 0x18, 'outbytes': 4, 'buffers': [6]} | |
+ ['sdb', 'nn::pdm::detail::IQueryService', 12] = {'inbytes': 0x10, 'outbytes': 0xC} | |
+ ['sdb', 'nn::pl::detail::ISharedFontManager', 6] = {'inbytes': 8, 'outbytes': 8, 'buffers': [6, 6, 6]} | |
+ ['settings', 'nn::settings::IFactorySettingsServer', 23] = {'inbytes': 0, 'outbytes': 4} | |
+ ['settings', 'nn::settings::IFirmwareDebugSettingsServer', 10] = {'inbytes': 4, 'outbytes': 8, 'buffers': [6]} | |
+ ['settings', 'nn::settings::IFirmwareDebugSettingsServer', 11] = {'inbytes': 4, 'outbytes': 0} | |
+ ['settings', 'nn::settings::IFirmwareDebugSettingsServer', 20] = {'inbytes': 1, 'outbytes': 0} | |
+ ['settings', 'nn::settings::IFirmwareDebugSettingsServer', 21] = {'inbytes': 0, 'outbytes': 0, 'buffers': [5]} | |
+ ['settings', 'nn::settings::IFirmwareDebugSettingsServer', 22] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0x15]} | |
+ ['settings', 'nn::settings::ISettingsServer', 2] = {'inbytes': 4, 'outbytes': 8} | |
+ ['settings', 'nn::settings::ISettingsServer', 5] = {'inbytes': 0, 'outbytes': 4, 'buffers': [6]} | |
+ ['settings', 'nn::settings::ISettingsServer', 6] = {'inbytes': 0, 'outbytes': 4} | |
+ ['settings', 'nn::settings::ISettingsServer', 7] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0x16]} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 122] = {'inbytes': 0, 'outbytes': 4} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 123] = {'inbytes': 4, 'outbytes': 0} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 124] = {'inbytes': 0, 'outbytes': 4} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 125] = {'inbytes': 4, 'outbytes': 0} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 126] = {'inbytes': 0, 'outbytes': 4} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 127] = {'inbytes': 4, 'outbytes': 0} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 128] = {'inbytes': 0, 'outbytes': 0xC} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 129] = {'inbytes': 0xC, 'outbytes': 0} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 130] = {'inbytes': 0, 'outbytes': 0xC} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 131] = {'inbytes': 0xC, 'outbytes': 0} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 132] = {'inbytes': 0, 'outbytes': 0x24} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 133] = {'inbytes': 0x24, 'outbytes': 0} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 134] = {'inbytes': 0, 'outbytes': 0x24} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 135] = {'inbytes': 0x24, 'outbytes': 0} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 136] = {'inbytes': 0, 'outbytes': 4} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 137] = {'inbytes': 4, 'outbytes': 0} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 138] = {'inbytes': 0, 'outbytes': 1} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 139] = {'inbytes': 0, 'outbytes': 4, 'buffers': [6]} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 140] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0x16]} | |
+ ['spl', 'nn::spl::detail::ICryptoInterface'] = {0: {'inbytes': 4, 'outbytes': 8}, 1: {'inbytes': 0, 'outbytes': 0, 'buffers': [0xA, 9, 9, 9]}, 2: {'inbytes': 0x18, 'outbytes': 0x10}, 3: {'inbytes': 0x24, 'outbytes': 0}, 4: {'inbytes': 0x20, 'outbytes': 0x10}, 5: {'inbytes': 0x10, 'outbytes': 0}, 7: {'inbytes': 0, 'outbytes': 0, 'buffers': [0xA]}, 11: {'inbytes': 0, 'outbytes': 1}, 14: {'inbytes': 0x18, 'outbytes': 0x10}, 15: {'inbytes': 0x14, 'outbytes': 0, 'buffers': [0x46, 0x45]}, 16: {'inbytes': 4, 'outbytes': 0x10, 'buffers': [9]}, 21: {'inbytes': 0, 'outbytes': 4}, 22: {'inbytes': 4, 'outbytes': 0}, 23: {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]}, 24: {'inbytes': 4, 'outbytes': 0}, 25: {'inbytes': 0, 'outbytes': 4}} | |
+ ['spl', 'nn::spl::detail::IEsInterface'] = {0: {'inbytes': 4, 'outbytes': 8}, 1: {'inbytes': 0, 'outbytes': 0, 'buffers': [0xA, 9, 9, 9]}, 2: {'inbytes': 0x18, 'outbytes': 0x10}, 3: {'inbytes': 0x24, 'outbytes': 0}, 4: {'inbytes': 0x20, 'outbytes': 0x10}, 5: {'inbytes': 0x10, 'outbytes': 0}, 7: {'inbytes': 0, 'outbytes': 0, 'buffers': [0xA]}, 11: {'inbytes': 0, 'outbytes': 1}, 13: {'inbytes': 0x24, 'outbytes': 0, 'buffers': [0xA, 9]}, 14: {'inbytes': 0x18, 'outbytes': 0x10}, 15: {'inbytes': 0x14, 'outbytes': 0, 'buffers': [0x46, 0x45]}, 16: {'inbytes': 4, 'outbytes': 0x10, 'buffers': [9]}, 17: {'inbytes': 0x24, 'outbytes': 0, 'buffers': [9]}, 18: {'inbytes': 4, 'outbytes': 0x10, 'buffers': [9, 9, 9]}, 20: {'inbytes': 0x14, 'outbytes': 0x10}, 21: {'inbytes': 0, 'outbytes': 4}, 22: {'inbytes': 4, 'outbytes': 0}, 23: {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]}, 24: {'inbytes': 4, 'outbytes': 0}, 25: {'inbytes': 0, 'outbytes': 4}} | |
+ ['spl', 'nn::spl::detail::IFsInterface'] = {0: {'inbytes': 4, 'outbytes': 8}, 1: {'inbytes': 0, 'outbytes': 0, 'buffers': [0xA, 9, 9, 9]}, 2: {'inbytes': 0x18, 'outbytes': 0x10}, 3: {'inbytes': 0x24, 'outbytes': 0}, 4: {'inbytes': 0x20, 'outbytes': 0x10}, 5: {'inbytes': 0x10, 'outbytes': 0}, 7: {'inbytes': 0, 'outbytes': 0, 'buffers': [0xA]}, 9: {'inbytes': 0x24, 'outbytes': 0, 'buffers': [9]}, 10: {'inbytes': 0, 'outbytes': 4, 'buffers': [0xA, 9, 9, 9]}, 11: {'inbytes': 0, 'outbytes': 1}, 12: {'inbytes': 0x18, 'outbytes': 0x10}, 14: {'inbytes': 0x18, 'outbytes': 0x10}, 15: {'inbytes': 0x14, 'outbytes': 0, 'buffers': [0x46, 0x45]}, 16: {'inbytes': 4, 'outbytes': 0x10, 'buffers': [9]}, 19: {'inbytes': 0x14, 'outbytes': 0}, 21: {'inbytes': 0, 'outbytes': 4}, 22: {'inbytes': 4, 'outbytes': 0}, 23: {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]}, 24: {'inbytes': 4, 'outbytes': 0}, 25: {'inbytes': 0, 'outbytes': 4}} | |
- ['spl', 'nn::spl::detail::IGeneralInterface', 2] = {'inbytes': 0x18, 'outbytes': 0x10} | |
- ['spl', 'nn::spl::detail::IGeneralInterface', 3] = {'inbytes': 0x24, 'outbytes': 0} | |
- ['spl', 'nn::spl::detail::IGeneralInterface', 4] = {'inbytes': 0x20, 'outbytes': 0x10} | |
- ['spl', 'nn::spl::detail::IGeneralInterface', 9] = {'inbytes': 0x24, 'outbytes': 0, 'buffers': [9]} | |
- ['spl', 'nn::spl::detail::IGeneralInterface', 10] = {'inbytes': 0, 'outbytes': 4, 'buffers': [0xA, 9, 9, 9]} | |
- ['spl', 'nn::spl::detail::IGeneralInterface', 12] = {'inbytes': 0x18, 'outbytes': 0x10} | |
- ['spl', 'nn::spl::detail::IGeneralInterface', 13] = {'inbytes': 0x24, 'outbytes': 0, 'buffers': [0xA, 9]} | |
- ['spl', 'nn::spl::detail::IGeneralInterface', 14] = {'inbytes': 0x18, 'outbytes': 0x10} | |
- ['spl', 'nn::spl::detail::IGeneralInterface', 15] = {'inbytes': 0x14, 'outbytes': 0, 'buffers': [0x46, 0x45]} | |
- ['spl', 'nn::spl::detail::IGeneralInterface', 16] = {'inbytes': 4, 'outbytes': 0x10, 'buffers': [9]} | |
- ['spl', 'nn::spl::detail::IGeneralInterface', 17] = {'inbytes': 0x24, 'outbytes': 0, 'buffers': [9]} | |
- ['spl', 'nn::spl::detail::IGeneralInterface', 18] = {'inbytes': 4, 'outbytes': 0x10, 'buffers': [9, 9, 9]} | |
- ['spl', 'nn::spl::detail::IGeneralInterface', 19] = {'inbytes': 0x14, 'outbytes': 0} | |
- ['spl', 'nn::spl::detail::IGeneralInterface', 20] = {'inbytes': 0x14, 'outbytes': 0x10} | |
- ['spl', 'nn::spl::detail::IGeneralInterface', 21] = {'inbytes': 0, 'outbytes': 4} | |
- ['spl', 'nn::spl::detail::IGeneralInterface', 22] = {'inbytes': 4, 'outbytes': 0} | |
- ['spl', 'nn::spl::detail::IGeneralInterface', 23] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['spl', 'nn::spl::detail::ISslInterface'] = {0: {'inbytes': 4, 'outbytes': 8}, 1: {'inbytes': 0, 'outbytes': 0, 'buffers': [0xA, 9, 9, 9]}, 2: {'inbytes': 0x18, 'outbytes': 0x10}, 3: {'inbytes': 0x24, 'outbytes': 0}, 4: {'inbytes': 0x20, 'outbytes': 0x10}, 5: {'inbytes': 0x10, 'outbytes': 0}, 7: {'inbytes': 0, 'outbytes': 0, 'buffers': [0xA]}, 11: {'inbytes': 0, 'outbytes': 1}, 13: {'inbytes': 0x24, 'outbytes': 0, 'buffers': [0xA, 9]}, 14: {'inbytes': 0x18, 'outbytes': 0x10}, 15: {'inbytes': 0x14, 'outbytes': 0, 'buffers': [0x46, 0x45]}, 16: {'inbytes': 4, 'outbytes': 0x10, 'buffers': [9]}, 21: {'inbytes': 0, 'outbytes': 4}, 22: {'inbytes': 4, 'outbytes': 0}, 23: {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]}, 24: {'inbytes': 4, 'outbytes': 0}, 25: {'inbytes': 0, 'outbytes': 4}} | |
+ ['ssl', 'nn::ssl::sf::ISslConnection', 25] = {'inbytes': 4, 'outbytes': 0, 'buffers': [6]} | |
+ ['usb', 'nn::usb::hs::IClientEpSession', 7] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['usb', 'nn::usb::hs::IClientEpSession', 8] = {'inbytes': 4, 'outbytes': 0, 'inhandles': [1]} | |
+ ['vi', 'CecManagerSubinterface100'] = {0: {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]}, 1: {'inbytes': 0, 'outbytes': 4}, 2: {'inbytes': 4, 'outbytes': 0}, 3: {'inbytes': 0, 'outbytes': 4}} | |
+ ['vi', 'nn::capsrv::sf::IScreenShotControlService', 1101] = {'inbytes': 0x28, 'outbytes': 0, 'buffers': [0x46, 0x46]} | |
+ ['vi', 'nn::capsrv::sf::IScreenShotControlService', 1106] = {'inbytes': 0x30, 'outbytes': 0x18, 'buffers': [0x15, 0x15, 6, 0x46, 0x46]} | |
+ ['vi', 'nn::capsrv::sf::IScreenShotControlService', 1107] = {'inbytes': 0x30, 'outbytes': 0x18, 'buffers': [0x15, 0x15, 6, 0x45]} | |
+ ['vi', 'nn::capsrv::sf::IScreenShotService', 206] = {'inbytes': 0x78, 'outbytes': 0x20, 'buffers': [0x15, 0x45, 0x45]} | |
+ ['vi', 'nn::cec::ICecManager', 100] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['CecManagerSubinterface100']} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 200] = {'inbytes': 8, 'outbytes': 8} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 201] = {'inbytes': 8, 'outbytes': 0} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 2501] = {'inbytes': 0x10, 'outbytes': 4, 'buffers': [0x16]} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 2601] = {'inbytes': 8, 'outbytes': 0, 'outhandles': [1]} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 4206] = {'inbytes': 8, 'outbytes': 0} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 8200] = {'inbytes': 8, 'outbytes': 8, 'buffers': [0x15]} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 8201] = {'inbytes': 8, 'outbytes': 8, 'inhandles': [1], 'buffers': [0x15]} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 8202] = {'inbytes': 8, 'outbytes': 0} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 8203] = {'inbytes': 0x50, 'outbytes': 0, 'pid': 1} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 8204] = {'inbytes': 0x10, 'outbytes': 0, 'pid': 1} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 8207] = {'inbytes': 8, 'outbytes': 0} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 8208] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 8209] = {'inbytes': 8, 'outbytes': 0} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 8210] = {'inbytes': 8, 'outbytes': 8} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 8211] = {'inbytes': 8, 'outbytes': 0} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 8216] = {'inbytes': 0x20, 'outbytes': 0} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 8217] = {'inbytes': 8, 'outbytes': 0} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 8218] = {'inbytes': 8, 'outbytes': 0} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 8219] = {'inbytes': 8, 'outbytes': 0} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 8220] = {'inbytes': 8, 'outbytes': 0, 'outhandles': [1]} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 8221] = {'inbytes': 8, 'outbytes': 0, 'outhandles': [1]} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 8222] = {'inbytes': 8, 'outbytes': 8} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 8223] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 8224] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 8227] = {'inbytes': 8, 'outbytes': 8, 'buffers': [0x15]} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 8228] = {'inbytes': 8, 'outbytes': 4} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 8229] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 8291] = {'inbytes': 0x18, 'outbytes': 0} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 8292] = {'inbytes': 0x28, 'outbytes': 0} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 8293] = {'inbytes': 0x10, 'outbytes': 8, 'buffers': [6]} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 8294] = {'inbytes': 0x18, 'outbytes': 0, 'buffers': [5]} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 8295] = {'inbytes': 0x20, 'outbytes': 0} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 8296] = {'inbytes': 0x28, 'outbytes': 0, 'buffers': [5]} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 8297] = {'inbytes': 0x10, 'outbytes': 0x20} | |
+ ['vi', 'nn::visrv::sf::ISystemDisplayService', 8225] = {'inbytes': 0x10, 'outbytes': 0x10, 'buffers': [0x16], 'pid': 1} | |
+ ['vi', 'nn::visrv::sf::ISystemDisplayService', 8250] = {'inbytes': 0x10, 'outbytes': 0, 'pid': 1} | |
+ ['vi', 'nn::visrv::sf::ISystemDisplayService', 8251] = {'inbytes': 8, 'outbytes': 0} | |
+ ['vi', 'nn::visrv::sf::ISystemDisplayService', 8252] = {'inbytes': 8, 'outbytes': 0} | |
+ ['vi', 'nn::visrv::sf::ISystemDisplayService', 8253] = {'inbytes': 8, 'outbytes': 0} | |
+ ['vi', 'nn::visrv::sf::ISystemDisplayService', 8254] = {'inbytes': 8, 'outbytes': 0x40} | |
+ ['vi', 'nn::visrv::sf::ISystemDisplayService', 8255] = {'inbytes': 0x50, 'outbytes': 0} | |
+ ['vi', 'nn::visrv::sf::ISystemDisplayService', 8256] = {'inbytes': 8, 'outbytes': 0, 'outhandles': [1]} | |
+ ['vi', 'nn::visrv::sf::ISystemDisplayService', 8257] = {'inbytes': 0x20, 'outbytes': 0} | |
- ['wlan', 'nn::wlan::detail::IInfraManager', 5] = {'inbytes': 0x7C, 'outbytes': 0} | |
+ ['wlan', 'nn::wlan::detail::IInfraManager', 5] = {'inbytes': 0x80, 'outbytes': 0} | |
+ ['wlan', 'nn::wlan::detail::IInfraManager', 26] = {'inbytes': 0, 'outbytes': 0} | |
+ ['wlan', 'nn::wlan::detail::IInfraManager', 27] = {'inbytes': 0, 'outbytes': 0} | |
- ['wlan', 'nn::wlan::detail::ILocalManager', 7] = {'inbytes': 0x80, 'outbytes': 0} | |
+ ['wlan', 'nn::wlan::detail::ILocalManager', 7] = {'inbytes': 0x84, 'outbytes': 0} | |
- ['wlan', 'nn::wlan::detail::ILocalManager', 11] = {'inbytes': 0x80, 'outbytes': 0} | |
+ ['wlan', 'nn::wlan::detail::ILocalManager', 11] = {'inbytes': 0x84, 'outbytes': 0} | |
- ['wlan', 'nn::wlan::detail::ILocalManager', 13] = {'inbytes': 0x80, 'outbytes': 0} | |
+ ['wlan', 'nn::wlan::detail::ILocalManager', 13] = {'inbytes': 0x84, 'outbytes': 0} | |
+ ['wlan', 'nn::wlan::detail::ILocalManager', 45] = {'inbytes': 0, 'outbytes': 0} | |
+ ['wlan', 'nn::wlan::detail::ILocalManager', 46] = {'inbytes': 0, 'outbytes': 0} | |
+ ['wlan', 'nn::wlan::detail::ILocalManager', 47] = {'inbytes': 0, 'outbytes': 0} | |
+ ['wlan', 'nn::wlan::detail::ILocalManager', 48] = {'inbytes': 0, 'outbytes': 0} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
+ ['Bus', 'nn::gpio::IManager', 7] = {'inbytes': 4, 'outbytes': 0, 'outinterfaces': ['nn::gpio::IPadSession']} | |
+ ['Bus', 'nn::gpio::IManager', 8] = {'inbytes': 4, 'outbytes': 1} | |
+ ['Bus', 'nn::gpio::IManager', 9] = {'inbytes': 8, 'outbytes': 0} | |
+ ['account', 'nn::account::IAccountServiceForAdministrator', 60] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0xA]} | |
+ ['account', 'nn::account::IAccountServiceForAdministrator', 113] = {'inbytes': 0x18, 'outbytes': 1} | |
+ ['account', 'nn::account::IAccountServiceForAdministrator', 191] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::account::detail::ISessionObject']} | |
+ ['account', 'nn::account::IAccountServiceForApplication', 60] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0xA]} | |
+ ['account', 'nn::account::IAccountServiceForApplication', 130] = {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::account::baas::IManagerForApplication']} | |
+ ['account', 'nn::account::IAccountServiceForSystemService', 60] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0xA]} | |
+ ['account', 'nn::account::IAccountServiceForSystemService', 113] = {'inbytes': 0x18, 'outbytes': 1} | |
+ ['account', 'nn::account::IAccountServiceForSystemService', 191] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::account::detail::ISessionObject']} | |
+ ['account', 'nn::account::baas::IAdministrator', 140] = {'inbytes': 0, 'outbytes': 0x10} | |
+ ['account', 'nn::account::baas::IAdministrator', 141] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::account::detail::IAsyncContext']} | |
+ ['account', 'nn::account::baas::IAdministrator', 142] = {'inbytes': 4, 'outbytes': 1, 'outinterfaces': ['nn::account::detail::IAsyncContext']} | |
+ ['account', 'nn::account::baas::IManagerForApplication', 160] = {'inbytes': 0, 'outbytes': 0} | |
+ ['account', 'nn::account::baas::IManagerForSystemService', 140] = {'inbytes': 0, 'outbytes': 0x10} | |
+ ['account', 'nn::account::baas::IManagerForSystemService', 141] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::account::detail::IAsyncContext']} | |
+ ['account', 'nn::account::baas::IManagerForSystemService', 142] = {'inbytes': 4, 'outbytes': 1, 'outinterfaces': ['nn::account::detail::IAsyncContext']} | |
+ ['account', 'nn::dauth::detail::IService'] = {0: {'inbytes': 0x58, 'outbytes': 0, 'buffers': [0xA]}} | |
+ ['am', 'nn::am::service::IApplicationFunctions', 27] = {'inbytes': 0x18, 'outbytes': 0x10} | |
+ ['am', 'nn::am::service::IApplicationFunctions', 100] = {'inbytes': 0x10, 'outbytes': 0, 'inhandles': [1]} | |
+ ['am', 'nn::am::service::IApplicationFunctions', 101] = {'inbytes': 0x14, 'outbytes': 0, 'buffers': [0x45]} | |
+ ['am', 'nn::am::service::IApplicationFunctions', 102] = {'inbytes': 1, 'outbytes': 0} | |
+ ['am', 'nn::am::service::IApplicationFunctions', 110] = {'inbytes': 0, 'outbytes': 4, 'buffers': [6, 5]} | |
+ ['am', 'nn::am::service::IApplicationFunctions', 120] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['am', 'nn::am::service::IApplicationFunctions', 121] = {'inbytes': 0, 'outbytes': 0} | |
+ ['am', 'nn::am::service::IApplicationFunctions', 122] = {'inbytes': 0, 'outbytes': 0, 'ininterfaces': ['nn::am::service::IStorage']} | |
+ ['am', 'nn::am::service::IApplicationFunctions', 123] = {'inbytes': 0, 'outbytes': 4} | |
+ ['am', 'nn::am::service::IApplicationFunctions', 500] = {'inbytes': 8, 'outbytes': 0, 'outhandles': [1]} | |
+ ['am', 'nn::am::service::IApplicationFunctions', 1000] = {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::am::service::IMovieMaker'], 'inhandles': [1]} | |
+ ['am', 'nn::am::service::IApplicationFunctions', 1001] = {'inbytes': 0, 'outbytes': 0} | |
+ ['am', 'nn::am::service::ICommonStateGetter', 64] = {'inbytes': 4, 'outbytes': 0} | |
+ ['am', 'nn::am::service::IDisplayController', 9] = {'inbytes': 8, 'outbytes': 0} | |
+ ['am', 'nn::am::service::ILibraryAppletSelfAccessor', 90] = {'inbytes': 8, 'outbytes': 0, 'ininterfaces': ['nn::am::service::IStorage']} | |
+ ['am', 'nn::am::service::ILibraryAppletSelfAccessor', 101] = {'inbytes': 0, 'outbytes': 0} | |
+ ['am', 'nn::am::service::ILibraryAppletSelfAccessor', 102] = {'inbytes': 0, 'outbytes': 0} | |
+ ['am', 'nn::am::service::IMovieMaker'] = {0: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::grcsrv::IMovieMaker']}, 1: {'inbytes': 0, 'outbytes': 8}} | |
+ ['am', 'nn::am::service::IOverlayFunctions', 101] = {'inbytes': 0, 'outbytes': 0} | |
+ ['am', 'nn::am::service::ISelfController', 43] = {'inbytes': 0, 'outbytes': 8} | |
+ ['am', 'nn::am::service::ISelfController', 68] = {'inbytes': 1, 'outbytes': 0} | |
+ ['am', 'nn::am::service::ISelfController', 69] = {'inbytes': 0, 'outbytes': 1} | |
+ ['am', 'nn::am::service::ISelfController', 71] = {'inbytes': 0, 'outbytes': 8} | |
+ ['am', 'nn::grcsrv::IMovieMaker'] = {2: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nns::hosbinder::IHOSBinderDriver']}, 10: {'inbytes': 8, 'outbytes': 4}, 11: {'inbytes': 8, 'outbytes': 0}, 20: {'inbytes': 8, 'outbytes': 0}, 21: {'inbytes': 8, 'outbytes': 0}, 22: {'inbytes': 8, 'outbytes': 0}, 23: {'inbytes': 8, 'outbytes': 0, 'buffers': [5]}, 24: {'inbytes': 0x88, 'outbytes': 0}, 25: {'inbytes': 0x10, 'outbytes': 0, 'buffers': [5, 5]}, 30: {'inbytes': 8, 'outbytes': 0}, 41: {'inbytes': 8, 'outbytes': 8, 'buffers': [5]}, 50: {'inbytes': 8, 'outbytes': 0, 'outhandles': [1]}, 52: {'inbytes': 8, 'outbytes': 0, 'outhandles': [1]}} | |
+ ['am', 'nn::omm::detail::IOperationModeManager', 24] = {'inbytes': 0, 'outbytes': 0} | |
+ ['am', 'nn::omm::detail::IOperationModeManager', 25] = {'inbytes': 4, 'outbytes': 0} | |
+ ['am', 'nn::tcap::server::IManager'] = {0: {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]}, 1: {'inbytes': 4, 'outbytes': 0}, 2: {'inbytes': 0, 'outbytes': 0}} | |
+ ['am', 'nns::hosbinder::IHOSBinderDriver'] = {0: {'inbytes': 0xC, 'outbytes': 0, 'buffers': [5, 6]}, 1: {'inbytes': 0xC, 'outbytes': 0}, 2: {'inbytes': 8, 'outbytes': 0, 'outhandles': [1]}, 3: {'inbytes': 0xC, 'outbytes': 0, 'buffers': [0x21, 0x22]}} | |
+ ['audio', 'nn::audio::detail::IAudioDevice', 13] = {'inbytes': 0, 'outbytes': 4, 'buffers': [5]} | |
+ ['audio', 'nn::audio::detail::IAudioInManager', 5] = {'inbytes': 0x18, 'outbytes': 0x10, 'outinterfaces': ['nn::audio::detail::IAudioIn'], 'inhandles': [1], 'buffers': [5, 6], 'pid': 1} | |
- ['audio', 'nn::audio::detail::IFinalOutputRecorderManagerForApplet'] = {0: {'inbytes': 0x10, 'outbytes': 0}, 1: {'inbytes': 0x10, 'outbytes': 0}} | |
- ['audio', 'nn::audio::detail::IFinalOutputRecorderManagerForDebugger'] = {0: {'inbytes': 8, 'outbytes': 0}, 1: {'inbytes': 8, 'outbytes': 0}} | |
+ ['bcat', 'nn::bcat::detail::ipc::IBcatService', 10101] = {'inbytes': 0x20, 'outbytes': 0, 'outinterfaces': ['nn::bcat::detail::ipc::IDeliveryCacheProgressService']} | |
+ ['bcat', 'nn::bcat::detail::ipc::IBcatService', 10200] = {'inbytes': 0, 'outbytes': 0} | |
+ ['bcat', 'nn::bcat::detail::ipc::IBcatService', 20101] = {'inbytes': 0x30, 'outbytes': 0, 'outinterfaces': ['nn::bcat::detail::ipc::IDeliveryCacheProgressService']} | |
+ ['bcat', 'nn::prepo::detail::ipc::IPrepoService', 90200] = {'inbytes': 0, 'outbytes': 0x80} | |
+ ['bcat', 'nn::prepo::detail::ipc::IPrepoService', 90201] = {'inbytes': 0, 'outbytes': 4, 'buffers': [6]} | |
+ ['bcat', 'nn::prepo::detail::ipc::IPrepoService', 90300] = {'inbytes': 0, 'outbytes': 0} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 46] = {'inbytes': 0, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 46] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 49] = {'inbytes': 2, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 49] = {'inbytes': 0, 'outbytes': 0} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 50] = {'inbytes': 0x14, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 50] = {'inbytes': 2, 'outbytes': 0} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 52] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0x19]} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 52] = {'inbytes': 0x14, 'outbytes': 0} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 53] = {'inbytes': 0xA, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 53] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0x19]} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 54] = {'inbytes': 0, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 54] = {'inbytes': 0xA, 'outbytes': 0} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 56] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0x19]} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 56] = {'inbytes': 0, 'outbytes': 0} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 58] = {'inbytes': 1, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 58] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0x19]} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 59] = {'inbytes': 0, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 59] = {'inbytes': 1, 'outbytes': 0} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 60] = {'inbytes': 1, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 60] = {'inbytes': 0, 'outbytes': 0} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 61] = {'inbytes': 0x14, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 61] = {'inbytes': 1, 'outbytes': 0} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 62] = {'inbytes': 1, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 62] = {'inbytes': 0x14, 'outbytes': 0} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 63] = {'inbytes': 0, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 63] = {'inbytes': 1, 'outbytes': 0} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 64] = {'inbytes': 8, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 64] = {'inbytes': 0, 'outbytes': 0} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 65] = {'inbytes': 2, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 65] = {'inbytes': 0x10, 'outbytes': 0} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 66] = {'inbytes': 8, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 66] = {'inbytes': 4, 'outbytes': 0} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 67] = {'inbytes': 0x18, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 67] = {'inbytes': 0xC, 'outbytes': 0} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 68] = {'inbytes': 0x34, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 68] = {'inbytes': 0x18, 'outbytes': 0} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 69] = {'inbytes': 0x4C, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 69] = {'inbytes': 8, 'outbytes': 0} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 70] = {'inbytes': 0x38, 'outbytes': 0, 'buffers': [9]} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 70] = {'inbytes': 0x14, 'outbytes': 0} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 71] = {'inbytes': 0x50, 'outbytes': 0, 'buffers': [9]} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 71] = {'inbytes': 1, 'outbytes': 0} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 72] = {'inbytes': 0x34, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 72] = {'inbytes': 8, 'outbytes': 0} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 73] = {'inbytes': 0x34, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 73] = {'inbytes': 7, 'outbytes': 0} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 74] = {'inbytes': 4, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 74] = {'inbytes': 0x18, 'outbytes': 0} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 75] = {'inbytes': 0x14, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 75] = {'inbytes': 0x18, 'outbytes': 0} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 76] = {'inbytes': 1, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 76] = {'inbytes': 0x2C, 'outbytes': 0} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 77] = {'inbytes': 8, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 77] = {'inbytes': 0x2C, 'outbytes': 0} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 78] = {'inbytes': 7, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 78] = {'inbytes': 0, 'outbytes': 4, 'buffers': [0xA]} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 79] = {'inbytes': 0x18, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 79] = {'inbytes': 0x34, 'outbytes': 0x1C} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 80] = {'inbytes': 0x18, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 80] = {'inbytes': 0x4C, 'outbytes': 0x1C} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 81] = {'inbytes': 0x2C, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 81] = {'inbytes': 0x4C, 'outbytes': 0x18} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 82] = {'inbytes': 0x2C, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 82] = {'inbytes': 0x64, 'outbytes': 0x18} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 83] = {'inbytes': 0x2C, 'outbytes': 0, 'buffers': [9]} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 83] = {'inbytes': 0x14, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 84] = {'inbytes': 0x14, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 85] = {'inbytes': 0x14, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 86] = {'inbytes': 0x14, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 87] = {'inbytes': 0x14, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 88] = {'inbytes': 0x14, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 89] = {'inbytes': 0x38, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 90] = {'inbytes': 0x50, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 91] = {'inbytes': 0x38, 'outbytes': 0, 'buffers': [9]} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 92] = {'inbytes': 0x50, 'outbytes': 0, 'buffers': [9]} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 93] = {'inbytes': 0x38, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 94] = {'inbytes': 0x38, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 95] = {'inbytes': 0, 'outbytes': 4, 'buffers': [0xA]} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 96] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 97] = {'inbytes': 4, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 256] = {'inbytes': 0, 'outbytes': 1} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothUser'] = {0: {'inbytes': 0x40, 'outbytes': 0, 'pid': 1}, 1: {'inbytes': 0x58, 'outbytes': 0, 'pid': 1}, 2: {'inbytes': 0x40, 'outbytes': 0, 'buffers': [9], 'pid': 1}, 3: {'inbytes': 0x58, 'outbytes': 0, 'buffers': [9], 'pid': 1}, 4: {'inbytes': 0x40, 'outbytes': 0, 'pid': 1}, 5: {'inbytes': 0x40, 'outbytes': 0, 'pid': 1}, 6: {'inbytes': 0x38, 'outbytes': 0, 'buffers': [9], 'pid': 1}, 7: {'inbytes': 0x38, 'outbytes': 0, 'buffers': [9], 'pid': 1}, 8: {'inbytes': 8, 'outbytes': 4, 'buffers': [0xA], 'pid': 1}, 9: {'inbytes': 8, 'outbytes': 0, 'outhandles': [1], 'pid': 1}} | |
+ ['bsdsocket', 'nn::socket::resolver::IResolver', 10] = {'inbytes': 0x10, 'outbytes': 0xC, 'buffers': [0x21, 0x22, 0x21], 'pid': 1} | |
+ ['bsdsocket', 'nn::socket::resolver::IResolver', 11] = {'inbytes': 0x18, 'outbytes': 0xC, 'buffers': [0x21, 0x22, 0x21], 'pid': 1} | |
+ ['bsdsocket', 'nn::socket::resolver::IResolver', 12] = {'inbytes': 0x10, 'outbytes': 0x10, 'buffers': [5, 5, 5, 0x22, 0x21], 'pid': 1} | |
+ ['bsdsocket', 'nn::socket::resolver::IResolver', 13] = {'inbytes': 0x18, 'outbytes': 0xC, 'buffers': [5, 6, 6, 0x21], 'pid': 1} | |
+ ['bsdsocket', 'nn::socket::resolver::IResolver', 14] = {'inbytes': 0x10, 'outbytes': 8, 'buffers': [5], 'pid': 1} | |
+ ['bsdsocket', 'nn::socket::resolver::IResolver', 15] = {'inbytes': 0x10, 'outbytes': 0xC, 'buffers': [5, 6], 'pid': 1} | |
+ ['btm', 'nn::btm::IBtm', 22] = {'inbytes': 7, 'outbytes': 0} | |
+ ['btm', 'nn::btm::IBtm', 23] = {'inbytes': 0, 'outbytes': 1, 'outhandles': [1]} | |
+ ['btm', 'nn::btm::IBtm', 24] = {'inbytes': 6, 'outbytes': 0} | |
+ ['btm', 'nn::btm::IBtm', 25] = {'inbytes': 4, 'outbytes': 0} | |
+ ['btm', 'nn::btm::IBtm', 26] = {'inbytes': 0, 'outbytes': 1, 'buffers': [0xA]} | |
+ ['btm', 'nn::btm::IBtm', 27] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0x1A]} | |
+ ['btm', 'nn::btm::IBtm', 28] = {'inbytes': 0, 'outbytes': 1, 'outhandles': [1]} | |
+ ['btm', 'nn::btm::IBtm', 29] = {'inbytes': 4, 'outbytes': 1, 'buffers': [6]} | |
+ ['btm', 'nn::btm::IBtm', 30] = {'inbytes': 0x18, 'outbytes': 1, 'buffers': [0x1A]} | |
+ ['btm', 'nn::btm::IBtm', 31] = {'inbytes': 8, 'outbytes': 1, 'buffers': [6]} | |
+ ['btm', 'nn::btm::IBtm', 32] = {'inbytes': 8, 'outbytes': 1, 'buffers': [0x1A]} | |
+ ['btm', 'nn::btm::IBtm', 33] = {'inbytes': 8, 'outbytes': 1, 'buffers': [6]} | |
+ ['btm', 'nn::btm::IBtm', 34] = {'inbytes': 8, 'outbytes': 1, 'buffers': [6]} | |
+ ['btm', 'nn::btm::IBtm', 35] = {'inbytes': 0, 'outbytes': 1, 'outhandles': [1]} | |
+ ['btm', 'nn::btm::IBtm', 36] = {'inbytes': 8, 'outbytes': 0} | |
+ ['btm', 'nn::btm::IBtm', 37] = {'inbytes': 4, 'outbytes': 2} | |
+ ['btm', 'nn::btm::IBtm', 38] = {'inbytes': 0x18, 'outbytes': 0} | |
+ ['btm', 'nn::btm::IBtm', 39] = {'inbytes': 0x18, 'outbytes': 0} | |
+ ['btm', 'nn::btm::IBtm', 40] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['btm', 'nn::btm::IBtm', 41] = {'inbytes': 8, 'outbytes': 0} | |
+ ['btm', 'nn::btm::IBtm', 42] = {'inbytes': 8, 'outbytes': 0} | |
+ ['btm', 'nn::btm::IBtmDebug', 9] = {'inbytes': 4, 'outbytes': 0, 'buffers': [0x1A]} | |
+ ['btm', 'nn::btm::IBtmUser'] = {0: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::btm::IBtmUserCore']}} | |
+ ['btm', 'nn::btm::IBtmUserCore'] = {0: {'inbytes': 0, 'outbytes': 1, 'outhandles': [1]}, 1: {'inbytes': 2, 'outbytes': 8}, 2: {'inbytes': 2, 'outbytes': 0x14}, 3: {'inbytes': 0x10, 'outbytes': 0, 'pid': 1}, 4: {'inbytes': 0, 'outbytes': 0}, 5: {'inbytes': 8, 'outbytes': 1, 'buffers': [6], 'pid': 1}, 6: {'inbytes': 0x10, 'outbytes': 0, 'pid': 1}, 7: {'inbytes': 0, 'outbytes': 0}, 8: {'inbytes': 0x20, 'outbytes': 0, 'pid': 1}, 9: {'inbytes': 0, 'outbytes': 0}, 10: {'inbytes': 8, 'outbytes': 1, 'buffers': [6], 'pid': 1}, 17: {'inbytes': 0, 'outbytes': 1, 'outhandles': [1]}, 18: {'inbytes': 0x10, 'outbytes': 0, 'pid': 1}, 19: {'inbytes': 4, 'outbytes': 0}, 20: {'inbytes': 8, 'outbytes': 1, 'buffers': [0xA], 'pid': 1}, 21: {'inbytes': 0, 'outbytes': 1, 'outhandles': [1]}, 22: {'inbytes': 0xC, 'outbytes': 0}, 23: {'inbytes': 0xC, 'outbytes': 0}, 24: {'inbytes': 0xE, 'outbytes': 0}, 25: {'inbytes': 8, 'outbytes': 1, 'buffers': [0xA]}, 26: {'inbytes': 0, 'outbytes': 1, 'outhandles': [1]}, 27: {'inbytes': 0x10, 'outbytes': 1, 'buffers': [6], 'pid': 1}, 28: {'inbytes': 0x20, 'outbytes': 1, 'buffers': [0x1A], 'pid': 1}, 29: {'inbytes': 0x10, 'outbytes': 1, 'buffers': [6], 'pid': 1}, 30: {'inbytes': 0x10, 'outbytes': 1, 'buffers': [0x1A], 'pid': 1}, 31: {'inbytes': 0x10, 'outbytes': 1, 'buffers': [6], 'pid': 1}, 32: {'inbytes': 0x10, 'outbytes': 1, 'buffers': [6], 'pid': 1}, 33: {'inbytes': 0, 'outbytes': 1, 'outhandles': [1]}, 34: {'inbytes': 0x10, 'outbytes': 0, 'pid': 1}, 35: {'inbytes': 0x10, 'outbytes': 2, 'pid': 1}, 36: {'inbytes': 0x20, 'outbytes': 0, 'pid': 1}, 37: {'inbytes': 0x20, 'outbytes': 0, 'pid': 1}} | |
+ ['capsrv', 'nn::capsrv::sf::IAlbumAccessorApplicationSession'] = {2001: {'inbytes': 0x38, 'outbytes': 8, 'pid': 1}, 2002: {'inbytes': 8, 'outbytes': 0}, 2003: {'inbytes': 8, 'outbytes': 8}, 2004: {'inbytes': 0x10, 'outbytes': 8, 'buffers': [6]}, 2005: {'inbytes': 8, 'outbytes': 0}} | |
+ ['capsrv', 'nn::capsrv::sf::IAlbumAccessorService', 100] = {'inbytes': 0x10, 'outbytes': 8} | |
+ ['capsrv', 'nn::capsrv::sf::IAlbumAccessorService', 101] = {'inbytes': 0x10, 'outbytes': 8, 'buffers': [6]} | |
+ ['capsrv', 'nn::capsrv::sf::IAlbumApplicationService'] = {102: {'inbytes': 0x20, 'outbytes': 8, 'buffers': [6], 'pid': 1}, 103: {'inbytes': 0x40, 'outbytes': 0, 'pid': 1}, 104: {'inbytes': 0x38, 'outbytes': 8, 'pid': 1}, 105: {'inbytes': 0x38, 'outbytes': 0, 'pid': 1}, 110: {'inbytes': 0x58, 'outbytes': 0, 'buffers': [0x16, 0x46, 6], 'pid': 1}, 120: {'inbytes': 0x58, 'outbytes': 0, 'buffers': [0x16, 0x46, 6], 'pid': 1}, 130: {'inbytes': 0x18, 'outbytes': 0, 'pid': 1}, 60002: {'inbytes': 0x38, 'outbytes': 0, 'outinterfaces': ['nn::capsrv::sf::IAlbumAccessorApplicationSession'], 'pid': 1}} | |
+ ['erpt', 'nn::erpt::sf::IContext', 6] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0x15, 5]} | |
+ ['erpt', 'nn::erpt::sf::IManager', 3] = {'inbytes': 0x14, 'outbytes': 0} | |
+ ['erpt', 'nn::erpt::sf::IManager', 4] = {'inbytes': 0, 'outbytes': 0x38} | |
- ['es', 'nn::es::IETicketService', 15] = {'inbytes': 0x10, 'outbytes': 8} | |
- ['es', 'nn::es::IETicketService', 17] = {'inbytes': 0x10, 'outbytes': 8, 'buffers': [6]} | |
+ ['es', 'nn::es::IETicketService', 30] = {'inbytes': 8, 'outbytes': 4} | |
+ ['es', 'nn::es::IETicketService', 31] = {'inbytes': 8, 'outbytes': 4, 'buffers': [6]} | |
+ ['es', 'nn::es::IETicketService', 32] = {'inbytes': 8, 'outbytes': 4} | |
+ ['es', 'nn::es::IETicketService', 33] = {'inbytes': 8, 'outbytes': 4, 'buffers': [6]} | |
+ ['es', 'nn::es::IETicketService', 34] = {'inbytes': 0x10, 'outbytes': 8} | |
+ ['es', 'nn::es::IETicketService', 35] = {'inbytes': 0x10, 'outbytes': 8, 'buffers': [6, 6]} | |
+ ['friends', 'nn::friends::detail::ipc::IFriendService', 20302] = {'inbytes': 0x10, 'outbytes': 8} | |
+ ['friends', 'nn::friends::detail::ipc::IFriendService', 20303] = {'inbytes': 0x20, 'outbytes': 0, 'buffers': [0x1A]} | |
+ ['friends', 'nn::friends::detail::ipc::IFriendService', 20304] = {'inbytes': 0x18, 'outbytes': 4, 'buffers': [6]} | |
+ ['friends', 'nn::friends::detail::ipc::IFriendService', 30300] = {'inbytes': 0x18, 'outbytes': 0, 'buffers': [0x16]} | |
+ ['friends', 'nn::friends::detail::ipc::IFriendService', 30301] = {'inbytes': 0x18, 'outbytes': 0} | |
+ ['fs', 'nn::fssrv::sf::IDeviceOperator', 400] = {'inbytes': 0, 'outbytes': 0} | |
+ ['fs', 'nn::fssrv::sf::IDeviceOperator', 401] = {'inbytes': 0, 'outbytes': 0} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 33] = {'inbytes': 2, 'outbytes': 0} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 34] = {'inbytes': 2, 'outbytes': 0x10} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 62] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::fssrv::sf::ISaveDataInfoReader']} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 64] = {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::fssrv::sf::IFileSystem']} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 65] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 66] = {'inbytes': 0x10, 'outbytes': 0, 'buffers': [5, 5]} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 82] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::fssrv::sf::ISaveDataTransferManagerWithDivision']} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 510] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::fssrv::sf::IEventNotifier']} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 511] = {'inbytes': 0, 'outbytes': 0} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 615] = {'inbytes': 0x10, 'outbytes': 8} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 700] = {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::fssrv::sf::IEventNotifier']} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 701] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 702] = {'inbytes': 8, 'outbytes': 1} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 710] = {'inbytes': 8, 'outbytes': 0} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 720] = {'inbytes': 8, 'outbytes': 0} | |
+ ['fs', 'nn::fssrv::sf::ISaveDataChunkExporter'] = {0: {'inbytes': 8, 'outbytes': 8, 'buffers': [6]}} | |
+ ['fs', 'nn::fssrv::sf::ISaveDataChunkImporter'] = {0: {'inbytes': 8, 'outbytes': 0, 'buffers': [5]}} | |
+ ['fs', 'nn::fssrv::sf::ISaveDataChunkIterator'] = {0: {'inbytes': 0, 'outbytes': 0}, 1: {'inbytes': 0, 'outbytes': 1}, 16: {'inbytes': 0, 'outbytes': 4}} | |
+ ['fs', 'nn::fssrv::sf::ISaveDataDivisionExporter'] = {0: {'inbytes': 4, 'outbytes': 0}, 16: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::fssrv::sf::ISaveDataChunkIterator']}, 48: {'inbytes': 4, 'outbytes': 0, 'outinterfaces': ['nn::fssrv::sf::ISaveDataChunkExporter']}} | |
+ ['fs', 'nn::fssrv::sf::ISaveDataDivisionImporter'] = {16: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::fssrv::sf::ISaveDataChunkIterator']}, 32: {'inbytes': 0, 'outbytes': 8}, 33: {'inbytes': 0, 'outbytes': 0}, 48: {'inbytes': 4, 'outbytes': 0, 'outinterfaces': ['nn::fssrv::sf::ISaveDataChunkImporter']}} | |
+ ['fs', 'nn::fssrv::sf::ISaveDataTransferManagerWithDivision'] = {0: {'inbytes': 0, 'outbytes': 0, 'buffers': [6]}, 16: {'inbytes': 0, 'outbytes': 0, 'buffers': [5]}, 32: {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::fssrv::sf::ISaveDataDivisionExporter']}, 33: {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::fssrv::sf::ISaveDataDivisionExporter'], 'buffers': [5]}, 64: {'inbytes': 0x18, 'outbytes': 0, 'outinterfaces': ['nn::fssrv::sf::ISaveDataDivisionImporter'], 'buffers': [5]}, 65: {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::fssrv::sf::ISaveDataDivisionImporter'], 'buffers': [5]}} | |
- ['grc', 'nn::grcsrv::IContinuousRecorder', 11] = {'inbytes': 0, 'outbytes': 0} | |
+ ['grc', 'nn::grcsrv::IContinuousRecorder', 11] = {'inbytes': 0x40, 'outbytes': 0} | |
+ ['grc', 'nn::grcsrv::IContinuousRecorder', 14] = {'inbytes': 0x40, 'outbytes': 0, 'outhandles': [1]} | |
- ['grc', 'nn::grcsrv::IGrcService', 1] = {'inbytes': 0x28, 'outbytes': 0, 'outinterfaces': ['nn::grcsrv::IContinuousRecorder'], 'inhandles': [1]} | |
+ ['grc', 'nn::grcsrv::IGrcService', 1] = {'inbytes': 0x48, 'outbytes': 0, 'outinterfaces': ['nn::grcsrv::IContinuousRecorder'], 'inhandles': [1]} | |
+ ['grc', 'nn::grcsrv::IGrcService', 3] = {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::grcsrv::IOffscreenRecorder'], 'inhandles': [1]} | |
+ ['grc', 'nn::grcsrv::IGrcService', 101] = {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::grcsrv::IMovieMaker']} | |
+ ['grc', 'nn::grcsrv::IGrcService', 9903] = {'inbytes': 8, 'outbytes': 0} | |
+ ['grc', 'nn::grcsrv::IMovieMaker'] = {2: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nns::hosbinder::IHOSBinderDriver']}, 10: {'inbytes': 8, 'outbytes': 4}, 11: {'inbytes': 8, 'outbytes': 0}, 20: {'inbytes': 8, 'outbytes': 0}, 21: {'inbytes': 8, 'outbytes': 0}, 22: {'inbytes': 8, 'outbytes': 0}, 23: {'inbytes': 8, 'outbytes': 0, 'buffers': [5]}, 24: {'inbytes': 0x88, 'outbytes': 0}, 25: {'inbytes': 0x10, 'outbytes': 0, 'buffers': [5, 5]}, 30: {'inbytes': 8, 'outbytes': 0}, 41: {'inbytes': 8, 'outbytes': 8, 'buffers': [5]}, 50: {'inbytes': 8, 'outbytes': 0, 'outhandles': [1]}, 52: {'inbytes': 8, 'outbytes': 0, 'outhandles': [1]}} | |
+ ['grc', 'nn::grcsrv::IOffscreenRecorder'] = {201: {'inbytes': 8, 'outbytes': 8}, 202: {'inbytes': 8, 'outbytes': 0}} | |
+ ['grc', 'nns::hosbinder::IHOSBinderDriver'] = {0: {'inbytes': 0xC, 'outbytes': 0, 'buffers': [5, 6]}, 1: {'inbytes': 0xC, 'outbytes': 0}, 2: {'inbytes': 8, 'outbytes': 0, 'outhandles': [1]}, 3: {'inbytes': 0xC, 'outbytes': 0, 'buffers': [0x21, 0x22]}} | |
+ ['hid', 'nn::hid::IHidDebugServer', 141] = {'inbytes': 8, 'outbytes': 8, 'pid': 1} | |
+ ['hid', 'nn::hid::IHidDebugServer', 142] = {'inbytes': 0, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidDebugServer', 143] = {'inbytes': 8, 'outbytes': 4, 'buffers': [0x22], 'pid': 1} | |
+ ['hid', 'nn::hid::IHidDebugServer', 224] = {'inbytes': 0x20, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidDebugServer', 225] = {'inbytes': 8, 'outbytes': 0x20} | |
+ ['hid', 'nn::hid::IHidDebugServer', 226] = {'inbytes': 8, 'outbytes': 8, 'buffers': [0xA]} | |
+ ['hid', 'nn::hid::IHidDebugServer', 227] = {'inbytes': 8, 'outbytes': 0x18} | |
+ ['hid', 'nn::hid::IHidDebugServer', 301] = {'inbytes': 0, 'outbytes': 4, 'buffers': [0xA]} | |
+ ['hid', 'nn::hid::IHidDebugServer', 302] = {'inbytes': 8, 'outbytes': 0x98} | |
+ ['hid', 'nn::hid::IHidDebugServer', 303] = {'inbytes': 0, 'outbytes': 4, 'buffers': [0xA, 0x22]} | |
+ ['hid', 'nn::hid::IHidDebugServer', 321] = {'inbytes': 0xA0, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidDebugServer', 322] = {'inbytes': 1, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidDebugServer', 323] = {'inbytes': 0, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidDebugServer', 350] = {'inbytes': 0x68, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidServer', 109] = {'inbytes': 0x10, 'outbytes': 0, 'pid': 1} | |
+ ['hid', 'nn::hid::IHidServer', 133] = {'inbytes': 0x18, 'outbytes': 8, 'pid': 1} | |
+ ['hid', 'nn::hid::IHidServer', 303] = {'inbytes': 8, 'outbytes': 0, 'pid': 1} | |
+ ['hid', 'nn::hid::IHidServer', 304] = {'inbytes': 8, 'outbytes': 0, 'pid': 1} | |
+ ['hid', 'nn::hid::IHidServer', 305] = {'inbytes': 8, 'outbytes': 0, 'pid': 1} | |
+ ['hid', 'nn::hid::IHidServer', 306] = {'inbytes': 0x18, 'outbytes': 0, 'inhandles': [1, 1], 'pid': 1} | |
+ ['hid', 'nn::hid::IHidServer', 307] = {'inbytes': 8, 'outbytes': 0, 'pid': 1} | |
+ ['hid', 'nn::hid::IHidServer', 308] = {'inbytes': 0x10, 'outbytes': 0, 'pid': 1} | |
+ ['hid', 'nn::hid::IHidServer', 309] = {'inbytes': 8, 'outbytes': 4, 'pid': 1} | |
+ ['hid', 'nn::hid::IHidServer', 500] = {'inbytes': 0x10, 'outbytes': 8, 'pid': 1} | |
+ ['hid', 'nn::hid::IHidServer', 501] = {'inbytes': 8, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidServer', 502] = {'inbytes': 8, 'outbytes': 0, 'outhandles': [1]} | |
+ ['hid', 'nn::hid::IHidServer', 503] = {'inbytes': 8, 'outbytes': 8, 'buffers': [6]} | |
+ ['hid', 'nn::hid::IHidServer', 504] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidServer', 505] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidServer', 506] = {'inbytes': 8, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidServer', 507] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidServer', 508] = {'inbytes': 8, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidServer', 509] = {'inbytes': 0x18, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidServer', 510] = {'inbytes': 0x18, 'outbytes': 0, 'buffers': [0x19]} | |
+ ['hid', 'nn::hid::IHidServer', 511] = {'inbytes': 8, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidServer', 512] = {'inbytes': 8, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidServer', 513] = {'inbytes': 0x28, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidServer', 514] = {'inbytes': 0x10, 'outbytes': 0, 'buffers': [5]} | |
+ ['hid', 'nn::hid::IHidServer', 515] = {'inbytes': 0x28, 'outbytes': 0, 'inhandles': [1]} | |
+ ['hid', 'nn::hid::IHidServer', 516] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidServer', 517] = {'inbytes': 8, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidServer', 518] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidSystemServer', 308] = {'inbytes': 8, 'outbytes': 0, 'pid': 1} | |
+ ['hid', 'nn::hid::IHidSystemServer', 309] = {'inbytes': 4, 'outbytes': 8} | |
+ ['hid', 'nn::hid::IHidSystemServer', 548] = {'inbytes': 0, 'outbytes': 8, 'buffers': [6]} | |
+ ['hid', 'nn::hid::IHidSystemServer', 807] = {'inbytes': 8, 'outbytes': 8} | |
+ ['hid', 'nn::hid::IHidSystemServer', 808] = {'inbytes': 8, 'outbytes': 8} | |
+ ['hid', 'nn::hid::IHidSystemServer', 809] = {'inbytes': 8, 'outbytes': 0x10} | |
+ ['hid', 'nn::hid::IHidSystemServer', 810] = {'inbytes': 8, 'outbytes': 8} | |
+ ['hid', 'nn::hid::IHidSystemServer', 811] = {'inbytes': 4, 'outbytes': 8} | |
+ ['hid', 'nn::hid::IHidSystemServer', 825] = {'inbytes': 0x10, 'outbytes': 8} | |
+ ['hid', 'nn::hid::IHidSystemServer', 826] = {'inbytes': 0x10, 'outbytes': 8} | |
+ ['hid', 'nn::hid::IHidSystemServer', 827] = {'inbytes': 0x10, 'outbytes': 1} | |
+ ['hid', 'nn::hid::IHidSystemServer', 828] = {'inbytes': 0x10, 'outbytes': 1} | |
+ ['hid', 'nn::hid::IHidSystemServer', 829] = {'inbytes': 0x10, 'outbytes': 1} | |
+ ['hid', 'nn::hid::IHidSystemServer', 1050] = {'inbytes': 0x10, 'outbytes': 1, 'pid': 1} | |
+ ['hid', 'nn::hid::IHidSystemServer', 1051] = {'inbytes': 0x10, 'outbytes': 0, 'pid': 1} | |
+ ['hid', 'nn::hid::IHidSystemServer', 1052] = {'inbytes': 0x10, 'outbytes': 0, 'pid': 1} | |
+ ['hid', 'nn::hid::IHidSystemServer', 1053] = {'inbytes': 0x10, 'outbytes': 8, 'pid': 1} | |
+ ['hid', 'nn::hid::IHidSystemServer', 1100] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::hidbus::IHidbusSystemServer']} | |
+ ['hid', 'nn::hidbus::IHidbusServer'] = {1: {'inbytes': 0x18, 'outbytes': 0x10}, 2: {'inbytes': 8, 'outbytes': 1}, 3: {'inbytes': 0x10, 'outbytes': 0}, 4: {'inbytes': 0x10, 'outbytes': 0}, 5: {'inbytes': 0x20, 'outbytes': 0}, 6: {'inbytes': 8, 'outbytes': 4}, 7: {'inbytes': 8, 'outbytes': 0, 'buffers': [0x21]}, 8: {'inbytes': 8, 'outbytes': 4, 'buffers': [0x22]}, 9: {'inbytes': 8, 'outbytes': 0, 'outhandles': [1]}, 10: {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]}, 11: {'inbytes': 0x10, 'outbytes': 0, 'inhandles': [1], 'buffers': [0x21]}, 12: {'inbytes': 8, 'outbytes': 0}, 13: {'inbytes': 8, 'outbytes': 0, 'buffers': [0xA]}} | |
+ ['hid', 'nn::hidbus::IHidbusSystemServer'] = {500: {'inbytes': 8, 'outbytes': 0}, 501: {'inbytes': 0x10, 'outbytes': 0}, 502: {'inbytes': 8, 'outbytes': 0}} | |
+ ['hid', 'nn::irsensor::IIrSensorServer', 315] = {'inbytes': 0x10, 'outbytes': 0, 'pid': 1} | |
+ ['hid', 'nn::irsensor::IIrSensorServer', 316] = {'inbytes': 0x38, 'outbytes': 0, 'inhandles': [1], 'pid': 1} | |
+ ['hid', 'nn::irsensor::IIrSensorServer', 317] = {'inbytes': 0x18, 'outbytes': 0, 'pid': 1} | |
+ ['hid', 'nn::irsensor::IIrSensorServer', 318] = {'inbytes': 0x10, 'outbytes': 0, 'pid': 1} | |
+ ['hid', 'nn::irsensor::IIrSensorServer', 319] = {'inbytes': 0x10, 'outbytes': 0, 'pid': 1} | |
- ['hid', 'nn::xcd::detail::ISystemServer', 1] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['hid', 'nn::xcd::detail::ISystemServer', 1] = {'inbytes': 0xC, 'outbytes': 0} | |
- ['hid', 'nn::xcd::detail::ISystemServer', 3] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['hid', 'nn::xcd::detail::ISystemServer', 3] = {'inbytes': 0xC, 'outbytes': 0} | |
+ ['hid', 'nn::xcd::detail::ISystemServer', 6] = {'inbytes': 0xC, 'outbytes': 0} | |
- ['hid', 'nn::xcd::detail::ISystemServer', 18] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['hid', 'nn::xcd::detail::ISystemServer', 18] = {'inbytes': 0xC, 'outbytes': 0} | |
- ['lbl', 'nn::lbl::detail::ILblController', 16] = {'inbytes': 0, 'outbytes': 4} | |
+ ['lbl', 'nn::lbl::detail::ILblController', 16] = {'inbytes': 0, 'outbytes': 8} | |
+ ['ldn', 'nn::ldn::detail::ISystemLocalCommunicationService', 104] = {'inbytes': 4, 'outbytes': 0} | |
+ ['ldn', 'nn::ldn::detail::IUserLocalCommunicationService', 104] = {'inbytes': 4, 'outbytes': 0} | |
+ ['ncm', 'nn::lr::ILocationResolver', 10] = {'inbytes': 8, 'outbytes': 0, 'buffers': [0x19]} | |
+ ['ncm', 'nn::lr::ILocationResolver', 11] = {'inbytes': 0, 'outbytes': 0} | |
+ ['ncm', 'nn::lr::ILocationResolver', 12] = {'inbytes': 8, 'outbytes': 0} | |
+ ['ncm', 'nn::lr::ILocationResolver', 13] = {'inbytes': 8, 'outbytes': 0} | |
+ ['ncm', 'nn::lr::ILocationResolver', 14] = {'inbytes': 8, 'outbytes': 0} | |
+ ['ncm', 'nn::lr::ILocationResolver', 15] = {'inbytes': 8, 'outbytes': 0} | |
+ ['ncm', 'nn::ncm::IContentMetaDatabase', 20] = {'inbytes': 0x18, 'outbytes': 0x10} | |
- ['nim', 'nn::nim::detail::INetworkInstallManager', 4] = {'inbytes': 0x10, 'outbytes': 0x38} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 4] = {'inbytes': 0x10, 'outbytes': 0x40} | |
- ['nim', 'nn::nim::detail::INetworkInstallManager', 24] = {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncValue'], 'outhandles': [1], 'buffers': [5, 5]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 24] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncValue'], 'outhandles': [1], 'buffers': [5, 5, 5]} | |
- ['nim', 'nn::nim::detail::INetworkInstallManager', 25] = {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncResult'], 'outhandles': [1], 'buffers': [5, 5]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 25] = {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncResult'], 'outhandles': [1], 'buffers': [5, 5, 5]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 84] = {'inbytes': 0, 'outbytes': 0} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 85] = {'inbytes': 0x14, 'outbytes': 4, 'buffers': [6]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 86] = {'inbytes': 0x14, 'outbytes': 4, 'buffers': [6]} | |
+ ['nim', 'nn::nim::detail::IShopServiceAccessServer'] = {0: {'inbytes': 1, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IShopServiceAccessor']}} | |
+ ['nim', 'nn::nim::detail::IShopServiceAccessServerInterface'] = {0: {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IShopServiceAccessServer'], 'inhandles': [1], 'pid': 1}} | |
+ ['nim', 'nn::nim::detail::IShopServiceAccessor'] = {0: {'inbytes': 0x20, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IShopServiceAsync'], 'outhandles': [1]}} | |
+ ['nim', 'nn::nim::detail::IShopServiceAsync'] = {0: {'inbytes': 0, 'outbytes': 0}, 1: {'inbytes': 0, 'outbytes': 8}, 2: {'inbytes': 8, 'outbytes': 8, 'buffers': [6]}, 3: {'inbytes': 0, 'outbytes': 8}, 4: {'inbytes': 0, 'outbytes': 0}, 5: {'inbytes': 0, 'outbytes': 0, 'buffers': [5, 5]}} | |
- ['npns', 'nn::npns::INpnsSystem', 21] = {'inbytes': 0x10, 'outbytes': 0x28} | |
+ ['npns', 'nn::npns::INpnsSystem', 21] = {'inbytes': 0x18, 'outbytes': 0x28, 'pid': 1} | |
- ['npns', 'nn::npns::INpnsSystem', 23] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['npns', 'nn::npns::INpnsSystem', 23] = {'inbytes': 0x18, 'outbytes': 0, 'pid': 1} | |
+ ['npns', 'nn::npns::INpnsSystem', 26] = {'inbytes': 8, 'outbytes': 0, 'pid': 1} | |
- ['npns', 'nn::npns::INpnsUser', 21] = {'inbytes': 0x10, 'outbytes': 0x28} | |
+ ['npns', 'nn::npns::INpnsUser', 21] = {'inbytes': 0x18, 'outbytes': 0x28, 'pid': 1} | |
- ['npns', 'nn::npns::INpnsUser', 23] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['npns', 'nn::npns::INpnsUser', 23] = {'inbytes': 0x18, 'outbytes': 0, 'pid': 1} | |
+ ['npns', 'nn::npns::INpnsUser', 26] = {'inbytes': 8, 'outbytes': 0, 'pid': 1} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 91] = {'inbytes': 0x10, 'outbytes': 8} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 92] = {'inbytes': 8, 'outbytes': 8} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 93] = {'inbytes': 8, 'outbytes': 1} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 509] = {'inbytes': 0, 'outbytes': 4, 'buffers': [6]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 910] = {'inbytes': 8, 'outbytes': 1} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 1003] = {'inbytes': 0x18, 'outbytes': 0, 'outinterfaces': ['nn::ns::detail::IProgressAsyncResult'], 'inhandles': [1], 'outhandles': [1]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 1004] = {'inbytes': 0x18, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 1308] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 1902] = {'inbytes': 8, 'outbytes': 8} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 2018] = {'inbytes': 0, 'outbytes': 0x20, 'buffers': [5]} | |
+ ['ns', 'nn::ns::detail::IDocumentInterface', 92] = {'inbytes': 8, 'outbytes': 8} | |
+ ['ns', 'nn::ns::detail::IReadOnlyApplicationRecordInterface'] = {0: {'inbytes': 8, 'outbytes': 1}} | |
+ ['ns', 'nn::ns::detail::IServiceGetterInterface', 7991] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::ns::detail::IReadOnlyApplicationRecordInterface']} | |
- ['nvservices', 'nv::gemcontrol::INvGemControl', 5] = {'inbytes': 0, 'outbytes': 0x10} | |
- ['pcie.withoutHb', 'nn::pcie::detail::ISession', 7] = {'inbytes': 0x10, 'outbytes': 0, 'buffers': [6]} | |
+ ['pcie.withoutHb', 'nn::pcie::detail::ISession', 7] = {'inbytes': 0x10, 'outbytes': 0, 'buffers': [0x22]} | |
- ['pcie.withoutHb', 'nn::pcie::detail::ISession', 8] = {'inbytes': 0x10, 'outbytes': 0, 'buffers': [5]} | |
+ ['pcie.withoutHb', 'nn::pcie::detail::ISession', 8] = {'inbytes': 0x10, 'outbytes': 0, 'buffers': [0x21]} | |
+ ['pctl', 'nn::pctl::detail::ipc::IParentalControlService', 1014] = {'inbytes': 0, 'outbytes': 0, 'buffers': [9]} | |
+ ['pctl', 'nn::pctl::detail::ipc::IParentalControlService', 1015] = {'inbytes': 8, 'outbytes': 0, 'buffers': [9]} | |
+ ['pctl', 'nn::pctl::detail::ipc::IParentalControlService', 1064] = {'inbytes': 0, 'outbytes': 0} | |
+ ['pctl', 'nn::pctl::detail::ipc::IParentalControlService', 1065] = {'inbytes': 0, 'outbytes': 1} | |
+ ['pctl', 'nn::pctl::detail::ipc::IParentalControlService', 1903] = {'inbytes': 0, 'outbytes': 4} | |
+ ['pctl', 'nn::pctl::detail::ipc::IParentalControlService', 1904] = {'inbytes': 4, 'outbytes': 4, 'buffers': [6]} | |
+ ['pctl', 'nn::pctl::detail::ipc::IParentalControlService', 1905] = {'inbytes': 0, 'outbytes': 0, 'buffers': [5]} | |
+ ['pctl', 'nn::pctl::detail::ipc::IParentalControlService', 1906] = {'inbytes': 8, 'outbytes': 0} | |
+ ['pctl', 'nn::pctl::detail::ipc::IParentalControlService', 1907] = {'inbytes': 8, 'outbytes': 0} | |
+ ['pctl', 'nn::pctl::detail::ipc::IParentalControlService', 1908] = {'inbytes': 0, 'outbytes': 0} | |
+ ['pctl', 'nn::pctl::detail::ipc::IParentalControlService', 2016] = {'inbytes': 0x10, 'outbytes': 8, 'outhandles': [1]} | |
+ ['pcv', 'nn::pcv::detail::IPcvService', 27] = {'inbytes': 0, 'outbytes': 4} | |
+ ['pcv', 'nn::timesrv::detail::service::IStaticService', 102] = {'inbytes': 0, 'outbytes': 4} | |
+ ['pcv', 'nn::timesrv::detail::service::ITimeZoneService', 6] = {'inbytes': 0, 'outbytes': 0x40} | |
+ ['pm', 'nn::am::service::ITransferStorageAccessor'] = {0: {'inbytes': 0, 'outbytes': 4}, 1: {'inbytes': 0, 'outbytes': 0}} | |
- ['pm', 'nn::pm::detail::IBootModeInterface'] = {0: {'inbytes': 0, 'outbytes': 4}, 1: {'inbytes': 0, 'outbytes': 0}} | |
- ['pm', 'nn::pm::detail::IDebugMonitorInterface', 0] = {'inbytes': 8, 'outbytes': 4, 'buffers': [6]} | |
+ ['pm', 'nn::pm::detail::IDebugMonitorInterface', 0] = {'inbytes': 0, 'outbytes': 4, 'buffers': [6]} | |
- ['pm', 'nn::pm::detail::IDebugMonitorInterface', 1] = {'inbytes': 0, 'outbytes': 4, 'buffers': [6]} | |
+ ['pm', 'nn::pm::detail::IDebugMonitorInterface', 1] = {'inbytes': 8, 'outbytes': 0} | |
- ['pm', 'nn::pm::detail::IDebugMonitorInterface', 2] = {'inbytes': 8, 'outbytes': 0} | |
+ ['pm', 'nn::pm::detail::IDebugMonitorInterface', 2] = {'inbytes': 8, 'outbytes': 8} | |
- ['pm', 'nn::pm::detail::IDebugMonitorInterface', 3] = {'inbytes': 8, 'outbytes': 8} | |
+ ['pm', 'nn::pm::detail::IDebugMonitorInterface', 3] = {'inbytes': 8, 'outbytes': 0, 'outhandles': [1]} | |
- ['pm', 'nn::pm::detail::IDebugMonitorInterface', 4] = {'inbytes': 8, 'outbytes': 0, 'outhandles': [1]} | |
+ ['pm', 'nn::pm::detail::IDebugMonitorInterface', 4] = {'inbytes': 0, 'outbytes': 8} | |
- ['pm', 'nn::pm::detail::IDebugMonitorInterface', 5] = {'inbytes': 0, 'outbytes': 8} | |
+ ['pm', 'nn::pm::detail::IDebugMonitorInterface', 5] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
- ['pm', 'nn::pm::detail::IDebugMonitorInterface', 6] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
- ['pm', 'nn::pm::detail::IShellInterface', 5] = {'inbytes': 8, 'outbytes': 0} | |
+ ['pm', 'nn::pm::detail::IShellInterface', 5] = {'inbytes': 0, 'outbytes': 0} | |
- ['pm', 'nn::pm::detail::IShellInterface', 6] = {'inbytes': 8, 'outbytes': 0} | |
+ ['pm', 'nn::pm::detail::IShellInterface', 6] = {'inbytes': 0, 'outbytes': 8} | |
- ['pm', 'nn::pm::detail::IShellInterface', 7] = {'inbytes': 0, 'outbytes': 0} | |
+ ['pm', 'nn::pm::detail::IShellInterface', 7] = {'inbytes': 8, 'outbytes': 0} | |
- ['pm', 'nn::pm::detail::IShellInterface', 8] = {'inbytes': 0, 'outbytes': 8} | |
- ['pm', 'nn::pm::detail::IShellInterface', 9] = {'inbytes': 8, 'outbytes': 0} | |
+ ['ppc', 'nn::apm::ISystemManager', 5] = {'inbytes': 0, 'outbytes': 0} | |
+ ['psc', 'nn::srepo::detail::ipc::ISrepoService'] = {10100: {'inbytes': 8, 'outbytes': 0, 'buffers': [9, 5]}, 20100: {'inbytes': 0, 'outbytes': 0x10, 'buffers': [0xA, 6]}, 20200: {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]}} | |
+ ['ptm', 'nn::tc::IManager', 9] = {'inbytes': 0, 'outbytes': 4} | |
+ ['sdb', 'nn::mii::detail::IDatabaseService', 22] = {'inbytes': 4, 'outbytes': 0} | |
+ ['sdb', 'nn::mii::detail::IDatabaseService', 23] = {'inbytes': 0x60, 'outbytes': 0x58} | |
+ ['sdb', 'nn::mii::detail::IImageDatabaseService'] = {0: {'inbytes': 1, 'outbytes': 1}, 10: {'inbytes': 0, 'outbytes': 0}, 11: {'inbytes': 0, 'outbytes': 4}, 12: {'inbytes': 0, 'outbytes': 1}, 13: {'inbytes': 0, 'outbytes': 1}, 14: {'inbytes': 4, 'outbytes': 0x3A}, 15: {'inbytes': 0x10, 'outbytes': 0, 'buffers': [6]}, 16: {'inbytes': 0x3A, 'outbytes': 4, 'buffers': [5, 5]}, 17: {'inbytes': 0, 'outbytes': 0, 'buffers': [5]}, 100: {'inbytes': 0, 'outbytes': 0}, 101: {'inbytes': 0, 'outbytes': 0}, 102: {'inbytes': 0, 'outbytes': 0, 'buffers': [5]}, 103: {'inbytes': 0, 'outbytes': 8, 'buffers': [6]}, 104: {'inbytes': 1, 'outbytes': 1}} | |
+ ['sdb', 'nn::pdm::detail::IQueryService', 13] = {'inbytes': 0, 'outbytes': 4, 'buffers': [6, 5]} | |
- ['settings', 'nn::settings::IFactorySettingsServer', 20] = {'inbytes': 0, 'outbytes': 0x54} | |
+ ['settings', 'nn::settings::IFactorySettingsServer', 20] = {'inbytes': 0, 'outbytes': 0x58} | |
+ ['settings', 'nn::settings::IFactorySettingsServer', 24] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0x16]} | |
+ ['settings', 'nn::settings::IFactorySettingsServer', 25] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0x16]} | |
+ ['settings', 'nn::settings::IFactorySettingsServer', 26] = {'inbytes': 0, 'outbytes': 0x58} | |
+ ['settings', 'nn::settings::IFactorySettingsServer', 27] = {'inbytes': 0, 'outbytes': 0x18} | |
+ ['settings', 'nn::settings::IFactorySettingsServer', 28] = {'inbytes': 0, 'outbytes': 0x74} | |
+ ['settings', 'nn::settings::IFactorySettingsServer', 29] = {'inbytes': 0, 'outbytes': 0x48} | |
+ ['settings', 'nn::settings::IFactorySettingsServer', 30] = {'inbytes': 0, 'outbytes': 0x24} | |
+ ['settings', 'nn::settings::IFactorySettingsServer', 31] = {'inbytes': 0, 'outbytes': 0x94} | |
+ ['settings', 'nn::settings::IFactorySettingsServer', 32] = {'inbytes': 0, 'outbytes': 1} | |
+ ['settings', 'nn::settings::ISettingsServer', 8] = {'inbytes': 0, 'outbytes': 1} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 5] = {'inbytes': 0, 'outbytes': 0x40} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 141] = {'inbytes': 0, 'outbytes': 1} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 142] = {'inbytes': 1, 'outbytes': 0} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 143] = {'inbytes': 0, 'outbytes': 0, 'buffers': [5]} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 144] = {'inbytes': 0, 'outbytes': 4, 'buffers': [6]} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 145] = {'inbytes': 0, 'outbytes': 0xC} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 146] = {'inbytes': 0xC, 'outbytes': 0} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 147] = {'inbytes': 0, 'outbytes': 0x24} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 148] = {'inbytes': 0x24, 'outbytes': 0} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 149] = {'inbytes': 0, 'outbytes': 0x40} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 150] = {'inbytes': 0, 'outbytes': 0x18} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 151] = {'inbytes': 0x18, 'outbytes': 0} | |
- ['spl', 'nn::spl::detail::IEsInterface', 13] = {'inbytes': 0x24, 'outbytes': 0, 'buffers': [0xA, 9]} | |
+ ['spl', 'nn::spl::detail::IEsInterface', 13] = {'inbytes': 0x20, 'outbytes': 0, 'buffers': [0xA, 9]} | |
- ['spl', 'nn::spl::detail::IEsInterface', 17] = {'inbytes': 0x24, 'outbytes': 0, 'buffers': [9]} | |
+ ['spl', 'nn::spl::detail::IEsInterface', 17] = {'inbytes': 0x20, 'outbytes': 0, 'buffers': [9]} | |
+ ['spl', 'nn::spl::detail::IEsInterface', 28] = {'inbytes': 0x20, 'outbytes': 0, 'buffers': [9]} | |
+ ['spl', 'nn::spl::detail::IEsInterface', 29] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0xA, 9, 9]} | |
- ['spl', 'nn::spl::detail::IFsInterface', 9] = {'inbytes': 0x24, 'outbytes': 0, 'buffers': [9]} | |
+ ['spl', 'nn::spl::detail::IFsInterface', 9] = {'inbytes': 0x20, 'outbytes': 0, 'buffers': [9]} | |
+ ['spl', 'nn::spl::detail::IFsInterface', 31] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0xA]} | |
+ ['spl', 'nn::spl::detail::IManuInterface'] = {0: {'inbytes': 4, 'outbytes': 8}, 1: {'inbytes': 0, 'outbytes': 0, 'buffers': [0xA, 9, 9, 9]}, 2: {'inbytes': 0x18, 'outbytes': 0x10}, 3: {'inbytes': 0x24, 'outbytes': 0}, 4: {'inbytes': 0x20, 'outbytes': 0x10}, 5: {'inbytes': 0x10, 'outbytes': 0}, 7: {'inbytes': 0, 'outbytes': 0, 'buffers': [0xA]}, 11: {'inbytes': 0, 'outbytes': 1}, 13: {'inbytes': 0x20, 'outbytes': 0, 'buffers': [0xA, 9]}, 14: {'inbytes': 0x18, 'outbytes': 0x10}, 15: {'inbytes': 0x14, 'outbytes': 0, 'buffers': [0x46, 0x45]}, 16: {'inbytes': 4, 'outbytes': 0x10, 'buffers': [9]}, 21: {'inbytes': 0, 'outbytes': 4}, 22: {'inbytes': 4, 'outbytes': 0}, 23: {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]}, 24: {'inbytes': 4, 'outbytes': 0}, 25: {'inbytes': 0, 'outbytes': 4}, 30: {'inbytes': 0x44, 'outbytes': 0, 'buffers': [0xA, 9]}} | |
- ['spl', 'nn::spl::detail::ISslInterface', 13] = {'inbytes': 0x24, 'outbytes': 0, 'buffers': [0xA, 9]} | |
+ ['spl', 'nn::spl::detail::ISslInterface', 13] = {'inbytes': 0x20, 'outbytes': 0, 'buffers': [0xA, 9]} | |
+ ['spl', 'nn::spl::detail::ISslInterface', 26] = {'inbytes': 0x20, 'outbytes': 0, 'buffers': [9]} | |
+ ['spl', 'nn::spl::detail::ISslInterface', 27] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0xA, 9, 9]} | |
+ ['ssl', 'nn::ssl::sf::ISslService', 6] = {'inbytes': 4, 'outbytes': 4, 'buffers': [5]} | |
- ['usb', 'nn::usb::ds::IDsInterface', 0] = {'inbytes': 0, 'outbytes': 1, 'outinterfaces': ['nn::usb::ds::IDsEndpoint'], 'buffers': [5]} | |
+ ['usb', 'nn::usb::ds::IDsInterface', 0] = {'inbytes': 1, 'outbytes': 0, 'outinterfaces': ['nn::usb::ds::IDsEndpoint']} | |
+ ['usb', 'nn::usb::ds::IDsInterface', 12] = {'inbytes': 8, 'outbytes': 0, 'buffers': [5]} | |
- ['usb', 'nn::usb::ds::IDsService', 2] = {'inbytes': 0, 'outbytes': 1, 'outinterfaces': ['nn::usb::ds::IDsInterface'], 'buffers': [5, 5]} | |
+ ['usb', 'nn::usb::ds::IDsService', 2] = {'inbytes': 1, 'outbytes': 0, 'outinterfaces': ['nn::usb::ds::IDsInterface']} | |
- ['usb', 'nn::usb::ds::IDsService', 5] = {'inbytes': 0, 'outbytes': 0, 'buffers': [5]} | |
+ ['usb', 'nn::usb::ds::IDsService', 5] = {'inbytes': 0, 'outbytes': 0} | |
+ ['usb', 'nn::usb::ds::IDsService', 6] = {'inbytes': 0, 'outbytes': 1, 'buffers': [5]} | |
+ ['usb', 'nn::usb::ds::IDsService', 7] = {'inbytes': 1, 'outbytes': 0} | |
+ ['usb', 'nn::usb::ds::IDsService', 8] = {'inbytes': 4, 'outbytes': 0, 'buffers': [5]} | |
+ ['usb', 'nn::usb::ds::IDsService', 9] = {'inbytes': 0, 'outbytes': 0, 'buffers': [5]} | |
+ ['usb', 'nn::usb::ds::IDsService', 10] = {'inbytes': 0, 'outbytes': 0} | |
+ ['usb', 'nn::usb::ds::IDsService', 11] = {'inbytes': 0, 'outbytes': 0} | |
+ ['vi', 'nn::capsrv::sf::IScreenShotControlService', 3] = {'inbytes': 8, 'outbytes': 0} | |
+ ['vi', 'nn::capsrv::sf::IScreenShotControlService', 5] = {'inbytes': 0x10, 'outbytes': 0} | |
- ['vi', 'nn::capsrv::sf::IScreenShotControlService', 1001] = {'inbytes': 0x10, 'outbytes': 0} | |
- ['vi', 'nn::capsrv::sf::IScreenShotControlService', 1002] = {'inbytes': 0x18, 'outbytes': 0} | |
- ['vi', 'nn::capsrv::sf::IScreenShotControlService', 1003] = {'inbytes': 0x58, 'outbytes': 0} | |
+ ['vi', 'nn::capsrv::sf::IScreenShotControlService', 1004] = {'inbytes': 0x60, 'outbytes': 0} | |
+ ['vi', 'nn::capsrv::sf::IScreenShotControlService', 1009] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['vi', 'nn::capsrv::sf::IScreenShotControlService', 1010] = {'inbytes': 0x10, 'outbytes': 0} | |
- ['vi', 'nn::capsrv::sf::IScreenShotControlService', 1106] = {'inbytes': 0x30, 'outbytes': 0x18, 'buffers': [0x15, 0x15, 6, 0x46, 0x46]} | |
+ ['vi', 'nn::capsrv::sf::IScreenShotControlService', 1106] = {'inbytes': 0x68, 'outbytes': 0x18, 'buffers': [0x15, 0x15, 6, 0x46, 0x46]} | |
- ['vi', 'nn::capsrv::sf::IScreenShotControlService', 1107] = {'inbytes': 0x30, 'outbytes': 0x18, 'buffers': [0x15, 0x15, 6, 0x45]} | |
+ ['vi', 'nn::capsrv::sf::IScreenShotControlService', 1107] = {'inbytes': 0x68, 'outbytes': 0x18, 'buffers': [0x15, 0x15, 6, 0x45]} | |
+ ['vi', 'nn::capsrv::sf::IScreenShotService', 208] = {'inbytes': 0x78, 'outbytes': 0x20, 'buffers': [0x15, 0x45, 0x45]} | |
+ ['vi', 'nn::visrv::sf::IApplicationDisplayService', 2102] = {'inbytes': 4, 'outbytes': 8} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 6003] = {'inbytes': 0x18, 'outbytes': 0} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 6004] = {'inbytes': 8, 'outbytes': 0} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 6005] = {'inbytes': 8, 'outbytes': 0} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 6006] = {'inbytes': 8, 'outbytes': 0} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 6007] = {'inbytes': 8, 'outbytes': 0} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 6008] = {'inbytes': 8, 'outbytes': 0} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 6009] = {'inbytes': 8, 'outbytes': 0} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 6010] = {'inbytes': 8, 'outbytes': 0, 'outhandles': [1]} | |
- ['vi', 'nn::visrv::sf::IManagerDisplayService', 8294] = {'inbytes': 0x18, 'outbytes': 0, 'buffers': [5]} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 8294] = {'inbytes': 0x28, 'outbytes': 0, 'buffers': [5]} | |
- ['vi', 'nn::visrv::sf::IManagerDisplayService', 8295] = {'inbytes': 0x20, 'outbytes': 0} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 8295] = {'inbytes': 0x38, 'outbytes': 0} | |
- ['vi', 'nn::visrv::sf::IManagerDisplayService', 8296] = {'inbytes': 0x28, 'outbytes': 0, 'buffers': [5]} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 8296] = {'inbytes': 0x38, 'outbytes': 0, 'buffers': [0x45]} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 8298] = {'inbytes': 0x20, 'outbytes': 0} | |
+ ['vi', 'nn::visrv::sf::ISystemDisplayService', 8258] = {'inbytes': 0x10, 'outbytes': 0} | |
- ['wlan', 'nn::wlan::detail::IInfraManager', 24] = {'inbytes': 0, 'outbytes': 0x5C} | |
+ ['wlan', 'nn::wlan::detail::IInfraManager', 24] = {'inbytes': 0, 'outbytes': 0x58} | |
+ ['wlan', 'nn::wlan::detail::IInfraManager', 28] = {'inbytes': 0, 'outbytes': 4, 'buffers': [0xA]} | |
- ['wlan', 'nn::wlan::detail::ILocalGetActionFrame', 0] = {'inbytes': 4, 'outbytes': 0xC, 'buffers': [6]} | |
+ ['wlan', 'nn::wlan::detail::ILocalGetActionFrame', 0] = {'inbytes': 8, 'outbytes': 0x10, 'buffers': [6]} | |
- ['wlan', 'nn::wlan::detail::ILocalManager', 23] = {'inbytes': 0, 'outbytes': 0x50} | |
+ ['wlan', 'nn::wlan::detail::ILocalManager', 23] = {'inbytes': 0, 'outbytes': 4, 'buffers': [0xA]} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
+ ['Bus', 'nn::gpio::IManager', 10] = {'inbytes': 8, 'outbytes': 0} | |
+ ['Bus', 'nn::gpio::IPadSession', 17] = {'inbytes': 0, 'outbytes': 4} | |
- ['Bus', 'nn::i2c::IManager', 2] = {'inbytes': 4, 'outbytes': 1} | |
- ['Bus', 'nn::i2c::IManager', 3] = {'inbytes': 0x10, 'outbytes': 1} | |
+ ['Bus', 'nn::i2c::IManager', 4] = {'inbytes': 4, 'outbytes': 0, 'outinterfaces': ['nn::i2c::ISession']} | |
- ['Bus', 'nn::i2c::ISession', 0] = {'inbytes': 4, 'outbytes': 0, 'buffers': [5]} | |
- ['Bus', 'nn::i2c::ISession', 1] = {'inbytes': 4, 'outbytes': 0, 'buffers': [6]} | |
- ['Bus', 'nn::i2c::ISession', 2] = {'inbytes': 0, 'outbytes': 0, 'buffers': [6, 9]} | |
+ ['Bus', 'nn::i2c::ISession', 13] = {'inbytes': 8, 'outbytes': 0} | |
+ ['Bus', 'nn::pwm::IChannelSession', 6] = {'inbytes': 8, 'outbytes': 0} | |
+ ['Bus', 'nn::pwm::IChannelSession', 7] = {'inbytes': 0, 'outbytes': 8} | |
+ ['Bus', 'nn::pwm::IManager', 2] = {'inbytes': 4, 'outbytes': 0, 'outinterfaces': ['nn::pwm::IChannelSession']} | |
- ['account', 'nn::account::IAccountServiceForAdministrator', 60] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0xA]} | |
+ ['account', 'nn::account::IAccountServiceForAdministrator', 99] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::account::detail::ISessionObject']} | |
+ ['account', 'nn::account::IAccountServiceForAdministrator', 130] = {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::account::detail::ISessionObject']} | |
+ ['account', 'nn::account::IAccountServiceForAdministrator', 140] = {'inbytes': 8, 'outbytes': 0, 'buffers': [0xA]} | |
- ['account', 'nn::account::IAccountServiceForAdministrator', 191] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::account::detail::ISessionObject']} | |
- ['account', 'nn::account::IAccountServiceForApplication', 60] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0xA]} | |
+ ['account', 'nn::account::IAccountServiceForApplication', 99] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::account::detail::ISessionObject']} | |
+ ['account', 'nn::account::IAccountServiceForApplication', 131] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0xA]} | |
+ ['account', 'nn::account::IAccountServiceForApplication', 140] = {'inbytes': 8, 'outbytes': 0, 'pid': 1} | |
+ ['account', 'nn::account::IAccountServiceForApplication', 141] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0xA]} | |
+ ['account', 'nn::account::IAccountServiceForApplication', 150] = {'inbytes': 0, 'outbytes': 1} | |
- ['account', 'nn::account::IAccountServiceForSystemService', 60] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0xA]} | |
+ ['account', 'nn::account::IAccountServiceForSystemService', 99] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::account::detail::ISessionObject']} | |
+ ['account', 'nn::account::IAccountServiceForSystemService', 130] = {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::account::detail::ISessionObject']} | |
+ ['account', 'nn::account::IAccountServiceForSystemService', 140] = {'inbytes': 8, 'outbytes': 0, 'buffers': [0xA]} | |
- ['account', 'nn::account::IAccountServiceForSystemService', 191] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::account::detail::ISessionObject']} | |
+ ['account', 'nn::account::baas::IAdministrator', 300] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::account::detail::IAsyncContext']} | |
+ ['account', 'nn::account::baas::IManagerForApplication', 170] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::account::detail::IAsyncNetworkServiceLicenseKindContext']} | |
+ ['account', 'nn::account::detail::IAsyncNetworkServiceLicenseKindContext'] = {0: {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]}, 1: {'inbytes': 0, 'outbytes': 0}, 2: {'inbytes': 0, 'outbytes': 1}, 3: {'inbytes': 0, 'outbytes': 0}, 100: {'inbytes': 0, 'outbytes': 4}} | |
- ['account', 'nn::account::nas::IOAuthProcedureForNintendoAccountLinkage', 199] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0x1A]} | |
+ ['account', 'nn::dauth::detail::IAsyncResult'] = {0: {'inbytes': 0, 'outbytes': 0}, 1: {'inbytes': 0, 'outbytes': 0}, 2: {'inbytes': 0, 'outbytes': 1}, 3: {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]}} | |
- ['account', 'nn::dauth::detail::IService', 0] = {'inbytes': 0x58, 'outbytes': 0, 'buffers': [0xA]} | |
+ ['account', 'nn::dauth::detail::IService', 0] = {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::dauth::detail::IAsyncResult']} | |
+ ['account', 'nn::dauth::detail::IService', 1] = {'inbytes': 8, 'outbytes': 8, 'buffers': [6]} | |
+ ['account', 'nn::dauth::detail::IService', 2] = {'inbytes': 8, 'outbytes': 0} | |
+ ['account', 'nn::dauth::detail::IService', 10] = {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::dauth::detail::IAsyncResult']} | |
+ ['account', 'nn::dauth::detail::IService', 11] = {'inbytes': 8, 'outbytes': 8, 'buffers': [6]} | |
+ ['account', 'nn::dauth::detail::IService', 12] = {'inbytes': 8, 'outbytes': 0} | |
+ ['am', 'nn::am::service::IAllSystemAppletProxiesService', 410] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::am::service::ISystemAppletControllerForDebug']} | |
+ ['am', 'nn::am::service::IAllSystemAppletProxiesService', 1000] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::am::service::IDebugFunctions']} | |
+ ['am', 'nn::am::service::IApplicationAccessor', 124] = {'inbytes': 0, 'outbytes': 0x10} | |
+ ['am', 'nn::am::service::IApplicationAccessor', 130] = {'inbytes': 1, 'outbytes': 0, 'buffers': [5]} | |
+ ['am', 'nn::am::service::IApplicationAccessor', 131] = {'inbytes': 0, 'outbytes': 1} | |
+ ['am', 'nn::am::service::IApplicationAccessor', 132] = {'inbytes': 0, 'outbytes': 8} | |
+ ['am', 'nn::am::service::IApplicationAccessor', 140] = {'inbytes': 0, 'outbytes': 4, 'buffers': [6]} | |
+ ['am', 'nn::am::service::IApplicationAccessor', 150] = {'inbytes': 0, 'outbytes': 0} | |
+ ['am', 'nn::am::service::IApplicationFunctions', 111] = {'inbytes': 0x10, 'outbytes': 4, 'buffers': [6, 5]} | |
+ ['am', 'nn::am::service::IApplicationFunctions', 124] = {'inbytes': 1, 'outbytes': 0} | |
+ ['am', 'nn::am::service::ICommonStateGetter', 65] = {'inbytes': 0, 'outbytes': 8, 'buffers': [5]} | |
+ ['am', 'nn::am::service::ICommonStateGetter', 66] = {'inbytes': 4, 'outbytes': 0} | |
+ ['am', 'nn::am::service::ICommonStateGetter', 80] = {'inbytes': 4, 'outbytes': 0} | |
+ ['am', 'nn::am::service::IDebugFunctions', 30] = {'inbytes': 0x10, 'outbytes': 0, 'buffers': [5, 5]} | |
+ ['am', 'nn::am::service::IDebugFunctions', 40] = {'inbytes': 0, 'outbytes': 0x20} | |
+ ['am', 'nn::am::service::IDisplayController', 28] = {'inbytes': 8, 'outbytes': 0} | |
+ ['am', 'nn::am::service::IHomeMenuFunctions', 100] = {'inbytes': 0, 'outbytes': 0x10, 'buffers': [6]} | |
+ ['am', 'nn::am::service::ILibraryAppletSelfAccessor', 80] = {'inbytes': 0, 'outbytes': 0} | |
+ ['am', 'nn::am::service::ILibraryAppletSelfAccessor', 110] = {'inbytes': 0, 'outbytes': 8, 'buffers': [6]} | |
+ ['am', 'nn::am::service::IOverlayFunctions', 10] = {'inbytes': 0, 'outbytes': 0} | |
+ ['am', 'nn::am::service::IOverlayFunctions', 11] = {'inbytes': 0, 'outbytes': 0} | |
+ ['am', 'nn::am::service::ISelfController', 90] = {'inbytes': 0, 'outbytes': 8} | |
+ ['am', 'nn::am::service::ISelfController', 91] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['am', 'nn::am::service::ISystemAppletControllerForDebug'] = {1: {'inbytes': 8, 'outbytes': 0, 'buffers': [5]}} | |
+ ['am', 'nn::am::service::IWindowController', 2] = {'inbytes': 0, 'outbytes': 8} | |
+ ['am', 'nn::capsrv::sf::IScreenShotApplicationService'] = {201: {'inbytes': 0x10, 'outbytes': 0x20, 'buffers': [0x45], 'pid': 1}, 203: {'inbytes': 0x50, 'outbytes': 0x20, 'buffers': [0x45], 'pid': 1}, 210: {'inbytes': 0x50, 'outbytes': 0x20, 'buffers': [0x15, 0x45]}} | |
+ ['audio', 'nn::audio::detail::IAudioIn', 14] = {'inbytes': 0, 'outbytes': 1} | |
+ ['audio', 'nn::audio::detail::IAudioOut', 12] = {'inbytes': 4, 'outbytes': 0} | |
+ ['audio', 'nn::audio::detail::IAudioOut', 13] = {'inbytes': 0, 'outbytes': 4} | |
+ ['audio', 'nn::audio::detail::IAudioSnoopManager'] = {0: {'inbytes': 0, 'outbytes': 0}, 1: {'inbytes': 0, 'outbytes': 0}, 6: {'inbytes': 0, 'outbytes': 4}} | |
+ ['audio', 'nn::audio::detail::IFinalOutputRecorder', 10] = {'inbytes': 0, 'outbytes': 1} | |
+ ['audio', 'nn::codec::detail::IHardwareOpusDecoder', 6] = {'inbytes': 1, 'outbytes': 0x10, 'buffers': [0x46, 5]} | |
+ ['audio', 'nn::codec::detail::IHardwareOpusDecoder', 7] = {'inbytes': 1, 'outbytes': 0x10, 'buffers': [0x46, 5]} | |
+ ['bcat', 'nn::news::detail::ipc::INewsDataService', 1001] = {'inbytes': 0x80, 'outbytes': 0} | |
+ ['bcat', 'nn::news::detail::ipc::INewsDatabaseService', 1000] = {'inbytes': 4, 'outbytes': 4, 'buffers': [6, 9, 9]} | |
+ ['bcat', 'nn::news::detail::ipc::INewsService', 30110] = {'inbytes': 0, 'outbytes': 0x10} | |
+ ['bcat', 'nn::prepo::detail::ipc::IPrepoService', 10102] = {'inbytes': 8, 'outbytes': 0, 'buffers': [9, 5], 'pid': 1} | |
+ ['bcat', 'nn::prepo::detail::ipc::IPrepoService', 10103] = {'inbytes': 0x18, 'outbytes': 0, 'buffers': [9, 5], 'pid': 1} | |
+ ['bcat', 'nn::prepo::detail::ipc::IPrepoService', 30200] = {'inbytes': 0, 'outbytes': 0} | |
+ ['bcat', 'nn::prepo::detail::ipc::IPrepoService', 30300] = {'inbytes': 0, 'outbytes': 0x10} | |
+ ['bcat', 'nn::prepo::detail::ipc::IPrepoService', 30400] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0x16]} | |
+ ['bcat', 'nn::prepo::detail::ipc::IPrepoService', 30401] = {'inbytes': 0, 'outbytes': 4, 'buffers': [6]} | |
+ ['bcat', 'nn::prepo::detail::ipc::IPrepoService', 30500] = {'inbytes': 0, 'outbytes': 0} | |
- ['bcat', 'nn::prepo::detail::ipc::IPrepoService', 90100] = {'inbytes': 0, 'outbytes': 0x10} | |
+ ['bcat', 'nn::prepo::detail::ipc::IPrepoService', 90100] = {'inbytes': 0, 'outbytes': 8, 'buffers': [6]} | |
- ['bcat', 'nn::prepo::detail::ipc::IPrepoService', 90200] = {'inbytes': 0, 'outbytes': 0x80} | |
- ['bcat', 'nn::prepo::detail::ipc::IPrepoService', 90201] = {'inbytes': 0, 'outbytes': 4, 'buffers': [6]} | |
- ['bcat', 'nn::prepo::detail::ipc::IPrepoService', 90300] = {'inbytes': 0, 'outbytes': 0} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 66] = {'inbytes': 4, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 66] = {'inbytes': 8, 'outbytes': 0} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 67] = {'inbytes': 0xC, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 67] = {'inbytes': 4, 'outbytes': 0} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 68] = {'inbytes': 0x18, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 68] = {'inbytes': 0xC, 'outbytes': 0} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 69] = {'inbytes': 8, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 69] = {'inbytes': 0x18, 'outbytes': 0} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 70] = {'inbytes': 0x14, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 70] = {'inbytes': 8, 'outbytes': 0} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 71] = {'inbytes': 1, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 71] = {'inbytes': 0x14, 'outbytes': 0} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 72] = {'inbytes': 8, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 72] = {'inbytes': 1, 'outbytes': 0} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 73] = {'inbytes': 7, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 73] = {'inbytes': 8, 'outbytes': 0} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 74] = {'inbytes': 0x18, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 74] = {'inbytes': 7, 'outbytes': 0} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 76] = {'inbytes': 0x2C, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 76] = {'inbytes': 0x18, 'outbytes': 0} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 78] = {'inbytes': 0, 'outbytes': 4, 'buffers': [0xA]} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 78] = {'inbytes': 0x2C, 'outbytes': 0} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 79] = {'inbytes': 0x34, 'outbytes': 0x1C} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 79] = {'inbytes': 0, 'outbytes': 4, 'buffers': [0xA]} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 80] = {'inbytes': 0x4C, 'outbytes': 0x1C} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 80] = {'inbytes': 0x34, 'outbytes': 0x1C} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 81] = {'inbytes': 0x4C, 'outbytes': 0x18} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 81] = {'inbytes': 0x4C, 'outbytes': 0x1C} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 82] = {'inbytes': 0x64, 'outbytes': 0x18} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 82] = {'inbytes': 0x4C, 'outbytes': 0x18} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 83] = {'inbytes': 0x14, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 83] = {'inbytes': 0x64, 'outbytes': 0x18} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 89] = {'inbytes': 0x38, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 89] = {'inbytes': 0x14, 'outbytes': 0} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 90] = {'inbytes': 0x50, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 90] = {'inbytes': 0x38, 'outbytes': 0} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 91] = {'inbytes': 0x38, 'outbytes': 0, 'buffers': [9]} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 91] = {'inbytes': 0x50, 'outbytes': 0} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 92] = {'inbytes': 0x50, 'outbytes': 0, 'buffers': [9]} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 92] = {'inbytes': 0x38, 'outbytes': 0, 'buffers': [9]} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 93] = {'inbytes': 0x38, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 93] = {'inbytes': 0x50, 'outbytes': 0, 'buffers': [9]} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 95] = {'inbytes': 0, 'outbytes': 4, 'buffers': [0xA]} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 95] = {'inbytes': 0x38, 'outbytes': 0} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 96] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 96] = {'inbytes': 0, 'outbytes': 4, 'buffers': [0xA]} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 97] = {'inbytes': 4, 'outbytes': 0} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 97] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 98] = {'inbytes': 4, 'outbytes': 0} | |
- ['btm', 'nn::btm::IBtm', 24] = {'inbytes': 6, 'outbytes': 0} | |
+ ['btm', 'nn::btm::IBtm', 24] = {'inbytes': 2, 'outbytes': 8} | |
- ['btm', 'nn::btm::IBtm', 25] = {'inbytes': 4, 'outbytes': 0} | |
+ ['btm', 'nn::btm::IBtm', 25] = {'inbytes': 2, 'outbytes': 0x14} | |
- ['btm', 'nn::btm::IBtm', 26] = {'inbytes': 0, 'outbytes': 1, 'buffers': [0xA]} | |
+ ['btm', 'nn::btm::IBtm', 26] = {'inbytes': 8, 'outbytes': 0} | |
- ['btm', 'nn::btm::IBtm', 27] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0x1A]} | |
+ ['btm', 'nn::btm::IBtm', 27] = {'inbytes': 0, 'outbytes': 0} | |
- ['btm', 'nn::btm::IBtm', 28] = {'inbytes': 0, 'outbytes': 1, 'outhandles': [1]} | |
+ ['btm', 'nn::btm::IBtm', 28] = {'inbytes': 0, 'outbytes': 1, 'buffers': [6]} | |
- ['btm', 'nn::btm::IBtm', 29] = {'inbytes': 4, 'outbytes': 1, 'buffers': [6]} | |
+ ['btm', 'nn::btm::IBtm', 29] = {'inbytes': 8, 'outbytes': 0} | |
- ['btm', 'nn::btm::IBtm', 30] = {'inbytes': 0x18, 'outbytes': 1, 'buffers': [0x1A]} | |
+ ['btm', 'nn::btm::IBtm', 30] = {'inbytes': 0, 'outbytes': 0} | |
- ['btm', 'nn::btm::IBtm', 31] = {'inbytes': 8, 'outbytes': 1, 'buffers': [6]} | |
+ ['btm', 'nn::btm::IBtm', 31] = {'inbytes': 0x14, 'outbytes': 0} | |
- ['btm', 'nn::btm::IBtm', 32] = {'inbytes': 8, 'outbytes': 1, 'buffers': [0x1A]} | |
+ ['btm', 'nn::btm::IBtm', 32] = {'inbytes': 0, 'outbytes': 0} | |
- ['btm', 'nn::btm::IBtm', 33] = {'inbytes': 8, 'outbytes': 1, 'buffers': [6]} | |
+ ['btm', 'nn::btm::IBtm', 33] = {'inbytes': 0, 'outbytes': 1, 'buffers': [6]} | |
- ['btm', 'nn::btm::IBtm', 34] = {'inbytes': 8, 'outbytes': 1, 'buffers': [6]} | |
+ ['btm', 'nn::btm::IBtm', 34] = {'inbytes': 0, 'outbytes': 1, 'outhandles': [1]} | |
- ['btm', 'nn::btm::IBtm', 35] = {'inbytes': 0, 'outbytes': 1, 'outhandles': [1]} | |
+ ['btm', 'nn::btm::IBtm', 35] = {'inbytes': 6, 'outbytes': 0} | |
- ['btm', 'nn::btm::IBtm', 36] = {'inbytes': 8, 'outbytes': 0} | |
+ ['btm', 'nn::btm::IBtm', 36] = {'inbytes': 4, 'outbytes': 0} | |
- ['btm', 'nn::btm::IBtm', 37] = {'inbytes': 4, 'outbytes': 2} | |
+ ['btm', 'nn::btm::IBtm', 37] = {'inbytes': 4, 'outbytes': 0} | |
- ['btm', 'nn::btm::IBtm', 38] = {'inbytes': 0x18, 'outbytes': 0} | |
+ ['btm', 'nn::btm::IBtm', 38] = {'inbytes': 0, 'outbytes': 1, 'buffers': [0xA]} | |
- ['btm', 'nn::btm::IBtm', 39] = {'inbytes': 0x18, 'outbytes': 0} | |
+ ['btm', 'nn::btm::IBtm', 39] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0x1A]} | |
- ['btm', 'nn::btm::IBtm', 40] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['btm', 'nn::btm::IBtm', 40] = {'inbytes': 0, 'outbytes': 1, 'outhandles': [1]} | |
- ['btm', 'nn::btm::IBtm', 41] = {'inbytes': 8, 'outbytes': 0} | |
+ ['btm', 'nn::btm::IBtm', 41] = {'inbytes': 0xC, 'outbytes': 0} | |
- ['btm', 'nn::btm::IBtm', 42] = {'inbytes': 8, 'outbytes': 0} | |
+ ['btm', 'nn::btm::IBtm', 42] = {'inbytes': 0xC, 'outbytes': 0} | |
+ ['btm', 'nn::btm::IBtm', 43] = {'inbytes': 0xE, 'outbytes': 0} | |
+ ['btm', 'nn::btm::IBtm', 44] = {'inbytes': 8, 'outbytes': 1, 'buffers': [0xA]} | |
+ ['btm', 'nn::btm::IBtm', 45] = {'inbytes': 0, 'outbytes': 1, 'outhandles': [1]} | |
+ ['btm', 'nn::btm::IBtm', 46] = {'inbytes': 4, 'outbytes': 1, 'buffers': [6]} | |
+ ['btm', 'nn::btm::IBtm', 47] = {'inbytes': 0x18, 'outbytes': 1, 'buffers': [0x1A]} | |
+ ['btm', 'nn::btm::IBtm', 48] = {'inbytes': 8, 'outbytes': 1, 'buffers': [6]} | |
+ ['btm', 'nn::btm::IBtm', 49] = {'inbytes': 8, 'outbytes': 1, 'buffers': [0x1A]} | |
+ ['btm', 'nn::btm::IBtm', 50] = {'inbytes': 8, 'outbytes': 1, 'buffers': [6]} | |
+ ['btm', 'nn::btm::IBtm', 51] = {'inbytes': 8, 'outbytes': 1, 'buffers': [6]} | |
+ ['btm', 'nn::btm::IBtm', 52] = {'inbytes': 0, 'outbytes': 1, 'outhandles': [1]} | |
+ ['btm', 'nn::btm::IBtm', 53] = {'inbytes': 8, 'outbytes': 0} | |
+ ['btm', 'nn::btm::IBtm', 54] = {'inbytes': 4, 'outbytes': 2} | |
+ ['btm', 'nn::btm::IBtm', 55] = {'inbytes': 0x18, 'outbytes': 0} | |
+ ['btm', 'nn::btm::IBtm', 56] = {'inbytes': 0x18, 'outbytes': 0} | |
+ ['btm', 'nn::btm::IBtm', 57] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['btm', 'nn::btm::IBtm', 58] = {'inbytes': 8, 'outbytes': 0} | |
+ ['btm', 'nn::btm::IBtm', 59] = {'inbytes': 8, 'outbytes': 0} | |
+ ['btm', 'nn::btm::IBtmDebug', 10] = {'inbytes': 0xC, 'outbytes': 4} | |
+ ['btm', 'nn::btm::IBtmDebug', 11] = {'inbytes': 4, 'outbytes': 8} | |
+ ['btm', 'nn::btm::IBtmDebug', 12] = {'inbytes': 4, 'outbytes': 0xA} | |
+ ['capsrv', 'nn::capsrv::sf::IAlbumAccessorService', 18] = {'inbytes': 0, 'outbytes': 4, 'buffers': [0x46]} | |
+ ['capsrv', 'nn::capsrv::sf::IAlbumAccessorService', 50000] = {'inbytes': 0x18, 'outbytes': 8, 'buffers': [6, 6]} | |
+ ['capsrv', 'nn::capsrv::sf::IAlbumApplicationService', 140] = {'inbytes': 0x20, 'outbytes': 8, 'buffers': [6], 'pid': 1} | |
+ ['capsrv', 'nn::capsrv::sf::IAlbumApplicationService', 141] = {'inbytes': 0x30, 'outbytes': 8, 'buffers': [6], 'pid': 1} | |
+ ['erpt', 'nn::erpt::sf::IContext', 7] = {'inbytes': 0, 'outbytes': 0} | |
+ ['erpt', 'nn::erpt::sf::IContext', 8] = {'inbytes': 0, 'outbytes': 0} | |
+ ['es', 'EsAsyncValue'] = {0: {'inbytes': 0, 'outbytes': 8}, 1: {'inbytes': 0, 'outbytes': 0, 'buffers': [6]}, 2: {'inbytes': 0, 'outbytes': 0}} | |
+ ['es', 'EsSubinterface2000'] = {1: {'inbytes': 1, 'outbytes': 0, 'buffers': [5]}, 2: {'inbytes': 0, 'outbytes': 0, 'buffers': [5]}, 3: {'inbytes': 0, 'outbytes': 0}, 4: {'inbytes': 0, 'outbytes': 0}, 5: {'inbytes': 0, 'outbytes': 0, 'buffers': [5]}, 6: {'inbytes': 1, 'outbytes': 4, 'buffers': [6]}, 7: {'inbytes': 0x10, 'outbytes': 4, 'buffers': [6]}, 8: {'inbytes': 0, 'outbytes': 4, 'buffers': [6]}, 9: {'inbytes': 0, 'outbytes': 4, 'buffers': [6]}, 10: {'inbytes': 1, 'outbytes': 0}, 100: {'inbytes': 0, 'outbytes': 0}, 101: {'inbytes': 0, 'outbytes': 0}, 102: {'inbytes': 0, 'outbytes': 0}, 200: {'inbytes': 0, 'outbytes': 4}, 201: {'inbytes': 0, 'outbytes': 8}, 202: {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]}, 203: {'inbytes': 0, 'outbytes': 0x28}, 210: {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]}, 211: {'inbytes': 0, 'outbytes': 8}, 900: {'inbytes': 0, 'outbytes': 0, 'buffers': [0x15]}, 901: {'inbytes': 0, 'outbytes': 0, 'buffers': [0x16]}, 1000: {'inbytes': 1, 'outbytes': 0}} | |
- ['es', 'nn::es::IETicketService', 8] = {'inbytes': 0x14, 'outbytes': 0, 'buffers': [0x16]} | |
- ['es', 'nn::es::IETicketService', 35] = {'inbytes': 0x10, 'outbytes': 8, 'buffers': [6, 6]} | |
+ ['es', 'nn::es::IETicketService', 35] = {'inbytes': 0x10, 'outbytes': 0x10, 'buffers': [6, 6]} | |
+ ['es', 'nn::es::IETicketService', 36] = {'inbytes': 0, 'outbytes': 0} | |
+ ['es', 'nn::es::IETicketService', 501] = {'inbytes': 1, 'outbytes': 0, 'buffers': [6, 5, 5]} | |
+ ['es', 'nn::es::IETicketService', 502] = {'inbytes': 1, 'outbytes': 0, 'buffers': [6, 5, 5]} | |
+ ['es', 'nn::es::IETicketService', 503] = {'inbytes': 0, 'outbytes': 0, 'buffers': [5, 5]} | |
+ ['es', 'nn::es::IETicketService', 504] = {'inbytes': 0, 'outbytes': 0} | |
+ ['es', 'nn::es::IETicketService', 508] = {'inbytes': 0, 'outbytes': 8, 'buffers': [6]} | |
+ ['es', 'nn::es::IETicketService', 509] = {'inbytes': 0, 'outbytes': 0, 'buffers': [5]} | |
+ ['es', 'nn::es::IETicketService', 510] = {'inbytes': 0, 'outbytes': 4, 'buffers': [6]} | |
+ ['es', 'nn::es::IETicketService', 1001] = {'inbytes': 8, 'outbytes': 0x10} | |
+ ['es', 'nn::es::IETicketService', 1002] = {'inbytes': 0x10, 'outbytes': 0, 'buffers': [5]} | |
+ ['es', 'nn::es::IETicketService', 1003] = {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['EsAsyncValue'], 'outhandles': [1]} | |
+ ['es', 'nn::es::IETicketService', 1004] = {'inbytes': 0, 'outbytes': 4} | |
+ ['es', 'nn::es::IETicketService', 1005] = {'inbytes': 0, 'outbytes': 4, 'buffers': [6]} | |
+ ['es', 'nn::es::IETicketService', 1006] = {'inbytes': 0, 'outbytes': 4, 'buffers': [6, 5]} | |
+ ['es', 'nn::es::IETicketService', 1007] = {'inbytes': 0, 'outbytes': 4, 'buffers': [6, 5]} | |
+ ['es', 'nn::es::IETicketService', 1009] = {'inbytes': 8, 'outbytes': 8} | |
+ ['es', 'nn::es::IETicketService', 1010] = {'inbytes': 8, 'outbytes': 8, 'buffers': [6]} | |
+ ['es', 'nn::es::IETicketService', 1011] = {'inbytes': 0, 'outbytes': 0} | |
+ ['es', 'nn::es::IETicketService', 1012] = {'inbytes': 0, 'outbytes': 4, 'buffers': [6]} | |
+ ['es', 'nn::es::IETicketService', 1013] = {'inbytes': 8, 'outbytes': 4, 'buffers': [6]} | |
+ ['es', 'nn::es::IETicketService', 1014] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['es', 'nn::es::IETicketService', 1015] = {'inbytes': 8, 'outbytes': 0} | |
+ ['es', 'nn::es::IETicketService', 1016] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['es', 'nn::es::IETicketService', 1501] = {'inbytes': 0, 'outbytes': 8} | |
+ ['es', 'nn::es::IETicketService', 1502] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0x16, 0x15, 5]} | |
+ ['es', 'nn::es::IETicketService', 1503] = {'inbytes': 8, 'outbytes': 0, 'buffers': [0x16]} | |
+ ['es', 'nn::es::IETicketService', 1504] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0x15]} | |
+ ['es', 'nn::es::IETicketService', 1505] = {'inbytes': 0, 'outbytes': 0x28} | |
+ ['es', 'nn::es::IETicketService', 2000] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['EsSubinterface2000']} | |
+ ['es', 'nn::es::IETicketService', 2501] = {'inbytes': 0, 'outbytes': 4, 'buffers': [6]} | |
+ ['es', 'nn::es::IETicketService', 2502] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['eupld', 'nn::eupld::sf::IControl', 4] = {'inbytes': 0, 'outbytes': 8} | |
+ ['fs', 'nn::fssrv::sf::IDeviceOperator', 402] = {'inbytes': 4, 'outbytes': 8} | |
+ ['fs', 'nn::fssrv::sf::IDeviceOperator', 500] = {'inbytes': 0x14, 'outbytes': 0} | |
+ ['fs', 'nn::fssrv::sf::IDeviceOperator', 501] = {'inbytes': 4, 'outbytes': 0} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 35] = {'inbytes': 0xB0, 'outbytes': 0} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 67] = {'inbytes': 0x50, 'outbytes': 8, 'buffers': [6]} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 68] = {'inbytes': 0x50, 'outbytes': 0, 'outinterfaces': ['nn::fssrv::sf::ISaveDataInfoReader']} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 83] = {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::fssrv::sf::ISaveDataTransferProhibiter']} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 84] = {'inbytes': 0x10, 'outbytes': 4, 'buffers': [6]} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 120] = {'inbytes': 4, 'outbytes': 0, 'outinterfaces': ['nn::fssrv::sf::IFileSystem']} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 520] = {'inbytes': 0xC, 'outbytes': 0} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 616] = {'inbytes': 0x10, 'outbytes': 8} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 1010] = {'inbytes': 1, 'outbytes': 0} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 1110] = {'inbytes': 0x18, 'outbytes': 0} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 1200] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::fssrv::sf::IMultiCommitManager']} | |
+ ['fs', 'nn::fssrv::sf::IMultiCommitManager'] = {1: {'inbytes': 0, 'outbytes': 0, 'ininterfaces': ['nn::fssrv::sf::IFileSystem']}, 2: {'inbytes': 0, 'outbytes': 0}} | |
+ ['fs', 'nn::fssrv::sf::ISaveDataChunkExporter', 16] = {'inbytes': 0, 'outbytes': 8} | |
+ ['fs', 'nn::fssrv::sf::ISaveDataDivisionExporter', 1] = {'inbytes': 0, 'outbytes': 0, 'buffers': [6]} | |
+ ['fs', 'nn::fssrv::sf::ISaveDataDivisionExporter', 64] = {'inbytes': 0, 'outbytes': 0x20} | |
+ ['fs', 'nn::fssrv::sf::ISaveDataDivisionExporter', 65] = {'inbytes': 0, 'outbytes': 0x10} | |
+ ['fs', 'nn::fssrv::sf::ISaveDataDivisionExporter', 66] = {'inbytes': 0, 'outbytes': 0} | |
+ ['fs', 'nn::fssrv::sf::ISaveDataDivisionExporter', 67] = {'inbytes': 0, 'outbytes': 0, 'buffers': [6]} | |
+ ['fs', 'nn::fssrv::sf::ISaveDataDivisionExporter', 70] = {'inbytes': 0, 'outbytes': 0x10} | |
+ ['fs', 'nn::fssrv::sf::ISaveDataDivisionExporter', 71] = {'inbytes': 0, 'outbytes': 0x10} | |
+ ['fs', 'nn::fssrv::sf::ISaveDataDivisionExporter', 72] = {'inbytes': 0, 'outbytes': 0} | |
+ ['fs', 'nn::fssrv::sf::ISaveDataDivisionExporter', 80] = {'inbytes': 0, 'outbytes': 0x20} | |
+ ['fs', 'nn::fssrv::sf::ISaveDataDivisionExporter', 81] = {'inbytes': 0x20, 'outbytes': 0} | |
+ ['fs', 'nn::fssrv::sf::ISaveDataDivisionExporter', 96] = {'inbytes': 0, 'outbytes': 0x20} | |
+ ['fs', 'nn::fssrv::sf::ISaveDataDivisionImporter', 0] = {'inbytes': 0, 'outbytes': 0, 'buffers': [6]} | |
- ['fs', 'nn::fssrv::sf::ISaveDataDivisionImporter', 32] = {'inbytes': 0, 'outbytes': 8} | |
+ ['fs', 'nn::fssrv::sf::ISaveDataDivisionImporter', 32] = {'inbytes': 8, 'outbytes': 8} | |
+ ['fs', 'nn::fssrv::sf::ISaveDataDivisionImporter', 34] = {'inbytes': 0, 'outbytes': 0} | |
+ ['fs', 'nn::fssrv::sf::ISaveDataDivisionImporter', 35] = {'inbytes': 0, 'outbytes': 0, 'buffers': [6]} | |
+ ['fs', 'nn::fssrv::sf::ISaveDataDivisionImporter', 36] = {'inbytes': 0, 'outbytes': 0} | |
+ ['fs', 'nn::fssrv::sf::ISaveDataDivisionImporter', 64] = {'inbytes': 0, 'outbytes': 0x20} | |
+ ['fs', 'nn::fssrv::sf::ISaveDataDivisionImporter', 80] = {'inbytes': 0, 'outbytes': 0x20} | |
+ ['fs', 'nn::fssrv::sf::ISaveDataTransferManagerWithDivision', 34] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::fssrv::sf::ISaveDataDivisionExporter'], 'buffers': [5]} | |
+ ['fs', 'nn::fssrv::sf::ISaveDataTransferManagerWithDivision', 66] = {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::fssrv::sf::ISaveDataDivisionImporter'], 'buffers': [5]} | |
+ ['fs', 'nn::fssrv::sf::ISaveDataTransferManagerWithDivision', 67] = {'inbytes': 0x18, 'outbytes': 0, 'outinterfaces': ['nn::fssrv::sf::ISaveDataDivisionImporter'], 'buffers': [5]} | |
+ ['fs', 'nn::fssrv::sf::ISaveDataTransferManagerWithDivision', 68] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::fssrv::sf::ISaveDataDivisionImporter'], 'buffers': [5]} | |
+ ['fs', 'nn::fssrv::sf::ISaveDataTransferManagerWithDivision', 69] = {'inbytes': 0x18, 'outbytes': 0} | |
+ ['grc', 'nn::grcsrv::IMovieMakerService'] = {1: {'inbytes': 0, 'outbytes': 0}, 2: {'inbytes': 4, 'outbytes': 0x10, 'buffers': [6]}} | |
+ ['hid', 'nn::ahid::hdr::ISession', 5] = {'inbytes': 4, 'outbytes': 0, 'buffers': [5]} | |
+ ['hid', 'nn::hid::IHidDebugServer', 211] = {'inbytes': 0x18, 'outbytes': 8, 'inhandles': [1]} | |
+ ['hid', 'nn::hid::IHidDebugServer', 215] = {'inbytes': 1, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidDebugServer', 216] = {'inbytes': 0, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidDebugServer', 228] = {'inbytes': 8, 'outbytes': 0, 'outhandles': [1]} | |
+ ['hid', 'nn::hid::IHidDebugServer', 229] = {'inbytes': 0x18, 'outbytes': 0, 'inhandles': [1]} | |
+ ['hid', 'nn::hid::IHidDebugServer', 230] = {'inbytes': 0x20, 'outbytes': 0, 'inhandles': [1]} | |
+ ['hid', 'nn::hid::IHidDebugServer', 231] = {'inbytes': 8, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidDebugServer', 232] = {'inbytes': 8, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidDebugServer', 233] = {'inbytes': 8, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidDebugServer', 234] = {'inbytes': 8, 'outbytes': 4} | |
+ ['hid', 'nn::hid::IHidDebugServer', 400] = {'inbytes': 1, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidDebugServer', 401] = {'inbytes': 1, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidServer', 32] = {'inbytes': 0x10, 'outbytes': 0, 'pid': 1} | |
+ ['hid', 'nn::hid::IHidServer', 83] = {'inbytes': 0x10, 'outbytes': 1, 'pid': 1} | |
+ ['hid', 'nn::hid::IHidServer', 310] = {'inbytes': 8, 'outbytes': 0, 'pid': 1} | |
+ ['hid', 'nn::hid::IHidServer', 519] = {'inbytes': 8, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidServer', 520] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidServer', 521] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidServer', 522] = {'inbytes': 0x10, 'outbytes': 0, 'pid': 1} | |
+ ['hid', 'nn::hid::IHidServer', 523] = {'inbytes': 0x10, 'outbytes': 0, 'pid': 1} | |
+ ['hid', 'nn::hid::IHidServer', 524] = {'inbytes': 8, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidServer', 525] = {'inbytes': 1, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidSystemServer', 310] = {'inbytes': 8, 'outbytes': 4} | |
+ ['hid', 'nn::hid::IHidSystemServer', 312] = {'inbytes': 8, 'outbytes': 0, 'pid': 1} | |
+ ['hid', 'nn::hid::IHidSystemServer', 549] = {'inbytes': 0, 'outbytes': 8, 'buffers': [6]} | |
+ ['hid', 'nn::hid::IHidSystemServer', 870] = {'inbytes': 0, 'outbytes': 1} | |
+ ['hid', 'nn::hid::IHidSystemServer', 1120] = {'inbytes': 1, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidSystemServer', 1130] = {'inbytes': 0x10, 'outbytes': 0, 'inhandles': [1], 'pid': 1} | |
+ ['hid', 'nn::hid::IHidSystemServer', 1131] = {'inbytes': 8, 'outbytes': 0, 'pid': 1} | |
+ ['hid', 'nn::hid::IHidSystemServer', 1132] = {'inbytes': 8, 'outbytes': 8, 'pid': 1} | |
+ ['hid', 'nn::hid::IHidSystemServer', 1133] = {'inbytes': 8, 'outbytes': 0, 'pid': 1} | |
+ ['hid', 'nn::hid::IHidSystemServer', 1134] = {'inbytes': 8, 'outbytes': 0xC, 'pid': 1} | |
- ['hid', 'nn::hidbus::IHidbusServer', 13] = {'inbytes': 8, 'outbytes': 0, 'buffers': [0xA]} | |
+ ['hid', 'nn::hidbus::IHidbusServer', 14] = {'inbytes': 4, 'outbytes': 0} | |
- ['hid', 'nn::xcd::detail::ISystemServer', 11] = {'inbytes': 8, 'outbytes': 0, 'buffers': [0x1A]} | |
+ ['hid', 'nn::xcd::detail::ISystemServer', 11] = {'inbytes': 8, 'outbytes': 0, 'buffers': [0x32]} | |
+ ['nifm', 'nn::nifm::detail::IGeneralService', 38] = {'inbytes': 0, 'outbytes': 4, 'buffers': [6]} | |
+ ['nifm', 'nn::nifm::detail::IScanRequest', 4] = {'inbytes': 0, 'outbytes': 0, 'buffers': [9]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 87] = {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncData'], 'outhandles': [1], 'buffers': [5]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 88] = {'inbytes': 0x18, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncData'], 'outhandles': [1], 'buffers': [5]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 89] = {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncData'], 'outhandles': [1], 'buffers': [5]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 90] = {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncResult'], 'outhandles': [1]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 91] = {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncResult'], 'outhandles': [1], 'buffers': [5]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 92] = {'inbytes': 0x18, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncValue'], 'outhandles': [1]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 93] = {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncResult'], 'outhandles': [1], 'buffers': [5, 5]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 94] = {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncResult'], 'outhandles': [1], 'buffers': [5, 5]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 95] = {'inbytes': 0x28, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncResult'], 'outhandles': [1]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 96] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncData'], 'outhandles': [1]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 97] = {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncResult'], 'outhandles': [1]} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 98] = {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncResult'], 'outhandles': [1]} | |
+ ['nim', 'nn::nim::detail::IShopServiceAccessServerInterface', 1] = {'inbytes': 0, 'outbytes': 0} | |
+ ['nim', 'nn::nim::detail::IShopServiceAccessServerInterface', 2] = {'inbytes': 0, 'outbytes': 0} | |
+ ['nim', 'nn::nim::detail::IShopServiceAccessServerInterface', 3] = {'inbytes': 0xC, 'outbytes': 0, 'buffers': [5, 5]} | |
+ ['nim', 'nn::nim::detail::IShopServiceManager', 401] = {'inbytes': 0x10, 'outbytes': 4} | |
- ['nim', 'nn::nim::detail::IShopServiceManager', 502] = {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncValue'], 'outhandles': [1]} | |
+ ['nim', 'nn::nim::detail::IShopServiceManager', 502] = {'inbytes': 0x14, 'outbytes': 0, 'outinterfaces': ['nn::nim::detail::IAsyncValue'], 'outhandles': [1]} | |
- ['ns', 'nn::ns::detail::IApplicationManagerInterface', 19] = {'inbytes': 8, 'outbytes': 8} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 94] = {'inbytes': 0x48, 'outbytes': 8} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 95] = {'inbytes': 8, 'outbytes': 0x40} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 96] = {'inbytes': 8, 'outbytes': 0x40} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 97] = {'inbytes': 0x40, 'outbytes': 1} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 98] = {'inbytes': 1, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 211] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 221] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 406] = {'inbytes': 0x48, 'outbytes': 0, 'buffers': [0x16]} | |
- ['ns', 'nn::ns::detail::IApplicationManagerInterface', 602] = {'inbytes': 0x10, 'outbytes': 4, 'buffers': [6]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 607] = {'inbytes': 0x18, 'outbytes': 4, 'buffers': [6]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 911] = {'inbytes': 8, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 912] = {'inbytes': 8, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 1309] = {'inbytes': 0x18, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 2050] = {'inbytes': 0x20, 'outbytes': 4, 'buffers': [6]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 2100] = {'inbytes': 8, 'outbytes': 4} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 2101] = {'inbytes': 8, 'outbytes': 4} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 2150] = {'inbytes': 0, 'outbytes': 8} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 2151] = {'inbytes': 8, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 2152] = {'inbytes': 8, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 2153] = {'inbytes': 8, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 2154] = {'inbytes': 8, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 2160] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 2161] = {'inbytes': 0x10, 'outbytes': 0, 'buffers': [5]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 2170] = {'inbytes': 8, 'outbytes': 0x20} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 2171] = {'inbytes': 8, 'outbytes': 0, 'outhandles': [1]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 2180] = {'inbytes': 8, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 2181] = {'inbytes': 8, 'outbytes': 8} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 2182] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 2190] = {'inbytes': 0, 'outbytes': 8} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 2199] = {'inbytes': 0, 'outbytes': 4} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 2200] = {'inbytes': 8, 'outbytes': 0, 'buffers': [0x16]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 2201] = {'inbytes': 0x10, 'outbytes': 0, 'buffers': [0x16]} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 2250] = {'inbytes': 0, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 2300] = {'inbytes': 1, 'outbytes': 4, 'buffers': [6]} | |
+ ['ns', 'nn::ns::detail::IDevelopInterface', 10] = {'inbytes': 0, 'outbytes': 1} | |
+ ['ns', 'nn::ns::detail::IDevelopInterface', 11] = {'inbytes': 0, 'outbytes': 8} | |
+ ['ns', 'nn::ns::detail::IDevelopInterface', 12] = {'inbytes': 1, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IDynamicRightsInterface'] = {0: {'inbytes': 0x20, 'outbytes': 0, 'outinterfaces': ['nn::ns::detail::IAsyncValue'], 'outhandles': [1]}, 1: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::ns::detail::IAsyncResult'], 'outhandles': [1], 'buffers': [5]}, 4: {'inbytes': 0x18, 'outbytes': 0, 'outinterfaces': ['nn::ns::detail::IAsyncResult'], 'outhandles': [1]}, 5: {'inbytes': 8, 'outbytes': 0}, 6: {'inbytes': 8, 'outbytes': 1}, 7: {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::ns::detail::IAsyncResult'], 'outhandles': [1]}, 8: {'inbytes': 0, 'outbytes': 1}} | |
+ ['ns', 'nn::ns::detail::IECommerceInterface', 1] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::ns::detail::IAsyncResult'], 'outhandles': [1]} | |
+ ['ns', 'nn::ns::detail::IECommerceInterface', 2] = {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::ns::detail::IAsyncResult'], 'outhandles': [1]} | |
+ ['ns', 'nn::ns::detail::IECommerceInterface', 3] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::ns::detail::IAsyncResult'], 'outhandles': [1]} | |
+ ['ns', 'nn::ns::detail::IECommerceInterface', 4] = {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::ns::detail::IAsyncResult'], 'outhandles': [1]} | |
+ ['ns', 'nn::ns::detail::IReadOnlyApplicationControlDataInterface'] = {0: {'inbytes': 0x10, 'outbytes': 4, 'buffers': [6]}, 1: {'inbytes': 4, 'outbytes': 1}, 2: {'inbytes': 1, 'outbytes': 8}, 3: {'inbytes': 8, 'outbytes': 1}} | |
+ ['ns', 'nn::ns::detail::IServiceGetterInterface', 7988] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::ns::detail::IDynamicRightsInterface']} | |
+ ['ns', 'nn::ns::detail::IServiceGetterInterface', 7989] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::ns::detail::IReadOnlyApplicationControlDataInterface']} | |
+ ['ns', 'nn::ns::detail::ISystemUpdateControl', 22] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::ns::detail::IAsyncValue'], 'outhandles': [1]} | |
+ ['olsc'] = {'nn::olsc::srv::IAsyncResult': {0: {'inbytes': 0, 'outbytes': 0}, 1: {'inbytes': 0, 'outbytes': 0}, 2: {'inbytes': 0, 'outbytes': 1}, 3: {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]}}, 'nn::olsc::srv::IDaemonController': {0: {'inbytes': 0x18, 'outbytes': 1}, 1: {'inbytes': 0x20, 'outbytes': 0}, 2: {'inbytes': 0x10, 'outbytes': 1}, 3: {'inbytes': 0x18, 'outbytes': 0}, 4: {'inbytes': 0x10, 'outbytes': 0}, 10: {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::olsc::srv::IForbiddenSaveDataIndication']}, 11: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::olsc::srv::IStopperObject']}, 12: {'inbytes': 0x10, 'outbytes': 1}}, 'nn::olsc::srv::IForbiddenSaveDataIndication': {0: {'inbytes': 0, 'outbytes': 0, 'buffers': [5]}}, 'nn::olsc::srv::INativeHandleHolder': {0: {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]}}, 'nn::olsc::srv::IOlscServiceForSystemService': {0: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::olsc::srv::ITransferTaskListController']}, 1: {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::olsc::srv::IRemoteStorageController']}, 2: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::olsc::srv::IDaemonController']}, 10: {'inbytes': 0x10, 'outbytes': 0}, 11: {'inbytes': 0x18, 'outbytes': 0}, 12: {'inbytes': 0, 'outbytes': 0}, 100: {'inbytes': 4, 'outbytes': 4, 'buffers': [6]}, 101: {'inbytes': 0, 'outbytes': 4}, 102: {'inbytes': 0x18, 'outbytes': 0}, 103: {'inbytes': 0x18, 'outbytes': 0x30}, 200: {'inbytes': 8, 'outbytes': 2}, 201: {'inbytes': 8, 'outbytes': 0}, 202: {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::olsc::srv::IAsyncResult']}, 900: {'inbytes': 0, 'outbytes': 0}, 902: {'inbytes': 0x10, 'outbytes': 0}, 903: {'inbytes': 0x10, 'outbytes': 0}, 904: {'inbytes': 0x10, 'outbytes': 0}, 905: {'inbytes': 0, 'outbytes': 0}, 906: {'inbytes': 0x30, 'outbytes': 0}, 907: {'inbytes': 0x70, 'outbytes': 0}, 908: {'inbytes': 0x18, 'outbytes': 0}, 909: {'inbytes': 0x18, 'outbytes': 0x10}}, 'nn::olsc::srv::IRemoteStorageController': {0: {'inbytes': 8, 'outbytes': 8}, 1: {'inbytes': 8, 'outbytes': 8}, 2: {'inbytes': 8, 'outbytes': 4, 'buffers': [6]}, 3: {'inbytes': 0, 'outbytes': 4}, 4: {'inbytes': 8, 'outbytes': 0x40}, 6: {'inbytes': 0, 'outbytes': 0}, 7: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::olsc::srv::IAsyncResult']}, 8: {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::olsc::srv::IAsyncResult']}, 9: {'inbytes': 8, 'outbytes': 0}, 10: {'inbytes': 8, 'outbytes': 1}, 11: {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::olsc::srv::IAsyncResult']}, 12: {'inbytes': 0x10, 'outbytes': 8}, 13: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::olsc::srv::IAsyncResult']}, 14: {'inbytes': 8, 'outbytes': 1}, 15: {'inbytes': 0x10, 'outbytes': 8}, 16: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::olsc::srv::IAsyncResult']}}, 'nn::olsc::srv::ITransferTaskListController': {0: {'inbytes': 0, 'outbytes': 4}, 1: {'inbytes': 8, 'outbytes': 0x30}, 2: {'inbytes': 4, 'outbytes': 4, 'buffers': [6]}, 3: {'inbytes': 8, 'outbytes': 0}, 4: {'inbytes': 8, 'outbytes': 0}, 5: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::olsc::srv::INativeHandleHolder']}, 6: {'inbytes': 8, 'outbytes': 0x18}, 7: {'inbytes': 8, 'outbytes': 0}, 8: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::olsc::srv::IStopperObject']}, 9: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::olsc::srv::INativeHandleHolder']}, 10: {'inbytes': 8, 'outbytes': 0}, 11: {'inbytes': 0, 'outbytes': 0x30}, 12: {'inbytes': 0x18, 'outbytes': 0x30}}} | |
+ ['pcie.withoutHb', 'PcieLogService'] = {0: {'inbytes': 1, 'outbytes': 1, 'buffers': [6]}, 1: {'inbytes': 1, 'outbytes': 0, 'outhandles': [1]}} | |
+ ['pctl', 'nn::pctl::detail::ipc::IParentalControlService', 1016] = {'inbytes': 0, 'outbytes': 0, 'buffers': [9]} | |
+ ['pctl', 'nn::pctl::detail::ipc::IParentalControlService', 1048] = {'inbytes': 0, 'outbytes': 0} | |
+ ['pctl', 'nn::pctl::detail::ipc::IParentalControlService', 1425] = {'inbytes': 0, 'outbytes': 4, 'buffers': [6]} | |
+ ['pcv', 'nn::bpc::IBoardPowerControlManager', 14] = {'inbytes': 0, 'outbytes': 1} | |
- ['pcv', 'nn::pcv::detail::IPcvService', 15] = {'inbytes': 0, 'outbytes': 0} | |
- ['pcv', 'nn::pcv::detail::IPcvService', 16] = {'inbytes': 0, 'outbytes': 1} | |
- ['pcv', 'nn::pcv::detail::IPcvService', 17] = {'inbytes': 0, 'outbytes': 0} | |
+ ['pcv', 'nn::pcv::detail::IPcvService', 28] = {'inbytes': 4, 'outbytes': 1} | |
+ ['pcv', 'nn::pcv::detail::IPcvService', 29] = {'inbytes': 4, 'outbytes': 4} | |
+ ['pcv', 'nn::timesrv::detail::service::IStaticService', 20] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['pcv', 'nn::timesrv::detail::service::IStaticService', 30] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['pcv', 'nn::timesrv::detail::service::IStaticService', 31] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['pcv', 'nn::timesrv::detail::service::IStaticService', 201] = {'inbytes': 0, 'outbytes': 0x18} | |
+ ['pm', 'nn::pm::detail::IDebugMonitorInterface', 6] = {'inbytes': 4, 'outbytes': 0} | |
+ ['psc', 'nn::psc::sf::IPmModule', 4] = {'inbytes': 4, 'outbytes': 0} | |
+ ['psc', 'nn::srepo::detail::ipc::ISrepoService', 10101] = {'inbytes': 0x18, 'outbytes': 0, 'buffers': [9, 5]} | |
+ ['psc', 'nn::srepo::detail::ipc::ISrepoService', 10200] = {'inbytes': 8, 'outbytes': 0, 'buffers': [9, 5]} | |
+ ['psc', 'nn::srepo::detail::ipc::ISrepoService', 10201] = {'inbytes': 0x18, 'outbytes': 0, 'buffers': [9, 5]} | |
+ ['psc', 'nn::srepo::detail::ipc::ISrepoService', 11000] = {'inbytes': 0, 'outbytes': 0, 'buffers': [9]} | |
+ ['psc', 'nn::srepo::detail::ipc::ISrepoService', 11001] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['psc', 'nn::srepo::detail::ipc::ISrepoService', 11002] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['psc', 'nn::srepo::detail::ipc::ISrepoService', 11003] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['psc', 'nn::srepo::detail::ipc::ISrepoService', 11004] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['psc', 'nn::srepo::detail::ipc::ISrepoService', 11100] = {'inbytes': 2, 'outbytes': 0} | |
+ ['psc', 'nn::srepo::detail::ipc::ISrepoService', 11200] = {'inbytes': 0x18, 'outbytes': 0} | |
+ ['psc', 'nn::srepo::detail::ipc::ISrepoService', 11300] = {'inbytes': 1, 'outbytes': 0} | |
+ ['psc', 'nn::srepo::detail::ipc::ISrepoService', 11400] = {'inbytes': 1, 'outbytes': 0} | |
+ ['psc', 'nn::srepo::detail::ipc::ISrepoService', 11500] = {'inbytes': 1, 'outbytes': 0} | |
+ ['psc', 'nn::srepo::detail::ipc::ISrepoService', 11600] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['psc', 'nn::srepo::detail::ipc::ISrepoService', 11601] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['psc', 'nn::srepo::detail::ipc::ISrepoService', 11602] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['psc', 'nn::srepo::detail::ipc::ISrepoService', 11700] = {'inbytes': 3, 'outbytes': 0} | |
+ ['psc', 'nn::srepo::detail::ipc::ISrepoService', 11800] = {'inbytes': 8, 'outbytes': 0, 'buffers': [5]} | |
+ ['psc', 'nn::srepo::detail::ipc::ISrepoService', 11801] = {'inbytes': 8, 'outbytes': 0, 'buffers': [5]} | |
- ['psc', 'nn::srepo::detail::ipc::ISrepoService', 20100] = {'inbytes': 0, 'outbytes': 0x10, 'buffers': [0xA, 6]} | |
+ ['psc', 'nn::srepo::detail::ipc::ISrepoService', 20100] = {'inbytes': 0, 'outbytes': 0x28, 'buffers': [0xA, 6]} | |
+ ['psc', 'nn::srepo::detail::ipc::ISrepoService', 20300] = {'inbytes': 0, 'outbytes': 0} | |
+ ['psc', 'nn::srepo::detail::ipc::ISrepoService', 20400] = {'inbytes': 4, 'outbytes': 0x10} | |
+ ['psc', 'nn::srepo::detail::ipc::ISrepoService', 20401] = {'inbytes': 0, 'outbytes': 0x10} | |
+ ['sdb', 'nn::avm::srv::IAvmService'] = {100: {'inbytes': 0x10, 'outbytes': 4}, 101: {'inbytes': 0x10, 'outbytes': 4}, 102: {'inbytes': 8, 'outbytes': 0x10}, 103: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::avm::srv::IVersionListImporter']}, 200: {'inbytes': 8, 'outbytes': 4}, 202: {'inbytes': 0x10, 'outbytes': 0}, 1000: {'inbytes': 0x10, 'outbytes': 0}, 1001: {'inbytes': 0, 'outbytes': 4, 'buffers': [6]}, 1002: {'inbytes': 0, 'outbytes': 4, 'buffers': [6]}} | |
+ ['sdb', 'nn::avm::srv::IVersionListImporter'] = {0: {'inbytes': 8, 'outbytes': 0}, 1: {'inbytes': 0, 'outbytes': 0, 'buffers': [5]}, 2: {'inbytes': 0, 'outbytes': 0}} | |
+ ['sdb', 'nn::pdm::detail::INotifyService', 8] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['sdb', 'nn::pdm::detail::IQueryService', 14] = {'inbytes': 0x10, 'outbytes': 4, 'buffers': [6]} | |
+ ['sdb', 'nn::pdm::detail::IQueryService', 15] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['sdb', 'nn::pdm::detail::IQueryService', 16] = {'inbytes': 0x10, 'outbytes': 4, 'buffers': [6, 5]} | |
+ ['settings', 'nn::settings::IFactorySettingsServer', 41] = {'inbytes': 0, 'outbytes': 1} | |
+ ['settings', 'nn::settings::ISettingsServer', 9] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0x16]} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 152] = {'inbytes': 0, 'outbytes': 0x18} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 153] = {'inbytes': 0x18, 'outbytes': 0} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 154] = {'inbytes': 0, 'outbytes': 4, 'buffers': [6]} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 155] = {'inbytes': 0, 'outbytes': 0, 'buffers': [5]} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 156] = {'inbytes': 0, 'outbytes': 1} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 157] = {'inbytes': 1, 'outbytes': 0} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 162] = {'inbytes': 0, 'outbytes': 1} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 163] = {'inbytes': 1, 'outbytes': 0} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 164] = {'inbytes': 0, 'outbytes': 1} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 165] = {'inbytes': 1, 'outbytes': 0} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 166] = {'inbytes': 0, 'outbytes': 1} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 167] = {'inbytes': 1, 'outbytes': 0} | |
+ ['spl', 'nn::spl::detail::IEsInterface', 31] = {'inbytes': 4, 'outbytes': 0x10, 'buffers': [9, 9, 9]} | |
+ ['spl', 'nn::spl::detail::IEsInterface', 32] = {'inbytes': 0x14, 'outbytes': 0} | |
+ ['ssl', 'nn::ssl::sf::ISslService', 7] = {'inbytes': 4, 'outbytes': 0, 'buffers': [5]} | |
+ ['ssl', 'nn::ssl::sf::ISslService', 8] = {'inbytes': 4, 'outbytes': 0, 'buffers': [6]} | |
+ ['usb', 'nn::usb::hs::IClientRootSession', 8] = {'inbytes': 0xC, 'outbytes': 4} | |
- ['vi', 'nn::capsrv::sf::IScreenShotApplicationService'] = {201: {'inbytes': 0x10, 'outbytes': 0x20, 'buffers': [0x45], 'pid': 1}, 203: {'inbytes': 0x50, 'outbytes': 0x20, 'buffers': [0x45], 'pid': 1}} | |
+ ['vi', 'nn::capsrv::sf::IScreenShotControlService', 210] = {'inbytes': 0x50, 'outbytes': 0x20, 'buffers': [0x15, 0x45]} | |
- ['vi', 'nn::capsrv::sf::IScreenShotControlService', 1004] = {'inbytes': 0x60, 'outbytes': 0} | |
+ ['vi', 'nn::capsrv::sf::IScreenShotControlService', 1004] = {'inbytes': 0x60, 'outbytes': 0, 'buffers': [0x15]} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 2303] = {'inbytes': 8, 'outbytes': 0, 'outhandles': [1]} | |
+ ['wlan', 'WlanDtcService'] = {0: {'inbytes': 0, 'outbytes': 0}, 1: {'inbytes': 2, 'outbytes': 0}, 2: {'inbytes': 0, 'outbytes': 0}, 3: {'inbytes': 0, 'outbytes': 6}, 4: {'inbytes': 0, 'outbytes': 4}, 5: {'inbytes': 0xC, 'outbytes': 0, 'buffers': [0x19, 5]}, 6: {'inbytes': 8, 'outbytes': 0, 'buffers': [0x19, 5]}, 7: {'inbytes': 0, 'outbytes': 0}, 8: {'inbytes': 4, 'outbytes': 0x18, 'buffers': [6]}, 9: {'inbytes': 4, 'outbytes': 0}, 10: {'inbytes': 4, 'outbytes': 4, 'buffers': [9]}, 11: {'inbytes': 4, 'outbytes': 0}, 12: {'inbytes': 8, 'outbytes': 0}, 13: {'inbytes': 4, 'outbytes': 4}, 14: {'inbytes': 0, 'outbytes': 0}, 15: {'inbytes': 0, 'outbytes': 0}, 16: {'inbytes': 1, 'outbytes': 0, 'buffers': [0x19, 5]}, 17: {'inbytes': 0, 'outbytes': 0, 'buffers': [5]}, 18: {'inbytes': 1, 'outbytes': 0, 'buffers': [0x19]}, 19: {'inbytes': 0, 'outbytes': 0}, 20: {'inbytes': 0, 'outbytes': 0}, 21: {'inbytes': 0x14, 'outbytes': 0, 'buffers': [0x19, 5]}, 22: {'inbytes': 0, 'outbytes': 0}, 23: {'inbytes': 0, 'outbytes': 0}, 24: {'inbytes': 6, 'outbytes': 0}, 25: {'inbytes': 0, 'outbytes': 4, 'buffers': [0xA]}, 26: {'inbytes': 0, 'outbytes': 8}, 27: {'inbytes': 0, 'outbytes': 0}} | |
+ ['wlan', 'nn::wlan::detail::ILocalManager', 49] = {'inbytes': 0, 'outbytes': 4, 'buffers': [0xA]} | |
+ ['wlan', 'nn::wlan::detail::ILocalManager', 50] = {'inbytes': 1, 'outbytes': 0} | |
+ ['wlan', 'nn::wlan::detail::ISocketManager', 12] = {'inbytes': 0x31, 'outbytes': 0} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
+ ['account', 'nn::account::baas::IAdministrator', 113] = {'inbytes': 8, 'outbytes': 4} | |
+ ['account', 'nn::account::baas::IAdministrator', 400] = {'inbytes': 8, 'outbytes': 1} | |
+ ['account', 'nn::account::baas::IAdministrator', 401] = {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::account::detail::IAsyncContext']} | |
+ ['account', 'nn::account::baas::IManagerForSystemService', 113] = {'inbytes': 8, 'outbytes': 4} | |
+ ['hid', 'nn::hid::IHidServer', 134] = {'inbytes': 0x10, 'outbytes': 0, 'pid': 1} | |
+ ['ns', 'nn::ns::detail::IECommerceInterface', 5] = {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::ns::detail::IAsyncResult'], 'outhandles': [1]} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- ['Bus', 'nn::gpio::IManager', 3] = {'inbytes': 4, 'outbytes': 1} | |
- ['Bus', 'nn::gpio::IManager', 4] = {'inbytes': 0, 'outbytes': 0x10} | |
- ['Bus', 'nn::gpio::IManager', 5] = {'inbytes': 8, 'outbytes': 0} | |
- ['Bus', 'nn::gpio::IManager', 7] = {'inbytes': 4, 'outbytes': 0, 'outinterfaces': ['nn::gpio::IPadSession']} | |
+ ['Bus', 'nn::gpio::IManager', 7] = {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::gpio::IPadSession']} | |
+ ['Bus', 'nn::uart::IManager', 9] = {'inbytes': 8, 'outbytes': 1} | |
+ ['Bus', 'nn::uart::IManager', 10] = {'inbytes': 8, 'outbytes': 1} | |
- ['Bus', 'nn::uart::IPortSession', 0] = {'inbytes': 0x20, 'outbytes': 1, 'inhandles': [1, 1]} | |
+ ['Bus', 'nn::uart::IPortSession', 0] = {'inbytes': 0x28, 'outbytes': 1, 'inhandles': [1, 1]} | |
- ['Bus', 'nn::uart::IPortSession', 1] = {'inbytes': 0x20, 'outbytes': 1, 'inhandles': [1, 1]} | |
+ ['Bus', 'nn::uart::IPortSession', 1] = {'inbytes': 0x28, 'outbytes': 1, 'inhandles': [1, 1]} | |
+ ['account', 'nn::account::IAccountServiceForAdministrator', 191] = {'inbytes': 0, 'outbytes': 0} | |
+ ['account', 'nn::account::IAccountServiceForSystemService', 191] = {'inbytes': 0, 'outbytes': 0} | |
- ['account', 'nn::account::IBaasAccessTokenAccessor', 50] = {'inbytes': 0x38, 'outbytes': 0, 'outinterfaces': ['nn::account::detail::IAsyncContext']} | |
- ['account', 'nn::account::IBaasAccessTokenAccessor', 51] = {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::account::detail::IAsyncContext']} | |
+ ['account', 'nn::account::baas::IAdministrator', 101] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::account::detail::IAsyncContext']} | |
- ['account', 'nn::account::baas::IAdministrator', 112] = {'inbytes': 8, 'outbytes': 0} | |
+ ['account', 'nn::account::baas::IManagerForSystemService', 101] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::account::detail::IAsyncContext']} | |
- ['account', 'nn::account::baas::IManagerForSystemService', 112] = {'inbytes': 8, 'outbytes': 0} | |
+ ['am', 'nn::am::service::IAppletCommonFunctions'] = {10: {'inbytes': 8, 'outbytes': 8, 'buffers': [0x22]}, 11: {'inbytes': 8, 'outbytes': 0, 'buffers': [0x21]}} | |
+ ['am', 'nn::am::service::IApplicationFunctions', 14] = {'inbytes': 8, 'outbytes': 0, 'ininterfaces': ['nn::am::service::IStorage'], 'buffers': [0x15]} | |
+ ['am', 'nn::am::service::IApplicationFunctions', 15] = {'inbytes': 8, 'outbytes': 0, 'buffers': [0x15]} | |
+ ['am', 'nn::am::service::ICommonStateGetter', 32] = {'inbytes': 4, 'outbytes': 0, 'outinterfaces': ['nn::am::service::ILockAccessor']} | |
+ ['am', 'nn::am::service::ICommonStateGetter', 53] = {'inbytes': 0, 'outbytes': 0} | |
+ ['am', 'nn::am::service::ICommonStateGetter', 54] = {'inbytes': 0, 'outbytes': 0} | |
+ ['am', 'nn::am::service::ICommonStateGetter', 90] = {'inbytes': 1, 'outbytes': 0} | |
+ ['am', 'nn::am::service::ICommonStateGetter', 91] = {'inbytes': 0, 'outbytes': 4} | |
+ ['am', 'nn::am::service::ICommonStateGetter', 200] = {'inbytes': 0, 'outbytes': 4} | |
+ ['am', 'nn::am::service::IDebugFunctions', 100] = {'inbytes': 4, 'outbytes': 0} | |
+ ['am', 'nn::am::service::IGlobalStateController', 9] = {'inbytes': 0, 'outbytes': 1} | |
+ ['am', 'nn::am::service::ILibraryAppletProxy', 21] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::am::service::IAppletCommonFunctions']} | |
+ ['am', 'nn::am::service::IOverlayAppletProxy', 21] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::am::service::IAppletCommonFunctions']} | |
+ ['am', 'nn::am::service::IOverlayFunctions', 90] = {'inbytes': 1, 'outbytes': 0} | |
+ ['am', 'nn::am::service::ISelfController', 100] = {'inbytes': 1, 'outbytes': 0} | |
+ ['am', 'nn::am::service::ISelfController', 1000] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::am::service::IStorageChannel']} | |
+ ['am', 'nn::am::service::IStorageChannel'] = {0: {'inbytes': 0, 'outbytes': 0, 'ininterfaces': ['nn::am::service::IStorage']}, 1: {'inbytes': 0, 'outbytes': 0, 'ininterfaces': ['nn::am::service::IStorage']}, 2: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::am::service::IStorage']}, 3: {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]}, 4: {'inbytes': 0, 'outbytes': 0}} | |
+ ['am', 'nn::am::service::ISystemAppletControllerForDebug', 2] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::am::service::IStorageChannel']} | |
+ ['am', 'nn::am::service::ISystemAppletControllerForDebug', 3] = {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::am::service::IStorage']} | |
+ ['am', 'nn::am::service::ISystemAppletProxy', 23] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::am::service::IAppletCommonFunctions']} | |
+ ['am', 'nn::am::service::IWindowController', 20] = {'inbytes': 1, 'outbytes': 0} | |
+ ['am', 'nn::am::service::IWindowController', 21] = {'inbytes': 8, 'outbytes': 0} | |
+ ['am', 'nn::capsrv::sf::IScreenShotApplicationService', 32] = {'inbytes': 0x10, 'outbytes': 0, 'pid': 1} | |
+ ['am', 'nn::grcsrv::IMovieMaker', 9] = {'inbytes': 8, 'outbytes': 0} | |
+ ['am', 'nn::grcsrv::IMovieMaker', 26] = {'inbytes': 0x10, 'outbytes': 0x20, 'buffers': [5, 5]} | |
+ ['am', 'nn::idle::detail::IPolicyManagerSystem', 1] = {'inbytes': 0, 'outbytes': 1} | |
+ ['am', 'nn::omm::detail::IOperationModeManager', 26] = {'inbytes': 0, 'outbytes': 4} | |
+ ['audio', 'nn::audioctrl::detail::IAudioController', 27] = {'inbytes': 4, 'outbytes': 0, 'buffers': [5]} | |
+ ['audio', 'nn::codec::detail::IHardwareOpusDecoder', 8] = {'inbytes': 1, 'outbytes': 0x10, 'buffers': [0x46, 0x45]} | |
+ ['audio', 'nn::codec::detail::IHardwareOpusDecoder', 9] = {'inbytes': 1, 'outbytes': 0x10, 'buffers': [0x46, 0x45]} | |
- ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 38] = {'inbytes': 0, 'outbytes': 4, 'buffers': [0xA]} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 38] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['bluetooth', 'nn::bluetooth::IBluetoothDriver', 257] = {'inbytes': 4, 'outbytes': 0} | |
- ['bsdsocket', 'nn::socket::sf::IClient', 28] = {'inbytes': 0x10, 'outbytes': 8, 'buffers': [0x22], 'pid': 1} | |
+ ['bsdsocket', 'nn::socket::sf::IClient', 28] = {'inbytes': 0x10, 'outbytes': 8, 'buffers': [0x22, 0x21], 'pid': 1} | |
- ['bsdsocket', 'nn::socket::sf::IClient', 29] = {'inbytes': 0x20, 'outbytes': 8, 'buffers': [0x22]} | |
+ ['bsdsocket', 'nn::socket::sf::IClient', 29] = {'inbytes': 0x20, 'outbytes': 8, 'buffers': [6]} | |
- ['bsdsocket', 'nn::socket::sf::IClient', 30] = {'inbytes': 0xC, 'outbytes': 8, 'buffers': [0x21, 0x21]} | |
+ ['bsdsocket', 'nn::socket::sf::IClient', 30] = {'inbytes': 0xC, 'outbytes': 8, 'buffers': [6]} | |
+ ['bsdsocket', 'nn::socket::sf::IClient', 31] = {'inbytes': 0x10, 'outbytes': 8} | |
+ ['bsdsocket', 'nn::socket::sf::IClient', 32] = {'inbytes': 8, 'outbytes': 8, 'buffers': [0x21], 'pid': 1} | |
+ ['capsrv', 'nn::capsrv::sf::IAlbumApplicationService', 32] = {'inbytes': 0x10, 'outbytes': 0, 'pid': 1} | |
+ ['capsrv', 'nn::capsrv::sf::IAlbumApplicationService', 142] = {'inbytes': 0x20, 'outbytes': 8, 'buffers': [6], 'pid': 1} | |
+ ['capsrv', 'nn::capsrv::sf::IAlbumApplicationService', 143] = {'inbytes': 0x30, 'outbytes': 8, 'buffers': [6], 'pid': 1} | |
+ ['capsrv', 'nn::capsrv::sf::IAlbumControlService', 33] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['capsrv', 'nn::capsrv::sf::IAlbumControlSession', 2406] = {'inbytes': 8, 'outbytes': 0x20} | |
+ ['es', 'EsSubinterface2000', 1001] = {'inbytes': 0, 'outbytes': 8, 'buffers': [6, 6]} | |
- ['es', 'nn::es::IETicketService', 21] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0x16, 0x16, 5]} | |
- ['es', 'nn::es::IETicketService', 29] = {'inbytes': 0x10, 'outbytes': 4, 'buffers': [6]} | |
+ ['es', 'nn::es::IETicketService', 29] = {'inbytes': 8, 'outbytes': 4, 'buffers': [6]} | |
- ['es', 'nn::es::IETicketService', 33] = {'inbytes': 8, 'outbytes': 4, 'buffers': [6]} | |
+ ['es', 'nn::es::IETicketService', 2100] = {'inbytes': 0, 'outbytes': 4, 'outinterfaces': ['EsSubinterface2000', 'EsSubinterface2000', 'EsSubinterface2000', 'EsSubinterface2000', 'EsSubinterface2000', 'EsSubinterface2000']} | |
+ ['es', 'nn::es::IETicketService', 3001] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0x16, 0x16, 5]} | |
+ ['es', 'nn::es::IETicketService', 3002] = {'inbytes': 0, 'outbytes': 0, 'buffers': [0x16]} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 130] = {'inbytes': 4, 'outbytes': 0, 'outinterfaces': ['nn::fssrv::sf::IFileSystem']} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 204] = {'inbytes': 1, 'outbytes': 0, 'outinterfaces': ['nn::fssrv::sf::IFileSystem']} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 205] = {'inbytes': 1, 'outbytes': 0, 'outinterfaces': ['nn::fssrv::sf::IStorage']} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 617] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 810] = {'inbytes': 4, 'outbytes': 0, 'buffers': [5]} | |
- ['fs', 'nn::fssrv::sf::IFileSystemProxy', 1010] = {'inbytes': 1, 'outbytes': 0} | |
+ ['fs', 'nn::fssrv::sf::IFileSystemProxy', 1011] = {'inbytes': 0, 'outbytes': 8} | |
+ ['grc', 'nn::grcsrv::IMovieMaker', 9] = {'inbytes': 8, 'outbytes': 0} | |
+ ['grc', 'nn::grcsrv::IMovieMaker', 26] = {'inbytes': 0x10, 'outbytes': 0x20, 'buffers': [5, 5]} | |
+ ['hid', 'nn::hid::IHidDebugServer', 235] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidDebugServer', 324] = {'inbytes': 8, 'outbytes': 0, 'inhandles': [1]} | |
+ ['hid', 'nn::hid::IHidDebugServer', 325] = {'inbytes': 0, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidDebugServer', 326] = {'inbytes': 0, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidDebugServer', 327] = {'inbytes': 0, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidDebugServer', 328] = {'inbytes': 1, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidDebugServer', 329] = {'inbytes': 0, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidDebugServer', 330] = {'inbytes': 0x10, 'outbytes': 8} | |
+ ['hid', 'nn::hid::IHidDebugServer', 331] = {'inbytes': 8, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidDebugServer', 332] = {'inbytes': 0x30, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidServer', 211] = {'inbytes': 0x10, 'outbytes': 1, 'pid': 1} | |
+ ['hid', 'nn::hid::IHidServer', 526] = {'inbytes': 8, 'outbytes': 0} | |
+ ['hid', 'nn::hid::IHidSystemServer', 161] = {'inbytes': 0, 'outbytes': 4} | |
+ ['hid', 'nn::hid::IHidSystemServer', 830] = {'inbytes': 0x50, 'outbytes': 0} | |
+ ['lbl', 'nn::lbl::detail::ILblController', 29] = {'inbytes': 0, 'outbytes': 1} | |
+ ['ldn', 'nn::ldn::detail::ISystemLocalCommunicationService', 403] = {'inbytes': 0x10, 'outbytes': 0, 'pid': 1} | |
+ ['ldn', 'nn::ldn::detail::IUserLocalCommunicationService', 402] = {'inbytes': 0x10, 'outbytes': 0, 'pid': 1} | |
+ ['migration', 'nn::migration::savedata::IClient'] = {0: {'inbytes': 0, 'outbytes': 0, 'buffers': [0x1A]}, 100: {'inbytes': 0, 'outbytes': 1}, 200: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::migration::detail::IAsyncContext']}, 201: {'inbytes': 0, 'outbytes': 4, 'buffers': [6]}, 210: {'inbytes': 0x10, 'outbytes': 0, 'outinterfaces': ['nn::migration::detail::IAsyncContext']}, 300: {'inbytes': 0, 'outbytes': 8}, 301: {'inbytes': 0, 'outbytes': 0x10}, 302: {'inbytes': 0, 'outbytes': 0x10}, 303: {'inbytes': 0, 'outbytes': 8}, 310: {'inbytes': 0, 'outbytes': 0x10}, 320: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::migration::detail::IAsyncContext']}, 350: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::migration::detail::IAsyncContext']}, 400: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::migration::detail::IAsyncContext']}, 500: {'inbytes': 0, 'outbytes': 0}, 999: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::migration::detail::IAsyncContext']}} | |
+ ['migration', 'nn::migration::savedata::IServer'] = {0: {'inbytes': 0, 'outbytes': 0x10}, 1: {'inbytes': 0, 'outbytes': 8}, 2: {'inbytes': 0, 'outbytes': 0, 'buffers': [0x1A]}, 100: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::migration::detail::IAsyncContext']}, 101: {'inbytes': 0, 'outbytes': 1}, 200: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::migration::detail::IAsyncContext']}, 201: {'inbytes': 0, 'outbytes': 0, 'buffers': [0x1A]}, 300: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::migration::detail::IAsyncContext']}, 400: {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::migration::detail::IAsyncContext']}, 500: {'inbytes': 0, 'outbytes': 0}} | |
+ ['migration', 'nn::migration::user::IService', 1010] = {'inbytes': 0, 'outbytes': 0x10} | |
+ ['migration', 'nn::migration::user::IService', 1100] = {'inbytes': 0x20, 'outbytes': 0, 'outinterfaces': ['nn::migration::savedata::IServer'], 'inhandles': [1], 'buffers': [0x19]} | |
+ ['migration', 'nn::migration::user::IService', 1101] = {'inbytes': 4, 'outbytes': 0, 'outinterfaces': ['nn::migration::savedata::IServer'], 'inhandles': [1]} | |
+ ['migration', 'nn::migration::user::IService', 1200] = {'inbytes': 4, 'outbytes': 0, 'outinterfaces': ['nn::migration::savedata::IClient'], 'inhandles': [1], 'buffers': [0x19]} | |
+ ['migration', 'nn::migration::user::IService', 1201] = {'inbytes': 4, 'outbytes': 0, 'outinterfaces': ['nn::migration::savedata::IClient'], 'inhandles': [1]} | |
+ ['ncm', 'nn::lr::ILocationResolver', 16] = {'inbytes': 8, 'outbytes': 0, 'buffers': [0x1A]} | |
+ ['ncm', 'nn::lr::ILocationResolver', 17] = {'inbytes': 8, 'outbytes': 0, 'buffers': [0x19]} | |
+ ['ncm', 'nn::lr::ILocationResolver', 18] = {'inbytes': 8, 'outbytes': 0, 'buffers': [0x19]} | |
+ ['ncm', 'nn::lr::ILocationResolver', 19] = {'inbytes': 8, 'outbytes': 0} | |
+ ['ncm', 'nn::lr::IRegisteredLocationResolver', 8] = {'inbytes': 0, 'outbytes': 0} | |
+ ['nfc', 'nn::nfc::detail::ISystem', 510] = {'inbytes': 8, 'outbytes': 0} | |
+ ['nim', 'NimEcasService'] = {0: {'inbytes': 0x18, 'outbytes': 0, 'pid': 1}, 1: {'inbytes': 8, 'outbytes': 0, 'pid': 1}} | |
+ ['nim', 'nn::nim::detail::INetworkInstallManager', 99] = {'inbytes': 0x50, 'outbytes': 0x10, 'buffers': [5]} | |
+ ['npns', 'nn::npns::INotificationReceiver'] = {1: {'inbytes': 8, 'outbytes': 0}, 2: {'inbytes': 8, 'outbytes': 0, 'pid': 1}, 3: {'inbytes': 2, 'outbytes': 0, 'buffers': [6]}, 4: {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]}} | |
+ ['npns', 'nn::npns::INpnsSystem', 33] = {'inbytes': 0x10, 'outbytes': 0x28} | |
+ ['npns', 'nn::npns::INpnsSystem', 34] = {'inbytes': 0, 'outbytes': 0, 'buffers': [9]} | |
+ ['npns', 'nn::npns::INpnsSystem', 120] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::npns::INotificationReceiver']} | |
+ ['npns', 'nn::npns::INpnsUser', 120] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::npns::INotificationReceiver']} | |
- ['ns', 'nn::aocsrv::detail::IAddOnContentManager', 0] = {'inbytes': 8, 'outbytes': 4} | |
- ['ns', 'nn::aocsrv::detail::IAddOnContentManager', 1] = {'inbytes': 0x10, 'outbytes': 4, 'buffers': [6]} | |
- ['ns', 'nn::aocsrv::detail::IAddOnContentManager', 4] = {'inbytes': 8, 'outbytes': 8} | |
- ['ns', 'nn::aocsrv::detail::IAddOnContentManager', 6] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['ns', 'nn::aocsrv::detail::IAddOnContentManager', 100] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::ec::IPurchaseEventManager']} | |
+ ['ns', 'nn::ec::IPurchaseEventManager'] = {0: {'inbytes': 8, 'outbytes': 0, 'buffers': [5], 'pid': 1}, 1: {'inbytes': 8, 'outbytes': 0, 'buffers': [5]}, 2: {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]}, 3: {'inbytes': 0, 'outbytes': 0x80}} | |
- ['ns', 'nn::ns::detail::IApplicationManagerInterface', 39] = {'inbytes': 8, 'outbytes': 0} | |
- ['ns', 'nn::ns::detail::IApplicationManagerInterface', 83] = {'inbytes': 8, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 2155] = {'inbytes': 8, 'outbytes': 0} | |
- ['ns', 'nn::ns::detail::IApplicationManagerInterface', 2250] = {'inbytes': 0, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IApplicationManagerInterface', 2350] = {'inbytes': 8, 'outbytes': 0} | |
+ ['ns', 'nn::ns::detail::IDynamicRightsInterface', 9] = {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::ns::detail::IAsyncValue'], 'outhandles': [1]} | |
+ ['ns', 'nn::ns::detail::IDynamicRightsInterface', 10] = {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::ns::detail::IAsyncResult'], 'outhandles': [1]} | |
+ ['ns', 'nn::ns::detail::IDynamicRightsInterface', 11] = {'inbytes': 8, 'outbytes': 8, 'buffers': [6]} | |
+ ['olsc', 'nn::olsc::srv::IOlscServiceForSystemService', 104] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::olsc::srv::INativeHandleHolder']} | |
+ ['olsc', 'nn::olsc::srv::IOlscServiceForSystemService', 203] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::olsc::srv::IAsyncResult'], 'buffers': [5]} | |
+ ['olsc', 'nn::olsc::srv::IOlscServiceForSystemService', 204] = {'inbytes': 0, 'outbytes': 0} | |
+ ['olsc', 'nn::olsc::srv::IOlscServiceForSystemService', 1000] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::olsc::srv::IAsyncResult']} | |
+ ['olsc', 'nn::olsc::srv::IOlscServiceForSystemService', 1010] = {'inbytes': 8, 'outbytes': 0x20} | |
+ ['olsc', 'nn::olsc::srv::IOlscServiceForSystemService', 1011] = {'inbytes': 4, 'outbytes': 4, 'buffers': [6]} | |
+ ['olsc', 'nn::olsc::srv::IOlscServiceForSystemService', 1012] = {'inbytes': 8, 'outbytes': 4, 'buffers': [6]} | |
+ ['olsc', 'nn::olsc::srv::IOlscServiceForSystemService', 1013] = {'inbytes': 8, 'outbytes': 4, 'buffers': [6]} | |
+ ['olsc', 'nn::olsc::srv::IOlscServiceForSystemService', 1014] = {'inbytes': 8, 'outbytes': 4, 'buffers': [6]} | |
+ ['olsc', 'nn::olsc::srv::IOlscServiceForSystemService', 1020] = {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::olsc::srv::IAsyncResult']} | |
+ ['olsc', 'nn::olsc::srv::IOlscServiceForSystemService', 1021] = {'inbytes': 0x18, 'outbytes': 0, 'outinterfaces': ['nn::olsc::srv::IAsyncResult']} | |
+ ['olsc', 'nn::olsc::srv::IOlscServiceForSystemService', 1022] = {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::olsc::srv::IAsyncResult']} | |
+ ['olsc', 'nn::olsc::srv::IOlscServiceForSystemService', 1023] = {'inbytes': 8, 'outbytes': 0, 'outinterfaces': ['nn::olsc::srv::IAsyncResult']} | |
+ ['olsc', 'nn::olsc::srv::IOlscServiceForSystemService', 1024] = {'inbytes': 0, 'outbytes': 0x18} | |
+ ['olsc', 'nn::olsc::srv::IRemoteStorageController', 17] = {'inbytes': 8, 'outbytes': 4, 'buffers': [6]} | |
+ ['olsc', 'nn::olsc::srv::IRemoteStorageController', 18] = {'inbytes': 8, 'outbytes': 0x30} | |
+ ['olsc', 'nn::olsc::srv::IRemoteStorageController', 19] = {'inbytes': 0, 'outbytes': 0, 'outinterfaces': ['nn::olsc::srv::INativeHandleHolder']} | |
- ['pcie.withoutHb', 'nn::pcie::detail::ISession', 17] = {'inbytes': 8, 'outbytes': 0, 'outhandles': [1]} | |
+ ['pcie.withoutHb', 'nn::pcie::detail::ISession', 17] = {'inbytes': 0xC, 'outbytes': 0} | |
- ['pcie.withoutHb', 'nn::pcie::detail::ISession', 20] = {'inbytes': 8, 'outbytes': 0} | |
+ ['pcie.withoutHb', 'nn::pcie::detail::ISession', 20] = {'inbytes': 8, 'outbytes': 0, 'outhandles': [1]} | |
+ ['pcie.withoutHb', 'nn::pcie::detail::ISession', 23] = {'inbytes': 8, 'outbytes': 0} | |
- ['pcv', 'nn::pcv::detail::IPcvService', 23] = {'inbytes': 8, 'outbytes': 4, 'buffers': [0xA, 0xA]} | |
+ ['pcv', 'nn::pcv::detail::IPcvService', 23] = {'inbytes': 8, 'outbytes': 4, 'buffers': [0x22, 0x22]} | |
- ['pcv', 'nn::pcv::detail::IPcvService', 24] = {'inbytes': 4, 'outbytes': 4, 'buffers': [0xA]} | |
+ ['pcv', 'nn::pcv::detail::IPcvService', 24] = {'inbytes': 4, 'outbytes': 4, 'buffers': [0x22]} | |
- ['pcv', 'nn::pcv::detail::IPcvService', 25] = {'inbytes': 4, 'outbytes': 4, 'buffers': [0xA]} | |
+ ['pcv', 'nn::pcv::detail::IPcvService', 25] = {'inbytes': 4, 'outbytes': 4, 'buffers': [0x22]} | |
+ ['pm', 'nn::pm::detail::IShellInterface', 8] = {'inbytes': 0, 'outbytes': 0} | |
+ ['ppc', 'nn::apm::IManager', 6] = {'inbytes': 0, 'outbytes': 1} | |
+ ['ppc', 'nn::apm::ISystemManager', 6] = {'inbytes': 4, 'outbytes': 0} | |
+ ['ppc', 'nn::apm::ISystemManager', 7] = {'inbytes': 0, 'outbytes': 4} | |
- ['psc', 'nn::psc::sf::IPmControl', 5] = {'inbytes': 0, 'outbytes': 0} | |
+ ['psc', 'nn::srepo::detail::ipc::ISrepoService', 20402] = {'inbytes': 0x10, 'outbytes': 0} | |
- ['ptm', 'nn::fan::detail::IController', 1] = {'inbytes': 4, 'outbytes': 4} | |
+ ['ptm', 'nn::fan::detail::IController', 1] = {'inbytes': 0, 'outbytes': 4} | |
- ['ptm', 'nn::fan::detail::IController', 3] = {'inbytes': 4, 'outbytes': 0} | |
+ ['ptm', 'nn::fan::detail::IController', 3] = {'inbytes': 0, 'outbytes': 0} | |
- ['ptm', 'nn::fan::detail::IController', 4] = {'inbytes': 0, 'outbytes': 4} | |
+ ['ptm', 'nn::fan::detail::IController', 4] = {'inbytes': 0, 'outbytes': 0} | |
- ['ptm', 'nn::fan::detail::IController', 5] = {'inbytes': 0, 'outbytes': 0} | |
- ['ptm', 'nn::fan::detail::IController', 6] = {'inbytes': 0, 'outbytes': 0} | |
- ['ptm', 'nn::fan::detail::IController', 7] = {'inbytes': 0, 'outbytes': 4} | |
+ ['ro', 'nn::ro::detail::IRoInterface', 10] = {'inbytes': 0x18, 'outbytes': 0, 'inhandles': [1], 'pid': 1} | |
+ ['sdb', 'nn::mii::detail::IDatabaseService', 24] = {'inbytes': 0x30, 'outbytes': 0x58} | |
+ ['sdb', 'nn::mii::detail::IDatabaseService', 25] = {'inbytes': 0x58, 'outbytes': 0x30} | |
- ['sdb', 'nn::pdm::detail::IQueryService', 1] = {'inbytes': 0, 'outbytes': 4, 'buffers': [6]} | |
- ['sdb', 'nn::pdm::detail::IQueryService', 2] = {'inbytes': 0x10, 'outbytes': 4, 'buffers': [6]} | |
- ['sdb', 'nn::pdm::detail::IQueryService', 3] = {'inbytes': 8, 'outbytes': 4, 'buffers': [6]} | |
- ['sdb', 'nn::pdm::detail::IQueryService', 6] = {'inbytes': 0x10, 'outbytes': 0x28} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 168] = {'inbytes': 4, 'outbytes': 0x80} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 169] = {'inbytes': 0x88, 'outbytes': 0} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 170] = {'inbytes': 0, 'outbytes': 4} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 171] = {'inbytes': 4, 'outbytes': 0} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 172] = {'inbytes': 0, 'outbytes': 4} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 173] = {'inbytes': 4, 'outbytes': 0} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 175] = {'inbytes': 0, 'outbytes': 8} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 176] = {'inbytes': 8, 'outbytes': 0} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 177] = {'inbytes': 0, 'outbytes': 0x10} | |
+ ['settings', 'nn::settings::ISystemSettingsServer', 178] = {'inbytes': 0x10, 'outbytes': 0} | |
+ ['usb', 'UsbQdbService'] = {0: {'inbytes': 0, 'outbytes': 0, 'buffers': [5]}, 1: {'inbytes': 6, 'outbytes': 1, 'buffers': [5]}} | |
+ ['usb', 'nn::usb::ds::IDsEndpoint', 6] = {'inbytes': 0, 'outbytes': 1} | |
+ ['usb', 'nn::usb::ds::IDsEndpoint', 7] = {'inbytes': 0, 'outbytes': 0, 'outhandles': [1]} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 2012] = {'inbytes': 0x10, 'outbytes': 0x10, 'buffers': [6]} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 6011] = {'inbytes': 0x30, 'outbytes': 0} | |
+ ['vi', 'nn::visrv::sf::IManagerDisplayService', 6012] = {'inbytes': 8, 'outbytes': 0} | |
- ['vi', 'nn::visrv::sf::ISystemDisplayService', 2312] = {'inbytes': 0x10, 'outbytes': 0x10, 'buffers': [6]} | |
- ['wlan', 'WlanDtcService', 14] = {'inbytes': 0, 'outbytes': 0} | |
+ ['wlan', 'WlanDtcService', 14] = {'inbytes': 1, 'outbytes': 0} | |
- ['wlan', 'nn::wlan::detail::IInfraManager', 27] = {'inbytes': 0, 'outbytes': 0} | |
+ ['wlan', 'nn::wlan::detail::IInfraManager', 27] = {'inbytes': 0, 'outbytes': 4, 'buffers': [0xA]} | |
- ['wlan', 'nn::wlan::detail::IInfraManager', 28] = {'inbytes': 0, 'outbytes': 4, 'buffers': [0xA]} | |
+ ['wlan', 'nn::wlan::detail::IInfraManager', 28] = {'inbytes': 0, 'outbytes': 0} | |
+ ['wlan', 'nn::wlan::detail::IInfraManager', 29] = {'inbytes': 0, 'outbytes': 0} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# from 1.0.0 | |
data1 = { | |
'fs': { | |
'nn::fssrv::sf::IFileSystemProxyForLoader': { | |
0: {"inbytes": 0, "outbytes": 0, "buffers": [25], "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
1: {"inbytes": 8, "outbytes": 1}, | |
}, | |
'nn::fssrv::sf::IEventNotifier': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
}, | |
'nn::fssrv::sf::IFileSystemProxy': { | |
0: {"inbytes": 4, "outbytes": 0, "buffers": [25], "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
1: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
2: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
11: {"inbytes": 4, "outbytes": 0, "buffers": [25], "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
12: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IStorage']}, | |
13: {"inbytes": 0, "outbytes": 0}, | |
17: {"inbytes": 0, "outbytes": 0, "buffers": [25], "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
18: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
21: {"inbytes": 8, "outbytes": 0}, | |
22: {"inbytes": 0x90, "outbytes": 0}, | |
23: {"inbytes": 0x80, "outbytes": 0}, | |
24: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
30: {"inbytes": 8, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IStorage']}, | |
31: {"inbytes": 8, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
51: {"inbytes": 0x48, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
52: {"inbytes": 0x48, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
58: {"inbytes": 8, "outbytes": 0, "buffers": [6]}, | |
60: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::ISaveDataInfoReader']}, | |
61: {"inbytes": 1, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::ISaveDataInfoReader']}, | |
80: {"inbytes": 0x48, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IFile']}, | |
100: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
110: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
200: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IStorage']}, | |
202: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IStorage']}, | |
203: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IStorage']}, | |
400: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IDeviceOperator']}, | |
500: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IEventNotifier']}, | |
501: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IEventNotifier']}, | |
600: {"inbytes": 8, "outbytes": 0}, | |
601: {"inbytes": 0x10, "outbytes": 8}, | |
602: {"inbytes": 8, "outbytes": 0, "buffers": [6]}, | |
603: {"inbytes": 8, "outbytes": 0}, | |
604: {"inbytes": 8, "outbytes": 0}, | |
605: {"inbytes": 0, "outbytes": 0}, | |
1000: {"inbytes": 4, "outbytes": 0, "buffers": [25]}, | |
1001: {"inbytes": 0x10, "outbytes": 0}, | |
1002: {"inbytes": 0, "outbytes": 0, "buffers": [25]}, | |
1003: {"inbytes": 0, "outbytes": 0}, | |
1004: {"inbytes": 4, "outbytes": 0}, | |
1005: {"inbytes": 0, "outbytes": 4}, | |
1006: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
}, | |
'nn::fssrv::sf::ISaveDataInfoReader': { | |
0: {"inbytes": 0, "outbytes": 8, "buffers": [6]}, | |
}, | |
'nn::fssrv::sf::IFile': { | |
0: {"inbytes": 0x18, "outbytes": 8, "buffers": [70]}, | |
1: {"inbytes": 0x18, "outbytes": 0, "buffers": [69]}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 8, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 8}, | |
}, | |
'nn::fssrv::sf::IFileSystem': { | |
0: {"inbytes": 0x10, "outbytes": 0, "buffers": [25]}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [25]}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [25]}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [25]}, | |
4: {"inbytes": 0, "outbytes": 0, "buffers": [25]}, | |
5: {"inbytes": 0, "outbytes": 0, "buffers": [25, 25]}, | |
6: {"inbytes": 0, "outbytes": 0, "buffers": [25, 25]}, | |
7: {"inbytes": 0, "outbytes": 4, "buffers": [25]}, | |
8: {"inbytes": 4, "outbytes": 0, "buffers": [25], "outinterfaces": ['nn::fssrv::sf::IFile']}, | |
9: {"inbytes": 4, "outbytes": 0, "buffers": [25], "outinterfaces": ['nn::fssrv::sf::IDirectory']}, | |
10: {"inbytes": 0, "outbytes": 0}, | |
11: {"inbytes": 0, "outbytes": 8, "buffers": [25]}, | |
12: {"inbytes": 0, "outbytes": 8, "buffers": [25]}, | |
}, | |
'nn::fssrv::sf::IStorage': { | |
0: {"inbytes": 0x10, "outbytes": 0, "buffers": [70]}, | |
1: {"inbytes": 0x10, "outbytes": 0, "buffers": [69]}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 8, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 8}, | |
}, | |
'nn::fssrv::sf::IDeviceOperator': { | |
0: {"inbytes": 0, "outbytes": 1}, | |
1: {"inbytes": 0, "outbytes": 8}, | |
100: {"inbytes": 8, "outbytes": 0, "buffers": [6]}, | |
101: {"inbytes": 0, "outbytes": 8}, | |
110: {"inbytes": 4, "outbytes": 0}, | |
111: {"inbytes": 4, "outbytes": 8}, | |
200: {"inbytes": 0, "outbytes": 1}, | |
201: {"inbytes": 0x10, "outbytes": 0}, | |
202: {"inbytes": 0, "outbytes": 4}, | |
203: {"inbytes": 4, "outbytes": 0x10}, | |
204: {"inbytes": 0, "outbytes": 0}, | |
205: {"inbytes": 4, "outbytes": 1}, | |
206: {"inbytes": 0x10, "outbytes": 0, "buffers": [6]}, | |
207: {"inbytes": 0x10, "outbytes": 0, "buffers": [6, 5]}, | |
208: {"inbytes": 8, "outbytes": 0, "buffers": [6]}, | |
209: {"inbytes": 0x10, "outbytes": 0, "buffers": [6]}, | |
210: {"inbytes": 1, "outbytes": 0}, | |
211: {"inbytes": 0x10, "outbytes": 0, "buffers": [6]}, | |
300: {"inbytes": 4, "outbytes": 0}, | |
301: {"inbytes": 0, "outbytes": 4}, | |
}, | |
'nn::fssrv::sf::IProgramRegistry': { | |
0: {"inbytes": 0x28, "outbytes": 0, "buffers": [5, 5]}, | |
1: {"inbytes": 8, "outbytes": 0}, | |
256: {"inbytes": 1, "outbytes": 0}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::fssrv::sf::IDirectory': { | |
0: {"inbytes": 0, "outbytes": 8, "buffers": [6]}, | |
1: {"inbytes": 0, "outbytes": 8}, | |
}, | |
}, | |
'loader': { | |
'nn::ldr::detail::IRoInterface': { | |
0: {"inbytes": 0x28, "outbytes": 8, "pid": True}, | |
1: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
2: {"inbytes": 0x18, "outbytes": 0, "pid": True}, | |
3: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
4: {"inbytes": 8, "outbytes": 0, "inhandles": [1], "pid": True}, | |
}, | |
'nn::ldr::detail::IProcessManagerInterface': { | |
0: {"inbytes": 0x10, "outbytes": 0, "inhandles": [1], "outhandles": [2]}, | |
1: {"inbytes": 0x10, "outbytes": 0, "buffers": [26]}, | |
2: {"inbytes": 0x10, "outbytes": 8}, | |
3: {"inbytes": 8, "outbytes": 0}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::ldr::detail::IShellInterface': { | |
0: {"inbytes": 0x10, "outbytes": 0, "buffers": [9]}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::ldr::detail::IDebugMonitorInterface': { | |
0: {"inbytes": 0x10, "outbytes": 0, "buffers": [9]}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 8, "outbytes": 4, "buffers": [10]}, | |
}, | |
}, | |
'ncm': { | |
'nn::ncm::IContentStorage': { | |
0: {"inbytes": 0, "outbytes": 0x10}, | |
1: {"inbytes": 0x28, "outbytes": 0}, | |
2: {"inbytes": 0x10, "outbytes": 0}, | |
3: {"inbytes": 0x10, "outbytes": 1}, | |
4: {"inbytes": 0x18, "outbytes": 0, "buffers": [5]}, | |
5: {"inbytes": 0x20, "outbytes": 0}, | |
6: {"inbytes": 0x10, "outbytes": 0}, | |
7: {"inbytes": 0x10, "outbytes": 1}, | |
8: {"inbytes": 0x10, "outbytes": 0, "buffers": [26]}, | |
9: {"inbytes": 0x10, "outbytes": 0, "buffers": [26]}, | |
10: {"inbytes": 0, "outbytes": 0}, | |
11: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
12: {"inbytes": 0, "outbytes": 4}, | |
13: {"inbytes": 4, "outbytes": 4, "buffers": [6]}, | |
14: {"inbytes": 0x10, "outbytes": 8}, | |
15: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::ncm::IContentMetaDatabase': { | |
0: {"inbytes": 0x10, "outbytes": 0, "buffers": [5]}, | |
1: {"inbytes": 0x10, "outbytes": 8, "buffers": [6]}, | |
2: {"inbytes": 0x10, "outbytes": 0}, | |
3: {"inbytes": 0x18, "outbytes": 0x10}, | |
4: {"inbytes": 0x18, "outbytes": 4, "buffers": [6]}, | |
5: {"inbytes": 0x20, "outbytes": 8, "buffers": [6]}, | |
6: {"inbytes": 8, "outbytes": 0x10}, | |
7: {"inbytes": 1, "outbytes": 8, "buffers": [6]}, | |
8: {"inbytes": 0x10, "outbytes": 1}, | |
9: {"inbytes": 0, "outbytes": 1, "buffers": [5]}, | |
10: {"inbytes": 0x10, "outbytes": 8}, | |
11: {"inbytes": 0x10, "outbytes": 4}, | |
12: {"inbytes": 0x10, "outbytes": 8}, | |
13: {"inbytes": 0, "outbytes": 0}, | |
14: {"inbytes": 0, "outbytes": 0, "buffers": [6, 5]}, | |
15: {"inbytes": 0, "outbytes": 0}, | |
16: {"inbytes": 0x20, "outbytes": 1}, | |
17: {"inbytes": 0x18, "outbytes": 4, "buffers": [6]}, | |
18: {"inbytes": 0x10, "outbytes": 1}, | |
}, | |
'nn::lr::ILocationResolverManager': { | |
0: {"inbytes": 1, "outbytes": 0, "outinterfaces": ['nn::lr::ILocationResolver']}, | |
1: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::lr::IRegisteredLocationResolver']}, | |
2: {"inbytes": 1, "outbytes": 0}, | |
}, | |
'nn::lr::IRegisteredLocationResolver': { | |
0: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
1: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
2: {"inbytes": 8, "outbytes": 0}, | |
3: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::ncm::IContentManager': { | |
0: {"inbytes": 1, "outbytes": 0}, | |
1: {"inbytes": 1, "outbytes": 0}, | |
2: {"inbytes": 1, "outbytes": 0}, | |
3: {"inbytes": 1, "outbytes": 0}, | |
4: {"inbytes": 1, "outbytes": 0, "outinterfaces": ['nn::ncm::IContentStorage']}, | |
5: {"inbytes": 1, "outbytes": 0, "outinterfaces": ['nn::ncm::IContentMetaDatabase']}, | |
6: {"inbytes": 1, "outbytes": 0}, | |
7: {"inbytes": 1, "outbytes": 0}, | |
8: {"inbytes": 1, "outbytes": 0}, | |
}, | |
'nn::lr::ILocationResolver': { | |
0: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
1: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
2: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
3: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
4: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
5: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
6: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
7: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
8: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
9: {"inbytes": 0, "outbytes": 0}, | |
}, | |
}, | |
'pm': { | |
'nn::pm::detail::IInformationInterface': { | |
0: {"inbytes": 8, "outbytes": 8}, | |
}, | |
'nn::pm::detail::IShellInterface': { | |
0: {"inbytes": 0x18, "outbytes": 8}, | |
1: {"inbytes": 8, "outbytes": 0}, | |
2: {"inbytes": 8, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
4: {"inbytes": 0, "outbytes": 0x10}, | |
5: {"inbytes": 8, "outbytes": 0}, | |
6: {"inbytes": 8, "outbytes": 0}, | |
7: {"inbytes": 0, "outbytes": 0}, | |
8: {"inbytes": 0, "outbytes": 8}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::pm::detail::IBootModeInterface': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::pm::detail::IDebugMonitorInterface': { | |
0: {"inbytes": 8, "outbytes": 4, "buffers": [6]}, | |
1: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
2: {"inbytes": 8, "outbytes": 0}, | |
3: {"inbytes": 8, "outbytes": 8}, | |
4: {"inbytes": 8, "outbytes": 0, "outhandles": [1]}, | |
5: {"inbytes": 0, "outbytes": 8}, | |
6: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
}, | |
}, | |
'sm': { | |
'nn::sm::detail::IManagerInterface': { | |
0: {"inbytes": 8, "outbytes": 0, "buffers": [5, 5]}, | |
1: {"inbytes": 8, "outbytes": 0}, | |
}, | |
'nn::sm::detail::IUserInterface': { | |
0: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
1: {"inbytes": 8, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0x10, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 8, "outbytes": 0}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
}, | |
'spl': { | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::spl::detail::IGeneralInterface': { | |
0: {"inbytes": 4, "outbytes": 8}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [10, 9, 9, 9]}, | |
2: {"inbytes": 0x18, "outbytes": 0x10}, | |
3: {"inbytes": 0x24, "outbytes": 0}, | |
4: {"inbytes": 0x20, "outbytes": 0x10}, | |
5: {"inbytes": 0x10, "outbytes": 0}, | |
7: {"inbytes": 0, "outbytes": 0, "buffers": [10]}, | |
9: {"inbytes": 0x24, "outbytes": 0, "buffers": [9]}, | |
10: {"inbytes": 0, "outbytes": 4, "buffers": [10, 9, 9, 9]}, | |
11: {"inbytes": 0, "outbytes": 1}, | |
12: {"inbytes": 0x18, "outbytes": 0x10}, | |
13: {"inbytes": 0x24, "outbytes": 0, "buffers": [10, 9]}, | |
14: {"inbytes": 0x18, "outbytes": 0x10}, | |
15: {"inbytes": 0x14, "outbytes": 0, "buffers": [6, 5]}, | |
16: {"inbytes": 4, "outbytes": 0x10, "buffers": [9]}, | |
17: {"inbytes": 0x24, "outbytes": 0, "buffers": [9]}, | |
18: {"inbytes": 0, "outbytes": 0x10, "buffers": [9, 9, 9]}, | |
19: {"inbytes": 0x14, "outbytes": 0}, | |
}, | |
'nn::spl::detail::IRandomInterface': { | |
0: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
}, | |
}, | |
'usb': { | |
'nn::usb::ds::IDsService': { | |
0: {"inbytes": 4, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0, "inhandles": [1]}, | |
2: {"inbytes": 0, "outbytes": 1, "buffers": [5, 5], "outinterfaces": ['nn::usb::ds::IDsInterface']}, | |
3: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
4: {"inbytes": 0, "outbytes": 4}, | |
}, | |
'nn::usb::hs::IClientRootSession': { | |
0: {"inbytes": 0x10, "outbytes": 4, "buffers": [6]}, | |
1: {"inbytes": 0x10, "outbytes": 4, "buffers": [6]}, | |
2: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
3: {"inbytes": 0x12, "outbytes": 0, "outhandles": [1]}, | |
4: {"inbytes": 1, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
6: {"inbytes": 4, "outbytes": 0, "buffers": [6], "outinterfaces": ['nn::usb::hs::IClientIfSession']}, | |
7: {"inbytes": 8, "outbytes": 4, "buffers": [6]}, | |
8: {"inbytes": 4, "outbytes": 0}, | |
}, | |
'nn::usb::ds::IDsInterface': { | |
0: {"inbytes": 0, "outbytes": 1, "buffers": [5], "outinterfaces": ['nn::usb::ds::IDsEndpoint']}, | |
1: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 0x10, "outbytes": 4}, | |
6: {"inbytes": 0x10, "outbytes": 4}, | |
7: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
8: {"inbytes": 0, "outbytes": 0x84}, | |
9: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
10: {"inbytes": 0, "outbytes": 0x84}, | |
11: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::usb::ds::IDsEndpoint': { | |
0: {"inbytes": 0x10, "outbytes": 4}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
3: {"inbytes": 0, "outbytes": 0x84}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 1, "outbytes": 0}, | |
}, | |
'nn::usb::pd::detail::IPdCradleManager': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::usb::pd::detail::IPdCradleSession']}, | |
}, | |
'nn::usb::pd::detail::IPdManufactureManager': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::usb::pd::detail::IPdManufactureSession']}, | |
}, | |
'nn::usb::hs::IClientIfSession': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 1, "outbytes": 0, "buffers": [6]}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
3: {"inbytes": 1, "outbytes": 0, "buffers": [6]}, | |
4: {"inbytes": 0x14, "outbytes": 7, "outinterfaces": ['nn::usb::hs::IClientEpSession']}, | |
5: {"inbytes": 0, "outbytes": 4}, | |
6: {"inbytes": 0xC, "outbytes": 4, "buffers": [6]}, | |
7: {"inbytes": 0xC, "outbytes": 4, "buffers": [5]}, | |
8: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::usb::hs::IClientEpSession': { | |
0: {"inbytes": 8, "outbytes": 4, "buffers": [5]}, | |
1: {"inbytes": 8, "outbytes": 4, "buffers": [6]}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::usb::pm::IPmService': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
3: {"inbytes": 0, "outbytes": 4}, | |
4: {"inbytes": 8, "outbytes": 0}, | |
5: {"inbytes": 4, "outbytes": 4}, | |
}, | |
'nn::usb::pd::detail::IPdCradleSession': { | |
0: {"inbytes": 8, "outbytes": 0}, | |
1: {"inbytes": 4, "outbytes": 4}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::usb::pd::detail::IPdManager': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::usb::pd::detail::IPdSession']}, | |
}, | |
'nn::usb::pd::detail::IPdManufactureSession': { | |
0: {"inbytes": 0, "outbytes": 2}, | |
1: {"inbytes": 0, "outbytes": 2}, | |
2: {"inbytes": 0, "outbytes": 2}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::usb::pd::detail::IPdSession': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0x14}, | |
3: {"inbytes": 0, "outbytes": 4}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 0}, | |
6: {"inbytes": 1, "outbytes": 0}, | |
}, | |
}, | |
'settings': { | |
'nn::settings::IFirmwareDebugSettingsServer': { | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [25, 25, 5]}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [25, 25]}, | |
4: {"inbytes": 0, "outbytes": 0, "buffers": [25], "outinterfaces": ['nn::settings::ISettingsItemKeyIterator']}, | |
}, | |
'nn::settings::ISystemSettingsServer': { | |
0: {"inbytes": 8, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
2: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [26]}, | |
7: {"inbytes": 0, "outbytes": 1}, | |
8: {"inbytes": 1, "outbytes": 0}, | |
9: {"inbytes": 0, "outbytes": 0x28}, | |
10: {"inbytes": 0x28, "outbytes": 0}, | |
11: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
12: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
13: {"inbytes": 0, "outbytes": 0x10}, | |
14: {"inbytes": 0x10, "outbytes": 0}, | |
15: {"inbytes": 0, "outbytes": 0x20}, | |
16: {"inbytes": 0x20, "outbytes": 0}, | |
17: {"inbytes": 0, "outbytes": 4}, | |
18: {"inbytes": 4, "outbytes": 0}, | |
19: {"inbytes": 4, "outbytes": 8}, | |
20: {"inbytes": 0xC, "outbytes": 0}, | |
21: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
22: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
23: {"inbytes": 0, "outbytes": 4}, | |
24: {"inbytes": 4, "outbytes": 0}, | |
25: {"inbytes": 0, "outbytes": 1}, | |
26: {"inbytes": 1, "outbytes": 0}, | |
27: {"inbytes": 0, "outbytes": 1}, | |
28: {"inbytes": 1, "outbytes": 0}, | |
29: {"inbytes": 0, "outbytes": 0x18}, | |
30: {"inbytes": 0x18, "outbytes": 0}, | |
31: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
32: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
35: {"inbytes": 0, "outbytes": 4}, | |
36: {"inbytes": 4, "outbytes": 0}, | |
37: {"inbytes": 0, "outbytes": 8, "buffers": [25, 25]}, | |
38: {"inbytes": 0, "outbytes": 8, "buffers": [25, 25, 6]}, | |
39: {"inbytes": 0, "outbytes": 0x20}, | |
40: {"inbytes": 0x20, "outbytes": 0}, | |
41: {"inbytes": 0, "outbytes": 0, "buffers": [26]}, | |
42: {"inbytes": 0, "outbytes": 0, "buffers": [25]}, | |
43: {"inbytes": 4, "outbytes": 4}, | |
44: {"inbytes": 8, "outbytes": 0}, | |
45: {"inbytes": 0, "outbytes": 1}, | |
46: {"inbytes": 1, "outbytes": 0}, | |
47: {"inbytes": 0, "outbytes": 1}, | |
48: {"inbytes": 1, "outbytes": 0}, | |
49: {"inbytes": 0, "outbytes": 8}, | |
50: {"inbytes": 8, "outbytes": 0}, | |
51: {"inbytes": 0, "outbytes": 8}, | |
52: {"inbytes": 0, "outbytes": 8}, | |
53: {"inbytes": 0, "outbytes": 0x24}, | |
54: {"inbytes": 0x24, "outbytes": 0}, | |
55: {"inbytes": 0, "outbytes": 8}, | |
56: {"inbytes": 0, "outbytes": 8, "buffers": [6]}, | |
57: {"inbytes": 4, "outbytes": 0}, | |
58: {"inbytes": 0, "outbytes": 0x20}, | |
59: {"inbytes": 0x20, "outbytes": 0}, | |
60: {"inbytes": 0, "outbytes": 1}, | |
61: {"inbytes": 1, "outbytes": 0}, | |
62: {"inbytes": 0, "outbytes": 1}, | |
63: {"inbytes": 0, "outbytes": 4}, | |
64: {"inbytes": 4, "outbytes": 0}, | |
65: {"inbytes": 0, "outbytes": 1}, | |
66: {"inbytes": 1, "outbytes": 0}, | |
67: {"inbytes": 0, "outbytes": 0x18}, | |
68: {"inbytes": 0, "outbytes": 0x18}, | |
69: {"inbytes": 0, "outbytes": 1}, | |
70: {"inbytes": 1, "outbytes": 0}, | |
71: {"inbytes": 0, "outbytes": 0xC}, | |
72: {"inbytes": 0xC, "outbytes": 0}, | |
73: {"inbytes": 0, "outbytes": 1}, | |
74: {"inbytes": 1, "outbytes": 0}, | |
75: {"inbytes": 0, "outbytes": 0x20}, | |
76: {"inbytes": 0x20, "outbytes": 0}, | |
77: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
78: {"inbytes": 0, "outbytes": 0, "buffers": [21]}, | |
79: {"inbytes": 0, "outbytes": 4}, | |
80: {"inbytes": 0, "outbytes": 4}, | |
81: {"inbytes": 4, "outbytes": 0}, | |
82: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
83: {"inbytes": 0, "outbytes": 0x10}, | |
84: {"inbytes": 0, "outbytes": 0x18}, | |
85: {"inbytes": 0x18, "outbytes": 0}, | |
86: {"inbytes": 0, "outbytes": 0x18}, | |
87: {"inbytes": 0x18, "outbytes": 0}, | |
88: {"inbytes": 0, "outbytes": 1}, | |
89: {"inbytes": 1, "outbytes": 0}, | |
90: {"inbytes": 0, "outbytes": 0x10}, | |
91: {"inbytes": 8, "outbytes": 0}, | |
92: {"inbytes": 0, "outbytes": 8}, | |
93: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
94: {"inbytes": 0, "outbytes": 0x10}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::settings::IFactorySettingsServer': { | |
0: {"inbytes": 0, "outbytes": 6}, | |
1: {"inbytes": 0, "outbytes": 0x1E}, | |
2: {"inbytes": 0, "outbytes": 6}, | |
3: {"inbytes": 0, "outbytes": 6}, | |
4: {"inbytes": 0, "outbytes": 6}, | |
5: {"inbytes": 0, "outbytes": 6}, | |
6: {"inbytes": 0, "outbytes": 6}, | |
7: {"inbytes": 0, "outbytes": 4}, | |
8: {"inbytes": 0, "outbytes": 4, "buffers": [10]}, | |
9: {"inbytes": 0, "outbytes": 0x18}, | |
10: {"inbytes": 8, "outbytes": 0}, | |
11: {"inbytes": 8, "outbytes": 0}, | |
12: {"inbytes": 0, "outbytes": 0x18}, | |
14: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
15: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
16: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
17: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
18: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
19: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
20: {"inbytes": 0, "outbytes": 0x54}, | |
21: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
22: {"inbytes": 0, "outbytes": 0x5A}, | |
}, | |
'nn::settings::ISettingsServer': { | |
0: {"inbytes": 0, "outbytes": 8}, | |
1: {"inbytes": 0, "outbytes": 4, "buffers": [10]}, | |
3: {"inbytes": 0, "outbytes": 4}, | |
4: {"inbytes": 0, "outbytes": 4}, | |
}, | |
'nn::settings::ISettingsItemKeyIterator': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 8}, | |
2: {"inbytes": 0, "outbytes": 8, "buffers": [6]}, | |
}, | |
}, | |
'Bus': { | |
'nn::i2c::IManager': { | |
0: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::i2c::ISession']}, | |
1: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::i2c::ISession']}, | |
2: {"inbytes": 4, "outbytes": 1}, | |
3: {"inbytes": 0x10, "outbytes": 1}, | |
}, | |
'nn::pwm::IChannelSession': { | |
0: {"inbytes": 8, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 8}, | |
2: {"inbytes": 4, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 4}, | |
4: {"inbytes": 1, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 1}, | |
}, | |
'nn::pwm::IManager': { | |
0: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::pwm::IChannelSession']}, | |
1: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::pwm::IChannelSession']}, | |
}, | |
'nn::gpio::IManager': { | |
0: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::gpio::IPadSession']}, | |
1: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::gpio::IPadSession']}, | |
2: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::gpio::IPadSession']}, | |
3: {"inbytes": 4, "outbytes": 1}, | |
4: {"inbytes": 0, "outbytes": 0x10}, | |
5: {"inbytes": 8, "outbytes": 0}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::i2c::ISession': { | |
0: {"inbytes": 4, "outbytes": 0, "buffers": [5]}, | |
1: {"inbytes": 4, "outbytes": 0, "buffers": [6]}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [6, 9]}, | |
10: {"inbytes": 4, "outbytes": 0, "buffers": [33]}, | |
11: {"inbytes": 4, "outbytes": 0, "buffers": [34]}, | |
12: {"inbytes": 0, "outbytes": 0, "buffers": [34, 9]}, | |
}, | |
'nn::uart::IManager': { | |
0: {"inbytes": 4, "outbytes": 1}, | |
1: {"inbytes": 4, "outbytes": 1}, | |
2: {"inbytes": 8, "outbytes": 1}, | |
3: {"inbytes": 8, "outbytes": 1}, | |
4: {"inbytes": 8, "outbytes": 1}, | |
5: {"inbytes": 8, "outbytes": 1}, | |
6: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::uart::IPortSession']}, | |
7: {"inbytes": 8, "outbytes": 1}, | |
8: {"inbytes": 8, "outbytes": 1}, | |
}, | |
'nn::pinmux::IManager': { | |
0: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::pinmux::ISession']}, | |
}, | |
'nn::uart::IPortSession': { | |
0: {"inbytes": 0x20, "outbytes": 1, "inhandles": [1, 1]}, | |
1: {"inbytes": 0x20, "outbytes": 1, "inhandles": [1, 1]}, | |
2: {"inbytes": 0, "outbytes": 8}, | |
3: {"inbytes": 0, "outbytes": 8, "buffers": [33]}, | |
4: {"inbytes": 0, "outbytes": 8}, | |
5: {"inbytes": 0, "outbytes": 8, "buffers": [34]}, | |
6: {"inbytes": 0x10, "outbytes": 1, "outhandles": [1]}, | |
7: {"inbytes": 4, "outbytes": 1}, | |
}, | |
'nn::pinmux::ISession': { | |
0: {"inbytes": 4, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 4}, | |
2: {"inbytes": 4, "outbytes": 0}, | |
}, | |
'nn::gpio::IPadSession': { | |
0: {"inbytes": 4, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 4}, | |
2: {"inbytes": 4, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 4}, | |
4: {"inbytes": 1, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 1}, | |
6: {"inbytes": 0, "outbytes": 4}, | |
7: {"inbytes": 0, "outbytes": 0}, | |
8: {"inbytes": 4, "outbytes": 0}, | |
9: {"inbytes": 0, "outbytes": 4}, | |
10: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
11: {"inbytes": 0, "outbytes": 0}, | |
12: {"inbytes": 1, "outbytes": 0}, | |
13: {"inbytes": 0, "outbytes": 1}, | |
14: {"inbytes": 4, "outbytes": 0}, | |
15: {"inbytes": 0, "outbytes": 4}, | |
}, | |
}, | |
'bluetooth': { | |
'nn::bluetooth::IBluetoothDriver': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 0, "buffers": [26]}, | |
6: {"inbytes": 4, "outbytes": 0, "buffers": [10]}, | |
7: {"inbytes": 4, "outbytes": 0, "buffers": [9]}, | |
8: {"inbytes": 0, "outbytes": 0}, | |
9: {"inbytes": 0, "outbytes": 0}, | |
10: {"inbytes": 6, "outbytes": 0, "buffers": [25]}, | |
11: {"inbytes": 6, "outbytes": 0}, | |
12: {"inbytes": 6, "outbytes": 0}, | |
13: {"inbytes": 0x18, "outbytes": 0}, | |
14: {"inbytes": 0xC, "outbytes": 0}, | |
15: {"inbytes": 0, "outbytes": 4, "buffers": [10]}, | |
16: {"inbytes": 2, "outbytes": 0, "outhandles": [1]}, | |
17: {"inbytes": 6, "outbytes": 0}, | |
18: {"inbytes": 6, "outbytes": 0}, | |
19: {"inbytes": 6, "outbytes": 0, "buffers": [25]}, | |
20: {"inbytes": 6, "outbytes": 0, "buffers": [9]}, | |
21: {"inbytes": 0xC, "outbytes": 0, "buffers": [25]}, | |
22: {"inbytes": 0xC, "outbytes": 0}, | |
23: {"inbytes": 6, "outbytes": 0}, | |
24: {"inbytes": 0, "outbytes": 0, "buffers": [25]}, | |
25: {"inbytes": 6, "outbytes": 0, "buffers": [26]}, | |
26: {"inbytes": 0, "outbytes": 0}, | |
27: {"inbytes": 0, "outbytes": 4, "buffers": [10]}, | |
28: {"inbytes": 7, "outbytes": 0}, | |
29: {"inbytes": 7, "outbytes": 0}, | |
30: {"inbytes": 6, "outbytes": 0, "buffers": [9]}, | |
31: {"inbytes": 1, "outbytes": 0}, | |
32: {"inbytes": 0, "outbytes": 0}, | |
33: {"inbytes": 0, "outbytes": 0}, | |
34: {"inbytes": 1, "outbytes": 0}, | |
35: {"inbytes": 2, "outbytes": 0}, | |
36: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
37: {"inbytes": 0, "outbytes": 4, "buffers": [10]}, | |
38: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
39: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
}, | |
'bcat': { | |
'nn::prepo::detail::ipc::IPrepoService': { | |
30100: {"inbytes": 0, "outbytes": 0}, | |
20100: {"inbytes": 8, "outbytes": 0, "buffers": [9, 5]}, | |
20101: {"inbytes": 0x18, "outbytes": 0, "buffers": [9, 5]}, | |
10200: {"inbytes": 0, "outbytes": 0}, | |
10100: {"inbytes": 8, "outbytes": 0, "buffers": [9, 5], "pid": True}, | |
10101: {"inbytes": 0x18, "outbytes": 0, "buffers": [9, 5], "pid": True}, | |
10300: {"inbytes": 0, "outbytes": 4}, | |
90100: {"inbytes": 4, "outbytes": 0}, | |
90101: {"inbytes": 0, "outbytes": 4}, | |
90102: {"inbytes": 0, "outbytes": 0x10}, | |
}, | |
'nn::news::detail::ipc::INewsService': { | |
30900: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::news::detail::ipc::INewlyArrivedEventHolder']}, | |
30901: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::news::detail::ipc::INewsDataService']}, | |
30902: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::news::detail::ipc::INewsDatabaseService']}, | |
40100: {"inbytes": 4, "outbytes": 0, "buffers": [9]}, | |
40200: {"inbytes": 0, "outbytes": 0}, | |
40201: {"inbytes": 0, "outbytes": 0}, | |
30100: {"inbytes": 0, "outbytes": 4, "buffers": [9]}, | |
30200: {"inbytes": 0, "outbytes": 1}, | |
30300: {"inbytes": 0, "outbytes": 0, "buffers": [9]}, | |
20100: {"inbytes": 8, "outbytes": 0, "buffers": [9]}, | |
10100: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
90100: {"inbytes": 0, "outbytes": 8, "buffers": [6]}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::news::detail::ipc::INewlyArrivedEventHolder': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
}, | |
'nn::news::detail::ipc::INewsDatabaseService': { | |
0: {"inbytes": 4, "outbytes": 4, "buffers": [6, 9, 9]}, | |
1: {"inbytes": 0, "outbytes": 4, "buffers": [9]}, | |
2: {"inbytes": 1, "outbytes": 4, "buffers": [9, 9]}, | |
3: {"inbytes": 4, "outbytes": 0, "buffers": [9, 9]}, | |
4: {"inbytes": 4, "outbytes": 0, "buffers": [9, 9]}, | |
5: {"inbytes": 0, "outbytes": 0, "buffers": [9, 9, 9]}, | |
}, | |
'nn::news::detail::ipc::INewsDataService': { | |
0: {"inbytes": 0, "outbytes": 0, "buffers": [9]}, | |
1: {"inbytes": 0x48, "outbytes": 0}, | |
2: {"inbytes": 8, "outbytes": 8, "buffers": [6]}, | |
3: {"inbytes": 0, "outbytes": 8}, | |
}, | |
}, | |
'friends': { | |
'nn::friends::detail::ipc::IFriendService': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
20501: {"inbytes": 0x18, "outbytes": 8}, | |
10400: {"inbytes": 0x18, "outbytes": 4, "buffers": [10]}, | |
20701: {"inbytes": 0x10, "outbytes": 0x10}, | |
10500: {"inbytes": 0x10, "outbytes": 0, "buffers": [6, 9]}, | |
20800: {"inbytes": 0x10, "outbytes": 0, "buffers": [26]}, | |
20801: {"inbytes": 0x10, "outbytes": 0}, | |
10600: {"inbytes": 0x10, "outbytes": 0}, | |
10601: {"inbytes": 0x10, "outbytes": 0}, | |
10610: {"inbytes": 0x18, "outbytes": 0, "buffers": [25], "pid": True}, | |
20900: {"inbytes": 0, "outbytes": 0}, | |
10700: {"inbytes": 0x18, "outbytes": 0, "buffers": [26]}, | |
10701: {"inbytes": 0x10, "outbytes": 0, "buffers": [26]}, | |
10702: {"inbytes": 0x18, "outbytes": 0, "buffers": [25, 25, 25], "pid": True}, | |
30810: {"inbytes": 0x18, "outbytes": 0}, | |
30811: {"inbytes": 0x18, "outbytes": 0}, | |
30812: {"inbytes": 0x18, "outbytes": 0}, | |
30830: {"inbytes": 0x10, "outbytes": 0}, | |
20600: {"inbytes": 0x10, "outbytes": 0, "buffers": [26]}, | |
49900: {"inbytes": 0x10, "outbytes": 0}, | |
11000: {"inbytes": 0xA4, "outbytes": 0xA0}, | |
20300: {"inbytes": 0x18, "outbytes": 4, "buffers": [6]}, | |
20500: {"inbytes": 0x10, "outbytes": 0, "buffers": [6, 9]}, | |
20700: {"inbytes": 0x18, "outbytes": 4, "buffers": [6]}, | |
30100: {"inbytes": 0x10, "outbytes": 0}, | |
30101: {"inbytes": 0x18, "outbytes": 0}, | |
30110: {"inbytes": 0x18, "outbytes": 0}, | |
30820: {"inbytes": 0x10, "outbytes": 0}, | |
30120: {"inbytes": 0x20, "outbytes": 0}, | |
30121: {"inbytes": 0x20, "outbytes": 0}, | |
30200: {"inbytes": 0x20, "outbytes": 0}, | |
30201: {"inbytes": 0x30, "outbytes": 0, "buffers": [25, 25]}, | |
30202: {"inbytes": 0x18, "outbytes": 0}, | |
30203: {"inbytes": 0x18, "outbytes": 0}, | |
30204: {"inbytes": 0x18, "outbytes": 0}, | |
30205: {"inbytes": 0x18, "outbytes": 0}, | |
30210: {"inbytes": 0x10, "outbytes": 0x40}, | |
30211: {"inbytes": 0x78, "outbytes": 0, "buffers": [5]}, | |
30212: {"inbytes": 0x18, "outbytes": 0}, | |
30213: {"inbytes": 0x18, "outbytes": 4, "buffers": [6]}, | |
30214: {"inbytes": 0, "outbytes": 4, "buffers": [9, 6]}, | |
20400: {"inbytes": 0x18, "outbytes": 4, "buffers": [6]}, | |
20100: {"inbytes": 0x28, "outbytes": 4, "pid": True}, | |
20101: {"inbytes": 0x10, "outbytes": 4}, | |
20102: {"inbytes": 0x18, "outbytes": 0, "buffers": [26]}, | |
20103: {"inbytes": 0x10, "outbytes": 0}, | |
20110: {"inbytes": 0x18, "outbytes": 0, "buffers": [26]}, | |
30400: {"inbytes": 0x20, "outbytes": 0}, | |
30401: {"inbytes": 0x30, "outbytes": 0, "buffers": [25]}, | |
30402: {"inbytes": 0x18, "outbytes": 0}, | |
20200: {"inbytes": 0x10, "outbytes": 8}, | |
20201: {"inbytes": 0x18, "outbytes": 4, "buffers": [6]}, | |
30500: {"inbytes": 0x30, "outbytes": 0, "buffers": [26]}, | |
10100: {"inbytes": 0x30, "outbytes": 4, "buffers": [10], "pid": True}, | |
10101: {"inbytes": 0x30, "outbytes": 4, "buffers": [6], "pid": True}, | |
10102: {"inbytes": 0x18, "outbytes": 0, "buffers": [6, 9], "pid": True}, | |
10110: {"inbytes": 0x18, "outbytes": 4, "buffers": [6]}, | |
20401: {"inbytes": 0x10, "outbytes": 0}, | |
30700: {"inbytes": 0x10, "outbytes": 0}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::friends::detail::ipc::IFriendServiceCreator': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::friends::detail::ipc::IFriendService']}, | |
}, | |
}, | |
'nifm': { | |
'nn::nifm::detail::IStaticService': { | |
4: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::nifm::detail::IGeneralService']}, | |
}, | |
'nn::nifm::detail::IScanRequest': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 1}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
}, | |
'nn::nifm::detail::IRequest': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [1, 1]}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 0x20, "outbytes": 0}, | |
6: {"inbytes": 4, "outbytes": 0}, | |
8: {"inbytes": 1, "outbytes": 0}, | |
9: {"inbytes": 0x10, "outbytes": 0}, | |
10: {"inbytes": 1, "outbytes": 0}, | |
11: {"inbytes": 1, "outbytes": 0}, | |
12: {"inbytes": 1, "outbytes": 0}, | |
13: {"inbytes": 1, "outbytes": 0}, | |
14: {"inbytes": 2, "outbytes": 0}, | |
15: {"inbytes": 1, "outbytes": 0}, | |
16: {"inbytes": 1, "outbytes": 0}, | |
17: {"inbytes": 1, "outbytes": 0}, | |
18: {"inbytes": 4, "outbytes": 0}, | |
19: {"inbytes": 0, "outbytes": 0x20}, | |
20: {"inbytes": 0, "outbytes": 4}, | |
21: {"inbytes": 4, "outbytes": 0xC, "buffers": [6]}, | |
22: {"inbytes": 0, "outbytes": 4, "buffers": [22]}, | |
}, | |
'nn::nifm::detail::INetworkProfile': { | |
0: {"inbytes": 0, "outbytes": 0x10, "buffers": [25]}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::nifm::detail::IGeneralService': { | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [26]}, | |
2: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::nifm::detail::IScanRequest']}, | |
4: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::nifm::detail::IRequest']}, | |
5: {"inbytes": 0, "outbytes": 0, "buffers": [26]}, | |
6: {"inbytes": 4, "outbytes": 4, "buffers": [10]}, | |
7: {"inbytes": 1, "outbytes": 4, "buffers": [6]}, | |
8: {"inbytes": 0x10, "outbytes": 0, "buffers": [26]}, | |
9: {"inbytes": 0, "outbytes": 0x10, "buffers": [25]}, | |
10: {"inbytes": 0x10, "outbytes": 0}, | |
11: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
12: {"inbytes": 0, "outbytes": 4}, | |
13: {"inbytes": 0, "outbytes": 0, "buffers": [26]}, | |
14: {"inbytes": 0, "outbytes": 0x10, "buffers": [25], "outinterfaces": ['nn::nifm::detail::INetworkProfile']}, | |
15: {"inbytes": 0, "outbytes": 0x16}, | |
16: {"inbytes": 1, "outbytes": 0}, | |
17: {"inbytes": 0, "outbytes": 1}, | |
18: {"inbytes": 0, "outbytes": 3}, | |
19: {"inbytes": 1, "outbytes": 0}, | |
20: {"inbytes": 0, "outbytes": 1}, | |
21: {"inbytes": 0, "outbytes": 1, "buffers": [25]}, | |
22: {"inbytes": 0, "outbytes": 1}, | |
23: {"inbytes": 0, "outbytes": 0}, | |
24: {"inbytes": 0, "outbytes": 0}, | |
25: {"inbytes": 0, "outbytes": 0x10}, | |
26: {"inbytes": 0, "outbytes": 0, "buffers": [25]}, | |
27: {"inbytes": 0, "outbytes": 0, "buffers": [26]}, | |
28: {"inbytes": 0, "outbytes": 0, "buffers": [25]}, | |
29: {"inbytes": 1, "outbytes": 0}, | |
30: {"inbytes": 1, "outbytes": 0}, | |
}, | |
}, | |
'ptm': { | |
'nn::tc::IManager': { | |
0: {"inbytes": 4, "outbytes": 0}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [1]}, | |
2: {"inbytes": 4, "outbytes": 1}, | |
3: {"inbytes": 4, "outbytes": 0}, | |
4: {"inbytes": 4, "outbytes": 0}, | |
5: {"inbytes": 8, "outbytes": 0}, | |
6: {"inbytes": 0, "outbytes": 0}, | |
7: {"inbytes": 0, "outbytes": 0}, | |
8: {"inbytes": 0, "outbytes": 1}, | |
}, | |
'nn::psm::IPsmSession': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 1, "outbytes": 0}, | |
3: {"inbytes": 1, "outbytes": 0}, | |
4: {"inbytes": 1, "outbytes": 0}, | |
}, | |
'nn::fan::detail::IController': { | |
0: {"inbytes": 4, "outbytes": 0}, | |
1: {"inbytes": 4, "outbytes": 4}, | |
2: {"inbytes": 0, "outbytes": 4}, | |
3: {"inbytes": 4, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 4}, | |
5: {"inbytes": 0, "outbytes": 0}, | |
6: {"inbytes": 0, "outbytes": 0}, | |
7: {"inbytes": 0, "outbytes": 4}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::ts::server::IMeasurementServer': { | |
0: {"inbytes": 1, "outbytes": 8}, | |
1: {"inbytes": 1, "outbytes": 4}, | |
2: {"inbytes": 2, "outbytes": 0}, | |
3: {"inbytes": 1, "outbytes": 4}, | |
}, | |
'nn::psm::IPsmServer': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0, "outbytes": 4}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 1}, | |
5: {"inbytes": 0, "outbytes": 0}, | |
6: {"inbytes": 0, "outbytes": 0}, | |
7: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::psm::IPsmSession']}, | |
8: {"inbytes": 0, "outbytes": 0}, | |
9: {"inbytes": 0, "outbytes": 0}, | |
10: {"inbytes": 0, "outbytes": 0}, | |
11: {"inbytes": 0, "outbytes": 0}, | |
12: {"inbytes": 0, "outbytes": 4}, | |
13: {"inbytes": 0, "outbytes": 8}, | |
14: {"inbytes": 0, "outbytes": 1}, | |
15: {"inbytes": 0, "outbytes": 8}, | |
}, | |
'nn::fan::detail::IManager': { | |
0: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::fan::detail::IController']}, | |
}, | |
}, | |
'bsdsocket': { | |
'nn::eth::sf::IEthInterface': { | |
0: {"inbytes": 0, "outbytes": 0, "buffers": [5], "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
4: {"inbytes": 4, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 0xC}, | |
}, | |
'nn::eth::sf::IEthInterfaceGroup': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
4: {"inbytes": 0, "outbytes": 4}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::nsd::detail::IManager': { | |
10: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
11: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
12: {"inbytes": 0, "outbytes": 0x10}, | |
13: {"inbytes": 4, "outbytes": 0}, | |
14: {"inbytes": 4, "outbytes": 0, "buffers": [5, 6]}, | |
20: {"inbytes": 0, "outbytes": 0, "buffers": [22, 21]}, | |
21: {"inbytes": 0, "outbytes": 4, "buffers": [22, 21]}, | |
30: {"inbytes": 0, "outbytes": 0, "buffers": [22, 21]}, | |
31: {"inbytes": 0, "outbytes": 4, "buffers": [22, 21]}, | |
40: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
41: {"inbytes": 0, "outbytes": 4, "buffers": [22]}, | |
42: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
43: {"inbytes": 0, "outbytes": 4, "buffers": [22]}, | |
50: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
60: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
61: {"inbytes": 0, "outbytes": 0, "buffers": [21]}, | |
62: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::bsdsocket::cfg::ServerInterface': { | |
0: {"inbytes": 0x28, "outbytes": 0, "buffers": [5]}, | |
1: {"inbytes": 0x28, "outbytes": 0, "buffers": [5], "outhandles": [1]}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
3: {"inbytes": 4, "outbytes": 0, "buffers": [5]}, | |
4: {"inbytes": 0, "outbytes": 0, "buffers": [5, 6]}, | |
5: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
6: {"inbytes": 4, "outbytes": 0, "buffers": [5]}, | |
7: {"inbytes": 4, "outbytes": 0}, | |
8: {"inbytes": 4, "outbytes": 0, "buffers": [6]}, | |
9: {"inbytes": 0, "outbytes": 0, "buffers": [6, 5]}, | |
10: {"inbytes": 0, "outbytes": 0}, | |
11: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
12: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::socket::resolver::IResolver': { | |
0: {"inbytes": 4, "outbytes": 0, "buffers": [5]}, | |
1: {"inbytes": 4, "outbytes": 0, "buffers": [6]}, | |
2: {"inbytes": 0x10, "outbytes": 0xC, "buffers": [5, 6], "pid": True}, | |
3: {"inbytes": 0x18, "outbytes": 0xC, "buffers": [5, 6], "pid": True}, | |
4: {"inbytes": 4, "outbytes": 0, "buffers": [6]}, | |
5: {"inbytes": 4, "outbytes": 0, "buffers": [6]}, | |
6: {"inbytes": 0x10, "outbytes": 0xC, "buffers": [5, 5, 5, 6], "pid": True}, | |
7: {"inbytes": 0x10, "outbytes": 8, "buffers": [5, 6, 6], "pid": True}, | |
8: {"inbytes": 8, "outbytes": 4, "pid": True}, | |
9: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
}, | |
'nn::socket::sf::IClient': { | |
0: {"inbytes": 0x30, "outbytes": 4, "inhandles": [1], "pid": True}, | |
1: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
2: {"inbytes": 0xC, "outbytes": 8}, | |
3: {"inbytes": 0xC, "outbytes": 8}, | |
4: {"inbytes": 4, "outbytes": 8, "buffers": [33]}, | |
5: {"inbytes": 0x20, "outbytes": 8, "buffers": [33, 33, 33, 34, 34, 34]}, | |
6: {"inbytes": 8, "outbytes": 8, "buffers": [33, 34]}, | |
7: {"inbytes": 0, "outbytes": 0xC, "buffers": [33, 34, 33]}, | |
8: {"inbytes": 8, "outbytes": 8, "buffers": [34]}, | |
9: {"inbytes": 8, "outbytes": 0xC, "buffers": [34, 34]}, | |
10: {"inbytes": 8, "outbytes": 8, "buffers": [33]}, | |
11: {"inbytes": 8, "outbytes": 8, "buffers": [33, 33]}, | |
12: {"inbytes": 4, "outbytes": 0xC, "buffers": [34]}, | |
13: {"inbytes": 4, "outbytes": 8, "buffers": [33]}, | |
14: {"inbytes": 4, "outbytes": 8, "buffers": [33]}, | |
15: {"inbytes": 4, "outbytes": 0xC, "buffers": [34]}, | |
16: {"inbytes": 4, "outbytes": 0xC, "buffers": [34]}, | |
17: {"inbytes": 0xC, "outbytes": 0xC, "buffers": [34]}, | |
18: {"inbytes": 8, "outbytes": 8}, | |
19: {"inbytes": 0xC, "outbytes": 8, "buffers": [33, 33, 33, 33, 34, 34, 34, 34]}, | |
20: {"inbytes": 0xC, "outbytes": 8}, | |
21: {"inbytes": 0xC, "outbytes": 8, "buffers": [33]}, | |
22: {"inbytes": 8, "outbytes": 8}, | |
23: {"inbytes": 4, "outbytes": 8}, | |
24: {"inbytes": 4, "outbytes": 8, "buffers": [33]}, | |
25: {"inbytes": 4, "outbytes": 8, "buffers": [34]}, | |
26: {"inbytes": 4, "outbytes": 8}, | |
27: {"inbytes": 0x10, "outbytes": 8}, | |
28: {"inbytes": 8, "outbytes": 8, "buffers": [34], "pid": True}, | |
}, | |
}, | |
'hid': { | |
'nn::hid::IActiveVibrationDeviceList': { | |
0: {"inbytes": 4, "outbytes": 0}, | |
}, | |
'nn::ahid::hdr::ISession': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 4, "buffers": [6, 5]}, | |
2: {"inbytes": 4, "outbytes": 0, "buffers": [6]}, | |
3: {"inbytes": 0, "outbytes": 4, "buffers": [5]}, | |
4: {"inbytes": 4, "outbytes": 0}, | |
}, | |
'nn::hid::IAppletResource': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
}, | |
'nn::hid::IHidSystemServer': { | |
31: {"inbytes": 4, "outbytes": 0}, | |
101: {"inbytes": 8, "outbytes": 0, "outhandles": [1], "pid": True}, | |
111: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
121: {"inbytes": 8, "outbytes": 0, "outhandles": [1], "pid": True}, | |
131: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
141: {"inbytes": 8, "outbytes": 0, "outhandles": [1], "pid": True}, | |
151: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
210: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
211: {"inbytes": 0, "outbytes": 8, "buffers": [10]}, | |
212: {"inbytes": 4, "outbytes": 0, "outhandles": [1]}, | |
213: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
230: {"inbytes": 4, "outbytes": 0, "outhandles": [1]}, | |
231: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
301: {"inbytes": 4, "outbytes": 0}, | |
303: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
304: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
305: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
322: {"inbytes": 0x10, "outbytes": 8, "pid": True}, | |
323: {"inbytes": 0x10, "outbytes": 8, "pid": True}, | |
500: {"inbytes": 8, "outbytes": 0}, | |
501: {"inbytes": 0x10, "outbytes": 0}, | |
502: {"inbytes": 8, "outbytes": 0}, | |
503: {"inbytes": 0x10, "outbytes": 0}, | |
504: {"inbytes": 0x10, "outbytes": 0}, | |
510: {"inbytes": 4, "outbytes": 0}, | |
511: {"inbytes": 0, "outbytes": 4}, | |
520: {"inbytes": 0, "outbytes": 0}, | |
521: {"inbytes": 0, "outbytes": 0}, | |
700: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
702: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
703: {"inbytes": 0, "outbytes": 8, "buffers": [10]}, | |
751: {"inbytes": 8, "outbytes": 0, "outhandles": [1], "pid": True}, | |
800: {"inbytes": 8, "outbytes": 8, "buffers": [10]}, | |
801: {"inbytes": 4, "outbytes": 1}, | |
802: {"inbytes": 4, "outbytes": 0}, | |
803: {"inbytes": 4, "outbytes": 0}, | |
804: {"inbytes": 4, "outbytes": 0}, | |
821: {"inbytes": 0x10, "outbytes": 0}, | |
822: {"inbytes": 0x10, "outbytes": 0}, | |
823: {"inbytes": 0x10, "outbytes": 0}, | |
824: {"inbytes": 0x10, "outbytes": 0}, | |
900: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
901: {"inbytes": 4, "outbytes": 0}, | |
}, | |
'nn::xcd::detail::ISystemServer': { | |
0: {"inbytes": 8, "outbytes": 1}, | |
1: {"inbytes": 0x10, "outbytes": 0}, | |
2: {"inbytes": 8, "outbytes": 1}, | |
3: {"inbytes": 0x10, "outbytes": 0}, | |
4: {"inbytes": 8, "outbytes": 0x20}, | |
5: {"inbytes": 8, "outbytes": 0}, | |
10: {"inbytes": 8, "outbytes": 0, "outhandles": [1, 1]}, | |
11: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
12: {"inbytes": 0x10, "outbytes": 0}, | |
13: {"inbytes": 8, "outbytes": 0}, | |
14: {"inbytes": 0x30, "outbytes": 0}, | |
15: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
16: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
17: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
18: {"inbytes": 0x10, "outbytes": 0}, | |
19: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
20: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
101: {"inbytes": 0, "outbytes": 8}, | |
102: {"inbytes": 0, "outbytes": 8}, | |
}, | |
'nn::irsensor::IIrSensorSystemServer': { | |
500: {"inbytes": 8, "outbytes": 0}, | |
501: {"inbytes": 0x10, "outbytes": 0}, | |
502: {"inbytes": 8, "outbytes": 0}, | |
503: {"inbytes": 0x10, "outbytes": 0}, | |
}, | |
'nn::hid::IHidDebugServer': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0x18, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
10: {"inbytes": 0, "outbytes": 0}, | |
11: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
12: {"inbytes": 0, "outbytes": 0}, | |
20: {"inbytes": 0, "outbytes": 0}, | |
21: {"inbytes": 0x1C, "outbytes": 0}, | |
22: {"inbytes": 0, "outbytes": 0}, | |
30: {"inbytes": 0, "outbytes": 0}, | |
31: {"inbytes": 0x28, "outbytes": 0}, | |
32: {"inbytes": 0, "outbytes": 0}, | |
50: {"inbytes": 4, "outbytes": 0}, | |
51: {"inbytes": 0x20, "outbytes": 0}, | |
52: {"inbytes": 4, "outbytes": 0}, | |
60: {"inbytes": 4, "outbytes": 0}, | |
110: {"inbytes": 0, "outbytes": 0}, | |
111: {"inbytes": 8, "outbytes": 0}, | |
112: {"inbytes": 0, "outbytes": 0}, | |
120: {"inbytes": 0, "outbytes": 0}, | |
121: {"inbytes": 8, "outbytes": 0}, | |
122: {"inbytes": 0, "outbytes": 0}, | |
123: {"inbytes": 0, "outbytes": 0}, | |
130: {"inbytes": 0, "outbytes": 0}, | |
131: {"inbytes": 8, "outbytes": 0}, | |
132: {"inbytes": 0, "outbytes": 0}, | |
201: {"inbytes": 0, "outbytes": 0}, | |
202: {"inbytes": 0, "outbytes": 0}, | |
203: {"inbytes": 8, "outbytes": 0, "outhandles": [1]}, | |
204: {"inbytes": 0, "outbytes": 0x10}, | |
205: {"inbytes": 8, "outbytes": 4}, | |
206: {"inbytes": 8, "outbytes": 4}, | |
}, | |
'nn::ahid::IReadSession': { | |
0: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
}, | |
'nn::ahid::IServerSession': { | |
0: {"inbytes": 4, "outbytes": 0}, | |
1: {"inbytes": 4, "outbytes": 0}, | |
2: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::ahid::ICtrlSession']}, | |
3: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::ahid::IReadSession']}, | |
4: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::ahid::IWriteSession']}, | |
}, | |
'nn::ahid::ICtrlSession': { | |
0: {"inbytes": 1, "outbytes": 0, "buffers": [6]}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
2: {"inbytes": 2, "outbytes": 0, "buffers": [6]}, | |
3: {"inbytes": 2, "outbytes": 0, "buffers": [5]}, | |
4: {"inbytes": 1, "outbytes": 0, "buffers": [6]}, | |
5: {"inbytes": 2, "outbytes": 0}, | |
6: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
7: {"inbytes": 1, "outbytes": 0}, | |
8: {"inbytes": 6, "outbytes": 0, "buffers": [6]}, | |
9: {"inbytes": 6, "outbytes": 0, "buffers": [5]}, | |
10: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
11: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::irsensor::IIrSensorServer': { | |
302: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
303: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
304: {"inbytes": 8, "outbytes": 0, "outhandles": [1], "pid": True}, | |
305: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
306: {"inbytes": 0x30, "outbytes": 0, "pid": True}, | |
307: {"inbytes": 0x38, "outbytes": 0, "pid": True}, | |
308: {"inbytes": 0x30, "outbytes": 0, "inhandles": [1], "pid": True}, | |
309: {"inbytes": 0x10, "outbytes": 0x10, "buffers": [6], "pid": True}, | |
310: {"inbytes": 0x18, "outbytes": 0, "pid": True}, | |
311: {"inbytes": 4, "outbytes": 4}, | |
312: {"inbytes": 0x18, "outbytes": 0, "pid": True}, | |
}, | |
'nn::hid::IHidServer': { | |
0: {"inbytes": 8, "outbytes": 0, "outinterfaces": ['nn::hid::IAppletResource'], "pid": True}, | |
1: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
11: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
21: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
31: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
40: {"inbytes": 8, "outbytes": 0, "outhandles": [1]}, | |
41: {"inbytes": 8, "outbytes": 0}, | |
51: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
55: {"inbytes": 0, "outbytes": 8, "buffers": [10]}, | |
56: {"inbytes": 4, "outbytes": 0}, | |
58: {"inbytes": 4, "outbytes": 0, "outhandles": [1]}, | |
59: {"inbytes": 0, "outbytes": 8, "buffers": [10]}, | |
60: {"inbytes": 4, "outbytes": 0}, | |
61: {"inbytes": 4, "outbytes": 0}, | |
62: {"inbytes": 4, "outbytes": 0, "outhandles": [1]}, | |
63: {"inbytes": 4, "outbytes": 0}, | |
64: {"inbytes": 4, "outbytes": 0}, | |
65: {"inbytes": 4, "outbytes": 0, "outhandles": [1]}, | |
66: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
67: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
68: {"inbytes": 0x10, "outbytes": 1, "pid": True}, | |
69: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
70: {"inbytes": 0x18, "outbytes": 0, "pid": True}, | |
71: {"inbytes": 0x10, "outbytes": 8, "pid": True}, | |
72: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
73: {"inbytes": 0x18, "outbytes": 0, "pid": True}, | |
74: {"inbytes": 0x10, "outbytes": 8, "pid": True}, | |
75: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
76: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
77: {"inbytes": 0x10, "outbytes": 4, "pid": True}, | |
78: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
79: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
80: {"inbytes": 0x10, "outbytes": 4, "pid": True}, | |
81: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
82: {"inbytes": 0x10, "outbytes": 1, "pid": True}, | |
100: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
101: {"inbytes": 8, "outbytes": 4, "pid": True}, | |
102: {"inbytes": 8, "outbytes": 0, "buffers": [9], "pid": True}, | |
103: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
104: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
106: {"inbytes": 0x18, "outbytes": 0, "outhandles": [1], "pid": True}, | |
107: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
108: {"inbytes": 4, "outbytes": 8}, | |
120: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
121: {"inbytes": 8, "outbytes": 8, "pid": True}, | |
122: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
123: {"inbytes": 0x18, "outbytes": 0, "pid": True}, | |
124: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
125: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
126: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
128: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
129: {"inbytes": 8, "outbytes": 8, "pid": True}, | |
130: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
131: {"inbytes": 0x10, "outbytes": 1, "pid": True}, | |
132: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
200: {"inbytes": 4, "outbytes": 8}, | |
201: {"inbytes": 0x20, "outbytes": 0, "pid": True}, | |
202: {"inbytes": 0x10, "outbytes": 0x10, "pid": True}, | |
203: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::hid::IActiveVibrationDeviceList']}, | |
204: {"inbytes": 1, "outbytes": 0}, | |
205: {"inbytes": 0, "outbytes": 1}, | |
206: {"inbytes": 8, "outbytes": 0, "buffers": [9, 9]}, | |
127: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
1000: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
1001: {"inbytes": 0, "outbytes": 8}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::ahid::IWriteSession': { | |
0: {"inbytes": 0, "outbytes": 4, "buffers": [5]}, | |
}, | |
}, | |
'audio': { | |
'nn::audio::detail::IAudioInManagerForDebugger': { | |
0: {"inbytes": 8, "outbytes": 0}, | |
1: {"inbytes": 8, "outbytes": 0}, | |
}, | |
'nn::audio::detail::IAudioOut': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 8, "outbytes": 0, "buffers": [5]}, | |
4: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
5: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
6: {"inbytes": 8, "outbytes": 1}, | |
}, | |
'nn::audio::detail::IAudioDevice': { | |
0: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
1: {"inbytes": 4, "outbytes": 0, "buffers": [5]}, | |
2: {"inbytes": 0, "outbytes": 4, "buffers": [5]}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
4: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
5: {"inbytes": 0, "outbytes": 4}, | |
}, | |
'nn::audio::detail::IAudioRenderer': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0, "outbytes": 4}, | |
2: {"inbytes": 0, "outbytes": 4}, | |
3: {"inbytes": 0, "outbytes": 4}, | |
4: {"inbytes": 0, "outbytes": 0, "buffers": [6, 6, 5]}, | |
5: {"inbytes": 0, "outbytes": 0}, | |
6: {"inbytes": 0, "outbytes": 0}, | |
7: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
8: {"inbytes": 4, "outbytes": 0}, | |
9: {"inbytes": 0, "outbytes": 4}, | |
}, | |
'nn::codec::detail::IHardwareOpusDecoderManager': { | |
0: {"inbytes": 0xC, "outbytes": 0, "inhandles": [1], "outinterfaces": ['nn::codec::detail::IHardwareOpusDecoder']}, | |
1: {"inbytes": 8, "outbytes": 4}, | |
}, | |
'nn::audio::detail::IAudioInManagerForApplet': { | |
0: {"inbytes": 0x10, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0x10, "outbytes": 0, "outhandles": [1]}, | |
2: {"inbytes": 8, "outbytes": 4}, | |
3: {"inbytes": 0x18, "outbytes": 0}, | |
}, | |
'nn::audio::detail::IAudioRendererManager': { | |
0: {"inbytes": 0x48, "outbytes": 0, "inhandles": [1, 1], "outinterfaces": ['nn::audio::detail::IAudioRenderer'], "pid": True}, | |
1: {"inbytes": 0x34, "outbytes": 8}, | |
2: {"inbytes": 8, "outbytes": 0, "outinterfaces": ['nn::audio::detail::IAudioDevice']}, | |
}, | |
'nn::audio::detail::IAudioOutManagerForApplet': { | |
0: {"inbytes": 0x10, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0x10, "outbytes": 0, "outhandles": [1]}, | |
2: {"inbytes": 8, "outbytes": 4}, | |
3: {"inbytes": 0x18, "outbytes": 0}, | |
}, | |
'nn::audio::detail::IFinalOutputRecorderManagerForApplet': { | |
0: {"inbytes": 0x10, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0x10, "outbytes": 0, "outhandles": [1]}, | |
}, | |
'nn::audio::detail::IFinalOutputRecorderManager': { | |
0: {"inbytes": 0x10, "outbytes": 0x10, "inhandles": [1], "outinterfaces": ['nn::audio::detail::IFinalOutputRecorder']}, | |
}, | |
'nn::audio::detail::IAudioOutManagerForDebugger': { | |
0: {"inbytes": 8, "outbytes": 0}, | |
1: {"inbytes": 8, "outbytes": 0}, | |
}, | |
'nn::audio::detail::IAudioOutManager': { | |
0: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
1: {"inbytes": 0x10, "outbytes": 0x10, "buffers": [5, 6], "inhandles": [1], "outinterfaces": ['nn::audio::detail::IAudioOut'], "pid": True}, | |
}, | |
'nn::audio::detail::ICodecController': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
4: {"inbytes": 4, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 4}, | |
6: {"inbytes": 0, "outbytes": 4}, | |
7: {"inbytes": 4, "outbytes": 0}, | |
8: {"inbytes": 0, "outbytes": 4}, | |
9: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
10: {"inbytes": 0, "outbytes": 1}, | |
11: {"inbytes": 0, "outbytes": 0}, | |
12: {"inbytes": 0, "outbytes": 1}, | |
}, | |
'nn::audio::detail::IFinalOutputRecorder': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 8, "outbytes": 0, "buffers": [5]}, | |
4: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
5: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
6: {"inbytes": 8, "outbytes": 1}, | |
}, | |
'nn::audio::detail::IAudioIn': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 8, "outbytes": 0, "buffers": [5]}, | |
4: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
5: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
6: {"inbytes": 8, "outbytes": 1}, | |
}, | |
'nn::audio::detail::IFinalOutputRecorderManagerForDebugger': { | |
0: {"inbytes": 8, "outbytes": 0}, | |
1: {"inbytes": 8, "outbytes": 0}, | |
}, | |
'nn::codec::detail::IHardwareOpusDecoder': { | |
0: {"inbytes": 0, "outbytes": 8, "buffers": [6, 5]}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
}, | |
'nn::audio::detail::IAudioRendererManagerForApplet': { | |
0: {"inbytes": 0x10, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0x10, "outbytes": 0, "outhandles": [1]}, | |
2: {"inbytes": 8, "outbytes": 4}, | |
3: {"inbytes": 0x18, "outbytes": 0}, | |
4: {"inbytes": 8, "outbytes": 0}, | |
5: {"inbytes": 8, "outbytes": 0}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::audio::detail::IAudioInManager': { | |
0: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
1: {"inbytes": 0x10, "outbytes": 0x10, "buffers": [5, 6], "inhandles": [1], "outinterfaces": ['nn::audio::detail::IAudioIn'], "pid": True}, | |
}, | |
'nn::audioctrl::detail::IAudioController': { | |
0: {"inbytes": 4, "outbytes": 4}, | |
1: {"inbytes": 8, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 4}, | |
3: {"inbytes": 0, "outbytes": 4}, | |
4: {"inbytes": 4, "outbytes": 1}, | |
5: {"inbytes": 8, "outbytes": 0}, | |
6: {"inbytes": 4, "outbytes": 1}, | |
7: {"inbytes": 0x18, "outbytes": 0}, | |
8: {"inbytes": 0, "outbytes": 4}, | |
9: {"inbytes": 4, "outbytes": 4}, | |
10: {"inbytes": 8, "outbytes": 0}, | |
11: {"inbytes": 4, "outbytes": 0}, | |
12: {"inbytes": 0, "outbytes": 4}, | |
13: {"inbytes": 4, "outbytes": 4}, | |
14: {"inbytes": 8, "outbytes": 0}, | |
15: {"inbytes": 4, "outbytes": 0}, | |
16: {"inbytes": 1, "outbytes": 0}, | |
}, | |
'nn::audio::detail::IAudioRendererManagerForDebugger': { | |
0: {"inbytes": 8, "outbytes": 0}, | |
1: {"inbytes": 8, "outbytes": 0}, | |
}, | |
}, | |
'LogManager.Prod': { | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::lm::ILogService': { | |
0: {"inbytes": 8, "outbytes": 0, "outinterfaces": ['nn::lm::ILogger'], "pid": True}, | |
}, | |
'nn::lm::ILogger': { | |
0: {"inbytes": 0, "outbytes": 0, "buffers": [33]}, | |
}, | |
}, | |
'wlan': { | |
'nn::wlan::detail::ILocalGetFrame': { | |
0: {"inbytes": 4, "outbytes": 4, "buffers": [6]}, | |
}, | |
'nn::wlan::detail::IInfraManager': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 6}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [21]}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 0x7C, "outbytes": 0}, | |
6: {"inbytes": 0, "outbytes": 0}, | |
7: {"inbytes": 0, "outbytes": 0}, | |
8: {"inbytes": 4, "outbytes": 0, "outhandles": [1]}, | |
9: {"inbytes": 0, "outbytes": 0x3C}, | |
10: {"inbytes": 0, "outbytes": 4}, | |
11: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
12: {"inbytes": 0, "outbytes": 4}, | |
13: {"inbytes": 4, "outbytes": 0}, | |
14: {"inbytes": 0, "outbytes": 0, "buffers": [10]}, | |
15: {"inbytes": 0, "outbytes": 0}, | |
16: {"inbytes": 0, "outbytes": 0}, | |
17: {"inbytes": 8, "outbytes": 0, "buffers": [9]}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::wlan::detail::ISocketManager': { | |
0: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
1: {"inbytes": 4, "outbytes": 0}, | |
2: {"inbytes": 4, "outbytes": 4, "buffers": [9]}, | |
3: {"inbytes": 4, "outbytes": 0}, | |
4: {"inbytes": 8, "outbytes": 0}, | |
5: {"inbytes": 2, "outbytes": 4}, | |
6: {"inbytes": 0, "outbytes": 6}, | |
7: {"inbytes": 1, "outbytes": 0}, | |
8: {"inbytes": 0, "outbytes": 8}, | |
9: {"inbytes": 4, "outbytes": 0, "inhandles": [1, 1, 1, 1, 1]}, | |
10: {"inbytes": 0, "outbytes": 0}, | |
11: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::wlan::detail::ILocalManager': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 0}, | |
6: {"inbytes": 0, "outbytes": 6}, | |
7: {"inbytes": 0x80, "outbytes": 0}, | |
8: {"inbytes": 0, "outbytes": 0}, | |
9: {"inbytes": 0, "outbytes": 0, "buffers": [21]}, | |
10: {"inbytes": 0, "outbytes": 0}, | |
11: {"inbytes": 0x80, "outbytes": 0}, | |
12: {"inbytes": 0, "outbytes": 0}, | |
13: {"inbytes": 0x80, "outbytes": 0}, | |
14: {"inbytes": 0, "outbytes": 0}, | |
15: {"inbytes": 0x10, "outbytes": 0}, | |
16: {"inbytes": 4, "outbytes": 0}, | |
17: {"inbytes": 4, "outbytes": 0, "outhandles": [1]}, | |
18: {"inbytes": 0, "outbytes": 0x3C}, | |
19: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
20: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
21: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
22: {"inbytes": 0, "outbytes": 4}, | |
23: {"inbytes": 0, "outbytes": 0x50}, | |
24: {"inbytes": 4, "outbytes": 4, "buffers": [5]}, | |
25: {"inbytes": 4, "outbytes": 0}, | |
26: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
27: {"inbytes": 4, "outbytes": 0}, | |
28: {"inbytes": 4, "outbytes": 4, "buffers": [9]}, | |
29: {"inbytes": 4, "outbytes": 0}, | |
30: {"inbytes": 8, "outbytes": 0}, | |
31: {"inbytes": 2, "outbytes": 4}, | |
32: {"inbytes": 4, "outbytes": 0, "buffers": [25]}, | |
33: {"inbytes": 4, "outbytes": 0, "buffers": [25]}, | |
34: {"inbytes": 0, "outbytes": 0, "buffers": [25, 6]}, | |
35: {"inbytes": 0x10, "outbytes": 0, "buffers": [5]}, | |
36: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
37: {"inbytes": 0, "outbytes": 0}, | |
38: {"inbytes": 4, "outbytes": 4, "buffers": [9]}, | |
39: {"inbytes": 4, "outbytes": 0}, | |
40: {"inbytes": 8, "outbytes": 0}, | |
41: {"inbytes": 4, "outbytes": 4}, | |
42: {"inbytes": 4, "outbytes": 0}, | |
43: {"inbytes": 0, "outbytes": 4}, | |
44: {"inbytes": 4, "outbytes": 0}, | |
}, | |
'nn::wlan::detail::ISocketGetFrame': { | |
0: {"inbytes": 4, "outbytes": 4, "buffers": [6]}, | |
}, | |
'nn::wlan::detail::ILocalGetActionFrame': { | |
0: {"inbytes": 4, "outbytes": 0xC, "buffers": [6]}, | |
}, | |
}, | |
'ldn': { | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::ldn::detail::IUserLocalCommunicationService': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [26]}, | |
2: {"inbytes": 0, "outbytes": 8}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 0, "outbytes": 0x20}, | |
5: {"inbytes": 0, "outbytes": 0x20}, | |
100: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
101: {"inbytes": 0, "outbytes": 0, "buffers": [26, 10]}, | |
102: {"inbytes": 0x68, "outbytes": 2, "buffers": [34]}, | |
103: {"inbytes": 0x68, "outbytes": 2, "buffers": [34]}, | |
200: {"inbytes": 0, "outbytes": 0}, | |
201: {"inbytes": 0, "outbytes": 0}, | |
202: {"inbytes": 0x98, "outbytes": 0}, | |
203: {"inbytes": 0xB8, "outbytes": 0, "buffers": [9]}, | |
204: {"inbytes": 0, "outbytes": 0}, | |
205: {"inbytes": 4, "outbytes": 0}, | |
206: {"inbytes": 0, "outbytes": 0, "buffers": [33]}, | |
207: {"inbytes": 1, "outbytes": 0}, | |
208: {"inbytes": 6, "outbytes": 0}, | |
209: {"inbytes": 0, "outbytes": 0}, | |
300: {"inbytes": 0, "outbytes": 0}, | |
301: {"inbytes": 0, "outbytes": 0}, | |
302: {"inbytes": 0x7C, "outbytes": 0, "buffers": [25]}, | |
303: {"inbytes": 0xC0, "outbytes": 0}, | |
304: {"inbytes": 0, "outbytes": 0}, | |
400: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
401: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::ldn::detail::IUserServiceCreator': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::ldn::detail::IUserLocalCommunicationService']}, | |
}, | |
'nn::ldn::detail::ISystemServiceCreator': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::ldn::detail::ISystemLocalCommunicationService']}, | |
}, | |
'nn::ldn::detail::IMonitorService': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [26]}, | |
2: {"inbytes": 0, "outbytes": 8}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 0, "outbytes": 0x20}, | |
5: {"inbytes": 0, "outbytes": 0x20}, | |
100: {"inbytes": 0, "outbytes": 0}, | |
101: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::ldn::detail::ISystemLocalCommunicationService': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [26]}, | |
2: {"inbytes": 0, "outbytes": 8}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 0, "outbytes": 0x20}, | |
5: {"inbytes": 0, "outbytes": 0x20}, | |
100: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
101: {"inbytes": 0, "outbytes": 0, "buffers": [26, 10]}, | |
102: {"inbytes": 0x68, "outbytes": 2, "buffers": [34]}, | |
103: {"inbytes": 0x68, "outbytes": 2, "buffers": [34]}, | |
200: {"inbytes": 0, "outbytes": 0}, | |
201: {"inbytes": 0, "outbytes": 0}, | |
202: {"inbytes": 0x98, "outbytes": 0}, | |
203: {"inbytes": 0xB8, "outbytes": 0, "buffers": [9]}, | |
204: {"inbytes": 0, "outbytes": 0}, | |
205: {"inbytes": 4, "outbytes": 0}, | |
206: {"inbytes": 0, "outbytes": 0, "buffers": [33]}, | |
207: {"inbytes": 1, "outbytes": 0}, | |
208: {"inbytes": 6, "outbytes": 0}, | |
209: {"inbytes": 0, "outbytes": 0}, | |
300: {"inbytes": 0, "outbytes": 0}, | |
301: {"inbytes": 0, "outbytes": 0}, | |
302: {"inbytes": 0x7C, "outbytes": 0, "buffers": [25]}, | |
303: {"inbytes": 0xC0, "outbytes": 0}, | |
304: {"inbytes": 0, "outbytes": 0}, | |
400: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
401: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::ldn::detail::IMonitorServiceCreator': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::ldn::detail::IMonitorService']}, | |
}, | |
}, | |
'nvservices': { | |
'nv::gemcoredump::INvGemCoreDump': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0, "outbytes": 0x10}, | |
2: {"inbytes": 0, "outbytes": 4, "buffers": [34]}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nv::gemcontrol::INvGemControl': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0, "outbytes": 4, "outhandles": [1]}, | |
2: {"inbytes": 1, "outbytes": 4}, | |
3: {"inbytes": 0x10, "outbytes": 4}, | |
4: {"inbytes": 0x10, "outbytes": 4}, | |
5: {"inbytes": 0, "outbytes": 0x10}, | |
6: {"inbytes": 0, "outbytes": 4}, | |
}, | |
'nns::nvdrv::INvDrvDebugFSServices': { | |
0: {"inbytes": 0, "outbytes": 4, "inhandles": [1]}, | |
1: {"inbytes": 4, "outbytes": 0}, | |
2: {"inbytes": 4, "outbytes": 4, "buffers": [6]}, | |
3: {"inbytes": 4, "outbytes": 4, "buffers": [5, 6]}, | |
4: {"inbytes": 4, "outbytes": 4, "buffers": [5, 5]}, | |
}, | |
'nns::nvdrv::INvDrvServices': { | |
0: {"inbytes": 0, "outbytes": 8, "buffers": [5]}, | |
1: {"inbytes": 8, "outbytes": 4, "buffers": [33, 34]}, | |
2: {"inbytes": 4, "outbytes": 4}, | |
3: {"inbytes": 4, "outbytes": 4, "inhandles": [1, 1]}, | |
4: {"inbytes": 8, "outbytes": 4, "outhandles": [1]}, | |
5: {"inbytes": 8, "outbytes": 4, "inhandles": [1]}, | |
6: {"inbytes": 0, "outbytes": 0x24}, | |
7: {"inbytes": 8, "outbytes": 4}, | |
8: {"inbytes": 8, "outbytes": 4, "pid": True}, | |
9: {"inbytes": 0, "outbytes": 0}, | |
}, | |
}, | |
'pcv': { | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::timesrv::detail::service::IStaticService': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::timesrv::detail::service::ISystemClock']}, | |
1: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::timesrv::detail::service::ISystemClock']}, | |
2: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::timesrv::detail::service::ISteadyClock']}, | |
3: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::timesrv::detail::service::ITimeZoneService']}, | |
4: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::timesrv::detail::service::ISystemClock']}, | |
100: {"inbytes": 0, "outbytes": 1}, | |
101: {"inbytes": 1, "outbytes": 0}, | |
}, | |
'nn::bpc::IPowerButtonManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [1]}, | |
}, | |
'nn::pcv::detail::IPcvService': { | |
0: {"inbytes": 8, "outbytes": 0}, | |
1: {"inbytes": 8, "outbytes": 0}, | |
2: {"inbytes": 8, "outbytes": 0}, | |
3: {"inbytes": 4, "outbytes": 4}, | |
4: {"inbytes": 4, "outbytes": 0xC}, | |
5: {"inbytes": 8, "outbytes": 8, "buffers": [10]}, | |
6: {"inbytes": 8, "outbytes": 0}, | |
7: {"inbytes": 8, "outbytes": 0}, | |
8: {"inbytes": 8, "outbytes": 0}, | |
9: {"inbytes": 4, "outbytes": 1}, | |
10: {"inbytes": 4, "outbytes": 0xC}, | |
11: {"inbytes": 8, "outbytes": 0}, | |
12: {"inbytes": 4, "outbytes": 4}, | |
13: {"inbytes": 4, "outbytes": 4, "buffers": [10]}, | |
14: {"inbytes": 4, "outbytes": 0}, | |
15: {"inbytes": 0, "outbytes": 0}, | |
16: {"inbytes": 0, "outbytes": 1}, | |
17: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::bpc::IRtcManager': { | |
0: {"inbytes": 0, "outbytes": 8}, | |
1: {"inbytes": 8, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 1}, | |
}, | |
'nn::timesrv::detail::service::ISteadyClock': { | |
0: {"inbytes": 0, "outbytes": 0x18}, | |
2: {"inbytes": 0, "outbytes": 8}, | |
3: {"inbytes": 8, "outbytes": 0}, | |
}, | |
'nn::bpc::IBoardPowerControlManager': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 4}, | |
3: {"inbytes": 0, "outbytes": 4}, | |
4: {"inbytes": 0, "outbytes": 1}, | |
5: {"inbytes": 4, "outbytes": 0, "outhandles": [1]}, | |
}, | |
'nn::pcv::IImmediateManager': { | |
0: {"inbytes": 8, "outbytes": 0}, | |
}, | |
'nn::timesrv::detail::service::ISystemClock': { | |
0: {"inbytes": 0, "outbytes": 8}, | |
1: {"inbytes": 8, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0x20}, | |
3: {"inbytes": 0x20, "outbytes": 0}, | |
}, | |
'nn::timesrv::detail::service::ITimeZoneService': { | |
0: {"inbytes": 0, "outbytes": 0x24}, | |
1: {"inbytes": 0x24, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 4}, | |
3: {"inbytes": 4, "outbytes": 4, "buffers": [6]}, | |
4: {"inbytes": 0x24, "outbytes": 0, "buffers": [22]}, | |
100: {"inbytes": 8, "outbytes": 0x20, "buffers": [21]}, | |
101: {"inbytes": 8, "outbytes": 0x20}, | |
201: {"inbytes": 8, "outbytes": 4, "buffers": [21, 10]}, | |
202: {"inbytes": 8, "outbytes": 4, "buffers": [10]}, | |
}, | |
'nn::bpc::IWakeupConfigManager': { | |
0: {"inbytes": 8, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0x10}, | |
}, | |
}, | |
'ppc': { | |
'nn::fgm::sf::IDebugger': { | |
0: {"inbytes": 8, "outbytes": 0, "inhandles": [1], "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 0xC, "buffers": [6]}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::apm::IManager': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::apm::ISession']}, | |
1: {"inbytes": 0, "outbytes": 4}, | |
}, | |
'nn::apm::IDebugManager': { | |
0: {"inbytes": 0, "outbytes": 0x28}, | |
1: {"inbytes": 0, "outbytes": 0x28}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::fgm::sf::IRequest': { | |
0: {"inbytes": 0x10, "outbytes": 0, "outhandles": [1], "pid": True}, | |
1: {"inbytes": 8, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 4}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::apm::ISystemManager': { | |
0: {"inbytes": 4, "outbytes": 0}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [1]}, | |
}, | |
'nn::apm::IManagerPrivileged': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::apm::ISession']}, | |
}, | |
'nn::apm::ISession': { | |
0: {"inbytes": 8, "outbytes": 0}, | |
1: {"inbytes": 4, "outbytes": 4}, | |
}, | |
'nn::fgm::sf::ISession': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::fgm::sf::IRequest']}, | |
}, | |
}, | |
'nvnflinger': { | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
}, | |
'pcie.withoutHb': { | |
'nn::pcie::detail::IManager': { | |
0: {"inbytes": 0x18, "outbytes": 0, "inhandles": [1], "outhandles": [1], "outinterfaces": ['nn::pcie::detail::ISession']}, | |
1: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::pcie::detail::ISession': { | |
0: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [1]}, | |
2: {"inbytes": 4, "outbytes": 0}, | |
3: {"inbytes": 4, "outbytes": 0, "buffers": [6]}, | |
4: {"inbytes": 8, "outbytes": 0x18}, | |
5: {"inbytes": 0xC, "outbytes": 4}, | |
6: {"inbytes": 0x10, "outbytes": 0}, | |
7: {"inbytes": 0x10, "outbytes": 0, "buffers": [6]}, | |
8: {"inbytes": 0x10, "outbytes": 0, "buffers": [5]}, | |
9: {"inbytes": 8, "outbytes": 4}, | |
10: {"inbytes": 8, "outbytes": 4}, | |
11: {"inbytes": 0x18, "outbytes": 8}, | |
12: {"inbytes": 0x10, "outbytes": 0}, | |
13: {"inbytes": 0x10, "outbytes": 0}, | |
14: {"inbytes": 0x10, "outbytes": 8}, | |
15: {"inbytes": 4, "outbytes": 0x10}, | |
16: {"inbytes": 8, "outbytes": 0}, | |
17: {"inbytes": 8, "outbytes": 0, "outhandles": [1]}, | |
18: {"inbytes": 4, "outbytes": 0}, | |
19: {"inbytes": 0xC, "outbytes": 0}, | |
20: {"inbytes": 8, "outbytes": 0}, | |
}, | |
}, | |
'account': { | |
'nn::account::detail::IAsyncContext': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 1}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::account::detail::INotifier': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
}, | |
'nn::account::baas::IManagerForSystemService': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 8}, | |
2: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
3: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
100: {"inbytes": 8, "outbytes": 0, "buffers": [25], "pid": True}, | |
120: {"inbytes": 0, "outbytes": 8}, | |
130: {"inbytes": 0, "outbytes": 8, "buffers": [26, 6]}, | |
131: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
132: {"inbytes": 4, "outbytes": 1, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
150: {"inbytes": 4, "outbytes": 0, "buffers": [25, 25], "inhandles": [1], "outinterfaces": ['nn::account::nas::IAuthorizationRequest']}, | |
}, | |
'nn::account::baas::IGuestLoginRequest': { | |
0: {"inbytes": 0, "outbytes": 0x10}, | |
11: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
12: {"inbytes": 0, "outbytes": 8}, | |
13: {"inbytes": 0, "outbytes": 8}, | |
14: {"inbytes": 0, "outbytes": 0, "buffers": [10]}, | |
15: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
}, | |
'nn::account::nas::IAuthorizationRequest': { | |
0: {"inbytes": 0, "outbytes": 0x10}, | |
10: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
20: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
21: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
22: {"inbytes": 0, "outbytes": 0, "buffers": [26]}, | |
}, | |
'nn::account::baas::IAdministrator': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 8}, | |
2: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
3: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
100: {"inbytes": 8, "outbytes": 0, "buffers": [25], "pid": True}, | |
120: {"inbytes": 0, "outbytes": 8}, | |
130: {"inbytes": 0, "outbytes": 8, "buffers": [26, 6]}, | |
131: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
132: {"inbytes": 4, "outbytes": 1, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
150: {"inbytes": 4, "outbytes": 0, "buffers": [25, 25], "inhandles": [1], "outinterfaces": ['nn::account::nas::IAuthorizationRequest']}, | |
200: {"inbytes": 0, "outbytes": 1}, | |
201: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
202: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
203: {"inbytes": 0, "outbytes": 0}, | |
220: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
250: {"inbytes": 0, "outbytes": 1}, | |
251: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::nas::IOAuthProcedureForNintendoAccountLinkage']}, | |
252: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::account::nas::IOAuthProcedureForNintendoAccountLinkage']}, | |
255: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::http::IOAuthProcedure']}, | |
256: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::account::http::IOAuthProcedure']}, | |
280: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::account::http::IOAuthProcedure']}, | |
997: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
998: {"inbytes": 4, "outbytes": 0}, | |
999: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
}, | |
'nn::account::profile::IProfileEditor': { | |
0: {"inbytes": 0, "outbytes": 0x38, "buffers": [26]}, | |
1: {"inbytes": 0, "outbytes": 0x38}, | |
10: {"inbytes": 0, "outbytes": 4}, | |
11: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
100: {"inbytes": 0x38, "outbytes": 0, "buffers": [25]}, | |
101: {"inbytes": 0x38, "outbytes": 0, "buffers": [25, 5]}, | |
}, | |
'nn::account::IAccountServiceForSystemService': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0x10, "outbytes": 1}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [10]}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [10]}, | |
4: {"inbytes": 0, "outbytes": 0x10}, | |
5: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::account::profile::IProfile']}, | |
50: {"inbytes": 8, "outbytes": 1, "pid": True}, | |
51: {"inbytes": 1, "outbytes": 0x10}, | |
100: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::INotifier']}, | |
101: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::INotifier']}, | |
102: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::account::baas::IManagerForSystemService']}, | |
103: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::INotifier']}, | |
110: {"inbytes": 0x18, "outbytes": 0, "buffers": [5]}, | |
111: {"inbytes": 0x18, "outbytes": 0}, | |
112: {"inbytes": 0x18, "outbytes": 4, "buffers": [6]}, | |
190: {"inbytes": 0x10, "outbytes": 0x10}, | |
998: {"inbytes": 0x10, "outbytes": 0}, | |
999: {"inbytes": 0x10, "outbytes": 0}, | |
}, | |
'nn::account::profile::IProfile': { | |
0: {"inbytes": 0, "outbytes": 0x38, "buffers": [26]}, | |
1: {"inbytes": 0, "outbytes": 0x38}, | |
10: {"inbytes": 0, "outbytes": 4}, | |
11: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
}, | |
'nn::account::IAccountServiceForApplication': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0x10, "outbytes": 1}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [10]}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [10]}, | |
4: {"inbytes": 0, "outbytes": 0x10}, | |
5: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::account::profile::IProfile']}, | |
50: {"inbytes": 8, "outbytes": 1, "pid": True}, | |
51: {"inbytes": 1, "outbytes": 0x10}, | |
100: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
101: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::account::baas::IManagerForApplication']}, | |
102: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
110: {"inbytes": 0x10, "outbytes": 0, "buffers": [5]}, | |
111: {"inbytes": 0x10, "outbytes": 0}, | |
120: {"inbytes": 4, "outbytes": 0, "inhandles": [1], "outinterfaces": ['nn::account::baas::IGuestLoginRequest']}, | |
}, | |
'nn::account::IBaasAccessTokenAccessor': { | |
0: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
1: {"inbytes": 0x10, "outbytes": 4, "buffers": [6]}, | |
2: {"inbytes": 0x10, "outbytes": 8}, | |
50: {"inbytes": 0x38, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
51: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
}, | |
'nn::account::nas::IOAuthProcedureForGuestLogin': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [26, 26]}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [9]}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [9], "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
10: {"inbytes": 0, "outbytes": 0x10}, | |
100: {"inbytes": 0, "outbytes": 8}, | |
101: {"inbytes": 0, "outbytes": 8}, | |
102: {"inbytes": 0, "outbytes": 0, "buffers": [10]}, | |
103: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::account::http::IOAuthProcedure': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [26, 26]}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [9]}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [9], "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
10: {"inbytes": 0, "outbytes": 0x10}, | |
}, | |
'nn::account::IAccountServiceForAdministrator': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0x10, "outbytes": 1}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [10]}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [10]}, | |
4: {"inbytes": 0, "outbytes": 0x10}, | |
5: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::account::profile::IProfile']}, | |
50: {"inbytes": 8, "outbytes": 1, "pid": True}, | |
51: {"inbytes": 1, "outbytes": 0x10}, | |
100: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::INotifier']}, | |
101: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::INotifier']}, | |
102: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::account::baas::IManagerForSystemService']}, | |
103: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::INotifier']}, | |
110: {"inbytes": 0x18, "outbytes": 0, "buffers": [5]}, | |
111: {"inbytes": 0x18, "outbytes": 0}, | |
112: {"inbytes": 0x18, "outbytes": 4, "buffers": [6]}, | |
190: {"inbytes": 0x10, "outbytes": 0x10}, | |
200: {"inbytes": 0, "outbytes": 0x10}, | |
201: {"inbytes": 0x10, "outbytes": 0}, | |
202: {"inbytes": 0x10, "outbytes": 0}, | |
203: {"inbytes": 0x10, "outbytes": 0}, | |
204: {"inbytes": 0x18, "outbytes": 0}, | |
205: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::account::profile::IProfileEditor']}, | |
230: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
250: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::account::baas::IAdministrator']}, | |
290: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::account::nas::IOAuthProcedureForGuestLogin']}, | |
998: {"inbytes": 0x10, "outbytes": 0}, | |
999: {"inbytes": 0x10, "outbytes": 0}, | |
}, | |
'nn::account::baas::IManagerForApplication': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 8}, | |
2: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
3: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
130: {"inbytes": 0, "outbytes": 8, "buffers": [26, 6]}, | |
150: {"inbytes": 4, "outbytes": 0, "buffers": [25], "inhandles": [1], "outinterfaces": ['nn::account::nas::IAuthorizationRequest']}, | |
}, | |
'nn::account::nas::IOAuthProcedureForNintendoAccountLinkage': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [26, 26]}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [9]}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [9], "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
10: {"inbytes": 0, "outbytes": 0x10}, | |
100: {"inbytes": 4, "outbytes": 0, "buffers": [26, 26]}, | |
101: {"inbytes": 0, "outbytes": 1}, | |
}, | |
}, | |
'ns': { | |
'nn::ns::detail::IDevelopInterface': { | |
0: {"inbytes": 0x18, "outbytes": 8}, | |
1: {"inbytes": 8, "outbytes": 0}, | |
2: {"inbytes": 8, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
5: {"inbytes": 0, "outbytes": 0x10}, | |
6: {"inbytes": 0, "outbytes": 0}, | |
7: {"inbytes": 0, "outbytes": 0x10, "buffers": [5]}, | |
8: {"inbytes": 0x10, "outbytes": 8}, | |
9: {"inbytes": 0x10, "outbytes": 8}, | |
}, | |
'nn::ovln::IReceiver': { | |
0: {"inbytes": 0x10, "outbytes": 0}, | |
1: {"inbytes": 0x10, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
3: {"inbytes": 0, "outbytes": 0x80}, | |
4: {"inbytes": 0, "outbytes": 0x88}, | |
}, | |
'nn::pdm::detail::IQueryService': { | |
0: {"inbytes": 4, "outbytes": 4, "buffers": [6]}, | |
1: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
2: {"inbytes": 0x10, "outbytes": 4, "buffers": [6]}, | |
3: {"inbytes": 8, "outbytes": 4, "buffers": [6]}, | |
4: {"inbytes": 8, "outbytes": 0x28}, | |
5: {"inbytes": 0x18, "outbytes": 0x28}, | |
6: {"inbytes": 0x10, "outbytes": 0x28}, | |
7: {"inbytes": 0, "outbytes": 4, "buffers": [6, 5]}, | |
8: {"inbytes": 4, "outbytes": 4, "buffers": [6]}, | |
9: {"inbytes": 0, "outbytes": 0xC}, | |
}, | |
'nn::mii::detail::IDatabaseService': { | |
0: {"inbytes": 4, "outbytes": 1}, | |
1: {"inbytes": 0, "outbytes": 1}, | |
2: {"inbytes": 4, "outbytes": 4}, | |
3: {"inbytes": 4, "outbytes": 4, "buffers": [6]}, | |
4: {"inbytes": 4, "outbytes": 4, "buffers": [6]}, | |
5: {"inbytes": 0x5C, "outbytes": 0x58}, | |
6: {"inbytes": 0xC, "outbytes": 0x58}, | |
7: {"inbytes": 4, "outbytes": 0x58}, | |
8: {"inbytes": 4, "outbytes": 4, "buffers": [6]}, | |
9: {"inbytes": 4, "outbytes": 4, "buffers": [6]}, | |
10: {"inbytes": 0x48, "outbytes": 0x44}, | |
11: {"inbytes": 0x11, "outbytes": 4}, | |
12: {"inbytes": 0x14, "outbytes": 0}, | |
13: {"inbytes": 0x44, "outbytes": 0}, | |
14: {"inbytes": 0x10, "outbytes": 0}, | |
15: {"inbytes": 0, "outbytes": 0}, | |
16: {"inbytes": 0, "outbytes": 0}, | |
17: {"inbytes": 0, "outbytes": 0}, | |
18: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
19: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
20: {"inbytes": 0, "outbytes": 1}, | |
21: {"inbytes": 0x58, "outbytes": 4}, | |
}, | |
'nn::mii::detail::IStaticService': { | |
0: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::mii::detail::IDatabaseService']}, | |
}, | |
'nn::ns::detail::IAsyncValue': { | |
0: {"inbytes": 0, "outbytes": 8}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::ovln::ISenderService': { | |
0: {"inbytes": 0x18, "outbytes": 0, "outinterfaces": ['nn::ovln::ISender']}, | |
}, | |
'nn::ns::detail::IAsyncResult': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::ns::detail::IApplicationManagerInterface': { | |
0: {"inbytes": 4, "outbytes": 4, "buffers": [6]}, | |
1: {"inbytes": 0, "outbytes": 8}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [6, 5]}, | |
4: {"inbytes": 8, "outbytes": 0}, | |
5: {"inbytes": 8, "outbytes": 0}, | |
6: {"inbytes": 0, "outbytes": 1}, | |
7: {"inbytes": 0, "outbytes": 0}, | |
8: {"inbytes": 0x10, "outbytes": 1}, | |
9: {"inbytes": 0x10, "outbytes": 0}, | |
11: {"inbytes": 8, "outbytes": 0x80}, | |
16: {"inbytes": 0x10, "outbytes": 0, "buffers": [5]}, | |
17: {"inbytes": 0x10, "outbytes": 4, "buffers": [6]}, | |
18: {"inbytes": 8, "outbytes": 1}, | |
19: {"inbytes": 8, "outbytes": 8}, | |
21: {"inbytes": 0x10, "outbytes": 0, "buffers": [22]}, | |
22: {"inbytes": 8, "outbytes": 0}, | |
26: {"inbytes": 0x10, "outbytes": 0}, | |
27: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
30: {"inbytes": 8, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::ns::detail::IAsyncValue']}, | |
31: {"inbytes": 0x10, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::ns::detail::IAsyncResult']}, | |
32: {"inbytes": 8, "outbytes": 0}, | |
33: {"inbytes": 8, "outbytes": 0}, | |
34: {"inbytes": 0, "outbytes": 0}, | |
35: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
36: {"inbytes": 0x10, "outbytes": 0}, | |
37: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
38: {"inbytes": 8, "outbytes": 0}, | |
39: {"inbytes": 8, "outbytes": 0}, | |
40: {"inbytes": 8, "outbytes": 8, "buffers": [21, 6]}, | |
41: {"inbytes": 8, "outbytes": 8}, | |
42: {"inbytes": 0, "outbytes": 0}, | |
43: {"inbytes": 0, "outbytes": 0}, | |
44: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
45: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
46: {"inbytes": 0, "outbytes": 0x10}, | |
47: {"inbytes": 1, "outbytes": 8}, | |
48: {"inbytes": 1, "outbytes": 8}, | |
49: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
52: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
53: {"inbytes": 8, "outbytes": 0}, | |
54: {"inbytes": 8, "outbytes": 0}, | |
55: {"inbytes": 4, "outbytes": 1}, | |
56: {"inbytes": 0x10, "outbytes": 0}, | |
57: {"inbytes": 8, "outbytes": 0}, | |
58: {"inbytes": 0, "outbytes": 0}, | |
59: {"inbytes": 1, "outbytes": 8}, | |
60: {"inbytes": 8, "outbytes": 1}, | |
61: {"inbytes": 0, "outbytes": 0x10}, | |
62: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::ns::detail::IGameCardStopper']}, | |
63: {"inbytes": 8, "outbytes": 1}, | |
100: {"inbytes": 0, "outbytes": 0}, | |
101: {"inbytes": 0, "outbytes": 0}, | |
200: {"inbytes": 0x10, "outbytes": 0x10}, | |
201: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::ns::detail::IProgressMonitorForDeleteUserSaveDataAll']}, | |
210: {"inbytes": 0x18, "outbytes": 0}, | |
220: {"inbytes": 0x10, "outbytes": 0}, | |
300: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
301: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
302: {"inbytes": 8, "outbytes": 8}, | |
303: {"inbytes": 8, "outbytes": 0}, | |
304: {"inbytes": 0, "outbytes": 8}, | |
305: {"inbytes": 8, "outbytes": 0}, | |
306: {"inbytes": 0, "outbytes": 8}, | |
307: {"inbytes": 8, "outbytes": 0}, | |
400: {"inbytes": 0x10, "outbytes": 4, "buffers": [6]}, | |
401: {"inbytes": 0, "outbytes": 0}, | |
403: {"inbytes": 0, "outbytes": 4}, | |
402: {"inbytes": 8, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::ns::detail::IAsyncResult']}, | |
}, | |
'nn::ns::detail::ISystemUpdateInterface': { | |
0: {"inbytes": 0, "outbytes": 1}, | |
1: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::ns::detail::ISystemUpdateControl']}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 0x10, "outbytes": 0}, | |
6: {"inbytes": 0, "outbytes": 0}, | |
7: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
8: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::pl::detail::ISharedFontManager': { | |
0: {"inbytes": 4, "outbytes": 0}, | |
1: {"inbytes": 4, "outbytes": 4}, | |
2: {"inbytes": 4, "outbytes": 4}, | |
3: {"inbytes": 4, "outbytes": 4}, | |
4: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
5: {"inbytes": 8, "outbytes": 8, "buffers": [6, 6, 6]}, | |
}, | |
'nn::pdm::detail::INotifyService': { | |
0: {"inbytes": 0x10, "outbytes": 0}, | |
2: {"inbytes": 1, "outbytes": 0}, | |
3: {"inbytes": 1, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::ovln::IReceiverService': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::ovln::IReceiver']}, | |
}, | |
'nn::ns::detail::IProgressMonitorForDeleteUserSaveDataAll': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 1}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
10: {"inbytes": 0, "outbytes": 0x28}, | |
}, | |
'nn::ns::detail::IGameCardStopper': { | |
}, | |
'nn::ns::detail::ISystemUpdateControl': { | |
0: {"inbytes": 0, "outbytes": 1}, | |
1: {"inbytes": 0, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::ns::detail::IAsyncValue']}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::ns::detail::IAsyncResult']}, | |
3: {"inbytes": 0, "outbytes": 0x10}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::ns::detail::IAsyncResult']}, | |
6: {"inbytes": 0, "outbytes": 0x10}, | |
7: {"inbytes": 0, "outbytes": 1}, | |
8: {"inbytes": 0, "outbytes": 0}, | |
9: {"inbytes": 0, "outbytes": 8, "buffers": [21]}, | |
10: {"inbytes": 0, "outbytes": 8, "buffers": [21, 6]}, | |
11: {"inbytes": 8, "outbytes": 0, "inhandles": [1]}, | |
12: {"inbytes": 0, "outbytes": 8, "buffers": [21]}, | |
13: {"inbytes": 0, "outbytes": 8, "buffers": [21, 6]}, | |
}, | |
'nn::ovln::ISender': { | |
0: {"inbytes": 0x88, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 4}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::aocsrv::detail::IAddOnContentManager': { | |
0: {"inbytes": 8, "outbytes": 4}, | |
1: {"inbytes": 0x10, "outbytes": 4, "buffers": [6]}, | |
2: {"inbytes": 8, "outbytes": 4, "pid": True}, | |
3: {"inbytes": 0x10, "outbytes": 4, "buffers": [6], "pid": True}, | |
4: {"inbytes": 8, "outbytes": 8}, | |
5: {"inbytes": 8, "outbytes": 8, "pid": True}, | |
}, | |
}, | |
'nfc': { | |
'nn::nfc::detail::IUser': { | |
0: {"inbytes": 0x10, "outbytes": 0, "buffers": [5], "pid": True}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 4}, | |
3: {"inbytes": 0, "outbytes": 1}, | |
}, | |
'nn::nfp::detail::ISystemManager': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::nfp::detail::ISystem']}, | |
}, | |
'nn::nfc::detail::ISystem': { | |
0: {"inbytes": 0x10, "outbytes": 0, "buffers": [5], "pid": True}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 4}, | |
3: {"inbytes": 0, "outbytes": 1}, | |
100: {"inbytes": 1, "outbytes": 0}, | |
}, | |
'nn::nfp::detail::ISystem': { | |
0: {"inbytes": 0x10, "outbytes": 0, "buffers": [5], "pid": True}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 4, "buffers": [10]}, | |
3: {"inbytes": 8, "outbytes": 0}, | |
4: {"inbytes": 8, "outbytes": 0}, | |
5: {"inbytes": 0x10, "outbytes": 0}, | |
6: {"inbytes": 8, "outbytes": 0}, | |
10: {"inbytes": 8, "outbytes": 0}, | |
11: {"inbytes": 8, "outbytes": 0}, | |
13: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
14: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
15: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
16: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
17: {"inbytes": 8, "outbytes": 0, "outhandles": [1]}, | |
18: {"inbytes": 8, "outbytes": 0, "outhandles": [1]}, | |
19: {"inbytes": 0, "outbytes": 4}, | |
20: {"inbytes": 8, "outbytes": 4}, | |
21: {"inbytes": 8, "outbytes": 4}, | |
100: {"inbytes": 8, "outbytes": 0}, | |
101: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
102: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
103: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
104: {"inbytes": 8, "outbytes": 0}, | |
106: {"inbytes": 8, "outbytes": 1}, | |
105: {"inbytes": 8, "outbytes": 0}, | |
}, | |
'nn::nfc::am::detail::IAmManager': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::nfc::am::detail::IAm']}, | |
}, | |
'nn::nfc::mifare::detail::IUserManager': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::nfc::mifare::detail::IUser']}, | |
}, | |
'nn::nfp::detail::IDebug': { | |
0: {"inbytes": 0x10, "outbytes": 0, "buffers": [5], "pid": True}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 4, "buffers": [10]}, | |
3: {"inbytes": 8, "outbytes": 0}, | |
4: {"inbytes": 8, "outbytes": 0}, | |
5: {"inbytes": 0x10, "outbytes": 0}, | |
6: {"inbytes": 8, "outbytes": 0}, | |
7: {"inbytes": 0xC, "outbytes": 0}, | |
8: {"inbytes": 8, "outbytes": 4, "buffers": [6]}, | |
9: {"inbytes": 8, "outbytes": 0, "buffers": [5]}, | |
10: {"inbytes": 8, "outbytes": 0}, | |
11: {"inbytes": 8, "outbytes": 0}, | |
12: {"inbytes": 0xC, "outbytes": 0, "buffers": [5]}, | |
13: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
14: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
15: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
16: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
17: {"inbytes": 8, "outbytes": 0, "outhandles": [1]}, | |
18: {"inbytes": 8, "outbytes": 0, "outhandles": [1]}, | |
19: {"inbytes": 0, "outbytes": 4}, | |
20: {"inbytes": 8, "outbytes": 4}, | |
21: {"inbytes": 8, "outbytes": 4}, | |
22: {"inbytes": 8, "outbytes": 4}, | |
100: {"inbytes": 8, "outbytes": 0}, | |
101: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
102: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
103: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
104: {"inbytes": 8, "outbytes": 0}, | |
106: {"inbytes": 8, "outbytes": 1}, | |
200: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
201: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
202: {"inbytes": 8, "outbytes": 0}, | |
203: {"inbytes": 0xC, "outbytes": 0}, | |
204: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
205: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
105: {"inbytes": 8, "outbytes": 0}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::nfc::am::detail::IAm': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 8, "outbytes": 0}, | |
}, | |
'nn::nfc::mifare::detail::IUser': { | |
0: {"inbytes": 0x10, "outbytes": 0, "buffers": [5], "pid": True}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 4, "buffers": [10]}, | |
3: {"inbytes": 8, "outbytes": 0}, | |
4: {"inbytes": 8, "outbytes": 0}, | |
5: {"inbytes": 8, "outbytes": 0, "buffers": [6, 5]}, | |
6: {"inbytes": 8, "outbytes": 0, "buffers": [5]}, | |
7: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
8: {"inbytes": 8, "outbytes": 0, "outhandles": [1]}, | |
9: {"inbytes": 8, "outbytes": 0, "outhandles": [1]}, | |
10: {"inbytes": 0, "outbytes": 4}, | |
11: {"inbytes": 8, "outbytes": 4}, | |
12: {"inbytes": 8, "outbytes": 4}, | |
}, | |
'nn::nfp::detail::IDebugManager': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::nfp::detail::IDebug']}, | |
}, | |
'nn::nfc::detail::IUserManager': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::nfc::detail::IUser']}, | |
}, | |
'nn::nfp::detail::IUser': { | |
0: {"inbytes": 0x10, "outbytes": 0, "buffers": [5], "pid": True}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 4, "buffers": [10]}, | |
3: {"inbytes": 8, "outbytes": 0}, | |
4: {"inbytes": 8, "outbytes": 0}, | |
5: {"inbytes": 0x10, "outbytes": 0}, | |
6: {"inbytes": 8, "outbytes": 0}, | |
7: {"inbytes": 0xC, "outbytes": 0}, | |
8: {"inbytes": 8, "outbytes": 4, "buffers": [6]}, | |
9: {"inbytes": 8, "outbytes": 0, "buffers": [5]}, | |
10: {"inbytes": 8, "outbytes": 0}, | |
11: {"inbytes": 8, "outbytes": 0}, | |
12: {"inbytes": 0xC, "outbytes": 0, "buffers": [5]}, | |
13: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
14: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
15: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
16: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
17: {"inbytes": 8, "outbytes": 0, "outhandles": [1]}, | |
18: {"inbytes": 8, "outbytes": 0, "outhandles": [1]}, | |
19: {"inbytes": 0, "outbytes": 4}, | |
20: {"inbytes": 8, "outbytes": 4}, | |
21: {"inbytes": 8, "outbytes": 4}, | |
22: {"inbytes": 8, "outbytes": 4}, | |
}, | |
'nn::nfc::detail::ISystemManager': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::nfc::detail::ISystem']}, | |
}, | |
'nn::nfp::detail::IUserManager': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::nfp::detail::IUser']}, | |
}, | |
}, | |
'psc': { | |
'nn::psc::sf::IPmModule': { | |
0: {"inbytes": 4, "outbytes": 0, "buffers": [5], "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 8}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::psc::sf::IPmControl': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0xC, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 4}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 0}, | |
6: {"inbytes": 0, "outbytes": 0x28, "buffers": [6, 6]}, | |
}, | |
'nn::psc::sf::IPmService': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::psc::sf::IPmModule']}, | |
}, | |
}, | |
'capsrv': { | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::mmnv::IRequest': { | |
0: {"inbytes": 0xC, "outbytes": 0}, | |
1: {"inbytes": 4, "outbytes": 0}, | |
2: {"inbytes": 0xC, "outbytes": 0}, | |
3: {"inbytes": 4, "outbytes": 4}, | |
}, | |
'nn::capsrv::sf::ICaptureControllerService': { | |
1: {"inbytes": 0x20, "outbytes": 0, "buffers": [70]}, | |
2: {"inbytes": 0x28, "outbytes": 0, "buffers": [70]}, | |
1001: {"inbytes": 0x10, "outbytes": 0}, | |
1002: {"inbytes": 0x18, "outbytes": 0}, | |
1011: {"inbytes": 8, "outbytes": 0}, | |
2001: {"inbytes": 1, "outbytes": 0}, | |
2002: {"inbytes": 1, "outbytes": 0}, | |
}, | |
'nn::capsrv::sf::IAlbumAccessorService': { | |
0: {"inbytes": 1, "outbytes": 8}, | |
1: {"inbytes": 1, "outbytes": 8, "buffers": [6]}, | |
2: {"inbytes": 0x18, "outbytes": 8, "buffers": [6]}, | |
3: {"inbytes": 0x18, "outbytes": 0}, | |
4: {"inbytes": 0x20, "outbytes": 0}, | |
5: {"inbytes": 1, "outbytes": 1}, | |
6: {"inbytes": 1, "outbytes": 0x30}, | |
7: {"inbytes": 0x18, "outbytes": 8}, | |
8: {"inbytes": 0x18, "outbytes": 8, "buffers": [6]}, | |
202: {"inbytes": 0x38, "outbytes": 0x20, "buffers": [5, 5]}, | |
301: {"inbytes": 0, "outbytes": 0x20, "buffers": [6]}, | |
401: {"inbytes": 0, "outbytes": 1}, | |
501: {"inbytes": 2, "outbytes": 8}, | |
10011: {"inbytes": 1, "outbytes": 0}, | |
8001: {"inbytes": 1, "outbytes": 0}, | |
8002: {"inbytes": 1, "outbytes": 0}, | |
8011: {"inbytes": 1, "outbytes": 0}, | |
8012: {"inbytes": 1, "outbytes": 0x10}, | |
}, | |
}, | |
'am': { | |
'nn::am::service::IWindowController': { | |
0: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::am::service::IWindow']}, | |
1: {"inbytes": 0, "outbytes": 8}, | |
10: {"inbytes": 0, "outbytes": 0}, | |
11: {"inbytes": 0, "outbytes": 0}, | |
12: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::am::service::ILibraryAppletCreator': { | |
0: {"inbytes": 8, "outbytes": 0, "outinterfaces": ['nn::am::service::ILibraryAppletAccessor']}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 1}, | |
10: {"inbytes": 8, "outbytes": 0, "outinterfaces": ['nn::am::service::IStorage']}, | |
11: {"inbytes": 0x10, "outbytes": 0, "inhandles": [1], "outinterfaces": ['nn::am::service::IStorage']}, | |
}, | |
'nn::am::service::ILibraryAppletSelfAccessor': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IStorage']}, | |
1: {"inbytes": 0, "outbytes": 0, "ininterfaces": ['nn::am::service::IStorage']}, | |
2: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IStorage']}, | |
3: {"inbytes": 0, "outbytes": 0, "ininterfaces": ['nn::am::service::IStorage']}, | |
5: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
6: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
10: {"inbytes": 0, "outbytes": 0}, | |
11: {"inbytes": 0, "outbytes": 8}, | |
12: {"inbytes": 0, "outbytes": 0x10}, | |
13: {"inbytes": 0, "outbytes": 1}, | |
14: {"inbytes": 0, "outbytes": 0x10}, | |
20: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IStorage']}, | |
25: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
30: {"inbytes": 0, "outbytes": 0, "ininterfaces": ['nn::am::service::IStorage']}, | |
31: {"inbytes": 0, "outbytes": 0, "ininterfaces": ['nn::am::service::IStorage']}, | |
}, | |
'nn::am::service::IWindow': { | |
}, | |
'nn::am::service::IAudioController': { | |
0: {"inbytes": 8, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 4}, | |
2: {"inbytes": 0, "outbytes": 4}, | |
3: {"inbytes": 0x10, "outbytes": 0}, | |
4: {"inbytes": 4, "outbytes": 0}, | |
}, | |
'nn::am::service::IApplicationCreator': { | |
0: {"inbytes": 8, "outbytes": 0, "outinterfaces": ['nn::am::service::IApplicationAccessor']}, | |
1: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IApplicationAccessor']}, | |
10: {"inbytes": 8, "outbytes": 0, "outinterfaces": ['nn::am::service::IApplicationAccessor']}, | |
100: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IApplicationAccessor']}, | |
}, | |
'nn::am::service::ILockAccessor': { | |
1: {"inbytes": 1, "outbytes": 1, "outhandles": [1]}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
}, | |
'nn::am::service::IDisplayController': { | |
0: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 1, "buffers": [6]}, | |
6: {"inbytes": 0, "outbytes": 1, "buffers": [6]}, | |
7: {"inbytes": 0, "outbytes": 1, "buffers": [6]}, | |
10: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
11: {"inbytes": 0, "outbytes": 0}, | |
12: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
13: {"inbytes": 0, "outbytes": 0}, | |
14: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
15: {"inbytes": 0, "outbytes": 0}, | |
16: {"inbytes": 0, "outbytes": 1, "outhandles": [1]}, | |
17: {"inbytes": 0, "outbytes": 1, "outhandles": [1]}, | |
18: {"inbytes": 0, "outbytes": 1, "outhandles": [1]}, | |
}, | |
'nn::am::service::ICommonStateGetter': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 4}, | |
2: {"inbytes": 0, "outbytes": 8}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 1}, | |
6: {"inbytes": 0, "outbytes": 4}, | |
7: {"inbytes": 0, "outbytes": 1}, | |
8: {"inbytes": 0, "outbytes": 1}, | |
9: {"inbytes": 0, "outbytes": 1}, | |
10: {"inbytes": 0, "outbytes": 0}, | |
11: {"inbytes": 0, "outbytes": 0}, | |
12: {"inbytes": 0, "outbytes": 0}, | |
13: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
20: {"inbytes": 0, "outbytes": 0, "ininterfaces": ['nn::am::service::IStorage']}, | |
30: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::ILockAccessor']}, | |
}, | |
'nn::am::service::ILibraryAppletProxy': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::ICommonStateGetter']}, | |
1: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::ISelfController']}, | |
2: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IWindowController']}, | |
3: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IAudioController']}, | |
4: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IDisplayController']}, | |
10: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IProcessWindingController']}, | |
11: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::ILibraryAppletCreator']}, | |
20: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::ILibraryAppletSelfAccessor']}, | |
1000: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IDebugFunctions']}, | |
}, | |
'nn::omm::detail::IOperationModeManager': { | |
0: {"inbytes": 0, "outbytes": 1}, | |
1: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 1}, | |
6: {"inbytes": 0, "outbytes": 0}, | |
7: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::am::service::IOverlayFunctions': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 8}, | |
3: {"inbytes": 8, "outbytes": 0}, | |
}, | |
'nn::am::service::IProcessWindingController': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
11: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::ILibraryAppletAccessor']}, | |
21: {"inbytes": 0, "outbytes": 0, "ininterfaces": ['nn::am::service::IStorage']}, | |
22: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IStorage']}, | |
23: {"inbytes": 0, "outbytes": 0}, | |
30: {"inbytes": 0, "outbytes": 0}, | |
40: {"inbytes": 0, "outbytes": 0, "ininterfaces": ['nn::am::service::ILibraryAppletAccessor']}, | |
}, | |
'nn::am::service::ISelfController': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
9: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
10: {"inbytes": 4, "outbytes": 0}, | |
11: {"inbytes": 1, "outbytes": 0}, | |
12: {"inbytes": 1, "outbytes": 0}, | |
13: {"inbytes": 3, "outbytes": 0}, | |
14: {"inbytes": 1, "outbytes": 0}, | |
40: {"inbytes": 0, "outbytes": 8}, | |
50: {"inbytes": 1, "outbytes": 0}, | |
51: {"inbytes": 0, "outbytes": 0}, | |
60: {"inbytes": 0x10, "outbytes": 0}, | |
61: {"inbytes": 1, "outbytes": 0}, | |
62: {"inbytes": 4, "outbytes": 0}, | |
63: {"inbytes": 0, "outbytes": 4}, | |
64: {"inbytes": 4, "outbytes": 0}, | |
}, | |
'nn::am::service::IApplicationFunctions': { | |
1: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::am::service::IStorage']}, | |
10: {"inbytes": 8, "outbytes": 0, "ininterfaces": ['nn::am::service::IStorage']}, | |
20: {"inbytes": 0x10, "outbytes": 8}, | |
21: {"inbytes": 0, "outbytes": 8}, | |
22: {"inbytes": 4, "outbytes": 0}, | |
23: {"inbytes": 0, "outbytes": 0x10}, | |
30: {"inbytes": 8, "outbytes": 0}, | |
31: {"inbytes": 0, "outbytes": 0}, | |
40: {"inbytes": 0, "outbytes": 1}, | |
}, | |
'nn::am::service::IApplicationProxy': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::ICommonStateGetter']}, | |
1: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::ISelfController']}, | |
2: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IWindowController']}, | |
3: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IAudioController']}, | |
4: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IDisplayController']}, | |
10: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IProcessWindingController']}, | |
11: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::ILibraryAppletCreator']}, | |
20: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IApplicationFunctions']}, | |
1000: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IDebugFunctions']}, | |
}, | |
'nn::am::service::IOverlayAppletProxy': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::ICommonStateGetter']}, | |
1: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::ISelfController']}, | |
2: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IWindowController']}, | |
3: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IAudioController']}, | |
4: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IDisplayController']}, | |
10: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IProcessWindingController']}, | |
11: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::ILibraryAppletCreator']}, | |
20: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IOverlayFunctions']}, | |
1000: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IDebugFunctions']}, | |
}, | |
'nn::am::service::IApplicationProxyService': { | |
0: {"inbytes": 8, "outbytes": 0, "inhandles": [1], "outinterfaces": ['nn::am::service::IApplicationProxy'], "pid": True}, | |
}, | |
'nn::am::service::IStorage': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IStorageAccessor']}, | |
}, | |
'nn::am::service::ILibraryAppletAccessor': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 1}, | |
10: {"inbytes": 0, "outbytes": 0}, | |
20: {"inbytes": 0, "outbytes": 0}, | |
25: {"inbytes": 0, "outbytes": 0}, | |
30: {"inbytes": 0, "outbytes": 0}, | |
100: {"inbytes": 0, "outbytes": 0, "ininterfaces": ['nn::am::service::IStorage']}, | |
101: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IStorage']}, | |
102: {"inbytes": 0, "outbytes": 0, "ininterfaces": ['nn::am::service::IStorage']}, | |
103: {"inbytes": 0, "outbytes": 0, "ininterfaces": ['nn::am::service::IStorage']}, | |
104: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IStorage']}, | |
106: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
110: {"inbytes": 0, "outbytes": 1}, | |
120: {"inbytes": 0, "outbytes": 8}, | |
150: {"inbytes": 0, "outbytes": 0}, | |
105: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
}, | |
'nn::am::service::IStorageAccessor': { | |
0: {"inbytes": 0, "outbytes": 8}, | |
10: {"inbytes": 8, "outbytes": 0, "buffers": [33]}, | |
11: {"inbytes": 8, "outbytes": 0, "buffers": [34]}, | |
}, | |
'nn::spsm::detail::IPowerStateInterface': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
2: {"inbytes": 0, "outbytes": 4}, | |
3: {"inbytes": 1, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
5: {"inbytes": 0, "outbytes": 4}, | |
6: {"inbytes": 0, "outbytes": 0x50}, | |
7: {"inbytes": 0, "outbytes": 0}, | |
8: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
9: {"inbytes": 8, "outbytes": 0}, | |
}, | |
'nn::am::service::IGlobalStateController': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 1, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
10: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::am::service::IAllSystemAppletProxiesService': { | |
100: {"inbytes": 8, "outbytes": 0, "inhandles": [1], "outinterfaces": ['nn::am::service::ISystemAppletProxy'], "pid": True}, | |
200: {"inbytes": 8, "outbytes": 0, "inhandles": [1], "outinterfaces": ['nn::am::service::ILibraryAppletProxy'], "pid": True}, | |
300: {"inbytes": 8, "outbytes": 0, "inhandles": [1], "outinterfaces": ['nn::am::service::IOverlayAppletProxy'], "pid": True}, | |
350: {"inbytes": 8, "outbytes": 0, "inhandles": [1], "outinterfaces": ['nn::am::service::IApplicationProxy'], "pid": True}, | |
400: {"inbytes": 8, "outbytes": 0, "outinterfaces": ['nn::am::service::ILibraryAppletCreator'], "pid": True}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::idle::detail::IPolicyManagerSystem': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0x28, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::am::service::IHomeMenuFunctions': { | |
10: {"inbytes": 0, "outbytes": 0}, | |
11: {"inbytes": 0, "outbytes": 0}, | |
12: {"inbytes": 0, "outbytes": 0}, | |
20: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IStorage']}, | |
21: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
30: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::ILockAccessor']}, | |
}, | |
'nn::am::service::IApplicationAccessor': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 1}, | |
10: {"inbytes": 0, "outbytes": 0}, | |
20: {"inbytes": 0, "outbytes": 0}, | |
25: {"inbytes": 0, "outbytes": 0}, | |
30: {"inbytes": 0, "outbytes": 0}, | |
101: {"inbytes": 0, "outbytes": 0}, | |
110: {"inbytes": 0, "outbytes": 0}, | |
111: {"inbytes": 0, "outbytes": 1}, | |
112: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IAppletAccessor']}, | |
120: {"inbytes": 0, "outbytes": 8}, | |
121: {"inbytes": 4, "outbytes": 0, "ininterfaces": ['nn::am::service::IStorage']}, | |
122: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
}, | |
'nn::am::service::IAppletAccessor': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 1}, | |
10: {"inbytes": 0, "outbytes": 0}, | |
20: {"inbytes": 0, "outbytes": 0}, | |
25: {"inbytes": 0, "outbytes": 0}, | |
30: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::am::service::ISystemAppletProxy': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::ICommonStateGetter']}, | |
1: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::ISelfController']}, | |
2: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IWindowController']}, | |
3: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IAudioController']}, | |
4: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IDisplayController']}, | |
10: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IProcessWindingController']}, | |
11: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::ILibraryAppletCreator']}, | |
20: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IHomeMenuFunctions']}, | |
21: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IGlobalStateController']}, | |
22: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IApplicationCreator']}, | |
1000: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IDebugFunctions']}, | |
}, | |
'nn::am::service::IDebugFunctions': { | |
0: {"inbytes": 4, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IApplicationAccessor']}, | |
10: {"inbytes": 4, "outbytes": 0}, | |
20: {"inbytes": 0, "outbytes": 0}, | |
}, | |
}, | |
'ssl': { | |
'nn::ssl::sf::ISslService': { | |
0: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::ssl::sf::ISslContext'], "pid": True}, | |
1: {"inbytes": 0, "outbytes": 4}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::ssl::sf::ISslContext': { | |
0: {"inbytes": 8, "outbytes": 0}, | |
1: {"inbytes": 4, "outbytes": 4}, | |
2: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::ssl::sf::ISslConnection']}, | |
3: {"inbytes": 0, "outbytes": 4}, | |
4: {"inbytes": 4, "outbytes": 8, "buffers": [5]}, | |
5: {"inbytes": 0, "outbytes": 8, "buffers": [5, 5]}, | |
6: {"inbytes": 8, "outbytes": 0}, | |
7: {"inbytes": 8, "outbytes": 0}, | |
8: {"inbytes": 4, "outbytes": 8}, | |
}, | |
'nn::ssl::sf::ISslConnection': { | |
0: {"inbytes": 4, "outbytes": 4}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
2: {"inbytes": 4, "outbytes": 0}, | |
3: {"inbytes": 4, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 4}, | |
5: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
6: {"inbytes": 0, "outbytes": 4}, | |
7: {"inbytes": 0, "outbytes": 4}, | |
8: {"inbytes": 0, "outbytes": 0}, | |
9: {"inbytes": 0, "outbytes": 8, "buffers": [6]}, | |
10: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
11: {"inbytes": 0, "outbytes": 4, "buffers": [5]}, | |
12: {"inbytes": 0, "outbytes": 4}, | |
13: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
14: {"inbytes": 8, "outbytes": 4}, | |
15: {"inbytes": 0, "outbytes": 0}, | |
16: {"inbytes": 0, "outbytes": 4}, | |
17: {"inbytes": 4, "outbytes": 0}, | |
18: {"inbytes": 0, "outbytes": 4}, | |
19: {"inbytes": 0, "outbytes": 0}, | |
20: {"inbytes": 4, "outbytes": 0}, | |
21: {"inbytes": 0, "outbytes": 4}, | |
}, | |
}, | |
'nim': { | |
'nn::ntc::detail::service::IStaticService': { | |
0: {"inbytes": 8, "outbytes": 0, "outinterfaces": ['nn::ntc::detail::service::IEnsureNetworkClockAvailabilityService']}, | |
}, | |
'nn::ntc::detail::service::IEnsureNetworkClockAvailabilityService': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 1}, | |
}, | |
'nn::nim::detail::INetworkInstallManager': { | |
0: {"inbytes": 0x18, "outbytes": 0x10}, | |
1: {"inbytes": 0x10, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
3: {"inbytes": 0x10, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncResult']}, | |
4: {"inbytes": 0x10, "outbytes": 0x28}, | |
5: {"inbytes": 0x10, "outbytes": 0}, | |
6: {"inbytes": 0x10, "outbytes": 0x10, "buffers": [5]}, | |
7: {"inbytes": 0x10, "outbytes": 0}, | |
8: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
9: {"inbytes": 0x10, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncResult']}, | |
10: {"inbytes": 0x10, "outbytes": 0x20}, | |
11: {"inbytes": 0x10, "outbytes": 0}, | |
12: {"inbytes": 0, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncValue']}, | |
13: {"inbytes": 0x10, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncValue']}, | |
14: {"inbytes": 8, "outbytes": 4, "buffers": [6]}, | |
15: {"inbytes": 0x10, "outbytes": 4, "buffers": [6]}, | |
16: {"inbytes": 0, "outbytes": 0, "buffers": [5], "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncValue']}, | |
17: {"inbytes": 0x10, "outbytes": 0}, | |
18: {"inbytes": 0x10, "outbytes": 0, "buffers": [5]}, | |
19: {"inbytes": 0x18, "outbytes": 0, "buffers": [22]}, | |
20: {"inbytes": 0x10, "outbytes": 8}, | |
21: {"inbytes": 0x10, "outbytes": 1}, | |
22: {"inbytes": 0, "outbytes": 0x10}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::nim::detail::IAsyncValue': { | |
0: {"inbytes": 0, "outbytes": 8}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::nim::detail::IAsyncResult': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
}, | |
}, | |
'lbl': { | |
'nn::lbl::detail::ILblController': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 4, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 4}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 4}, | |
6: {"inbytes": 8, "outbytes": 0}, | |
7: {"inbytes": 8, "outbytes": 0}, | |
8: {"inbytes": 0, "outbytes": 4}, | |
9: {"inbytes": 0, "outbytes": 0}, | |
10: {"inbytes": 0, "outbytes": 0}, | |
11: {"inbytes": 0, "outbytes": 1}, | |
12: {"inbytes": 0, "outbytes": 0}, | |
13: {"inbytes": 0, "outbytes": 0}, | |
14: {"inbytes": 0, "outbytes": 1}, | |
15: {"inbytes": 4, "outbytes": 0}, | |
16: {"inbytes": 0, "outbytes": 4}, | |
17: {"inbytes": 8, "outbytes": 0}, | |
18: {"inbytes": 4, "outbytes": 4}, | |
19: {"inbytes": 0xC, "outbytes": 0}, | |
20: {"inbytes": 0, "outbytes": 0xC}, | |
21: {"inbytes": 0xC, "outbytes": 0}, | |
22: {"inbytes": 0, "outbytes": 0xC}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
}, | |
'btm': { | |
'nn::btm::IBtmSystemCore': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 1}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 0}, | |
6: {"inbytes": 0, "outbytes": 1}, | |
}, | |
'nn::btm::IBtm': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0, "outbytes": 0x2A}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [26]}, | |
4: {"inbytes": 7, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 0, "buffers": [25]}, | |
6: {"inbytes": 4, "outbytes": 0}, | |
7: {"inbytes": 4, "outbytes": 0}, | |
8: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
9: {"inbytes": 0, "outbytes": 0, "buffers": [26]}, | |
10: {"inbytes": 0x60, "outbytes": 0}, | |
11: {"inbytes": 6, "outbytes": 0}, | |
12: {"inbytes": 6, "outbytes": 0}, | |
13: {"inbytes": 6, "outbytes": 0}, | |
14: {"inbytes": 0, "outbytes": 0}, | |
15: {"inbytes": 0, "outbytes": 0}, | |
16: {"inbytes": 6, "outbytes": 0}, | |
17: {"inbytes": 6, "outbytes": 0, "buffers": [25]}, | |
}, | |
'nn::btm::IBtmSystem': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::btm::IBtmSystemCore']}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::btm::IBtmDebug': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [26]}, | |
4: {"inbytes": 6, "outbytes": 0}, | |
5: {"inbytes": 6, "outbytes": 0}, | |
6: {"inbytes": 0xC, "outbytes": 0}, | |
7: {"inbytes": 4, "outbytes": 0}, | |
8: {"inbytes": 6, "outbytes": 0}, | |
}, | |
}, | |
'erpt': { | |
'nn::erpt::sf::IManager': { | |
0: {"inbytes": 4, "outbytes": 0, "buffers": [6]}, | |
1: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::erpt::sf::ISession': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::erpt::sf::IReport']}, | |
1: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::erpt::sf::IManager']}, | |
}, | |
'nn::erpt::sf::IContext': { | |
0: {"inbytes": 0, "outbytes": 0, "buffers": [5, 5]}, | |
1: {"inbytes": 4, "outbytes": 0, "buffers": [5, 5, 5]}, | |
}, | |
'nn::erpt::sf::IReport': { | |
0: {"inbytes": 0x14, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
2: {"inbytes": 4, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 4}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 8}, | |
}, | |
}, | |
'vi': { | |
'nn::visrv::sf::ISystemDisplayService': { | |
2201: {"inbytes": 0x10, "outbytes": 0}, | |
2203: {"inbytes": 0x18, "outbytes": 0}, | |
2204: {"inbytes": 8, "outbytes": 8}, | |
2205: {"inbytes": 0x10, "outbytes": 0}, | |
2207: {"inbytes": 0x10, "outbytes": 0}, | |
2209: {"inbytes": 0x10, "outbytes": 0}, | |
2312: {"inbytes": 0x10, "outbytes": 0x10, "buffers": [6]}, | |
3000: {"inbytes": 8, "outbytes": 8, "buffers": [6]}, | |
3002: {"inbytes": 8, "outbytes": 8, "buffers": [6]}, | |
3200: {"inbytes": 8, "outbytes": 0x10}, | |
3201: {"inbytes": 0x18, "outbytes": 0}, | |
3202: {"inbytes": 8, "outbytes": 8}, | |
3203: {"inbytes": 0x10, "outbytes": 0}, | |
3204: {"inbytes": 8, "outbytes": 4}, | |
3205: {"inbytes": 0x10, "outbytes": 0}, | |
3206: {"inbytes": 8, "outbytes": 4}, | |
3207: {"inbytes": 0x10, "outbytes": 0}, | |
3208: {"inbytes": 8, "outbytes": 4}, | |
3209: {"inbytes": 0x10, "outbytes": 0}, | |
3210: {"inbytes": 8, "outbytes": 4}, | |
3211: {"inbytes": 0x10, "outbytes": 0}, | |
3214: {"inbytes": 8, "outbytes": 4}, | |
3215: {"inbytes": 0x10, "outbytes": 0}, | |
3216: {"inbytes": 8, "outbytes": 4}, | |
3217: {"inbytes": 0x10, "outbytes": 0}, | |
1200: {"inbytes": 8, "outbytes": 8}, | |
1202: {"inbytes": 8, "outbytes": 8}, | |
1203: {"inbytes": 8, "outbytes": 8}, | |
3001: {"inbytes": 8, "outbytes": 8, "buffers": [6]}, | |
}, | |
'nn::cec::ICecManager': { | |
0: {"inbytes": 0, "outbytes": 8, "outhandles": [1]}, | |
1: {"inbytes": 4, "outbytes": 4}, | |
2: {"inbytes": 4, "outbytes": 0}, | |
3: {"inbytes": 0x18, "outbytes": 4}, | |
4: {"inbytes": 4, "outbytes": 0x18}, | |
5: {"inbytes": 0, "outbytes": 0x20}, | |
}, | |
'nn::visrv::sf::IManagerDisplayService': { | |
4201: {"inbytes": 0x10, "outbytes": 0}, | |
4205: {"inbytes": 0x10, "outbytes": 0}, | |
2301: {"inbytes": 8, "outbytes": 0}, | |
2302: {"inbytes": 8, "outbytes": 0, "outhandles": [1]}, | |
2402: {"inbytes": 8, "outbytes": 4}, | |
4203: {"inbytes": 0x10, "outbytes": 0}, | |
7000: {"inbytes": 1, "outbytes": 0}, | |
2300: {"inbytes": 8, "outbytes": 0, "outhandles": [1]}, | |
8000: {"inbytes": 0x10, "outbytes": 0}, | |
6000: {"inbytes": 0x10, "outbytes": 0}, | |
6001: {"inbytes": 0x10, "outbytes": 0}, | |
2010: {"inbytes": 0x18, "outbytes": 8}, | |
2011: {"inbytes": 8, "outbytes": 0}, | |
}, | |
'nn::visrv::sf::IApplicationDisplayService': { | |
100: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nns::hosbinder::IHOSBinderDriver']}, | |
101: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::visrv::sf::ISystemDisplayService']}, | |
102: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::visrv::sf::IManagerDisplayService']}, | |
2101: {"inbytes": 0x10, "outbytes": 0}, | |
5202: {"inbytes": 8, "outbytes": 0, "outhandles": [1]}, | |
1000: {"inbytes": 0, "outbytes": 8, "buffers": [6]}, | |
1010: {"inbytes": 0x40, "outbytes": 8}, | |
1011: {"inbytes": 0, "outbytes": 8}, | |
1020: {"inbytes": 8, "outbytes": 0}, | |
1101: {"inbytes": 0x10, "outbytes": 0}, | |
1102: {"inbytes": 8, "outbytes": 0x10}, | |
2031: {"inbytes": 8, "outbytes": 0}, | |
2020: {"inbytes": 0x50, "outbytes": 8, "buffers": [6], "pid": True}, | |
2021: {"inbytes": 8, "outbytes": 0}, | |
2030: {"inbytes": 0x10, "outbytes": 0x10, "buffers": [6]}, | |
}, | |
'nns::hosbinder::IHOSBinderDriver': { | |
0: {"inbytes": 0xC, "outbytes": 0, "buffers": [5, 6]}, | |
1: {"inbytes": 0xC, "outbytes": 0}, | |
2: {"inbytes": 8, "outbytes": 0, "outhandles": [1]}, | |
}, | |
'nn::visrv::sf::IApplicationRootService': { | |
0: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::visrv::sf::IApplicationDisplayService']}, | |
}, | |
'nn::visrv::sf::ISystemRootService': { | |
1: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::visrv::sf::IApplicationDisplayService']}, | |
3: {"inbytes": 0xC, "outbytes": 0, "outinterfaces": ['nn::visrv::sf::IApplicationDisplayService']}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::visrv::sf::IManagerRootService': { | |
2: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::visrv::sf::IApplicationDisplayService']}, | |
3: {"inbytes": 0xC, "outbytes": 0, "outinterfaces": ['nn::visrv::sf::IApplicationDisplayService']}, | |
}, | |
}, | |
'pctl': { | |
'nn::pctl::detail::ipc::IParentalControlServiceFactory': { | |
0: {"inbytes": 8, "outbytes": 0, "outinterfaces": ['nn::pctl::detail::ipc::IParentalControlService'], "pid": True}, | |
}, | |
'nn::pctl::detail::ipc::IParentalControlService': { | |
1403: {"inbytes": 0, "outbytes": 1}, | |
1001: {"inbytes": 0, "outbytes": 0}, | |
1002: {"inbytes": 0x10, "outbytes": 0, "buffers": [9]}, | |
1003: {"inbytes": 0x10, "outbytes": 0, "buffers": [9]}, | |
1004: {"inbytes": 0, "outbytes": 0}, | |
1005: {"inbytes": 0, "outbytes": 0}, | |
1006: {"inbytes": 0, "outbytes": 1}, | |
1007: {"inbytes": 0, "outbytes": 0}, | |
1008: {"inbytes": 0, "outbytes": 0}, | |
1009: {"inbytes": 0, "outbytes": 0}, | |
1010: {"inbytes": 0, "outbytes": 1}, | |
1011: {"inbytes": 0, "outbytes": 0}, | |
1031: {"inbytes": 0, "outbytes": 1}, | |
1032: {"inbytes": 0, "outbytes": 4}, | |
1033: {"inbytes": 4, "outbytes": 0}, | |
1034: {"inbytes": 4, "outbytes": 3}, | |
1035: {"inbytes": 0, "outbytes": 3}, | |
1036: {"inbytes": 3, "outbytes": 0}, | |
1037: {"inbytes": 0, "outbytes": 4}, | |
1038: {"inbytes": 4, "outbytes": 0}, | |
1039: {"inbytes": 0, "outbytes": 4}, | |
1040: {"inbytes": 4, "outbytes": 4, "buffers": [10]}, | |
1041: {"inbytes": 0, "outbytes": 0, "buffers": [9]}, | |
1042: {"inbytes": 8, "outbytes": 0}, | |
1043: {"inbytes": 0, "outbytes": 0}, | |
1044: {"inbytes": 4, "outbytes": 4, "buffers": [6]}, | |
1045: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
1201: {"inbytes": 0, "outbytes": 0, "buffers": [9]}, | |
1202: {"inbytes": 0, "outbytes": 0, "buffers": [9]}, | |
1203: {"inbytes": 0, "outbytes": 0, "buffers": [9]}, | |
1204: {"inbytes": 0, "outbytes": 0x20}, | |
1205: {"inbytes": 0x20, "outbytes": 1, "buffers": [9]}, | |
1206: {"inbytes": 0, "outbytes": 4}, | |
1401: {"inbytes": 0, "outbytes": 0x10, "buffers": [9]}, | |
1402: {"inbytes": 0x10, "outbytes": 0x10}, | |
1404: {"inbytes": 0, "outbytes": 0x10}, | |
1405: {"inbytes": 1, "outbytes": 0}, | |
1411: {"inbytes": 0x10, "outbytes": 0x10}, | |
1421: {"inbytes": 0x10, "outbytes": 4, "buffers": [10]}, | |
1422: {"inbytes": 0x10, "outbytes": 4, "buffers": [6]}, | |
1423: {"inbytes": 0x10, "outbytes": 4, "buffers": [10]}, | |
1424: {"inbytes": 0x10, "outbytes": 4}, | |
1431: {"inbytes": 0, "outbytes": 0}, | |
1432: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1451: {"inbytes": 0, "outbytes": 0}, | |
1452: {"inbytes": 0, "outbytes": 0}, | |
1453: {"inbytes": 0, "outbytes": 1}, | |
1454: {"inbytes": 0, "outbytes": 8}, | |
1455: {"inbytes": 0, "outbytes": 1}, | |
1456: {"inbytes": 0, "outbytes": 0x34}, | |
1457: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1471: {"inbytes": 0, "outbytes": 0}, | |
1472: {"inbytes": 0, "outbytes": 0}, | |
1601: {"inbytes": 0, "outbytes": 1}, | |
1602: {"inbytes": 0, "outbytes": 1}, | |
1603: {"inbytes": 0, "outbytes": 2}, | |
1901: {"inbytes": 8, "outbytes": 0}, | |
1902: {"inbytes": 0, "outbytes": 0}, | |
1941: {"inbytes": 0, "outbytes": 0}, | |
1951: {"inbytes": 0x34, "outbytes": 0}, | |
1012: {"inbytes": 0, "outbytes": 4}, | |
2001: {"inbytes": 0, "outbytes": 8, "buffers": [9], "outhandles": [1]}, | |
2002: {"inbytes": 8, "outbytes": 0x10}, | |
2003: {"inbytes": 0x10, "outbytes": 8, "outhandles": [1]}, | |
2004: {"inbytes": 8, "outbytes": 0x10}, | |
2005: {"inbytes": 0, "outbytes": 8, "outhandles": [1]}, | |
2006: {"inbytes": 8, "outbytes": 0x10}, | |
2007: {"inbytes": 1, "outbytes": 8, "outhandles": [1]}, | |
2008: {"inbytes": 0xC, "outbytes": 0}, | |
2009: {"inbytes": 0x10, "outbytes": 0xC, "buffers": [6], "outhandles": [1]}, | |
2010: {"inbytes": 8, "outbytes": 4, "buffers": [6]}, | |
2011: {"inbytes": 0x10, "outbytes": 0xC, "buffers": [10], "outhandles": [1]}, | |
2012: {"inbytes": 8, "outbytes": 4, "buffers": [10]}, | |
2013: {"inbytes": 0, "outbytes": 8, "outhandles": [1]}, | |
2014: {"inbytes": 8, "outbytes": 0}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
}, | |
'npns': { | |
'nn::npns::INpnsSystem': { | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 8, "outbytes": 0}, | |
3: {"inbytes": 2, "outbytes": 0, "buffers": [6]}, | |
4: {"inbytes": 2, "outbytes": 0, "buffers": [6]}, | |
5: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
6: {"inbytes": 0, "outbytes": 0}, | |
7: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
11: {"inbytes": 0, "outbytes": 0, "buffers": [9]}, | |
12: {"inbytes": 0, "outbytes": 0, "buffers": [9]}, | |
13: {"inbytes": 0, "outbytes": 1, "buffers": [9]}, | |
21: {"inbytes": 0x10, "outbytes": 0x28}, | |
22: {"inbytes": 0x18, "outbytes": 0x28}, | |
23: {"inbytes": 0x10, "outbytes": 0}, | |
24: {"inbytes": 0x18, "outbytes": 0}, | |
25: {"inbytes": 0x28, "outbytes": 1}, | |
31: {"inbytes": 0x10, "outbytes": 0}, | |
101: {"inbytes": 0, "outbytes": 0}, | |
102: {"inbytes": 0, "outbytes": 0}, | |
103: {"inbytes": 0, "outbytes": 4}, | |
111: {"inbytes": 0, "outbytes": 0, "buffers": [10]}, | |
112: {"inbytes": 0, "outbytes": 0}, | |
113: {"inbytes": 0, "outbytes": 0}, | |
114: {"inbytes": 0, "outbytes": 0, "buffers": [9, 9]}, | |
115: {"inbytes": 0, "outbytes": 0, "buffers": [10, 10]}, | |
}, | |
'nn::npns::INpnsUser': { | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 8, "outbytes": 0}, | |
3: {"inbytes": 2, "outbytes": 0, "buffers": [6]}, | |
4: {"inbytes": 2, "outbytes": 0, "buffers": [6]}, | |
5: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
7: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
21: {"inbytes": 0x10, "outbytes": 0x28}, | |
23: {"inbytes": 0x10, "outbytes": 0}, | |
25: {"inbytes": 0x28, "outbytes": 1}, | |
101: {"inbytes": 0, "outbytes": 0}, | |
102: {"inbytes": 0, "outbytes": 0}, | |
103: {"inbytes": 0, "outbytes": 4}, | |
111: {"inbytes": 0, "outbytes": 0, "buffers": [10]}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
}, | |
'eupld': { | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::eupld::sf::IControl': { | |
0: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [5, 5]}, | |
3: {"inbytes": 8, "outbytes": 0}, | |
}, | |
'nn::eupld::sf::IRequest': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 0}, | |
}, | |
}, | |
'arp': { | |
'nn::arp::detail::IWriter': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::arp::detail::IRegistrar']}, | |
1: {"inbytes": 8, "outbytes": 0}, | |
}, | |
'nn::arp::detail::IReader': { | |
0: {"inbytes": 8, "outbytes": 0x10}, | |
1: {"inbytes": 8, "outbytes": 0x10}, | |
2: {"inbytes": 8, "outbytes": 0, "buffers": [22]}, | |
3: {"inbytes": 8, "outbytes": 0, "buffers": [22]}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::arp::detail::IRegistrar': { | |
0: {"inbytes": 8, "outbytes": 0}, | |
1: {"inbytes": 0x10, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [21]}, | |
}, | |
}, | |
'es': { | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::es::IETicketService': { | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [5, 5]}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [9]}, | |
4: {"inbytes": 4, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 0}, | |
6: {"inbytes": 0, "outbytes": 0}, | |
7: {"inbytes": 0, "outbytes": 0, "buffers": [9]}, | |
8: {"inbytes": 0x10, "outbytes": 0, "buffers": [22]}, | |
9: {"inbytes": 0, "outbytes": 4}, | |
10: {"inbytes": 0, "outbytes": 4}, | |
11: {"inbytes": 0, "outbytes": 4, "buffers": [10]}, | |
12: {"inbytes": 0, "outbytes": 4, "buffers": [10]}, | |
13: {"inbytes": 0, "outbytes": 4, "buffers": [10, 5]}, | |
14: {"inbytes": 0x10, "outbytes": 8}, | |
15: {"inbytes": 0x10, "outbytes": 8}, | |
16: {"inbytes": 0x10, "outbytes": 8, "buffers": [6]}, | |
17: {"inbytes": 0x10, "outbytes": 8, "buffers": [6]}, | |
18: {"inbytes": 0, "outbytes": 0, "buffers": [10, 9]}, | |
19: {"inbytes": 0, "outbytes": 4, "buffers": [10, 9]}, | |
20: {"inbytes": 0, "outbytes": 0, "buffers": [22, 22, 5]}, | |
}, | |
}, | |
'fatal': { | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::fatalsrv::IService': { | |
0: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
1: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
2: {"inbytes": 0x10, "outbytes": 0, "buffers": [21], "pid": True}, | |
}, | |
'nn::fatalsrv::IPrivateService': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
}, | |
}, | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# from 2.0.0 | |
data2 = { | |
'fs': { | |
'nn::fssrv::sf::IFileSystemProxyForLoader': { | |
0: {"inbytes": 8, "outbytes": 0, "buffers": [25], "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
1: {"inbytes": 8, "outbytes": 1}, | |
}, | |
'nn::fssrv::sf::IEventNotifier': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
}, | |
'nn::fssrv::sf::IFileSystemProxy': { | |
1: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
2: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
7: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
8: {"inbytes": 0x10, "outbytes": 0, "buffers": [25], "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
11: {"inbytes": 4, "outbytes": 0, "buffers": [25], "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
12: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IStorage']}, | |
13: {"inbytes": 0, "outbytes": 0}, | |
17: {"inbytes": 0, "outbytes": 0, "buffers": [25], "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
18: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
19: {"inbytes": 0, "outbytes": 0}, | |
21: {"inbytes": 8, "outbytes": 0}, | |
22: {"inbytes": 0x90, "outbytes": 0}, | |
23: {"inbytes": 0x80, "outbytes": 0}, | |
24: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
25: {"inbytes": 0x10, "outbytes": 0}, | |
26: {"inbytes": 0, "outbytes": 0}, | |
27: {"inbytes": 0, "outbytes": 1}, | |
30: {"inbytes": 8, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IStorage']}, | |
31: {"inbytes": 8, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
51: {"inbytes": 0x48, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
52: {"inbytes": 0x48, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
53: {"inbytes": 0x48, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
58: {"inbytes": 8, "outbytes": 0, "buffers": [6]}, | |
59: {"inbytes": 0x10, "outbytes": 0, "buffers": [5]}, | |
60: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::ISaveDataInfoReader']}, | |
61: {"inbytes": 1, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::ISaveDataInfoReader']}, | |
80: {"inbytes": 0x48, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IFile']}, | |
100: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
110: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
200: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IStorage']}, | |
202: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IStorage']}, | |
203: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IStorage']}, | |
400: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IDeviceOperator']}, | |
500: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IEventNotifier']}, | |
501: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IEventNotifier']}, | |
600: {"inbytes": 8, "outbytes": 0}, | |
601: {"inbytes": 0x10, "outbytes": 8}, | |
602: {"inbytes": 8, "outbytes": 0, "buffers": [6]}, | |
603: {"inbytes": 8, "outbytes": 0}, | |
604: {"inbytes": 8, "outbytes": 0}, | |
605: {"inbytes": 0, "outbytes": 0}, | |
606: {"inbytes": 0x10, "outbytes": 0x10}, | |
607: {"inbytes": 0x20, "outbytes": 0}, | |
608: {"inbytes": 0, "outbytes": 0}, | |
609: {"inbytes": 0, "outbytes": 0x10, "buffers": [25]}, | |
620: {"inbytes": 0x10, "outbytes": 0}, | |
800: {"inbytes": 0, "outbytes": 0x80}, | |
1000: {"inbytes": 4, "outbytes": 0, "buffers": [25]}, | |
1001: {"inbytes": 0x10, "outbytes": 0}, | |
1002: {"inbytes": 0, "outbytes": 0, "buffers": [25]}, | |
1003: {"inbytes": 0, "outbytes": 0}, | |
1004: {"inbytes": 4, "outbytes": 0}, | |
1005: {"inbytes": 0, "outbytes": 4}, | |
1006: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
}, | |
'nn::fssrv::sf::ISaveDataInfoReader': { | |
0: {"inbytes": 0, "outbytes": 8, "buffers": [6]}, | |
}, | |
'nn::fssrv::sf::IFile': { | |
0: {"inbytes": 0x18, "outbytes": 8, "buffers": [70]}, | |
1: {"inbytes": 0x18, "outbytes": 0, "buffers": [69]}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 8, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 8}, | |
}, | |
'nn::fssrv::sf::IFileSystem': { | |
0: {"inbytes": 0x10, "outbytes": 0, "buffers": [25]}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [25]}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [25]}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [25]}, | |
4: {"inbytes": 0, "outbytes": 0, "buffers": [25]}, | |
5: {"inbytes": 0, "outbytes": 0, "buffers": [25, 25]}, | |
6: {"inbytes": 0, "outbytes": 0, "buffers": [25, 25]}, | |
7: {"inbytes": 0, "outbytes": 4, "buffers": [25]}, | |
8: {"inbytes": 4, "outbytes": 0, "buffers": [25], "outinterfaces": ['nn::fssrv::sf::IFile']}, | |
9: {"inbytes": 4, "outbytes": 0, "buffers": [25], "outinterfaces": ['nn::fssrv::sf::IDirectory']}, | |
10: {"inbytes": 0, "outbytes": 0}, | |
11: {"inbytes": 0, "outbytes": 8, "buffers": [25]}, | |
12: {"inbytes": 0, "outbytes": 8, "buffers": [25]}, | |
}, | |
'nn::fssrv::sf::IStorage': { | |
0: {"inbytes": 0x10, "outbytes": 0, "buffers": [70]}, | |
1: {"inbytes": 0x10, "outbytes": 0, "buffers": [69]}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 8, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 8}, | |
}, | |
'nn::fssrv::sf::IDeviceOperator': { | |
0: {"inbytes": 0, "outbytes": 1}, | |
1: {"inbytes": 0, "outbytes": 8}, | |
2: {"inbytes": 8, "outbytes": 0, "buffers": [6]}, | |
3: {"inbytes": 0, "outbytes": 8}, | |
4: {"inbytes": 0, "outbytes": 8}, | |
5: {"inbytes": 8, "outbytes": 0x18, "buffers": [6]}, | |
100: {"inbytes": 8, "outbytes": 0, "buffers": [6]}, | |
101: {"inbytes": 0, "outbytes": 8}, | |
110: {"inbytes": 4, "outbytes": 0}, | |
111: {"inbytes": 4, "outbytes": 8}, | |
112: {"inbytes": 0, "outbytes": 4}, | |
113: {"inbytes": 8, "outbytes": 0x18, "buffers": [6]}, | |
114: {"inbytes": 8, "outbytes": 0, "buffers": [6]}, | |
200: {"inbytes": 0, "outbytes": 1}, | |
201: {"inbytes": 0x10, "outbytes": 0}, | |
202: {"inbytes": 0, "outbytes": 4}, | |
203: {"inbytes": 4, "outbytes": 0x10}, | |
204: {"inbytes": 0, "outbytes": 0}, | |
205: {"inbytes": 4, "outbytes": 1}, | |
206: {"inbytes": 0x10, "outbytes": 0, "buffers": [6]}, | |
207: {"inbytes": 0x10, "outbytes": 0, "buffers": [6, 5]}, | |
208: {"inbytes": 8, "outbytes": 0, "buffers": [6]}, | |
209: {"inbytes": 0x10, "outbytes": 0, "buffers": [6]}, | |
210: {"inbytes": 1, "outbytes": 0}, | |
211: {"inbytes": 0x10, "outbytes": 0, "buffers": [6]}, | |
212: {"inbytes": 0x10, "outbytes": 0, "buffers": [6, 5]}, | |
213: {"inbytes": 8, "outbytes": 0, "buffers": [5]}, | |
214: {"inbytes": 8, "outbytes": 0, "buffers": [6]}, | |
215: {"inbytes": 0, "outbytes": 0}, | |
216: {"inbytes": 0, "outbytes": 0x10}, | |
300: {"inbytes": 4, "outbytes": 0}, | |
301: {"inbytes": 0, "outbytes": 4}, | |
}, | |
'nn::fssrv::sf::IProgramRegistry': { | |
0: {"inbytes": 0x28, "outbytes": 0, "buffers": [5, 5]}, | |
1: {"inbytes": 8, "outbytes": 0}, | |
256: {"inbytes": 1, "outbytes": 0}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::fssrv::sf::IDirectory': { | |
0: {"inbytes": 0, "outbytes": 8, "buffers": [6]}, | |
1: {"inbytes": 0, "outbytes": 8}, | |
}, | |
}, | |
'loader': { | |
'nn::ldr::detail::IRoInterface': { | |
0: {"inbytes": 0x28, "outbytes": 8, "pid": True}, | |
1: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
2: {"inbytes": 0x18, "outbytes": 0, "pid": True}, | |
3: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
4: {"inbytes": 8, "outbytes": 0, "inhandles": [1], "pid": True}, | |
}, | |
'nn::ldr::detail::IProcessManagerInterface': { | |
0: {"inbytes": 0x10, "outbytes": 0, "inhandles": [1], "outhandles": [2]}, | |
1: {"inbytes": 0x10, "outbytes": 0, "buffers": [26]}, | |
2: {"inbytes": 0x10, "outbytes": 8}, | |
3: {"inbytes": 8, "outbytes": 0}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::ldr::detail::IShellInterface': { | |
0: {"inbytes": 0x10, "outbytes": 0, "buffers": [9]}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::ldr::detail::IDebugMonitorInterface': { | |
0: {"inbytes": 0x10, "outbytes": 0, "buffers": [9]}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 8, "outbytes": 4, "buffers": [10]}, | |
}, | |
}, | |
'ncm': { | |
'nn::ncm::IContentStorage': { | |
0: {"inbytes": 0, "outbytes": 0x10}, | |
1: {"inbytes": 0x28, "outbytes": 0}, | |
2: {"inbytes": 0x10, "outbytes": 0}, | |
3: {"inbytes": 0x10, "outbytes": 1}, | |
4: {"inbytes": 0x18, "outbytes": 0, "buffers": [5]}, | |
5: {"inbytes": 0x20, "outbytes": 0}, | |
6: {"inbytes": 0x10, "outbytes": 0}, | |
7: {"inbytes": 0x10, "outbytes": 1}, | |
8: {"inbytes": 0x10, "outbytes": 0, "buffers": [26]}, | |
9: {"inbytes": 0x10, "outbytes": 0, "buffers": [26]}, | |
10: {"inbytes": 0, "outbytes": 0}, | |
11: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
12: {"inbytes": 0, "outbytes": 4}, | |
13: {"inbytes": 4, "outbytes": 4, "buffers": [6]}, | |
14: {"inbytes": 0x10, "outbytes": 8}, | |
15: {"inbytes": 0, "outbytes": 0}, | |
16: {"inbytes": 0x30, "outbytes": 0}, | |
17: {"inbytes": 0x18, "outbytes": 0}, | |
18: {"inbytes": 0x18, "outbytes": 0, "buffers": [6]}, | |
19: {"inbytes": 0x10, "outbytes": 0x10}, | |
20: {"inbytes": 0x10, "outbytes": 0x10}, | |
21: {"inbytes": 0x18, "outbytes": 0, "buffers": [5]}, | |
22: {"inbytes": 0, "outbytes": 8}, | |
23: {"inbytes": 0, "outbytes": 8}, | |
}, | |
'nn::ncm::IContentMetaDatabase': { | |
0: {"inbytes": 0x10, "outbytes": 0, "buffers": [5]}, | |
1: {"inbytes": 0x10, "outbytes": 8, "buffers": [6]}, | |
2: {"inbytes": 0x10, "outbytes": 0}, | |
3: {"inbytes": 0x18, "outbytes": 0x10}, | |
4: {"inbytes": 0x18, "outbytes": 4, "buffers": [6]}, | |
5: {"inbytes": 0x20, "outbytes": 8, "buffers": [6]}, | |
6: {"inbytes": 8, "outbytes": 0x10}, | |
7: {"inbytes": 1, "outbytes": 8, "buffers": [6]}, | |
8: {"inbytes": 0x10, "outbytes": 1}, | |
9: {"inbytes": 0, "outbytes": 1, "buffers": [5]}, | |
10: {"inbytes": 0x10, "outbytes": 8}, | |
11: {"inbytes": 0x10, "outbytes": 4}, | |
12: {"inbytes": 0x10, "outbytes": 8}, | |
13: {"inbytes": 0, "outbytes": 0}, | |
14: {"inbytes": 0, "outbytes": 0, "buffers": [6, 5]}, | |
15: {"inbytes": 0, "outbytes": 0}, | |
16: {"inbytes": 0x20, "outbytes": 1}, | |
17: {"inbytes": 0x18, "outbytes": 4, "buffers": [6]}, | |
18: {"inbytes": 0x10, "outbytes": 1}, | |
19: {"inbytes": 0x10, "outbytes": 4}, | |
}, | |
'nn::lr::ILocationResolverManager': { | |
0: {"inbytes": 1, "outbytes": 0, "outinterfaces": ['nn::lr::ILocationResolver']}, | |
1: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::lr::IRegisteredLocationResolver']}, | |
2: {"inbytes": 1, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::lr::IAddOnContentLocationResolver']}, | |
}, | |
'nn::lr::IAddOnContentLocationResolver': { | |
0: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
1: {"inbytes": 0x10, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::lr::IRegisteredLocationResolver': { | |
0: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
1: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
2: {"inbytes": 8, "outbytes": 0}, | |
3: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
4: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
5: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
6: {"inbytes": 8, "outbytes": 0}, | |
7: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::ncm::IContentManager': { | |
0: {"inbytes": 1, "outbytes": 0}, | |
1: {"inbytes": 1, "outbytes": 0}, | |
2: {"inbytes": 1, "outbytes": 0}, | |
3: {"inbytes": 1, "outbytes": 0}, | |
4: {"inbytes": 1, "outbytes": 0, "outinterfaces": ['nn::ncm::IContentStorage']}, | |
5: {"inbytes": 1, "outbytes": 0, "outinterfaces": ['nn::ncm::IContentMetaDatabase']}, | |
8: {"inbytes": 1, "outbytes": 0}, | |
9: {"inbytes": 1, "outbytes": 0}, | |
10: {"inbytes": 1, "outbytes": 0}, | |
11: {"inbytes": 1, "outbytes": 0}, | |
12: {"inbytes": 1, "outbytes": 0}, | |
}, | |
'nn::lr::ILocationResolver': { | |
0: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
1: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
2: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
3: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
4: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
5: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
6: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
7: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
8: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
9: {"inbytes": 0, "outbytes": 0}, | |
}, | |
}, | |
'pm': { | |
'nn::pm::detail::IInformationInterface': { | |
0: {"inbytes": 8, "outbytes": 8}, | |
}, | |
'nn::pm::detail::IShellInterface': { | |
0: {"inbytes": 0x18, "outbytes": 8}, | |
1: {"inbytes": 8, "outbytes": 0}, | |
2: {"inbytes": 8, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
4: {"inbytes": 0, "outbytes": 0x10}, | |
5: {"inbytes": 8, "outbytes": 0}, | |
6: {"inbytes": 8, "outbytes": 0}, | |
7: {"inbytes": 0, "outbytes": 0}, | |
8: {"inbytes": 0, "outbytes": 8}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::pm::detail::IBootModeInterface': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::pm::detail::IDebugMonitorInterface': { | |
0: {"inbytes": 8, "outbytes": 4, "buffers": [6]}, | |
1: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
2: {"inbytes": 8, "outbytes": 0}, | |
3: {"inbytes": 8, "outbytes": 8}, | |
4: {"inbytes": 8, "outbytes": 0, "outhandles": [1]}, | |
5: {"inbytes": 0, "outbytes": 8}, | |
6: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
}, | |
}, | |
'sm': { | |
'nn::sm::detail::IManagerInterface': { | |
0: {"inbytes": 8, "outbytes": 0, "buffers": [5, 5]}, | |
1: {"inbytes": 8, "outbytes": 0}, | |
}, | |
'nn::sm::detail::IUserInterface': { | |
0: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
1: {"inbytes": 8, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0x10, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 8, "outbytes": 0}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
}, | |
'spl': { | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::spl::detail::IGeneralInterface': { | |
0: {"inbytes": 4, "outbytes": 8}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [10, 9, 9, 9]}, | |
2: {"inbytes": 0x18, "outbytes": 0x10}, | |
3: {"inbytes": 0x24, "outbytes": 0}, | |
4: {"inbytes": 0x20, "outbytes": 0x10}, | |
5: {"inbytes": 0x10, "outbytes": 0}, | |
7: {"inbytes": 0, "outbytes": 0, "buffers": [10]}, | |
9: {"inbytes": 0x24, "outbytes": 0, "buffers": [9]}, | |
10: {"inbytes": 0, "outbytes": 4, "buffers": [10, 9, 9, 9]}, | |
11: {"inbytes": 0, "outbytes": 1}, | |
12: {"inbytes": 0x18, "outbytes": 0x10}, | |
13: {"inbytes": 0x24, "outbytes": 0, "buffers": [10, 9]}, | |
14: {"inbytes": 0x18, "outbytes": 0x10}, | |
15: {"inbytes": 0x14, "outbytes": 0, "buffers": [70, 69]}, | |
16: {"inbytes": 4, "outbytes": 0x10, "buffers": [9]}, | |
17: {"inbytes": 0x24, "outbytes": 0, "buffers": [9]}, | |
18: {"inbytes": 0, "outbytes": 0x10, "buffers": [9, 9, 9]}, | |
19: {"inbytes": 0x14, "outbytes": 0}, | |
20: {"inbytes": 0x10, "outbytes": 0x10}, | |
21: {"inbytes": 0, "outbytes": 4}, | |
22: {"inbytes": 4, "outbytes": 0}, | |
23: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
}, | |
'nn::spl::detail::IRandomInterface': { | |
0: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
}, | |
}, | |
'usb': { | |
'nn::usb::hs::IClientEpSession': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
4: {"inbytes": 0x18, "outbytes": 4}, | |
5: {"inbytes": 4, "outbytes": 4, "buffers": [6]}, | |
6: {"inbytes": 0x20, "outbytes": 4, "buffers": [5]}, | |
}, | |
'nn::usb::ds::IDsEndpoint': { | |
0: {"inbytes": 0x10, "outbytes": 4}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
3: {"inbytes": 0, "outbytes": 0x84}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 1, "outbytes": 0}, | |
}, | |
'nn::usb::hs::IClientIfSession': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 1, "outbytes": 0, "buffers": [6]}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
3: {"inbytes": 1, "outbytes": 0, "buffers": [6]}, | |
4: {"inbytes": 0, "outbytes": 4}, | |
5: {"inbytes": 0x10, "outbytes": 0}, | |
6: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
7: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
8: {"inbytes": 0, "outbytes": 0}, | |
9: {"inbytes": 0x14, "outbytes": 7, "outinterfaces": ['nn::usb::hs::IClientEpSession']}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::usb::ds::IDsService': { | |
0: {"inbytes": 4, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0, "inhandles": [1]}, | |
2: {"inbytes": 0, "outbytes": 1, "buffers": [5, 5], "outinterfaces": ['nn::usb::ds::IDsInterface']}, | |
3: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
4: {"inbytes": 0, "outbytes": 4}, | |
5: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
}, | |
'nn::usb::pd::detail::IPdCradleSession': { | |
0: {"inbytes": 8, "outbytes": 0}, | |
1: {"inbytes": 4, "outbytes": 4}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 0, "outbytes": 2}, | |
5: {"inbytes": 0, "outbytes": 2}, | |
6: {"inbytes": 0, "outbytes": 2}, | |
}, | |
'nn::usb::pm::IPmService': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
3: {"inbytes": 0, "outbytes": 4}, | |
4: {"inbytes": 8, "outbytes": 0}, | |
5: {"inbytes": 4, "outbytes": 4}, | |
}, | |
'nn::usb::pd::detail::IPdSession': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0x14}, | |
3: {"inbytes": 0, "outbytes": 4}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 0}, | |
6: {"inbytes": 1, "outbytes": 0}, | |
}, | |
'nn::usb::pd::detail::IPdCradleManager': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::usb::pd::detail::IPdCradleSession']}, | |
}, | |
'nn::usb::hs::IClientRootSession': { | |
0: {"inbytes": 0, "outbytes": 0, "inhandles": [1]}, | |
1: {"inbytes": 0x10, "outbytes": 4, "buffers": [6]}, | |
2: {"inbytes": 0x10, "outbytes": 4, "buffers": [6]}, | |
3: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
4: {"inbytes": 0x12, "outbytes": 0, "outhandles": [1]}, | |
5: {"inbytes": 1, "outbytes": 0}, | |
6: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
7: {"inbytes": 4, "outbytes": 0, "buffers": [6], "outinterfaces": ['nn::usb::hs::IClientIfSession']}, | |
}, | |
'nn::usb::pd::detail::IPdManager': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::usb::pd::detail::IPdSession']}, | |
}, | |
'nn::usb::ds::IDsInterface': { | |
0: {"inbytes": 0, "outbytes": 1, "buffers": [5], "outinterfaces": ['nn::usb::ds::IDsEndpoint']}, | |
1: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 0x10, "outbytes": 4}, | |
6: {"inbytes": 0x10, "outbytes": 4}, | |
7: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
8: {"inbytes": 0, "outbytes": 0x84}, | |
9: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
10: {"inbytes": 0, "outbytes": 0x84}, | |
11: {"inbytes": 0, "outbytes": 0}, | |
}, | |
}, | |
'settings': { | |
'nn::settings::IFirmwareDebugSettingsServer': { | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [25, 25, 5]}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [25, 25]}, | |
4: {"inbytes": 0, "outbytes": 0, "buffers": [25], "outinterfaces": ['nn::settings::ISettingsItemKeyIterator']}, | |
}, | |
'nn::settings::ISystemSettingsServer': { | |
0: {"inbytes": 8, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
2: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [26]}, | |
7: {"inbytes": 0, "outbytes": 1}, | |
8: {"inbytes": 1, "outbytes": 0}, | |
9: {"inbytes": 0, "outbytes": 0x28}, | |
10: {"inbytes": 0x28, "outbytes": 0}, | |
11: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
12: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
13: {"inbytes": 0, "outbytes": 0x10}, | |
14: {"inbytes": 0x10, "outbytes": 0}, | |
15: {"inbytes": 0, "outbytes": 0x20}, | |
16: {"inbytes": 0x20, "outbytes": 0}, | |
17: {"inbytes": 0, "outbytes": 4}, | |
18: {"inbytes": 4, "outbytes": 0}, | |
19: {"inbytes": 4, "outbytes": 8}, | |
20: {"inbytes": 0xC, "outbytes": 0}, | |
21: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
22: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
23: {"inbytes": 0, "outbytes": 4}, | |
24: {"inbytes": 4, "outbytes": 0}, | |
25: {"inbytes": 0, "outbytes": 1}, | |
26: {"inbytes": 1, "outbytes": 0}, | |
27: {"inbytes": 0, "outbytes": 1}, | |
28: {"inbytes": 1, "outbytes": 0}, | |
29: {"inbytes": 0, "outbytes": 0x18}, | |
30: {"inbytes": 0x18, "outbytes": 0}, | |
31: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
32: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
35: {"inbytes": 0, "outbytes": 4}, | |
36: {"inbytes": 4, "outbytes": 0}, | |
37: {"inbytes": 0, "outbytes": 8, "buffers": [25, 25]}, | |
38: {"inbytes": 0, "outbytes": 8, "buffers": [25, 25, 6]}, | |
39: {"inbytes": 0, "outbytes": 0x20}, | |
40: {"inbytes": 0x20, "outbytes": 0}, | |
41: {"inbytes": 0, "outbytes": 0, "buffers": [26]}, | |
42: {"inbytes": 0, "outbytes": 0, "buffers": [25]}, | |
43: {"inbytes": 4, "outbytes": 4}, | |
44: {"inbytes": 8, "outbytes": 0}, | |
45: {"inbytes": 0, "outbytes": 1}, | |
46: {"inbytes": 1, "outbytes": 0}, | |
47: {"inbytes": 0, "outbytes": 1}, | |
48: {"inbytes": 1, "outbytes": 0}, | |
49: {"inbytes": 0, "outbytes": 8}, | |
50: {"inbytes": 8, "outbytes": 0}, | |
51: {"inbytes": 0, "outbytes": 8}, | |
52: {"inbytes": 0, "outbytes": 8}, | |
53: {"inbytes": 0, "outbytes": 0x24}, | |
54: {"inbytes": 0x24, "outbytes": 0}, | |
55: {"inbytes": 0, "outbytes": 8}, | |
56: {"inbytes": 0, "outbytes": 8, "buffers": [6]}, | |
57: {"inbytes": 4, "outbytes": 0}, | |
58: {"inbytes": 0, "outbytes": 0x20}, | |
59: {"inbytes": 0x20, "outbytes": 0}, | |
60: {"inbytes": 0, "outbytes": 1}, | |
61: {"inbytes": 1, "outbytes": 0}, | |
62: {"inbytes": 0, "outbytes": 1}, | |
63: {"inbytes": 0, "outbytes": 4}, | |
64: {"inbytes": 4, "outbytes": 0}, | |
65: {"inbytes": 0, "outbytes": 1}, | |
66: {"inbytes": 1, "outbytes": 0}, | |
67: {"inbytes": 0, "outbytes": 0x18}, | |
68: {"inbytes": 0, "outbytes": 0x18}, | |
69: {"inbytes": 0, "outbytes": 1}, | |
70: {"inbytes": 1, "outbytes": 0}, | |
71: {"inbytes": 0, "outbytes": 0xC}, | |
72: {"inbytes": 0xC, "outbytes": 0}, | |
73: {"inbytes": 0, "outbytes": 1}, | |
74: {"inbytes": 1, "outbytes": 0}, | |
75: {"inbytes": 0, "outbytes": 0x20}, | |
76: {"inbytes": 0x20, "outbytes": 0}, | |
77: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
78: {"inbytes": 0, "outbytes": 0, "buffers": [21]}, | |
79: {"inbytes": 0, "outbytes": 4}, | |
80: {"inbytes": 0, "outbytes": 4}, | |
81: {"inbytes": 4, "outbytes": 0}, | |
82: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
83: {"inbytes": 0, "outbytes": 0x10}, | |
84: {"inbytes": 0, "outbytes": 0x18}, | |
85: {"inbytes": 0x18, "outbytes": 0}, | |
86: {"inbytes": 0, "outbytes": 0x18}, | |
87: {"inbytes": 0x18, "outbytes": 0}, | |
88: {"inbytes": 0, "outbytes": 1}, | |
89: {"inbytes": 1, "outbytes": 0}, | |
90: {"inbytes": 0, "outbytes": 0x10}, | |
91: {"inbytes": 8, "outbytes": 0}, | |
92: {"inbytes": 0, "outbytes": 8}, | |
93: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
94: {"inbytes": 0, "outbytes": 0x10}, | |
95: {"inbytes": 0, "outbytes": 1}, | |
96: {"inbytes": 1, "outbytes": 0}, | |
97: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
98: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
99: {"inbytes": 0, "outbytes": 1}, | |
100: {"inbytes": 1, "outbytes": 0}, | |
101: {"inbytes": 0, "outbytes": 1}, | |
102: {"inbytes": 1, "outbytes": 0}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::settings::IFactorySettingsServer': { | |
0: {"inbytes": 0, "outbytes": 6}, | |
1: {"inbytes": 0, "outbytes": 0x1E}, | |
2: {"inbytes": 0, "outbytes": 6}, | |
3: {"inbytes": 0, "outbytes": 6}, | |
4: {"inbytes": 0, "outbytes": 6}, | |
5: {"inbytes": 0, "outbytes": 6}, | |
6: {"inbytes": 0, "outbytes": 6}, | |
7: {"inbytes": 0, "outbytes": 4}, | |
8: {"inbytes": 0, "outbytes": 4, "buffers": [10]}, | |
9: {"inbytes": 0, "outbytes": 0x18}, | |
10: {"inbytes": 8, "outbytes": 0}, | |
11: {"inbytes": 8, "outbytes": 0}, | |
12: {"inbytes": 0, "outbytes": 0x18}, | |
14: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
15: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
16: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
17: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
18: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
19: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
20: {"inbytes": 0, "outbytes": 0x54}, | |
21: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
22: {"inbytes": 0, "outbytes": 0x5A}, | |
}, | |
'nn::settings::ISettingsServer': { | |
0: {"inbytes": 0, "outbytes": 8}, | |
1: {"inbytes": 0, "outbytes": 4, "buffers": [10]}, | |
3: {"inbytes": 0, "outbytes": 4}, | |
4: {"inbytes": 0, "outbytes": 4}, | |
}, | |
'nn::settings::ISettingsItemKeyIterator': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 8}, | |
2: {"inbytes": 0, "outbytes": 8, "buffers": [6]}, | |
}, | |
}, | |
'Bus': { | |
'nn::i2c::IManager': { | |
0: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::i2c::ISession']}, | |
1: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::i2c::ISession']}, | |
2: {"inbytes": 4, "outbytes": 1}, | |
3: {"inbytes": 0x10, "outbytes": 1}, | |
}, | |
'nn::pwm::IChannelSession': { | |
0: {"inbytes": 8, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 8}, | |
2: {"inbytes": 4, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 4}, | |
4: {"inbytes": 1, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 1}, | |
}, | |
'nn::pwm::IManager': { | |
0: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::pwm::IChannelSession']}, | |
1: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::pwm::IChannelSession']}, | |
}, | |
'nn::gpio::IManager': { | |
0: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::gpio::IPadSession']}, | |
1: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::gpio::IPadSession']}, | |
2: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::gpio::IPadSession']}, | |
3: {"inbytes": 4, "outbytes": 1}, | |
4: {"inbytes": 0, "outbytes": 0x10}, | |
5: {"inbytes": 8, "outbytes": 0}, | |
6: {"inbytes": 1, "outbytes": 0}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::i2c::ISession': { | |
0: {"inbytes": 4, "outbytes": 0, "buffers": [5]}, | |
1: {"inbytes": 4, "outbytes": 0, "buffers": [6]}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [6, 9]}, | |
10: {"inbytes": 4, "outbytes": 0, "buffers": [33]}, | |
11: {"inbytes": 4, "outbytes": 0, "buffers": [34]}, | |
12: {"inbytes": 0, "outbytes": 0, "buffers": [34, 9]}, | |
}, | |
'nn::uart::IManager': { | |
0: {"inbytes": 4, "outbytes": 1}, | |
1: {"inbytes": 4, "outbytes": 1}, | |
2: {"inbytes": 8, "outbytes": 1}, | |
3: {"inbytes": 8, "outbytes": 1}, | |
4: {"inbytes": 8, "outbytes": 1}, | |
5: {"inbytes": 8, "outbytes": 1}, | |
6: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::uart::IPortSession']}, | |
7: {"inbytes": 8, "outbytes": 1}, | |
8: {"inbytes": 8, "outbytes": 1}, | |
}, | |
'nn::pinmux::IManager': { | |
0: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::pinmux::ISession']}, | |
}, | |
'nn::uart::IPortSession': { | |
0: {"inbytes": 0x20, "outbytes": 1, "inhandles": [1, 1]}, | |
1: {"inbytes": 0x20, "outbytes": 1, "inhandles": [1, 1]}, | |
2: {"inbytes": 0, "outbytes": 8}, | |
3: {"inbytes": 0, "outbytes": 8, "buffers": [33]}, | |
4: {"inbytes": 0, "outbytes": 8}, | |
5: {"inbytes": 0, "outbytes": 8, "buffers": [34]}, | |
6: {"inbytes": 0x10, "outbytes": 1, "outhandles": [1]}, | |
7: {"inbytes": 4, "outbytes": 1}, | |
}, | |
'nn::pinmux::ISession': { | |
0: {"inbytes": 4, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 4}, | |
2: {"inbytes": 4, "outbytes": 0}, | |
}, | |
'nn::gpio::IPadSession': { | |
0: {"inbytes": 4, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 4}, | |
2: {"inbytes": 4, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 4}, | |
4: {"inbytes": 1, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 1}, | |
6: {"inbytes": 0, "outbytes": 4}, | |
7: {"inbytes": 0, "outbytes": 0}, | |
8: {"inbytes": 4, "outbytes": 0}, | |
9: {"inbytes": 0, "outbytes": 4}, | |
10: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
11: {"inbytes": 0, "outbytes": 0}, | |
12: {"inbytes": 1, "outbytes": 0}, | |
13: {"inbytes": 0, "outbytes": 1}, | |
14: {"inbytes": 4, "outbytes": 0}, | |
15: {"inbytes": 0, "outbytes": 4}, | |
}, | |
}, | |
'bluetooth': { | |
'nn::bluetooth::IBluetoothDriver': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 0, "buffers": [26]}, | |
6: {"inbytes": 4, "outbytes": 0, "buffers": [10]}, | |
7: {"inbytes": 4, "outbytes": 0, "buffers": [9]}, | |
8: {"inbytes": 0, "outbytes": 0}, | |
9: {"inbytes": 0, "outbytes": 0}, | |
10: {"inbytes": 6, "outbytes": 0, "buffers": [25]}, | |
11: {"inbytes": 6, "outbytes": 0}, | |
12: {"inbytes": 6, "outbytes": 0}, | |
13: {"inbytes": 0x18, "outbytes": 0}, | |
14: {"inbytes": 0xC, "outbytes": 0}, | |
15: {"inbytes": 0, "outbytes": 4, "buffers": [10]}, | |
16: {"inbytes": 2, "outbytes": 0, "outhandles": [1]}, | |
17: {"inbytes": 6, "outbytes": 0}, | |
18: {"inbytes": 6, "outbytes": 0}, | |
19: {"inbytes": 6, "outbytes": 0, "buffers": [25]}, | |
20: {"inbytes": 6, "outbytes": 0, "buffers": [9]}, | |
21: {"inbytes": 0xC, "outbytes": 0, "buffers": [25]}, | |
22: {"inbytes": 0xC, "outbytes": 0}, | |
23: {"inbytes": 6, "outbytes": 0}, | |
24: {"inbytes": 0, "outbytes": 0, "buffers": [25]}, | |
25: {"inbytes": 6, "outbytes": 0, "buffers": [26]}, | |
26: {"inbytes": 0, "outbytes": 0}, | |
27: {"inbytes": 0, "outbytes": 4, "buffers": [10]}, | |
28: {"inbytes": 7, "outbytes": 0}, | |
29: {"inbytes": 7, "outbytes": 0}, | |
30: {"inbytes": 6, "outbytes": 0, "buffers": [9]}, | |
31: {"inbytes": 1, "outbytes": 0}, | |
32: {"inbytes": 0, "outbytes": 0}, | |
33: {"inbytes": 0, "outbytes": 0}, | |
34: {"inbytes": 1, "outbytes": 0}, | |
35: {"inbytes": 2, "outbytes": 0}, | |
36: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
37: {"inbytes": 0, "outbytes": 4, "buffers": [10]}, | |
38: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
39: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
}, | |
'bcat': { | |
'nn::news::detail::ipc::IOverwriteEventHolder': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
}, | |
'nn::bcat::detail::ipc::IDeliveryCacheProgressService': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [26]}, | |
}, | |
'nn::bcat::detail::ipc::IServiceCreator': { | |
0: {"inbytes": 8, "outbytes": 0, "outinterfaces": ['nn::bcat::detail::ipc::IBcatService'], "pid": True}, | |
1: {"inbytes": 8, "outbytes": 0, "outinterfaces": ['nn::bcat::detail::ipc::IDeliveryCacheStorageService'], "pid": True}, | |
2: {"inbytes": 8, "outbytes": 0, "outinterfaces": ['nn::bcat::detail::ipc::IDeliveryCacheStorageService']}, | |
3: {"inbytes": 8, "outbytes": 0, "outinterfaces": ['nn::bcat::detail::ipc::IDeliveryCacheProgressService'], "pid": True}, | |
4: {"inbytes": 8, "outbytes": 0, "outinterfaces": ['nn::bcat::detail::ipc::IDeliveryCacheProgressService']}, | |
}, | |
'nn::news::detail::ipc::IServiceCreator': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::news::detail::ipc::INewsService']}, | |
1: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::news::detail::ipc::INewlyArrivedEventHolder']}, | |
2: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::news::detail::ipc::INewsDataService']}, | |
3: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::news::detail::ipc::INewsDatabaseService']}, | |
4: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::news::detail::ipc::IOverwriteEventHolder']}, | |
}, | |
'nn::bcat::detail::ipc::IBcatService': { | |
90200: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
30100: {"inbytes": 8, "outbytes": 0, "buffers": [9]}, | |
30101: {"inbytes": 0x10, "outbytes": 0}, | |
30102: {"inbytes": 8, "outbytes": 0}, | |
20100: {"inbytes": 8, "outbytes": 0}, | |
10100: {"inbytes": 0, "outbytes": 0}, | |
90100: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
}, | |
'nn::bcat::detail::ipc::IDeliveryCacheStorageService': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::bcat::detail::ipc::IDeliveryCacheFileService']}, | |
1: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::bcat::detail::ipc::IDeliveryCacheDirectoryService']}, | |
10: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
}, | |
'nn::prepo::detail::ipc::IPrepoService': { | |
40100: {"inbytes": 0, "outbytes": 1}, | |
40101: {"inbytes": 1, "outbytes": 0}, | |
30100: {"inbytes": 0, "outbytes": 0}, | |
20100: {"inbytes": 8, "outbytes": 0, "buffers": [9, 5]}, | |
20101: {"inbytes": 0x18, "outbytes": 0, "buffers": [9, 5]}, | |
10200: {"inbytes": 0, "outbytes": 0}, | |
10100: {"inbytes": 8, "outbytes": 0, "buffers": [9, 5], "pid": True}, | |
10101: {"inbytes": 0x18, "outbytes": 0, "buffers": [9, 5], "pid": True}, | |
10300: {"inbytes": 0, "outbytes": 4}, | |
90100: {"inbytes": 0, "outbytes": 0x10}, | |
}, | |
'nn::bcat::detail::ipc::IDeliveryCacheFileService': { | |
0: {"inbytes": 0x40, "outbytes": 0}, | |
1: {"inbytes": 8, "outbytes": 8, "buffers": [6]}, | |
2: {"inbytes": 0, "outbytes": 8}, | |
3: {"inbytes": 0, "outbytes": 0x10}, | |
}, | |
'nn::news::detail::ipc::INewsService': { | |
40100: {"inbytes": 4, "outbytes": 0, "buffers": [9]}, | |
40200: {"inbytes": 0, "outbytes": 0}, | |
40201: {"inbytes": 0, "outbytes": 0}, | |
30100: {"inbytes": 0, "outbytes": 4, "buffers": [9]}, | |
30200: {"inbytes": 0, "outbytes": 1}, | |
30300: {"inbytes": 0, "outbytes": 0, "buffers": [9]}, | |
20100: {"inbytes": 8, "outbytes": 0, "buffers": [9]}, | |
10100: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
90100: {"inbytes": 0, "outbytes": 8, "buffers": [6]}, | |
}, | |
'nn::bcat::detail::ipc::IDeliveryCacheDirectoryService': { | |
0: {"inbytes": 0x20, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
2: {"inbytes": 0, "outbytes": 4}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::news::detail::ipc::INewlyArrivedEventHolder': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
}, | |
'nn::news::detail::ipc::INewsDatabaseService': { | |
0: {"inbytes": 4, "outbytes": 4, "buffers": [6, 9, 9]}, | |
1: {"inbytes": 0, "outbytes": 4, "buffers": [9]}, | |
2: {"inbytes": 1, "outbytes": 4, "buffers": [9, 9]}, | |
3: {"inbytes": 4, "outbytes": 0, "buffers": [9, 9]}, | |
4: {"inbytes": 4, "outbytes": 0, "buffers": [9, 9]}, | |
5: {"inbytes": 0, "outbytes": 0, "buffers": [9, 9, 9]}, | |
}, | |
'nn::news::detail::ipc::INewsDataService': { | |
0: {"inbytes": 0, "outbytes": 0, "buffers": [9]}, | |
1: {"inbytes": 0x48, "outbytes": 0}, | |
2: {"inbytes": 8, "outbytes": 8, "buffers": [6]}, | |
3: {"inbytes": 0, "outbytes": 8}, | |
}, | |
}, | |
'friends': { | |
'nn::friends::detail::ipc::INotificationService': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0x10}, | |
}, | |
'nn::friends::detail::ipc::IServiceCreator': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::friends::detail::ipc::IFriendService']}, | |
1: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::friends::detail::ipc::INotificationService']}, | |
}, | |
'nn::friends::detail::ipc::IFriendService': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
20501: {"inbytes": 0x18, "outbytes": 8}, | |
10400: {"inbytes": 0x18, "outbytes": 4, "buffers": [10]}, | |
20701: {"inbytes": 0x10, "outbytes": 0x10}, | |
10500: {"inbytes": 0x10, "outbytes": 0, "buffers": [6, 9]}, | |
20800: {"inbytes": 0x10, "outbytes": 0, "buffers": [26]}, | |
20801: {"inbytes": 0x10, "outbytes": 0}, | |
10600: {"inbytes": 0x10, "outbytes": 0}, | |
10601: {"inbytes": 0x10, "outbytes": 0}, | |
10610: {"inbytes": 0x18, "outbytes": 0, "buffers": [25], "pid": True}, | |
20900: {"inbytes": 0, "outbytes": 0}, | |
10700: {"inbytes": 0x18, "outbytes": 0, "buffers": [26]}, | |
10701: {"inbytes": 0x10, "outbytes": 0, "buffers": [26]}, | |
10702: {"inbytes": 0x18, "outbytes": 0, "buffers": [25, 25, 25], "pid": True}, | |
30810: {"inbytes": 0x18, "outbytes": 0}, | |
30811: {"inbytes": 0x18, "outbytes": 0}, | |
30812: {"inbytes": 0x18, "outbytes": 0}, | |
30830: {"inbytes": 0x10, "outbytes": 0}, | |
20600: {"inbytes": 0x10, "outbytes": 0, "buffers": [26]}, | |
49900: {"inbytes": 0x10, "outbytes": 0}, | |
11000: {"inbytes": 0xA4, "outbytes": 0xA0}, | |
20300: {"inbytes": 0x18, "outbytes": 4, "buffers": [6]}, | |
21000: {"inbytes": 0x18, "outbytes": 0, "buffers": [26]}, | |
20500: {"inbytes": 0x10, "outbytes": 0, "buffers": [6, 9]}, | |
20700: {"inbytes": 0x18, "outbytes": 4, "buffers": [6]}, | |
30100: {"inbytes": 0x10, "outbytes": 0}, | |
30101: {"inbytes": 0x18, "outbytes": 0}, | |
30110: {"inbytes": 0x18, "outbytes": 0}, | |
30820: {"inbytes": 0x10, "outbytes": 0}, | |
30120: {"inbytes": 0x20, "outbytes": 0}, | |
30121: {"inbytes": 0x20, "outbytes": 0}, | |
30200: {"inbytes": 0x20, "outbytes": 0}, | |
30201: {"inbytes": 0x30, "outbytes": 0, "buffers": [25, 25]}, | |
30202: {"inbytes": 0x18, "outbytes": 0}, | |
30203: {"inbytes": 0x18, "outbytes": 0}, | |
30204: {"inbytes": 0x18, "outbytes": 0}, | |
30205: {"inbytes": 0x18, "outbytes": 0}, | |
30210: {"inbytes": 0x10, "outbytes": 0x40}, | |
30211: {"inbytes": 0x78, "outbytes": 0, "buffers": [5]}, | |
30212: {"inbytes": 0x18, "outbytes": 0}, | |
30213: {"inbytes": 0x18, "outbytes": 4, "buffers": [6]}, | |
30214: {"inbytes": 0, "outbytes": 4, "buffers": [9, 6]}, | |
30215: {"inbytes": 0x30, "outbytes": 0, "buffers": [25, 25]}, | |
30216: {"inbytes": 0x18, "outbytes": 0}, | |
20400: {"inbytes": 0x18, "outbytes": 4, "buffers": [6]}, | |
20100: {"inbytes": 0x28, "outbytes": 4, "pid": True}, | |
20101: {"inbytes": 0x10, "outbytes": 4}, | |
20102: {"inbytes": 0x18, "outbytes": 0, "buffers": [26]}, | |
20103: {"inbytes": 0x10, "outbytes": 0}, | |
20104: {"inbytes": 0x10, "outbytes": 0}, | |
20110: {"inbytes": 0x18, "outbytes": 0, "buffers": [26]}, | |
30400: {"inbytes": 0x20, "outbytes": 0}, | |
30401: {"inbytes": 0x30, "outbytes": 0, "buffers": [25]}, | |
30402: {"inbytes": 0x18, "outbytes": 0}, | |
20200: {"inbytes": 0x10, "outbytes": 8}, | |
20201: {"inbytes": 0x18, "outbytes": 4, "buffers": [6]}, | |
10200: {"inbytes": 0x20, "outbytes": 0, "buffers": [25, 25], "pid": True}, | |
30500: {"inbytes": 0x30, "outbytes": 0, "buffers": [26]}, | |
10100: {"inbytes": 0x30, "outbytes": 4, "buffers": [10], "pid": True}, | |
10101: {"inbytes": 0x30, "outbytes": 4, "buffers": [6], "pid": True}, | |
10102: {"inbytes": 0x18, "outbytes": 0, "buffers": [6, 9], "pid": True}, | |
10110: {"inbytes": 0x18, "outbytes": 4, "buffers": [6]}, | |
20401: {"inbytes": 0x10, "outbytes": 0}, | |
10211: {"inbytes": 0x80, "outbytes": 0, "buffers": [25, 25, 5], "pid": True}, | |
30700: {"inbytes": 0x10, "outbytes": 0}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
}, | |
'nifm': { | |
'nn::nifm::detail::IStaticService': { | |
4: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::nifm::detail::IGeneralService']}, | |
}, | |
'nn::nifm::detail::IScanRequest': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 1}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
}, | |
'nn::nifm::detail::IRequest': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [1, 1]}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 0x20, "outbytes": 0}, | |
6: {"inbytes": 4, "outbytes": 0}, | |
8: {"inbytes": 1, "outbytes": 0}, | |
9: {"inbytes": 0x10, "outbytes": 0}, | |
10: {"inbytes": 1, "outbytes": 0}, | |
11: {"inbytes": 1, "outbytes": 0}, | |
12: {"inbytes": 1, "outbytes": 0}, | |
13: {"inbytes": 1, "outbytes": 0}, | |
14: {"inbytes": 2, "outbytes": 0}, | |
15: {"inbytes": 1, "outbytes": 0}, | |
16: {"inbytes": 1, "outbytes": 0}, | |
17: {"inbytes": 1, "outbytes": 0}, | |
18: {"inbytes": 4, "outbytes": 0}, | |
19: {"inbytes": 0, "outbytes": 0x20}, | |
20: {"inbytes": 0, "outbytes": 4}, | |
21: {"inbytes": 4, "outbytes": 0xC, "buffers": [6]}, | |
22: {"inbytes": 0, "outbytes": 4, "buffers": [22]}, | |
}, | |
'nn::nifm::detail::INetworkProfile': { | |
0: {"inbytes": 0, "outbytes": 0x10, "buffers": [25]}, | |
1: {"inbytes": 0x10, "outbytes": 0x10}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::nifm::detail::IGeneralService': { | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [26]}, | |
2: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::nifm::detail::IScanRequest']}, | |
4: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::nifm::detail::IRequest']}, | |
5: {"inbytes": 0, "outbytes": 0, "buffers": [26]}, | |
6: {"inbytes": 4, "outbytes": 4, "buffers": [10]}, | |
7: {"inbytes": 1, "outbytes": 4, "buffers": [6]}, | |
8: {"inbytes": 0x10, "outbytes": 0, "buffers": [26]}, | |
9: {"inbytes": 0, "outbytes": 0x10, "buffers": [25]}, | |
10: {"inbytes": 0x10, "outbytes": 0}, | |
11: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
12: {"inbytes": 0, "outbytes": 4}, | |
13: {"inbytes": 0, "outbytes": 0, "buffers": [26]}, | |
14: {"inbytes": 0, "outbytes": 0x10, "buffers": [25], "outinterfaces": ['nn::nifm::detail::INetworkProfile']}, | |
15: {"inbytes": 0, "outbytes": 0x16}, | |
16: {"inbytes": 1, "outbytes": 0}, | |
17: {"inbytes": 0, "outbytes": 1}, | |
18: {"inbytes": 0, "outbytes": 3}, | |
19: {"inbytes": 1, "outbytes": 0}, | |
20: {"inbytes": 0, "outbytes": 1}, | |
21: {"inbytes": 0, "outbytes": 1, "buffers": [25]}, | |
22: {"inbytes": 0, "outbytes": 1}, | |
23: {"inbytes": 0, "outbytes": 0}, | |
24: {"inbytes": 0, "outbytes": 0}, | |
25: {"inbytes": 0, "outbytes": 0x10}, | |
26: {"inbytes": 0, "outbytes": 0, "buffers": [25]}, | |
27: {"inbytes": 0, "outbytes": 0, "buffers": [26]}, | |
28: {"inbytes": 0, "outbytes": 0, "buffers": [25]}, | |
29: {"inbytes": 1, "outbytes": 0}, | |
30: {"inbytes": 1, "outbytes": 0}, | |
31: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
32: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
33: {"inbytes": 0, "outbytes": 0}, | |
}, | |
}, | |
'ptm': { | |
'nn::tc::IManager': { | |
0: {"inbytes": 4, "outbytes": 0}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [1]}, | |
2: {"inbytes": 4, "outbytes": 1}, | |
3: {"inbytes": 4, "outbytes": 0}, | |
4: {"inbytes": 4, "outbytes": 0}, | |
5: {"inbytes": 8, "outbytes": 0}, | |
6: {"inbytes": 0, "outbytes": 0}, | |
7: {"inbytes": 0, "outbytes": 0}, | |
8: {"inbytes": 0, "outbytes": 1}, | |
}, | |
'nn::psm::IPsmSession': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 1, "outbytes": 0}, | |
3: {"inbytes": 1, "outbytes": 0}, | |
4: {"inbytes": 1, "outbytes": 0}, | |
}, | |
'nn::fan::detail::IController': { | |
0: {"inbytes": 4, "outbytes": 0}, | |
1: {"inbytes": 4, "outbytes": 4}, | |
2: {"inbytes": 0, "outbytes": 4}, | |
3: {"inbytes": 4, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 4}, | |
5: {"inbytes": 0, "outbytes": 0}, | |
6: {"inbytes": 0, "outbytes": 0}, | |
7: {"inbytes": 0, "outbytes": 4}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::ts::server::IMeasurementServer': { | |
0: {"inbytes": 1, "outbytes": 8}, | |
1: {"inbytes": 1, "outbytes": 4}, | |
2: {"inbytes": 2, "outbytes": 0}, | |
3: {"inbytes": 1, "outbytes": 4}, | |
}, | |
'nn::psm::IPsmServer': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0, "outbytes": 4}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 1}, | |
5: {"inbytes": 0, "outbytes": 0}, | |
6: {"inbytes": 0, "outbytes": 0}, | |
7: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::psm::IPsmSession']}, | |
8: {"inbytes": 0, "outbytes": 0}, | |
9: {"inbytes": 0, "outbytes": 0}, | |
10: {"inbytes": 0, "outbytes": 0}, | |
11: {"inbytes": 0, "outbytes": 0}, | |
12: {"inbytes": 0, "outbytes": 4}, | |
13: {"inbytes": 0, "outbytes": 8}, | |
14: {"inbytes": 0, "outbytes": 1}, | |
15: {"inbytes": 0, "outbytes": 8}, | |
16: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
17: {"inbytes": 0, "outbytes": 0x40}, | |
}, | |
'nn::fan::detail::IManager': { | |
0: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::fan::detail::IController']}, | |
}, | |
}, | |
'bsdsocket': { | |
'nn::eth::sf::IEthInterface': { | |
0: {"inbytes": 0, "outbytes": 0, "buffers": [5], "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
4: {"inbytes": 4, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 0xC}, | |
}, | |
'nn::eth::sf::IEthInterfaceGroup': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
4: {"inbytes": 0, "outbytes": 4}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::nsd::detail::IManager': { | |
10: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
11: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
12: {"inbytes": 0, "outbytes": 0x10}, | |
13: {"inbytes": 4, "outbytes": 0}, | |
14: {"inbytes": 4, "outbytes": 0, "buffers": [5, 6]}, | |
20: {"inbytes": 0, "outbytes": 0, "buffers": [22, 21]}, | |
21: {"inbytes": 0, "outbytes": 4, "buffers": [22, 21]}, | |
30: {"inbytes": 0, "outbytes": 0, "buffers": [22, 21]}, | |
31: {"inbytes": 0, "outbytes": 4, "buffers": [22, 21]}, | |
40: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
41: {"inbytes": 0, "outbytes": 4, "buffers": [22]}, | |
42: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
43: {"inbytes": 0, "outbytes": 4, "buffers": [22]}, | |
50: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
60: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
61: {"inbytes": 0, "outbytes": 0, "buffers": [21]}, | |
62: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::bsdsocket::cfg::ServerInterface': { | |
0: {"inbytes": 0x28, "outbytes": 0, "buffers": [5]}, | |
1: {"inbytes": 0x28, "outbytes": 0, "buffers": [5], "outhandles": [1]}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
3: {"inbytes": 4, "outbytes": 0, "buffers": [5]}, | |
4: {"inbytes": 0, "outbytes": 0, "buffers": [5, 6]}, | |
5: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
6: {"inbytes": 4, "outbytes": 0, "buffers": [5]}, | |
7: {"inbytes": 4, "outbytes": 0}, | |
8: {"inbytes": 4, "outbytes": 0, "buffers": [6]}, | |
9: {"inbytes": 0, "outbytes": 0, "buffers": [6, 5]}, | |
10: {"inbytes": 0, "outbytes": 0}, | |
11: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
12: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::socket::resolver::IResolver': { | |
0: {"inbytes": 4, "outbytes": 0, "buffers": [5]}, | |
1: {"inbytes": 4, "outbytes": 0, "buffers": [6]}, | |
2: {"inbytes": 0x10, "outbytes": 0xC, "buffers": [5, 6], "pid": True}, | |
3: {"inbytes": 0x18, "outbytes": 0xC, "buffers": [5, 6], "pid": True}, | |
4: {"inbytes": 4, "outbytes": 0, "buffers": [6]}, | |
5: {"inbytes": 4, "outbytes": 0, "buffers": [6]}, | |
6: {"inbytes": 0x10, "outbytes": 0xC, "buffers": [5, 5, 5, 6], "pid": True}, | |
7: {"inbytes": 0x10, "outbytes": 8, "buffers": [5, 6, 6], "pid": True}, | |
8: {"inbytes": 8, "outbytes": 4, "pid": True}, | |
9: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
}, | |
'nn::socket::sf::IClient': { | |
0: {"inbytes": 0x30, "outbytes": 4, "inhandles": [1], "pid": True}, | |
1: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
2: {"inbytes": 0xC, "outbytes": 8}, | |
3: {"inbytes": 0xC, "outbytes": 8}, | |
4: {"inbytes": 4, "outbytes": 8, "buffers": [33]}, | |
5: {"inbytes": 0x20, "outbytes": 8, "buffers": [33, 33, 33, 34, 34, 34]}, | |
6: {"inbytes": 8, "outbytes": 8, "buffers": [33, 34]}, | |
7: {"inbytes": 0, "outbytes": 0xC, "buffers": [33, 34, 33]}, | |
8: {"inbytes": 8, "outbytes": 8, "buffers": [34]}, | |
9: {"inbytes": 8, "outbytes": 0xC, "buffers": [34, 34]}, | |
10: {"inbytes": 8, "outbytes": 8, "buffers": [33]}, | |
11: {"inbytes": 8, "outbytes": 8, "buffers": [33, 33]}, | |
12: {"inbytes": 4, "outbytes": 0xC, "buffers": [34]}, | |
13: {"inbytes": 4, "outbytes": 8, "buffers": [33]}, | |
14: {"inbytes": 4, "outbytes": 8, "buffers": [33]}, | |
15: {"inbytes": 4, "outbytes": 0xC, "buffers": [34]}, | |
16: {"inbytes": 4, "outbytes": 0xC, "buffers": [34]}, | |
17: {"inbytes": 0xC, "outbytes": 0xC, "buffers": [34]}, | |
18: {"inbytes": 8, "outbytes": 8}, | |
19: {"inbytes": 0xC, "outbytes": 8, "buffers": [33, 33, 33, 33, 34, 34, 34, 34]}, | |
20: {"inbytes": 0xC, "outbytes": 8}, | |
21: {"inbytes": 0xC, "outbytes": 8, "buffers": [33]}, | |
22: {"inbytes": 8, "outbytes": 8}, | |
23: {"inbytes": 4, "outbytes": 8}, | |
24: {"inbytes": 4, "outbytes": 8, "buffers": [33]}, | |
25: {"inbytes": 4, "outbytes": 8, "buffers": [34]}, | |
26: {"inbytes": 4, "outbytes": 8}, | |
27: {"inbytes": 0x10, "outbytes": 8}, | |
28: {"inbytes": 8, "outbytes": 8, "buffers": [34], "pid": True}, | |
}, | |
}, | |
'hid': { | |
'nn::hid::IActiveVibrationDeviceList': { | |
0: {"inbytes": 4, "outbytes": 0}, | |
}, | |
'nn::ahid::hdr::ISession': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 4, "buffers": [6, 5]}, | |
2: {"inbytes": 4, "outbytes": 0, "buffers": [6]}, | |
3: {"inbytes": 0, "outbytes": 4, "buffers": [5]}, | |
4: {"inbytes": 4, "outbytes": 0}, | |
}, | |
'nn::hid::IAppletResource': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
}, | |
'nn::hid::IHidSystemServer': { | |
31: {"inbytes": 4, "outbytes": 0}, | |
101: {"inbytes": 8, "outbytes": 0, "outhandles": [1], "pid": True}, | |
111: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
121: {"inbytes": 8, "outbytes": 0, "outhandles": [1], "pid": True}, | |
131: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
141: {"inbytes": 8, "outbytes": 0, "outhandles": [1], "pid": True}, | |
151: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
210: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
211: {"inbytes": 0, "outbytes": 8, "buffers": [10]}, | |
212: {"inbytes": 4, "outbytes": 0, "outhandles": [1]}, | |
213: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
230: {"inbytes": 4, "outbytes": 0, "outhandles": [1]}, | |
231: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
301: {"inbytes": 4, "outbytes": 0}, | |
303: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
304: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
305: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
306: {"inbytes": 0, "outbytes": 4}, | |
307: {"inbytes": 4, "outbytes": 0x10}, | |
311: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
322: {"inbytes": 0x10, "outbytes": 8, "pid": True}, | |
323: {"inbytes": 0x10, "outbytes": 8, "pid": True}, | |
500: {"inbytes": 8, "outbytes": 0}, | |
501: {"inbytes": 0x10, "outbytes": 0}, | |
502: {"inbytes": 8, "outbytes": 0}, | |
503: {"inbytes": 0x10, "outbytes": 0}, | |
504: {"inbytes": 0x10, "outbytes": 0}, | |
505: {"inbytes": 0x10, "outbytes": 0}, | |
510: {"inbytes": 4, "outbytes": 0}, | |
511: {"inbytes": 0, "outbytes": 4}, | |
520: {"inbytes": 0, "outbytes": 0}, | |
521: {"inbytes": 0, "outbytes": 0}, | |
540: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
542: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
543: {"inbytes": 0, "outbytes": 8, "buffers": [10]}, | |
700: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
702: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
703: {"inbytes": 0, "outbytes": 8, "buffers": [10]}, | |
751: {"inbytes": 8, "outbytes": 0, "outhandles": [1], "pid": True}, | |
800: {"inbytes": 8, "outbytes": 8, "buffers": [10]}, | |
801: {"inbytes": 4, "outbytes": 1}, | |
802: {"inbytes": 4, "outbytes": 0}, | |
803: {"inbytes": 4, "outbytes": 0}, | |
804: {"inbytes": 4, "outbytes": 0}, | |
821: {"inbytes": 0x10, "outbytes": 0}, | |
822: {"inbytes": 0x10, "outbytes": 0}, | |
823: {"inbytes": 0x10, "outbytes": 0}, | |
824: {"inbytes": 0x10, "outbytes": 0}, | |
900: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
901: {"inbytes": 4, "outbytes": 0}, | |
541: {"inbytes": 0, "outbytes": 8, "buffers": [10]}, | |
}, | |
'nn::xcd::detail::ISystemServer': { | |
0: {"inbytes": 8, "outbytes": 1}, | |
1: {"inbytes": 0x10, "outbytes": 0}, | |
2: {"inbytes": 8, "outbytes": 1}, | |
3: {"inbytes": 0x10, "outbytes": 0}, | |
4: {"inbytes": 8, "outbytes": 0x20}, | |
5: {"inbytes": 8, "outbytes": 0}, | |
10: {"inbytes": 8, "outbytes": 0, "outhandles": [1, 1]}, | |
11: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
12: {"inbytes": 0x10, "outbytes": 0}, | |
13: {"inbytes": 8, "outbytes": 0}, | |
14: {"inbytes": 0x30, "outbytes": 0}, | |
15: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
16: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
17: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
18: {"inbytes": 0x10, "outbytes": 0}, | |
19: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
20: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
101: {"inbytes": 0, "outbytes": 8}, | |
102: {"inbytes": 0, "outbytes": 8}, | |
}, | |
'nn::irsensor::IIrSensorSystemServer': { | |
500: {"inbytes": 8, "outbytes": 0}, | |
501: {"inbytes": 0x10, "outbytes": 0}, | |
502: {"inbytes": 8, "outbytes": 0}, | |
503: {"inbytes": 0x10, "outbytes": 0}, | |
}, | |
'nn::hid::IHidDebugServer': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0x18, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
10: {"inbytes": 0, "outbytes": 0}, | |
11: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
12: {"inbytes": 0, "outbytes": 0}, | |
20: {"inbytes": 0, "outbytes": 0}, | |
21: {"inbytes": 0x1C, "outbytes": 0}, | |
22: {"inbytes": 0, "outbytes": 0}, | |
30: {"inbytes": 0, "outbytes": 0}, | |
31: {"inbytes": 0x28, "outbytes": 0}, | |
32: {"inbytes": 0, "outbytes": 0}, | |
50: {"inbytes": 4, "outbytes": 0}, | |
51: {"inbytes": 0x20, "outbytes": 0}, | |
52: {"inbytes": 4, "outbytes": 0}, | |
60: {"inbytes": 4, "outbytes": 0}, | |
91: {"inbytes": 0, "outbytes": 0}, | |
110: {"inbytes": 0, "outbytes": 0}, | |
111: {"inbytes": 8, "outbytes": 0}, | |
112: {"inbytes": 0, "outbytes": 0}, | |
120: {"inbytes": 0, "outbytes": 0}, | |
121: {"inbytes": 8, "outbytes": 0}, | |
122: {"inbytes": 0, "outbytes": 0}, | |
123: {"inbytes": 0, "outbytes": 0}, | |
130: {"inbytes": 0, "outbytes": 0}, | |
131: {"inbytes": 8, "outbytes": 0}, | |
132: {"inbytes": 0, "outbytes": 0}, | |
201: {"inbytes": 0, "outbytes": 0}, | |
202: {"inbytes": 0, "outbytes": 0}, | |
203: {"inbytes": 0x20, "outbytes": 0, "inhandles": [1, 1], "outhandles": [1]}, | |
204: {"inbytes": 0, "outbytes": 0x10}, | |
205: {"inbytes": 8, "outbytes": 4}, | |
206: {"inbytes": 8, "outbytes": 4}, | |
207: {"inbytes": 8, "outbytes": 5}, | |
}, | |
'nn::ahid::IReadSession': { | |
0: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
}, | |
'nn::ahid::IServerSession': { | |
0: {"inbytes": 4, "outbytes": 0}, | |
1: {"inbytes": 4, "outbytes": 0}, | |
2: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::ahid::ICtrlSession']}, | |
3: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::ahid::IReadSession']}, | |
4: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::ahid::IWriteSession']}, | |
}, | |
'nn::ahid::ICtrlSession': { | |
0: {"inbytes": 1, "outbytes": 0, "buffers": [6]}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
2: {"inbytes": 2, "outbytes": 0, "buffers": [6]}, | |
3: {"inbytes": 2, "outbytes": 0, "buffers": [5]}, | |
4: {"inbytes": 1, "outbytes": 0, "buffers": [6]}, | |
5: {"inbytes": 2, "outbytes": 0}, | |
6: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
7: {"inbytes": 1, "outbytes": 0}, | |
8: {"inbytes": 6, "outbytes": 0, "buffers": [6]}, | |
9: {"inbytes": 6, "outbytes": 0, "buffers": [5]}, | |
10: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
11: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::irsensor::IIrSensorServer': { | |
302: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
303: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
304: {"inbytes": 8, "outbytes": 0, "outhandles": [1], "pid": True}, | |
305: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
306: {"inbytes": 0x30, "outbytes": 0, "pid": True}, | |
307: {"inbytes": 0x38, "outbytes": 0, "pid": True}, | |
308: {"inbytes": 0x30, "outbytes": 0, "inhandles": [1], "pid": True}, | |
309: {"inbytes": 0x10, "outbytes": 0x10, "buffers": [6], "pid": True}, | |
310: {"inbytes": 0x18, "outbytes": 0, "pid": True}, | |
311: {"inbytes": 4, "outbytes": 4}, | |
312: {"inbytes": 0x18, "outbytes": 0, "pid": True}, | |
313: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
}, | |
'nn::hid::IHidServer': { | |
0: {"inbytes": 8, "outbytes": 0, "outinterfaces": ['nn::hid::IAppletResource'], "pid": True}, | |
1: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
11: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
21: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
31: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
40: {"inbytes": 8, "outbytes": 0, "outhandles": [1]}, | |
41: {"inbytes": 8, "outbytes": 0}, | |
51: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
55: {"inbytes": 0, "outbytes": 8, "buffers": [10]}, | |
56: {"inbytes": 4, "outbytes": 0}, | |
58: {"inbytes": 4, "outbytes": 0, "outhandles": [1]}, | |
59: {"inbytes": 0, "outbytes": 8, "buffers": [10]}, | |
60: {"inbytes": 4, "outbytes": 0}, | |
61: {"inbytes": 4, "outbytes": 0}, | |
62: {"inbytes": 4, "outbytes": 0, "outhandles": [1]}, | |
63: {"inbytes": 4, "outbytes": 0}, | |
64: {"inbytes": 4, "outbytes": 0}, | |
65: {"inbytes": 4, "outbytes": 0, "outhandles": [1]}, | |
66: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
67: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
68: {"inbytes": 0x10, "outbytes": 1, "pid": True}, | |
69: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
70: {"inbytes": 0x18, "outbytes": 0, "pid": True}, | |
71: {"inbytes": 0x10, "outbytes": 8, "pid": True}, | |
72: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
73: {"inbytes": 0x18, "outbytes": 0, "pid": True}, | |
74: {"inbytes": 0x10, "outbytes": 8, "pid": True}, | |
75: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
76: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
77: {"inbytes": 0x10, "outbytes": 4, "pid": True}, | |
78: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
79: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
80: {"inbytes": 0x10, "outbytes": 4, "pid": True}, | |
81: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
82: {"inbytes": 0x10, "outbytes": 1, "pid": True}, | |
91: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
100: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
101: {"inbytes": 8, "outbytes": 4, "pid": True}, | |
102: {"inbytes": 8, "outbytes": 0, "buffers": [9], "pid": True}, | |
103: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
104: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
106: {"inbytes": 0x18, "outbytes": 0, "outhandles": [1], "pid": True}, | |
107: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
108: {"inbytes": 4, "outbytes": 8}, | |
120: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
121: {"inbytes": 8, "outbytes": 8, "pid": True}, | |
122: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
123: {"inbytes": 0x18, "outbytes": 0, "pid": True}, | |
124: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
125: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
126: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
128: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
129: {"inbytes": 8, "outbytes": 8, "pid": True}, | |
130: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
131: {"inbytes": 0x10, "outbytes": 1, "pid": True}, | |
132: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
200: {"inbytes": 4, "outbytes": 8}, | |
201: {"inbytes": 0x20, "outbytes": 0, "pid": True}, | |
202: {"inbytes": 0x10, "outbytes": 0x10, "pid": True}, | |
203: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::hid::IActiveVibrationDeviceList']}, | |
204: {"inbytes": 1, "outbytes": 0}, | |
205: {"inbytes": 0, "outbytes": 1}, | |
206: {"inbytes": 8, "outbytes": 0, "buffers": [9, 9]}, | |
127: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
1000: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
1001: {"inbytes": 0, "outbytes": 8}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::ahid::IWriteSession': { | |
0: {"inbytes": 0, "outbytes": 4, "buffers": [5]}, | |
}, | |
}, | |
'audio': { | |
'nn::audio::detail::IAudioInManagerForDebugger': { | |
0: {"inbytes": 8, "outbytes": 0}, | |
1: {"inbytes": 8, "outbytes": 0}, | |
}, | |
'nn::audio::detail::IAudioOut': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 8, "outbytes": 0, "buffers": [5]}, | |
4: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
5: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
6: {"inbytes": 8, "outbytes": 1}, | |
}, | |
'nn::audio::detail::IAudioDevice': { | |
0: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
1: {"inbytes": 4, "outbytes": 0, "buffers": [5]}, | |
2: {"inbytes": 0, "outbytes": 4, "buffers": [5]}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
4: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
5: {"inbytes": 0, "outbytes": 4}, | |
}, | |
'nn::audio::detail::IAudioRenderer': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0, "outbytes": 4}, | |
2: {"inbytes": 0, "outbytes": 4}, | |
3: {"inbytes": 0, "outbytes": 4}, | |
4: {"inbytes": 0, "outbytes": 0, "buffers": [6, 6, 5]}, | |
5: {"inbytes": 0, "outbytes": 0}, | |
6: {"inbytes": 0, "outbytes": 0}, | |
7: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
8: {"inbytes": 4, "outbytes": 0}, | |
9: {"inbytes": 0, "outbytes": 4}, | |
}, | |
'nn::codec::detail::IHardwareOpusDecoderManager': { | |
0: {"inbytes": 0xC, "outbytes": 0, "inhandles": [1], "outinterfaces": ['nn::codec::detail::IHardwareOpusDecoder']}, | |
1: {"inbytes": 8, "outbytes": 4}, | |
}, | |
'nn::audio::detail::IAudioInManagerForApplet': { | |
0: {"inbytes": 0x10, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0x10, "outbytes": 0, "outhandles": [1]}, | |
2: {"inbytes": 8, "outbytes": 4}, | |
3: {"inbytes": 0x18, "outbytes": 0}, | |
}, | |
'nn::audio::detail::IAudioRendererManager': { | |
0: {"inbytes": 0x48, "outbytes": 0, "inhandles": [1, 1], "outinterfaces": ['nn::audio::detail::IAudioRenderer'], "pid": True}, | |
1: {"inbytes": 0x34, "outbytes": 8}, | |
2: {"inbytes": 8, "outbytes": 0, "outinterfaces": ['nn::audio::detail::IAudioDevice']}, | |
}, | |
'nn::audio::detail::IAudioOutManagerForApplet': { | |
0: {"inbytes": 0x10, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0x10, "outbytes": 0, "outhandles": [1]}, | |
2: {"inbytes": 8, "outbytes": 4}, | |
3: {"inbytes": 0x18, "outbytes": 0}, | |
}, | |
'nn::audio::detail::IFinalOutputRecorderManagerForApplet': { | |
0: {"inbytes": 0x10, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0x10, "outbytes": 0, "outhandles": [1]}, | |
}, | |
'nn::audio::detail::IFinalOutputRecorderManager': { | |
0: {"inbytes": 0x10, "outbytes": 0x10, "inhandles": [1], "outinterfaces": ['nn::audio::detail::IFinalOutputRecorder']}, | |
}, | |
'nn::audio::detail::IAudioOutManagerForDebugger': { | |
0: {"inbytes": 8, "outbytes": 0}, | |
1: {"inbytes": 8, "outbytes": 0}, | |
}, | |
'nn::audio::detail::IAudioOutManager': { | |
0: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
1: {"inbytes": 0x10, "outbytes": 0x10, "buffers": [5, 6], "inhandles": [1], "outinterfaces": ['nn::audio::detail::IAudioOut'], "pid": True}, | |
}, | |
'nn::audio::detail::ICodecController': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
4: {"inbytes": 4, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 4}, | |
6: {"inbytes": 0, "outbytes": 4}, | |
7: {"inbytes": 4, "outbytes": 0}, | |
8: {"inbytes": 0, "outbytes": 4}, | |
9: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
10: {"inbytes": 0, "outbytes": 1}, | |
11: {"inbytes": 0, "outbytes": 0}, | |
12: {"inbytes": 0, "outbytes": 1}, | |
}, | |
'nn::audio::detail::IFinalOutputRecorder': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 8, "outbytes": 0, "buffers": [5]}, | |
4: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
5: {"inbytes": 0, "outbytes": 0x10, "buffers": [6]}, | |
6: {"inbytes": 8, "outbytes": 1}, | |
7: {"inbytes": 8, "outbytes": 8}, | |
}, | |
'nn::audio::detail::IAudioIn': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 8, "outbytes": 0, "buffers": [5]}, | |
4: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
5: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
6: {"inbytes": 8, "outbytes": 1}, | |
}, | |
'nn::audio::detail::IFinalOutputRecorderManagerForDebugger': { | |
0: {"inbytes": 8, "outbytes": 0}, | |
1: {"inbytes": 8, "outbytes": 0}, | |
}, | |
'nn::codec::detail::IHardwareOpusDecoder': { | |
0: {"inbytes": 0, "outbytes": 8, "buffers": [6, 5]}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
}, | |
'nn::audio::detail::IAudioRendererManagerForApplet': { | |
0: {"inbytes": 0x10, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0x10, "outbytes": 0, "outhandles": [1]}, | |
2: {"inbytes": 8, "outbytes": 4}, | |
3: {"inbytes": 0x18, "outbytes": 0}, | |
4: {"inbytes": 8, "outbytes": 0}, | |
5: {"inbytes": 8, "outbytes": 0}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::audio::detail::IAudioInManager': { | |
0: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
1: {"inbytes": 0x10, "outbytes": 0x10, "buffers": [5, 6], "inhandles": [1], "outinterfaces": ['nn::audio::detail::IAudioIn'], "pid": True}, | |
}, | |
'nn::audioctrl::detail::IAudioController': { | |
0: {"inbytes": 4, "outbytes": 4}, | |
1: {"inbytes": 8, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 4}, | |
3: {"inbytes": 0, "outbytes": 4}, | |
4: {"inbytes": 4, "outbytes": 1}, | |
5: {"inbytes": 8, "outbytes": 0}, | |
6: {"inbytes": 4, "outbytes": 1}, | |
7: {"inbytes": 0x18, "outbytes": 0}, | |
8: {"inbytes": 0, "outbytes": 4}, | |
9: {"inbytes": 4, "outbytes": 4}, | |
10: {"inbytes": 8, "outbytes": 0}, | |
11: {"inbytes": 4, "outbytes": 0}, | |
12: {"inbytes": 0, "outbytes": 4}, | |
13: {"inbytes": 4, "outbytes": 4}, | |
14: {"inbytes": 8, "outbytes": 0}, | |
15: {"inbytes": 4, "outbytes": 0}, | |
16: {"inbytes": 1, "outbytes": 0}, | |
}, | |
'nn::audio::detail::IAudioRendererManagerForDebugger': { | |
0: {"inbytes": 8, "outbytes": 0}, | |
1: {"inbytes": 8, "outbytes": 0}, | |
}, | |
}, | |
'LogManager.Prod': { | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::lm::ILogService': { | |
0: {"inbytes": 8, "outbytes": 0, "outinterfaces": ['nn::lm::ILogger'], "pid": True}, | |
}, | |
'nn::lm::ILogger': { | |
0: {"inbytes": 0, "outbytes": 0, "buffers": [33]}, | |
}, | |
}, | |
'wlan': { | |
'nn::wlan::detail::ILocalGetFrame': { | |
0: {"inbytes": 4, "outbytes": 4, "buffers": [6]}, | |
}, | |
'nn::wlan::detail::IInfraManager': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 6}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [21]}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 0x7C, "outbytes": 0}, | |
6: {"inbytes": 0, "outbytes": 0}, | |
7: {"inbytes": 0, "outbytes": 0}, | |
8: {"inbytes": 4, "outbytes": 0, "outhandles": [1]}, | |
9: {"inbytes": 0, "outbytes": 0x3C}, | |
10: {"inbytes": 0, "outbytes": 4}, | |
11: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
12: {"inbytes": 0, "outbytes": 4}, | |
13: {"inbytes": 4, "outbytes": 0}, | |
14: {"inbytes": 0, "outbytes": 0, "buffers": [10]}, | |
15: {"inbytes": 0, "outbytes": 0}, | |
16: {"inbytes": 0, "outbytes": 0}, | |
17: {"inbytes": 8, "outbytes": 0, "buffers": [9]}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::wlan::detail::ISocketManager': { | |
0: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
1: {"inbytes": 4, "outbytes": 0}, | |
2: {"inbytes": 4, "outbytes": 4, "buffers": [9]}, | |
3: {"inbytes": 4, "outbytes": 0}, | |
4: {"inbytes": 8, "outbytes": 0}, | |
5: {"inbytes": 2, "outbytes": 4}, | |
6: {"inbytes": 0, "outbytes": 6}, | |
7: {"inbytes": 1, "outbytes": 0}, | |
8: {"inbytes": 0, "outbytes": 8}, | |
9: {"inbytes": 4, "outbytes": 0, "inhandles": [1, 1, 1, 1, 1]}, | |
10: {"inbytes": 0, "outbytes": 0}, | |
11: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::wlan::detail::ILocalManager': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 0}, | |
6: {"inbytes": 0, "outbytes": 6}, | |
7: {"inbytes": 0x80, "outbytes": 0}, | |
8: {"inbytes": 0, "outbytes": 0}, | |
9: {"inbytes": 0, "outbytes": 0, "buffers": [21]}, | |
10: {"inbytes": 0, "outbytes": 0}, | |
11: {"inbytes": 0x80, "outbytes": 0}, | |
12: {"inbytes": 0, "outbytes": 0}, | |
13: {"inbytes": 0x80, "outbytes": 0}, | |
14: {"inbytes": 0, "outbytes": 0}, | |
15: {"inbytes": 0x10, "outbytes": 0}, | |
16: {"inbytes": 4, "outbytes": 0}, | |
17: {"inbytes": 4, "outbytes": 0, "outhandles": [1]}, | |
18: {"inbytes": 0, "outbytes": 0x3C}, | |
19: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
20: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
21: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
22: {"inbytes": 0, "outbytes": 4}, | |
23: {"inbytes": 0, "outbytes": 0x50}, | |
24: {"inbytes": 4, "outbytes": 4, "buffers": [5]}, | |
25: {"inbytes": 4, "outbytes": 0}, | |
26: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
27: {"inbytes": 4, "outbytes": 0}, | |
28: {"inbytes": 4, "outbytes": 4, "buffers": [9]}, | |
29: {"inbytes": 4, "outbytes": 0}, | |
30: {"inbytes": 8, "outbytes": 0}, | |
31: {"inbytes": 2, "outbytes": 4}, | |
32: {"inbytes": 4, "outbytes": 0, "buffers": [25]}, | |
33: {"inbytes": 4, "outbytes": 0, "buffers": [25]}, | |
34: {"inbytes": 0, "outbytes": 0, "buffers": [25, 6]}, | |
35: {"inbytes": 0x10, "outbytes": 0, "buffers": [5]}, | |
36: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
37: {"inbytes": 0, "outbytes": 0}, | |
38: {"inbytes": 4, "outbytes": 4, "buffers": [9]}, | |
39: {"inbytes": 4, "outbytes": 0}, | |
40: {"inbytes": 8, "outbytes": 0}, | |
41: {"inbytes": 4, "outbytes": 4}, | |
42: {"inbytes": 4, "outbytes": 0}, | |
43: {"inbytes": 0, "outbytes": 4}, | |
44: {"inbytes": 4, "outbytes": 0}, | |
}, | |
'nn::wlan::detail::ISocketGetFrame': { | |
0: {"inbytes": 4, "outbytes": 4, "buffers": [6]}, | |
}, | |
'nn::wlan::detail::ILocalGetActionFrame': { | |
0: {"inbytes": 4, "outbytes": 0xC, "buffers": [6]}, | |
}, | |
}, | |
'ldn': { | |
'nn::ldn::detail::ISystemServiceCreator': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::ldn::detail::ISystemLocalCommunicationService']}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::ldn::detail::IMonitorService': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [26]}, | |
2: {"inbytes": 0, "outbytes": 8}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 0, "outbytes": 0x20}, | |
5: {"inbytes": 0, "outbytes": 0x20}, | |
100: {"inbytes": 0, "outbytes": 0}, | |
101: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::ldn::detail::IUserLocalCommunicationService': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [26]}, | |
2: {"inbytes": 0, "outbytes": 8}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 0, "outbytes": 0x20}, | |
5: {"inbytes": 0, "outbytes": 0x20}, | |
100: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
101: {"inbytes": 0, "outbytes": 0, "buffers": [26, 10]}, | |
102: {"inbytes": 0x68, "outbytes": 2, "buffers": [34]}, | |
103: {"inbytes": 0x68, "outbytes": 2, "buffers": [34]}, | |
200: {"inbytes": 0, "outbytes": 0}, | |
201: {"inbytes": 0, "outbytes": 0}, | |
202: {"inbytes": 0x98, "outbytes": 0}, | |
203: {"inbytes": 0xB8, "outbytes": 0, "buffers": [9]}, | |
204: {"inbytes": 0, "outbytes": 0}, | |
205: {"inbytes": 4, "outbytes": 0}, | |
206: {"inbytes": 0, "outbytes": 0, "buffers": [33]}, | |
207: {"inbytes": 1, "outbytes": 0}, | |
208: {"inbytes": 6, "outbytes": 0}, | |
209: {"inbytes": 0, "outbytes": 0}, | |
300: {"inbytes": 0, "outbytes": 0}, | |
301: {"inbytes": 0, "outbytes": 0}, | |
302: {"inbytes": 0x7C, "outbytes": 0, "buffers": [25]}, | |
303: {"inbytes": 0xC0, "outbytes": 0}, | |
304: {"inbytes": 0, "outbytes": 0}, | |
400: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
401: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::ldn::detail::ISystemLocalCommunicationService': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [26]}, | |
2: {"inbytes": 0, "outbytes": 8}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 0, "outbytes": 0x20}, | |
5: {"inbytes": 0, "outbytes": 0x20}, | |
100: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
101: {"inbytes": 0, "outbytes": 0, "buffers": [26, 10]}, | |
102: {"inbytes": 0x68, "outbytes": 2, "buffers": [34]}, | |
103: {"inbytes": 0x68, "outbytes": 2, "buffers": [34]}, | |
200: {"inbytes": 0, "outbytes": 0}, | |
201: {"inbytes": 0, "outbytes": 0}, | |
202: {"inbytes": 0x98, "outbytes": 0}, | |
203: {"inbytes": 0xB8, "outbytes": 0, "buffers": [9]}, | |
204: {"inbytes": 0, "outbytes": 0}, | |
205: {"inbytes": 4, "outbytes": 0}, | |
206: {"inbytes": 0, "outbytes": 0, "buffers": [33]}, | |
207: {"inbytes": 1, "outbytes": 0}, | |
208: {"inbytes": 6, "outbytes": 0}, | |
209: {"inbytes": 0, "outbytes": 0}, | |
300: {"inbytes": 0, "outbytes": 0}, | |
301: {"inbytes": 0, "outbytes": 0}, | |
302: {"inbytes": 0x7C, "outbytes": 0, "buffers": [25]}, | |
303: {"inbytes": 0xC0, "outbytes": 0}, | |
304: {"inbytes": 0, "outbytes": 0}, | |
400: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
401: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::ldn::detail::IUserServiceCreator': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::ldn::detail::IUserLocalCommunicationService']}, | |
}, | |
'nn::ldn::detail::IMonitorServiceCreator': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::ldn::detail::IMonitorService']}, | |
}, | |
}, | |
'nvservices': { | |
'nv::gemcontrol::INvGemControl': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0, "outbytes": 4, "outhandles": [1]}, | |
2: {"inbytes": 1, "outbytes": 4}, | |
3: {"inbytes": 0x10, "outbytes": 4}, | |
4: {"inbytes": 0x10, "outbytes": 4}, | |
5: {"inbytes": 0, "outbytes": 0x10}, | |
6: {"inbytes": 0, "outbytes": 4}, | |
}, | |
'nns::nvdrv::INvDrvDebugFSServices': { | |
0: {"inbytes": 0, "outbytes": 4, "inhandles": [1]}, | |
1: {"inbytes": 4, "outbytes": 0}, | |
2: {"inbytes": 4, "outbytes": 4, "buffers": [6]}, | |
3: {"inbytes": 4, "outbytes": 4, "buffers": [5, 6]}, | |
4: {"inbytes": 4, "outbytes": 4, "buffers": [5, 5]}, | |
}, | |
'nv::gemcoredump::INvGemCoreDump': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0, "outbytes": 0x10}, | |
2: {"inbytes": 0, "outbytes": 4, "buffers": [34]}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nns::nvdrv::INvDrvServices': { | |
0: {"inbytes": 0, "outbytes": 8, "buffers": [5]}, | |
1: {"inbytes": 8, "outbytes": 4, "buffers": [33, 34]}, | |
2: {"inbytes": 4, "outbytes": 4}, | |
3: {"inbytes": 4, "outbytes": 4, "inhandles": [1, 1]}, | |
4: {"inbytes": 8, "outbytes": 4, "outhandles": [1]}, | |
5: {"inbytes": 8, "outbytes": 4, "inhandles": [1]}, | |
6: {"inbytes": 0, "outbytes": 0x24}, | |
7: {"inbytes": 8, "outbytes": 4}, | |
8: {"inbytes": 8, "outbytes": 4, "pid": True}, | |
9: {"inbytes": 0, "outbytes": 0}, | |
}, | |
}, | |
'pcv': { | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::timesrv::detail::service::IStaticService': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::timesrv::detail::service::ISystemClock']}, | |
1: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::timesrv::detail::service::ISystemClock']}, | |
2: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::timesrv::detail::service::ISteadyClock']}, | |
3: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::timesrv::detail::service::ITimeZoneService']}, | |
4: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::timesrv::detail::service::ISystemClock']}, | |
100: {"inbytes": 0, "outbytes": 1}, | |
101: {"inbytes": 1, "outbytes": 0}, | |
}, | |
'nn::pcv::detail::IPcvService': { | |
0: {"inbytes": 8, "outbytes": 0}, | |
1: {"inbytes": 8, "outbytes": 0}, | |
2: {"inbytes": 8, "outbytes": 0}, | |
3: {"inbytes": 4, "outbytes": 4}, | |
4: {"inbytes": 4, "outbytes": 0xC}, | |
5: {"inbytes": 8, "outbytes": 8, "buffers": [10]}, | |
6: {"inbytes": 8, "outbytes": 0}, | |
7: {"inbytes": 8, "outbytes": 0}, | |
8: {"inbytes": 8, "outbytes": 0}, | |
9: {"inbytes": 4, "outbytes": 1}, | |
10: {"inbytes": 4, "outbytes": 0xC}, | |
11: {"inbytes": 8, "outbytes": 0}, | |
12: {"inbytes": 4, "outbytes": 4}, | |
13: {"inbytes": 4, "outbytes": 4, "buffers": [10]}, | |
14: {"inbytes": 4, "outbytes": 0}, | |
15: {"inbytes": 0, "outbytes": 0}, | |
16: {"inbytes": 0, "outbytes": 1}, | |
17: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::bpc::IRtcManager': { | |
0: {"inbytes": 0, "outbytes": 8}, | |
1: {"inbytes": 8, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 1}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::timesrv::detail::service::ISteadyClock': { | |
0: {"inbytes": 0, "outbytes": 0x18}, | |
2: {"inbytes": 0, "outbytes": 8}, | |
3: {"inbytes": 8, "outbytes": 0}, | |
100: {"inbytes": 0, "outbytes": 8}, | |
101: {"inbytes": 0, "outbytes": 1}, | |
102: {"inbytes": 0, "outbytes": 4}, | |
}, | |
'nn::pcv::IArbitrationManager': { | |
0: {"inbytes": 4, "outbytes": 0}, | |
}, | |
'nn::bpc::IBoardPowerControlManager': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 4}, | |
3: {"inbytes": 0, "outbytes": 4}, | |
4: {"inbytes": 0, "outbytes": 1}, | |
5: {"inbytes": 4, "outbytes": 0, "outhandles": [1]}, | |
6: {"inbytes": 0, "outbytes": 4}, | |
7: {"inbytes": 4, "outbytes": 0, "outhandles": [1]}, | |
8: {"inbytes": 8, "outbytes": 4}, | |
9: {"inbytes": 4, "outbytes": 0}, | |
10: {"inbytes": 0, "outbytes": 0x10}, | |
}, | |
'nn::pcv::IImmediateManager': { | |
0: {"inbytes": 8, "outbytes": 0}, | |
}, | |
'nn::timesrv::detail::service::ISystemClock': { | |
0: {"inbytes": 0, "outbytes": 8}, | |
1: {"inbytes": 8, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0x20}, | |
3: {"inbytes": 0x20, "outbytes": 0}, | |
}, | |
'nn::timesrv::detail::service::ITimeZoneService': { | |
0: {"inbytes": 0, "outbytes": 0x24}, | |
1: {"inbytes": 0x24, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 4}, | |
3: {"inbytes": 4, "outbytes": 4, "buffers": [6]}, | |
4: {"inbytes": 0x24, "outbytes": 0, "buffers": [22]}, | |
5: {"inbytes": 0, "outbytes": 0x10}, | |
100: {"inbytes": 8, "outbytes": 0x20, "buffers": [21]}, | |
101: {"inbytes": 8, "outbytes": 0x20}, | |
201: {"inbytes": 8, "outbytes": 4, "buffers": [21, 10]}, | |
202: {"inbytes": 8, "outbytes": 4, "buffers": [10]}, | |
}, | |
}, | |
'ppc': { | |
'nn::fgm::sf::IDebugger': { | |
0: {"inbytes": 8, "outbytes": 0, "inhandles": [1], "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 0xC, "buffers": [6]}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::apm::IManager': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::apm::ISession']}, | |
1: {"inbytes": 0, "outbytes": 4}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::apm::ISystemManager': { | |
0: {"inbytes": 4, "outbytes": 0}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [1]}, | |
2: {"inbytes": 0, "outbytes": 0x28}, | |
3: {"inbytes": 0, "outbytes": 0x28}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::fgm::sf::IRequest': { | |
0: {"inbytes": 0x10, "outbytes": 0, "outhandles": [1], "pid": True}, | |
1: {"inbytes": 8, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 4}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::apm::IManagerPrivileged': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::apm::ISession']}, | |
}, | |
'nn::apm::ISession': { | |
0: {"inbytes": 8, "outbytes": 0}, | |
1: {"inbytes": 4, "outbytes": 4}, | |
}, | |
'nn::fgm::sf::ISession': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::fgm::sf::IRequest']}, | |
}, | |
}, | |
'nvnflinger': { | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
}, | |
'pcie.withoutHb': { | |
'nn::pcie::detail::IManager': { | |
0: {"inbytes": 0x18, "outbytes": 0, "inhandles": [1], "outhandles": [1], "outinterfaces": ['nn::pcie::detail::ISession']}, | |
1: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::pcie::detail::ISession': { | |
0: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [1]}, | |
2: {"inbytes": 4, "outbytes": 0}, | |
3: {"inbytes": 4, "outbytes": 0, "buffers": [6]}, | |
4: {"inbytes": 8, "outbytes": 0x18}, | |
5: {"inbytes": 0xC, "outbytes": 4}, | |
6: {"inbytes": 0x10, "outbytes": 0}, | |
7: {"inbytes": 0x10, "outbytes": 0, "buffers": [6]}, | |
8: {"inbytes": 0x10, "outbytes": 0, "buffers": [5]}, | |
9: {"inbytes": 8, "outbytes": 4}, | |
10: {"inbytes": 8, "outbytes": 4}, | |
11: {"inbytes": 0x18, "outbytes": 8}, | |
12: {"inbytes": 0x10, "outbytes": 0}, | |
13: {"inbytes": 0x10, "outbytes": 0}, | |
14: {"inbytes": 0x10, "outbytes": 8}, | |
15: {"inbytes": 4, "outbytes": 0x10}, | |
16: {"inbytes": 8, "outbytes": 0}, | |
17: {"inbytes": 8, "outbytes": 0, "outhandles": [1]}, | |
18: {"inbytes": 4, "outbytes": 0}, | |
19: {"inbytes": 0xC, "outbytes": 0}, | |
20: {"inbytes": 8, "outbytes": 0}, | |
}, | |
}, | |
'account': { | |
'nn::account::detail::IAsyncContext': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 1}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::account::detail::INotifier': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
}, | |
'nn::account::baas::IManagerForSystemService': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 8}, | |
2: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
3: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
100: {"inbytes": 8, "outbytes": 0, "buffers": [25], "pid": True}, | |
120: {"inbytes": 0, "outbytes": 8}, | |
130: {"inbytes": 0, "outbytes": 8, "buffers": [26, 6]}, | |
131: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
132: {"inbytes": 4, "outbytes": 1, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
150: {"inbytes": 4, "outbytes": 0, "buffers": [25, 25], "inhandles": [1], "outinterfaces": ['nn::account::nas::IAuthorizationRequest']}, | |
}, | |
'nn::account::baas::IGuestLoginRequest': { | |
0: {"inbytes": 0, "outbytes": 0x10}, | |
11: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
12: {"inbytes": 0, "outbytes": 8}, | |
13: {"inbytes": 0, "outbytes": 8}, | |
14: {"inbytes": 0, "outbytes": 0, "buffers": [10]}, | |
15: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
}, | |
'nn::account::nas::IAuthorizationRequest': { | |
0: {"inbytes": 0, "outbytes": 0x10}, | |
10: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
19: {"inbytes": 0, "outbytes": 1}, | |
20: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
21: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
22: {"inbytes": 0, "outbytes": 0, "buffers": [26]}, | |
}, | |
'nn::account::baas::IAdministrator': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 8}, | |
2: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
3: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
100: {"inbytes": 8, "outbytes": 0, "buffers": [25], "pid": True}, | |
120: {"inbytes": 0, "outbytes": 8}, | |
130: {"inbytes": 0, "outbytes": 8, "buffers": [26, 6]}, | |
131: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
132: {"inbytes": 4, "outbytes": 1, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
150: {"inbytes": 4, "outbytes": 0, "buffers": [25, 25], "inhandles": [1], "outinterfaces": ['nn::account::nas::IAuthorizationRequest']}, | |
200: {"inbytes": 0, "outbytes": 1}, | |
201: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
202: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
203: {"inbytes": 0, "outbytes": 0}, | |
220: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
222: {"inbytes": 4, "outbytes": 1, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
250: {"inbytes": 0, "outbytes": 1}, | |
251: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::nas::IOAuthProcedureForNintendoAccountLinkage']}, | |
252: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::account::nas::IOAuthProcedureForNintendoAccountLinkage']}, | |
255: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::http::IOAuthProcedure']}, | |
256: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::account::http::IOAuthProcedure']}, | |
280: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::account::http::IOAuthProcedure']}, | |
997: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
998: {"inbytes": 4, "outbytes": 0}, | |
221: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
}, | |
'nn::account::profile::IProfileEditor': { | |
0: {"inbytes": 0, "outbytes": 0x38, "buffers": [26]}, | |
1: {"inbytes": 0, "outbytes": 0x38}, | |
10: {"inbytes": 0, "outbytes": 4}, | |
11: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
100: {"inbytes": 0x38, "outbytes": 0, "buffers": [25]}, | |
101: {"inbytes": 0x38, "outbytes": 0, "buffers": [25, 5]}, | |
}, | |
'nn::account::IAccountServiceForSystemService': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0x10, "outbytes": 1}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [10]}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [10]}, | |
4: {"inbytes": 0, "outbytes": 0x10}, | |
5: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::account::profile::IProfile']}, | |
50: {"inbytes": 8, "outbytes": 1, "pid": True}, | |
51: {"inbytes": 1, "outbytes": 0x10}, | |
100: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::INotifier']}, | |
101: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::INotifier']}, | |
102: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::account::baas::IManagerForSystemService']}, | |
103: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::INotifier']}, | |
104: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::INotifier']}, | |
110: {"inbytes": 0x18, "outbytes": 0, "buffers": [5]}, | |
111: {"inbytes": 0x18, "outbytes": 0}, | |
112: {"inbytes": 0x18, "outbytes": 4, "buffers": [6]}, | |
190: {"inbytes": 0x10, "outbytes": 0x10}, | |
998: {"inbytes": 0x10, "outbytes": 0}, | |
999: {"inbytes": 0x10, "outbytes": 0}, | |
}, | |
'nn::account::detail::ISessionObject': { | |
999: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::account::profile::IProfile': { | |
0: {"inbytes": 0, "outbytes": 0x38, "buffers": [26]}, | |
1: {"inbytes": 0, "outbytes": 0x38}, | |
10: {"inbytes": 0, "outbytes": 4}, | |
11: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
}, | |
'nn::account::IAccountServiceForApplication': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0x10, "outbytes": 1}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [10]}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [10]}, | |
4: {"inbytes": 0, "outbytes": 0x10}, | |
5: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::account::profile::IProfile']}, | |
50: {"inbytes": 8, "outbytes": 1, "pid": True}, | |
51: {"inbytes": 1, "outbytes": 0x10}, | |
100: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
101: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::account::baas::IManagerForApplication']}, | |
102: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
110: {"inbytes": 0x10, "outbytes": 0, "buffers": [5]}, | |
111: {"inbytes": 0x10, "outbytes": 0}, | |
120: {"inbytes": 4, "outbytes": 0, "inhandles": [1], "outinterfaces": ['nn::account::baas::IGuestLoginRequest']}, | |
}, | |
'nn::account::IBaasAccessTokenAccessor': { | |
0: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
1: {"inbytes": 0x10, "outbytes": 4, "buffers": [6]}, | |
2: {"inbytes": 0x10, "outbytes": 8}, | |
50: {"inbytes": 0x38, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
51: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
}, | |
'nn::account::nas::IOAuthProcedureForGuestLogin': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [26, 26]}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [9]}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [9], "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
10: {"inbytes": 0, "outbytes": 0x10}, | |
100: {"inbytes": 0, "outbytes": 8}, | |
101: {"inbytes": 0, "outbytes": 8}, | |
102: {"inbytes": 0, "outbytes": 0, "buffers": [10]}, | |
103: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::account::http::IOAuthProcedure': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [26, 26]}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [9]}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [9], "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
10: {"inbytes": 0, "outbytes": 0x10}, | |
}, | |
'nn::account::IAccountServiceForAdministrator': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0x10, "outbytes": 1}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [10]}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [10]}, | |
4: {"inbytes": 0, "outbytes": 0x10}, | |
5: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::account::profile::IProfile']}, | |
50: {"inbytes": 8, "outbytes": 1, "pid": True}, | |
51: {"inbytes": 1, "outbytes": 0x10}, | |
100: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::INotifier']}, | |
101: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::INotifier']}, | |
102: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::account::baas::IManagerForSystemService']}, | |
103: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::INotifier']}, | |
104: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::INotifier']}, | |
110: {"inbytes": 0x18, "outbytes": 0, "buffers": [5]}, | |
111: {"inbytes": 0x18, "outbytes": 0}, | |
112: {"inbytes": 0x18, "outbytes": 4, "buffers": [6]}, | |
190: {"inbytes": 0x10, "outbytes": 0x10}, | |
200: {"inbytes": 0, "outbytes": 0x10}, | |
201: {"inbytes": 0x10, "outbytes": 0}, | |
202: {"inbytes": 0x10, "outbytes": 0}, | |
203: {"inbytes": 0x10, "outbytes": 0}, | |
204: {"inbytes": 0x18, "outbytes": 0}, | |
205: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::account::profile::IProfileEditor']}, | |
206: {"inbytes": 0x10, "outbytes": 0}, | |
230: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
250: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::account::baas::IAdministrator']}, | |
290: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::account::nas::IOAuthProcedureForGuestLogin']}, | |
299: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::ISessionObject']}, | |
998: {"inbytes": 0x10, "outbytes": 0}, | |
999: {"inbytes": 0x10, "outbytes": 0}, | |
}, | |
'nn::account::baas::IManagerForApplication': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 8}, | |
2: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
3: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
130: {"inbytes": 0, "outbytes": 8, "buffers": [26, 6]}, | |
150: {"inbytes": 4, "outbytes": 0, "buffers": [25], "inhandles": [1], "outinterfaces": ['nn::account::nas::IAuthorizationRequest']}, | |
}, | |
'nn::account::nas::IOAuthProcedureForNintendoAccountLinkage': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [26, 26]}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [9]}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [9], "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
10: {"inbytes": 0, "outbytes": 0x10}, | |
100: {"inbytes": 4, "outbytes": 0, "buffers": [26, 26]}, | |
101: {"inbytes": 0, "outbytes": 1}, | |
199: {"inbytes": 0, "outbytes": 0, "buffers": [26]}, | |
}, | |
}, | |
'ns': { | |
'nn::ns::detail::IDevelopInterface': { | |
0: {"inbytes": 0x18, "outbytes": 8}, | |
1: {"inbytes": 8, "outbytes": 0}, | |
2: {"inbytes": 8, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
5: {"inbytes": 0, "outbytes": 0x10}, | |
6: {"inbytes": 0, "outbytes": 0}, | |
7: {"inbytes": 0, "outbytes": 0x10, "buffers": [5]}, | |
8: {"inbytes": 0x10, "outbytes": 8}, | |
9: {"inbytes": 0x10, "outbytes": 8}, | |
}, | |
'nn::ovln::IReceiver': { | |
0: {"inbytes": 0x10, "outbytes": 0}, | |
1: {"inbytes": 0x10, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
3: {"inbytes": 0, "outbytes": 0x80}, | |
4: {"inbytes": 0, "outbytes": 0x88}, | |
}, | |
'nn::pdm::detail::IQueryService': { | |
0: {"inbytes": 4, "outbytes": 4, "buffers": [6]}, | |
1: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
2: {"inbytes": 0x10, "outbytes": 4, "buffers": [6]}, | |
3: {"inbytes": 8, "outbytes": 4, "buffers": [6]}, | |
4: {"inbytes": 8, "outbytes": 0x28}, | |
5: {"inbytes": 0x18, "outbytes": 0x28}, | |
6: {"inbytes": 0x10, "outbytes": 0x28}, | |
7: {"inbytes": 0, "outbytes": 4, "buffers": [6, 5]}, | |
8: {"inbytes": 4, "outbytes": 4, "buffers": [6]}, | |
9: {"inbytes": 0, "outbytes": 0xC}, | |
}, | |
'nn::ns::detail::IProgressAsyncResult': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::mii::detail::IDatabaseService': { | |
0: {"inbytes": 4, "outbytes": 1}, | |
1: {"inbytes": 0, "outbytes": 1}, | |
2: {"inbytes": 4, "outbytes": 4}, | |
3: {"inbytes": 4, "outbytes": 4, "buffers": [6]}, | |
4: {"inbytes": 4, "outbytes": 4, "buffers": [6]}, | |
5: {"inbytes": 0x5C, "outbytes": 0x58}, | |
6: {"inbytes": 0xC, "outbytes": 0x58}, | |
7: {"inbytes": 4, "outbytes": 0x58}, | |
8: {"inbytes": 4, "outbytes": 4, "buffers": [6]}, | |
9: {"inbytes": 4, "outbytes": 4, "buffers": [6]}, | |
10: {"inbytes": 0x48, "outbytes": 0x44}, | |
11: {"inbytes": 0x11, "outbytes": 4}, | |
12: {"inbytes": 0x14, "outbytes": 0}, | |
13: {"inbytes": 0x44, "outbytes": 0}, | |
14: {"inbytes": 0x10, "outbytes": 0}, | |
15: {"inbytes": 0, "outbytes": 0}, | |
16: {"inbytes": 0, "outbytes": 0}, | |
17: {"inbytes": 0, "outbytes": 0}, | |
18: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
19: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
20: {"inbytes": 0, "outbytes": 1}, | |
21: {"inbytes": 0x58, "outbytes": 4}, | |
}, | |
'nn::mii::detail::IStaticService': { | |
0: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::mii::detail::IDatabaseService']}, | |
}, | |
'nn::ns::detail::IAsyncValue': { | |
0: {"inbytes": 0, "outbytes": 8}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::ovln::ISenderService': { | |
0: {"inbytes": 0x18, "outbytes": 0, "outinterfaces": ['nn::ovln::ISender']}, | |
}, | |
'nn::ns::detail::IAsyncResult': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::ns::detail::IApplicationManagerInterface': { | |
0: {"inbytes": 4, "outbytes": 4, "buffers": [6]}, | |
1: {"inbytes": 0, "outbytes": 8}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [6, 5]}, | |
4: {"inbytes": 8, "outbytes": 0}, | |
5: {"inbytes": 8, "outbytes": 0}, | |
6: {"inbytes": 0, "outbytes": 1}, | |
7: {"inbytes": 0, "outbytes": 0}, | |
8: {"inbytes": 0x10, "outbytes": 1}, | |
9: {"inbytes": 0x10, "outbytes": 0}, | |
11: {"inbytes": 8, "outbytes": 0x80}, | |
16: {"inbytes": 0x10, "outbytes": 0, "buffers": [5]}, | |
17: {"inbytes": 0x10, "outbytes": 4, "buffers": [6]}, | |
19: {"inbytes": 8, "outbytes": 8}, | |
21: {"inbytes": 0x10, "outbytes": 0, "buffers": [22]}, | |
22: {"inbytes": 8, "outbytes": 0}, | |
23: {"inbytes": 0x10, "outbytes": 0}, | |
26: {"inbytes": 0x10, "outbytes": 0}, | |
27: {"inbytes": 8, "outbytes": 0}, | |
30: {"inbytes": 8, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::ns::detail::IAsyncValue']}, | |
31: {"inbytes": 0x10, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::ns::detail::IAsyncResult']}, | |
32: {"inbytes": 8, "outbytes": 0}, | |
33: {"inbytes": 8, "outbytes": 0}, | |
35: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
36: {"inbytes": 0x10, "outbytes": 0}, | |
37: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
38: {"inbytes": 8, "outbytes": 0}, | |
39: {"inbytes": 8, "outbytes": 0}, | |
40: {"inbytes": 8, "outbytes": 8, "buffers": [21, 6]}, | |
41: {"inbytes": 8, "outbytes": 0x10}, | |
42: {"inbytes": 0, "outbytes": 0}, | |
43: {"inbytes": 0, "outbytes": 0}, | |
44: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
45: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
46: {"inbytes": 0, "outbytes": 0x10}, | |
47: {"inbytes": 1, "outbytes": 8}, | |
48: {"inbytes": 1, "outbytes": 8}, | |
49: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
52: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
53: {"inbytes": 8, "outbytes": 0}, | |
54: {"inbytes": 8, "outbytes": 0}, | |
55: {"inbytes": 4, "outbytes": 1}, | |
56: {"inbytes": 0x10, "outbytes": 0}, | |
57: {"inbytes": 8, "outbytes": 0}, | |
58: {"inbytes": 0, "outbytes": 0}, | |
59: {"inbytes": 1, "outbytes": 8}, | |
60: {"inbytes": 8, "outbytes": 1}, | |
61: {"inbytes": 0, "outbytes": 0x10}, | |
62: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::ns::detail::IGameCardStopper']}, | |
63: {"inbytes": 8, "outbytes": 1}, | |
64: {"inbytes": 8, "outbytes": 0}, | |
65: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::ns::detail::IRequestServerStopper']}, | |
100: {"inbytes": 0, "outbytes": 0}, | |
101: {"inbytes": 0, "outbytes": 0}, | |
102: {"inbytes": 0, "outbytes": 0}, | |
200: {"inbytes": 0x10, "outbytes": 0x10}, | |
201: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::ns::detail::IProgressMonitorForDeleteUserSaveDataAll']}, | |
210: {"inbytes": 0x18, "outbytes": 0}, | |
220: {"inbytes": 0x10, "outbytes": 0}, | |
300: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
301: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
302: {"inbytes": 8, "outbytes": 8}, | |
303: {"inbytes": 8, "outbytes": 0}, | |
304: {"inbytes": 0, "outbytes": 8}, | |
305: {"inbytes": 8, "outbytes": 0}, | |
306: {"inbytes": 0, "outbytes": 8}, | |
307: {"inbytes": 8, "outbytes": 0}, | |
400: {"inbytes": 0x10, "outbytes": 4, "buffers": [6]}, | |
401: {"inbytes": 0, "outbytes": 0}, | |
403: {"inbytes": 0, "outbytes": 4}, | |
404: {"inbytes": 8, "outbytes": 0}, | |
405: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
502: {"inbytes": 8, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::ns::detail::IAsyncResult']}, | |
503: {"inbytes": 0x18, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::ns::detail::IAsyncValue']}, | |
504: {"inbytes": 0x20, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::ns::detail::IAsyncResult']}, | |
600: {"inbytes": 8, "outbytes": 4}, | |
601: {"inbytes": 0x10, "outbytes": 4, "buffers": [6]}, | |
602: {"inbytes": 0x10, "outbytes": 4, "buffers": [6]}, | |
603: {"inbytes": 0x10, "outbytes": 0x10}, | |
604: {"inbytes": 0x10, "outbytes": 0}, | |
605: {"inbytes": 0x10, "outbytes": 4, "buffers": [6]}, | |
700: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
701: {"inbytes": 0, "outbytes": 0}, | |
702: {"inbytes": 0, "outbytes": 0}, | |
703: {"inbytes": 0, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::ns::detail::IAsyncResult']}, | |
704: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
705: {"inbytes": 0, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::ns::detail::IAsyncValue']}, | |
800: {"inbytes": 0, "outbytes": 0}, | |
801: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
900: {"inbytes": 8, "outbytes": 0x18}, | |
901: {"inbytes": 8, "outbytes": 0, "buffers": [22]}, | |
902: {"inbytes": 8, "outbytes": 0}, | |
903: {"inbytes": 8, "outbytes": 0}, | |
904: {"inbytes": 8, "outbytes": 0}, | |
905: {"inbytes": 0x10, "outbytes": 0}, | |
906: {"inbytes": 8, "outbytes": 8}, | |
907: {"inbytes": 8, "outbytes": 0}, | |
908: {"inbytes": 0x10, "outbytes": 4, "buffers": [6]}, | |
1000: {"inbytes": 0x10, "outbytes": 0, "inhandles": [1], "outhandles": [1], "outinterfaces": ['nn::ns::detail::IProgressAsyncResult']}, | |
1001: {"inbytes": 0x10, "outbytes": 0}, | |
1200: {"inbytes": 0, "outbytes": 1}, | |
1300: {"inbytes": 8, "outbytes": 1}, | |
1301: {"inbytes": 0x10, "outbytes": 0}, | |
1302: {"inbytes": 8, "outbytes": 0}, | |
1400: {"inbytes": 0, "outbytes": 0}, | |
1500: {"inbytes": 0, "outbytes": 0}, | |
1501: {"inbytes": 0, "outbytes": 1}, | |
1502: {"inbytes": 0, "outbytes": 0}, | |
1503: {"inbytes": 0, "outbytes": 0}, | |
1600: {"inbytes": 0, "outbytes": 0x20}, | |
1700: {"inbytes": 0x10, "outbytes": 4, "buffers": [6]}, | |
1800: {"inbytes": 0, "outbytes": 1}, | |
1801: {"inbytes": 0, "outbytes": 8}, | |
1802: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
402: {"inbytes": 8, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::ns::detail::IAsyncResult']}, | |
}, | |
'nn::ns::detail::ISystemUpdateInterface': { | |
0: {"inbytes": 0, "outbytes": 1}, | |
1: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::ns::detail::ISystemUpdateControl']}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 0x10, "outbytes": 0}, | |
6: {"inbytes": 0, "outbytes": 0}, | |
9: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
10: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::pl::detail::ISharedFontManager': { | |
0: {"inbytes": 4, "outbytes": 0}, | |
1: {"inbytes": 4, "outbytes": 4}, | |
2: {"inbytes": 4, "outbytes": 4}, | |
3: {"inbytes": 4, "outbytes": 4}, | |
4: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
5: {"inbytes": 8, "outbytes": 8, "buffers": [6, 6, 6]}, | |
}, | |
'nn::pdm::detail::INotifyService': { | |
0: {"inbytes": 0x10, "outbytes": 0}, | |
2: {"inbytes": 1, "outbytes": 0}, | |
3: {"inbytes": 1, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
}, | |
'nn::ns::detail::IRequestServerStopper': { | |
}, | |
'nn::ovln::IReceiverService': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::ovln::IReceiver']}, | |
}, | |
'nn::ns::detail::IProgressMonitorForDeleteUserSaveDataAll': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 1}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
10: {"inbytes": 0, "outbytes": 0x28}, | |
}, | |
'nn::ns::detail::IGameCardStopper': { | |
}, | |
'nn::ns::detail::ISystemUpdateControl': { | |
0: {"inbytes": 0, "outbytes": 1}, | |
1: {"inbytes": 0, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::ns::detail::IAsyncValue']}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::ns::detail::IAsyncResult']}, | |
3: {"inbytes": 0, "outbytes": 0x10}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::ns::detail::IAsyncResult']}, | |
6: {"inbytes": 0, "outbytes": 0x10}, | |
7: {"inbytes": 0, "outbytes": 1}, | |
8: {"inbytes": 0, "outbytes": 0}, | |
9: {"inbytes": 0, "outbytes": 8, "buffers": [21]}, | |
10: {"inbytes": 0, "outbytes": 8, "buffers": [21, 6]}, | |
11: {"inbytes": 8, "outbytes": 0, "inhandles": [1]}, | |
12: {"inbytes": 0, "outbytes": 8, "buffers": [21]}, | |
13: {"inbytes": 0, "outbytes": 8, "buffers": [21, 6]}, | |
}, | |
'nn::ovln::ISender': { | |
0: {"inbytes": 0x88, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 4}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::aocsrv::detail::IAddOnContentManager': { | |
0: {"inbytes": 8, "outbytes": 4}, | |
1: {"inbytes": 0x10, "outbytes": 4, "buffers": [6]}, | |
2: {"inbytes": 8, "outbytes": 4, "pid": True}, | |
3: {"inbytes": 0x10, "outbytes": 4, "buffers": [6], "pid": True}, | |
4: {"inbytes": 8, "outbytes": 8}, | |
5: {"inbytes": 8, "outbytes": 8, "pid": True}, | |
6: {"inbytes": 0x10, "outbytes": 0}, | |
7: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
}, | |
}, | |
'nfc': { | |
'nn::nfc::detail::IUser': { | |
0: {"inbytes": 0x10, "outbytes": 0, "buffers": [5], "pid": True}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 4}, | |
3: {"inbytes": 0, "outbytes": 1}, | |
}, | |
'nn::nfp::detail::ISystemManager': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::nfp::detail::ISystem']}, | |
}, | |
'nn::nfc::detail::ISystem': { | |
0: {"inbytes": 0x10, "outbytes": 0, "buffers": [5], "pid": True}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 4}, | |
3: {"inbytes": 0, "outbytes": 1}, | |
100: {"inbytes": 1, "outbytes": 0}, | |
}, | |
'nn::nfp::detail::ISystem': { | |
0: {"inbytes": 0x10, "outbytes": 0, "buffers": [5], "pid": True}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 4, "buffers": [10]}, | |
3: {"inbytes": 8, "outbytes": 0}, | |
4: {"inbytes": 8, "outbytes": 0}, | |
5: {"inbytes": 0x10, "outbytes": 0}, | |
6: {"inbytes": 8, "outbytes": 0}, | |
10: {"inbytes": 8, "outbytes": 0}, | |
11: {"inbytes": 8, "outbytes": 0}, | |
13: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
14: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
15: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
16: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
17: {"inbytes": 8, "outbytes": 0, "outhandles": [1]}, | |
18: {"inbytes": 8, "outbytes": 0, "outhandles": [1]}, | |
19: {"inbytes": 0, "outbytes": 4}, | |
20: {"inbytes": 8, "outbytes": 4}, | |
21: {"inbytes": 8, "outbytes": 4}, | |
100: {"inbytes": 8, "outbytes": 0}, | |
101: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
102: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
103: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
104: {"inbytes": 8, "outbytes": 0}, | |
106: {"inbytes": 8, "outbytes": 1}, | |
105: {"inbytes": 8, "outbytes": 0}, | |
}, | |
'nn::nfc::am::detail::IAmManager': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::nfc::am::detail::IAm']}, | |
}, | |
'nn::nfc::mifare::detail::IUserManager': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::nfc::mifare::detail::IUser']}, | |
}, | |
'nn::nfp::detail::IDebug': { | |
0: {"inbytes": 0x10, "outbytes": 0, "buffers": [5], "pid": True}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 4, "buffers": [10]}, | |
3: {"inbytes": 8, "outbytes": 0}, | |
4: {"inbytes": 8, "outbytes": 0}, | |
5: {"inbytes": 0x10, "outbytes": 0}, | |
6: {"inbytes": 8, "outbytes": 0}, | |
7: {"inbytes": 0xC, "outbytes": 0}, | |
8: {"inbytes": 8, "outbytes": 4, "buffers": [6]}, | |
9: {"inbytes": 8, "outbytes": 0, "buffers": [5]}, | |
10: {"inbytes": 8, "outbytes": 0}, | |
11: {"inbytes": 8, "outbytes": 0}, | |
12: {"inbytes": 0xC, "outbytes": 0, "buffers": [5]}, | |
13: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
14: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
15: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
16: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
17: {"inbytes": 8, "outbytes": 0, "outhandles": [1]}, | |
18: {"inbytes": 8, "outbytes": 0, "outhandles": [1]}, | |
19: {"inbytes": 0, "outbytes": 4}, | |
20: {"inbytes": 8, "outbytes": 4}, | |
21: {"inbytes": 8, "outbytes": 4}, | |
22: {"inbytes": 8, "outbytes": 4}, | |
100: {"inbytes": 8, "outbytes": 0}, | |
101: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
102: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
103: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
104: {"inbytes": 8, "outbytes": 0}, | |
106: {"inbytes": 8, "outbytes": 1}, | |
200: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
201: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
202: {"inbytes": 8, "outbytes": 0}, | |
203: {"inbytes": 0xC, "outbytes": 0}, | |
204: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
205: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
206: {"inbytes": 0xC, "outbytes": 0, "buffers": [5]}, | |
105: {"inbytes": 8, "outbytes": 0}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::nfc::am::detail::IAm': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 8, "outbytes": 0}, | |
}, | |
'nn::nfc::mifare::detail::IUser': { | |
0: {"inbytes": 0x10, "outbytes": 0, "buffers": [5], "pid": True}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 4, "buffers": [10]}, | |
3: {"inbytes": 8, "outbytes": 0}, | |
4: {"inbytes": 8, "outbytes": 0}, | |
5: {"inbytes": 8, "outbytes": 0, "buffers": [6, 5]}, | |
6: {"inbytes": 8, "outbytes": 0, "buffers": [5]}, | |
7: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
8: {"inbytes": 8, "outbytes": 0, "outhandles": [1]}, | |
9: {"inbytes": 8, "outbytes": 0, "outhandles": [1]}, | |
10: {"inbytes": 0, "outbytes": 4}, | |
11: {"inbytes": 8, "outbytes": 4}, | |
12: {"inbytes": 8, "outbytes": 4}, | |
}, | |
'nn::nfp::detail::IDebugManager': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::nfp::detail::IDebug']}, | |
}, | |
'nn::nfc::detail::IUserManager': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::nfc::detail::IUser']}, | |
}, | |
'nn::nfp::detail::IUser': { | |
0: {"inbytes": 0x10, "outbytes": 0, "buffers": [5], "pid": True}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 4, "buffers": [10]}, | |
3: {"inbytes": 8, "outbytes": 0}, | |
4: {"inbytes": 8, "outbytes": 0}, | |
5: {"inbytes": 0x10, "outbytes": 0}, | |
6: {"inbytes": 8, "outbytes": 0}, | |
7: {"inbytes": 0xC, "outbytes": 0}, | |
8: {"inbytes": 8, "outbytes": 4, "buffers": [6]}, | |
9: {"inbytes": 8, "outbytes": 0, "buffers": [5]}, | |
10: {"inbytes": 8, "outbytes": 0}, | |
11: {"inbytes": 8, "outbytes": 0}, | |
12: {"inbytes": 0xC, "outbytes": 0, "buffers": [5]}, | |
13: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
14: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
15: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
16: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
17: {"inbytes": 8, "outbytes": 0, "outhandles": [1]}, | |
18: {"inbytes": 8, "outbytes": 0, "outhandles": [1]}, | |
19: {"inbytes": 0, "outbytes": 4}, | |
20: {"inbytes": 8, "outbytes": 4}, | |
21: {"inbytes": 8, "outbytes": 4}, | |
22: {"inbytes": 8, "outbytes": 4}, | |
}, | |
'nn::nfc::detail::ISystemManager': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::nfc::detail::ISystem']}, | |
}, | |
'nn::nfp::detail::IUserManager': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::nfp::detail::IUser']}, | |
}, | |
}, | |
'psc': { | |
'nn::psc::sf::IPmModule': { | |
0: {"inbytes": 4, "outbytes": 0, "buffers": [5], "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 8}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::psc::sf::IPmControl': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0xC, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 4}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 0}, | |
6: {"inbytes": 0, "outbytes": 0x28, "buffers": [6, 6]}, | |
}, | |
'nn::psc::sf::IPmService': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::psc::sf::IPmModule']}, | |
}, | |
}, | |
'capsrv': { | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::capsrv::sf::IAlbumControlService': { | |
2201: {"inbytes": 0x18, "outbytes": 0, "buffers": [69]}, | |
2301: {"inbytes": 0x18, "outbytes": 0, "buffers": [69]}, | |
2101: {"inbytes": 0x10, "outbytes": 0x18}, | |
2102: {"inbytes": 0x28, "outbytes": 0x20}, | |
2001: {"inbytes": 1, "outbytes": 0}, | |
2002: {"inbytes": 1, "outbytes": 0}, | |
2011: {"inbytes": 0x10, "outbytes": 0}, | |
2012: {"inbytes": 0x10, "outbytes": 0}, | |
2013: {"inbytes": 8, "outbytes": 8}, | |
2014: {"inbytes": 8, "outbytes": 0}, | |
}, | |
'nn::capsrv::sf::IAlbumAccessorService': { | |
0: {"inbytes": 1, "outbytes": 8}, | |
1: {"inbytes": 1, "outbytes": 8, "buffers": [6]}, | |
2: {"inbytes": 0x18, "outbytes": 8, "buffers": [6]}, | |
3: {"inbytes": 0x18, "outbytes": 0}, | |
4: {"inbytes": 0x20, "outbytes": 0}, | |
5: {"inbytes": 1, "outbytes": 1}, | |
6: {"inbytes": 1, "outbytes": 0x30}, | |
7: {"inbytes": 0x18, "outbytes": 8}, | |
8: {"inbytes": 0x18, "outbytes": 8, "buffers": [6]}, | |
9: {"inbytes": 0x18, "outbytes": 0x10, "buffers": [70, 6]}, | |
10: {"inbytes": 0x18, "outbytes": 0x10, "buffers": [70, 6]}, | |
11: {"inbytes": 0x28, "outbytes": 0x20}, | |
202: {"inbytes": 0x38, "outbytes": 0x20, "buffers": [5, 5]}, | |
301: {"inbytes": 0, "outbytes": 0x20, "buffers": [6]}, | |
401: {"inbytes": 0, "outbytes": 1}, | |
501: {"inbytes": 2, "outbytes": 8}, | |
10011: {"inbytes": 1, "outbytes": 0}, | |
8001: {"inbytes": 1, "outbytes": 0}, | |
8002: {"inbytes": 1, "outbytes": 0}, | |
8011: {"inbytes": 1, "outbytes": 0}, | |
8012: {"inbytes": 1, "outbytes": 0x10}, | |
8021: {"inbytes": 0x28, "outbytes": 0x20, "pid": True}, | |
}, | |
}, | |
'am': { | |
'nn::am::service::IWindowController': { | |
0: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::am::service::IWindow']}, | |
1: {"inbytes": 0, "outbytes": 8}, | |
10: {"inbytes": 0, "outbytes": 0}, | |
11: {"inbytes": 0, "outbytes": 0}, | |
12: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::am::service::ILibraryAppletCreator': { | |
0: {"inbytes": 8, "outbytes": 0, "outinterfaces": ['nn::am::service::ILibraryAppletAccessor']}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 1}, | |
10: {"inbytes": 8, "outbytes": 0, "outinterfaces": ['nn::am::service::IStorage']}, | |
11: {"inbytes": 0x10, "outbytes": 0, "inhandles": [1], "outinterfaces": ['nn::am::service::IStorage']}, | |
12: {"inbytes": 8, "outbytes": 0, "inhandles": [1], "outinterfaces": ['nn::am::service::IStorage']}, | |
}, | |
'nn::am::service::ILibraryAppletSelfAccessor': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IStorage']}, | |
1: {"inbytes": 0, "outbytes": 0, "ininterfaces": ['nn::am::service::IStorage']}, | |
2: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IStorage']}, | |
3: {"inbytes": 0, "outbytes": 0, "ininterfaces": ['nn::am::service::IStorage']}, | |
5: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
6: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
10: {"inbytes": 0, "outbytes": 0}, | |
11: {"inbytes": 0, "outbytes": 8}, | |
12: {"inbytes": 0, "outbytes": 0x10}, | |
13: {"inbytes": 0, "outbytes": 1}, | |
14: {"inbytes": 0, "outbytes": 0x10}, | |
15: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
16: {"inbytes": 0, "outbytes": 1}, | |
20: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IStorage']}, | |
25: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
30: {"inbytes": 0, "outbytes": 0, "ininterfaces": ['nn::am::service::IStorage']}, | |
31: {"inbytes": 0, "outbytes": 0, "ininterfaces": ['nn::am::service::IStorage']}, | |
40: {"inbytes": 0, "outbytes": 8}, | |
}, | |
'nn::am::service::IWindow': { | |
}, | |
'nn::am::service::IAudioController': { | |
0: {"inbytes": 8, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 4}, | |
2: {"inbytes": 0, "outbytes": 4}, | |
3: {"inbytes": 0x10, "outbytes": 0}, | |
4: {"inbytes": 4, "outbytes": 0}, | |
}, | |
'nn::am::service::IApplicationCreator': { | |
0: {"inbytes": 8, "outbytes": 0, "outinterfaces": ['nn::am::service::IApplicationAccessor']}, | |
1: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IApplicationAccessor']}, | |
10: {"inbytes": 8, "outbytes": 0, "outinterfaces": ['nn::am::service::IApplicationAccessor']}, | |
100: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IApplicationAccessor']}, | |
}, | |
'nn::am::service::ILockAccessor': { | |
1: {"inbytes": 1, "outbytes": 1, "outhandles": [1]}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
}, | |
'nn::am::service::IDisplayController': { | |
0: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 1, "buffers": [6]}, | |
6: {"inbytes": 0, "outbytes": 1, "buffers": [6]}, | |
7: {"inbytes": 0, "outbytes": 1, "buffers": [6]}, | |
8: {"inbytes": 8, "outbytes": 0}, | |
10: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
11: {"inbytes": 0, "outbytes": 0}, | |
12: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
13: {"inbytes": 0, "outbytes": 0}, | |
14: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
15: {"inbytes": 0, "outbytes": 0}, | |
16: {"inbytes": 0, "outbytes": 1, "outhandles": [1]}, | |
17: {"inbytes": 0, "outbytes": 1, "outhandles": [1]}, | |
18: {"inbytes": 0, "outbytes": 1, "outhandles": [1]}, | |
}, | |
'nn::am::service::ICommonStateGetter': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 4}, | |
2: {"inbytes": 0, "outbytes": 8}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 1}, | |
6: {"inbytes": 0, "outbytes": 4}, | |
7: {"inbytes": 0, "outbytes": 1}, | |
8: {"inbytes": 0, "outbytes": 1}, | |
9: {"inbytes": 0, "outbytes": 1}, | |
10: {"inbytes": 0, "outbytes": 0}, | |
11: {"inbytes": 0, "outbytes": 0}, | |
12: {"inbytes": 0, "outbytes": 0}, | |
13: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
20: {"inbytes": 0, "outbytes": 0, "ininterfaces": ['nn::am::service::IStorage']}, | |
30: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::ILockAccessor']}, | |
31: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::am::service::ILockAccessor']}, | |
40: {"inbytes": 0, "outbytes": 0x10}, | |
}, | |
'nn::am::service::ILibraryAppletProxy': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::ICommonStateGetter']}, | |
1: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::ISelfController']}, | |
2: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IWindowController']}, | |
3: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IAudioController']}, | |
4: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IDisplayController']}, | |
10: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IProcessWindingController']}, | |
11: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::ILibraryAppletCreator']}, | |
20: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::ILibraryAppletSelfAccessor']}, | |
1000: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IDebugFunctions']}, | |
}, | |
'nn::omm::detail::IOperationModeManager': { | |
0: {"inbytes": 0, "outbytes": 1}, | |
1: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 0, "inhandles": [1]}, | |
5: {"inbytes": 0, "outbytes": 1}, | |
6: {"inbytes": 0, "outbytes": 0}, | |
7: {"inbytes": 0, "outbytes": 0}, | |
8: {"inbytes": 0, "outbytes": 0x10}, | |
9: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::am::service::IOverlayFunctions': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 8}, | |
3: {"inbytes": 8, "outbytes": 0}, | |
4: {"inbytes": 1, "outbytes": 0}, | |
5: {"inbytes": 4, "outbytes": 0}, | |
}, | |
'nn::am::service::IProcessWindingController': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
11: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::ILibraryAppletAccessor']}, | |
21: {"inbytes": 0, "outbytes": 0, "ininterfaces": ['nn::am::service::IStorage']}, | |
22: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IStorage']}, | |
23: {"inbytes": 0, "outbytes": 0}, | |
30: {"inbytes": 0, "outbytes": 0}, | |
40: {"inbytes": 0, "outbytes": 0, "ininterfaces": ['nn::am::service::ILibraryAppletAccessor']}, | |
}, | |
'nn::am::service::ISelfController': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
9: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
10: {"inbytes": 4, "outbytes": 0}, | |
11: {"inbytes": 1, "outbytes": 0}, | |
12: {"inbytes": 1, "outbytes": 0}, | |
13: {"inbytes": 3, "outbytes": 0}, | |
14: {"inbytes": 1, "outbytes": 0}, | |
15: {"inbytes": 0x10, "outbytes": 0}, | |
16: {"inbytes": 1, "outbytes": 0}, | |
40: {"inbytes": 0, "outbytes": 8}, | |
50: {"inbytes": 1, "outbytes": 0}, | |
51: {"inbytes": 0, "outbytes": 0}, | |
60: {"inbytes": 0x10, "outbytes": 0}, | |
61: {"inbytes": 1, "outbytes": 0}, | |
62: {"inbytes": 4, "outbytes": 0}, | |
63: {"inbytes": 0, "outbytes": 4}, | |
64: {"inbytes": 4, "outbytes": 0}, | |
65: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::am::service::IApplicationFunctions': { | |
1: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::am::service::IStorage']}, | |
10: {"inbytes": 8, "outbytes": 0, "ininterfaces": ['nn::am::service::IStorage']}, | |
20: {"inbytes": 0x10, "outbytes": 8}, | |
21: {"inbytes": 0, "outbytes": 8}, | |
22: {"inbytes": 4, "outbytes": 0}, | |
23: {"inbytes": 0, "outbytes": 0x10}, | |
24: {"inbytes": 0, "outbytes": 2}, | |
30: {"inbytes": 8, "outbytes": 0}, | |
31: {"inbytes": 0, "outbytes": 0}, | |
32: {"inbytes": 8, "outbytes": 0}, | |
33: {"inbytes": 0, "outbytes": 0}, | |
40: {"inbytes": 0, "outbytes": 1}, | |
50: {"inbytes": 0, "outbytes": 0x10}, | |
60: {"inbytes": 1, "outbytes": 0}, | |
}, | |
'nn::am::service::IApplicationProxy': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::ICommonStateGetter']}, | |
1: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::ISelfController']}, | |
2: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IWindowController']}, | |
3: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IAudioController']}, | |
4: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IDisplayController']}, | |
10: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IProcessWindingController']}, | |
11: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::ILibraryAppletCreator']}, | |
20: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IApplicationFunctions']}, | |
1000: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IDebugFunctions']}, | |
}, | |
'nn::am::service::IOverlayAppletProxy': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::ICommonStateGetter']}, | |
1: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::ISelfController']}, | |
2: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IWindowController']}, | |
3: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IAudioController']}, | |
4: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IDisplayController']}, | |
10: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IProcessWindingController']}, | |
11: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::ILibraryAppletCreator']}, | |
20: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IOverlayFunctions']}, | |
1000: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IDebugFunctions']}, | |
}, | |
'nn::am::service::IApplicationProxyService': { | |
0: {"inbytes": 8, "outbytes": 0, "inhandles": [1], "outinterfaces": ['nn::am::service::IApplicationProxy'], "pid": True}, | |
}, | |
'nn::am::service::IStorage': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IStorageAccessor']}, | |
1: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::ITransferStorageAccessor']}, | |
}, | |
'nn::am::service::ILibraryAppletAccessor': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 1}, | |
10: {"inbytes": 0, "outbytes": 0}, | |
20: {"inbytes": 0, "outbytes": 0}, | |
25: {"inbytes": 0, "outbytes": 0}, | |
30: {"inbytes": 0, "outbytes": 0}, | |
50: {"inbytes": 1, "outbytes": 0}, | |
100: {"inbytes": 0, "outbytes": 0, "ininterfaces": ['nn::am::service::IStorage']}, | |
101: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IStorage']}, | |
102: {"inbytes": 0, "outbytes": 0, "ininterfaces": ['nn::am::service::IStorage']}, | |
103: {"inbytes": 0, "outbytes": 0, "ininterfaces": ['nn::am::service::IStorage']}, | |
104: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IStorage']}, | |
106: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
110: {"inbytes": 0, "outbytes": 1}, | |
120: {"inbytes": 0, "outbytes": 8}, | |
150: {"inbytes": 0, "outbytes": 0}, | |
105: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
160: {"inbytes": 8, "outbytes": 8, "pid": True}, | |
}, | |
'nn::am::service::IStorageAccessor': { | |
0: {"inbytes": 0, "outbytes": 8}, | |
10: {"inbytes": 8, "outbytes": 0, "buffers": [33]}, | |
11: {"inbytes": 8, "outbytes": 0, "buffers": [34]}, | |
}, | |
'nn::am::service::ITransferStorageAccessor': { | |
0: {"inbytes": 0, "outbytes": 8}, | |
1: {"inbytes": 0, "outbytes": 8, "outhandles": [1]}, | |
}, | |
'nn::spsm::detail::IPowerStateInterface': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
2: {"inbytes": 0, "outbytes": 4}, | |
3: {"inbytes": 1, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
5: {"inbytes": 0, "outbytes": 4}, | |
6: {"inbytes": 0, "outbytes": 0x50}, | |
7: {"inbytes": 0, "outbytes": 0}, | |
8: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
9: {"inbytes": 8, "outbytes": 0}, | |
10: {"inbytes": 0, "outbytes": 0}, | |
11: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::am::service::IGlobalStateController': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 1, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
10: {"inbytes": 0, "outbytes": 0}, | |
11: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::am::service::IAllSystemAppletProxiesService': { | |
100: {"inbytes": 8, "outbytes": 0, "inhandles": [1], "outinterfaces": ['nn::am::service::ISystemAppletProxy'], "pid": True}, | |
200: {"inbytes": 8, "outbytes": 0, "inhandles": [1], "outinterfaces": ['nn::am::service::ILibraryAppletProxy'], "pid": True}, | |
300: {"inbytes": 8, "outbytes": 0, "inhandles": [1], "outinterfaces": ['nn::am::service::IOverlayAppletProxy'], "pid": True}, | |
350: {"inbytes": 8, "outbytes": 0, "inhandles": [1], "outinterfaces": ['nn::am::service::IApplicationProxy'], "pid": True}, | |
400: {"inbytes": 8, "outbytes": 0, "outinterfaces": ['nn::am::service::ILibraryAppletCreator'], "pid": True}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::idle::detail::IPolicyManagerSystem': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0x28, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::am::service::IHomeMenuFunctions': { | |
10: {"inbytes": 0, "outbytes": 0}, | |
11: {"inbytes": 0, "outbytes": 0}, | |
12: {"inbytes": 0, "outbytes": 0}, | |
20: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IStorage']}, | |
21: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
30: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::ILockAccessor']}, | |
31: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::am::service::ILockAccessor']}, | |
}, | |
'nn::am::service::IApplicationAccessor': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 1}, | |
10: {"inbytes": 0, "outbytes": 0}, | |
20: {"inbytes": 0, "outbytes": 0}, | |
25: {"inbytes": 0, "outbytes": 0}, | |
30: {"inbytes": 0, "outbytes": 0}, | |
101: {"inbytes": 0, "outbytes": 0}, | |
110: {"inbytes": 0, "outbytes": 0}, | |
111: {"inbytes": 0, "outbytes": 1}, | |
112: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IAppletAccessor']}, | |
120: {"inbytes": 0, "outbytes": 8}, | |
121: {"inbytes": 4, "outbytes": 0, "ininterfaces": ['nn::am::service::IStorage']}, | |
122: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
123: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
}, | |
'nn::am::service::IAppletAccessor': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 1}, | |
10: {"inbytes": 0, "outbytes": 0}, | |
20: {"inbytes": 0, "outbytes": 0}, | |
25: {"inbytes": 0, "outbytes": 0}, | |
30: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::am::service::ISystemAppletProxy': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::ICommonStateGetter']}, | |
1: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::ISelfController']}, | |
2: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IWindowController']}, | |
3: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IAudioController']}, | |
4: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IDisplayController']}, | |
10: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IProcessWindingController']}, | |
11: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::ILibraryAppletCreator']}, | |
20: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IHomeMenuFunctions']}, | |
21: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IGlobalStateController']}, | |
22: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IApplicationCreator']}, | |
1000: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IDebugFunctions']}, | |
}, | |
'nn::am::service::IDebugFunctions': { | |
0: {"inbytes": 4, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IApplicationAccessor']}, | |
10: {"inbytes": 4, "outbytes": 0}, | |
20: {"inbytes": 0, "outbytes": 0}, | |
}, | |
}, | |
'ssl': { | |
'nn::ssl::sf::ISslService': { | |
0: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::ssl::sf::ISslContext'], "pid": True}, | |
1: {"inbytes": 0, "outbytes": 4}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [6, 5]}, | |
3: {"inbytes": 0, "outbytes": 4, "buffers": [5]}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::ssl::sf::ISslContext': { | |
0: {"inbytes": 8, "outbytes": 0}, | |
1: {"inbytes": 4, "outbytes": 4}, | |
2: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::ssl::sf::ISslConnection']}, | |
3: {"inbytes": 0, "outbytes": 4}, | |
4: {"inbytes": 4, "outbytes": 8, "buffers": [5]}, | |
5: {"inbytes": 0, "outbytes": 8, "buffers": [5, 5]}, | |
6: {"inbytes": 8, "outbytes": 0}, | |
7: {"inbytes": 8, "outbytes": 0}, | |
8: {"inbytes": 4, "outbytes": 8}, | |
9: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
}, | |
'nn::ssl::sf::ISslConnection': { | |
0: {"inbytes": 4, "outbytes": 4}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
2: {"inbytes": 4, "outbytes": 0}, | |
3: {"inbytes": 4, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 4}, | |
5: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
6: {"inbytes": 0, "outbytes": 4}, | |
7: {"inbytes": 0, "outbytes": 4}, | |
8: {"inbytes": 0, "outbytes": 0}, | |
9: {"inbytes": 0, "outbytes": 8, "buffers": [6]}, | |
10: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
11: {"inbytes": 0, "outbytes": 4, "buffers": [5]}, | |
12: {"inbytes": 0, "outbytes": 4}, | |
13: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
14: {"inbytes": 8, "outbytes": 4}, | |
15: {"inbytes": 0, "outbytes": 0}, | |
16: {"inbytes": 0, "outbytes": 4}, | |
17: {"inbytes": 4, "outbytes": 0}, | |
18: {"inbytes": 0, "outbytes": 4}, | |
19: {"inbytes": 0, "outbytes": 0}, | |
20: {"inbytes": 4, "outbytes": 0}, | |
21: {"inbytes": 0, "outbytes": 4}, | |
22: {"inbytes": 8, "outbytes": 0}, | |
23: {"inbytes": 4, "outbytes": 1}, | |
24: {"inbytes": 0, "outbytes": 8, "buffers": [6]}, | |
}, | |
}, | |
'nim': { | |
'nn::nim::detail::IAsyncValue': { | |
0: {"inbytes": 0, "outbytes": 8}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::nim::detail::INetworkInstallManager': { | |
0: {"inbytes": 0x18, "outbytes": 0x10}, | |
1: {"inbytes": 0x10, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
3: {"inbytes": 0x10, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncResult']}, | |
4: {"inbytes": 0x10, "outbytes": 0x28}, | |
5: {"inbytes": 0x10, "outbytes": 0}, | |
6: {"inbytes": 0x10, "outbytes": 0x10, "buffers": [5]}, | |
7: {"inbytes": 0x10, "outbytes": 0}, | |
8: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
9: {"inbytes": 0x10, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncResult']}, | |
10: {"inbytes": 0x10, "outbytes": 0x28}, | |
11: {"inbytes": 0x10, "outbytes": 0}, | |
12: {"inbytes": 0, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncValue']}, | |
14: {"inbytes": 8, "outbytes": 4, "buffers": [6]}, | |
15: {"inbytes": 0x14, "outbytes": 4, "buffers": [6]}, | |
16: {"inbytes": 8, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncValue']}, | |
17: {"inbytes": 0x18, "outbytes": 0}, | |
18: {"inbytes": 0x10, "outbytes": 0, "buffers": [5]}, | |
19: {"inbytes": 0x18, "outbytes": 0, "buffers": [22]}, | |
20: {"inbytes": 0x10, "outbytes": 8}, | |
21: {"inbytes": 0x10, "outbytes": 1}, | |
22: {"inbytes": 0, "outbytes": 0x10}, | |
23: {"inbytes": 0, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncValue']}, | |
24: {"inbytes": 8, "outbytes": 0, "buffers": [5, 5], "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncValue']}, | |
25: {"inbytes": 0x10, "outbytes": 0, "buffers": [5, 5], "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncResult']}, | |
26: {"inbytes": 0x28, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncResult']}, | |
27: {"inbytes": 0x28, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncData']}, | |
28: {"inbytes": 0x10, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncValue']}, | |
29: {"inbytes": 8, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncValue']}, | |
30: {"inbytes": 0x28, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncData']}, | |
31: {"inbytes": 0x20, "outbytes": 0x10, "buffers": [5]}, | |
32: {"inbytes": 0x10, "outbytes": 0}, | |
33: {"inbytes": 8, "outbytes": 4, "buffers": [6]}, | |
34: {"inbytes": 0x10, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncResult']}, | |
35: {"inbytes": 0x10, "outbytes": 0x20}, | |
36: {"inbytes": 0x14, "outbytes": 4, "buffers": [6]}, | |
37: {"inbytes": 0x10, "outbytes": 0}, | |
38: {"inbytes": 0x10, "outbytes": 8}, | |
39: {"inbytes": 0, "outbytes": 0}, | |
40: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
41: {"inbytes": 0x10, "outbytes": 0}, | |
}, | |
'nn::nim::detail::IShopServiceManager': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncValue']}, | |
100: {"inbytes": 0, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncResult']}, | |
101: {"inbytes": 0, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncResult']}, | |
102: {"inbytes": 0, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncValue']}, | |
103: {"inbytes": 0, "outbytes": 0x20}, | |
104: {"inbytes": 0, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncValue']}, | |
200: {"inbytes": 0x28, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncResult']}, | |
300: {"inbytes": 8, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncResult']}, | |
301: {"inbytes": 0x10, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncResult']}, | |
302: {"inbytes": 0x10, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncResult']}, | |
303: {"inbytes": 0x10, "outbytes": 1}, | |
400: {"inbytes": 4, "outbytes": 0x10}, | |
500: {"inbytes": 0, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncProgressResult']}, | |
501: {"inbytes": 0x10, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncResult']}, | |
105: {"inbytes": 0, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncResult']}, | |
}, | |
'nn::ntc::detail::service::IEnsureNetworkClockAvailabilityService': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 1}, | |
}, | |
'nn::nim::detail::IAsyncProgressResult': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0x10}, | |
}, | |
'nn::nim::detail::IAsyncData': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 8}, | |
3: {"inbytes": 8, "outbytes": 8, "buffers": [6]}, | |
4: {"inbytes": 0, "outbytes": 0x28}, | |
}, | |
'nn::nim::detail::IAsyncResult': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::ntc::detail::service::IStaticService': { | |
0: {"inbytes": 8, "outbytes": 0, "outinterfaces": ['nn::ntc::detail::service::IEnsureNetworkClockAvailabilityService']}, | |
}, | |
}, | |
'lbl': { | |
'nn::lbl::detail::ILblController': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 4, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 4}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 4}, | |
6: {"inbytes": 8, "outbytes": 0}, | |
7: {"inbytes": 8, "outbytes": 0}, | |
8: {"inbytes": 0, "outbytes": 4}, | |
9: {"inbytes": 0, "outbytes": 0}, | |
10: {"inbytes": 0, "outbytes": 0}, | |
11: {"inbytes": 0, "outbytes": 1}, | |
12: {"inbytes": 0, "outbytes": 0}, | |
13: {"inbytes": 0, "outbytes": 0}, | |
14: {"inbytes": 0, "outbytes": 1}, | |
15: {"inbytes": 4, "outbytes": 0}, | |
16: {"inbytes": 0, "outbytes": 4}, | |
17: {"inbytes": 8, "outbytes": 0}, | |
18: {"inbytes": 4, "outbytes": 4}, | |
19: {"inbytes": 0xC, "outbytes": 0}, | |
20: {"inbytes": 0, "outbytes": 0xC}, | |
21: {"inbytes": 0xC, "outbytes": 0}, | |
22: {"inbytes": 0, "outbytes": 0xC}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
}, | |
'btm': { | |
'nn::btm::IBtmSystemCore': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 1}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 0}, | |
6: {"inbytes": 0, "outbytes": 1}, | |
}, | |
'nn::btm::IBtm': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0, "outbytes": 0x2A}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [26]}, | |
4: {"inbytes": 7, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 0, "buffers": [25]}, | |
6: {"inbytes": 4, "outbytes": 0}, | |
7: {"inbytes": 4, "outbytes": 0}, | |
8: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
9: {"inbytes": 0, "outbytes": 0, "buffers": [26]}, | |
10: {"inbytes": 0x60, "outbytes": 0}, | |
11: {"inbytes": 6, "outbytes": 0}, | |
12: {"inbytes": 6, "outbytes": 0}, | |
13: {"inbytes": 6, "outbytes": 0}, | |
14: {"inbytes": 0, "outbytes": 0}, | |
15: {"inbytes": 0, "outbytes": 0}, | |
16: {"inbytes": 6, "outbytes": 0}, | |
17: {"inbytes": 6, "outbytes": 0, "buffers": [25]}, | |
18: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
}, | |
'nn::btm::IBtmSystem': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::btm::IBtmSystemCore']}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::btm::IBtmDebug': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [26]}, | |
4: {"inbytes": 6, "outbytes": 0}, | |
5: {"inbytes": 6, "outbytes": 0}, | |
6: {"inbytes": 0xC, "outbytes": 0}, | |
7: {"inbytes": 4, "outbytes": 0}, | |
8: {"inbytes": 6, "outbytes": 0}, | |
}, | |
}, | |
'erpt': { | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::erpt::sf::IReport': { | |
0: {"inbytes": 0x14, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
2: {"inbytes": 4, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 4}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 8}, | |
}, | |
'nn::erpt::sf::IContext': { | |
0: {"inbytes": 0, "outbytes": 0, "buffers": [5, 5]}, | |
1: {"inbytes": 4, "outbytes": 0, "buffers": [5, 5, 5]}, | |
}, | |
'nn::erpt::sf::IManager': { | |
0: {"inbytes": 4, "outbytes": 0, "buffers": [6]}, | |
1: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
}, | |
'nn::erpt::sf::ISession': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::erpt::sf::IReport']}, | |
1: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::erpt::sf::IManager']}, | |
}, | |
}, | |
'vi': { | |
'nn::visrv::sf::IManagerDisplayService': { | |
4201: {"inbytes": 0x10, "outbytes": 0}, | |
4205: {"inbytes": 0x10, "outbytes": 0}, | |
2301: {"inbytes": 8, "outbytes": 0}, | |
2302: {"inbytes": 8, "outbytes": 0, "outhandles": [1]}, | |
2402: {"inbytes": 8, "outbytes": 4}, | |
4203: {"inbytes": 0x10, "outbytes": 0}, | |
2050: {"inbytes": 0, "outbytes": 8}, | |
7000: {"inbytes": 1, "outbytes": 0}, | |
2054: {"inbytes": 0x10, "outbytes": 8}, | |
2052: {"inbytes": 0x10, "outbytes": 8}, | |
2053: {"inbytes": 8, "outbytes": 0}, | |
2055: {"inbytes": 8, "outbytes": 0}, | |
2300: {"inbytes": 8, "outbytes": 0, "outhandles": [1]}, | |
8000: {"inbytes": 0x10, "outbytes": 0}, | |
6000: {"inbytes": 0x10, "outbytes": 0}, | |
6001: {"inbytes": 0x10, "outbytes": 0}, | |
6002: {"inbytes": 0x10, "outbytes": 0}, | |
8100: {"inbytes": 0x18, "outbytes": 0}, | |
2051: {"inbytes": 8, "outbytes": 0}, | |
2010: {"inbytes": 0x18, "outbytes": 8}, | |
2011: {"inbytes": 8, "outbytes": 0}, | |
}, | |
'nn::mmnv::IRequest': { | |
0: {"inbytes": 0xC, "outbytes": 0}, | |
1: {"inbytes": 4, "outbytes": 0}, | |
2: {"inbytes": 0xC, "outbytes": 0}, | |
3: {"inbytes": 4, "outbytes": 4}, | |
4: {"inbytes": 0xC, "outbytes": 4}, | |
5: {"inbytes": 4, "outbytes": 0}, | |
6: {"inbytes": 0xC, "outbytes": 0}, | |
7: {"inbytes": 4, "outbytes": 4}, | |
}, | |
'nn::cec::ICecManager': { | |
0: {"inbytes": 0, "outbytes": 8, "outhandles": [1]}, | |
1: {"inbytes": 4, "outbytes": 4}, | |
2: {"inbytes": 4, "outbytes": 0}, | |
3: {"inbytes": 0x18, "outbytes": 4}, | |
4: {"inbytes": 4, "outbytes": 0x18}, | |
5: {"inbytes": 0, "outbytes": 0x20}, | |
6: {"inbytes": 0, "outbytes": 8}, | |
}, | |
'nn::visrv::sf::ISystemDisplayService': { | |
2201: {"inbytes": 0x10, "outbytes": 0}, | |
2203: {"inbytes": 0x18, "outbytes": 0}, | |
2204: {"inbytes": 8, "outbytes": 8}, | |
2205: {"inbytes": 0x10, "outbytes": 0}, | |
2207: {"inbytes": 0x10, "outbytes": 0}, | |
2209: {"inbytes": 0x10, "outbytes": 0}, | |
2312: {"inbytes": 0x10, "outbytes": 0x10, "buffers": [6]}, | |
2400: {"inbytes": 0x10, "outbytes": 8, "buffers": [6], "pid": True}, | |
2401: {"inbytes": 8, "outbytes": 0}, | |
2402: {"inbytes": 8, "outbytes": 0}, | |
3000: {"inbytes": 8, "outbytes": 8, "buffers": [6]}, | |
3002: {"inbytes": 8, "outbytes": 8, "buffers": [6]}, | |
3200: {"inbytes": 8, "outbytes": 0x10}, | |
3201: {"inbytes": 0x18, "outbytes": 0}, | |
3202: {"inbytes": 8, "outbytes": 8}, | |
3203: {"inbytes": 0x10, "outbytes": 0}, | |
3204: {"inbytes": 8, "outbytes": 4}, | |
3205: {"inbytes": 0x10, "outbytes": 0}, | |
3206: {"inbytes": 8, "outbytes": 4}, | |
3207: {"inbytes": 0x10, "outbytes": 0}, | |
3208: {"inbytes": 8, "outbytes": 4}, | |
3209: {"inbytes": 0x10, "outbytes": 0}, | |
3210: {"inbytes": 8, "outbytes": 4}, | |
3211: {"inbytes": 0x10, "outbytes": 0}, | |
3214: {"inbytes": 8, "outbytes": 4}, | |
3215: {"inbytes": 0x10, "outbytes": 0}, | |
3216: {"inbytes": 8, "outbytes": 4}, | |
3217: {"inbytes": 0x10, "outbytes": 0}, | |
1200: {"inbytes": 8, "outbytes": 8}, | |
1202: {"inbytes": 8, "outbytes": 8}, | |
1203: {"inbytes": 8, "outbytes": 8}, | |
3001: {"inbytes": 8, "outbytes": 8, "buffers": [6]}, | |
}, | |
'nns::hosbinder::IHOSBinderDriver': { | |
0: {"inbytes": 0xC, "outbytes": 0, "buffers": [5, 6]}, | |
1: {"inbytes": 0xC, "outbytes": 0}, | |
2: {"inbytes": 8, "outbytes": 0, "outhandles": [1]}, | |
}, | |
'nn::visrv::sf::IApplicationDisplayService': { | |
100: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nns::hosbinder::IHOSBinderDriver']}, | |
101: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::visrv::sf::ISystemDisplayService']}, | |
102: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::visrv::sf::IManagerDisplayService']}, | |
103: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nns::hosbinder::IHOSBinderDriver']}, | |
2101: {"inbytes": 0x10, "outbytes": 0}, | |
2451: {"inbytes": 0x30, "outbytes": 0x10, "buffers": [70], "pid": True}, | |
2450: {"inbytes": 0x20, "outbytes": 0x10, "buffers": [70], "pid": True}, | |
2460: {"inbytes": 0x10, "outbytes": 0x10}, | |
5202: {"inbytes": 8, "outbytes": 0, "outhandles": [1]}, | |
5203: {"inbytes": 8, "outbytes": 0, "outhandles": [1]}, | |
1000: {"inbytes": 0, "outbytes": 8, "buffers": [6]}, | |
1010: {"inbytes": 0x40, "outbytes": 8}, | |
1011: {"inbytes": 0, "outbytes": 8}, | |
1020: {"inbytes": 8, "outbytes": 0}, | |
1101: {"inbytes": 0x10, "outbytes": 0}, | |
1102: {"inbytes": 8, "outbytes": 0x10}, | |
2031: {"inbytes": 8, "outbytes": 0}, | |
2020: {"inbytes": 0x50, "outbytes": 8, "buffers": [6], "pid": True}, | |
2021: {"inbytes": 8, "outbytes": 0}, | |
2030: {"inbytes": 0x10, "outbytes": 0x10, "buffers": [6]}, | |
}, | |
'nn::capsrv::sf::IScreenShotControlService': { | |
1: {"inbytes": 0x28, "outbytes": 0, "buffers": [70]}, | |
2: {"inbytes": 0x30, "outbytes": 0, "buffers": [70]}, | |
1001: {"inbytes": 0x10, "outbytes": 0}, | |
1002: {"inbytes": 0x18, "outbytes": 0}, | |
1011: {"inbytes": 8, "outbytes": 0}, | |
1012: {"inbytes": 8, "outbytes": 0}, | |
}, | |
'nn::visrv::sf::IApplicationRootService': { | |
0: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::visrv::sf::IApplicationDisplayService']}, | |
}, | |
'nn::visrv::sf::IManagerRootService': { | |
2: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::visrv::sf::IApplicationDisplayService']}, | |
3: {"inbytes": 0xC, "outbytes": 0, "outinterfaces": ['nn::visrv::sf::IApplicationDisplayService']}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::capsrv::sf::IScreenShotService': { | |
201: {"inbytes": 0x10, "outbytes": 0x20, "buffers": [69], "pid": True}, | |
202: {"inbytes": 0x38, "outbytes": 0x20, "buffers": [69, 69]}, | |
}, | |
'nn::visrv::sf::ISystemRootService': { | |
1: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::visrv::sf::IApplicationDisplayService']}, | |
3: {"inbytes": 0xC, "outbytes": 0, "outinterfaces": ['nn::visrv::sf::IApplicationDisplayService']}, | |
}, | |
}, | |
'pctl': { | |
'nn::pctl::detail::ipc::IParentalControlServiceFactory': { | |
0: {"inbytes": 8, "outbytes": 0, "outinterfaces": ['nn::pctl::detail::ipc::IParentalControlService'], "pid": True}, | |
}, | |
'nn::pctl::detail::ipc::IParentalControlService': { | |
1403: {"inbytes": 0, "outbytes": 1}, | |
1001: {"inbytes": 0, "outbytes": 0}, | |
1002: {"inbytes": 0x10, "outbytes": 0, "buffers": [9]}, | |
1003: {"inbytes": 0x10, "outbytes": 0, "buffers": [9]}, | |
1004: {"inbytes": 0, "outbytes": 0}, | |
1005: {"inbytes": 0, "outbytes": 0}, | |
1006: {"inbytes": 0, "outbytes": 1}, | |
1007: {"inbytes": 0, "outbytes": 0}, | |
1008: {"inbytes": 0, "outbytes": 0}, | |
1009: {"inbytes": 0, "outbytes": 0}, | |
1010: {"inbytes": 0, "outbytes": 1}, | |
1011: {"inbytes": 0, "outbytes": 0}, | |
1031: {"inbytes": 0, "outbytes": 1}, | |
1032: {"inbytes": 0, "outbytes": 4}, | |
1033: {"inbytes": 4, "outbytes": 0}, | |
1034: {"inbytes": 4, "outbytes": 3}, | |
1035: {"inbytes": 0, "outbytes": 3}, | |
1036: {"inbytes": 3, "outbytes": 0}, | |
1037: {"inbytes": 0, "outbytes": 4}, | |
1038: {"inbytes": 4, "outbytes": 0}, | |
1039: {"inbytes": 0, "outbytes": 4}, | |
1042: {"inbytes": 8, "outbytes": 0}, | |
1043: {"inbytes": 0, "outbytes": 0}, | |
1044: {"inbytes": 4, "outbytes": 4, "buffers": [6]}, | |
1045: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
1046: {"inbytes": 0, "outbytes": 0}, | |
1201: {"inbytes": 0, "outbytes": 0, "buffers": [9]}, | |
1202: {"inbytes": 0, "outbytes": 0, "buffers": [9]}, | |
1203: {"inbytes": 0, "outbytes": 0, "buffers": [9]}, | |
1204: {"inbytes": 0, "outbytes": 0x20}, | |
1205: {"inbytes": 0x20, "outbytes": 1, "buffers": [9]}, | |
1206: {"inbytes": 0, "outbytes": 4}, | |
1207: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1406: {"inbytes": 0, "outbytes": 8}, | |
1411: {"inbytes": 0x10, "outbytes": 0x10}, | |
1421: {"inbytes": 0x10, "outbytes": 4, "buffers": [10]}, | |
1424: {"inbytes": 0x10, "outbytes": 4}, | |
1432: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1451: {"inbytes": 0, "outbytes": 0}, | |
1452: {"inbytes": 0, "outbytes": 0}, | |
1453: {"inbytes": 0, "outbytes": 1}, | |
1454: {"inbytes": 0, "outbytes": 8}, | |
1455: {"inbytes": 0, "outbytes": 1}, | |
1456: {"inbytes": 0, "outbytes": 0x34}, | |
1457: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1471: {"inbytes": 0, "outbytes": 0}, | |
1472: {"inbytes": 0, "outbytes": 0}, | |
1473: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1474: {"inbytes": 0, "outbytes": 0}, | |
1601: {"inbytes": 0, "outbytes": 1}, | |
1602: {"inbytes": 0, "outbytes": 1}, | |
1603: {"inbytes": 0, "outbytes": 2}, | |
1901: {"inbytes": 8, "outbytes": 0}, | |
1902: {"inbytes": 0, "outbytes": 0}, | |
1941: {"inbytes": 0, "outbytes": 0}, | |
1951: {"inbytes": 0x34, "outbytes": 0}, | |
1952: {"inbytes": 0, "outbytes": 8}, | |
1012: {"inbytes": 0, "outbytes": 4}, | |
2001: {"inbytes": 0, "outbytes": 8, "buffers": [9], "outhandles": [1]}, | |
2002: {"inbytes": 8, "outbytes": 0x10}, | |
2003: {"inbytes": 0x10, "outbytes": 8, "outhandles": [1]}, | |
2004: {"inbytes": 8, "outbytes": 0x10}, | |
2005: {"inbytes": 0, "outbytes": 8, "outhandles": [1]}, | |
2006: {"inbytes": 8, "outbytes": 0x10}, | |
2007: {"inbytes": 1, "outbytes": 8, "outhandles": [1]}, | |
2008: {"inbytes": 0xC, "outbytes": 0}, | |
2009: {"inbytes": 0x10, "outbytes": 0xC, "buffers": [6], "outhandles": [1]}, | |
2010: {"inbytes": 8, "outbytes": 4, "buffers": [6]}, | |
2011: {"inbytes": 0x10, "outbytes": 0xC, "buffers": [10], "outhandles": [1]}, | |
2012: {"inbytes": 8, "outbytes": 4, "buffers": [10]}, | |
2013: {"inbytes": 0, "outbytes": 8, "outhandles": [1]}, | |
2014: {"inbytes": 8, "outbytes": 0}, | |
2015: {"inbytes": 8, "outbytes": 8}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
}, | |
'npns': { | |
'nn::npns::INpnsSystem': { | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 8, "outbytes": 0}, | |
3: {"inbytes": 2, "outbytes": 0, "buffers": [6]}, | |
4: {"inbytes": 2, "outbytes": 0, "buffers": [6]}, | |
5: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
6: {"inbytes": 0, "outbytes": 0}, | |
7: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
11: {"inbytes": 0, "outbytes": 0, "buffers": [9]}, | |
12: {"inbytes": 0, "outbytes": 0, "buffers": [9]}, | |
13: {"inbytes": 0, "outbytes": 1, "buffers": [9]}, | |
21: {"inbytes": 0x10, "outbytes": 0x28}, | |
22: {"inbytes": 0x18, "outbytes": 0x28}, | |
23: {"inbytes": 0x10, "outbytes": 0}, | |
24: {"inbytes": 0x18, "outbytes": 0}, | |
25: {"inbytes": 0x28, "outbytes": 1}, | |
31: {"inbytes": 0x10, "outbytes": 0}, | |
32: {"inbytes": 0x10, "outbytes": 0}, | |
101: {"inbytes": 0, "outbytes": 0}, | |
102: {"inbytes": 0, "outbytes": 0}, | |
103: {"inbytes": 0, "outbytes": 4}, | |
111: {"inbytes": 0, "outbytes": 0, "buffers": [10]}, | |
112: {"inbytes": 0, "outbytes": 0}, | |
113: {"inbytes": 0, "outbytes": 0}, | |
114: {"inbytes": 0, "outbytes": 0, "buffers": [9, 9]}, | |
115: {"inbytes": 0, "outbytes": 0, "buffers": [10, 10]}, | |
}, | |
'nn::npns::INpnsUser': { | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 8, "outbytes": 0}, | |
3: {"inbytes": 2, "outbytes": 0, "buffers": [6]}, | |
4: {"inbytes": 2, "outbytes": 0, "buffers": [6]}, | |
5: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
7: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
21: {"inbytes": 0x10, "outbytes": 0x28}, | |
23: {"inbytes": 0x10, "outbytes": 0}, | |
25: {"inbytes": 0x28, "outbytes": 1}, | |
101: {"inbytes": 0, "outbytes": 0}, | |
102: {"inbytes": 0, "outbytes": 0}, | |
103: {"inbytes": 0, "outbytes": 4}, | |
111: {"inbytes": 0, "outbytes": 0, "buffers": [10]}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
}, | |
'eupld': { | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::eupld::sf::IControl': { | |
0: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [5, 5]}, | |
3: {"inbytes": 8, "outbytes": 0}, | |
}, | |
'nn::eupld::sf::IRequest': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 0}, | |
}, | |
}, | |
'glue': { | |
'nn::arp::detail::IReader': { | |
0: {"inbytes": 8, "outbytes": 0x10}, | |
1: {"inbytes": 8, "outbytes": 0x10}, | |
2: {"inbytes": 8, "outbytes": 0, "buffers": [22]}, | |
3: {"inbytes": 8, "outbytes": 0, "buffers": [22]}, | |
}, | |
'nn::bgtc::IStateControlService': { | |
1: {"inbytes": 0, "outbytes": 4}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::arp::detail::IRegistrar': { | |
0: {"inbytes": 8, "outbytes": 0}, | |
1: {"inbytes": 0x10, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [21]}, | |
}, | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::bgtc::ITaskService': { | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
4: {"inbytes": 0, "outbytes": 1}, | |
5: {"inbytes": 0, "outbytes": 0, "buffers": [9]}, | |
11: {"inbytes": 4, "outbytes": 0}, | |
12: {"inbytes": 0, "outbytes": 4}, | |
13: {"inbytes": 0, "outbytes": 0}, | |
14: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
15: {"inbytes": 8, "outbytes": 0}, | |
}, | |
'nn::arp::detail::IWriter': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::arp::detail::IRegistrar']}, | |
1: {"inbytes": 8, "outbytes": 0}, | |
}, | |
}, | |
'es': { | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::es::IETicketService': { | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [5, 5]}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
4: {"inbytes": 4, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 0}, | |
6: {"inbytes": 0, "outbytes": 0}, | |
7: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
8: {"inbytes": 0x10, "outbytes": 0, "buffers": [22]}, | |
9: {"inbytes": 0, "outbytes": 4}, | |
10: {"inbytes": 0, "outbytes": 4}, | |
11: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
12: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
13: {"inbytes": 0, "outbytes": 4, "buffers": [6, 5]}, | |
14: {"inbytes": 0x10, "outbytes": 8}, | |
15: {"inbytes": 0x10, "outbytes": 8}, | |
16: {"inbytes": 0x10, "outbytes": 8, "buffers": [6]}, | |
17: {"inbytes": 0x10, "outbytes": 8, "buffers": [6]}, | |
18: {"inbytes": 0, "outbytes": 0, "buffers": [6, 5]}, | |
19: {"inbytes": 0, "outbytes": 4, "buffers": [6, 5]}, | |
20: {"inbytes": 0x10, "outbytes": 4, "buffers": [6]}, | |
21: {"inbytes": 0, "outbytes": 0, "buffers": [22, 22, 5]}, | |
}, | |
}, | |
'fatal': { | |
'nn::sf::hipc::detail::IHipcManager': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
'nn::fatalsrv::IService': { | |
0: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
1: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
2: {"inbytes": 0x10, "outbytes": 0, "buffers": [21], "pid": True}, | |
}, | |
'nn::fatalsrv::IPrivateService': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
}, | |
}, | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# from 3.0.0 | |
data3 = { | |
'fs': { | |
'nn::fssrv::sf::IFileSystemProxyForLoader': { | |
0: {"inbytes": 8, "outbytes": 0, "buffers": [25], "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
1: {"inbytes": 8, "outbytes": 1}, | |
}, | |
'nn::fssrv::sf::IEventNotifier': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
}, | |
'nn::fssrv::sf::IFileSystemProxy': { | |
1: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
2: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
7: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
8: {"inbytes": 0x10, "outbytes": 0, "buffers": [25], "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
9: {"inbytes": 8, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
11: {"inbytes": 4, "outbytes": 0, "buffers": [25], "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
12: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IStorage']}, | |
13: {"inbytes": 0, "outbytes": 0}, | |
17: {"inbytes": 0, "outbytes": 0, "buffers": [25], "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
18: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
19: {"inbytes": 0, "outbytes": 0}, | |
21: {"inbytes": 8, "outbytes": 0}, | |
22: {"inbytes": 0x90, "outbytes": 0}, | |
23: {"inbytes": 0x80, "outbytes": 0}, | |
24: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
25: {"inbytes": 0x10, "outbytes": 0}, | |
26: {"inbytes": 0, "outbytes": 0}, | |
27: {"inbytes": 0, "outbytes": 1}, | |
30: {"inbytes": 8, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IStorage']}, | |
31: {"inbytes": 8, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
32: {"inbytes": 0x20, "outbytes": 0}, | |
51: {"inbytes": 0x48, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
52: {"inbytes": 0x48, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
53: {"inbytes": 0x48, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
57: {"inbytes": 0x10, "outbytes": 0, "buffers": [6]}, | |
58: {"inbytes": 8, "outbytes": 0, "buffers": [6]}, | |
59: {"inbytes": 0x10, "outbytes": 0, "buffers": [5]}, | |
60: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::ISaveDataInfoReader']}, | |
61: {"inbytes": 1, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::ISaveDataInfoReader']}, | |
80: {"inbytes": 0x48, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IFile']}, | |
100: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
110: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
200: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IStorage']}, | |
201: {"inbytes": 8, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IStorage']}, | |
202: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IStorage']}, | |
203: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IStorage']}, | |
400: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IDeviceOperator']}, | |
500: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IEventNotifier']}, | |
501: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IEventNotifier']}, | |
600: {"inbytes": 8, "outbytes": 0}, | |
601: {"inbytes": 0x10, "outbytes": 8}, | |
602: {"inbytes": 8, "outbytes": 0, "buffers": [6]}, | |
603: {"inbytes": 8, "outbytes": 0}, | |
604: {"inbytes": 8, "outbytes": 0}, | |
605: {"inbytes": 0, "outbytes": 0}, | |
606: {"inbytes": 0x10, "outbytes": 0x10}, | |
607: {"inbytes": 0x20, "outbytes": 0}, | |
608: {"inbytes": 0, "outbytes": 0}, | |
609: {"inbytes": 0, "outbytes": 0x10, "buffers": [25]}, | |
610: {"inbytes": 0, "outbytes": 0x18, "buffers": [25]}, | |
620: {"inbytes": 0x10, "outbytes": 0}, | |
800: {"inbytes": 0, "outbytes": 0x80}, | |
1000: {"inbytes": 4, "outbytes": 0, "buffers": [25]}, | |
1001: {"inbytes": 0x10, "outbytes": 0}, | |
1002: {"inbytes": 0, "outbytes": 0, "buffers": [25]}, | |
1003: {"inbytes": 0, "outbytes": 0}, | |
1004: {"inbytes": 4, "outbytes": 0}, | |
1005: {"inbytes": 0, "outbytes": 4}, | |
1006: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
}, | |
'nn::fssrv::sf::ISaveDataInfoReader': { | |
0: {"inbytes": 0, "outbytes": 8, "buffers": [6]}, | |
}, | |
'nn::fssrv::sf::IFile': { | |
0: {"inbytes": 0x18, "outbytes": 8, "buffers": [70]}, | |
1: {"inbytes": 0x18, "outbytes": 0, "buffers": [69]}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 8, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 8}, | |
}, | |
'nn::fssrv::sf::IFileSystem': { | |
0: {"inbytes": 0x10, "outbytes": 0, "buffers": [25]}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [25]}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [25]}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [25]}, | |
4: {"inbytes": 0, "outbytes": 0, "buffers": [25]}, | |
5: {"inbytes": 0, "outbytes": 0, "buffers": [25, 25]}, | |
6: {"inbytes": 0, "outbytes": 0, "buffers": [25, 25]}, | |
7: {"inbytes": 0, "outbytes": 4, "buffers": [25]}, | |
8: {"inbytes": 4, "outbytes": 0, "buffers": [25], "outinterfaces": ['nn::fssrv::sf::IFile']}, | |
9: {"inbytes": 4, "outbytes": 0, "buffers": [25], "outinterfaces": ['nn::fssrv::sf::IDirectory']}, | |
10: {"inbytes": 0, "outbytes": 0}, | |
11: {"inbytes": 0, "outbytes": 8, "buffers": [25]}, | |
12: {"inbytes": 0, "outbytes": 8, "buffers": [25]}, | |
13: {"inbytes": 0, "outbytes": 0, "buffers": [25]}, | |
14: {"inbytes": 0, "outbytes": 0x20, "buffers": [25]}, | |
}, | |
'nn::fssrv::sf::IStorage': { | |
0: {"inbytes": 0x10, "outbytes": 0, "buffers": [70]}, | |
1: {"inbytes": 0x10, "outbytes": 0, "buffers": [69]}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 8, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 8}, | |
}, | |
'nn::fssrv::sf::IDeviceOperator': { | |
0: {"inbytes": 0, "outbytes": 1}, | |
1: {"inbytes": 0, "outbytes": 8}, | |
2: {"inbytes": 8, "outbytes": 0, "buffers": [6]}, | |
3: {"inbytes": 0, "outbytes": 8}, | |
4: {"inbytes": 0, "outbytes": 8}, | |
5: {"inbytes": 8, "outbytes": 0x18, "buffers": [6]}, | |
100: {"inbytes": 8, "outbytes": 0, "buffers": [6]}, | |
101: {"inbytes": 0, "outbytes": 8}, | |
110: {"inbytes": 4, "outbytes": 0}, | |
111: {"inbytes": 4, "outbytes": 8}, | |
112: {"inbytes": 0, "outbytes": 4}, | |
113: {"inbytes": 8, "outbytes": 0x18, "buffers": [6]}, | |
114: {"inbytes": 8, "outbytes": 0, "buffers": [6]}, | |
200: {"inbytes": 0, "outbytes": 1}, | |
201: {"inbytes": 0x10, "outbytes": 0}, | |
202: {"inbytes": 0, "outbytes": 4}, | |
203: {"inbytes": 4, "outbytes": 0x10}, | |
204: {"inbytes": 0, "outbytes": 0}, | |
205: {"inbytes": 4, "outbytes": 1}, | |
206: {"inbytes": 0x10, "outbytes": 0, "buffers": [6]}, | |
207: {"inbytes": 0x10, "outbytes": 0, "buffers": [6, 5]}, | |
208: {"inbytes": 8, "outbytes": 0, "buffers": [6]}, | |
209: {"inbytes": 0x10, "outbytes": 0, "buffers": [6]}, | |
210: {"inbytes": 1, "outbytes": 0}, | |
211: {"inbytes": 0x10, "outbytes": 0, "buffers": [6]}, | |
212: {"inbytes": 0x10, "outbytes": 0, "buffers": [6, 5]}, | |
213: {"inbytes": 8, "outbytes": 0, "buffers": [5]}, | |
214: {"inbytes": 8, "outbytes": 0, "buffers": [6]}, | |
215: {"inbytes": 0, "outbytes": 0}, | |
216: {"inbytes": 0, "outbytes": 0x10}, | |
217: {"inbytes": 0, "outbytes": 0x40}, | |
218: {"inbytes": 8, "outbytes": 0, "buffers": [6]}, | |
300: {"inbytes": 4, "outbytes": 0}, | |
301: {"inbytes": 0, "outbytes": 4}, | |
}, | |
'nn::fssrv::sf::IProgramRegistry': { | |
0: {"inbytes": 0x28, "outbytes": 0, "buffers": [5, 5]}, | |
1: {"inbytes": 8, "outbytes": 0}, | |
256: {"inbytes": 1, "outbytes": 0}, | |
}, | |
'nn::fssrv::sf::IDirectory': { | |
0: {"inbytes": 0, "outbytes": 8, "buffers": [6]}, | |
1: {"inbytes": 0, "outbytes": 8}, | |
}, | |
}, | |
'loader': { | |
'nn::ldr::detail::IProcessManagerInterface': { | |
0: {"inbytes": 0x10, "outbytes": 0, "inhandles": [1], "outhandles": [2]}, | |
1: {"inbytes": 0x10, "outbytes": 0, "buffers": [26]}, | |
2: {"inbytes": 0x10, "outbytes": 8}, | |
3: {"inbytes": 8, "outbytes": 0}, | |
}, | |
'nn::ldr::detail::IShellInterface': { | |
0: {"inbytes": 0x10, "outbytes": 0, "buffers": [9]}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::ldr::detail::IDebugMonitorInterface': { | |
0: {"inbytes": 0x10, "outbytes": 0, "buffers": [9]}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 8, "outbytes": 4, "buffers": [10]}, | |
}, | |
}, | |
'ncm': { | |
'nn::ncm::IContentStorage': { | |
0: {"inbytes": 0, "outbytes": 0x10}, | |
1: {"inbytes": 0x28, "outbytes": 0}, | |
2: {"inbytes": 0x10, "outbytes": 0}, | |
3: {"inbytes": 0x10, "outbytes": 1}, | |
4: {"inbytes": 0x18, "outbytes": 0, "buffers": [5]}, | |
5: {"inbytes": 0x20, "outbytes": 0}, | |
6: {"inbytes": 0x10, "outbytes": 0}, | |
7: {"inbytes": 0x10, "outbytes": 1}, | |
8: {"inbytes": 0x10, "outbytes": 0, "buffers": [26]}, | |
9: {"inbytes": 0x10, "outbytes": 0, "buffers": [26]}, | |
10: {"inbytes": 0, "outbytes": 0}, | |
11: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
12: {"inbytes": 0, "outbytes": 4}, | |
13: {"inbytes": 4, "outbytes": 4, "buffers": [6]}, | |
14: {"inbytes": 0x10, "outbytes": 8}, | |
15: {"inbytes": 0, "outbytes": 0}, | |
16: {"inbytes": 0x30, "outbytes": 0}, | |
17: {"inbytes": 0x18, "outbytes": 0}, | |
18: {"inbytes": 0x18, "outbytes": 0, "buffers": [6]}, | |
19: {"inbytes": 0x10, "outbytes": 0x18}, | |
20: {"inbytes": 0x10, "outbytes": 0x18}, | |
21: {"inbytes": 0x18, "outbytes": 0, "buffers": [5]}, | |
22: {"inbytes": 0, "outbytes": 8}, | |
23: {"inbytes": 0, "outbytes": 8}, | |
24: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::ncm::IContentMetaDatabase': { | |
0: {"inbytes": 0x10, "outbytes": 0, "buffers": [5]}, | |
1: {"inbytes": 0x10, "outbytes": 8, "buffers": [6]}, | |
2: {"inbytes": 0x10, "outbytes": 0}, | |
3: {"inbytes": 0x18, "outbytes": 0x10}, | |
4: {"inbytes": 0x18, "outbytes": 4, "buffers": [6]}, | |
5: {"inbytes": 0x20, "outbytes": 8, "buffers": [6]}, | |
6: {"inbytes": 8, "outbytes": 0x10}, | |
7: {"inbytes": 1, "outbytes": 8, "buffers": [6]}, | |
8: {"inbytes": 0x10, "outbytes": 1}, | |
9: {"inbytes": 0, "outbytes": 1, "buffers": [5]}, | |
10: {"inbytes": 0x10, "outbytes": 8}, | |
11: {"inbytes": 0x10, "outbytes": 4}, | |
12: {"inbytes": 0x10, "outbytes": 8}, | |
13: {"inbytes": 0, "outbytes": 0}, | |
14: {"inbytes": 0, "outbytes": 0, "buffers": [6, 5]}, | |
15: {"inbytes": 0, "outbytes": 0}, | |
16: {"inbytes": 0x20, "outbytes": 1}, | |
17: {"inbytes": 0x18, "outbytes": 4, "buffers": [6]}, | |
18: {"inbytes": 0x10, "outbytes": 1}, | |
19: {"inbytes": 0x10, "outbytes": 4}, | |
}, | |
'nn::lr::ILocationResolverManager': { | |
0: {"inbytes": 1, "outbytes": 0, "outinterfaces": ['nn::lr::ILocationResolver']}, | |
1: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::lr::IRegisteredLocationResolver']}, | |
2: {"inbytes": 1, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::lr::IAddOnContentLocationResolver']}, | |
}, | |
'nn::lr::IAddOnContentLocationResolver': { | |
0: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
1: {"inbytes": 0x10, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::lr::IRegisteredLocationResolver': { | |
0: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
1: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
2: {"inbytes": 8, "outbytes": 0}, | |
3: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
4: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
5: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
6: {"inbytes": 8, "outbytes": 0}, | |
7: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
}, | |
'nn::ncm::IContentManager': { | |
0: {"inbytes": 1, "outbytes": 0}, | |
1: {"inbytes": 1, "outbytes": 0}, | |
2: {"inbytes": 1, "outbytes": 0}, | |
3: {"inbytes": 1, "outbytes": 0}, | |
4: {"inbytes": 1, "outbytes": 0, "outinterfaces": ['nn::ncm::IContentStorage']}, | |
5: {"inbytes": 1, "outbytes": 0, "outinterfaces": ['nn::ncm::IContentMetaDatabase']}, | |
8: {"inbytes": 1, "outbytes": 0}, | |
9: {"inbytes": 1, "outbytes": 0}, | |
10: {"inbytes": 1, "outbytes": 0}, | |
11: {"inbytes": 1, "outbytes": 0}, | |
12: {"inbytes": 1, "outbytes": 0}, | |
}, | |
'nn::lr::ILocationResolver': { | |
0: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
1: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
2: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
3: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
4: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
5: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
6: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
7: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
8: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
9: {"inbytes": 0, "outbytes": 0}, | |
}, | |
}, | |
'pm': { | |
'nn::pm::detail::IInformationInterface': { | |
0: {"inbytes": 8, "outbytes": 8}, | |
}, | |
'nn::pm::detail::IShellInterface': { | |
0: {"inbytes": 0x18, "outbytes": 8}, | |
1: {"inbytes": 8, "outbytes": 0}, | |
2: {"inbytes": 8, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
4: {"inbytes": 0, "outbytes": 0x10}, | |
5: {"inbytes": 8, "outbytes": 0}, | |
6: {"inbytes": 8, "outbytes": 0}, | |
7: {"inbytes": 0, "outbytes": 0}, | |
8: {"inbytes": 0, "outbytes": 8}, | |
}, | |
'nn::pm::detail::IBootModeInterface': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::pm::detail::IDebugMonitorInterface': { | |
0: {"inbytes": 8, "outbytes": 4, "buffers": [6]}, | |
1: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
2: {"inbytes": 8, "outbytes": 0}, | |
3: {"inbytes": 8, "outbytes": 8}, | |
4: {"inbytes": 8, "outbytes": 0, "outhandles": [1]}, | |
5: {"inbytes": 0, "outbytes": 8}, | |
6: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
}, | |
}, | |
'sm': { | |
'nn::sm::detail::IManagerInterface': { | |
0: {"inbytes": 8, "outbytes": 0, "buffers": [5, 5]}, | |
1: {"inbytes": 8, "outbytes": 0}, | |
}, | |
'nn::sm::detail::IUserInterface': { | |
0: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
1: {"inbytes": 8, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0x10, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 8, "outbytes": 0}, | |
}, | |
}, | |
'spl': { | |
'nn::spl::detail::IGeneralInterface': { | |
0: {"inbytes": 4, "outbytes": 8}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [10, 9, 9, 9]}, | |
2: {"inbytes": 0x18, "outbytes": 0x10}, | |
3: {"inbytes": 0x24, "outbytes": 0}, | |
4: {"inbytes": 0x20, "outbytes": 0x10}, | |
5: {"inbytes": 0x10, "outbytes": 0}, | |
7: {"inbytes": 0, "outbytes": 0, "buffers": [10]}, | |
9: {"inbytes": 0x24, "outbytes": 0, "buffers": [9]}, | |
10: {"inbytes": 0, "outbytes": 4, "buffers": [10, 9, 9, 9]}, | |
11: {"inbytes": 0, "outbytes": 1}, | |
12: {"inbytes": 0x18, "outbytes": 0x10}, | |
13: {"inbytes": 0x24, "outbytes": 0, "buffers": [10, 9]}, | |
14: {"inbytes": 0x18, "outbytes": 0x10}, | |
15: {"inbytes": 0x14, "outbytes": 0, "buffers": [70, 69]}, | |
16: {"inbytes": 4, "outbytes": 0x10, "buffers": [9]}, | |
17: {"inbytes": 0x24, "outbytes": 0, "buffers": [9]}, | |
18: {"inbytes": 4, "outbytes": 0x10, "buffers": [9, 9, 9]}, | |
19: {"inbytes": 0x14, "outbytes": 0}, | |
20: {"inbytes": 0x14, "outbytes": 0x10}, | |
21: {"inbytes": 0, "outbytes": 4}, | |
22: {"inbytes": 4, "outbytes": 0}, | |
23: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
24: {"inbytes": 4, "outbytes": 0}, | |
25: {"inbytes": 0, "outbytes": 4}, | |
}, | |
'nn::spl::detail::IRandomInterface': { | |
0: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
}, | |
}, | |
'usb': { | |
'nn::usb::hs::IClientEpSession': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
4: {"inbytes": 0x18, "outbytes": 4}, | |
5: {"inbytes": 4, "outbytes": 4, "buffers": [34]}, | |
6: {"inbytes": 0x20, "outbytes": 4, "buffers": [33]}, | |
}, | |
'nn::usb::ds::IDsEndpoint': { | |
0: {"inbytes": 0x10, "outbytes": 4}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
3: {"inbytes": 0, "outbytes": 0x84}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 1, "outbytes": 0}, | |
}, | |
'nn::usb::hs::IClientIfSession': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 1, "outbytes": 0, "buffers": [6]}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
3: {"inbytes": 1, "outbytes": 0, "buffers": [6]}, | |
4: {"inbytes": 0, "outbytes": 4}, | |
5: {"inbytes": 0x10, "outbytes": 0}, | |
6: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
7: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
8: {"inbytes": 0, "outbytes": 0}, | |
9: {"inbytes": 0x14, "outbytes": 7, "outinterfaces": ['nn::usb::hs::IClientEpSession']}, | |
}, | |
'nn::usb::ds::IDsService': { | |
0: {"inbytes": 4, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0, "inhandles": [1]}, | |
2: {"inbytes": 0, "outbytes": 1, "buffers": [5, 5], "outinterfaces": ['nn::usb::ds::IDsInterface']}, | |
3: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
4: {"inbytes": 0, "outbytes": 4}, | |
5: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
}, | |
'nn::usb::pd::detail::IPdCradleSession': { | |
0: {"inbytes": 8, "outbytes": 0}, | |
1: {"inbytes": 4, "outbytes": 4}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 0, "outbytes": 2}, | |
5: {"inbytes": 0, "outbytes": 2}, | |
6: {"inbytes": 0, "outbytes": 2}, | |
7: {"inbytes": 0, "outbytes": 1}, | |
8: {"inbytes": 0, "outbytes": 1}, | |
}, | |
'nn::usb::pm::IPmService': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
3: {"inbytes": 0, "outbytes": 4}, | |
4: {"inbytes": 8, "outbytes": 0}, | |
5: {"inbytes": 4, "outbytes": 4}, | |
}, | |
'nn::usb::pd::detail::IPdSession': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0x14}, | |
3: {"inbytes": 0, "outbytes": 4}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 0}, | |
6: {"inbytes": 1, "outbytes": 0}, | |
}, | |
'nn::usb::pd::detail::IPdCradleManager': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::usb::pd::detail::IPdCradleSession']}, | |
}, | |
'nn::usb::hs::IClientRootSession': { | |
0: {"inbytes": 0, "outbytes": 0, "inhandles": [1]}, | |
1: {"inbytes": 0x10, "outbytes": 4, "buffers": [6]}, | |
2: {"inbytes": 0x10, "outbytes": 4, "buffers": [6]}, | |
3: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
4: {"inbytes": 0x12, "outbytes": 0, "outhandles": [1]}, | |
5: {"inbytes": 1, "outbytes": 0}, | |
6: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
7: {"inbytes": 4, "outbytes": 0, "buffers": [6, 6], "outinterfaces": ['nn::usb::hs::IClientIfSession']}, | |
}, | |
'nn::usb::pd::detail::IPdManager': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::usb::pd::detail::IPdSession']}, | |
}, | |
'nn::usb::ds::IDsInterface': { | |
0: {"inbytes": 0, "outbytes": 1, "buffers": [5], "outinterfaces": ['nn::usb::ds::IDsEndpoint']}, | |
1: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 0x10, "outbytes": 4}, | |
6: {"inbytes": 0x10, "outbytes": 4}, | |
7: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
8: {"inbytes": 0, "outbytes": 0x84}, | |
9: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
10: {"inbytes": 0, "outbytes": 0x84}, | |
11: {"inbytes": 0, "outbytes": 0}, | |
}, | |
}, | |
'settings': { | |
'nn::settings::IFirmwareDebugSettingsServer': { | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [25, 25, 5]}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [25, 25]}, | |
4: {"inbytes": 0, "outbytes": 0, "buffers": [25], "outinterfaces": ['nn::settings::ISettingsItemKeyIterator']}, | |
}, | |
'nn::settings::ISystemSettingsServer': { | |
0: {"inbytes": 8, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
2: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [26]}, | |
4: {"inbytes": 0, "outbytes": 0, "buffers": [26]}, | |
7: {"inbytes": 0, "outbytes": 1}, | |
8: {"inbytes": 1, "outbytes": 0}, | |
9: {"inbytes": 0, "outbytes": 0x28}, | |
10: {"inbytes": 0x28, "outbytes": 0}, | |
11: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
12: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
13: {"inbytes": 0, "outbytes": 0x10}, | |
14: {"inbytes": 0x10, "outbytes": 0}, | |
15: {"inbytes": 0, "outbytes": 0x20}, | |
16: {"inbytes": 0x20, "outbytes": 0}, | |
17: {"inbytes": 0, "outbytes": 4}, | |
18: {"inbytes": 4, "outbytes": 0}, | |
19: {"inbytes": 4, "outbytes": 8}, | |
20: {"inbytes": 0xC, "outbytes": 0}, | |
21: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
22: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
23: {"inbytes": 0, "outbytes": 4}, | |
24: {"inbytes": 4, "outbytes": 0}, | |
25: {"inbytes": 0, "outbytes": 1}, | |
26: {"inbytes": 1, "outbytes": 0}, | |
27: {"inbytes": 0, "outbytes": 1}, | |
28: {"inbytes": 1, "outbytes": 0}, | |
29: {"inbytes": 0, "outbytes": 0x18}, | |
30: {"inbytes": 0x18, "outbytes": 0}, | |
31: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
32: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
35: {"inbytes": 0, "outbytes": 4}, | |
36: {"inbytes": 4, "outbytes": 0}, | |
37: {"inbytes": 0, "outbytes": 8, "buffers": [25, 25]}, | |
38: {"inbytes": 0, "outbytes": 8, "buffers": [25, 25, 6]}, | |
39: {"inbytes": 0, "outbytes": 0x20}, | |
40: {"inbytes": 0x20, "outbytes": 0}, | |
41: {"inbytes": 0, "outbytes": 0, "buffers": [26]}, | |
42: {"inbytes": 0, "outbytes": 0, "buffers": [25]}, | |
43: {"inbytes": 4, "outbytes": 4}, | |
44: {"inbytes": 8, "outbytes": 0}, | |
45: {"inbytes": 0, "outbytes": 1}, | |
46: {"inbytes": 1, "outbytes": 0}, | |
47: {"inbytes": 0, "outbytes": 1}, | |
48: {"inbytes": 1, "outbytes": 0}, | |
49: {"inbytes": 0, "outbytes": 8}, | |
50: {"inbytes": 8, "outbytes": 0}, | |
51: {"inbytes": 0, "outbytes": 8}, | |
52: {"inbytes": 0, "outbytes": 8}, | |
53: {"inbytes": 0, "outbytes": 0x24}, | |
54: {"inbytes": 0x24, "outbytes": 0}, | |
55: {"inbytes": 0, "outbytes": 8}, | |
56: {"inbytes": 0, "outbytes": 8, "buffers": [6]}, | |
57: {"inbytes": 4, "outbytes": 0}, | |
58: {"inbytes": 0, "outbytes": 0x20}, | |
59: {"inbytes": 0x20, "outbytes": 0}, | |
60: {"inbytes": 0, "outbytes": 1}, | |
61: {"inbytes": 1, "outbytes": 0}, | |
62: {"inbytes": 0, "outbytes": 1}, | |
63: {"inbytes": 0, "outbytes": 4}, | |
64: {"inbytes": 4, "outbytes": 0}, | |
65: {"inbytes": 0, "outbytes": 1}, | |
66: {"inbytes": 1, "outbytes": 0}, | |
67: {"inbytes": 0, "outbytes": 0x18}, | |
68: {"inbytes": 0, "outbytes": 0x18}, | |
69: {"inbytes": 0, "outbytes": 1}, | |
70: {"inbytes": 1, "outbytes": 0}, | |
71: {"inbytes": 0, "outbytes": 0xC}, | |
72: {"inbytes": 0xC, "outbytes": 0}, | |
73: {"inbytes": 0, "outbytes": 1}, | |
74: {"inbytes": 1, "outbytes": 0}, | |
75: {"inbytes": 0, "outbytes": 0x20}, | |
76: {"inbytes": 0x20, "outbytes": 0}, | |
77: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
78: {"inbytes": 0, "outbytes": 0, "buffers": [21]}, | |
79: {"inbytes": 0, "outbytes": 4}, | |
80: {"inbytes": 0, "outbytes": 4}, | |
81: {"inbytes": 4, "outbytes": 0}, | |
82: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
83: {"inbytes": 0, "outbytes": 0x10}, | |
84: {"inbytes": 0, "outbytes": 0x18}, | |
85: {"inbytes": 0x18, "outbytes": 0}, | |
86: {"inbytes": 0, "outbytes": 0x18}, | |
87: {"inbytes": 0x18, "outbytes": 0}, | |
88: {"inbytes": 0, "outbytes": 1}, | |
89: {"inbytes": 1, "outbytes": 0}, | |
90: {"inbytes": 0, "outbytes": 0x10}, | |
91: {"inbytes": 8, "outbytes": 0}, | |
92: {"inbytes": 0, "outbytes": 8}, | |
93: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
94: {"inbytes": 0, "outbytes": 0x10}, | |
95: {"inbytes": 0, "outbytes": 1}, | |
96: {"inbytes": 1, "outbytes": 0}, | |
97: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
98: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
99: {"inbytes": 0, "outbytes": 1}, | |
100: {"inbytes": 1, "outbytes": 0}, | |
101: {"inbytes": 0, "outbytes": 1}, | |
102: {"inbytes": 1, "outbytes": 0}, | |
103: {"inbytes": 0, "outbytes": 1}, | |
104: {"inbytes": 1, "outbytes": 0}, | |
105: {"inbytes": 8, "outbytes": 0}, | |
106: {"inbytes": 0, "outbytes": 8}, | |
107: {"inbytes": 0, "outbytes": 0x2C}, | |
108: {"inbytes": 0x2C, "outbytes": 0}, | |
109: {"inbytes": 0, "outbytes": 4}, | |
110: {"inbytes": 4, "outbytes": 0}, | |
111: {"inbytes": 0, "outbytes": 1}, | |
112: {"inbytes": 1, "outbytes": 0}, | |
113: {"inbytes": 0, "outbytes": 1}, | |
114: {"inbytes": 1, "outbytes": 0}, | |
115: {"inbytes": 0, "outbytes": 1}, | |
116: {"inbytes": 1, "outbytes": 0}, | |
117: {"inbytes": 0, "outbytes": 1}, | |
118: {"inbytes": 1, "outbytes": 0}, | |
119: {"inbytes": 1, "outbytes": 3}, | |
120: {"inbytes": 0, "outbytes": 4}, | |
121: {"inbytes": 4, "outbytes": 0}, | |
}, | |
'nn::settings::IFactorySettingsServer': { | |
0: {"inbytes": 0, "outbytes": 6}, | |
1: {"inbytes": 0, "outbytes": 0x1E}, | |
2: {"inbytes": 0, "outbytes": 6}, | |
3: {"inbytes": 0, "outbytes": 6}, | |
4: {"inbytes": 0, "outbytes": 6}, | |
5: {"inbytes": 0, "outbytes": 6}, | |
6: {"inbytes": 0, "outbytes": 6}, | |
7: {"inbytes": 0, "outbytes": 4}, | |
8: {"inbytes": 0, "outbytes": 4, "buffers": [10]}, | |
9: {"inbytes": 0, "outbytes": 0x18}, | |
10: {"inbytes": 8, "outbytes": 0}, | |
11: {"inbytes": 8, "outbytes": 0}, | |
12: {"inbytes": 0, "outbytes": 0x18}, | |
14: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
15: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
16: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
17: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
18: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
19: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
20: {"inbytes": 0, "outbytes": 0x54}, | |
21: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
22: {"inbytes": 0, "outbytes": 0x5A}, | |
}, | |
'nn::settings::ISettingsServer': { | |
0: {"inbytes": 0, "outbytes": 8}, | |
1: {"inbytes": 0, "outbytes": 4, "buffers": [10]}, | |
3: {"inbytes": 0, "outbytes": 4}, | |
4: {"inbytes": 0, "outbytes": 4}, | |
}, | |
'nn::settings::ISettingsItemKeyIterator': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 8}, | |
2: {"inbytes": 0, "outbytes": 8, "buffers": [6]}, | |
}, | |
}, | |
'Bus': { | |
'nn::i2c::IManager': { | |
0: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::i2c::ISession']}, | |
1: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::i2c::ISession']}, | |
2: {"inbytes": 4, "outbytes": 1}, | |
3: {"inbytes": 0x10, "outbytes": 1}, | |
}, | |
'nn::pwm::IChannelSession': { | |
0: {"inbytes": 8, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 8}, | |
2: {"inbytes": 4, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 4}, | |
4: {"inbytes": 1, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 1}, | |
}, | |
'nn::pwm::IManager': { | |
0: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::pwm::IChannelSession']}, | |
1: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::pwm::IChannelSession']}, | |
}, | |
'nn::gpio::IManager': { | |
0: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::gpio::IPadSession']}, | |
1: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::gpio::IPadSession']}, | |
2: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::gpio::IPadSession']}, | |
3: {"inbytes": 4, "outbytes": 1}, | |
4: {"inbytes": 0, "outbytes": 0x10}, | |
5: {"inbytes": 8, "outbytes": 0}, | |
6: {"inbytes": 1, "outbytes": 0}, | |
}, | |
'nn::i2c::ISession': { | |
0: {"inbytes": 4, "outbytes": 0, "buffers": [5]}, | |
1: {"inbytes": 4, "outbytes": 0, "buffers": [6]}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [6, 9]}, | |
10: {"inbytes": 4, "outbytes": 0, "buffers": [33]}, | |
11: {"inbytes": 4, "outbytes": 0, "buffers": [34]}, | |
12: {"inbytes": 0, "outbytes": 0, "buffers": [34, 9]}, | |
}, | |
'nn::uart::IManager': { | |
0: {"inbytes": 4, "outbytes": 1}, | |
1: {"inbytes": 4, "outbytes": 1}, | |
2: {"inbytes": 8, "outbytes": 1}, | |
3: {"inbytes": 8, "outbytes": 1}, | |
4: {"inbytes": 8, "outbytes": 1}, | |
5: {"inbytes": 8, "outbytes": 1}, | |
6: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::uart::IPortSession']}, | |
7: {"inbytes": 8, "outbytes": 1}, | |
8: {"inbytes": 8, "outbytes": 1}, | |
}, | |
'nn::sasbus::IManager': { | |
0: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::sasbus::ISession']}, | |
}, | |
'nn::sasbus::ISession': { | |
0: {"inbytes": 1, "outbytes": 0, "buffers": [33]}, | |
1: {"inbytes": 1, "outbytes": 0, "buffers": [34]}, | |
2: {"inbytes": 0x18, "outbytes": 0, "inhandles": [1]}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::pinmux::IManager': { | |
0: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::pinmux::ISession']}, | |
}, | |
'nn::uart::IPortSession': { | |
0: {"inbytes": 0x20, "outbytes": 1, "inhandles": [1, 1]}, | |
1: {"inbytes": 0x20, "outbytes": 1, "inhandles": [1, 1]}, | |
2: {"inbytes": 0, "outbytes": 8}, | |
3: {"inbytes": 0, "outbytes": 8, "buffers": [33]}, | |
4: {"inbytes": 0, "outbytes": 8}, | |
5: {"inbytes": 0, "outbytes": 8, "buffers": [34]}, | |
6: {"inbytes": 0x10, "outbytes": 1, "outhandles": [1]}, | |
7: {"inbytes": 4, "outbytes": 1}, | |
}, | |
'nn::pinmux::ISession': { | |
0: {"inbytes": 4, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 4}, | |
2: {"inbytes": 4, "outbytes": 0}, | |
}, | |
'nn::gpio::IPadSession': { | |
0: {"inbytes": 4, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 4}, | |
2: {"inbytes": 4, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 4}, | |
4: {"inbytes": 1, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 1}, | |
6: {"inbytes": 0, "outbytes": 4}, | |
7: {"inbytes": 0, "outbytes": 0}, | |
8: {"inbytes": 4, "outbytes": 0}, | |
9: {"inbytes": 0, "outbytes": 4}, | |
10: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
11: {"inbytes": 0, "outbytes": 0}, | |
12: {"inbytes": 1, "outbytes": 0}, | |
13: {"inbytes": 0, "outbytes": 1}, | |
14: {"inbytes": 4, "outbytes": 0}, | |
15: {"inbytes": 0, "outbytes": 4}, | |
}, | |
}, | |
'bluetooth': { | |
'nn::bluetooth::IBluetoothDriver': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 0, "buffers": [26]}, | |
6: {"inbytes": 4, "outbytes": 0, "buffers": [10]}, | |
7: {"inbytes": 4, "outbytes": 0, "buffers": [9]}, | |
8: {"inbytes": 0, "outbytes": 0}, | |
9: {"inbytes": 0, "outbytes": 0}, | |
10: {"inbytes": 6, "outbytes": 0, "buffers": [25]}, | |
11: {"inbytes": 6, "outbytes": 0}, | |
12: {"inbytes": 6, "outbytes": 0}, | |
13: {"inbytes": 0x18, "outbytes": 0}, | |
14: {"inbytes": 0xC, "outbytes": 0}, | |
15: {"inbytes": 0, "outbytes": 4, "buffers": [10]}, | |
16: {"inbytes": 2, "outbytes": 0, "outhandles": [1]}, | |
17: {"inbytes": 6, "outbytes": 0}, | |
18: {"inbytes": 6, "outbytes": 0}, | |
19: {"inbytes": 6, "outbytes": 0, "buffers": [25]}, | |
20: {"inbytes": 6, "outbytes": 0, "buffers": [9]}, | |
21: {"inbytes": 0xC, "outbytes": 0, "buffers": [25]}, | |
22: {"inbytes": 0xC, "outbytes": 0}, | |
23: {"inbytes": 6, "outbytes": 0}, | |
24: {"inbytes": 0, "outbytes": 0, "buffers": [25]}, | |
25: {"inbytes": 6, "outbytes": 0, "buffers": [26]}, | |
26: {"inbytes": 0, "outbytes": 0}, | |
27: {"inbytes": 0, "outbytes": 4, "buffers": [10]}, | |
28: {"inbytes": 7, "outbytes": 0}, | |
29: {"inbytes": 7, "outbytes": 0}, | |
30: {"inbytes": 6, "outbytes": 0, "buffers": [9]}, | |
31: {"inbytes": 1, "outbytes": 0}, | |
32: {"inbytes": 0, "outbytes": 0}, | |
33: {"inbytes": 0, "outbytes": 0}, | |
34: {"inbytes": 1, "outbytes": 0}, | |
35: {"inbytes": 2, "outbytes": 0}, | |
36: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
37: {"inbytes": 0, "outbytes": 4, "buffers": [10]}, | |
38: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
39: {"inbytes": 0, "outbytes": 0}, | |
40: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
41: {"inbytes": 1, "outbytes": 0}, | |
42: {"inbytes": 0, "outbytes": 1}, | |
43: {"inbytes": 1, "outbytes": 0}, | |
44: {"inbytes": 0, "outbytes": 1}, | |
}, | |
}, | |
'bcat': { | |
'nn::news::detail::ipc::IOverwriteEventHolder': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
}, | |
'nn::bcat::detail::ipc::IDeliveryCacheProgressService': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [26]}, | |
}, | |
'nn::bcat::detail::ipc::IServiceCreator': { | |
0: {"inbytes": 8, "outbytes": 0, "outinterfaces": ['nn::bcat::detail::ipc::IBcatService'], "pid": True}, | |
1: {"inbytes": 8, "outbytes": 0, "outinterfaces": ['nn::bcat::detail::ipc::IDeliveryCacheStorageService'], "pid": True}, | |
2: {"inbytes": 8, "outbytes": 0, "outinterfaces": ['nn::bcat::detail::ipc::IDeliveryCacheStorageService']}, | |
}, | |
'nn::news::detail::ipc::IServiceCreator': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::news::detail::ipc::INewsService']}, | |
1: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::news::detail::ipc::INewlyArrivedEventHolder']}, | |
2: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::news::detail::ipc::INewsDataService']}, | |
3: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::news::detail::ipc::INewsDatabaseService']}, | |
4: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::news::detail::ipc::IOverwriteEventHolder']}, | |
}, | |
'nn::bcat::detail::ipc::IBcatService': { | |
10100: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::bcat::detail::ipc::IDeliveryCacheProgressService']}, | |
20100: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::bcat::detail::ipc::IDeliveryCacheProgressService']}, | |
30100: {"inbytes": 8, "outbytes": 0, "buffers": [9]}, | |
30200: {"inbytes": 0x10, "outbytes": 0}, | |
30201: {"inbytes": 8, "outbytes": 0}, | |
30202: {"inbytes": 8, "outbytes": 0}, | |
30203: {"inbytes": 8, "outbytes": 0}, | |
90100: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
90200: {"inbytes": 8, "outbytes": 8, "buffers": [6]}, | |
90201: {"inbytes": 8, "outbytes": 0}, | |
90300: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
}, | |
'nn::bcat::detail::ipc::IDeliveryCacheStorageService': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::bcat::detail::ipc::IDeliveryCacheFileService']}, | |
1: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::bcat::detail::ipc::IDeliveryCacheDirectoryService']}, | |
10: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
}, | |
'nn::prepo::detail::ipc::IPrepoService': { | |
10100: {"inbytes": 8, "outbytes": 0, "buffers": [9, 5], "pid": True}, | |
10101: {"inbytes": 0x18, "outbytes": 0, "buffers": [9, 5], "pid": True}, | |
10200: {"inbytes": 0, "outbytes": 0}, | |
10300: {"inbytes": 0, "outbytes": 4}, | |
20100: {"inbytes": 8, "outbytes": 0, "buffers": [9, 5]}, | |
20101: {"inbytes": 0x18, "outbytes": 0, "buffers": [9, 5]}, | |
30100: {"inbytes": 0, "outbytes": 0}, | |
40100: {"inbytes": 0, "outbytes": 1}, | |
40101: {"inbytes": 1, "outbytes": 0}, | |
90100: {"inbytes": 0, "outbytes": 0x10}, | |
}, | |
'nn::bcat::detail::ipc::IDeliveryCacheFileService': { | |
0: {"inbytes": 0x40, "outbytes": 0}, | |
1: {"inbytes": 8, "outbytes": 8, "buffers": [6]}, | |
2: {"inbytes": 0, "outbytes": 8}, | |
3: {"inbytes": 0, "outbytes": 0x10}, | |
}, | |
'nn::news::detail::ipc::INewsService': { | |
10100: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
20100: {"inbytes": 8, "outbytes": 0, "buffers": [9]}, | |
30100: {"inbytes": 0, "outbytes": 4, "buffers": [9]}, | |
30101: {"inbytes": 4, "outbytes": 4, "buffers": [6]}, | |
30200: {"inbytes": 0, "outbytes": 1}, | |
30300: {"inbytes": 0, "outbytes": 0, "buffers": [9]}, | |
30400: {"inbytes": 0, "outbytes": 8, "buffers": [6, 5]}, | |
40100: {"inbytes": 4, "outbytes": 0, "buffers": [9]}, | |
40101: {"inbytes": 8, "outbytes": 0}, | |
40200: {"inbytes": 0, "outbytes": 0}, | |
40201: {"inbytes": 0, "outbytes": 0}, | |
90100: {"inbytes": 0, "outbytes": 8, "buffers": [6]}, | |
}, | |
'nn::bcat::detail::ipc::IDeliveryCacheDirectoryService': { | |
0: {"inbytes": 0x20, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
2: {"inbytes": 0, "outbytes": 4}, | |
}, | |
'nn::news::detail::ipc::INewlyArrivedEventHolder': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
}, | |
'nn::news::detail::ipc::INewsDatabaseService': { | |
0: {"inbytes": 4, "outbytes": 4, "buffers": [6, 9, 9]}, | |
1: {"inbytes": 0, "outbytes": 4, "buffers": [9]}, | |
2: {"inbytes": 1, "outbytes": 4, "buffers": [9, 9]}, | |
3: {"inbytes": 4, "outbytes": 0, "buffers": [9, 9]}, | |
4: {"inbytes": 4, "outbytes": 0, "buffers": [9, 9]}, | |
5: {"inbytes": 0, "outbytes": 0, "buffers": [9, 9, 9]}, | |
}, | |
'nn::news::detail::ipc::INewsDataService': { | |
0: {"inbytes": 0, "outbytes": 0, "buffers": [9]}, | |
1: {"inbytes": 0x48, "outbytes": 0}, | |
2: {"inbytes": 8, "outbytes": 8, "buffers": [6]}, | |
3: {"inbytes": 0, "outbytes": 8}, | |
}, | |
}, | |
'friends': { | |
'nn::friends::detail::ipc::INotificationService': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0x10}, | |
}, | |
'nn::friends::detail::ipc::IServiceCreator': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::friends::detail::ipc::IFriendService']}, | |
1: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::friends::detail::ipc::INotificationService']}, | |
}, | |
'nn::friends::detail::ipc::IFriendService': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
10100: {"inbytes": 0x30, "outbytes": 4, "buffers": [10], "pid": True}, | |
10101: {"inbytes": 0x30, "outbytes": 4, "buffers": [6], "pid": True}, | |
10102: {"inbytes": 0x18, "outbytes": 0, "buffers": [6, 9], "pid": True}, | |
10110: {"inbytes": 0x18, "outbytes": 4, "buffers": [6]}, | |
10200: {"inbytes": 0x20, "outbytes": 0, "buffers": [25, 25], "pid": True}, | |
10211: {"inbytes": 0x80, "outbytes": 0, "buffers": [25, 25, 5], "pid": True}, | |
10400: {"inbytes": 0x18, "outbytes": 4, "buffers": [10]}, | |
10500: {"inbytes": 0x10, "outbytes": 0, "buffers": [6, 9]}, | |
10600: {"inbytes": 0x10, "outbytes": 0}, | |
10601: {"inbytes": 0x10, "outbytes": 0}, | |
10610: {"inbytes": 0x18, "outbytes": 0, "buffers": [25], "pid": True}, | |
10700: {"inbytes": 0x18, "outbytes": 0, "buffers": [26]}, | |
10701: {"inbytes": 0x10, "outbytes": 0, "buffers": [26]}, | |
10702: {"inbytes": 0x18, "outbytes": 0, "buffers": [25, 25, 25], "pid": True}, | |
11000: {"inbytes": 0xA4, "outbytes": 0xA0}, | |
20100: {"inbytes": 0x28, "outbytes": 4, "pid": True}, | |
20101: {"inbytes": 0x10, "outbytes": 4}, | |
20102: {"inbytes": 0x18, "outbytes": 0, "buffers": [26]}, | |
20103: {"inbytes": 0x10, "outbytes": 0}, | |
20104: {"inbytes": 0x10, "outbytes": 0}, | |
20110: {"inbytes": 0x18, "outbytes": 0, "buffers": [26]}, | |
20200: {"inbytes": 0x10, "outbytes": 8}, | |
20201: {"inbytes": 0x18, "outbytes": 4, "buffers": [6]}, | |
20300: {"inbytes": 0x18, "outbytes": 4, "buffers": [6]}, | |
20301: {"inbytes": 0x18, "outbytes": 4, "buffers": [26, 6]}, | |
20400: {"inbytes": 0x18, "outbytes": 4, "buffers": [6]}, | |
20401: {"inbytes": 0x10, "outbytes": 0}, | |
20500: {"inbytes": 0x10, "outbytes": 0, "buffers": [6, 9]}, | |
20501: {"inbytes": 0x18, "outbytes": 8}, | |
20600: {"inbytes": 0x10, "outbytes": 0, "buffers": [26]}, | |
20700: {"inbytes": 0x18, "outbytes": 4, "buffers": [6]}, | |
20701: {"inbytes": 0x10, "outbytes": 0x10}, | |
20800: {"inbytes": 0x10, "outbytes": 0, "buffers": [26]}, | |
20801: {"inbytes": 0x10, "outbytes": 0}, | |
20900: {"inbytes": 0, "outbytes": 0}, | |
21000: {"inbytes": 0x18, "outbytes": 0, "buffers": [26]}, | |
30100: {"inbytes": 0x10, "outbytes": 0}, | |
30101: {"inbytes": 0x18, "outbytes": 0}, | |
30110: {"inbytes": 0x18, "outbytes": 0}, | |
30120: {"inbytes": 0x20, "outbytes": 0}, | |
30121: {"inbytes": 0x20, "outbytes": 0}, | |
30200: {"inbytes": 0x20, "outbytes": 0}, | |
30201: {"inbytes": 0x30, "outbytes": 0, "buffers": [25, 25]}, | |
30202: {"inbytes": 0x18, "outbytes": 0}, | |
30203: {"inbytes": 0x18, "outbytes": 0}, | |
30204: {"inbytes": 0x18, "outbytes": 0}, | |
30205: {"inbytes": 0x18, "outbytes": 0}, | |
30210: {"inbytes": 0x10, "outbytes": 0x40}, | |
30211: {"inbytes": 0x78, "outbytes": 0, "buffers": [5]}, | |
30212: {"inbytes": 0x18, "outbytes": 0}, | |
30213: {"inbytes": 0x18, "outbytes": 4, "buffers": [6]}, | |
30214: {"inbytes": 0, "outbytes": 4, "buffers": [9, 6]}, | |
30215: {"inbytes": 0x30, "outbytes": 0, "buffers": [25, 25]}, | |
30216: {"inbytes": 0x18, "outbytes": 0}, | |
30217: {"inbytes": 0x80, "outbytes": 0}, | |
30400: {"inbytes": 0x20, "outbytes": 0}, | |
30401: {"inbytes": 0x30, "outbytes": 0, "buffers": [25]}, | |
30402: {"inbytes": 0x18, "outbytes": 0}, | |
30500: {"inbytes": 0x30, "outbytes": 0, "buffers": [26]}, | |
30700: {"inbytes": 0x10, "outbytes": 0}, | |
30810: {"inbytes": 0x18, "outbytes": 0}, | |
30811: {"inbytes": 0x18, "outbytes": 0}, | |
30812: {"inbytes": 0x18, "outbytes": 0}, | |
30820: {"inbytes": 0x10, "outbytes": 0}, | |
30830: {"inbytes": 0x10, "outbytes": 0}, | |
49900: {"inbytes": 0x10, "outbytes": 0}, | |
}, | |
}, | |
'nifm': { | |
'nn::nifm::detail::IStaticService': { | |
4: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::nifm::detail::IGeneralService']}, | |
5: {"inbytes": 8, "outbytes": 0, "outinterfaces": ['nn::nifm::detail::IGeneralService'], "pid": True}, | |
}, | |
'nn::nifm::detail::IScanRequest': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 1}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
}, | |
'nn::nifm::detail::IRequest': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [1, 1]}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 0x24, "outbytes": 0}, | |
6: {"inbytes": 4, "outbytes": 0}, | |
8: {"inbytes": 1, "outbytes": 0}, | |
9: {"inbytes": 0x10, "outbytes": 0}, | |
10: {"inbytes": 1, "outbytes": 0}, | |
11: {"inbytes": 1, "outbytes": 0}, | |
12: {"inbytes": 1, "outbytes": 0}, | |
13: {"inbytes": 1, "outbytes": 0}, | |
14: {"inbytes": 2, "outbytes": 0}, | |
15: {"inbytes": 1, "outbytes": 0}, | |
16: {"inbytes": 1, "outbytes": 0}, | |
17: {"inbytes": 1, "outbytes": 0}, | |
18: {"inbytes": 4, "outbytes": 0}, | |
19: {"inbytes": 0, "outbytes": 0x24}, | |
20: {"inbytes": 0, "outbytes": 4}, | |
21: {"inbytes": 4, "outbytes": 0xC, "buffers": [6]}, | |
22: {"inbytes": 0, "outbytes": 4, "buffers": [22]}, | |
23: {"inbytes": 1, "outbytes": 0}, | |
24: {"inbytes": 4, "outbytes": 0}, | |
25: {"inbytes": 4, "outbytes": 0}, | |
}, | |
'nn::nifm::detail::INetworkProfile': { | |
0: {"inbytes": 0, "outbytes": 0x10, "buffers": [25]}, | |
1: {"inbytes": 0x10, "outbytes": 0x10}, | |
2: {"inbytes": 0, "outbytes": 0x10}, | |
}, | |
'nn::nifm::detail::IGeneralService': { | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [26]}, | |
2: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::nifm::detail::IScanRequest']}, | |
4: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::nifm::detail::IRequest']}, | |
5: {"inbytes": 0, "outbytes": 0, "buffers": [26]}, | |
6: {"inbytes": 4, "outbytes": 4, "buffers": [10]}, | |
7: {"inbytes": 1, "outbytes": 4, "buffers": [6]}, | |
8: {"inbytes": 0x10, "outbytes": 0, "buffers": [26]}, | |
9: {"inbytes": 0, "outbytes": 0x10, "buffers": [25]}, | |
10: {"inbytes": 0x10, "outbytes": 0}, | |
11: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
12: {"inbytes": 0, "outbytes": 4}, | |
13: {"inbytes": 0, "outbytes": 0, "buffers": [26]}, | |
14: {"inbytes": 0, "outbytes": 0x10, "buffers": [25], "outinterfaces": ['nn::nifm::detail::INetworkProfile']}, | |
15: {"inbytes": 0, "outbytes": 0x16}, | |
16: {"inbytes": 1, "outbytes": 0}, | |
17: {"inbytes": 0, "outbytes": 1}, | |
18: {"inbytes": 0, "outbytes": 3}, | |
19: {"inbytes": 1, "outbytes": 0}, | |
20: {"inbytes": 0, "outbytes": 1}, | |
21: {"inbytes": 0, "outbytes": 1, "buffers": [25]}, | |
22: {"inbytes": 0, "outbytes": 1}, | |
23: {"inbytes": 0, "outbytes": 0}, | |
24: {"inbytes": 0, "outbytes": 0}, | |
25: {"inbytes": 0, "outbytes": 0x10}, | |
26: {"inbytes": 0, "outbytes": 0, "buffers": [25]}, | |
27: {"inbytes": 0, "outbytes": 0, "buffers": [26]}, | |
28: {"inbytes": 0, "outbytes": 0, "buffers": [25]}, | |
29: {"inbytes": 1, "outbytes": 0}, | |
30: {"inbytes": 1, "outbytes": 0}, | |
31: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
32: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
33: {"inbytes": 0, "outbytes": 0}, | |
}, | |
}, | |
'ptm': { | |
'nn::psm::IPsmSession': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 1, "outbytes": 0}, | |
3: {"inbytes": 1, "outbytes": 0}, | |
4: {"inbytes": 1, "outbytes": 0}, | |
}, | |
'nn::fan::detail::IController': { | |
0: {"inbytes": 4, "outbytes": 0}, | |
1: {"inbytes": 4, "outbytes": 4}, | |
2: {"inbytes": 0, "outbytes": 4}, | |
3: {"inbytes": 4, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 4}, | |
5: {"inbytes": 0, "outbytes": 0}, | |
6: {"inbytes": 0, "outbytes": 0}, | |
7: {"inbytes": 0, "outbytes": 4}, | |
}, | |
'nn::ts::server::IMeasurementServer': { | |
0: {"inbytes": 1, "outbytes": 8}, | |
1: {"inbytes": 1, "outbytes": 4}, | |
2: {"inbytes": 2, "outbytes": 0}, | |
3: {"inbytes": 1, "outbytes": 4}, | |
}, | |
'nn::fan::detail::IManager': { | |
0: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::fan::detail::IController']}, | |
}, | |
'nn::tc::IManager': { | |
0: {"inbytes": 4, "outbytes": 0}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [1]}, | |
2: {"inbytes": 4, "outbytes": 1}, | |
3: {"inbytes": 4, "outbytes": 0}, | |
4: {"inbytes": 4, "outbytes": 0}, | |
5: {"inbytes": 8, "outbytes": 0}, | |
6: {"inbytes": 0, "outbytes": 0}, | |
7: {"inbytes": 0, "outbytes": 0}, | |
8: {"inbytes": 0, "outbytes": 1}, | |
}, | |
'nn::psm::IPsmServer': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0, "outbytes": 4}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 1}, | |
5: {"inbytes": 0, "outbytes": 0}, | |
6: {"inbytes": 0, "outbytes": 0}, | |
7: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::psm::IPsmSession']}, | |
8: {"inbytes": 0, "outbytes": 0}, | |
9: {"inbytes": 0, "outbytes": 0}, | |
10: {"inbytes": 0, "outbytes": 0}, | |
11: {"inbytes": 0, "outbytes": 0}, | |
12: {"inbytes": 0, "outbytes": 4}, | |
13: {"inbytes": 0, "outbytes": 8}, | |
14: {"inbytes": 0, "outbytes": 1}, | |
15: {"inbytes": 0, "outbytes": 8}, | |
16: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
17: {"inbytes": 0, "outbytes": 0x40}, | |
18: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
}, | |
}, | |
'bsdsocket': { | |
'nn::eth::sf::IEthInterface': { | |
0: {"inbytes": 0, "outbytes": 0, "buffers": [5], "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
4: {"inbytes": 4, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 0xC}, | |
}, | |
'nn::eth::sf::IEthInterfaceGroup': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
4: {"inbytes": 0, "outbytes": 4}, | |
}, | |
'nn::nsd::detail::IManager': { | |
10: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
11: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
12: {"inbytes": 0, "outbytes": 0x10}, | |
13: {"inbytes": 4, "outbytes": 0}, | |
14: {"inbytes": 4, "outbytes": 0, "buffers": [5, 6]}, | |
20: {"inbytes": 0, "outbytes": 0, "buffers": [22, 21]}, | |
21: {"inbytes": 0, "outbytes": 4, "buffers": [22, 21]}, | |
30: {"inbytes": 0, "outbytes": 0, "buffers": [22, 21]}, | |
31: {"inbytes": 0, "outbytes": 4, "buffers": [22, 21]}, | |
40: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
41: {"inbytes": 0, "outbytes": 4, "buffers": [22]}, | |
42: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
43: {"inbytes": 0, "outbytes": 4, "buffers": [22]}, | |
50: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
60: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
61: {"inbytes": 0, "outbytes": 0, "buffers": [21]}, | |
62: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::bsdsocket::cfg::ServerInterface': { | |
0: {"inbytes": 0x2C, "outbytes": 0, "buffers": [5]}, | |
1: {"inbytes": 0x2C, "outbytes": 0, "buffers": [5], "outhandles": [1]}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
3: {"inbytes": 4, "outbytes": 0, "buffers": [5]}, | |
4: {"inbytes": 0, "outbytes": 0, "buffers": [5, 6]}, | |
5: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
6: {"inbytes": 4, "outbytes": 0, "buffers": [5]}, | |
7: {"inbytes": 4, "outbytes": 0}, | |
8: {"inbytes": 4, "outbytes": 0, "buffers": [6]}, | |
9: {"inbytes": 0, "outbytes": 0, "buffers": [6, 5]}, | |
10: {"inbytes": 0, "outbytes": 0}, | |
11: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
12: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::socket::resolver::IResolver': { | |
0: {"inbytes": 4, "outbytes": 0, "buffers": [5]}, | |
1: {"inbytes": 4, "outbytes": 0, "buffers": [6]}, | |
2: {"inbytes": 0x10, "outbytes": 0xC, "buffers": [5, 6], "pid": True}, | |
3: {"inbytes": 0x18, "outbytes": 0xC, "buffers": [5, 6], "pid": True}, | |
4: {"inbytes": 4, "outbytes": 0, "buffers": [6]}, | |
5: {"inbytes": 4, "outbytes": 0, "buffers": [6]}, | |
6: {"inbytes": 0x10, "outbytes": 0xC, "buffers": [5, 5, 5, 6], "pid": True}, | |
7: {"inbytes": 0x10, "outbytes": 8, "buffers": [5, 6, 6], "pid": True}, | |
8: {"inbytes": 8, "outbytes": 4, "pid": True}, | |
9: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
}, | |
'nn::socket::sf::IClient': { | |
0: {"inbytes": 0x30, "outbytes": 4, "inhandles": [1], "pid": True}, | |
1: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
2: {"inbytes": 0xC, "outbytes": 8}, | |
3: {"inbytes": 0xC, "outbytes": 8}, | |
4: {"inbytes": 4, "outbytes": 8, "buffers": [33]}, | |
5: {"inbytes": 0x20, "outbytes": 8, "buffers": [33, 33, 33, 34, 34, 34]}, | |
6: {"inbytes": 8, "outbytes": 8, "buffers": [33, 34]}, | |
7: {"inbytes": 0, "outbytes": 0xC, "buffers": [33, 34, 33]}, | |
8: {"inbytes": 8, "outbytes": 8, "buffers": [34]}, | |
9: {"inbytes": 8, "outbytes": 0xC, "buffers": [34, 34]}, | |
10: {"inbytes": 8, "outbytes": 8, "buffers": [33]}, | |
11: {"inbytes": 8, "outbytes": 8, "buffers": [33, 33]}, | |
12: {"inbytes": 4, "outbytes": 0xC, "buffers": [34]}, | |
13: {"inbytes": 4, "outbytes": 8, "buffers": [33]}, | |
14: {"inbytes": 4, "outbytes": 8, "buffers": [33]}, | |
15: {"inbytes": 4, "outbytes": 0xC, "buffers": [34]}, | |
16: {"inbytes": 4, "outbytes": 0xC, "buffers": [34]}, | |
17: {"inbytes": 0xC, "outbytes": 0xC, "buffers": [34]}, | |
18: {"inbytes": 8, "outbytes": 8}, | |
19: {"inbytes": 0xC, "outbytes": 8, "buffers": [33, 33, 33, 33, 34, 34, 34, 34]}, | |
20: {"inbytes": 0xC, "outbytes": 8}, | |
21: {"inbytes": 0xC, "outbytes": 8, "buffers": [33]}, | |
22: {"inbytes": 8, "outbytes": 8}, | |
23: {"inbytes": 4, "outbytes": 8}, | |
24: {"inbytes": 4, "outbytes": 8, "buffers": [33]}, | |
25: {"inbytes": 4, "outbytes": 8, "buffers": [34]}, | |
26: {"inbytes": 4, "outbytes": 8}, | |
27: {"inbytes": 0x10, "outbytes": 8}, | |
28: {"inbytes": 8, "outbytes": 8, "buffers": [34], "pid": True}, | |
29: {"inbytes": 0x20, "outbytes": 8, "buffers": [34]}, | |
30: {"inbytes": 0xC, "outbytes": 8, "buffers": [33, 33]}, | |
}, | |
}, | |
'hid': { | |
'nn::hid::IActiveVibrationDeviceList': { | |
0: {"inbytes": 4, "outbytes": 0}, | |
}, | |
'nn::ahid::hdr::ISession': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 4, "buffers": [6, 5]}, | |
2: {"inbytes": 4, "outbytes": 0, "buffers": [6]}, | |
3: {"inbytes": 0, "outbytes": 4, "buffers": [5]}, | |
4: {"inbytes": 4, "outbytes": 0}, | |
}, | |
'nn::hid::IAppletResource': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
}, | |
'nn::hid::IHidSystemServer': { | |
31: {"inbytes": 4, "outbytes": 0}, | |
101: {"inbytes": 8, "outbytes": 0, "outhandles": [1], "pid": True}, | |
111: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
121: {"inbytes": 8, "outbytes": 0, "outhandles": [1], "pid": True}, | |
131: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
141: {"inbytes": 8, "outbytes": 0, "outhandles": [1], "pid": True}, | |
151: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
210: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
211: {"inbytes": 0, "outbytes": 8, "buffers": [10]}, | |
212: {"inbytes": 4, "outbytes": 0, "outhandles": [1]}, | |
213: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
230: {"inbytes": 4, "outbytes": 0, "outhandles": [1]}, | |
231: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
301: {"inbytes": 4, "outbytes": 0}, | |
303: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
304: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
305: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
306: {"inbytes": 0, "outbytes": 4}, | |
307: {"inbytes": 4, "outbytes": 0x10}, | |
311: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
321: {"inbytes": 4, "outbytes": 8, "buffers": [10]}, | |
322: {"inbytes": 0x10, "outbytes": 8, "pid": True}, | |
323: {"inbytes": 0x10, "outbytes": 8, "pid": True}, | |
500: {"inbytes": 8, "outbytes": 0}, | |
501: {"inbytes": 0x10, "outbytes": 0}, | |
502: {"inbytes": 8, "outbytes": 0}, | |
503: {"inbytes": 0x10, "outbytes": 0}, | |
504: {"inbytes": 0x10, "outbytes": 0}, | |
505: {"inbytes": 0x10, "outbytes": 0}, | |
510: {"inbytes": 4, "outbytes": 0}, | |
511: {"inbytes": 0, "outbytes": 4}, | |
512: {"inbytes": 8, "outbytes": 0}, | |
513: {"inbytes": 0, "outbytes": 0}, | |
520: {"inbytes": 0, "outbytes": 0}, | |
521: {"inbytes": 0, "outbytes": 0}, | |
540: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
541: {"inbytes": 0, "outbytes": 8, "buffers": [10]}, | |
542: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
543: {"inbytes": 0, "outbytes": 8, "buffers": [10]}, | |
544: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
545: {"inbytes": 6, "outbytes": 0}, | |
546: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
547: {"inbytes": 0, "outbytes": 8}, | |
700: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
702: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
703: {"inbytes": 0, "outbytes": 8, "buffers": [10]}, | |
751: {"inbytes": 8, "outbytes": 0, "outhandles": [1], "pid": True}, | |
800: {"inbytes": 8, "outbytes": 8, "buffers": [10]}, | |
801: {"inbytes": 4, "outbytes": 1}, | |
802: {"inbytes": 4, "outbytes": 0}, | |
803: {"inbytes": 4, "outbytes": 0}, | |
804: {"inbytes": 4, "outbytes": 0}, | |
805: {"inbytes": 8, "outbytes": 6}, | |
806: {"inbytes": 8, "outbytes": 0}, | |
821: {"inbytes": 0x10, "outbytes": 0}, | |
822: {"inbytes": 0x10, "outbytes": 0}, | |
823: {"inbytes": 0x10, "outbytes": 0}, | |
824: {"inbytes": 0x10, "outbytes": 0}, | |
850: {"inbytes": 0, "outbytes": 1}, | |
851: {"inbytes": 1, "outbytes": 0}, | |
852: {"inbytes": 8, "outbytes": 1}, | |
900: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
901: {"inbytes": 4, "outbytes": 0}, | |
1000: {"inbytes": 0, "outbytes": 0}, | |
1001: {"inbytes": 8, "outbytes": 0x10}, | |
1002: {"inbytes": 8, "outbytes": 0x10}, | |
1003: {"inbytes": 8, "outbytes": 1}, | |
1004: {"inbytes": 8, "outbytes": 8}, | |
1005: {"inbytes": 8, "outbytes": 8}, | |
1006: {"inbytes": 0, "outbytes": 0}, | |
1007: {"inbytes": 8, "outbytes": 4}, | |
}, | |
'nn::xcd::detail::ISystemServer': { | |
0: {"inbytes": 8, "outbytes": 1}, | |
1: {"inbytes": 0x10, "outbytes": 0}, | |
2: {"inbytes": 8, "outbytes": 1}, | |
3: {"inbytes": 0x10, "outbytes": 0}, | |
4: {"inbytes": 8, "outbytes": 0x20}, | |
5: {"inbytes": 8, "outbytes": 0}, | |
10: {"inbytes": 8, "outbytes": 0, "outhandles": [1, 1]}, | |
11: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
12: {"inbytes": 0x10, "outbytes": 0}, | |
13: {"inbytes": 8, "outbytes": 0}, | |
14: {"inbytes": 0x30, "outbytes": 0}, | |
15: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
16: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
17: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
18: {"inbytes": 0x10, "outbytes": 0}, | |
19: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
20: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
101: {"inbytes": 0, "outbytes": 8}, | |
102: {"inbytes": 0, "outbytes": 8}, | |
}, | |
'nn::irsensor::IIrSensorSystemServer': { | |
500: {"inbytes": 8, "outbytes": 0}, | |
501: {"inbytes": 0x10, "outbytes": 0}, | |
502: {"inbytes": 8, "outbytes": 0}, | |
503: {"inbytes": 0x10, "outbytes": 0}, | |
}, | |
'nn::hid::IHidTemporaryServer': { | |
0: {"inbytes": 0x10, "outbytes": 0x18, "pid": True}, | |
}, | |
'nn::hid::IHidDebugServer': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0x18, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
10: {"inbytes": 0, "outbytes": 0}, | |
11: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
12: {"inbytes": 0, "outbytes": 0}, | |
20: {"inbytes": 0, "outbytes": 0}, | |
21: {"inbytes": 0x1C, "outbytes": 0}, | |
22: {"inbytes": 0, "outbytes": 0}, | |
30: {"inbytes": 0, "outbytes": 0}, | |
31: {"inbytes": 0x28, "outbytes": 0}, | |
32: {"inbytes": 0, "outbytes": 0}, | |
50: {"inbytes": 4, "outbytes": 0}, | |
51: {"inbytes": 0x20, "outbytes": 0}, | |
52: {"inbytes": 4, "outbytes": 0}, | |
60: {"inbytes": 4, "outbytes": 0}, | |
91: {"inbytes": 0, "outbytes": 0}, | |
110: {"inbytes": 0, "outbytes": 0}, | |
111: {"inbytes": 8, "outbytes": 0}, | |
112: {"inbytes": 0, "outbytes": 0}, | |
120: {"inbytes": 0, "outbytes": 0}, | |
121: {"inbytes": 8, "outbytes": 0}, | |
122: {"inbytes": 0, "outbytes": 0}, | |
123: {"inbytes": 0, "outbytes": 0}, | |
130: {"inbytes": 0, "outbytes": 0}, | |
131: {"inbytes": 8, "outbytes": 0}, | |
132: {"inbytes": 0, "outbytes": 0}, | |
133: {"inbytes": 0x18, "outbytes": 0, "pid": True}, | |
134: {"inbytes": 0x10, "outbytes": 8, "pid": True}, | |
135: {"inbytes": 0x18, "outbytes": 0, "pid": True}, | |
136: {"inbytes": 0x10, "outbytes": 8, "pid": True}, | |
140: {"inbytes": 0, "outbytes": 0}, | |
201: {"inbytes": 0, "outbytes": 0}, | |
202: {"inbytes": 0, "outbytes": 0}, | |
203: {"inbytes": 8, "outbytes": 0}, | |
204: {"inbytes": 0, "outbytes": 0x10}, | |
205: {"inbytes": 8, "outbytes": 0x10}, | |
206: {"inbytes": 8, "outbytes": 0x10}, | |
207: {"inbytes": 0, "outbytes": 0}, | |
208: {"inbytes": 8, "outbytes": 0}, | |
209: {"inbytes": 8, "outbytes": 0x10}, | |
221: {"inbytes": 0x10, "outbytes": 0}, | |
}, | |
'nn::ahid::IReadSession': { | |
0: {"inbytes": 8, "outbytes": 4, "buffers": [6]}, | |
}, | |
'nn::ahid::IServerSession': { | |
0: {"inbytes": 4, "outbytes": 0}, | |
1: {"inbytes": 4, "outbytes": 0}, | |
2: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::ahid::ICtrlSession']}, | |
3: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::ahid::IReadSession']}, | |
}, | |
'nn::ahid::ICtrlSession': { | |
0: {"inbytes": 1, "outbytes": 0, "buffers": [6]}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
2: {"inbytes": 2, "outbytes": 0, "buffers": [6]}, | |
3: {"inbytes": 2, "outbytes": 0, "buffers": [5]}, | |
4: {"inbytes": 1, "outbytes": 0, "buffers": [6]}, | |
5: {"inbytes": 2, "outbytes": 0}, | |
6: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
7: {"inbytes": 1, "outbytes": 0}, | |
8: {"inbytes": 6, "outbytes": 0, "buffers": [6]}, | |
9: {"inbytes": 6, "outbytes": 0, "buffers": [5]}, | |
10: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
11: {"inbytes": 0, "outbytes": 0}, | |
12: {"inbytes": 8, "outbytes": 4, "buffers": [5]}, | |
}, | |
'nn::irsensor::IIrSensorServer': { | |
302: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
303: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
304: {"inbytes": 8, "outbytes": 0, "outhandles": [1], "pid": True}, | |
305: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
306: {"inbytes": 0x30, "outbytes": 0, "pid": True}, | |
307: {"inbytes": 0x38, "outbytes": 0, "pid": True}, | |
308: {"inbytes": 0x30, "outbytes": 0, "inhandles": [1], "pid": True}, | |
309: {"inbytes": 0x10, "outbytes": 0x10, "buffers": [6], "pid": True}, | |
310: {"inbytes": 0x18, "outbytes": 0, "pid": True}, | |
311: {"inbytes": 4, "outbytes": 4}, | |
312: {"inbytes": 0x18, "outbytes": 0, "pid": True}, | |
313: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
314: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
}, | |
'nn::hid::IHidServer': { | |
0: {"inbytes": 8, "outbytes": 0, "outinterfaces": ['nn::hid::IAppletResource'], "pid": True}, | |
1: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
11: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
21: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
31: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
40: {"inbytes": 8, "outbytes": 0, "outhandles": [1]}, | |
41: {"inbytes": 8, "outbytes": 0}, | |
51: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
55: {"inbytes": 0, "outbytes": 8, "buffers": [10]}, | |
56: {"inbytes": 4, "outbytes": 0}, | |
58: {"inbytes": 4, "outbytes": 0, "outhandles": [1]}, | |
59: {"inbytes": 0, "outbytes": 8, "buffers": [10]}, | |
60: {"inbytes": 4, "outbytes": 0}, | |
61: {"inbytes": 4, "outbytes": 0}, | |
62: {"inbytes": 4, "outbytes": 0, "outhandles": [1]}, | |
63: {"inbytes": 4, "outbytes": 0}, | |
64: {"inbytes": 4, "outbytes": 0}, | |
65: {"inbytes": 4, "outbytes": 0, "outhandles": [1]}, | |
66: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
67: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
68: {"inbytes": 0x10, "outbytes": 1, "pid": True}, | |
69: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
70: {"inbytes": 0x18, "outbytes": 0, "pid": True}, | |
71: {"inbytes": 0x10, "outbytes": 8, "pid": True}, | |
72: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
73: {"inbytes": 0x18, "outbytes": 0, "pid": True}, | |
74: {"inbytes": 0x10, "outbytes": 8, "pid": True}, | |
75: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
76: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
77: {"inbytes": 0x10, "outbytes": 4, "pid": True}, | |
78: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
79: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
80: {"inbytes": 0x10, "outbytes": 4, "pid": True}, | |
81: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
82: {"inbytes": 0x10, "outbytes": 1, "pid": True}, | |
91: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
100: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
101: {"inbytes": 8, "outbytes": 4, "pid": True}, | |
102: {"inbytes": 8, "outbytes": 0, "buffers": [9], "pid": True}, | |
103: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
104: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
106: {"inbytes": 0x18, "outbytes": 0, "outhandles": [1], "pid": True}, | |
107: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
108: {"inbytes": 4, "outbytes": 8}, | |
120: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
121: {"inbytes": 8, "outbytes": 8, "pid": True}, | |
122: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
123: {"inbytes": 0x18, "outbytes": 0, "pid": True}, | |
124: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
125: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
126: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
127: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
128: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
129: {"inbytes": 8, "outbytes": 8, "pid": True}, | |
130: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
131: {"inbytes": 0x10, "outbytes": 1, "pid": True}, | |
132: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
200: {"inbytes": 4, "outbytes": 8}, | |
201: {"inbytes": 0x20, "outbytes": 0, "pid": True}, | |
202: {"inbytes": 0x10, "outbytes": 0x10, "pid": True}, | |
203: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::hid::IActiveVibrationDeviceList']}, | |
204: {"inbytes": 1, "outbytes": 0}, | |
205: {"inbytes": 0, "outbytes": 1}, | |
206: {"inbytes": 8, "outbytes": 0, "buffers": [9, 9]}, | |
300: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
301: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
302: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
400: {"inbytes": 0, "outbytes": 1}, | |
401: {"inbytes": 1, "outbytes": 0}, | |
402: {"inbytes": 4, "outbytes": 1}, | |
1000: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
1001: {"inbytes": 0, "outbytes": 8}, | |
}, | |
}, | |
'audio': { | |
'nn::audio::detail::IAudioInManagerForDebugger': { | |
0: {"inbytes": 8, "outbytes": 0}, | |
1: {"inbytes": 8, "outbytes": 0}, | |
}, | |
'nn::audio::detail::IAudioOut': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 8, "outbytes": 0, "buffers": [5]}, | |
4: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
5: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
6: {"inbytes": 8, "outbytes": 1}, | |
7: {"inbytes": 8, "outbytes": 0, "buffers": [33]}, | |
8: {"inbytes": 0, "outbytes": 4, "buffers": [34]}, | |
}, | |
'nn::audio::detail::IAudioDevice': { | |
0: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
1: {"inbytes": 4, "outbytes": 0, "buffers": [5]}, | |
2: {"inbytes": 0, "outbytes": 4, "buffers": [5]}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
4: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
5: {"inbytes": 0, "outbytes": 4}, | |
6: {"inbytes": 0, "outbytes": 4, "buffers": [34]}, | |
7: {"inbytes": 4, "outbytes": 0, "buffers": [33]}, | |
8: {"inbytes": 0, "outbytes": 4, "buffers": [33]}, | |
10: {"inbytes": 0, "outbytes": 0, "buffers": [34]}, | |
11: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
12: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
}, | |
'nn::audio::detail::IAudioRenderer': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0, "outbytes": 4}, | |
2: {"inbytes": 0, "outbytes": 4}, | |
3: {"inbytes": 0, "outbytes": 4}, | |
4: {"inbytes": 0, "outbytes": 0, "buffers": [6, 6, 5]}, | |
5: {"inbytes": 0, "outbytes": 0}, | |
6: {"inbytes": 0, "outbytes": 0}, | |
7: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
8: {"inbytes": 4, "outbytes": 0}, | |
9: {"inbytes": 0, "outbytes": 4}, | |
10: {"inbytes": 0, "outbytes": 0, "buffers": [34, 34, 33]}, | |
11: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::codec::detail::IHardwareOpusDecoderManager': { | |
0: {"inbytes": 0xC, "outbytes": 0, "inhandles": [1], "outinterfaces": ['nn::codec::detail::IHardwareOpusDecoder']}, | |
1: {"inbytes": 8, "outbytes": 4}, | |
2: {"inbytes": 4, "outbytes": 0, "buffers": [25], "inhandles": [1], "outinterfaces": ['nn::codec::detail::IHardwareOpusDecoder']}, | |
3: {"inbytes": 0, "outbytes": 4, "buffers": [25]}, | |
}, | |
'nn::audio::detail::IAudioInManagerForApplet': { | |
0: {"inbytes": 0x10, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0x10, "outbytes": 0, "outhandles": [1]}, | |
2: {"inbytes": 8, "outbytes": 4}, | |
3: {"inbytes": 0x18, "outbytes": 0}, | |
}, | |
'nn::audio::detail::IAudioRendererManager': { | |
0: {"inbytes": 0x48, "outbytes": 0, "inhandles": [1, 1], "outinterfaces": ['nn::audio::detail::IAudioRenderer'], "pid": True}, | |
1: {"inbytes": 0x34, "outbytes": 8}, | |
2: {"inbytes": 8, "outbytes": 0, "outinterfaces": ['nn::audio::detail::IAudioDevice']}, | |
3: {"inbytes": 0x50, "outbytes": 0, "inhandles": [1], "outinterfaces": ['nn::audio::detail::IAudioRenderer'], "pid": True}, | |
}, | |
'nn::audio::detail::IAudioOutManagerForApplet': { | |
0: {"inbytes": 0x10, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0x10, "outbytes": 0, "outhandles": [1]}, | |
2: {"inbytes": 8, "outbytes": 4}, | |
3: {"inbytes": 0x18, "outbytes": 0}, | |
}, | |
'nn::audio::detail::IFinalOutputRecorderManagerForApplet': { | |
0: {"inbytes": 0x10, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0x10, "outbytes": 0, "outhandles": [1]}, | |
}, | |
'nn::audio::detail::IFinalOutputRecorderManager': { | |
0: {"inbytes": 0x10, "outbytes": 0x10, "inhandles": [1], "outinterfaces": ['nn::audio::detail::IFinalOutputRecorder']}, | |
}, | |
'nn::audio::detail::IAudioOutManagerForDebugger': { | |
0: {"inbytes": 8, "outbytes": 0}, | |
1: {"inbytes": 8, "outbytes": 0}, | |
}, | |
'nn::audio::detail::IAudioOutManager': { | |
0: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
1: {"inbytes": 0x10, "outbytes": 0x10, "buffers": [5, 6], "inhandles": [1], "outinterfaces": ['nn::audio::detail::IAudioOut'], "pid": True}, | |
2: {"inbytes": 0, "outbytes": 4, "buffers": [34]}, | |
3: {"inbytes": 0x10, "outbytes": 0x10, "buffers": [33, 34], "inhandles": [1], "outinterfaces": ['nn::audio::detail::IAudioOut'], "pid": True}, | |
}, | |
'nn::audio::detail::IFinalOutputRecorder': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 8, "outbytes": 0, "buffers": [5]}, | |
4: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
5: {"inbytes": 0, "outbytes": 0x10, "buffers": [6]}, | |
6: {"inbytes": 8, "outbytes": 1}, | |
7: {"inbytes": 8, "outbytes": 8}, | |
8: {"inbytes": 8, "outbytes": 0, "buffers": [33]}, | |
9: {"inbytes": 0, "outbytes": 0x10, "buffers": [34]}, | |
}, | |
'nn::audio::detail::IAudioIn': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 8, "outbytes": 0, "buffers": [5]}, | |
4: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
5: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
6: {"inbytes": 8, "outbytes": 1}, | |
7: {"inbytes": 8, "outbytes": 0, "buffers": [5], "inhandles": [1]}, | |
8: {"inbytes": 8, "outbytes": 0, "buffers": [33]}, | |
9: {"inbytes": 0, "outbytes": 4, "buffers": [34]}, | |
10: {"inbytes": 8, "outbytes": 0, "buffers": [33], "inhandles": [1]}, | |
}, | |
'nn::audio::detail::IFinalOutputRecorderManagerForDebugger': { | |
0: {"inbytes": 8, "outbytes": 0}, | |
1: {"inbytes": 8, "outbytes": 0}, | |
}, | |
'nn::codec::detail::IHardwareOpusDecoder': { | |
0: {"inbytes": 0, "outbytes": 8, "buffers": [6, 5]}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
2: {"inbytes": 0, "outbytes": 8, "buffers": [6, 5]}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
}, | |
'nn::audio::detail::IAudioRendererManagerForApplet': { | |
0: {"inbytes": 0x10, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0x10, "outbytes": 0, "outhandles": [1]}, | |
2: {"inbytes": 8, "outbytes": 4}, | |
3: {"inbytes": 0x18, "outbytes": 0}, | |
4: {"inbytes": 8, "outbytes": 0}, | |
5: {"inbytes": 8, "outbytes": 0}, | |
}, | |
'nn::audio::detail::IAudioInManager': { | |
0: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
1: {"inbytes": 0x10, "outbytes": 0x10, "buffers": [5, 6], "inhandles": [1], "outinterfaces": ['nn::audio::detail::IAudioIn'], "pid": True}, | |
2: {"inbytes": 0, "outbytes": 4, "buffers": [34]}, | |
3: {"inbytes": 0x10, "outbytes": 0x10, "buffers": [33, 34], "inhandles": [1], "outinterfaces": ['nn::audio::detail::IAudioIn'], "pid": True}, | |
4: {"inbytes": 0, "outbytes": 4, "buffers": [34]}, | |
}, | |
'nn::audioctrl::detail::IAudioController': { | |
0: {"inbytes": 4, "outbytes": 4}, | |
1: {"inbytes": 8, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 4}, | |
3: {"inbytes": 0, "outbytes": 4}, | |
4: {"inbytes": 4, "outbytes": 1}, | |
5: {"inbytes": 8, "outbytes": 0}, | |
6: {"inbytes": 4, "outbytes": 1}, | |
7: {"inbytes": 0x18, "outbytes": 0}, | |
8: {"inbytes": 0, "outbytes": 4}, | |
9: {"inbytes": 4, "outbytes": 4}, | |
10: {"inbytes": 8, "outbytes": 0}, | |
11: {"inbytes": 4, "outbytes": 0}, | |
12: {"inbytes": 0, "outbytes": 4}, | |
13: {"inbytes": 4, "outbytes": 4}, | |
14: {"inbytes": 8, "outbytes": 0}, | |
15: {"inbytes": 4, "outbytes": 0}, | |
16: {"inbytes": 1, "outbytes": 0}, | |
17: {"inbytes": 4, "outbytes": 0}, | |
18: {"inbytes": 0, "outbytes": 4}, | |
19: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
20: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
21: {"inbytes": 0, "outbytes": 4}, | |
22: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::audio::detail::IAudioRendererManagerForDebugger': { | |
0: {"inbytes": 8, "outbytes": 0}, | |
1: {"inbytes": 8, "outbytes": 0}, | |
}, | |
}, | |
'LogManager.Prod': { | |
'nn::lm::ILogService': { | |
0: {"inbytes": 8, "outbytes": 0, "outinterfaces": ['nn::lm::ILogger'], "pid": True}, | |
}, | |
'nn::lm::ILogger': { | |
0: {"inbytes": 0, "outbytes": 0, "buffers": [33]}, | |
1: {"inbytes": 4, "outbytes": 0}, | |
}, | |
}, | |
'wlan': { | |
'nn::wlan::detail::ILocalGetFrame': { | |
0: {"inbytes": 4, "outbytes": 4, "buffers": [6]}, | |
}, | |
'nn::wlan::detail::IInfraManager': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 6}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [21]}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 0x7C, "outbytes": 0}, | |
6: {"inbytes": 0, "outbytes": 0}, | |
7: {"inbytes": 0, "outbytes": 0}, | |
8: {"inbytes": 4, "outbytes": 0, "outhandles": [1]}, | |
9: {"inbytes": 0, "outbytes": 0x3C}, | |
10: {"inbytes": 0, "outbytes": 4}, | |
11: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
12: {"inbytes": 0, "outbytes": 4}, | |
13: {"inbytes": 4, "outbytes": 0}, | |
14: {"inbytes": 0, "outbytes": 0, "buffers": [10]}, | |
15: {"inbytes": 0, "outbytes": 0}, | |
16: {"inbytes": 0, "outbytes": 0}, | |
17: {"inbytes": 8, "outbytes": 0, "buffers": [9]}, | |
18: {"inbytes": 0, "outbytes": 4}, | |
19: {"inbytes": 0x18, "outbytes": 0}, | |
20: {"inbytes": 0, "outbytes": 0}, | |
21: {"inbytes": 0, "outbytes": 4}, | |
22: {"inbytes": 4, "outbytes": 0}, | |
23: {"inbytes": 4, "outbytes": 0}, | |
24: {"inbytes": 0, "outbytes": 0x5C}, | |
25: {"inbytes": 2, "outbytes": 0}, | |
}, | |
'nn::wlan::detail::ISocketManager': { | |
0: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
1: {"inbytes": 4, "outbytes": 0}, | |
2: {"inbytes": 4, "outbytes": 4, "buffers": [9]}, | |
3: {"inbytes": 4, "outbytes": 0}, | |
4: {"inbytes": 8, "outbytes": 0}, | |
5: {"inbytes": 2, "outbytes": 4}, | |
6: {"inbytes": 0, "outbytes": 6}, | |
7: {"inbytes": 1, "outbytes": 0}, | |
8: {"inbytes": 0, "outbytes": 8}, | |
9: {"inbytes": 4, "outbytes": 0, "inhandles": [1, 1, 1, 1, 1]}, | |
10: {"inbytes": 0, "outbytes": 0}, | |
11: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::wlan::detail::ILocalManager': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 0}, | |
6: {"inbytes": 0, "outbytes": 6}, | |
7: {"inbytes": 0x80, "outbytes": 0}, | |
8: {"inbytes": 0, "outbytes": 0}, | |
9: {"inbytes": 0, "outbytes": 0, "buffers": [21]}, | |
10: {"inbytes": 0, "outbytes": 0}, | |
11: {"inbytes": 0x80, "outbytes": 0}, | |
12: {"inbytes": 0, "outbytes": 0}, | |
13: {"inbytes": 0x80, "outbytes": 0}, | |
14: {"inbytes": 0, "outbytes": 0}, | |
15: {"inbytes": 0x10, "outbytes": 0}, | |
16: {"inbytes": 4, "outbytes": 0}, | |
17: {"inbytes": 4, "outbytes": 0, "outhandles": [1]}, | |
18: {"inbytes": 0, "outbytes": 0x3C}, | |
19: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
20: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
21: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
22: {"inbytes": 0, "outbytes": 4}, | |
23: {"inbytes": 0, "outbytes": 0x50}, | |
24: {"inbytes": 4, "outbytes": 4, "buffers": [5]}, | |
25: {"inbytes": 4, "outbytes": 0}, | |
26: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
27: {"inbytes": 4, "outbytes": 0}, | |
28: {"inbytes": 4, "outbytes": 4, "buffers": [9]}, | |
29: {"inbytes": 4, "outbytes": 0}, | |
30: {"inbytes": 8, "outbytes": 0}, | |
31: {"inbytes": 2, "outbytes": 4}, | |
32: {"inbytes": 4, "outbytes": 0, "buffers": [25]}, | |
33: {"inbytes": 4, "outbytes": 0, "buffers": [25]}, | |
34: {"inbytes": 0, "outbytes": 0, "buffers": [25, 6]}, | |
35: {"inbytes": 0x10, "outbytes": 0, "buffers": [5]}, | |
36: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
37: {"inbytes": 0, "outbytes": 0}, | |
38: {"inbytes": 4, "outbytes": 4, "buffers": [9]}, | |
39: {"inbytes": 4, "outbytes": 0}, | |
40: {"inbytes": 8, "outbytes": 0}, | |
41: {"inbytes": 4, "outbytes": 4}, | |
42: {"inbytes": 4, "outbytes": 0}, | |
43: {"inbytes": 0, "outbytes": 4}, | |
44: {"inbytes": 4, "outbytes": 0}, | |
}, | |
'nn::wlan::detail::ISocketGetFrame': { | |
0: {"inbytes": 4, "outbytes": 4, "buffers": [6]}, | |
}, | |
'nn::wlan::detail::ILocalGetActionFrame': { | |
0: {"inbytes": 4, "outbytes": 0xC, "buffers": [6]}, | |
}, | |
}, | |
'ldn': { | |
'nn::ldn::detail::ISystemServiceCreator': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::ldn::detail::ISystemLocalCommunicationService']}, | |
}, | |
'nn::ldn::detail::IMonitorService': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [26]}, | |
2: {"inbytes": 0, "outbytes": 8}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 0, "outbytes": 0x20}, | |
5: {"inbytes": 0, "outbytes": 0x20}, | |
100: {"inbytes": 0, "outbytes": 0}, | |
101: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::ldn::detail::IUserLocalCommunicationService': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [26]}, | |
2: {"inbytes": 0, "outbytes": 8}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 0, "outbytes": 0x20}, | |
5: {"inbytes": 0, "outbytes": 0x20}, | |
100: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
101: {"inbytes": 0, "outbytes": 0, "buffers": [26, 10]}, | |
102: {"inbytes": 0x68, "outbytes": 2, "buffers": [34]}, | |
103: {"inbytes": 0x68, "outbytes": 2, "buffers": [34]}, | |
200: {"inbytes": 0, "outbytes": 0}, | |
201: {"inbytes": 0, "outbytes": 0}, | |
202: {"inbytes": 0x98, "outbytes": 0}, | |
203: {"inbytes": 0xB8, "outbytes": 0, "buffers": [9]}, | |
204: {"inbytes": 0, "outbytes": 0}, | |
205: {"inbytes": 4, "outbytes": 0}, | |
206: {"inbytes": 0, "outbytes": 0, "buffers": [33]}, | |
207: {"inbytes": 1, "outbytes": 0}, | |
208: {"inbytes": 6, "outbytes": 0}, | |
209: {"inbytes": 0, "outbytes": 0}, | |
300: {"inbytes": 0, "outbytes": 0}, | |
301: {"inbytes": 0, "outbytes": 0}, | |
302: {"inbytes": 0x7C, "outbytes": 0, "buffers": [25]}, | |
303: {"inbytes": 0xC0, "outbytes": 0}, | |
304: {"inbytes": 0, "outbytes": 0}, | |
400: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
401: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::ldn::detail::ISystemLocalCommunicationService': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [26]}, | |
2: {"inbytes": 0, "outbytes": 8}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 0, "outbytes": 0x20}, | |
5: {"inbytes": 0, "outbytes": 0x20}, | |
100: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
101: {"inbytes": 0, "outbytes": 0, "buffers": [26, 10]}, | |
102: {"inbytes": 0x68, "outbytes": 2, "buffers": [34]}, | |
103: {"inbytes": 0x68, "outbytes": 2, "buffers": [34]}, | |
200: {"inbytes": 0, "outbytes": 0}, | |
201: {"inbytes": 0, "outbytes": 0}, | |
202: {"inbytes": 0x98, "outbytes": 0}, | |
203: {"inbytes": 0xB8, "outbytes": 0, "buffers": [9]}, | |
204: {"inbytes": 0, "outbytes": 0}, | |
205: {"inbytes": 4, "outbytes": 0}, | |
206: {"inbytes": 0, "outbytes": 0, "buffers": [33]}, | |
207: {"inbytes": 1, "outbytes": 0}, | |
208: {"inbytes": 6, "outbytes": 0}, | |
209: {"inbytes": 0, "outbytes": 0}, | |
300: {"inbytes": 0, "outbytes": 0}, | |
301: {"inbytes": 0, "outbytes": 0}, | |
302: {"inbytes": 0x7C, "outbytes": 0, "buffers": [25]}, | |
303: {"inbytes": 0xC0, "outbytes": 0}, | |
304: {"inbytes": 0, "outbytes": 0}, | |
400: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
401: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::ldn::detail::IUserServiceCreator': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::ldn::detail::IUserLocalCommunicationService']}, | |
}, | |
'nn::ldn::detail::IMonitorServiceCreator': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::ldn::detail::IMonitorService']}, | |
}, | |
}, | |
'nvservices': { | |
'nv::gemcoredump::INvGemCoreDump': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0, "outbytes": 0x10}, | |
2: {"inbytes": 0, "outbytes": 4, "buffers": [34]}, | |
}, | |
'nv::gemcontrol::INvGemControl': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0, "outbytes": 4, "outhandles": [1]}, | |
2: {"inbytes": 1, "outbytes": 4}, | |
3: {"inbytes": 0x10, "outbytes": 4}, | |
4: {"inbytes": 0x10, "outbytes": 4}, | |
5: {"inbytes": 0, "outbytes": 0x10}, | |
6: {"inbytes": 0, "outbytes": 4}, | |
7: {"inbytes": 0, "outbytes": 0x10}, | |
}, | |
'nns::nvdrv::INvDrvDebugFSServices': { | |
0: {"inbytes": 0, "outbytes": 4, "inhandles": [1]}, | |
1: {"inbytes": 4, "outbytes": 0}, | |
2: {"inbytes": 4, "outbytes": 4, "buffers": [6]}, | |
3: {"inbytes": 4, "outbytes": 4, "buffers": [5, 6]}, | |
4: {"inbytes": 4, "outbytes": 4, "buffers": [5, 5]}, | |
}, | |
'nns::nvdrv::INvDrvServices': { | |
0: {"inbytes": 0, "outbytes": 8, "buffers": [5]}, | |
1: {"inbytes": 8, "outbytes": 4, "buffers": [33, 34]}, | |
2: {"inbytes": 4, "outbytes": 4}, | |
3: {"inbytes": 4, "outbytes": 4, "inhandles": [1, 1]}, | |
4: {"inbytes": 8, "outbytes": 4, "outhandles": [1]}, | |
5: {"inbytes": 8, "outbytes": 4, "inhandles": [1]}, | |
6: {"inbytes": 0, "outbytes": 0x24}, | |
7: {"inbytes": 8, "outbytes": 4}, | |
8: {"inbytes": 8, "outbytes": 4, "pid": True}, | |
9: {"inbytes": 0, "outbytes": 0}, | |
10: {"inbytes": 4, "outbytes": 4, "inhandles": [1]}, | |
11: {"inbytes": 8, "outbytes": 4, "buffers": [33, 34, 33]}, | |
12: {"inbytes": 8, "outbytes": 4, "buffers": [33, 34, 34]}, | |
13: {"inbytes": 8, "outbytes": 0}, | |
}, | |
}, | |
'pcv': { | |
'nn::timesrv::detail::service::IStaticService': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::timesrv::detail::service::ISystemClock']}, | |
1: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::timesrv::detail::service::ISystemClock']}, | |
2: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::timesrv::detail::service::ISteadyClock']}, | |
3: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::timesrv::detail::service::ITimeZoneService']}, | |
4: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::timesrv::detail::service::ISystemClock']}, | |
100: {"inbytes": 0, "outbytes": 1}, | |
101: {"inbytes": 1, "outbytes": 0}, | |
200: {"inbytes": 0, "outbytes": 1}, | |
}, | |
'nn::pcv::detail::IPcvService': { | |
0: {"inbytes": 8, "outbytes": 0}, | |
1: {"inbytes": 8, "outbytes": 0}, | |
2: {"inbytes": 8, "outbytes": 0}, | |
3: {"inbytes": 4, "outbytes": 4}, | |
4: {"inbytes": 4, "outbytes": 0xC}, | |
5: {"inbytes": 8, "outbytes": 8, "buffers": [10]}, | |
6: {"inbytes": 8, "outbytes": 0}, | |
7: {"inbytes": 8, "outbytes": 0}, | |
8: {"inbytes": 8, "outbytes": 0}, | |
9: {"inbytes": 4, "outbytes": 1}, | |
10: {"inbytes": 4, "outbytes": 0xC}, | |
11: {"inbytes": 8, "outbytes": 0}, | |
12: {"inbytes": 4, "outbytes": 4}, | |
13: {"inbytes": 4, "outbytes": 4, "buffers": [10]}, | |
14: {"inbytes": 4, "outbytes": 0}, | |
15: {"inbytes": 0, "outbytes": 0}, | |
16: {"inbytes": 0, "outbytes": 1}, | |
17: {"inbytes": 0, "outbytes": 0}, | |
18: {"inbytes": 8, "outbytes": 0}, | |
19: {"inbytes": 4, "outbytes": 0}, | |
20: {"inbytes": 8, "outbytes": 0}, | |
21: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
22: {"inbytes": 0, "outbytes": 4}, | |
23: {"inbytes": 8, "outbytes": 4, "buffers": [10, 10]}, | |
24: {"inbytes": 4, "outbytes": 4, "buffers": [10]}, | |
25: {"inbytes": 4, "outbytes": 4, "buffers": [10]}, | |
26: {"inbytes": 4, "outbytes": 4, "buffers": [10]}, | |
}, | |
'nn::bpc::IRtcManager': { | |
0: {"inbytes": 0, "outbytes": 8}, | |
1: {"inbytes": 8, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 1}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::timesrv::detail::service::ISteadyClock': { | |
0: {"inbytes": 0, "outbytes": 0x18}, | |
2: {"inbytes": 0, "outbytes": 8}, | |
3: {"inbytes": 8, "outbytes": 0}, | |
100: {"inbytes": 0, "outbytes": 8}, | |
101: {"inbytes": 0, "outbytes": 1}, | |
102: {"inbytes": 0, "outbytes": 4}, | |
200: {"inbytes": 0, "outbytes": 8}, | |
201: {"inbytes": 8, "outbytes": 0}, | |
}, | |
'nn::pcv::IArbitrationManager': { | |
0: {"inbytes": 4, "outbytes": 0}, | |
}, | |
'nn::bpc::IBoardPowerControlManager': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 4}, | |
3: {"inbytes": 0, "outbytes": 4}, | |
4: {"inbytes": 0, "outbytes": 1}, | |
5: {"inbytes": 4, "outbytes": 0, "outhandles": [1]}, | |
6: {"inbytes": 0, "outbytes": 4}, | |
7: {"inbytes": 4, "outbytes": 0, "outhandles": [1]}, | |
8: {"inbytes": 8, "outbytes": 4}, | |
9: {"inbytes": 4, "outbytes": 0}, | |
10: {"inbytes": 0, "outbytes": 0xC}, | |
11: {"inbytes": 0x10, "outbytes": 4}, | |
12: {"inbytes": 0, "outbytes": 4}, | |
13: {"inbytes": 4, "outbytes": 0}, | |
}, | |
'nn::pcv::IImmediateManager': { | |
0: {"inbytes": 8, "outbytes": 0}, | |
}, | |
'nn::timesrv::detail::service::ISystemClock': { | |
0: {"inbytes": 0, "outbytes": 8}, | |
1: {"inbytes": 8, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0x20}, | |
3: {"inbytes": 0x20, "outbytes": 0}, | |
}, | |
'nn::timesrv::detail::service::ITimeZoneService': { | |
0: {"inbytes": 0, "outbytes": 0x24}, | |
1: {"inbytes": 0x24, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 4}, | |
3: {"inbytes": 4, "outbytes": 4, "buffers": [6]}, | |
4: {"inbytes": 0x24, "outbytes": 0, "buffers": [22]}, | |
5: {"inbytes": 0, "outbytes": 0x10}, | |
100: {"inbytes": 8, "outbytes": 0x20, "buffers": [21]}, | |
101: {"inbytes": 8, "outbytes": 0x20}, | |
201: {"inbytes": 8, "outbytes": 4, "buffers": [21, 10]}, | |
202: {"inbytes": 8, "outbytes": 4, "buffers": [10]}, | |
}, | |
}, | |
'ppc': { | |
'nn::fgm::sf::IDebugger': { | |
0: {"inbytes": 8, "outbytes": 0, "inhandles": [1], "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 0xC, "buffers": [6]}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::apm::IManager': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::apm::ISession']}, | |
1: {"inbytes": 0, "outbytes": 4}, | |
}, | |
'nn::fgm::sf::IRequest': { | |
0: {"inbytes": 0x10, "outbytes": 0, "outhandles": [1], "pid": True}, | |
1: {"inbytes": 8, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 4}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::apm::ISystemManager': { | |
0: {"inbytes": 4, "outbytes": 0}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [1]}, | |
2: {"inbytes": 0, "outbytes": 0x28}, | |
3: {"inbytes": 0, "outbytes": 0x28}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::apm::IManagerPrivileged': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::apm::ISession']}, | |
}, | |
'nn::apm::ISession': { | |
0: {"inbytes": 8, "outbytes": 0}, | |
1: {"inbytes": 4, "outbytes": 4}, | |
}, | |
'nn::fgm::sf::ISession': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::fgm::sf::IRequest']}, | |
}, | |
}, | |
'nvnflinger': { | |
'nns::hosbinder::IHOSBinderDriver': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 0, "outbytes": 2}, | |
4: {"inbytes": 4, "outbytes": 0, "outhandles": [2]}, | |
}, | |
}, | |
'pcie.withoutHb': { | |
'nn::pcie::detail::IManager': { | |
0: {"inbytes": 0x18, "outbytes": 0, "inhandles": [1], "outhandles": [1], "outinterfaces": ['nn::pcie::detail::ISession']}, | |
1: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
}, | |
'nn::pcie::detail::ISession': { | |
0: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
1: {"inbytes": 4, "outbytes": 0, "outhandles": [1]}, | |
2: {"inbytes": 4, "outbytes": 0}, | |
3: {"inbytes": 4, "outbytes": 0, "buffers": [6]}, | |
4: {"inbytes": 8, "outbytes": 0x18}, | |
5: {"inbytes": 0xC, "outbytes": 4}, | |
6: {"inbytes": 0x10, "outbytes": 0}, | |
7: {"inbytes": 0x10, "outbytes": 0, "buffers": [6]}, | |
8: {"inbytes": 0x10, "outbytes": 0, "buffers": [5]}, | |
9: {"inbytes": 8, "outbytes": 4}, | |
10: {"inbytes": 8, "outbytes": 4}, | |
11: {"inbytes": 0x18, "outbytes": 8}, | |
12: {"inbytes": 0x10, "outbytes": 0}, | |
13: {"inbytes": 0x10, "outbytes": 0}, | |
14: {"inbytes": 0x10, "outbytes": 8}, | |
15: {"inbytes": 4, "outbytes": 0x10}, | |
16: {"inbytes": 8, "outbytes": 0}, | |
17: {"inbytes": 8, "outbytes": 0, "outhandles": [1]}, | |
18: {"inbytes": 4, "outbytes": 0}, | |
19: {"inbytes": 0xC, "outbytes": 0}, | |
20: {"inbytes": 8, "outbytes": 0}, | |
21: {"inbytes": 8, "outbytes": 0}, | |
}, | |
}, | |
'account': { | |
'nn::account::detail::IAsyncContext': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 1}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::account::detail::INotifier': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
}, | |
'nn::account::baas::IManagerForSystemService': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 8}, | |
2: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
3: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
100: {"inbytes": 8, "outbytes": 0, "buffers": [25], "pid": True}, | |
120: {"inbytes": 0, "outbytes": 8}, | |
130: {"inbytes": 0, "outbytes": 8, "buffers": [26, 6]}, | |
131: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
132: {"inbytes": 4, "outbytes": 1, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
150: {"inbytes": 4, "outbytes": 0, "buffers": [25, 25], "inhandles": [1], "outinterfaces": ['nn::account::nas::IAuthorizationRequest']}, | |
}, | |
'nn::account::baas::IGuestLoginRequest': { | |
0: {"inbytes": 0, "outbytes": 0x10}, | |
12: {"inbytes": 0, "outbytes": 8}, | |
13: {"inbytes": 0, "outbytes": 8}, | |
14: {"inbytes": 0, "outbytes": 0, "buffers": [10]}, | |
15: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
21: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
}, | |
'nn::account::nas::IAuthorizationRequest': { | |
0: {"inbytes": 0, "outbytes": 0x10}, | |
10: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
19: {"inbytes": 0, "outbytes": 1}, | |
20: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
21: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
22: {"inbytes": 0, "outbytes": 0, "buffers": [26]}, | |
}, | |
'nn::account::baas::IAdministrator': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 8}, | |
2: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
3: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
100: {"inbytes": 8, "outbytes": 0, "buffers": [25], "pid": True}, | |
120: {"inbytes": 0, "outbytes": 8}, | |
130: {"inbytes": 0, "outbytes": 8, "buffers": [26, 6]}, | |
131: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
132: {"inbytes": 4, "outbytes": 1, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
150: {"inbytes": 4, "outbytes": 0, "buffers": [25, 25], "inhandles": [1], "outinterfaces": ['nn::account::nas::IAuthorizationRequest']}, | |
200: {"inbytes": 0, "outbytes": 1}, | |
201: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
202: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
203: {"inbytes": 0, "outbytes": 0}, | |
220: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
221: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
222: {"inbytes": 4, "outbytes": 1, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
250: {"inbytes": 0, "outbytes": 1}, | |
251: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::nas::IOAuthProcedureForNintendoAccountLinkage']}, | |
252: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::account::nas::IOAuthProcedureForNintendoAccountLinkage']}, | |
255: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::http::IOAuthProcedure']}, | |
256: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::account::http::IOAuthProcedure']}, | |
260: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::http::IOAuthProcedure']}, | |
261: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::account::http::IOAuthProcedure']}, | |
280: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::account::http::IOAuthProcedure']}, | |
997: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
998: {"inbytes": 4, "outbytes": 0}, | |
}, | |
'nn::account::profile::IProfileEditor': { | |
0: {"inbytes": 0, "outbytes": 0x38, "buffers": [26]}, | |
1: {"inbytes": 0, "outbytes": 0x38}, | |
10: {"inbytes": 0, "outbytes": 4}, | |
11: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
100: {"inbytes": 0x38, "outbytes": 0, "buffers": [25]}, | |
101: {"inbytes": 0x38, "outbytes": 0, "buffers": [25, 5]}, | |
}, | |
'nn::account::IAccountServiceForSystemService': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0x10, "outbytes": 1}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [10]}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [10]}, | |
4: {"inbytes": 0, "outbytes": 0x10}, | |
5: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::account::profile::IProfile']}, | |
6: {"inbytes": 0x10, "outbytes": 0x10}, | |
50: {"inbytes": 8, "outbytes": 1, "pid": True}, | |
51: {"inbytes": 1, "outbytes": 0x10}, | |
100: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::INotifier']}, | |
101: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::INotifier']}, | |
102: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::account::baas::IManagerForSystemService']}, | |
103: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::INotifier']}, | |
104: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::INotifier']}, | |
110: {"inbytes": 0x18, "outbytes": 0, "buffers": [5]}, | |
111: {"inbytes": 0x18, "outbytes": 0}, | |
112: {"inbytes": 0x18, "outbytes": 4, "buffers": [6]}, | |
190: {"inbytes": 0x10, "outbytes": 0x10}, | |
997: {"inbytes": 0x10, "outbytes": 0}, | |
998: {"inbytes": 0x10, "outbytes": 0}, | |
999: {"inbytes": 0x10, "outbytes": 0}, | |
}, | |
'nn::account::detail::ISessionObject': { | |
999: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::account::profile::IProfile': { | |
0: {"inbytes": 0, "outbytes": 0x38, "buffers": [26]}, | |
1: {"inbytes": 0, "outbytes": 0x38}, | |
10: {"inbytes": 0, "outbytes": 4}, | |
11: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
}, | |
'nn::account::IAccountServiceForApplication': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0x10, "outbytes": 1}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [10]}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [10]}, | |
4: {"inbytes": 0, "outbytes": 0x10}, | |
5: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::account::profile::IProfile']}, | |
6: {"inbytes": 0x10, "outbytes": 0x10}, | |
50: {"inbytes": 8, "outbytes": 1, "pid": True}, | |
51: {"inbytes": 1, "outbytes": 0x10}, | |
100: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
101: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::account::baas::IManagerForApplication']}, | |
102: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
110: {"inbytes": 0x10, "outbytes": 0, "buffers": [5]}, | |
111: {"inbytes": 0x10, "outbytes": 0}, | |
120: {"inbytes": 4, "outbytes": 0, "inhandles": [1], "outinterfaces": ['nn::account::baas::IGuestLoginRequest']}, | |
}, | |
'nn::account::nas::IOAuthProcedureForExternalNsa': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [26, 26]}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [9]}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [9], "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
10: {"inbytes": 0, "outbytes": 0x10}, | |
100: {"inbytes": 0, "outbytes": 8}, | |
101: {"inbytes": 0, "outbytes": 8}, | |
102: {"inbytes": 0, "outbytes": 0, "buffers": [10]}, | |
103: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
}, | |
'nn::account::IBaasAccessTokenAccessor': { | |
0: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
1: {"inbytes": 0x10, "outbytes": 4, "buffers": [6]}, | |
2: {"inbytes": 0x10, "outbytes": 8}, | |
50: {"inbytes": 0x38, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
51: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
}, | |
'nn::account::baas::IFloatingRegistrationRequest': { | |
0: {"inbytes": 0, "outbytes": 0x10}, | |
12: {"inbytes": 0, "outbytes": 8}, | |
13: {"inbytes": 0, "outbytes": 8}, | |
14: {"inbytes": 0, "outbytes": 0, "buffers": [10]}, | |
15: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
21: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
100: {"inbytes": 0, "outbytes": 0x10, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
101: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
110: {"inbytes": 8, "outbytes": 0, "buffers": [25], "pid": True}, | |
111: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
}, | |
'nn::account::http::IOAuthProcedure': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [26, 26]}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [9]}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [9], "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
10: {"inbytes": 0, "outbytes": 0x10}, | |
}, | |
'nn::account::IAccountServiceForAdministrator': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0x10, "outbytes": 1}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [10]}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [10]}, | |
4: {"inbytes": 0, "outbytes": 0x10}, | |
5: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::account::profile::IProfile']}, | |
6: {"inbytes": 0x10, "outbytes": 0x10}, | |
50: {"inbytes": 8, "outbytes": 1, "pid": True}, | |
51: {"inbytes": 1, "outbytes": 0x10}, | |
100: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::INotifier']}, | |
101: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::INotifier']}, | |
102: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::account::baas::IManagerForSystemService']}, | |
103: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::INotifier']}, | |
104: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::INotifier']}, | |
110: {"inbytes": 0x18, "outbytes": 0, "buffers": [5]}, | |
111: {"inbytes": 0x18, "outbytes": 0}, | |
112: {"inbytes": 0x18, "outbytes": 4, "buffers": [6]}, | |
190: {"inbytes": 0x10, "outbytes": 0x10}, | |
200: {"inbytes": 0, "outbytes": 0x10}, | |
201: {"inbytes": 0x10, "outbytes": 0}, | |
202: {"inbytes": 0x10, "outbytes": 0}, | |
203: {"inbytes": 0x10, "outbytes": 0}, | |
204: {"inbytes": 0x18, "outbytes": 0}, | |
205: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::account::profile::IProfileEditor']}, | |
206: {"inbytes": 0x10, "outbytes": 0}, | |
210: {"inbytes": 4, "outbytes": 0, "inhandles": [1], "outinterfaces": ['nn::account::baas::IFloatingRegistrationRequest']}, | |
230: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
250: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::account::baas::IAdministrator']}, | |
290: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::account::nas::IOAuthProcedureForExternalNsa']}, | |
291: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::account::nas::IOAuthProcedureForExternalNsa']}, | |
299: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::ISessionObject']}, | |
997: {"inbytes": 0x10, "outbytes": 0}, | |
998: {"inbytes": 0x10, "outbytes": 0}, | |
999: {"inbytes": 0x10, "outbytes": 0}, | |
}, | |
'nn::account::baas::IManagerForApplication': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 8}, | |
2: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
3: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
130: {"inbytes": 0, "outbytes": 8, "buffers": [26, 6]}, | |
150: {"inbytes": 4, "outbytes": 0, "buffers": [25], "inhandles": [1], "outinterfaces": ['nn::account::nas::IAuthorizationRequest']}, | |
}, | |
'nn::account::nas::IOAuthProcedureForNintendoAccountLinkage': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [26, 26]}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [9]}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [9], "outinterfaces": ['nn::account::detail::IAsyncContext']}, | |
10: {"inbytes": 0, "outbytes": 0x10}, | |
100: {"inbytes": 4, "outbytes": 0, "buffers": [26, 26]}, | |
101: {"inbytes": 0, "outbytes": 1}, | |
199: {"inbytes": 0, "outbytes": 0, "buffers": [26]}, | |
}, | |
}, | |
'ns': { | |
'nn::ns::detail::IDevelopInterface': { | |
0: {"inbytes": 0x18, "outbytes": 8}, | |
1: {"inbytes": 8, "outbytes": 0}, | |
2: {"inbytes": 8, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
5: {"inbytes": 0, "outbytes": 0x10}, | |
6: {"inbytes": 0, "outbytes": 0}, | |
7: {"inbytes": 0, "outbytes": 0x10, "buffers": [5]}, | |
8: {"inbytes": 0x10, "outbytes": 8}, | |
9: {"inbytes": 0x10, "outbytes": 8}, | |
}, | |
'nn::ovln::IReceiver': { | |
0: {"inbytes": 0x10, "outbytes": 0}, | |
1: {"inbytes": 0x10, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
3: {"inbytes": 0, "outbytes": 0x80}, | |
4: {"inbytes": 0, "outbytes": 0x88}, | |
}, | |
'nn::ns::detail::IProgressAsyncResult': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::ns::detail::IFactoryResetInterface': { | |
100: {"inbytes": 0, "outbytes": 0}, | |
101: {"inbytes": 0, "outbytes": 0}, | |
102: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::ns::detail::IDocumentInterface': { | |
21: {"inbytes": 0x10, "outbytes": 0, "buffers": [22]}, | |
23: {"inbytes": 0x10, "outbytes": 0}, | |
}, | |
'nn::ns::detail::IVulnerabilityManagerInterface': { | |
1200: {"inbytes": 0, "outbytes": 1}, | |
}, | |
'nn::ns::detail::IServiceGetterInterface': { | |
7994: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::ns::detail::IFactoryResetInterface']}, | |
7995: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::ns::detail::IAccountProxyInterface']}, | |
7996: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::ns::detail::IApplicationManagerInterface']}, | |
7997: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::ns::detail::IDownloadTaskInterface']}, | |
7998: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::ns::detail::IContentManagementInterface']}, | |
7999: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::ns::detail::IDocumentInterface']}, | |
}, | |
'nn::ns::detail::IAsyncValue': { | |
0: {"inbytes": 0, "outbytes": 8}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::ns::detail::IDownloadTaskInterface': { | |
701: {"inbytes": 0, "outbytes": 0}, | |
702: {"inbytes": 0, "outbytes": 0}, | |
703: {"inbytes": 0, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::ns::detail::IAsyncResult']}, | |
704: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
705: {"inbytes": 0, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::ns::detail::IAsyncValue']}, | |
}, | |
'nn::ovln::ISenderService': { | |
0: {"inbytes": 0x18, "outbytes": 0, "outinterfaces": ['nn::ovln::ISender']}, | |
}, | |
'nn::ns::detail::IAsyncResult': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::ns::detail::IApplicationManagerInterface': { | |
0: {"inbytes": 4, "outbytes": 4, "buffers": [6]}, | |
1: {"inbytes": 0, "outbytes": 8}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [6, 5]}, | |
4: {"inbytes": 8, "outbytes": 0}, | |
5: {"inbytes": 8, "outbytes": 0}, | |
6: {"inbytes": 0, "outbytes": 1}, | |
7: {"inbytes": 0, "outbytes": 0}, | |
8: {"inbytes": 0x10, "outbytes": 1}, | |
9: {"inbytes": 0x10, "outbytes": 0}, | |
11: {"inbytes": 8, "outbytes": 0x80}, | |
16: {"inbytes": 0x10, "outbytes": 0, "buffers": [5]}, | |
17: {"inbytes": 0x10, "outbytes": 4, "buffers": [6]}, | |
19: {"inbytes": 8, "outbytes": 8}, | |
21: {"inbytes": 0x10, "outbytes": 0, "buffers": [22]}, | |
22: {"inbytes": 8, "outbytes": 0}, | |
23: {"inbytes": 0x10, "outbytes": 0}, | |
26: {"inbytes": 0x10, "outbytes": 0}, | |
27: {"inbytes": 8, "outbytes": 0}, | |
30: {"inbytes": 8, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::ns::detail::IAsyncValue']}, | |
31: {"inbytes": 0x10, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::ns::detail::IAsyncResult']}, | |
32: {"inbytes": 8, "outbytes": 0}, | |
33: {"inbytes": 8, "outbytes": 0}, | |
35: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
36: {"inbytes": 0x10, "outbytes": 0}, | |
37: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
38: {"inbytes": 8, "outbytes": 0}, | |
39: {"inbytes": 8, "outbytes": 0}, | |
40: {"inbytes": 8, "outbytes": 8, "buffers": [21, 6]}, | |
41: {"inbytes": 8, "outbytes": 0x10}, | |
42: {"inbytes": 0, "outbytes": 0}, | |
43: {"inbytes": 0, "outbytes": 0}, | |
44: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
45: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
46: {"inbytes": 0, "outbytes": 0x10}, | |
47: {"inbytes": 1, "outbytes": 8}, | |
48: {"inbytes": 1, "outbytes": 8}, | |
49: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
52: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
53: {"inbytes": 8, "outbytes": 0}, | |
54: {"inbytes": 8, "outbytes": 0}, | |
55: {"inbytes": 4, "outbytes": 1}, | |
56: {"inbytes": 0x10, "outbytes": 0}, | |
57: {"inbytes": 8, "outbytes": 0}, | |
58: {"inbytes": 0, "outbytes": 0}, | |
59: {"inbytes": 1, "outbytes": 8}, | |
60: {"inbytes": 8, "outbytes": 1}, | |
61: {"inbytes": 0, "outbytes": 0x10}, | |
62: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::ns::detail::IGameCardStopper']}, | |
63: {"inbytes": 8, "outbytes": 1}, | |
64: {"inbytes": 8, "outbytes": 0}, | |
65: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::ns::detail::IRequestServerStopper']}, | |
66: {"inbytes": 0, "outbytes": 0x10}, | |
67: {"inbytes": 8, "outbytes": 0}, | |
68: {"inbytes": 8, "outbytes": 0}, | |
69: {"inbytes": 8, "outbytes": 0x10}, | |
70: {"inbytes": 0, "outbytes": 0}, | |
71: {"inbytes": 1, "outbytes": 0x10}, | |
80: {"inbytes": 0x10, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::ns::detail::IAsyncResult']}, | |
81: {"inbytes": 8, "outbytes": 0, "buffers": [5], "outhandles": [1], "outinterfaces": ['nn::ns::detail::IAsyncResult']}, | |
82: {"inbytes": 0x10, "outbytes": 0}, | |
100: {"inbytes": 0, "outbytes": 0}, | |
101: {"inbytes": 0, "outbytes": 0}, | |
102: {"inbytes": 0, "outbytes": 0}, | |
200: {"inbytes": 0x10, "outbytes": 0x10}, | |
201: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::ns::detail::IProgressMonitorForDeleteUserSaveDataAll']}, | |
210: {"inbytes": 0x18, "outbytes": 0}, | |
220: {"inbytes": 0x10, "outbytes": 0}, | |
300: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
301: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
302: {"inbytes": 8, "outbytes": 8}, | |
303: {"inbytes": 8, "outbytes": 0}, | |
304: {"inbytes": 0, "outbytes": 8}, | |
305: {"inbytes": 8, "outbytes": 0}, | |
306: {"inbytes": 0, "outbytes": 8}, | |
307: {"inbytes": 8, "outbytes": 0}, | |
400: {"inbytes": 0x10, "outbytes": 4, "buffers": [6]}, | |
401: {"inbytes": 0, "outbytes": 0}, | |
402: {"inbytes": 8, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::ns::detail::IAsyncResult']}, | |
403: {"inbytes": 0, "outbytes": 4}, | |
404: {"inbytes": 8, "outbytes": 0}, | |
405: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
502: {"inbytes": 8, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::ns::detail::IAsyncResult']}, | |
503: {"inbytes": 0x18, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::ns::detail::IAsyncValue']}, | |
504: {"inbytes": 0x20, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::ns::detail::IAsyncResult']}, | |
505: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
506: {"inbytes": 0, "outbytes": 1}, | |
507: {"inbytes": 0, "outbytes": 0}, | |
508: {"inbytes": 0, "outbytes": 0}, | |
600: {"inbytes": 8, "outbytes": 4}, | |
601: {"inbytes": 0x10, "outbytes": 4, "buffers": [6]}, | |
602: {"inbytes": 0x10, "outbytes": 4, "buffers": [6]}, | |
603: {"inbytes": 0x10, "outbytes": 0x10}, | |
604: {"inbytes": 0x10, "outbytes": 0}, | |
605: {"inbytes": 0x10, "outbytes": 4, "buffers": [6]}, | |
606: {"inbytes": 0x10, "outbytes": 1}, | |
700: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
701: {"inbytes": 0, "outbytes": 0}, | |
702: {"inbytes": 0, "outbytes": 0}, | |
703: {"inbytes": 0, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::ns::detail::IAsyncResult']}, | |
704: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
705: {"inbytes": 0, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::ns::detail::IAsyncValue']}, | |
800: {"inbytes": 0, "outbytes": 0}, | |
801: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
802: {"inbytes": 0, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::ns::detail::IAsyncValue']}, | |
900: {"inbytes": 8, "outbytes": 0x18}, | |
901: {"inbytes": 8, "outbytes": 0, "buffers": [22]}, | |
902: {"inbytes": 8, "outbytes": 0}, | |
903: {"inbytes": 8, "outbytes": 0}, | |
904: {"inbytes": 8, "outbytes": 0}, | |
905: {"inbytes": 0x10, "outbytes": 0}, | |
906: {"inbytes": 8, "outbytes": 8}, | |
907: {"inbytes": 8, "outbytes": 0}, | |
908: {"inbytes": 0x10, "outbytes": 4, "buffers": [6]}, | |
909: {"inbytes": 8, "outbytes": 0}, | |
1000: {"inbytes": 0x10, "outbytes": 0, "inhandles": [1], "outhandles": [1], "outinterfaces": ['nn::ns::detail::IProgressAsyncResult']}, | |
1001: {"inbytes": 0x10, "outbytes": 0}, | |
1002: {"inbytes": 8, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::ns::detail::IProgressAsyncResult']}, | |
1200: {"inbytes": 0, "outbytes": 1}, | |
1300: {"inbytes": 8, "outbytes": 1}, | |
1301: {"inbytes": 0x10, "outbytes": 0}, | |
1302: {"inbytes": 8, "outbytes": 0}, | |
1303: {"inbytes": 8, "outbytes": 0}, | |
1304: {"inbytes": 0x10, "outbytes": 0}, | |
1400: {"inbytes": 0, "outbytes": 0}, | |
1500: {"inbytes": 0, "outbytes": 0}, | |
1501: {"inbytes": 0, "outbytes": 1}, | |
1502: {"inbytes": 0, "outbytes": 0}, | |
1504: {"inbytes": 0, "outbytes": 0}, | |
1505: {"inbytes": 0, "outbytes": 0}, | |
1600: {"inbytes": 0, "outbytes": 0x20}, | |
1601: {"inbytes": 0, "outbytes": 0}, | |
1700: {"inbytes": 0x10, "outbytes": 4, "buffers": [6]}, | |
1701: {"inbytes": 0, "outbytes": 0, "buffers": [6, 5]}, | |
1702: {"inbytes": 8, "outbytes": 1}, | |
1800: {"inbytes": 0, "outbytes": 1}, | |
1801: {"inbytes": 0, "outbytes": 8}, | |
1802: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
1803: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
1900: {"inbytes": 4, "outbytes": 1}, | |
}, | |
'nn::ns::detail::ISystemUpdateInterface': { | |
0: {"inbytes": 0, "outbytes": 1}, | |
1: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::ns::detail::ISystemUpdateControl']}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 0x10, "outbytes": 0}, | |
6: {"inbytes": 0, "outbytes": 0}, | |
9: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
10: {"inbytes": 0, "outbytes": 0}, | |
11: {"inbytes": 0, "outbytes": 0}, | |
12: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
13: {"inbytes": 0, "outbytes": 0}, | |
14: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
15: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::ns::detail::IRequestServerStopper': { | |
}, | |
'nn::ovln::IReceiverService': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::ovln::IReceiver']}, | |
}, | |
'nn::ns::detail::IProgressMonitorForDeleteUserSaveDataAll': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 1}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
10: {"inbytes": 0, "outbytes": 0x28}, | |
}, | |
'nn::ns::detail::IGameCardStopper': { | |
}, | |
'nn::ns::detail::ISystemUpdateControl': { | |
0: {"inbytes": 0, "outbytes": 1}, | |
1: {"inbytes": 0, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::ns::detail::IAsyncValue']}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::ns::detail::IAsyncResult']}, | |
3: {"inbytes": 0, "outbytes": 0x10}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::ns::detail::IAsyncResult']}, | |
6: {"inbytes": 0, "outbytes": 0x10}, | |
7: {"inbytes": 0, "outbytes": 1}, | |
8: {"inbytes": 0, "outbytes": 0}, | |
9: {"inbytes": 0, "outbytes": 8, "buffers": [21]}, | |
10: {"inbytes": 0, "outbytes": 8, "buffers": [21, 6]}, | |
11: {"inbytes": 8, "outbytes": 0, "inhandles": [1]}, | |
12: {"inbytes": 0, "outbytes": 8, "buffers": [21]}, | |
13: {"inbytes": 0, "outbytes": 8, "buffers": [21, 6]}, | |
}, | |
'nn::ovln::ISender': { | |
0: {"inbytes": 0x88, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 4}, | |
}, | |
'nn::ns::detail::IAccountProxyInterface': { | |
0: {"inbytes": 0x21, "outbytes": 0, "buffers": [5]}, | |
}, | |
'nn::ns::detail::IContentManagementInterface': { | |
11: {"inbytes": 8, "outbytes": 0x80}, | |
43: {"inbytes": 0, "outbytes": 0}, | |
47: {"inbytes": 1, "outbytes": 8}, | |
48: {"inbytes": 1, "outbytes": 8}, | |
600: {"inbytes": 8, "outbytes": 4}, | |
601: {"inbytes": 0x10, "outbytes": 4, "buffers": [6]}, | |
605: {"inbytes": 0x10, "outbytes": 4, "buffers": [6]}, | |
607: {"inbytes": 0, "outbytes": 1}, | |
}, | |
'nn::aocsrv::detail::IAddOnContentManager': { | |
0: {"inbytes": 8, "outbytes": 4}, | |
1: {"inbytes": 0x10, "outbytes": 4, "buffers": [6]}, | |
2: {"inbytes": 8, "outbytes": 4, "pid": True}, | |
3: {"inbytes": 0x10, "outbytes": 4, "buffers": [6], "pid": True}, | |
4: {"inbytes": 8, "outbytes": 8}, | |
5: {"inbytes": 8, "outbytes": 8, "pid": True}, | |
6: {"inbytes": 0x10, "outbytes": 0}, | |
7: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
}, | |
}, | |
'nfc': { | |
'nn::nfc::detail::IUser': { | |
0: {"inbytes": 0x10, "outbytes": 0, "buffers": [5], "pid": True}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 4}, | |
3: {"inbytes": 0, "outbytes": 1}, | |
}, | |
'nn::nfp::detail::ISystemManager': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::nfp::detail::ISystem']}, | |
}, | |
'nn::nfc::detail::ISystem': { | |
0: {"inbytes": 0x10, "outbytes": 0, "buffers": [5], "pid": True}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 4}, | |
3: {"inbytes": 0, "outbytes": 1}, | |
100: {"inbytes": 1, "outbytes": 0}, | |
}, | |
'nn::nfp::detail::ISystem': { | |
0: {"inbytes": 0x10, "outbytes": 0, "buffers": [5], "pid": True}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 4, "buffers": [10]}, | |
3: {"inbytes": 8, "outbytes": 0}, | |
4: {"inbytes": 8, "outbytes": 0}, | |
5: {"inbytes": 0x10, "outbytes": 0}, | |
6: {"inbytes": 8, "outbytes": 0}, | |
10: {"inbytes": 8, "outbytes": 0}, | |
11: {"inbytes": 8, "outbytes": 0}, | |
13: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
14: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
15: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
16: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
17: {"inbytes": 8, "outbytes": 0, "outhandles": [1]}, | |
18: {"inbytes": 8, "outbytes": 0, "outhandles": [1]}, | |
19: {"inbytes": 0, "outbytes": 4}, | |
20: {"inbytes": 8, "outbytes": 4}, | |
21: {"inbytes": 8, "outbytes": 4}, | |
23: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
100: {"inbytes": 8, "outbytes": 0}, | |
101: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
102: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
103: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
104: {"inbytes": 8, "outbytes": 0}, | |
105: {"inbytes": 8, "outbytes": 0}, | |
106: {"inbytes": 8, "outbytes": 1}, | |
}, | |
'nn::nfc::am::detail::IAmManager': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::nfc::am::detail::IAm']}, | |
}, | |
'nn::nfc::mifare::detail::IUserManager': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::nfc::mifare::detail::IUser']}, | |
}, | |
'nn::nfp::detail::IDebug': { | |
0: {"inbytes": 0x10, "outbytes": 0, "buffers": [5], "pid": True}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 4, "buffers": [10]}, | |
3: {"inbytes": 8, "outbytes": 0}, | |
4: {"inbytes": 8, "outbytes": 0}, | |
5: {"inbytes": 0x10, "outbytes": 0}, | |
6: {"inbytes": 8, "outbytes": 0}, | |
7: {"inbytes": 0xC, "outbytes": 0}, | |
8: {"inbytes": 8, "outbytes": 4, "buffers": [6]}, | |
9: {"inbytes": 8, "outbytes": 0, "buffers": [5]}, | |
10: {"inbytes": 8, "outbytes": 0}, | |
11: {"inbytes": 8, "outbytes": 0}, | |
12: {"inbytes": 0xC, "outbytes": 0, "buffers": [5]}, | |
13: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
14: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
15: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
16: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
17: {"inbytes": 8, "outbytes": 0, "outhandles": [1]}, | |
18: {"inbytes": 8, "outbytes": 0, "outhandles": [1]}, | |
19: {"inbytes": 0, "outbytes": 4}, | |
20: {"inbytes": 8, "outbytes": 4}, | |
21: {"inbytes": 8, "outbytes": 4}, | |
22: {"inbytes": 8, "outbytes": 4}, | |
23: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
24: {"inbytes": 0xC, "outbytes": 0, "buffers": [5]}, | |
100: {"inbytes": 8, "outbytes": 0}, | |
101: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
102: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
103: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
104: {"inbytes": 8, "outbytes": 0}, | |
105: {"inbytes": 8, "outbytes": 0}, | |
106: {"inbytes": 8, "outbytes": 1}, | |
200: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
201: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
202: {"inbytes": 8, "outbytes": 0}, | |
203: {"inbytes": 0xC, "outbytes": 0}, | |
204: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
205: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
206: {"inbytes": 0xC, "outbytes": 0, "buffers": [5]}, | |
300: {"inbytes": 0x10, "outbytes": 0, "buffers": [5], "pid": True}, | |
301: {"inbytes": 0, "outbytes": 0}, | |
302: {"inbytes": 0, "outbytes": 4, "buffers": [10]}, | |
303: {"inbytes": 0xC, "outbytes": 0}, | |
304: {"inbytes": 8, "outbytes": 0}, | |
305: {"inbytes": 0x10, "outbytes": 4, "buffers": [6, 5]}, | |
306: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
307: {"inbytes": 8, "outbytes": 0, "outhandles": [1]}, | |
308: {"inbytes": 8, "outbytes": 0, "outhandles": [1]}, | |
309: {"inbytes": 0, "outbytes": 4}, | |
310: {"inbytes": 8, "outbytes": 4}, | |
311: {"inbytes": 8, "outbytes": 4}, | |
312: {"inbytes": 8, "outbytes": 0}, | |
313: {"inbytes": 8, "outbytes": 0}, | |
314: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
}, | |
'nn::nfc::am::detail::IAm': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 8, "outbytes": 0}, | |
}, | |
'nn::nfc::mifare::detail::IUser': { | |
0: {"inbytes": 0x10, "outbytes": 0, "buffers": [5], "pid": True}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 4, "buffers": [10]}, | |
3: {"inbytes": 8, "outbytes": 0}, | |
4: {"inbytes": 8, "outbytes": 0}, | |
5: {"inbytes": 8, "outbytes": 0, "buffers": [6, 5]}, | |
6: {"inbytes": 8, "outbytes": 0, "buffers": [5]}, | |
7: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
8: {"inbytes": 8, "outbytes": 0, "outhandles": [1]}, | |
9: {"inbytes": 8, "outbytes": 0, "outhandles": [1]}, | |
10: {"inbytes": 0, "outbytes": 4}, | |
11: {"inbytes": 8, "outbytes": 4}, | |
12: {"inbytes": 8, "outbytes": 4}, | |
13: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
}, | |
'nn::nfp::detail::IDebugManager': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::nfp::detail::IDebug']}, | |
}, | |
'nn::nfc::detail::IUserManager': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::nfc::detail::IUser']}, | |
}, | |
'nn::nfp::detail::IUser': { | |
0: {"inbytes": 0x10, "outbytes": 0, "buffers": [5], "pid": True}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 4, "buffers": [10]}, | |
3: {"inbytes": 8, "outbytes": 0}, | |
4: {"inbytes": 8, "outbytes": 0}, | |
5: {"inbytes": 0x10, "outbytes": 0}, | |
6: {"inbytes": 8, "outbytes": 0}, | |
7: {"inbytes": 0xC, "outbytes": 0}, | |
8: {"inbytes": 8, "outbytes": 4, "buffers": [6]}, | |
9: {"inbytes": 8, "outbytes": 0, "buffers": [5]}, | |
10: {"inbytes": 8, "outbytes": 0}, | |
11: {"inbytes": 8, "outbytes": 0}, | |
12: {"inbytes": 0xC, "outbytes": 0, "buffers": [5]}, | |
13: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
14: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
15: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
16: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
17: {"inbytes": 8, "outbytes": 0, "outhandles": [1]}, | |
18: {"inbytes": 8, "outbytes": 0, "outhandles": [1]}, | |
19: {"inbytes": 0, "outbytes": 4}, | |
20: {"inbytes": 8, "outbytes": 4}, | |
21: {"inbytes": 8, "outbytes": 4}, | |
22: {"inbytes": 8, "outbytes": 4}, | |
23: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
24: {"inbytes": 0xC, "outbytes": 0, "buffers": [5]}, | |
}, | |
'nn::nfc::detail::ISystemManager': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::nfc::detail::ISystem']}, | |
}, | |
'nn::nfp::detail::IUserManager': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::nfp::detail::IUser']}, | |
}, | |
}, | |
'psc': { | |
'nn::psc::sf::IPmModule': { | |
0: {"inbytes": 4, "outbytes": 0, "buffers": [5], "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 8}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::psc::sf::IPmControl': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0xC, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 4}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 0}, | |
6: {"inbytes": 0, "outbytes": 0x28, "buffers": [6, 6]}, | |
}, | |
'nn::psc::sf::IPmService': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::psc::sf::IPmModule']}, | |
}, | |
}, | |
'capsrv': { | |
'nn::capsrv::sf::IAlbumControlService': { | |
2001: {"inbytes": 1, "outbytes": 0}, | |
2002: {"inbytes": 1, "outbytes": 0}, | |
2011: {"inbytes": 0x10, "outbytes": 0}, | |
2012: {"inbytes": 0x10, "outbytes": 0}, | |
2013: {"inbytes": 8, "outbytes": 8}, | |
2014: {"inbytes": 8, "outbytes": 0}, | |
2101: {"inbytes": 0x10, "outbytes": 0x18}, | |
2102: {"inbytes": 0x28, "outbytes": 0x20}, | |
2201: {"inbytes": 0x18, "outbytes": 0, "buffers": [69]}, | |
2301: {"inbytes": 0x18, "outbytes": 0, "buffers": [69]}, | |
}, | |
'nn::capsrv::sf::IAlbumAccessorService': { | |
0: {"inbytes": 1, "outbytes": 8}, | |
1: {"inbytes": 1, "outbytes": 8, "buffers": [6]}, | |
2: {"inbytes": 0x18, "outbytes": 8, "buffers": [6]}, | |
3: {"inbytes": 0x18, "outbytes": 0}, | |
4: {"inbytes": 0x20, "outbytes": 0}, | |
5: {"inbytes": 1, "outbytes": 1}, | |
6: {"inbytes": 1, "outbytes": 0x30}, | |
7: {"inbytes": 0x18, "outbytes": 8}, | |
8: {"inbytes": 0x18, "outbytes": 8, "buffers": [6]}, | |
9: {"inbytes": 0x18, "outbytes": 0x10, "buffers": [70, 6]}, | |
10: {"inbytes": 0x18, "outbytes": 0x10, "buffers": [70, 6]}, | |
11: {"inbytes": 0x28, "outbytes": 0x20}, | |
12: {"inbytes": 0x38, "outbytes": 0x10, "buffers": [70, 6]}, | |
13: {"inbytes": 0x38, "outbytes": 0x10, "buffers": [70, 6]}, | |
14: {"inbytes": 0x38, "outbytes": 0x50, "buffers": [70, 6]}, | |
301: {"inbytes": 0, "outbytes": 0x20, "buffers": [6]}, | |
401: {"inbytes": 0, "outbytes": 1}, | |
501: {"inbytes": 2, "outbytes": 8}, | |
1001: {"inbytes": 0x38, "outbytes": 0x50, "buffers": [70, 6]}, | |
1002: {"inbytes": 0x38, "outbytes": 0x20, "buffers": [5, 5]}, | |
8001: {"inbytes": 1, "outbytes": 0}, | |
8002: {"inbytes": 1, "outbytes": 0}, | |
8011: {"inbytes": 1, "outbytes": 0}, | |
8012: {"inbytes": 1, "outbytes": 0x10}, | |
8021: {"inbytes": 0x28, "outbytes": 0x20, "pid": True}, | |
10011: {"inbytes": 1, "outbytes": 0}, | |
}, | |
}, | |
'am': { | |
'nn::am::service::IWindowController': { | |
0: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::am::service::IWindow']}, | |
1: {"inbytes": 0, "outbytes": 8}, | |
10: {"inbytes": 0, "outbytes": 0}, | |
11: {"inbytes": 0, "outbytes": 0}, | |
12: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::am::service::ILibraryAppletCreator': { | |
0: {"inbytes": 8, "outbytes": 0, "outinterfaces": ['nn::am::service::ILibraryAppletAccessor']}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 1}, | |
10: {"inbytes": 8, "outbytes": 0, "outinterfaces": ['nn::am::service::IStorage']}, | |
11: {"inbytes": 0x10, "outbytes": 0, "inhandles": [1], "outinterfaces": ['nn::am::service::IStorage']}, | |
12: {"inbytes": 8, "outbytes": 0, "inhandles": [1], "outinterfaces": ['nn::am::service::IStorage']}, | |
}, | |
'nn::am::service::ILibraryAppletSelfAccessor': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IStorage']}, | |
1: {"inbytes": 0, "outbytes": 0, "ininterfaces": ['nn::am::service::IStorage']}, | |
2: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IStorage']}, | |
3: {"inbytes": 0, "outbytes": 0, "ininterfaces": ['nn::am::service::IStorage']}, | |
5: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
6: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
10: {"inbytes": 0, "outbytes": 0}, | |
11: {"inbytes": 0, "outbytes": 8}, | |
12: {"inbytes": 0, "outbytes": 0x10}, | |
13: {"inbytes": 0, "outbytes": 1}, | |
14: {"inbytes": 0, "outbytes": 0x10}, | |
15: {"inbytes": 0, "outbytes": 0, "buffers": [22]}, | |
16: {"inbytes": 0, "outbytes": 1}, | |
17: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
20: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IStorage']}, | |
25: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
30: {"inbytes": 0, "outbytes": 0, "ininterfaces": ['nn::am::service::IStorage']}, | |
31: {"inbytes": 0, "outbytes": 0, "ininterfaces": ['nn::am::service::IStorage']}, | |
40: {"inbytes": 0, "outbytes": 8}, | |
50: {"inbytes": 8, "outbytes": 0}, | |
}, | |
'nn::am::service::IWindow': { | |
}, | |
'nn::am::service::IAudioController': { | |
0: {"inbytes": 8, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 4}, | |
2: {"inbytes": 0, "outbytes": 4}, | |
3: {"inbytes": 0x10, "outbytes": 0}, | |
4: {"inbytes": 4, "outbytes": 0}, | |
}, | |
'nn::am::service::IApplicationCreator': { | |
0: {"inbytes": 8, "outbytes": 0, "outinterfaces": ['nn::am::service::IApplicationAccessor']}, | |
1: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IApplicationAccessor']}, | |
10: {"inbytes": 8, "outbytes": 0, "outinterfaces": ['nn::am::service::IApplicationAccessor']}, | |
100: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IApplicationAccessor']}, | |
}, | |
'nn::am::service::ILockAccessor': { | |
1: {"inbytes": 1, "outbytes": 1, "outhandles": [1]}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
}, | |
'nn::am::service::IDisplayController': { | |
0: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 1, "buffers": [6]}, | |
6: {"inbytes": 0, "outbytes": 1, "buffers": [6]}, | |
7: {"inbytes": 0, "outbytes": 1, "buffers": [6]}, | |
8: {"inbytes": 8, "outbytes": 0}, | |
10: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
11: {"inbytes": 0, "outbytes": 0}, | |
12: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
13: {"inbytes": 0, "outbytes": 0}, | |
14: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
15: {"inbytes": 0, "outbytes": 0}, | |
16: {"inbytes": 0, "outbytes": 1, "outhandles": [1]}, | |
17: {"inbytes": 0, "outbytes": 1, "outhandles": [1]}, | |
18: {"inbytes": 0, "outbytes": 1, "outhandles": [1]}, | |
20: {"inbytes": 0xC, "outbytes": 0}, | |
21: {"inbytes": 4, "outbytes": 0}, | |
}, | |
'nn::am::service::ICommonStateGetter': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 4}, | |
2: {"inbytes": 0, "outbytes": 8}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 1}, | |
6: {"inbytes": 0, "outbytes": 4}, | |
7: {"inbytes": 0, "outbytes": 1}, | |
8: {"inbytes": 0, "outbytes": 1}, | |
9: {"inbytes": 0, "outbytes": 1}, | |
10: {"inbytes": 0, "outbytes": 0}, | |
11: {"inbytes": 0, "outbytes": 0}, | |
12: {"inbytes": 0, "outbytes": 0}, | |
13: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
20: {"inbytes": 0, "outbytes": 0, "ininterfaces": ['nn::am::service::IStorage']}, | |
30: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::ILockAccessor']}, | |
31: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::am::service::ILockAccessor']}, | |
40: {"inbytes": 0, "outbytes": 0x10}, | |
50: {"inbytes": 0, "outbytes": 1}, | |
51: {"inbytes": 1, "outbytes": 0}, | |
55: {"inbytes": 0, "outbytes": 1}, | |
60: {"inbytes": 0, "outbytes": 8}, | |
61: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
}, | |
'nn::am::service::ILibraryAppletProxy': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::ICommonStateGetter']}, | |
1: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::ISelfController']}, | |
2: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IWindowController']}, | |
3: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IAudioController']}, | |
4: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IDisplayController']}, | |
10: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IProcessWindingController']}, | |
11: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::ILibraryAppletCreator']}, | |
20: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::ILibraryAppletSelfAccessor']}, | |
1000: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IDebugFunctions']}, | |
}, | |
'nn::omm::detail::IOperationModeManager': { | |
0: {"inbytes": 0, "outbytes": 1}, | |
1: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 0, "inhandles": [1]}, | |
5: {"inbytes": 0, "outbytes": 1}, | |
6: {"inbytes": 0, "outbytes": 0}, | |
7: {"inbytes": 0, "outbytes": 0}, | |
8: {"inbytes": 0, "outbytes": 0x10}, | |
9: {"inbytes": 0, "outbytes": 0}, | |
10: {"inbytes": 1, "outbytes": 0}, | |
11: {"inbytes": 0, "outbytes": 8}, | |
12: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
13: {"inbytes": 0, "outbytes": 0}, | |
14: {"inbytes": 0, "outbytes": 1}, | |
}, | |
'nn::am::service::IOverlayFunctions': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 8}, | |
3: {"inbytes": 8, "outbytes": 0}, | |
4: {"inbytes": 1, "outbytes": 0}, | |
5: {"inbytes": 4, "outbytes": 0}, | |
6: {"inbytes": 1, "outbytes": 0}, | |
}, | |
'nn::am::service::IProcessWindingController': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
11: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::ILibraryAppletAccessor']}, | |
21: {"inbytes": 0, "outbytes": 0, "ininterfaces": ['nn::am::service::IStorage']}, | |
22: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IStorage']}, | |
23: {"inbytes": 0, "outbytes": 0}, | |
30: {"inbytes": 0, "outbytes": 0}, | |
40: {"inbytes": 0, "outbytes": 0, "ininterfaces": ['nn::am::service::ILibraryAppletAccessor']}, | |
}, | |
'nn::am::service::ISelfController': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
9: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
10: {"inbytes": 4, "outbytes": 0}, | |
11: {"inbytes": 1, "outbytes": 0}, | |
12: {"inbytes": 1, "outbytes": 0}, | |
13: {"inbytes": 3, "outbytes": 0}, | |
14: {"inbytes": 1, "outbytes": 0}, | |
15: {"inbytes": 0x10, "outbytes": 0}, | |
16: {"inbytes": 1, "outbytes": 0}, | |
17: {"inbytes": 1, "outbytes": 0}, | |
18: {"inbytes": 1, "outbytes": 0}, | |
19: {"inbytes": 4, "outbytes": 0}, | |
40: {"inbytes": 0, "outbytes": 8}, | |
50: {"inbytes": 1, "outbytes": 0}, | |
51: {"inbytes": 0, "outbytes": 0}, | |
60: {"inbytes": 0x10, "outbytes": 0}, | |
61: {"inbytes": 1, "outbytes": 0}, | |
62: {"inbytes": 4, "outbytes": 0}, | |
63: {"inbytes": 0, "outbytes": 4}, | |
64: {"inbytes": 4, "outbytes": 0}, | |
65: {"inbytes": 0, "outbytes": 0}, | |
66: {"inbytes": 0, "outbytes": 4}, | |
67: {"inbytes": 0, "outbytes": 1}, | |
}, | |
'nn::am::service::IApplicationProxy': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::ICommonStateGetter']}, | |
1: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::ISelfController']}, | |
2: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IWindowController']}, | |
3: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IAudioController']}, | |
4: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IDisplayController']}, | |
10: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IProcessWindingController']}, | |
11: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::ILibraryAppletCreator']}, | |
20: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IApplicationFunctions']}, | |
1000: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IDebugFunctions']}, | |
}, | |
'nn::am::service::IApplicationFunctions': { | |
1: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::am::service::IStorage']}, | |
10: {"inbytes": 8, "outbytes": 0, "ininterfaces": ['nn::am::service::IStorage']}, | |
11: {"inbytes": 0x10, "outbytes": 0, "ininterfaces": ['nn::am::service::IStorage']}, | |
20: {"inbytes": 0x10, "outbytes": 8}, | |
21: {"inbytes": 0, "outbytes": 8}, | |
22: {"inbytes": 4, "outbytes": 0}, | |
23: {"inbytes": 0, "outbytes": 0x10}, | |
24: {"inbytes": 0, "outbytes": 2}, | |
25: {"inbytes": 0x28, "outbytes": 8}, | |
26: {"inbytes": 0x18, "outbytes": 0x10}, | |
30: {"inbytes": 8, "outbytes": 0}, | |
31: {"inbytes": 0, "outbytes": 0}, | |
32: {"inbytes": 8, "outbytes": 0}, | |
33: {"inbytes": 0, "outbytes": 0}, | |
40: {"inbytes": 0, "outbytes": 1}, | |
50: {"inbytes": 0, "outbytes": 0x10}, | |
60: {"inbytes": 1, "outbytes": 0}, | |
65: {"inbytes": 0, "outbytes": 1}, | |
66: {"inbytes": 8, "outbytes": 0, "inhandles": [1]}, | |
67: {"inbytes": 4, "outbytes": 0}, | |
70: {"inbytes": 0, "outbytes": 0}, | |
71: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::am::service::IOverlayAppletProxy': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::ICommonStateGetter']}, | |
1: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::ISelfController']}, | |
2: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IWindowController']}, | |
3: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IAudioController']}, | |
4: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IDisplayController']}, | |
10: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IProcessWindingController']}, | |
11: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::ILibraryAppletCreator']}, | |
20: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IOverlayFunctions']}, | |
1000: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IDebugFunctions']}, | |
}, | |
'nn::am::service::IApplicationProxyService': { | |
0: {"inbytes": 8, "outbytes": 0, "inhandles": [1], "outinterfaces": ['nn::am::service::IApplicationProxy'], "pid": True}, | |
}, | |
'nn::am::service::IStorage': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IStorageAccessor']}, | |
1: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::ITransferStorageAccessor']}, | |
}, | |
'nn::am::service::ILibraryAppletAccessor': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 1}, | |
10: {"inbytes": 0, "outbytes": 0}, | |
20: {"inbytes": 0, "outbytes": 0}, | |
25: {"inbytes": 0, "outbytes": 0}, | |
30: {"inbytes": 0, "outbytes": 0}, | |
50: {"inbytes": 1, "outbytes": 0}, | |
100: {"inbytes": 0, "outbytes": 0, "ininterfaces": ['nn::am::service::IStorage']}, | |
101: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IStorage']}, | |
102: {"inbytes": 0, "outbytes": 0, "ininterfaces": ['nn::am::service::IStorage']}, | |
103: {"inbytes": 0, "outbytes": 0, "ininterfaces": ['nn::am::service::IStorage']}, | |
104: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IStorage']}, | |
105: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
106: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
110: {"inbytes": 0, "outbytes": 1}, | |
120: {"inbytes": 0, "outbytes": 8}, | |
150: {"inbytes": 0, "outbytes": 0}, | |
160: {"inbytes": 8, "outbytes": 8, "pid": True}, | |
}, | |
'nn::am::service::ITransferStorageAccessor': { | |
0: {"inbytes": 0, "outbytes": 8}, | |
1: {"inbytes": 0, "outbytes": 8, "outhandles": [1]}, | |
}, | |
'nn::am::service::IStorageAccessor': { | |
0: {"inbytes": 0, "outbytes": 8}, | |
10: {"inbytes": 8, "outbytes": 0, "buffers": [33]}, | |
11: {"inbytes": 8, "outbytes": 0, "buffers": [34]}, | |
}, | |
'nn::spsm::detail::IPowerStateInterface': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
2: {"inbytes": 0, "outbytes": 4}, | |
3: {"inbytes": 1, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
5: {"inbytes": 0, "outbytes": 4}, | |
6: {"inbytes": 0, "outbytes": 0x50}, | |
7: {"inbytes": 0, "outbytes": 0}, | |
8: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
9: {"inbytes": 8, "outbytes": 0}, | |
10: {"inbytes": 0, "outbytes": 0}, | |
11: {"inbytes": 8, "outbytes": 0}, | |
}, | |
'nn::am::service::IGlobalStateController': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 1, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
10: {"inbytes": 0, "outbytes": 0}, | |
11: {"inbytes": 0, "outbytes": 0}, | |
12: {"inbytes": 8, "outbytes": 0}, | |
13: {"inbytes": 0, "outbytes": 0}, | |
14: {"inbytes": 0, "outbytes": 1}, | |
}, | |
'nn::am::service::IAllSystemAppletProxiesService': { | |
100: {"inbytes": 8, "outbytes": 0, "inhandles": [1], "outinterfaces": ['nn::am::service::ISystemAppletProxy'], "pid": True}, | |
200: {"inbytes": 8, "outbytes": 0, "inhandles": [1], "outinterfaces": ['nn::am::service::ILibraryAppletProxy'], "pid": True}, | |
201: {"inbytes": 8, "outbytes": 0, "buffers": [21], "inhandles": [1], "outinterfaces": ['nn::am::service::ILibraryAppletProxy'], "pid": True}, | |
300: {"inbytes": 8, "outbytes": 0, "inhandles": [1], "outinterfaces": ['nn::am::service::IOverlayAppletProxy'], "pid": True}, | |
350: {"inbytes": 8, "outbytes": 0, "inhandles": [1], "outinterfaces": ['nn::am::service::IApplicationProxy'], "pid": True}, | |
400: {"inbytes": 8, "outbytes": 0, "outinterfaces": ['nn::am::service::ILibraryAppletCreator'], "pid": True}, | |
}, | |
'nn::idle::detail::IPolicyManagerSystem': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0x38, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::am::service::IHomeMenuFunctions': { | |
10: {"inbytes": 0, "outbytes": 0}, | |
11: {"inbytes": 0, "outbytes": 0}, | |
12: {"inbytes": 0, "outbytes": 0}, | |
20: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IStorage']}, | |
21: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
30: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::ILockAccessor']}, | |
31: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::am::service::ILockAccessor']}, | |
}, | |
'nn::am::service::IApplicationAccessor': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 1}, | |
10: {"inbytes": 0, "outbytes": 0}, | |
20: {"inbytes": 0, "outbytes": 0}, | |
25: {"inbytes": 0, "outbytes": 0}, | |
30: {"inbytes": 0, "outbytes": 0}, | |
101: {"inbytes": 0, "outbytes": 0}, | |
110: {"inbytes": 0, "outbytes": 0}, | |
111: {"inbytes": 0, "outbytes": 1}, | |
112: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IAppletAccessor']}, | |
120: {"inbytes": 0, "outbytes": 8}, | |
121: {"inbytes": 4, "outbytes": 0, "ininterfaces": ['nn::am::service::IStorage']}, | |
122: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
123: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
}, | |
'nn::am::service::ISystemAppletProxy': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::ICommonStateGetter']}, | |
1: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::ISelfController']}, | |
2: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IWindowController']}, | |
3: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IAudioController']}, | |
4: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IDisplayController']}, | |
10: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IProcessWindingController']}, | |
11: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::ILibraryAppletCreator']}, | |
20: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IHomeMenuFunctions']}, | |
21: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IGlobalStateController']}, | |
22: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IApplicationCreator']}, | |
1000: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IDebugFunctions']}, | |
}, | |
'nn::am::service::IAppletAccessor': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 1}, | |
10: {"inbytes": 0, "outbytes": 0}, | |
20: {"inbytes": 0, "outbytes": 0}, | |
25: {"inbytes": 0, "outbytes": 0}, | |
30: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::am::service::IDebugFunctions': { | |
0: {"inbytes": 4, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::am::service::IApplicationAccessor']}, | |
10: {"inbytes": 4, "outbytes": 0}, | |
20: {"inbytes": 0, "outbytes": 0}, | |
}, | |
}, | |
'ssl': { | |
'nn::ssl::sf::ISslService': { | |
0: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::ssl::sf::ISslContext'], "pid": True}, | |
1: {"inbytes": 0, "outbytes": 4}, | |
2: {"inbytes": 0, "outbytes": 4, "buffers": [6, 5]}, | |
3: {"inbytes": 0, "outbytes": 4, "buffers": [5]}, | |
4: {"inbytes": 8, "outbytes": 0, "buffers": [6, 5]}, | |
5: {"inbytes": 4, "outbytes": 0}, | |
}, | |
'nn::ssl::sf::ISslContext': { | |
0: {"inbytes": 8, "outbytes": 0}, | |
1: {"inbytes": 4, "outbytes": 4}, | |
2: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::ssl::sf::ISslConnection']}, | |
3: {"inbytes": 0, "outbytes": 4}, | |
4: {"inbytes": 4, "outbytes": 8, "buffers": [5]}, | |
5: {"inbytes": 0, "outbytes": 8, "buffers": [5, 5]}, | |
6: {"inbytes": 8, "outbytes": 0}, | |
7: {"inbytes": 8, "outbytes": 0}, | |
8: {"inbytes": 4, "outbytes": 8}, | |
9: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
10: {"inbytes": 0, "outbytes": 8, "buffers": [5]}, | |
11: {"inbytes": 8, "outbytes": 0}, | |
}, | |
'nn::ssl::sf::ISslConnection': { | |
0: {"inbytes": 4, "outbytes": 4}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
2: {"inbytes": 4, "outbytes": 0}, | |
3: {"inbytes": 4, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 4}, | |
5: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
6: {"inbytes": 0, "outbytes": 4}, | |
7: {"inbytes": 0, "outbytes": 4}, | |
8: {"inbytes": 0, "outbytes": 0}, | |
9: {"inbytes": 0, "outbytes": 8, "buffers": [6]}, | |
10: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
11: {"inbytes": 0, "outbytes": 4, "buffers": [5]}, | |
12: {"inbytes": 0, "outbytes": 4}, | |
13: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
14: {"inbytes": 8, "outbytes": 4}, | |
15: {"inbytes": 0, "outbytes": 0}, | |
16: {"inbytes": 0, "outbytes": 4}, | |
17: {"inbytes": 4, "outbytes": 0}, | |
18: {"inbytes": 0, "outbytes": 4}, | |
19: {"inbytes": 0, "outbytes": 0}, | |
20: {"inbytes": 4, "outbytes": 0}, | |
21: {"inbytes": 0, "outbytes": 4}, | |
22: {"inbytes": 8, "outbytes": 0}, | |
23: {"inbytes": 4, "outbytes": 1}, | |
24: {"inbytes": 0, "outbytes": 8, "buffers": [6]}, | |
}, | |
}, | |
'nim': { | |
'nn::nim::detail::IAsyncValue': { | |
0: {"inbytes": 0, "outbytes": 8}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::nim::detail::INetworkInstallManager': { | |
0: {"inbytes": 0x18, "outbytes": 0x10}, | |
1: {"inbytes": 0x10, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
3: {"inbytes": 0x10, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncResult']}, | |
4: {"inbytes": 0x10, "outbytes": 0x38}, | |
5: {"inbytes": 0x10, "outbytes": 0}, | |
6: {"inbytes": 0x10, "outbytes": 0x10, "buffers": [5]}, | |
7: {"inbytes": 0x10, "outbytes": 0}, | |
8: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
9: {"inbytes": 0x10, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncResult']}, | |
10: {"inbytes": 0x10, "outbytes": 0x40}, | |
11: {"inbytes": 0x10, "outbytes": 0}, | |
12: {"inbytes": 0, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncValue']}, | |
14: {"inbytes": 8, "outbytes": 4, "buffers": [6]}, | |
15: {"inbytes": 0x14, "outbytes": 4, "buffers": [6]}, | |
16: {"inbytes": 8, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncValue']}, | |
17: {"inbytes": 0x18, "outbytes": 0}, | |
18: {"inbytes": 0x10, "outbytes": 0, "buffers": [5]}, | |
19: {"inbytes": 0x18, "outbytes": 0, "buffers": [22]}, | |
20: {"inbytes": 0x10, "outbytes": 8}, | |
21: {"inbytes": 0x10, "outbytes": 1}, | |
22: {"inbytes": 0, "outbytes": 0x10}, | |
23: {"inbytes": 0, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncValue']}, | |
24: {"inbytes": 8, "outbytes": 0, "buffers": [5, 5], "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncValue']}, | |
25: {"inbytes": 0x10, "outbytes": 0, "buffers": [5, 5], "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncResult']}, | |
26: {"inbytes": 0x28, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncResult']}, | |
27: {"inbytes": 0x28, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncData']}, | |
28: {"inbytes": 0x10, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncValue']}, | |
29: {"inbytes": 8, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncValue']}, | |
30: {"inbytes": 0x28, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncData']}, | |
31: {"inbytes": 0x20, "outbytes": 0x10, "buffers": [5]}, | |
32: {"inbytes": 0x10, "outbytes": 0}, | |
33: {"inbytes": 8, "outbytes": 4, "buffers": [6]}, | |
34: {"inbytes": 0x10, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncResult']}, | |
35: {"inbytes": 0x10, "outbytes": 0x30}, | |
36: {"inbytes": 0x14, "outbytes": 4, "buffers": [6]}, | |
37: {"inbytes": 0x10, "outbytes": 0}, | |
38: {"inbytes": 0x10, "outbytes": 8}, | |
39: {"inbytes": 0, "outbytes": 0}, | |
40: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
41: {"inbytes": 0x10, "outbytes": 0}, | |
42: {"inbytes": 0x10, "outbytes": 0x10}, | |
43: {"inbytes": 0, "outbytes": 0x10}, | |
44: {"inbytes": 0x10, "outbytes": 1}, | |
45: {"inbytes": 0x28, "outbytes": 8}, | |
46: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::nim::detail::IShopServiceManager': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncValue']}, | |
1: {"inbytes": 8, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncValue']}, | |
100: {"inbytes": 0, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncResult']}, | |
101: {"inbytes": 0, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncResult']}, | |
102: {"inbytes": 0, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncValue']}, | |
103: {"inbytes": 0, "outbytes": 0x20}, | |
104: {"inbytes": 0, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncValue']}, | |
105: {"inbytes": 0, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncResult']}, | |
106: {"inbytes": 0, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncResult']}, | |
107: {"inbytes": 8, "outbytes": 1}, | |
200: {"inbytes": 0x28, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncResult']}, | |
300: {"inbytes": 8, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncResult']}, | |
301: {"inbytes": 0x10, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncResult']}, | |
302: {"inbytes": 0x10, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncResult']}, | |
303: {"inbytes": 0x10, "outbytes": 1}, | |
400: {"inbytes": 4, "outbytes": 0x10}, | |
500: {"inbytes": 0, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncProgressResult']}, | |
501: {"inbytes": 0x10, "outbytes": 0, "outhandles": [1], "outinterfaces": ['nn::nim::detail::IAsyncResult']}, | |
}, | |
'nn::ntc::detail::service::IEnsureNetworkClockAvailabilityService': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 1}, | |
5: {"inbytes": 0, "outbytes": 8}, | |
}, | |
'nn::nim::detail::IAsyncProgressResult': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0x10}, | |
}, | |
'nn::nim::detail::IAsyncData': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 8}, | |
3: {"inbytes": 8, "outbytes": 8, "buffers": [6]}, | |
4: {"inbytes": 0, "outbytes": 0x28}, | |
}, | |
'nn::nim::detail::IAsyncResult': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::ntc::detail::service::IStaticService': { | |
0: {"inbytes": 8, "outbytes": 0, "outinterfaces": ['nn::ntc::detail::service::IEnsureNetworkClockAvailabilityService']}, | |
100: {"inbytes": 0, "outbytes": 0}, | |
101: {"inbytes": 0, "outbytes": 0}, | |
}, | |
}, | |
'lbl': { | |
'nn::lbl::detail::ILblController': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 4, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 4}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 4}, | |
6: {"inbytes": 8, "outbytes": 0}, | |
7: {"inbytes": 8, "outbytes": 0}, | |
8: {"inbytes": 0, "outbytes": 4}, | |
9: {"inbytes": 0, "outbytes": 0}, | |
10: {"inbytes": 0, "outbytes": 0}, | |
11: {"inbytes": 0, "outbytes": 1}, | |
12: {"inbytes": 0, "outbytes": 0}, | |
13: {"inbytes": 0, "outbytes": 0}, | |
14: {"inbytes": 0, "outbytes": 1}, | |
15: {"inbytes": 4, "outbytes": 0}, | |
16: {"inbytes": 0, "outbytes": 4}, | |
17: {"inbytes": 8, "outbytes": 0}, | |
18: {"inbytes": 4, "outbytes": 4}, | |
19: {"inbytes": 0xC, "outbytes": 0}, | |
20: {"inbytes": 0, "outbytes": 0xC}, | |
21: {"inbytes": 0xC, "outbytes": 0}, | |
22: {"inbytes": 0, "outbytes": 0xC}, | |
23: {"inbytes": 0, "outbytes": 1}, | |
24: {"inbytes": 4, "outbytes": 0}, | |
25: {"inbytes": 0, "outbytes": 4}, | |
26: {"inbytes": 0, "outbytes": 0}, | |
27: {"inbytes": 0, "outbytes": 0}, | |
28: {"inbytes": 0, "outbytes": 1}, | |
}, | |
}, | |
'btm': { | |
'nn::btm::IBtmSystemCore': { | |
0: {"inbytes": 0, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 1}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 0}, | |
6: {"inbytes": 0, "outbytes": 1}, | |
7: {"inbytes": 0, "outbytes": 1, "outhandles": [1]}, | |
8: {"inbytes": 0, "outbytes": 1, "outhandles": [1]}, | |
9: {"inbytes": 0, "outbytes": 1}, | |
}, | |
'nn::btm::IBtm': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0, "outbytes": 0x2A}, | |
2: {"inbytes": 0, "outbytes": 1, "outhandles": [1]}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [26]}, | |
4: {"inbytes": 7, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 0, "buffers": [25]}, | |
6: {"inbytes": 4, "outbytes": 0}, | |
7: {"inbytes": 4, "outbytes": 0}, | |
8: {"inbytes": 0, "outbytes": 1, "outhandles": [1]}, | |
9: {"inbytes": 0, "outbytes": 0, "buffers": [26]}, | |
10: {"inbytes": 0x60, "outbytes": 0}, | |
11: {"inbytes": 6, "outbytes": 0}, | |
12: {"inbytes": 6, "outbytes": 0}, | |
13: {"inbytes": 6, "outbytes": 0}, | |
14: {"inbytes": 0, "outbytes": 0}, | |
15: {"inbytes": 0, "outbytes": 0}, | |
16: {"inbytes": 6, "outbytes": 0}, | |
17: {"inbytes": 6, "outbytes": 0, "buffers": [25]}, | |
18: {"inbytes": 0, "outbytes": 1, "outhandles": [1]}, | |
}, | |
'nn::btm::IBtmSystem': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::btm::IBtmSystemCore']}, | |
}, | |
'nn::btm::IBtmDebug': { | |
0: {"inbytes": 0, "outbytes": 1, "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [26]}, | |
4: {"inbytes": 6, "outbytes": 0}, | |
5: {"inbytes": 6, "outbytes": 0}, | |
6: {"inbytes": 0xC, "outbytes": 0}, | |
7: {"inbytes": 4, "outbytes": 0}, | |
8: {"inbytes": 6, "outbytes": 0}, | |
}, | |
}, | |
'erpt': { | |
'nn::erpt::sf::IManager': { | |
0: {"inbytes": 4, "outbytes": 0, "buffers": [6]}, | |
1: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
}, | |
'nn::erpt::sf::ISession': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::erpt::sf::IReport']}, | |
1: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::erpt::sf::IManager']}, | |
}, | |
'nn::erpt::sf::IContext': { | |
0: {"inbytes": 0, "outbytes": 0, "buffers": [5, 5]}, | |
1: {"inbytes": 4, "outbytes": 0, "buffers": [5, 5, 5]}, | |
2: {"inbytes": 0x18, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::erpt::sf::IReport': { | |
0: {"inbytes": 0x14, "outbytes": 0}, | |
1: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
2: {"inbytes": 4, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 4}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 8}, | |
}, | |
}, | |
'vi': { | |
'nn::visrv::sf::IManagerDisplayService': { | |
1102: {"inbytes": 8, "outbytes": 0x10}, | |
2010: {"inbytes": 0x18, "outbytes": 8}, | |
2011: {"inbytes": 8, "outbytes": 0}, | |
2050: {"inbytes": 0, "outbytes": 8}, | |
2051: {"inbytes": 8, "outbytes": 0}, | |
2052: {"inbytes": 0x10, "outbytes": 8}, | |
2053: {"inbytes": 8, "outbytes": 0}, | |
2054: {"inbytes": 0x10, "outbytes": 8}, | |
2055: {"inbytes": 8, "outbytes": 0}, | |
2300: {"inbytes": 8, "outbytes": 0, "outhandles": [1]}, | |
2301: {"inbytes": 8, "outbytes": 0}, | |
2302: {"inbytes": 8, "outbytes": 0, "outhandles": [1]}, | |
2402: {"inbytes": 8, "outbytes": 4}, | |
4201: {"inbytes": 0x10, "outbytes": 0}, | |
4203: {"inbytes": 0x10, "outbytes": 0}, | |
4205: {"inbytes": 0x10, "outbytes": 0}, | |
6000: {"inbytes": 0x10, "outbytes": 0}, | |
6001: {"inbytes": 0x10, "outbytes": 0}, | |
6002: {"inbytes": 0x10, "outbytes": 0}, | |
7000: {"inbytes": 1, "outbytes": 0}, | |
8000: {"inbytes": 0x10, "outbytes": 0}, | |
8100: {"inbytes": 0x18, "outbytes": 0}, | |
}, | |
'nn::mmnv::IRequest': { | |
0: {"inbytes": 0xC, "outbytes": 0}, | |
1: {"inbytes": 4, "outbytes": 0}, | |
2: {"inbytes": 0xC, "outbytes": 0}, | |
3: {"inbytes": 4, "outbytes": 4}, | |
4: {"inbytes": 0xC, "outbytes": 4}, | |
5: {"inbytes": 4, "outbytes": 0}, | |
6: {"inbytes": 0xC, "outbytes": 0}, | |
7: {"inbytes": 4, "outbytes": 4}, | |
}, | |
'nn::cec::ICecManager': { | |
0: {"inbytes": 0, "outbytes": 8, "outhandles": [1]}, | |
1: {"inbytes": 4, "outbytes": 4}, | |
2: {"inbytes": 4, "outbytes": 0}, | |
3: {"inbytes": 0x18, "outbytes": 4}, | |
4: {"inbytes": 4, "outbytes": 0x18}, | |
5: {"inbytes": 0, "outbytes": 0x20}, | |
6: {"inbytes": 0, "outbytes": 8}, | |
}, | |
'nn::visrv::sf::ISystemDisplayService': { | |
1200: {"inbytes": 8, "outbytes": 8}, | |
1202: {"inbytes": 8, "outbytes": 8}, | |
1203: {"inbytes": 8, "outbytes": 8}, | |
1204: {"inbytes": 0x18, "outbytes": 0}, | |
2201: {"inbytes": 0x10, "outbytes": 0}, | |
2203: {"inbytes": 0x18, "outbytes": 0}, | |
2204: {"inbytes": 8, "outbytes": 8}, | |
2205: {"inbytes": 0x10, "outbytes": 0}, | |
2207: {"inbytes": 0x10, "outbytes": 0}, | |
2209: {"inbytes": 0x10, "outbytes": 0}, | |
2312: {"inbytes": 0x10, "outbytes": 0x10, "buffers": [6]}, | |
2400: {"inbytes": 0x10, "outbytes": 8, "buffers": [6], "pid": True}, | |
2401: {"inbytes": 8, "outbytes": 0}, | |
2402: {"inbytes": 8, "outbytes": 0}, | |
3000: {"inbytes": 8, "outbytes": 8, "buffers": [6]}, | |
3001: {"inbytes": 8, "outbytes": 8, "buffers": [6]}, | |
3002: {"inbytes": 8, "outbytes": 8, "buffers": [6]}, | |
3200: {"inbytes": 8, "outbytes": 0x10}, | |
3201: {"inbytes": 0x18, "outbytes": 0}, | |
3202: {"inbytes": 8, "outbytes": 8}, | |
3203: {"inbytes": 0x10, "outbytes": 0}, | |
3204: {"inbytes": 8, "outbytes": 4}, | |
3205: {"inbytes": 0x10, "outbytes": 0}, | |
3206: {"inbytes": 8, "outbytes": 4}, | |
3207: {"inbytes": 0x10, "outbytes": 0}, | |
3208: {"inbytes": 8, "outbytes": 4}, | |
3209: {"inbytes": 0x10, "outbytes": 0}, | |
3210: {"inbytes": 8, "outbytes": 4}, | |
3211: {"inbytes": 0x10, "outbytes": 0}, | |
3214: {"inbytes": 8, "outbytes": 4}, | |
3215: {"inbytes": 0x10, "outbytes": 0}, | |
3216: {"inbytes": 8, "outbytes": 4}, | |
3217: {"inbytes": 0x10, "outbytes": 0}, | |
}, | |
'nns::hosbinder::IHOSBinderDriver': { | |
0: {"inbytes": 0xC, "outbytes": 0, "buffers": [5, 6]}, | |
1: {"inbytes": 0xC, "outbytes": 0}, | |
2: {"inbytes": 8, "outbytes": 0, "outhandles": [1]}, | |
3: {"inbytes": 0xC, "outbytes": 0, "buffers": [33, 34]}, | |
}, | |
'nn::visrv::sf::IApplicationDisplayService': { | |
100: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nns::hosbinder::IHOSBinderDriver']}, | |
101: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::visrv::sf::ISystemDisplayService']}, | |
102: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::visrv::sf::IManagerDisplayService']}, | |
103: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nns::hosbinder::IHOSBinderDriver']}, | |
1000: {"inbytes": 0, "outbytes": 8, "buffers": [6]}, | |
1010: {"inbytes": 0x40, "outbytes": 8}, | |
1011: {"inbytes": 0, "outbytes": 8}, | |
1020: {"inbytes": 8, "outbytes": 0}, | |
1101: {"inbytes": 0x10, "outbytes": 0}, | |
1102: {"inbytes": 8, "outbytes": 0x10}, | |
2020: {"inbytes": 0x50, "outbytes": 8, "buffers": [6], "pid": True}, | |
2021: {"inbytes": 8, "outbytes": 0}, | |
2030: {"inbytes": 0x10, "outbytes": 0x10, "buffers": [6]}, | |
2031: {"inbytes": 8, "outbytes": 0}, | |
2101: {"inbytes": 0x10, "outbytes": 0}, | |
2450: {"inbytes": 0x20, "outbytes": 0x10, "buffers": [70], "pid": True}, | |
2451: {"inbytes": 0x30, "outbytes": 0x10, "buffers": [70], "pid": True}, | |
2460: {"inbytes": 0x10, "outbytes": 0x10}, | |
5202: {"inbytes": 8, "outbytes": 0, "outhandles": [1]}, | |
5203: {"inbytes": 8, "outbytes": 0, "outhandles": [1]}, | |
}, | |
'nn::capsrv::sf::IScreenShotControlService': { | |
1: {"inbytes": 0x28, "outbytes": 0, "buffers": [70]}, | |
2: {"inbytes": 0x30, "outbytes": 0, "buffers": [70]}, | |
1001: {"inbytes": 0x10, "outbytes": 0}, | |
1002: {"inbytes": 0x18, "outbytes": 0}, | |
1003: {"inbytes": 0x58, "outbytes": 0}, | |
1011: {"inbytes": 8, "outbytes": 0}, | |
1012: {"inbytes": 8, "outbytes": 0}, | |
1201: {"inbytes": 0x10, "outbytes": 0x18}, | |
1202: {"inbytes": 0, "outbytes": 0}, | |
1203: {"inbytes": 8, "outbytes": 8, "buffers": [6]}, | |
}, | |
'nn::visrv::sf::IApplicationRootService': { | |
0: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::visrv::sf::IApplicationDisplayService']}, | |
}, | |
'nn::visrv::sf::IManagerRootService': { | |
2: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::visrv::sf::IApplicationDisplayService']}, | |
3: {"inbytes": 0xC, "outbytes": 0, "outinterfaces": ['nn::visrv::sf::IApplicationDisplayService']}, | |
}, | |
'nn::capsrv::sf::IScreenShotApplicationService': { | |
201: {"inbytes": 0x10, "outbytes": 0x20, "buffers": [69], "pid": True}, | |
203: {"inbytes": 0x50, "outbytes": 0x20, "buffers": [69], "pid": True}, | |
}, | |
'nn::capsrv::sf::IScreenShotService': { | |
201: {"inbytes": 0x10, "outbytes": 0x20, "buffers": [69], "pid": True}, | |
202: {"inbytes": 0x38, "outbytes": 0x20, "buffers": [69, 69]}, | |
203: {"inbytes": 0x50, "outbytes": 0x20, "buffers": [69], "pid": True}, | |
204: {"inbytes": 0x78, "outbytes": 0x20, "buffers": [69, 69]}, | |
}, | |
'nn::visrv::sf::ISystemRootService': { | |
1: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::visrv::sf::IApplicationDisplayService']}, | |
3: {"inbytes": 0xC, "outbytes": 0, "outinterfaces": ['nn::visrv::sf::IApplicationDisplayService']}, | |
}, | |
}, | |
'pctl': { | |
'nn::pctl::detail::ipc::IParentalControlServiceFactory': { | |
0: {"inbytes": 8, "outbytes": 0, "outinterfaces": ['nn::pctl::detail::ipc::IParentalControlService'], "pid": True}, | |
}, | |
'nn::pctl::detail::ipc::IParentalControlService': { | |
1001: {"inbytes": 0, "outbytes": 0}, | |
1002: {"inbytes": 0x10, "outbytes": 0, "buffers": [9]}, | |
1003: {"inbytes": 0x10, "outbytes": 0, "buffers": [9]}, | |
1004: {"inbytes": 0, "outbytes": 0}, | |
1005: {"inbytes": 0, "outbytes": 0}, | |
1006: {"inbytes": 0, "outbytes": 1}, | |
1007: {"inbytes": 0, "outbytes": 0}, | |
1008: {"inbytes": 0, "outbytes": 0}, | |
1009: {"inbytes": 0, "outbytes": 0}, | |
1010: {"inbytes": 0, "outbytes": 1}, | |
1011: {"inbytes": 0, "outbytes": 0}, | |
1012: {"inbytes": 0, "outbytes": 4}, | |
1031: {"inbytes": 0, "outbytes": 1}, | |
1032: {"inbytes": 0, "outbytes": 4}, | |
1033: {"inbytes": 4, "outbytes": 0}, | |
1034: {"inbytes": 4, "outbytes": 3}, | |
1035: {"inbytes": 0, "outbytes": 3}, | |
1036: {"inbytes": 3, "outbytes": 0}, | |
1037: {"inbytes": 0, "outbytes": 4}, | |
1038: {"inbytes": 4, "outbytes": 0}, | |
1039: {"inbytes": 0, "outbytes": 4}, | |
1042: {"inbytes": 8, "outbytes": 0}, | |
1043: {"inbytes": 0, "outbytes": 0}, | |
1044: {"inbytes": 4, "outbytes": 4, "buffers": [6]}, | |
1045: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
1046: {"inbytes": 0, "outbytes": 0}, | |
1047: {"inbytes": 8, "outbytes": 0}, | |
1201: {"inbytes": 0, "outbytes": 0, "buffers": [9]}, | |
1202: {"inbytes": 0, "outbytes": 0, "buffers": [9]}, | |
1203: {"inbytes": 0, "outbytes": 0, "buffers": [9]}, | |
1204: {"inbytes": 0, "outbytes": 0x20}, | |
1205: {"inbytes": 0x20, "outbytes": 1, "buffers": [9]}, | |
1206: {"inbytes": 0, "outbytes": 4}, | |
1207: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1403: {"inbytes": 0, "outbytes": 1}, | |
1406: {"inbytes": 0, "outbytes": 8}, | |
1411: {"inbytes": 0x10, "outbytes": 0x10}, | |
1421: {"inbytes": 0x10, "outbytes": 4, "buffers": [10]}, | |
1424: {"inbytes": 0x10, "outbytes": 4}, | |
1432: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1451: {"inbytes": 0, "outbytes": 0}, | |
1452: {"inbytes": 0, "outbytes": 0}, | |
1453: {"inbytes": 0, "outbytes": 1}, | |
1454: {"inbytes": 0, "outbytes": 8}, | |
1455: {"inbytes": 0, "outbytes": 1}, | |
1456: {"inbytes": 0, "outbytes": 0x34}, | |
1457: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1471: {"inbytes": 0, "outbytes": 0}, | |
1472: {"inbytes": 0, "outbytes": 0}, | |
1473: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1474: {"inbytes": 0, "outbytes": 0}, | |
1601: {"inbytes": 0, "outbytes": 1}, | |
1602: {"inbytes": 0, "outbytes": 1}, | |
1603: {"inbytes": 0, "outbytes": 2}, | |
1901: {"inbytes": 8, "outbytes": 0}, | |
1902: {"inbytes": 0, "outbytes": 0}, | |
1941: {"inbytes": 0, "outbytes": 0}, | |
1951: {"inbytes": 0x34, "outbytes": 0}, | |
1952: {"inbytes": 0, "outbytes": 8}, | |
2001: {"inbytes": 0, "outbytes": 8, "buffers": [9], "outhandles": [1]}, | |
2002: {"inbytes": 8, "outbytes": 0x10}, | |
2003: {"inbytes": 0x10, "outbytes": 8, "outhandles": [1]}, | |
2004: {"inbytes": 8, "outbytes": 0x10}, | |
2005: {"inbytes": 0, "outbytes": 8, "outhandles": [1]}, | |
2006: {"inbytes": 8, "outbytes": 0x10}, | |
2007: {"inbytes": 1, "outbytes": 8, "outhandles": [1]}, | |
2008: {"inbytes": 0xC, "outbytes": 0}, | |
2009: {"inbytes": 0x10, "outbytes": 0xC, "buffers": [6], "outhandles": [1]}, | |
2010: {"inbytes": 8, "outbytes": 4, "buffers": [6]}, | |
2011: {"inbytes": 0x10, "outbytes": 0xC, "buffers": [10], "outhandles": [1]}, | |
2012: {"inbytes": 8, "outbytes": 4, "buffers": [10]}, | |
2013: {"inbytes": 0, "outbytes": 8, "outhandles": [1]}, | |
2014: {"inbytes": 8, "outbytes": 0}, | |
2015: {"inbytes": 8, "outbytes": 8}, | |
}, | |
}, | |
'npns': { | |
'nn::npns::INpnsSystem': { | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 8, "outbytes": 0}, | |
3: {"inbytes": 2, "outbytes": 0, "buffers": [6]}, | |
4: {"inbytes": 2, "outbytes": 0, "buffers": [6]}, | |
5: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
6: {"inbytes": 0, "outbytes": 0}, | |
7: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
11: {"inbytes": 0, "outbytes": 0, "buffers": [9]}, | |
12: {"inbytes": 0, "outbytes": 0, "buffers": [9]}, | |
13: {"inbytes": 0, "outbytes": 1, "buffers": [9]}, | |
21: {"inbytes": 0x10, "outbytes": 0x28}, | |
22: {"inbytes": 0x18, "outbytes": 0x28}, | |
23: {"inbytes": 0x10, "outbytes": 0}, | |
24: {"inbytes": 0x18, "outbytes": 0}, | |
25: {"inbytes": 0x28, "outbytes": 1}, | |
31: {"inbytes": 0x10, "outbytes": 0}, | |
32: {"inbytes": 0x10, "outbytes": 0}, | |
101: {"inbytes": 0, "outbytes": 0}, | |
102: {"inbytes": 0, "outbytes": 0}, | |
103: {"inbytes": 0, "outbytes": 4}, | |
104: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
105: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
111: {"inbytes": 0, "outbytes": 0, "buffers": [10]}, | |
112: {"inbytes": 0, "outbytes": 0}, | |
113: {"inbytes": 0, "outbytes": 0}, | |
114: {"inbytes": 0, "outbytes": 0, "buffers": [9, 9]}, | |
115: {"inbytes": 0, "outbytes": 0, "buffers": [10, 10]}, | |
201: {"inbytes": 0x10, "outbytes": 0}, | |
202: {"inbytes": 4, "outbytes": 0}, | |
}, | |
'nn::npns::INpnsUser': { | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 8, "outbytes": 0}, | |
3: {"inbytes": 2, "outbytes": 0, "buffers": [6]}, | |
4: {"inbytes": 2, "outbytes": 0, "buffers": [6]}, | |
5: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
7: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
21: {"inbytes": 0x10, "outbytes": 0x28}, | |
23: {"inbytes": 0x10, "outbytes": 0}, | |
25: {"inbytes": 0x28, "outbytes": 1}, | |
101: {"inbytes": 0, "outbytes": 0}, | |
102: {"inbytes": 0, "outbytes": 0}, | |
103: {"inbytes": 0, "outbytes": 4}, | |
104: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
111: {"inbytes": 0, "outbytes": 0, "buffers": [10]}, | |
}, | |
}, | |
'eupld': { | |
'nn::eupld::sf::IControl': { | |
0: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [5, 5]}, | |
3: {"inbytes": 8, "outbytes": 0}, | |
}, | |
'nn::eupld::sf::IRequest': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 0}, | |
}, | |
}, | |
'glue': { | |
'nn::arp::detail::IReader': { | |
0: {"inbytes": 8, "outbytes": 0x10}, | |
1: {"inbytes": 8, "outbytes": 0x10}, | |
2: {"inbytes": 8, "outbytes": 0, "buffers": [22]}, | |
3: {"inbytes": 8, "outbytes": 0, "buffers": [22]}, | |
}, | |
'nn::bgtc::IStateControlService': { | |
1: {"inbytes": 0, "outbytes": 4}, | |
2: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
3: {"inbytes": 0, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 1, "outbytes": 0}, | |
}, | |
'nn::arp::detail::IRegistrar': { | |
0: {"inbytes": 8, "outbytes": 0}, | |
1: {"inbytes": 0x10, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [21]}, | |
}, | |
'nn::bgtc::ITaskService': { | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
4: {"inbytes": 0, "outbytes": 1}, | |
5: {"inbytes": 0, "outbytes": 0, "buffers": [9]}, | |
6: {"inbytes": 0, "outbytes": 1}, | |
11: {"inbytes": 4, "outbytes": 0}, | |
12: {"inbytes": 0, "outbytes": 4}, | |
13: {"inbytes": 0, "outbytes": 0}, | |
14: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
15: {"inbytes": 8, "outbytes": 0}, | |
101: {"inbytes": 0, "outbytes": 4}, | |
102: {"inbytes": 0, "outbytes": 1}, | |
103: {"inbytes": 0, "outbytes": 1}, | |
}, | |
'nn::arp::detail::IWriter': { | |
0: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::arp::detail::IRegistrar']}, | |
1: {"inbytes": 8, "outbytes": 0}, | |
}, | |
}, | |
'es': { | |
'nn::es::IETicketService': { | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [5, 5]}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
4: {"inbytes": 4, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 0}, | |
6: {"inbytes": 0, "outbytes": 0}, | |
7: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
8: {"inbytes": 0x14, "outbytes": 0, "buffers": [22]}, | |
9: {"inbytes": 0, "outbytes": 4}, | |
10: {"inbytes": 0, "outbytes": 4}, | |
11: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
12: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
13: {"inbytes": 0, "outbytes": 4, "buffers": [6, 5]}, | |
14: {"inbytes": 0x10, "outbytes": 8}, | |
15: {"inbytes": 0x10, "outbytes": 8}, | |
16: {"inbytes": 0x10, "outbytes": 8, "buffers": [6]}, | |
17: {"inbytes": 0x10, "outbytes": 8, "buffers": [6]}, | |
18: {"inbytes": 0, "outbytes": 0, "buffers": [6, 5]}, | |
19: {"inbytes": 0, "outbytes": 4, "buffers": [6, 5]}, | |
20: {"inbytes": 0x10, "outbytes": 4, "buffers": [6]}, | |
21: {"inbytes": 0, "outbytes": 0, "buffers": [22, 22, 5]}, | |
}, | |
}, | |
'fatal': { | |
'nn::fatalsrv::IService': { | |
0: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
1: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
2: {"inbytes": 0x10, "outbytes": 0, "buffers": [21], "pid": True}, | |
}, | |
'nn::fatalsrv::IPrivateService': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
}, | |
}, | |
'ro': { | |
'nn::ro::detail::IRoInterface': { | |
0: {"inbytes": 0x28, "outbytes": 8, "pid": True}, | |
1: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
2: {"inbytes": 0x18, "outbytes": 0, "pid": True}, | |
3: {"inbytes": 0x10, "outbytes": 0, "pid": True}, | |
4: {"inbytes": 8, "outbytes": 0, "inhandles": [1], "pid": True}, | |
}, | |
'nn::ro::detail::IDebugMonitorInterface': { | |
0: {"inbytes": 8, "outbytes": 4, "buffers": [6]}, | |
}, | |
}, | |
'sdb': { | |
'nn::pl::detail::ISharedFontManager': { | |
0: {"inbytes": 4, "outbytes": 0}, | |
1: {"inbytes": 4, "outbytes": 4}, | |
2: {"inbytes": 4, "outbytes": 4}, | |
3: {"inbytes": 4, "outbytes": 4}, | |
4: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
5: {"inbytes": 8, "outbytes": 8, "buffers": [6, 6, 6]}, | |
}, | |
'nn::mii::detail::IDatabaseService': { | |
0: {"inbytes": 4, "outbytes": 1}, | |
1: {"inbytes": 0, "outbytes": 1}, | |
2: {"inbytes": 4, "outbytes": 4}, | |
3: {"inbytes": 4, "outbytes": 4, "buffers": [6]}, | |
4: {"inbytes": 4, "outbytes": 4, "buffers": [6]}, | |
5: {"inbytes": 0x5C, "outbytes": 0x58}, | |
6: {"inbytes": 0xC, "outbytes": 0x58}, | |
7: {"inbytes": 4, "outbytes": 0x58}, | |
8: {"inbytes": 4, "outbytes": 4, "buffers": [6]}, | |
9: {"inbytes": 4, "outbytes": 4, "buffers": [6]}, | |
10: {"inbytes": 0x48, "outbytes": 0x44}, | |
11: {"inbytes": 0x11, "outbytes": 4}, | |
12: {"inbytes": 0x14, "outbytes": 0}, | |
13: {"inbytes": 0x44, "outbytes": 0}, | |
14: {"inbytes": 0x10, "outbytes": 0}, | |
15: {"inbytes": 0, "outbytes": 0}, | |
16: {"inbytes": 0, "outbytes": 0}, | |
17: {"inbytes": 0, "outbytes": 0}, | |
18: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
19: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
20: {"inbytes": 0, "outbytes": 1}, | |
21: {"inbytes": 0x58, "outbytes": 4}, | |
}, | |
'nn::pdm::detail::INotifyService': { | |
0: {"inbytes": 0x10, "outbytes": 0}, | |
2: {"inbytes": 1, "outbytes": 0}, | |
3: {"inbytes": 1, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 0}, | |
5: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
}, | |
'nn::pdm::detail::IQueryService': { | |
0: {"inbytes": 4, "outbytes": 4, "buffers": [6]}, | |
1: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
2: {"inbytes": 0x10, "outbytes": 4, "buffers": [6]}, | |
3: {"inbytes": 8, "outbytes": 4, "buffers": [6]}, | |
4: {"inbytes": 8, "outbytes": 0x28}, | |
5: {"inbytes": 0x18, "outbytes": 0x28}, | |
6: {"inbytes": 0x10, "outbytes": 0x28}, | |
7: {"inbytes": 0, "outbytes": 4, "buffers": [6, 5]}, | |
8: {"inbytes": 4, "outbytes": 4, "buffers": [6]}, | |
9: {"inbytes": 0, "outbytes": 0xC}, | |
10: {"inbytes": 4, "outbytes": 4, "buffers": [6]}, | |
}, | |
'nn::mii::detail::IStaticService': { | |
0: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::mii::detail::IDatabaseService']}, | |
}, | |
}, | |
} |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# from 4.0.1 | |
data4 = { | |
'fs': { | |
'nn::fssrv::sf::IFileSystemProxy': { | |
1: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
2: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
7: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
8: {"inbytes": 0x10, "outbytes": 0, "buffers": [25], "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
9: {"inbytes": 8, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
11: {"inbytes": 4, "outbytes": 0, "buffers": [25], "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
12: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IStorage']}, | |
13: {"inbytes": 0, "outbytes": 0}, | |
17: {"inbytes": 0, "outbytes": 0, "buffers": [25], "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
18: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
19: {"inbytes": 0, "outbytes": 0}, | |
21: {"inbytes": 8, "outbytes": 0}, | |
22: {"inbytes": 0x90, "outbytes": 0}, | |
23: {"inbytes": 0x80, "outbytes": 0}, | |
24: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
25: {"inbytes": 0x10, "outbytes": 0}, | |
26: {"inbytes": 0, "outbytes": 0}, | |
27: {"inbytes": 0, "outbytes": 1}, | |
28: {"inbytes": 0x48, "outbytes": 0}, | |
30: {"inbytes": 8, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IStorage']}, | |
31: {"inbytes": 8, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
32: {"inbytes": 0x20, "outbytes": 0}, | |
51: {"inbytes": 0x48, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
52: {"inbytes": 0x48, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
53: {"inbytes": 0x48, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
57: {"inbytes": 0x10, "outbytes": 0, "buffers": [6]}, | |
58: {"inbytes": 8, "outbytes": 0, "buffers": [6]}, | |
59: {"inbytes": 0x10, "outbytes": 0, "buffers": [5]}, | |
60: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::ISaveDataInfoReader']}, | |
61: {"inbytes": 1, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::ISaveDataInfoReader']}, | |
80: {"inbytes": 0x48, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IFile']}, | |
81: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::ISaveDataTransferManager']}, | |
100: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
110: {"inbytes": 4, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
200: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IStorage']}, | |
201: {"inbytes": 8, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IStorage']}, | |
202: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IStorage']}, | |
203: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IStorage']}, | |
400: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IDeviceOperator']}, | |
500: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IEventNotifier']}, | |
501: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IEventNotifier']}, | |
601: {"inbytes": 0x10, "outbytes": 8}, | |
602: {"inbytes": 8, "outbytes": 0, "buffers": [6]}, | |
603: {"inbytes": 8, "outbytes": 0}, | |
604: {"inbytes": 8, "outbytes": 0}, | |
605: {"inbytes": 0, "outbytes": 0}, | |
606: {"inbytes": 0x10, "outbytes": 0x10}, | |
607: {"inbytes": 0x20, "outbytes": 0}, | |
608: {"inbytes": 0, "outbytes": 0}, | |
609: {"inbytes": 0, "outbytes": 0x10, "buffers": [25]}, | |
610: {"inbytes": 0, "outbytes": 0x18, "buffers": [25]}, | |
611: {"inbytes": 0x10, "outbytes": 0}, | |
612: {"inbytes": 1, "outbytes": 8}, | |
613: {"inbytes": 0x10, "outbytes": 0, "buffers": [6]}, | |
614: {"inbytes": 0x10, "outbytes": 0}, | |
620: {"inbytes": 0x10, "outbytes": 0}, | |
630: {"inbytes": 1, "outbytes": 0}, | |
631: {"inbytes": 0, "outbytes": 1}, | |
640: {"inbytes": 0, "outbytes": 1}, | |
800: {"inbytes": 0, "outbytes": 0x80}, | |
1000: {"inbytes": 4, "outbytes": 0, "buffers": [25]}, | |
1001: {"inbytes": 0x10, "outbytes": 0}, | |
1002: {"inbytes": 0, "outbytes": 0, "buffers": [25]}, | |
1003: {"inbytes": 0, "outbytes": 0}, | |
1004: {"inbytes": 4, "outbytes": 0}, | |
1005: {"inbytes": 0, "outbytes": 4}, | |
1006: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
1007: {"inbytes": 0, "outbytes": 0}, | |
1008: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
1009: {"inbytes": 0, "outbytes": 0x80}, | |
1100: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
}, | |
'nn::fssrv::sf::IFileSystem': { | |
0: {"inbytes": 0x10, "outbytes": 0, "buffers": [25]}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [25]}, | |
2: {"inbytes": 0, "outbytes": 0, "buffers": [25]}, | |
3: {"inbytes": 0, "outbytes": 0, "buffers": [25]}, | |
4: {"inbytes": 0, "outbytes": 0, "buffers": [25]}, | |
5: {"inbytes": 0, "outbytes": 0, "buffers": [25, 25]}, | |
6: {"inbytes": 0, "outbytes": 0, "buffers": [25, 25]}, | |
7: {"inbytes": 0, "outbytes": 4, "buffers": [25]}, | |
8: {"inbytes": 4, "outbytes": 0, "buffers": [25], "outinterfaces": ['nn::fssrv::sf::IFile']}, | |
9: {"inbytes": 4, "outbytes": 0, "buffers": [25], "outinterfaces": ['nn::fssrv::sf::IDirectory']}, | |
10: {"inbytes": 0, "outbytes": 0}, | |
11: {"inbytes": 0, "outbytes": 8, "buffers": [25]}, | |
12: {"inbytes": 0, "outbytes": 8, "buffers": [25]}, | |
13: {"inbytes": 0, "outbytes": 0, "buffers": [25]}, | |
14: {"inbytes": 0, "outbytes": 0x20, "buffers": [25]}, | |
15: {"inbytes": 4, "outbytes": 0, "buffers": [25, 70, 69]}, | |
}, | |
'nn::fssrv::sf::IFile': { | |
0: {"inbytes": 0x18, "outbytes": 8, "buffers": [70]}, | |
1: {"inbytes": 0x18, "outbytes": 0, "buffers": [69]}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 8, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 8}, | |
5: {"inbytes": 0x18, "outbytes": 0x40}, | |
}, | |
'nn::fssrv::sf::IDirectory': { | |
0: {"inbytes": 0, "outbytes": 8, "buffers": [6]}, | |
1: {"inbytes": 0, "outbytes": 8}, | |
}, | |
'nn::fssrv::sf::IStorage': { | |
0: {"inbytes": 0x10, "outbytes": 0, "buffers": [70]}, | |
1: {"inbytes": 0x10, "outbytes": 0, "buffers": [69]}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
3: {"inbytes": 8, "outbytes": 0}, | |
4: {"inbytes": 0, "outbytes": 8}, | |
5: {"inbytes": 0x18, "outbytes": 0x40}, | |
}, | |
'nn::fssrv::sf::ISaveDataInfoReader': { | |
0: {"inbytes": 0, "outbytes": 8, "buffers": [6]}, | |
}, | |
'nn::fssrv::sf::ISaveDataTransferManager': { | |
0: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
16: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
32: {"inbytes": 0x10, "outbytes": 0, "outinterfaces": ['nn::fssrv::sf::ISaveDataExporter']}, | |
64: {"inbytes": 0x18, "outbytes": 8, "buffers": [5], "outinterfaces": ['nn::fssrv::sf::ISaveDataImporter']}, | |
}, | |
'nn::fssrv::sf::ISaveDataExporter': { | |
0: {"inbytes": 0, "outbytes": 0, "buffers": [26]}, | |
1: {"inbytes": 0, "outbytes": 8}, | |
16: {"inbytes": 0, "outbytes": 8, "buffers": [6]}, | |
17: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
}, | |
'nn::fssrv::sf::ISaveDataImporter': { | |
0: {"inbytes": 0, "outbytes": 0, "buffers": [26]}, | |
1: {"inbytes": 0, "outbytes": 8}, | |
16: {"inbytes": 0, "outbytes": 0, "buffers": [5]}, | |
17: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::fssrv::sf::IDeviceOperator': { | |
0: {"inbytes": 0, "outbytes": 1}, | |
1: {"inbytes": 0, "outbytes": 8}, | |
2: {"inbytes": 8, "outbytes": 0, "buffers": [6]}, | |
3: {"inbytes": 0, "outbytes": 8}, | |
4: {"inbytes": 0, "outbytes": 8}, | |
5: {"inbytes": 8, "outbytes": 0x18, "buffers": [6]}, | |
100: {"inbytes": 8, "outbytes": 0, "buffers": [6]}, | |
101: {"inbytes": 0, "outbytes": 8}, | |
110: {"inbytes": 4, "outbytes": 0}, | |
111: {"inbytes": 4, "outbytes": 8}, | |
112: {"inbytes": 0, "outbytes": 4}, | |
113: {"inbytes": 8, "outbytes": 0x18, "buffers": [6]}, | |
114: {"inbytes": 8, "outbytes": 0, "buffers": [6]}, | |
115: {"inbytes": 0, "outbytes": 0}, | |
116: {"inbytes": 0, "outbytes": 0}, | |
200: {"inbytes": 0, "outbytes": 1}, | |
201: {"inbytes": 0x10, "outbytes": 0}, | |
202: {"inbytes": 0, "outbytes": 4}, | |
203: {"inbytes": 4, "outbytes": 0x10}, | |
204: {"inbytes": 0, "outbytes": 0}, | |
205: {"inbytes": 4, "outbytes": 1}, | |
206: {"inbytes": 0x10, "outbytes": 0, "buffers": [6]}, | |
207: {"inbytes": 0x10, "outbytes": 0, "buffers": [6, 5]}, | |
208: {"inbytes": 8, "outbytes": 0, "buffers": [6]}, | |
209: {"inbytes": 0x10, "outbytes": 0, "buffers": [6]}, | |
210: {"inbytes": 1, "outbytes": 0}, | |
211: {"inbytes": 0x10, "outbytes": 0, "buffers": [6]}, | |
212: {"inbytes": 0x10, "outbytes": 0, "buffers": [6, 5]}, | |
213: {"inbytes": 8, "outbytes": 0, "buffers": [5]}, | |
214: {"inbytes": 8, "outbytes": 0, "buffers": [6]}, | |
215: {"inbytes": 0, "outbytes": 0}, | |
216: {"inbytes": 0, "outbytes": 0x10}, | |
217: {"inbytes": 0, "outbytes": 0x40}, | |
218: {"inbytes": 8, "outbytes": 0, "buffers": [6]}, | |
300: {"inbytes": 4, "outbytes": 0}, | |
301: {"inbytes": 0, "outbytes": 4}, | |
}, | |
'nn::fssrv::sf::IEventNotifier': { | |
0: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
}, | |
'nn::fssrv::sf::IFileSystemProxyForLoader': { | |
0: {"inbytes": 8, "outbytes": 0, "buffers": [25], "outinterfaces": ['nn::fssrv::sf::IFileSystem']}, | |
1: {"inbytes": 8, "outbytes": 1}, | |
2: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
}, | |
'nn::fssrv::sf::IProgramRegistry': { | |
0: {"inbytes": 0x28, "outbytes": 0, "buffers": [5, 5]}, | |
1: {"inbytes": 8, "outbytes": 0}, | |
2: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
256: {"inbytes": 1, "outbytes": 0}, | |
}, | |
}, | |
'loader': { | |
'nn::ldr::detail::IProcessManagerInterface': { | |
0: {"inbytes": 0x10, "outbytes": 0, "inhandles": [1], "outhandles": [2]}, | |
1: {"inbytes": 0x10, "outbytes": 0, "buffers": [26]}, | |
2: {"inbytes": 0x10, "outbytes": 8}, | |
3: {"inbytes": 8, "outbytes": 0}, | |
}, | |
'nn::ldr::detail::IShellInterface': { | |
0: {"inbytes": 0x10, "outbytes": 0, "buffers": [9]}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::ldr::detail::IDebugMonitorInterface': { | |
0: {"inbytes": 0x10, "outbytes": 0, "buffers": [9]}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
2: {"inbytes": 8, "outbytes": 4, "buffers": [10]}, | |
}, | |
}, | |
'ncm': { | |
'nn::ncm::IContentManager': { | |
0: {"inbytes": 1, "outbytes": 0}, | |
1: {"inbytes": 1, "outbytes": 0}, | |
2: {"inbytes": 1, "outbytes": 0}, | |
3: {"inbytes": 1, "outbytes": 0}, | |
4: {"inbytes": 1, "outbytes": 0, "outinterfaces": ['nn::ncm::IContentStorage']}, | |
5: {"inbytes": 1, "outbytes": 0, "outinterfaces": ['nn::ncm::IContentMetaDatabase']}, | |
8: {"inbytes": 1, "outbytes": 0}, | |
9: {"inbytes": 1, "outbytes": 0}, | |
10: {"inbytes": 1, "outbytes": 0}, | |
11: {"inbytes": 1, "outbytes": 0}, | |
12: {"inbytes": 1, "outbytes": 0}, | |
}, | |
'nn::ncm::IContentStorage': { | |
0: {"inbytes": 0, "outbytes": 0x10}, | |
1: {"inbytes": 0x28, "outbytes": 0}, | |
2: {"inbytes": 0x10, "outbytes": 0}, | |
3: {"inbytes": 0x10, "outbytes": 1}, | |
4: {"inbytes": 0x18, "outbytes": 0, "buffers": [5]}, | |
5: {"inbytes": 0x20, "outbytes": 0}, | |
6: {"inbytes": 0x10, "outbytes": 0}, | |
7: {"inbytes": 0x10, "outbytes": 1}, | |
8: {"inbytes": 0x10, "outbytes": 0, "buffers": [26]}, | |
9: {"inbytes": 0x10, "outbytes": 0, "buffers": [26]}, | |
10: {"inbytes": 0, "outbytes": 0}, | |
11: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
12: {"inbytes": 0, "outbytes": 4}, | |
13: {"inbytes": 4, "outbytes": 4, "buffers": [6]}, | |
14: {"inbytes": 0x10, "outbytes": 8}, | |
15: {"inbytes": 0, "outbytes": 0}, | |
16: {"inbytes": 0x30, "outbytes": 0}, | |
17: {"inbytes": 0x18, "outbytes": 0}, | |
18: {"inbytes": 0x18, "outbytes": 0, "buffers": [6]}, | |
19: {"inbytes": 0x10, "outbytes": 0x18}, | |
20: {"inbytes": 0x10, "outbytes": 0x18}, | |
21: {"inbytes": 0x18, "outbytes": 0, "buffers": [5]}, | |
22: {"inbytes": 0, "outbytes": 8}, | |
23: {"inbytes": 0, "outbytes": 8}, | |
24: {"inbytes": 0, "outbytes": 0}, | |
25: {"inbytes": 0x10, "outbytes": 8}, | |
26: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::ncm::IContentMetaDatabase': { | |
0: {"inbytes": 0x10, "outbytes": 0, "buffers": [5]}, | |
1: {"inbytes": 0x10, "outbytes": 8, "buffers": [6]}, | |
2: {"inbytes": 0x10, "outbytes": 0}, | |
3: {"inbytes": 0x18, "outbytes": 0x10}, | |
4: {"inbytes": 0x18, "outbytes": 4, "buffers": [6]}, | |
5: {"inbytes": 0x20, "outbytes": 8, "buffers": [6]}, | |
6: {"inbytes": 8, "outbytes": 0x10}, | |
7: {"inbytes": 1, "outbytes": 8, "buffers": [6]}, | |
8: {"inbytes": 0x10, "outbytes": 1}, | |
9: {"inbytes": 0, "outbytes": 1, "buffers": [5]}, | |
10: {"inbytes": 0x10, "outbytes": 8}, | |
11: {"inbytes": 0x10, "outbytes": 4}, | |
12: {"inbytes": 0x10, "outbytes": 8}, | |
13: {"inbytes": 0, "outbytes": 0}, | |
14: {"inbytes": 0, "outbytes": 0, "buffers": [6, 5]}, | |
15: {"inbytes": 0, "outbytes": 0}, | |
16: {"inbytes": 0x20, "outbytes": 1}, | |
17: {"inbytes": 0x18, "outbytes": 4, "buffers": [6]}, | |
18: {"inbytes": 0x10, "outbytes": 1}, | |
19: {"inbytes": 0x10, "outbytes": 4}, | |
}, | |
'nn::lr::ILocationResolverManager': { | |
0: {"inbytes": 1, "outbytes": 0, "outinterfaces": ['nn::lr::ILocationResolver']}, | |
1: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::lr::IRegisteredLocationResolver']}, | |
2: {"inbytes": 1, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0, "outinterfaces": ['nn::lr::IAddOnContentLocationResolver']}, | |
}, | |
'nn::lr::ILocationResolver': { | |
0: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
1: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
2: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
3: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
4: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
5: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
6: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
7: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
8: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
9: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::lr::IRegisteredLocationResolver': { | |
0: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
1: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
2: {"inbytes": 8, "outbytes": 0}, | |
3: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
4: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
5: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
6: {"inbytes": 8, "outbytes": 0}, | |
7: {"inbytes": 8, "outbytes": 0, "buffers": [25]}, | |
}, | |
'nn::lr::IAddOnContentLocationResolver': { | |
0: {"inbytes": 8, "outbytes": 0, "buffers": [26]}, | |
1: {"inbytes": 0x10, "outbytes": 0}, | |
2: {"inbytes": 0, "outbytes": 0}, | |
}, | |
}, | |
'pm': { | |
'nn::pm::detail::IShellInterface': { | |
0: {"inbytes": 0x18, "outbytes": 8}, | |
1: {"inbytes": 8, "outbytes": 0}, | |
2: {"inbytes": 8, "outbytes": 0}, | |
3: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
4: {"inbytes": 0, "outbytes": 0x10}, | |
5: {"inbytes": 8, "outbytes": 0}, | |
6: {"inbytes": 8, "outbytes": 0}, | |
7: {"inbytes": 0, "outbytes": 0}, | |
8: {"inbytes": 0, "outbytes": 8}, | |
9: {"inbytes": 8, "outbytes": 0}, | |
}, | |
'nn::pm::detail::IDebugMonitorInterface': { | |
0: {"inbytes": 8, "outbytes": 4, "buffers": [6]}, | |
1: {"inbytes": 0, "outbytes": 4, "buffers": [6]}, | |
2: {"inbytes": 8, "outbytes": 0}, | |
3: {"inbytes": 8, "outbytes": 8}, | |
4: {"inbytes": 8, "outbytes": 0, "outhandles": [1]}, | |
5: {"inbytes": 0, "outbytes": 8}, | |
6: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
}, | |
'nn::pm::detail::IBootModeInterface': { | |
0: {"inbytes": 0, "outbytes": 4}, | |
1: {"inbytes": 0, "outbytes": 0}, | |
}, | |
'nn::pm::detail::IInformationInterface': { | |
0: {"inbytes": 8, "outbytes": 8}, | |
}, | |
}, | |
'sm': { | |
'nn::sm::detail::IUserInterface': { | |
0: {"inbytes": 8, "outbytes": 0, "pid": True}, | |
1: {"inbytes": 8, "outbytes": 0, "outhandles": [2]}, | |
2: {"inbytes": 0x10, "outbytes": 0, "outhandles": [2]}, | |
3: {"inbytes": 8, "outbytes": 0}, | |
}, | |
'nn::sm::detail::IManagerInterface': { | |
0: {"inbytes": 8, "outbytes": 0, "buffers": [5, 5]}, | |
1: {"inbytes": 8, "outbytes": 0}, | |
}, | |
}, | |
'spl': { | |
'nn::spl::detail::IGeneralInterface': { | |
0: {"inbytes": 4, "outbytes": 8}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [10, 9, 9, 9]}, | |
5: {"inbytes": 0x10, "outbytes": 0}, | |
7: {"inbytes": 0, "outbytes": 0, "buffers": [10]}, | |
11: {"inbytes": 0, "outbytes": 1}, | |
24: {"inbytes": 4, "outbytes": 0}, | |
25: {"inbytes": 0, "outbytes": 4}, | |
}, | |
'nn::spl::detail::IRandomInterface': { | |
0: {"inbytes": 0, "outbytes": 0, "buffers": [6]}, | |
}, | |
'nn::spl::detail::ICryptoInterface': { | |
0: {"inbytes": 4, "outbytes": 8}, | |
1: {"inbytes": 0, "outbytes": 0, "buffers": [10, 9, 9, 9]}, | |
2: {"inbytes": 0x18, "outbytes": 0x10}, | |
3: {"inbytes": 0x24, "outbytes": 0}, | |
4: {"inbytes": 0x20, "outbytes": 0x10}, | |
5: {"inbytes": 0x10, "outbytes": 0}, | |
7: {"inbytes": 0, "outbytes": 0, "buffers": [10]}, | |
11: {"inbytes": 0, "outbytes": 1}, | |
14: {"inbytes": 0x18, "outbytes": 0x10}, | |
15: {"inbytes": 0x14, "outbytes": 0, "buffers": [70, 69]}, | |
16: {"inbytes": 4, "outbytes": 0x10, "buffers": [9]}, | |
21: {"inbytes": 0, "outbytes": 4}, | |
22: {"inbytes": 4, "outbytes": 0}, | |
23: {"inbytes": 0, "outbytes": 0, "outhandles": [1]}, | |
24 |
View raw
(Sorry about that, but we can’t show files that are this big right now.)
View raw
(Sorry about that, but we can’t show files that are this big right now.)
View raw
(Sorry about that, but we can’t show files that are this big right now.)
View raw
(Sorry about that, but we can’t show files that are this big right now.)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment