Searched refs:n_ips (Results 1 - 8 of 8) sorted by relevance

/external/valgrind/main/include/
H A Dpub_tool_stacktrace.h40 // for thread 'tid'. Maximum of 'n_ips' addresses put into 'ips';
62 /*OUT*/StackTrace ips, UInt n_ips,
75 StackTrace ips, UInt n_ips
79 extern void VG_(pp_StackTrace) ( StackTrace ips, UInt n_ips );
83 extern void VG_(get_and_pp_StackTrace) ( ThreadId tid, UInt n_ips );
H A Dpub_tool_execontext.h78 ExeContext* ec, UInt n_ips );
113 ExeContext* VG_(make_ExeContext_from_StackTrace)( Addr* ips, UInt n_ips );
/external/valgrind/main/coregrind/
H A Dpub_core_stacktrace.h50 // ips[0 .. min(n_ips,return_value)]. If sps and fps are non-NULL,
55 /*OUT*/Addr* ips, UInt n_ips,
H A Dm_execontext.c86 /* Variable-length array. The size is 'n_ips'; at
89 UInt n_ips; member in struct:_ExeContext
124 static ExeContext* record_ExeContext_wrk2 ( Addr* ips, UInt n_ips ); /*fwds*/
170 VG_(message)(Vg_DebugMsg, " exectx: stacktrace ecu %u n_ips %u\n",
171 ec->ecu, ec->n_ips);
172 VG_(pp_StackTrace)( ec->ips, ec->n_ips );
201 VG_(pp_StackTrace)( ec->ips, ec->n_ips );
214 tl_assert(e1->n_ips >= 1 && e2->n_ips >= 1);
221 if ( (e1->n_ips <
269 calc_hash( Addr* ips, UInt n_ips, UWord htab_sz ) argument
328 UInt n_ips; local
[all...]
H A Dm_errormgr.c396 UInt n_ips = VG_(get_ExeContext_n_ips)(ec); local
397 tl_assert(n_ips > 0);
398 if (n_ips > VG_MAX_SUPP_CALLERS)
399 n_ips = VG_MAX_SUPP_CALLERS;
403 n_ips);
1480 UWord n_ips; // nr of elements in ips. member in struct:__anon32543
1516 vg_assert (ixIP < ip2fo->n_ips);
1532 ip2fo->n_ips * sizeof(Int));
1533 for (i = 0; i < ip2fo->n_ips; i++)
1626 /*INPUT*/ip2fo->ips, szbInput, ip2fo->n_ips,
[all...]
H A Dm_libcassert.c297 Int n_ips; local
315 n_ips =
325 VG_(pp_StackTrace) (ips, n_ips);
H A Dm_stacktrace.c1461 void VG_(pp_StackTrace) ( StackTrace ips, UInt n_ips )
1463 vg_assert( n_ips > 0 );
1468 VG_(apply_StackTrace)( printIpDesc, NULL, ips, n_ips );
1478 UInt n_ips local
1483 VG_(pp_StackTrace)(ips, n_ips);
1489 StackTrace ips, UInt n_ips
1495 vg_assert(n_ips > 0);
1513 } while (i < n_ips && !main_done);
/external/valgrind/main/massif/
H A Dms_main.c836 Int n_ips, i, n_alloc_fns_removed; local
859 n_ips = VG_(get_StackTrace)( tid, ips, clo_depth + overestimate,
863 tl_assert(n_ips > 0);
866 if (n_ips < clo_depth + overestimate) { redo = False; }
873 for (i = n_alloc_fns_removed; i < n_ips; i++) {
883 n_ips -= n_alloc_fns_removed;
884 for (i = 0; i < n_ips; i++) {
889 if (n_ips >= clo_depth) {
891 n_ips = clo_depth; // Ignore any IPs below --depth.
898 return n_ips;
910 Int n_ips = get_IPs(tid, exclude_first_entry, ips); local
[all...]

Completed in 889 milliseconds