Home
last modified time | relevance | path

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

/external/valgrind/coregrind/m_debuginfo/
Ddebuginfo.c1494 static Bool is_top(const InlIPCursor *iipc) in is_top() argument
1496 return !iipc || iipc->cur_inltab == -1; in is_top()
1499 static Bool is_bottom(const InlIPCursor *iipc) in is_bottom() argument
1501 return !iipc || iipc->next_inltab == -1; in is_bottom()
1504 Bool VG_(next_IIPC)(InlIPCursor *iipc) in VG_()
1511 if (iipc == NULL) in VG_()
1514 if (iipc->curlevel <= 0) { in VG_()
1515 iipc->curlevel--; in VG_()
1519 di = iipc->di; in VG_()
1520 for (i = iipc->inltab_lopos; i <= iipc->inltab_hipos; i++) { in VG_()
[all …]
/external/valgrind/include/
Dpub_tool_debuginfo.h153 extern const HChar* VG_(describe_IP)(Addr eip, const InlIPCursor* iipc);
161 extern Bool VG_(next_IIPC)(InlIPCursor *iipc);
163 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()
1753 InlIPCursor *iipc; in expandInput() local
1755 iipc = VG_(new_IIPC)(IP); in expandInput()
[all …]
Dpub_core_debuginfo.h96 const InlIPCursor* iipc );
Dm_stacktrace.c1722 InlIPCursor *iipc = VG_(new_IIPC)(ip); local
1725 const HChar *buf = VG_(describe_IP)(ip, iipc);
1734 } while (VG_(next_IIPC)(iipc));
1735 VG_(delete_IIPC)(iipc);