Frida Docs Unified
    Preparing search index...
    interface Frame {
        className: string;
        fileName: string;
        lineNumber: number;
        methodFlags: number;
        methodName: string;
        origin: string;
        signature: string;
    }
    Index

    Properties

    className: string

    Class name that method belongs to, e.g. "android.os.Looper".

    fileName: string

    Source file name, e.g. "Looper.java".

    lineNumber: number

    Source line number, e.g. 201.

    methodFlags: number

    Method flags. E.g. Java.ACC_PUBLIC | Java.ACC_STATIC.

    methodName: string

    Method name, e.g. "loopOnce".

    origin: string

    Where the code is from, i.e. the filesystem path to the .dex on Android.

    signature: string

    Signature, e.g. "Landroid/os/Looper;,loopOnce,(Landroid/os/Looper;JI)Z".