MCPcopy Create free account
hub / github.com/beefytech/Beef / DbgLineDataEx

Class DbgLineDataEx

IDEHelper/DbgModule.h:275–305  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

273};
274
275struct DbgLineDataEx
276{
277public:
278 DbgLineData* mLineData;
279 DbgSubprogram* mSubprogram;
280
281 DbgLineDataEx()
282 {
283 mLineData = NULL;
284 mSubprogram = NULL;
285 }
286
287 DbgLineDataEx(DbgLineData* lineData, DbgSubprogram* subprogram)
288 {
289 mLineData = lineData;
290 mSubprogram = subprogram;
291 }
292
293 addr_target GetAddress();
294 DbgSrcFile* GetSrcFile();
295
296 bool operator==(DbgLineData* lineData)
297 {
298 return lineData == mLineData;
299 }
300
301 bool IsNull()
302 {
303 return mLineData == NULL;
304 }
305};
306
307class DbgLineInfoCtx
308{

Callers 6

DebugThreadProcMethod · 0.85
CheckBreakpointMethod · 0.85
DetachBreakpointMethod · 0.85
ClearStepMethod · 0.85
SetupStepMethod · 0.85
WdBreakpointMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected