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

1 2

  /external/valgrind/coregrind/m_replacemalloc/
vg_replace_malloc.c 225 /* Generate a replacement for 'fnname' in object 'soname', which calls
228 #define ALLOC_or_NULL(soname, fnname, vg_replacement) \
230 void* VG_REPLACE_FUNCTION_EZU(10010,soname,fnname) (SizeT n); \
231 void* VG_REPLACE_FUNCTION_EZU(10010,soname,fnname) (SizeT n) \
237 MALLOC_TRACE(#fnname "(%llu)", (ULong)n ); \
244 #define ZONEALLOC_or_NULL(soname, fnname, vg_replacement) \
246 void* VG_REPLACE_FUNCTION_EZU(10020,soname,fnname) (void *zone, SizeT n); \
247 void* VG_REPLACE_FUNCTION_EZU(10020,soname,fnname) (void *zone, SizeT n) \
254 MALLOC_TRACE(#fnname "(%p, %llu)", zone, (ULong)n ); \
262 /* Generate a replacement for 'fnname' in object 'soname', which call
    [all...]
  /external/valgrind/exp-sgcheck/
h_intercepts.c 48 #define STRRCHR(soname, fnname) \
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 ) \
76 #define STRCHR(soname, fnname) \
77 char* VG_REPLACE_FUNCTION_ZU(soname,fnname) ( const char* s, int c ); \
78 char* VG_REPLACE_FUNCTION_ZU(soname,fnname) ( const char* s, int c ) \
106 #define STRNLEN(soname, fnname) \
107 SizeT VG_REPLACE_FUNCTION_ZU(soname,fnname) ( const char* str, SizeT n ); \
108 SizeT VG_REPLACE_FUNCTION_ZU(soname,fnname) ( const char* str, SizeT n ) \
122 #define STRLEN(soname, fnname) \
    [all...]
sg_main.c 1936 const HChar *fnname; local
    [all...]
  /external/valgrind/shared/
vg_replace_strmem.c 182 #define STRRCHR(soname, fnname) \
183 char* VG_REPLACE_FUNCTION_EZU(20010,soname,fnname)( const char* s, int c ); \
184 char* VG_REPLACE_FUNCTION_EZU(20010,soname,fnname)( const char* s, int c ) \
230 #define STRCHR(soname, fnname) \
231 char* VG_REPLACE_FUNCTION_EZU(20020,soname,fnname) ( const char* s, int c ); \
232 char* VG_REPLACE_FUNCTION_EZU(20020,soname,fnname) ( const char* s, int c ) \
283 #define STRCAT(soname, fnname) \
284 char* VG_REPLACE_FUNCTION_EZU(20030,soname,fnname) \
286 char* VG_REPLACE_FUNCTION_EZU(20030,soname,fnname) \
322 #define STRNCAT(soname, fnname) \
    [all...]
  /external/valgrind/callgrind/
fn.c 341 fn_node* new_fn_node(const HChar *fnname,
346 fn->name = VG_(strdup)("cl.fn.nfnnd.2", fnname);
385 const HChar *fnname)
393 fnname_hash = str_hash(fnname, N_FN_ENTRIES);
396 VG_(strcmp)(fnname, curr_fn_node->name) != 0) {
401 new_fn_node(fnname, curr_file_node,
416 const HChar *fnname)
420 fn_node *fn = get_fn_node_infile(file, fnname);
490 const HChar *fnname, *filename, *dirname; local
504 &dirname, &filename, &fnname, &line_num, &di)
    [all...]
  /external/valgrind/include/
pub_tool_debuginfo.h 53 the filename, dirname, fnname and objname.
58 Retrieving a fnname might imply a call to the c++ demangler.
59 A returned fnname is invalidated if any other call to the demangler
80 extern Bool VG_(get_fnname) ( Addr a, const HChar** fnname );
83 ( Addr a, const HChar** fnname );
111 extern Bool VG_(get_fnname_if_entry) ( Addr a, const HChar** fnname );
120 /* Indicates what kind of fnname it is. */
valgrind.h     [all...]
  /external/valgrind/coregrind/m_gdbserver/
