Home
last modified time | relevance | path

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

/aosp_15_r20/external/capstone/include/capstone/
H A Dcapstone.h25 #define CAPSTONE_API __cdecl macro
32 #define CAPSTONE_API
140 typedef void* (CAPSTONE_API *cs_malloc_t)(size_t size);
141 typedef void* (CAPSTONE_API *cs_calloc_t)(size_t nmemb, size_t size);
142 typedef void* (CAPSTONE_API *cs_realloc_t)(void *ptr, size_t size);
143 typedef void (CAPSTONE_API *cs_free_t)(void *ptr);
144 typedef int (CAPSTONE_API *cs_vsnprintf_t)(char *str, size_t size, const char *format, va_list ap);
235 typedef size_t (CAPSTONE_API *cs_skipdata_cb_t)(const uint8_t *code, size_t code_size, size_t offse…
401 unsigned int CAPSTONE_API cs_version(int *major, int *minor);
418 bool CAPSTONE_API cs_support(int query);
[all …]
/aosp_15_r20/external/capstone/
H A Dcs.c377 unsigned int CAPSTONE_API cs_version(int *major, int *minor) in cs_version()
388 bool CAPSTONE_API cs_support(int query) in cs_support()
423 cs_err CAPSTONE_API cs_errno(csh handle) in cs_errno()
435 const char * CAPSTONE_API cs_strerror(cs_err code) in cs_strerror()
474 cs_err CAPSTONE_API cs_open(cs_arch arch, cs_mode mode, csh *handle) in cs_open()
522 cs_err CAPSTONE_API cs_close(csh *handle) in cs_close()
670 cs_err CAPSTONE_API cs_option(csh ud, cs_opt_type type, size_t value) in cs_option()
822 size_t CAPSTONE_API cs_disasm(csh ud, const uint8_t *buffer, size_t size, uint64_t offset, size_t c… in cs_disasm()
1033 size_t CAPSTONE_API cs_disasm_ex(csh ud, const uint8_t *buffer, size_t size, uint64_t offset, size_… in cs_disasm_ex()
1039 void CAPSTONE_API cs_free(cs_insn *insn, size_t count) in cs_free()
[all …]
/aosp_15_r20/external/capstone/windows/
H A 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…
H A 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()
/aosp_15_r20/external/capstone/docs/Capstone-Engine-Documentation/
H A DCapstone-Engine Documentation.md574 `unsigned int CAPSTONE_API cs_version(int *major, int *minor);`
651 `bool CAPSTONE_API cs_support(int query);`
659 bool CAPSTONE_API cs_support(int query)
714 `void* (CAPSTONE_API *cs_malloc_t)(size_t size);`
737 void * CAPSTONE_API cs_winkernel_malloc(size_t size)
769 `void* (CAPSTONE_API *cs_calloc_t)(size_t nmemb, size_t size);`
782 void * CAPSTONE_API cs_winkernel_calloc(size_t n, size_t size)
802 `void* (CAPSTONE_API *cs_realloc_t)(void *ptr, size_t size);`
815 void * CAPSTONE_API cs_winkernel_realloc(void *ptr, size_t size)
846 `typedef void (CAPSTONE_API *cs_free_t)(void *ptr);`
[all …]
/aosp_15_r20/external/capstone/tests/
H A Dtest_skipdata.c34 static size_t CAPSTONE_API mycallback(const uint8_t *buffer, size_t buffer_size, size_t offset, voi… in mycallback()
/aosp_15_r20/external/capstone/arch/X86/
H A DX86Mapping.c2972 static int CAPSTONE_API regs_cmp(const void *a, const void *b) in regs_cmp()