Searched refs:watchpoints (Results 1 – 12 of 12) sorted by relevance
/external/rust/crates/gdbstub/examples/armv4t/gdb/ |
D | mod.rs | 202 WatchKind::Write => self.watchpoints.push(addr), in add_hw_watchpoint() 203 WatchKind::Read => self.watchpoints.push(addr), in add_hw_watchpoint() 204 WatchKind::ReadWrite => self.watchpoints.push(addr), in add_hw_watchpoint() 211 let pos = match self.watchpoints.iter().position(|x| *x == addr) { in remove_hw_watchpoint() 217 WatchKind::Write => self.watchpoints.remove(pos), in remove_hw_watchpoint() 218 WatchKind::Read => self.watchpoints.remove(pos), in remove_hw_watchpoint() 219 WatchKind::ReadWrite => self.watchpoints.remove(pos), in remove_hw_watchpoint()
|
/external/llvm-project/lldb/source/Commands/ |
D | CommandObjectWatchpoint.cpp | 226 const WatchpointList &watchpoints = target->GetWatchpointList(); in DoExecute() local 231 size_t num_watchpoints = watchpoints.GetSize(); in DoExecute() 245 Watchpoint *wp = watchpoints.GetByIndex(i).get(); in DoExecute() 261 Watchpoint *wp = watchpoints.FindByID(wp_ids[i]).get(); in DoExecute() 312 const WatchpointList &watchpoints = target->GetWatchpointList(); in DoExecute() local 314 size_t num_watchpoints = watchpoints.GetSize(); in DoExecute() 390 const WatchpointList &watchpoints = target->GetWatchpointList(); in DoExecute() local 391 size_t num_watchpoints = watchpoints.GetSize(); in DoExecute() 510 const WatchpointList &watchpoints = target->GetWatchpointList(); in DoExecute() local 512 size_t num_watchpoints = watchpoints.GetSize(); in DoExecute() [all …]
|
D | CommandObjectWatchpointCommand.cpp | 403 const WatchpointList &watchpoints = target->GetWatchpointList(); in DoExecute() local 404 size_t num_watchpoints = watchpoints.GetSize(); in DoExecute() 513 const WatchpointList &watchpoints = target->GetWatchpointList(); in DoExecute() local 514 size_t num_watchpoints = watchpoints.GetSize(); in DoExecute() 585 const WatchpointList &watchpoints = target->GetWatchpointList(); in DoExecute() local 586 size_t num_watchpoints = watchpoints.GetSize(); in DoExecute()
|
D | Options.td | 1196 Desc<"Delete all watchpoints without querying for confirmation.">;
|
/external/rust/crates/gdbstub/examples/armv4t/ |
D | emu.rs | 23 pub(crate) watchpoints: Vec<u32>, field 66 watchpoints: Vec::new(), in new() 81 let mut sniffer = MemSniffer::new(&mut self.mem, &self.watchpoints, |access| { in step()
|
/external/rust/crates/gdbstub/examples/armv4t_multicore/ |
D | emu.rs | 41 pub(crate) watchpoints: Vec<u32>, field 91 watchpoints: Vec::new(), in new() 118 let mut sniffer = MemSniffer::new(&mut self.mem, &self.watchpoints, |access| { in step_core()
|
D | gdb.rs | 203 self.watchpoints.push(addr); in add_hw_watchpoint() 224 let pos = match self.watchpoints.iter().position(|x| *x == addr) { in remove_hw_watchpoint() 228 self.watchpoints.remove(pos); in remove_hw_watchpoint()
|
/external/pigweed/targets/stm32f429i-disc1/ |
D | target_docs.rst | 165 Info : stm32f4x.cpu: hardware has 6 breakpoints, 4 watchpoints
|
/external/llvm-project/lldb/docs/use/ |
D | tutorial.rst | 391 Current watchpoints: 420 Current watchpoints:
|
D | map.rst | 717 <td class="header" colspan="2">List all watchpoints.</td>
|
/external/llvm-project/lldb/tools/debugserver/source/ |
D | ChangeLog | 268 qualifier to allow arches to auto detect how many hardware watchpoints they 854 (LOG_WATCHPOINTS): New macro definition for logging watchpoints.
|
/external/llvm-project/lldb/tools/debugserver/source/MacOSX/ |
D | MachProcess.mm | 2061 // TODO: clear software watchpoints if we implement them 2160 // Currently only try and set hardware watchpoints. 2166 // TODO: Add software watchpoints by doing page protection tricks.
|