Searched refs:n_ips (Results 1 – 11 of 11) sorted by relevance
/external/valgrind/coregrind/ |
D | m_execontext.c | 87 UInt n_ips; member 122 static ExeContext* record_ExeContext_wrk2 ( const Addr* ips, UInt n_ips ); 171 ec->ecu, ec->n_ips); in VG_() 172 VG_(pp_StackTrace)( ec->ips, ec->n_ips ); in VG_() 183 total_n_ips += ec->n_ips; in VG_() 208 VG_(pp_StackTrace)( ec->ips, ec->n_ips ); in VG_() 222 vg_assert(e1->n_ips >= 1 && e2->n_ips >= 1); in VG_() 229 if ( (e1->n_ips <= i) && (e2->n_ips <= i)) return True; in VG_() 230 if ( (e1->n_ips <= i) && !(e2->n_ips <= i)) return False; in VG_() 231 if (!(e1->n_ips <= i) && (e2->n_ips <= i)) return False; in VG_() [all …]
|
D | m_errormgr.c | 412 UInt n_ips = VG_(get_ExeContext_n_ips)(ec); in gen_suppression() local 413 vg_assert(n_ips > 0); in gen_suppression() 414 if (n_ips > VG_MAX_SUPP_CALLERS) in gen_suppression() 415 n_ips = VG_MAX_SUPP_CALLERS; in gen_suppression() 419 n_ips); in gen_suppression() 1515 UWord n_ips; // nr of elements in ips. member 1576 ip2fo->n_ips, ip2fo->n_ips_expanded, ip2fo->n_expanded); in pp_ip2fo() 1611 VG_(pp_StackTrace) (ip2fo->ips, ip2fo->n_ips); in clearIPtoFunOrObjCompleter() 1646 vg_assert (VG_(clo_read_inline_info) || ixInput < ip2fo->n_ips); in foComplete() 1727 ip2fo->n_ips * sizeof(Int)); in grow_offsets() [all …]
|
D | pub_core_stacktrace.h | 55 /*OUT*/Addr* ips, UInt n_ips,
|
D | m_libcassert.c | 330 Int n_ips; in show_sched_status_wrk() local 348 n_ips = in show_sched_status_wrk() 358 VG_(pp_StackTrace) (ips, n_ips); in show_sched_status_wrk()
|
D | m_stacktrace.c | 1692 void VG_(pp_StackTrace) ( StackTrace ips, UInt n_ips ) in VG_() 1694 vg_assert( n_ips > 0 ); in VG_() 1699 VG_(apply_StackTrace)( printIpDesc, NULL, ips, n_ips ); in VG_() 1709 UInt n_ips in VG_() local 1714 VG_(pp_StackTrace)(ips, n_ips); in VG_() 1720 StackTrace ips, UInt n_ips in VG_() 1726 vg_assert(n_ips > 0); in VG_() 1744 } while (i < n_ips && !main_done); in VG_()
|
/external/valgrind/include/ |
D | pub_tool_stacktrace.h | 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 );
|
D | pub_tool_execontext.h | 78 ExeContext* ec, UInt n_ips ); 114 ExeContext* VG_(make_ExeContext_from_StackTrace)( const Addr* ips, UInt n_ips );
|
/external/valgrind/massif/ |
D | ms_main.c | 824 Int n_ips, i, n_alloc_fns_removed; in get_IPs() local 847 n_ips = VG_(get_StackTrace)( tid, ips, clo_depth + overestimate, in get_IPs() 851 tl_assert(n_ips > 0); in get_IPs() 854 if (n_ips < clo_depth + overestimate) { redo = False; } in get_IPs() 861 for (i = n_alloc_fns_removed; i < n_ips; i++) { in get_IPs() 872 n_ips -= n_alloc_fns_removed; in get_IPs() 873 for (i = 0; i < n_ips; i++) { in get_IPs() 878 if (n_ips >= clo_depth) { in get_IPs() 880 n_ips = clo_depth; // Ignore any IPs below --depth. in get_IPs() 887 return n_ips; in get_IPs() [all …]
|
/external/valgrind/helgrind/ |
D | hg_errors.h | 66 void HG_(print_access) (StackTrace ips, UInt n_ips,
|
D | libhb.h | 162 typedef void (*Access_t) (StackTrace ips, UInt n_ips,
|
D | hg_errors.c | 1273 void HG_(print_access) (StackTrace ips, UInt n_ips, in HG_() 1310 VG_(pp_StackTrace) (ips, n_ips); in HG_()
|