/external/valgrind/main/coregrind/m_replacemalloc/ |
D | vg_replace_malloc.c | 203 #define ALLOC_or_NULL(soname, fnname, vg_replacement) \ argument 205 void* VG_REPLACE_FUNCTION_EZU(10010,soname,fnname) (SizeT n); \ 206 void* VG_REPLACE_FUNCTION_EZU(10010,soname,fnname) (SizeT n) \ 211 MALLOC_TRACE(#fnname "(%llu)", (ULong)n ); \ 218 #define ZONEALLOC_or_NULL(soname, fnname, vg_replacement) \ argument 220 void* VG_REPLACE_FUNCTION_EZU(10020,soname,fnname) (void *zone, SizeT n); \ 221 void* VG_REPLACE_FUNCTION_EZU(10020,soname,fnname) (void *zone, SizeT n) \ 226 MALLOC_TRACE(#fnname "(%p, %llu)", zone, (ULong)n ); \ 238 #define ALLOC_or_BOMB(soname, fnname, vg_replacement) \ argument 240 void* VG_REPLACE_FUNCTION_EZU(10030,soname,fnname) (SizeT n); \ [all …]
|
/external/valgrind/main/exp-sgcheck/ |
D | h_intercepts.c | 48 #define STRRCHR(soname, fnname) \ argument 49 char* VG_REPLACE_FUNCTION_ZU(soname,fnname)( const char* s, int c ); \ 50 char* VG_REPLACE_FUNCTION_ZU(soname,fnname)( const char* s, int c ) \ 74 #define STRCHR(soname, fnname) \ argument 75 char* VG_REPLACE_FUNCTION_ZU(soname,fnname) ( const char* s, int c ); \ 76 char* VG_REPLACE_FUNCTION_ZU(soname,fnname) ( const char* s, int c ) \ 102 #define STRNLEN(soname, fnname) \ argument 103 SizeT VG_REPLACE_FUNCTION_ZU(soname,fnname) ( const char* str, SizeT n ); \ 104 SizeT VG_REPLACE_FUNCTION_ZU(soname,fnname) ( const char* str, SizeT n ) \ 118 #define STRLEN(soname, fnname) \ argument [all …]
|
D | sg_main.c | 1928 HChar fnname[80]; in shadowStack_new_frame() local 1931 ok = VG_(get_fnname_w_offset)( ip, fnname, sizeof(fnname) ); in shadowStack_new_frame() 1936 VG_(printf)("> %s %#lx\n", ok ? fnname : "???", ip); in shadowStack_new_frame()
|
/external/valgrind/main/memcheck/ |
D | mc_replace_strmem.c | 166 #define STRRCHR(soname, fnname) \ argument 167 char* VG_REPLACE_FUNCTION_EZU(20010,soname,fnname)( const char* s, int c ); \ 168 char* VG_REPLACE_FUNCTION_EZU(20010,soname,fnname)( const char* s, int c ) \ 202 #define STRCHR(soname, fnname) \ argument 203 char* VG_REPLACE_FUNCTION_EZU(20020,soname,fnname) ( const char* s, int c ); \ 204 char* VG_REPLACE_FUNCTION_EZU(20020,soname,fnname) ( const char* s, int c ) \ 239 #define STRCAT(soname, fnname) \ argument 240 char* VG_REPLACE_FUNCTION_EZU(20030,soname,fnname) \ 242 char* VG_REPLACE_FUNCTION_EZU(20030,soname,fnname) \ 274 #define STRNCAT(soname, fnname) \ argument [all …]
|
/external/valgrind/main/drd/ |
D | drd_strmem_intercepts.c | 40 #define STRNLEN(soname, fnname) \ argument 41 SizeT VG_REPLACE_FUNCTION_ZU(soname,fnname) ( const char* str, SizeT n ); \ 42 SizeT VG_REPLACE_FUNCTION_ZU(soname,fnname) ( const char* str, SizeT n ) \ 60 #define STRLEN(soname, fnname) \ argument 61 SizeT VG_REPLACE_FUNCTION_ZU(soname,fnname)( const char* str ); \ 62 SizeT VG_REPLACE_FUNCTION_ZU(soname,fnname)( const char* str ) \
|
/external/valgrind/main/callgrind/ |
D | fn.c | 333 fn_node* new_fn_node(Char fnname[FILENAME_LEN], in new_fn_node() 338 fn->name = VG_(strdup)("cl.fn.nfnnd.2", fnname); in new_fn_node() 377 Char fnname[FN_NAME_LEN]) in get_fn_node_infile() 385 fnname_hash = str_hash(fnname, N_FN_ENTRIES); in get_fn_node_infile() 388 VG_(strcmp)(fnname, curr_fn_node->name) != 0) { in get_fn_node_infile() 393 new_fn_node(fnname, curr_file_node, in get_fn_node_infile() 407 Char fnname[FN_NAME_LEN]) in get_fn_node_inseg() 411 fn_node *fn = get_fn_node_infile(file, fnname); in get_fn_node_inseg() 491 Char filename[FILENAME_LEN], fnname[FN_NAME_LEN]; in CLG_() local 505 filename, fnname, &line_num, &di); in CLG_() [all …]
|
/external/qemu/distrib/sdl-1.2.15/src/video/x11/ |
D | SDL_x11dyn.c | 64 static void *X11_GetSym(const char *fnname, int *rc) in X11_GetSym() argument 71 fn = SDL_LoadFunction(x11libs[i].lib, fnname); in X11_GetSym() 79 printf("X11: Found '%s' in %s (%p)\n", fnname, x11libs[i].libname, *fn); in X11_GetSym() 81 printf("X11: Symbol '%s' NOT FOUND!\n", fnname); in X11_GetSym()
|
/external/valgrind/main/coregrind/m_gdbserver/ |
D | valgrind-low-arm.c | 147 Char fnname[200]; // ??? max size in thumb_pc() local 154 if (VG_(get_fnname_raw) (pc | 1, fnname, 200)) { in thumb_pc() 155 if (VG_(lookup_symbol_SLOW)( "*", fnname, &entrypoint, &ptoc )) { in thumb_pc() 157 fnname, C2v(entrypoint), C2v(pc), in thumb_pc() 166 C2v (pc), fnname); in thumb_pc()
|
/external/valgrind/main/helgrind/ |
D | hg_intercepts.c | 2301 #define STRCHR(soname, fnname) \ argument 2302 char* VG_REPLACE_FUNCTION_ZU(soname,fnname) ( const char* s, int c ); \ 2303 char* VG_REPLACE_FUNCTION_ZU(soname,fnname) ( const char* s, int c ) \ 2332 #define STRLEN(soname, fnname) \ argument 2333 SizeT VG_REPLACE_FUNCTION_ZU(soname,fnname)( const char* str ); \ 2334 SizeT VG_REPLACE_FUNCTION_ZU(soname,fnname)( const char* str ) \ 2350 #define STRCPY(soname, fnname) \ argument 2351 char* VG_REPLACE_FUNCTION_ZU(soname, fnname) ( char* dst, const char* src ); \ 2352 char* VG_REPLACE_FUNCTION_ZU(soname, fnname) ( char* dst, const char* src ) \ 2369 #define STRCMP(soname, fnname) \ argument [all …]
|
D | hg_errors.c | 330 HChar* fnname; /* persistent, in tool-arena */ member 644 void HG_(record_error_PthAPIerror) ( Thread* thr, HChar* fnname, in HG_() 649 tl_assert(fnname); in HG_() 654 xe.XE.PthAPIerror.fnname = string_table_strdup(fnname); in HG_() 718 && 0==VG_(strcmp)(xe1->XE.PthAPIerror.fnname, in HG_() 719 xe2->XE.PthAPIerror.fnname) in HG_() 1051 xe->XE.PthAPIerror.fnname ); in HG_() 1063 xe->XE.PthAPIerror.fnname ); in HG_()
|
/external/valgrind/main/include/ |
D | pub_tool_debuginfo.h | 45 extern Bool VG_(get_fnname) ( Addr a, Char* fnname, Int n_fnname ); 48 ( Addr a, Char* fnname, Int n_fnname ); 75 extern Bool VG_(get_fnname_if_entry) ( Addr a, Char* fnname, Int n_fnname );
|
D | valgrind.h | 773 #define I_WRAP_SONAME_FNNAME_ZU(soname,fnname) \ argument 774 VG_CONCAT4(_vgw00000ZU_,soname,_,fnname) 776 #define I_WRAP_SONAME_FNNAME_ZZ(soname,fnname) \ argument 777 VG_CONCAT4(_vgw00000ZZ_,soname,_,fnname) 791 #define I_REPLACE_SONAME_FNNAME_ZU(soname,fnname) \ argument 792 VG_CONCAT4(_vgr00000ZU_,soname,_,fnname) 794 #define I_REPLACE_SONAME_FNNAME_ZZ(soname,fnname) \ argument 795 VG_CONCAT4(_vgr00000ZZ_,soname,_,fnname)
|
/external/valgrind/main/lackey/ |
D | lk_main.c | 611 Char fnname[100]; in lk_instrument() local 703 fnname, sizeof(fnname)) in lk_instrument() 704 && 0 == VG_(strcmp)(fnname, clo_fnname)) { in lk_instrument()
|
/external/valgrind/main/coregrind/ |
D | m_translate.c | 1366 Char fnname[512] = "UNKNOWN_FUNCTION"; in VG_() local 1367 VG_(get_fnname_w_offset)(addr, fnname, 512); in VG_() 1379 fnname, objname, (ULong)objoff in VG_()
|
/external/v8/src/third_party/valgrind/ |
D | valgrind.h | 689 #define I_WRAP_SONAME_FNNAME_ZU(soname,fnname) \ argument 690 VG_CONCAT4(_vgwZU_,soname,_,fnname) 692 #define I_WRAP_SONAME_FNNAME_ZZ(soname,fnname) \ argument 693 VG_CONCAT4(_vgwZZ_,soname,_,fnname)
|
/external/valgrind/main/mpi/ |
D | libmpiwrap.c | 180 static void before ( char* fnname ) in before() argument 241 fprintf(stderr, "%s %5d: enter PMPI_%s\n", preamble, my_pid, fnname ); in before() 244 static __inline__ void after ( char* fnname, int err ) in after() argument 248 preamble, my_pid, fnname, err ); in after()
|
/external/regex-re2/util/ |
D | valgrind.h | 655 #define I_WRAP_SONAME_FNNAME_ZU(soname,fnname) \ argument 656 VG_CONCAT4(_vgwZU_,soname,_,fnname) 658 #define I_WRAP_SONAME_FNNAME_ZZ(soname,fnname) \ argument 659 VG_CONCAT4(_vgwZZ_,soname,_,fnname)
|
/external/openssl/crypto/store/ |
D | str_lib.c | 236 #define check_store(s,fncode,fnname,fnerrcode) \ argument 244 if ((s)->meth->fnname == NULL) \
|
/external/valgrind/main/massif/ |
D | ms_main.c | 364 static Bool is_member_fn(XArray* fns, Char* fnname) in is_member_fn() argument 375 if (VG_STREQ(fnname, *fn_ptr)) in is_member_fn()
|
/external/valgrind/main/coregrind/m_debuginfo/ |
D | debuginfo.c | 1554 Char fnname[64]; in VG_() local 1557 a, fnname, 64, in VG_()
|