Home
last modified time | relevance | path

Searched refs:wp_id (Results 1 – 3 of 3) sorted by relevance

/external/llvm-project/lldb/source/Plugins/Process/Windows/Common/
DNativeProcessWindows.cpp439 uint32_t wp_id = LLDB_INVALID_INDEX32; in OnDebugException() local
443 reg_ctx.GetWatchpointHitIndex(wp_id, record.GetExceptionAddress()); in OnDebugException()
449 if (wp_id != LLDB_INVALID_INDEX32) { in OnDebugException()
450 addr_t wp_addr = reg_ctx.GetWatchpointAddress(wp_id); in OnDebugException()
451 addr_t wp_hit_addr = reg_ctx.GetWatchpointHitAddress(wp_id); in OnDebugException()
453 formatv("{0} {1} {2}", wp_addr, wp_id, wp_hit_addr).str(); in OnDebugException()
458 if (wp_id == LLDB_INVALID_INDEX32) in OnDebugException()
/external/llvm-project/lldb/test/API/commands/watchpoints/step_over_watchpoint/
DTestStepOverWatchpoint.py103 def step_inst_for_watchpoint(self, wp_id): argument
111 expected_stop_desc = "watchpoint %d" % wp_id
/external/llvm-project/lldb/source/API/
DSBTarget.cpp1385 bool SBTarget::DeleteWatchpoint(watch_id_t wp_id) { in DeleteWatchpoint() argument
1387 wp_id); in DeleteWatchpoint()
1396 result = target_sp->RemoveWatchpointByID(wp_id); in DeleteWatchpoint()
1402 SBWatchpoint SBTarget::FindWatchpointByID(lldb::watch_id_t wp_id) { in FindWatchpointByID() argument
1404 (lldb::watch_id_t), wp_id); in FindWatchpointByID()
1410 if (target_sp && wp_id != LLDB_INVALID_WATCH_ID) { in FindWatchpointByID()
1414 watchpoint_sp = target_sp->GetWatchpointList().FindByID(wp_id); in FindWatchpointByID()