OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:INTERCEPT_FUNCTION
(Results
1 - 6
of
6
) sorted by null
/external/compiler-rt/lib/msan/
msan_interceptors.cc
[
all
...]
/external/compiler-rt/lib/lsan/
lsan_interceptors.cc
259
INTERCEPT_FUNCTION
(malloc);
260
INTERCEPT_FUNCTION
(free);
261
INTERCEPT_FUNCTION
(cfree);
262
INTERCEPT_FUNCTION
(calloc);
263
INTERCEPT_FUNCTION
(realloc);
264
INTERCEPT_FUNCTION
(memalign);
265
INTERCEPT_FUNCTION
(posix_memalign);
266
INTERCEPT_FUNCTION
(__libc_memalign);
267
INTERCEPT_FUNCTION
(valloc);
268
INTERCEPT_FUNCTION
(pvalloc)
[
all
...]
/external/compiler-rt/lib/tsan/
gen_dynamic_list.sh
7
if [[ $line =~ ^(.*)((TSAN_INTERCEPT|
INTERCEPT_FUNCTION
)\()([a-z,A-Z,0-9,_]+)(.*)$ ]] ; then
/external/compiler-rt/lib/interception/
interception.h
40
// 2) Call "
INTERCEPT_FUNCTION
(foo)" prior to the first call of "foo".
41
//
INTERCEPT_FUNCTION
(foo) evaluates to "true" iff the function was
48
// However, if the call "
INTERCEPT_FUNCTION
(foo)" and definition for
87
//
INTERCEPT_FUNCTION
() is effectively a no-op on this system.
224
//
INTERCEPT_FUNCTION
macro, only its name.
237
# define
INTERCEPT_FUNCTION
(func) INTERCEPT_FUNCTION_LINUX(func)
240
# define
INTERCEPT_FUNCTION
(func) INTERCEPT_FUNCTION_MAC(func)
243
# define
INTERCEPT_FUNCTION
(func) INTERCEPT_FUNCTION_WIN(func)
/external/compiler-rt/lib/asan/
asan_interceptors.cc
627
if (!
INTERCEPT_FUNCTION
(name) && flags()->verbosity > 0) \
631
// OS X interceptors don't need to be initialized with
INTERCEPT_FUNCTION
.
728
INTERCEPT_FUNCTION
(__cxa_throw);
/external/compiler-rt/lib/tsan/rtl/
tsan_interceptors.cc
200
#define TSAN_INTERCEPT(func)
INTERCEPT_FUNCTION
(func)
[
all
...]
Completed in 65 milliseconds