MCPcopy Create free account
hub / github.com/axhlzy/Il2CppHookScripts / showAllClassesMethods

Function showAllClassesMethods

Il2cppHook/_Ufunc.js:7579–7593  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

7577 });
7578};
7579const showAllClassesMethods = () => {
7580 Java.perform(function () {
7581 Java.enumerateLoadedClasses({
7582 onMatch: function (className) {
7583 LOG("[*] Class Name: " + className);
7584 var db1 = Java.use(className);
7585 var methodArr = db1.class.getMethods();
7586 for (var m in methodArr) {
7587 LOG("\t" + methodArr[m]);
7588 }
7589 },
7590 onComplete: function () { }
7591 });
7592 });
7593};
7594const showAllClasses = () => {
7595 Java.perform(function () {
7596 Java.enumerateLoadedClasses({

Callers

nothing calls this directly

Calls 2

performMethod · 0.80
LOGFunction · 0.70

Tested by

no test coverage detected