Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/include/sanitizer/
H A Dcommon_interface_defs.h322 void SANITIZER_CDECL __sanitizer_weak_hook_memcmp(void *called_pc,
334 void SANITIZER_CDECL __sanitizer_weak_hook_strncmp(void *called_pc,
346 void SANITIZER_CDECL __sanitizer_weak_hook_strncasecmp(void *called_pc,
357 void SANITIZER_CDECL __sanitizer_weak_hook_strcmp(void *called_pc,
367 void SANITIZER_CDECL __sanitizer_weak_hook_strcasecmp(void *called_pc,
378 void SANITIZER_CDECL __sanitizer_weak_hook_strstr(void *called_pc,
382 void SANITIZER_CDECL __sanitizer_weak_hook_strcasestr(void *called_pc,
387 void SANITIZER_CDECL __sanitizer_weak_hook_memmem(void *called_pc,
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_win_weak_interception.cpp42 void __sanitizer_weak_hook_memcmp(uptr called_pc, const void *s1,
44 void __sanitizer_weak_hook_strcmp(uptr called_pc, const char *s1,
46 void __sanitizer_weak_hook_strncmp(uptr called_pc, const char *s1,
48 void __sanitizer_weak_hook_strstr(uptr called_pc, const char *s1,
H A Dsanitizer_common_interceptors.inc456 DECLARE_WEAK_INTERCEPTOR_HOOK(__sanitizer_weak_hook_strcmp, uptr called_pc,
479 DECLARE_WEAK_INTERCEPTOR_HOOK(__sanitizer_weak_hook_strncmp, uptr called_pc,
523 DECLARE_WEAK_INTERCEPTOR_HOOK(__sanitizer_weak_hook_strcasecmp, uptr called_pc,
544 DECLARE_WEAK_INTERCEPTOR_HOOK(__sanitizer_weak_hook_strncasecmp, uptr called_pc,
591 DECLARE_WEAK_INTERCEPTOR_HOOK(__sanitizer_weak_hook_strstr, uptr called_pc,
614 DECLARE_WEAK_INTERCEPTOR_HOOK(__sanitizer_weak_hook_strcasestr, uptr called_pc,
680 DECLARE_WEAK_INTERCEPTOR_HOOK(__sanitizer_weak_hook_memmem, uptr called_pc,
801 DECLARE_WEAK_INTERCEPTOR_HOOK(__sanitizer_weak_hook_memcmp, uptr called_pc,
/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerInterceptors.cpp124 void __sanitizer_weak_hook_memcmp(void *called_pc, const void *s1,
126 void __sanitizer_weak_hook_strncmp(void *called_pc, const char *s1,
128 void __sanitizer_weak_hook_strncasecmp(void *called_pc, const char *s1,
130 void __sanitizer_weak_hook_strcmp(void *called_pc, const char *s1,
132 void __sanitizer_weak_hook_strcasecmp(void *called_pc, const char *s1,
134 void __sanitizer_weak_hook_strstr(void *called_pc, const char *s1,
136 void __sanitizer_weak_hook_strcasestr(void *called_pc, const char *s1,
138 void __sanitizer_weak_hook_memmem(void *called_pc, const void *s1, size_t len1,
H A DFuzzerTracePC.cpp652 void __sanitizer_weak_hook_strncasecmp(void *called_pc, const char *s1, in __sanitizer_weak_hook_strncasecmp() argument
655 return __sanitizer_weak_hook_strncmp(called_pc, s1, s2, n, result); in __sanitizer_weak_hook_strncasecmp()
659 void __sanitizer_weak_hook_strcasecmp(void *called_pc, const char *s1, in __sanitizer_weak_hook_strcasecmp() argument
662 return __sanitizer_weak_hook_strcmp(called_pc, s1, s2, result); in __sanitizer_weak_hook_strcasecmp()
666 void __sanitizer_weak_hook_strstr(void *called_pc, const char *s1, in __sanitizer_weak_hook_strstr() argument
673 void __sanitizer_weak_hook_strcasestr(void *called_pc, const char *s1, in __sanitizer_weak_hook_strcasestr() argument
680 void __sanitizer_weak_hook_memmem(void *called_pc, const void *s1, size_t len1, in __sanitizer_weak_hook_memmem() argument