HomeSort by relevance Sort by last modified time
    Searched defs:INTERCEPTOR (Results 1 - 4 of 4) sorted by null

  /external/compiler-rt/lib/asan/
asan_malloc_linux.cc 57 INTERCEPTOR(void, free, void *ptr) {
62 INTERCEPTOR(void, cfree, void *ptr) {
67 INTERCEPTOR(void*, malloc, size_t size) {
72 INTERCEPTOR(void*, calloc, size_t nmemb, size_t size) {
88 INTERCEPTOR(void*, realloc, void *ptr, size_t size) {
93 INTERCEPTOR(void*, memalign, size_t boundary, size_t size) {
98 INTERCEPTOR(void*, __libc_memalign, size_t align, size_t s)
101 INTERCEPTOR(size_t, malloc_usable_size, void *ptr) {
106 INTERCEPTOR(struct mallinfo, mallinfo) {
112 INTERCEPTOR(int, mallopt, int cmd, int value)
    [all...]
asan_interceptors.cc 331 INTERCEPTOR(int, pthread_create, void *thread,
342 INTERCEPTOR(void*, signal, int signum, void *handler) {
349 INTERCEPTOR(int, sigaction, int signum, const struct sigaction *act,
362 INTERCEPTOR(void, longjmp, void *env, int val) {
368 INTERCEPTOR(void, _longjmp, void *env, int val) {
373 INTERCEPTOR(void, siglongjmp, void *env, int val) {
384 INTERCEPTOR(void, __cxa_throw, void *a, void *b, void *c) {
437 INTERCEPTOR(int, memcmp, const void *a1, const void *a2, size_t size) {
453 INTERCEPTOR(void*, memcpy, void *to, const void *from, size_t size) {
472 INTERCEPTOR(void*, memmove, void *to, const void *from, size_t size)
    [all...]
  /external/compiler-rt/lib/asan/interception/
interception.h 34 // How to add an interceptor:
38 // 1) define INTERCEPTOR(int, foo, const char *bar, double baz) { ... } in
44 // By default, REAL(foo) will be visible only inside your interceptor, and if
49 // INTERCEPTOR(..., foo, ...) are in different files, you'll instead need to:
58 // INTERCEPTOR(int, foo, const char *bar, double baz);
117 // Generally, you don't need to use DEFINE_REAL by itself, as INTERCEPTOR
119 // without defining INTERCEPTOR(..., foo, ...). For example, if you override
120 // foo with an interceptor for other function.
132 #define INTERCEPTOR(ret_type, func, ...) \
  /external/v8/src/
property-details.h 63 INTERCEPTOR = 5, // only in lookup results, not in descriptors

Completed in 83 milliseconds