Frida Docs Unified
    Preparing search index...

    Interface EnumerateLoadedClassesCallbacks

    interface EnumerateLoadedClassesCallbacks {
        onComplete: () => void;
        onMatch: (name: string, handle: NativePointer) => void;
    }
    Index

    Properties

    Properties

    onComplete: () => void

    Called when all loaded classes have been enumerated.

    onMatch: (name: string, handle: NativePointer) => void

    Called with the name of each currently loaded class, and a JNI reference for its Java Class object.

    Pass the name to Java.use() to get a JavaScript wrapper. You may also Java.cast() the handle to java.lang.Class.