Frida Docs Unified
    Preparing search index...

    Interface PortableInvocationContext

    interface PortableInvocationContext {
        context: CpuContext;
        depth: number;
        returnAddress: NativePointer;
        threadId: number;
        [x: string]: any;
    }

    Hierarchy (View Summary)

    Indexable

    • [x: string]: any

      User-defined invocation data. Useful if you want to read an argument in onEnter and act on it in onLeave.

    Index

    Properties

    context: CpuContext

    CPU registers. You may also update register values by assigning to these keys.

    depth: number

    Call depth of relative to other invocations.

    returnAddress: NativePointer

    Return address.

    threadId: number

    OS thread ID.