valgrind-low-arm.c 146 const HChar *fnname; local
152 if (VG_(get_fnname_raw) (pc | 1, &fnname)) {
153 if (VG_(lookup_symbol_SLOW)( "*", fnname, &avmas )) {
154 dlog (1, "fnname %s lookupsym %p => %p %s.\n",
155 fnname, C2v(avmas.main), C2v(pc),
163 dlog (1, "%p fnname %s lookupsym failed?. Assume arm\n",
164 C2v (pc), fnname);
169 dlog (1, "%p unknown fnname?. Assume arm\n", C2v (pc));
  /toolchain/binutils/binutils-2.25/binutils/
rdcoff.c 666 const char *fnname;
684 fnname = NULL;
767 fnname = name;
789 if (fnname == NULL)
801 if (! debug_record_function (dhandle, fnname, type,
830 fnname = NULL;
665 const char *fnname; local
ieee.c 3202 const char *fnname; local
3872 const char *fnname; member in struct:ieee_handle
    [all...]
  /external/valgrind/helgrind/
hg_errors.c 340 HChar* fnname; /* persistent, in tool-arena */ member in struct:__anon37631::__anon37632::__anon37637
614 void HG_(record_error_PthAPIerror) ( Thread* thr, const HChar* fnname,
619 tl_assert(fnname);
624 xe.XE.PthAPIerror.fnname = string_table_strdup(fnname);
688 && 0==VG_(strcmp)(xe1->XE.PthAPIerror.fnname,
689 xe2->XE.PthAPIerror.fnname)
    [all...]
  /external/valgrind/massif/
ms_main.c 511 const HChar *fnname; local
524 top_has_fnname = VG_(get_fnname)(ips[*top], &fnname);
525 if (top_has_fnname && VG_(strIsMemberXA)(alloc_fns, fnname)) {
526 VERB(4, "filtering alloc fn %s\n", fnname);
537 && VG_(strIsMemberXA)(ignore_fns, fnname)) {
538 VERB(4, "ignored allocation from fn %s\n", fnname);
577 const HChar *fnname; local
579 VG_(get_fnname)(ips[0], &fnname) ? fnname : "???");
    [all...]
  /external/v8/tools/
gen-inlining-tests.py 190 def fnname(flags): function
347 write( " f = function {} () {{".format(fnname(flags)))
  /external/libvpx/libvpx/vp9/encoder/
vp9_encoder.c     [all...]
  /external/valgrind/lackey/
lk_main.c 194 * line option --fnname. */
199 if VG_STR_CLO(arg, "--fnname", clo_fnname) {}
219 " --fnname=<name> count calls to <name> (only used if\n"
752 const HChar *fnname; local
754 &fnname)
755 && 0 == VG_(strcmp)(fnname, clo_fnname)) {
    [all...]
  /external/valgrind/coregrind/
m_translate.c 1571 const HChar *fnname; local
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/lua/
luarun.swg 186 #define SWIG_MustGetPtr(L,idx, type,flags, argnum,fnname) SWIG_Lua_MustGetPtr(L,idx, type,flags, argnum,fnname)
    [all...]
  /external/libchrome/base/third_party/valgrind/
valgrind.h     [all...]
  /external/regex-re2/util/
valgrind.h 651 /* Use an extra level of macroisation so as to ensure the soname/fnname
655 #define I_WRAP_SONAME_FNNAME_ZU(soname,fnname) \
656 VG_CONCAT4(_vgwZU_,soname,_,fnname)
658 #define I_WRAP_SONAME_FNNAME_ZZ(soname,fnname) \
659 VG_CONCAT4(_vgwZZ_,soname,_,fnname)
    [all...]
  /external/v8/src/third_party/valgrind/
valgrind.h 685 /* Use an extra level of macroisation so as to ensure the soname/fnname
689 #define I_WRAP_SONAME_FNNAME_ZU(soname,fnname) \
690 VG_CONCAT4(_vgwZU_,soname,_,fnname)
692 #define I_WRAP_SONAME_FNNAME_ZZ(soname,fnname) \
693 VG_CONCAT4(_vgwZZ_,soname,_,fnname)
    [all...]
  /external/valgrind/mpi/
libmpiwrap.c 180 static void before ( char* fnname )
241 fprintf(stderr, "%s %5d: enter PMPI_%s\n", preamble, my_pid, fnname );
244 static __inline__ void after ( char* fnname, int err )
248 preamble, my_pid, fnname, err );
    [all...]
  /toolchain/binutils/binutils-2.25/bfd/
xcofflink.c 2510 char *fnname; local
    [all...]
  /external/python/cpython2/PC/
_winreg.c 31 #define PyErr_SetFromWindowsErrWithFunction(rc, fnname) \
    [all...]
  /external/valgrind/coregrind/m_debuginfo/
readdwarf3.c 2638 HChar *fnname; local
    [all...]
debuginfo.c 1968 const HChar *fnname; local
    [all...]

Completed in 4103 milliseconds

1 2