Home
last modified time | relevance | path

Searched refs:CAPSTONE_API (Results 1 – 5 of 5) sorted by relevance

/external/capstone/include/
Dcapstone.h29 #define CAPSTONE_API __cdecl macro
36 #define CAPSTONE_API
113 typedef void* (CAPSTONE_API *cs_malloc_t)(size_t size);
114 typedef void* (CAPSTONE_API *cs_calloc_t)(size_t nmemb, size_t size);
115 typedef void* (CAPSTONE_API *cs_realloc_t)(void *ptr, size_t size);
116 typedef void (CAPSTONE_API *cs_free_t)(void *ptr);
117 typedef int (CAPSTONE_API *cs_vsnprintf_t)(char *str, size_t size, const char *format, va_list ap);
184 typedef size_t (CAPSTONE_API *cs_skipdata_cb_t)(const uint8_t *code, size_t code_size, size_t offse…
331 unsigned int CAPSTONE_API cs_version(int *major, int *minor);
348 bool CAPSTONE_API cs_support(int query);
[all …]
/external/capstone/windows/
Dwinkernel_mm.h13 void CAPSTONE_API cs_winkernel_free(void *ptr);
14 void * CAPSTONE_API cs_winkernel_malloc(size_t size);
15 void * CAPSTONE_API cs_winkernel_calloc(size_t n, size_t size);
16 void * CAPSTONE_API cs_winkernel_realloc(void *ptr, size_t size);
17 int CAPSTONE_API cs_winkernel_vsnprintf(char *buffer, size_t count, const char *format, va_list arg…
Dwinkernel_mm.c21 void CAPSTONE_API cs_winkernel_free(void *ptr) in cs_winkernel_free()
29 void * CAPSTONE_API cs_winkernel_malloc(size_t size) in cs_winkernel_malloc()
56 void * CAPSTONE_API cs_winkernel_calloc(size_t n, size_t size) in cs_winkernel_calloc()
69 void * CAPSTONE_API cs_winkernel_realloc(void *ptr, size_t size) in cs_winkernel_realloc()
99 int CAPSTONE_API cs_winkernel_vsnprintf(char *buffer, size_t count, const char *format, va_list arg… in cs_winkernel_vsnprintf()
/external/capstone/
Dcs.c143 unsigned int CAPSTONE_API cs_version(int *major, int *minor) in cs_version()
156 bool CAPSTONE_API cs_support(int query) in cs_support()
190 cs_err CAPSTONE_API cs_errno(csh handle) in cs_errno()
202 const char * CAPSTONE_API cs_strerror(cs_err code) in cs_strerror()
235 cs_err CAPSTONE_API cs_open(cs_arch arch, cs_mode mode, csh *handle) in cs_open()
280 cs_err CAPSTONE_API cs_close(csh *handle) in cs_close()
390 cs_err CAPSTONE_API cs_option(csh ud, cs_opt_type type, size_t value) in cs_option()
472 size_t CAPSTONE_API cs_disasm(csh ud, const uint8_t *buffer, size_t size, uint64_t offset, size_t c… in cs_disasm()
680 size_t CAPSTONE_API cs_disasm_ex(csh ud, const uint8_t *buffer, size_t size, uint64_t offset, size_… in cs_disasm_ex()
686 void CAPSTONE_API cs_free(cs_insn *insn, size_t count) in cs_free()
[all …]
/external/capstone/tests/
Dtest_skipdata.c33 static size_t CAPSTONE_API mycallback(const uint8_t *buffer, size_t buffer_size, size_t offset, voi… in mycallback()