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

  /external/compiler-rt/lib/asan/
asan_new_delete.cc 63 INTERCEPTOR(void *, _Znwm, size_t size) {
66 INTERCEPTOR(void *, _Znam, size_t size) {
69 INTERCEPTOR(void *, _ZnwmRKSt9nothrow_t, size_t size, std::nothrow_t const&) {
72 INTERCEPTOR(void *, _ZnamRKSt9nothrow_t, size_t size, std::nothrow_t const&) {
94 INTERCEPTOR(void, _ZdlPv, void *ptr) {
97 INTERCEPTOR(void, _ZdaPv, void *ptr) {
100 INTERCEPTOR(void, _ZdlPvRKSt9nothrow_t, void *ptr, std::nothrow_t const&) {
103 INTERCEPTOR(void, _ZdaPvRKSt9nothrow_t, void *ptr, std::nothrow_t const&) {
asan_malloc_linux.cc 62 INTERCEPTOR(void, free, void *ptr) {
67 INTERCEPTOR(void, cfree, void *ptr) {
72 INTERCEPTOR(void*, malloc, uptr size) {
77 INTERCEPTOR(void*, calloc, uptr nmemb, uptr size) {
93 INTERCEPTOR(void*, realloc, void *ptr, uptr size) {
98 INTERCEPTOR(void*, memalign, uptr boundary, uptr size) {
103 INTERCEPTOR(void*, __libc_memalign, uptr align, uptr s)
106 INTERCEPTOR(uptr, malloc_usable_size, void *ptr) {
119 INTERCEPTOR(struct fake_mallinfo, mallinfo, void) {
125 INTERCEPTOR(int, mallopt, int cmd, int value)
    [all...]
asan_interceptors.cc 123 INTERCEPTOR(int, pthread_create, void *thread,
134 INTERCEPTOR(void*, signal, int signum, void *handler) {
141 INTERCEPTOR(int, sigaction, int signum, const struct sigaction *act,
167 INTERCEPTOR(int, swapcontext, struct ucontext_t *oucp,
190 INTERCEPTOR(void, longjmp, void *env, int val) {
196 INTERCEPTOR(void, _longjmp, void *env, int val) {
203 INTERCEPTOR(void, siglongjmp, void *env, int val) {
210 INTERCEPTOR(void, __cxa_throw, void *a, void *b, void *c) {
228 INTERCEPTOR(int, mlock, const void *addr, uptr len) {
233 INTERCEPTOR(int, munlock, const void *addr, uptr len)
    [all...]
asan_malloc_mac.cc 41 INTERCEPTOR(malloc_zone_t *, malloc_create_zone,
52 INTERCEPTOR(malloc_zone_t *, malloc_default_zone, void) {
57 INTERCEPTOR(malloc_zone_t *, malloc_default_purgeable_zone, void) {
64 INTERCEPTOR(void, malloc_make_purgeable, void *ptr) {
70 INTERCEPTOR(int, malloc_make_nonpurgeable, void *ptr) {
79 INTERCEPTOR(void, malloc_set_zone_name, malloc_zone_t *zone, const char *name) {
94 INTERCEPTOR(void *, malloc, size_t size) {
101 INTERCEPTOR(void, free, void *ptr) {
108 INTERCEPTOR(void *, realloc, void *ptr, size_t size) {
114 INTERCEPTOR(void *, calloc, size_t nmemb, size_t size)
    [all...]
asan_mac.cc 336 // Define interceptor for dispatch_*_f function with the three most common
339 INTERCEPTOR(void, dispatch_x_f, dispatch_queue_t dq, void *ctxt, \
356 INTERCEPTOR(void, dispatch_after_f, dispatch_time_t when,
369 INTERCEPTOR(void, dispatch_group_async_f, dispatch_group_t group,
405 INTERCEPTOR(void, dispatch_async,
411 INTERCEPTOR(void, dispatch_group_async,
417 INTERCEPTOR(void, dispatch_after,
423 INTERCEPTOR(void, dispatch_source_set_cancel_handler,
429 INTERCEPTOR(void, dispatch_source_set_event_handler,
  /external/compiler-rt/lib/msan/
msan_interceptors.cc 62 INTERCEPTOR(SIZE_T, fread, void *ptr, SIZE_T size, SIZE_T nmemb, void *file) {
70 INTERCEPTOR(SIZE_T, fread_unlocked, void *ptr, SIZE_T size, SIZE_T nmemb,
79 INTERCEPTOR(SSIZE_T, readlink, const char *path, char *buf, SIZE_T bufsiz) {
87 INTERCEPTOR(void *, readdir, void *a) {
94 INTERCEPTOR(void *, readdir64, void *a) {
101 INTERCEPTOR(void *, memcpy, void *dest, const void *src, SIZE_T n) {
105 INTERCEPTOR(void *, memmove, void *dest, const void *src, SIZE_T n) {
109 INTERCEPTOR(void *, memset, void *s, int c, SIZE_T n) {
113 INTERCEPTOR(int, posix_memalign, void **memptr, SIZE_T alignment, SIZE_T size) {
121 INTERCEPTOR(void, free, void *ptr)
    [all...]
  /external/v8/src/
property.cc 89 case INTERCEPTOR:
90 PrintF(out, " -type = lookup interceptor\n");
132 case INTERCEPTOR:
property-details.h 63 INTERCEPTOR = 5, // only in lookup results, not in descriptors
property.h 171 case INTERCEPTOR:
251 details_ = PropertyDetails(NONE, INTERCEPTOR);
ic.cc 426 // an interceptor), bail out if lookup is not cacheable: we won't
429 || (lookup->type() != INTERCEPTOR)
441 ASSERT(lookup->type() != INTERCEPTOR);
547 if (lookup.type() == INTERCEPTOR && attr == ABSENT) {
672 case INTERCEPTOR:
    [all...]
stub-cache.cc 198 Code::Flags flags = Code::ComputeMonomorphicFlags(Code::LOAD_IC, INTERCEPTOR);
281 Code::ComputeMonomorphicFlags(Code::KEYED_LOAD_IC, INTERCEPTOR);
503 Code::STORE_IC, INTERCEPTOR, strict_mode);
638 Code::ComputeMonomorphicFlags(kind, INTERCEPTOR, extra_state,
    [all...]
objects.cc 298 // Only deal with CALLBACKS and INTERCEPTOR
333 case INTERCEPTOR: {
334 // If the object has an interceptor, try real named properties.
394 case INTERCEPTOR: {
395 // If the object has an interceptor, try real named properties.
571 // callbacks or interceptor calls.
578 // holder will always be the interceptor holder and the search may
579 // only continue with a current object just after the interceptor
630 case INTERCEPTOR: {
10044 InterceptorInfo* interceptor = GetNamedInterceptor(); local
    [all...]
ast.cc 482 // If there is an interceptor, we can't compute the target for a direct call.
506 case INTERCEPTOR:
    [all...]
objects-printer.cc 303 case INTERCEPTOR: // only in lookup results, not in descriptors
bootstrapper.cc     [all...]
runtime.cc     [all...]
mark-compact.cc     [all...]
profile-generator.cc     [all...]
objects-inl.h     [all...]
  /external/compiler-rt/lib/interception/
interception.h 24 // These typedefs should be used only in the interceptor definitions to replace
33 // How to add an interceptor:
37 // 1) define INTERCEPTOR(int, foo, const char *bar, double baz) { ... } in
43 // By default, REAL(foo) will be visible only inside your interceptor, and if
48 // INTERCEPTOR(..., foo, ...) are in different files, you'll instead need to:
52 // Notes: 1. Things may not work properly if macro INTERCEPTOR(...) {...} or
57 // INTERCEPTOR(int, foo, const char *bar, double baz) {...}
156 // Generally, you don't need to use DEFINE_REAL by itself, as INTERCEPTOR
158 // without defining INTERCEPTOR(..., foo, ...). For example, if you override
159 // foo with an interceptor for other function
    [all...]
  /external/v8/src/ia32/
stub-cache-ia32.cc 161 // Bail out if the receiver has a named interceptor or requires access checks.
401 Handle<InterceptorInfo> interceptor(holder_obj->GetNamedInterceptor());
402 ASSERT(!masm->isolate()->heap()->InNewSpace(*interceptor));
404 __ mov(scratch, Immediate(interceptor));
601 // Check that the maps from receiver to interceptor's holder
602 // haven't changed and thus we can invoke interceptor.
610 // Invoke an interceptor and if it provides a value,
616 // Interceptor returned nothing for this property. Try to use cached
619 // Check that the maps from interceptor's holder to constant function's
    [all...]
  /external/v8/src/x64/
stub-cache-x64.cc 130 // Bail out if the receiver has a named interceptor or requires access checks.
375 Handle<InterceptorInfo> interceptor(holder_obj->GetNamedInterceptor());
376 ASSERT(!masm->isolate()->heap()->InNewSpace(*interceptor));
377 __ Move(kScratchRegister, interceptor);
585 // Check that the maps from receiver to interceptor's holder
586 // haven't changed and thus we can invoke interceptor.
594 // Invoke an interceptor and if it provides a value,
600 // Interceptor returned nothing for this property. Try to use cached
603 // Check that the maps from interceptor's holder to constant function's
    [all...]
  /external/v8/src/arm/
stub-cache-arm.cc 150 // Bail out if the receiver has a named interceptor or requires access checks.
576 Handle<InterceptorInfo> interceptor(holder_obj->GetNamedInterceptor());
577 ASSERT(!masm->isolate()->heap()->InNewSpace(*interceptor));
579 __ mov(scratch, Operand(interceptor));
768 // Check that the maps from receiver to interceptor's holder
769 // haven't changed and thus we can invoke interceptor.
777 // Invoke an interceptor and if it provides a value,
783 // Interceptor returned nothing for this property. Try to use cached
786 // Check that the maps from interceptor's holder to constant function's
840 // Call a runtime function to load the interceptor property
    [all...]
  /external/v8/src/mips/
stub-cache-mips.cc 141 // Bail out if the receiver has a named interceptor or requires access checks.
561 Handle<InterceptorInfo> interceptor(holder_obj->GetNamedInterceptor());
562 ASSERT(!masm->isolate()->heap()->InNewSpace(*interceptor));
564 __ li(scratch, Operand(interceptor));
758 // Check that the maps from receiver to interceptor's holder
759 // haven't changed and thus we can invoke interceptor.
767 // Invoke an interceptor and if it provides a value,
773 // Interceptor returned nothing for this property. Try to use cached
776 // Check that the maps from interceptor's holder to constant function's
830 // Call a runtime function to load the interceptor property
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_interceptors.cc 194 #define TSAN_INTERCEPTOR(ret, func, ...) INTERCEPTOR(ret, func, __VA_ARGS__)
    [all...]

Completed in 1711 milliseconds