MCPcopy Create free account
hub / github.com/GamerHack/GamerHack.github.io / dump

Function dump

g2all/700/send.js:87–94  ·  view source on GitHub ↗
(name, lib_base, lib_end)

Source from the content-addressed store, hash-verified

85
86// dump a module's .text and PT_SCE_RELRO segments only
87function dump(name, lib_base, lib_end) {
88 // assumed size < 4GB
89 const lib_size = lib_end.sub(lib_base).lo;
90 log(`${name} base: ${lib_base}`);
91 log(`${name} size: ${lib_size}`);
92 const lib = make_buffer(lib_base, lib_size);
93 send(url, lib, `${name}.sprx.text_${lib_base}.bin`, () => log(`${name} sent`));
94}
95
96// dump for libSceNKWebKit.sprx
97function dump_libwebkit() {

Callers 3

dump_libwebkitFunction · 0.70
dump_libkernelFunction · 0.70
dump_libcFunction · 0.70

Calls 4

logFunction · 0.90
make_bufferFunction · 0.90
sendFunction · 0.90
subMethod · 0.45

Tested by

no test coverage detected