Home
last modified time | relevance | path

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

/external/valgrind/coregrind/m_debuginfo/
Ddebuginfo.c1490 static Bool is_top(const InlIPCursor *iipc) in is_top() argument
1492 return !iipc || iipc->cur_inltab == -1; in is_top()
1495 static Bool is_bottom(const InlIPCursor *iipc) in is_bottom() argument
1497 return !iipc || iipc->next_inltab == -1; in is_bottom()
1500 Bool VG_(next_IIPC)(InlIPCursor *iipc) in VG_()
1507 if (iipc == NULL) in VG_()
1510 if (iipc->curlevel <= 0) { in VG_()
1511 iipc->curlevel--; in VG_()
1515 di = iipc->di; in VG_()
1516 for (i = iipc->inltab_lopos; i <= iipc->inltab_hipos; i++) { in VG_()
[all …]
/external/valgrind/include/
Dpub_tool_debuginfo.h186 extern const HChar* VG_(describe_IP)(Addr eip, const InlIPCursor* iipc);
194 extern Bool VG_(next_IIPC)(InlIPCursor *iipc);
196 extern void VG_(delete_IIPC)(InlIPCursor *iipc);
/external/valgrind/coregrind/
Dm_errormgr.c327 InlIPCursor* iipc = VG_(new_IIPC)(ip); in printSuppForIp_XML() local
329 if ( VG_(get_fnname_no_cxx_demangle) (ip, &buf, iipc) ) { in printSuppForIp_XML()
337 } while (VG_(next_IIPC)(iipc)); in printSuppForIp_XML()
338 VG_(delete_IIPC)(iipc); in printSuppForIp_XML()
345 InlIPCursor* iipc = VG_(new_IIPC)(ip); in printSuppForIp_nonXML() local
347 if ( VG_(get_fnname_no_cxx_demangle) (ip, &buf, iipc) ) { in printSuppForIp_nonXML()
355 } while (VG_(next_IIPC)(iipc)); in printSuppForIp_nonXML()
356 VG_(delete_IIPC)(iipc); in printSuppForIp_nonXML()
1752 InlIPCursor *iipc; in expandInput() local
1754 iipc = VG_(new_IIPC)(IP); in expandInput()
[all …]
Dpub_core_debuginfo.h96 const InlIPCursor* iipc );
Dm_stacktrace.c1544 InlIPCursor *iipc = VG_(new_IIPC)(ip); local
1547 const HChar *buf = VG_(describe_IP)(ip, iipc);
1556 } while (VG_(next_IIPC)(iipc));
1557 VG_(delete_IIPC)(iipc);