Home | History | Annotate | Download | only in include

Lines Matching defs:DebugInfo

3 /*--- DebugInfo.                              pub_tool_debuginfo.h ---*/
176 /* A way to make limited debuginfo queries on a per-mapped-object
178 typedef struct _DebugInfo DebugInfo;
180 /* Returns NULL if the DebugInfo isn't found. It doesn't matter if
182 DebugInfo* VG_(find_DebugInfo) ( Addr a );
185 Addr VG_(DebugInfo_get_text_avma) ( const DebugInfo *di );
186 SizeT VG_(DebugInfo_get_text_size) ( const DebugInfo *di );
187 Addr VG_(DebugInfo_get_plt_avma) ( const DebugInfo *di );
188 SizeT VG_(DebugInfo_get_plt_size) ( const DebugInfo *di );
189 Addr VG_(DebugInfo_get_gotplt_avma) ( const DebugInfo *di );
190 SizeT VG_(DebugInfo_get_gotplt_size) ( const DebugInfo *di );
191 const UChar* VG_(DebugInfo_get_soname) ( const DebugInfo *di );
192 const UChar* VG_(DebugInfo_get_filename) ( const DebugInfo *di );
193 PtrdiffT VG_(DebugInfo_get_text_bias) ( const DebugInfo *di );
195 /* Function for traversing the DebugInfo list. When called with NULL
202 const DebugInfo* VG_(next_DebugInfo) ( const DebugInfo *di );
204 /* Functions for traversing all the symbols in a DebugInfo. _howmany
211 Int VG_(DebugInfo_syms_howmany) ( const DebugInfo *di );
212 void VG_(DebugInfo_syms_getidx) ( const DebugInfo *di,