Type Alias frida_sys::GMemVTable

source ·
pub type GMemVTable = _GMemVTable;

Aliased Type§

struct GMemVTable {
    pub malloc: Option<unsafe extern "C" fn(_: u64) -> *mut c_void>,
    pub realloc: Option<unsafe extern "C" fn(_: *mut c_void, _: u64) -> *mut c_void>,
    pub memalign: Option<unsafe extern "C" fn(_: u64, _: u64) -> *mut c_void>,
    pub free: Option<unsafe extern "C" fn(_: *mut c_void)>,
    pub calloc: Option<unsafe extern "C" fn(_: u64, _: u64) -> *mut c_void>,
    pub try_malloc: Option<unsafe extern "C" fn(_: u64) -> *mut c_void>,
    pub try_realloc: Option<unsafe extern "C" fn(_: *mut c_void, _: u64) -> *mut c_void>,
}

Fields§

§malloc: Option<unsafe extern "C" fn(_: u64) -> *mut c_void>§realloc: Option<unsafe extern "C" fn(_: *mut c_void, _: u64) -> *mut c_void>§memalign: Option<unsafe extern "C" fn(_: u64, _: u64) -> *mut c_void>§free: Option<unsafe extern "C" fn(_: *mut c_void)>§calloc: Option<unsafe extern "C" fn(_: u64, _: u64) -> *mut c_void>§try_malloc: Option<unsafe extern "C" fn(_: u64) -> *mut c_void>§try_realloc: Option<unsafe extern "C" fn(_: *mut c_void, _: u64) -> *mut c_void>