Home
last modified time | relevance | path

Searched refs:cs_realloc_t (Results 1 – 4 of 4) sorted by relevance

/external/capstone/include/capstone/
Dcapstone.h142 typedef void* (CAPSTONE_API *cs_realloc_t)(void *ptr, size_t size); typedef
152 cs_realloc_t realloc;
/external/capstone/
Dcs_priv.h85 extern cs_realloc_t cs_mem_realloc;
Dcs.c334 cs_realloc_t cs_mem_realloc = realloc;
346 cs_realloc_t cs_mem_realloc = cs_winkernel_realloc;
362 cs_realloc_t cs_mem_realloc = kern_os_realloc;
370 cs_realloc_t cs_mem_realloc = NULL;
/external/capstone/docs/Capstone-Engine-Documentation/
DCapstone-Engine Documentation.md263 cs_realloc_t realloc;
722 cs_realloc_t realloc;
800 ### cs_realloc_t subsection
802 `void* (CAPSTONE_API *cs_realloc_t)(void *ptr, size_t size);`
808 用户模式: `cs_realloc_t cs_mem_realloc = realloc;`,调用系统realloc
810 Windows driver模式: `cs_realloc_t cs_mem_realloc = cs_winkernel_realloc;`
841 > OSX kernel模式: `cs_realloc_t cs_mem_realloc = kern_os_realloc;`