MCPcopy Create free account
hub / github.com/axhlzy/FridaDebugger / formatEntry

Function formatEntry

agent/il2cpp-symbols.ts:440–445  ·  view source on GitHub ↗
(address: NativePointer, entry: MethodEntry)

Source from the content-addressed store, hash-verified

438}
439
440function formatEntry(address: NativePointer, entry: MethodEntry): string {
441 const offset = address.sub(entry.start).toUInt32();
442 const methodText = formatMethod(entry.methods[0]);
443 const aliasText = entry.methods.length > 1 ? ` (+${entry.methods.length - 1} aliases)` : "";
444 return offset === 0 ? `${methodText}${aliasText}` : `${methodText}+0x${offset.toString(16)}${aliasText}`;
445}
446
447function formatMethod(method: Il2Cpp.Method): string {
448 try {

Callers 3

resolveIl2CppAddressFunction · 0.85
findIl2CppFunctionRangeFunction · 0.85

Calls 1

formatMethodFunction · 0.85

Tested by

no test coverage detected