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

Function dump

g2all/900/send.js:92–107  ·  view source on GitHub ↗
(name, lib_base, lib_end)

Source from the content-addressed store, hash-verified

90
91// dump a module's .text and PT_SCE_RELRO segments only
92function dump(name, lib_base, lib_end) {
93 // assumed size < 4GB
94 const lib_size = lib_end.sub(lib_base).lo;
95 log(`${name} base: ${lib_base}`);
96 log(`${name} size: ${lib_size}`);
97 const lib = make_buffer(
98 lib_base,
99 lib_size
100 );
101 send(
102 url,
103 lib,
104 `${name}.sprx.text_${lib_base}.bin`,
105 () => log(`${name} sent`)
106 );
107}
108
109// dump for libSceNKWebKit.sprx
110function 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