Frida Docs Unified
    Preparing search index...

    Interface MemoryAccessDetails

    interface MemoryAccessDetails {
        address: NativePointer;
        context: CpuContext;
        from: NativePointer;
        operation: MemoryOperation;
        pageIndex: number;
        pagesCompleted: number;
        pagesTotal: number;
        rangeIndex: number;
        threadId: number;
    }
    Index

    Properties

    address: NativePointer

    Address being accessed.

    context: CpuContext

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

    Address of instruction performing the access.

    operation: MemoryOperation

    The kind of operation that triggered the access.

    pageIndex: number

    Index of the accessed memory page inside the specified range.

    pagesCompleted: number

    Overall number of pages which have been accessed so far, and are thus no longer being monitored.

    pagesTotal: number

    Overall number of pages that were initially monitored.

    rangeIndex: number

    Index of the accessed range in the ranges provided to MemoryAccessMonitor.enable().

    threadId: number

    The ID of the thread performing the access.