Frida Docs Unified
    Preparing search index...

    Interface ModuleSymbolDetails

    interface ModuleSymbolDetails {
        address: NativePointer;
        isGlobal: boolean;
        name: string;
        section?: ModuleSymbolSectionDetails;
        size?: number;
        type: ModuleSymbolType;
    }
    Index

    Properties

    address: NativePointer

    Absolute address.

    isGlobal: boolean

    Whether symbol is globally visible.

    name: string

    Symbol name.

    Which section this symbol resides in, if available.

    size?: number

    Size in bytes, if available.

    The kind of symbol.