/external/llvm-project/lldb/test/API/python_api/watchpoint/ |
D | TestWatchpointIter.py | 64 watchpoint = value.Watch(True, False, True, error) 65 self.assertTrue(value and watchpoint, 75 self.assertTrue(watchpoint.IsEnabled()) 76 watch_id = watchpoint.GetID() 98 print(watchpoint) 100 self.assertTrue(watchpoint.GetHardwareIndex() != -1) 103 print(lldbutil.get_description(watchpoint, lldb.eDescriptionLevelFull)) 107 watchpoint.SetEnabled(False) 108 self.assertTrue(watchpoint.GetHardwareIndex() == -1) 109 self.assertFalse(watchpoint.IsEnabled()) [all …]
|
D | TestWatchpointIgnoreCount.py | 61 watchpoint = value.Watch(True, True, True, error) 62 self.assertTrue(value and watchpoint, 72 watchpoint = target.GetWatchpointAtIndex(0) 73 self.assertTrue(watchpoint.IsEnabled()) 74 self.assertEqual(watchpoint.GetIgnoreCount(), 0) 75 watch_id = watchpoint.GetID() 77 print(watchpoint) 81 watchpoint.SetIgnoreCount(2) 82 print(watchpoint) 89 self.assertTrue(watchpoint) [all …]
|
D | TestSetWatchpoint.py | 61 watchpoint = value.Watch(True, True, True, error) 62 self.assertTrue(value and watchpoint, 70 print(watchpoint) 111 self.assertFalse(watchpoint.IsValid())
|
D | categories | 1 watchpoint
|
/external/llvm-project/lldb/test/Shell/Watchpoint/ |
D | SetErrorCases.test | 12 watchpoint set 13 # CHECK: Commands for setting a watchpoint. 15 # CHECK: Set a watchpoint on an address by supplying an expression. 16 # CHECK: Set a watchpoint on a variable. 18 watchpoint set variable -w read_write 21 watchpoint set expression -w write -- 24 watchpoint set expression MyAggregateDataType 27 watchpoint set variable -s -128
|
D | netbsd-nouserdbregs.test | 1 # Check that 'watchpoint set' errors out gracefully when we can't set dbregs 17 watchpoint set variable g_watchme
|
/external/llvm-project/lldb/examples/test/ |
D | usage-pre-post-flight | 5 …86_64 -v -c ../examples/test/.lldb-pre-post-flight.bad functionalities/watchpoint/hello_watchpoint 8 …-A x86_64 -v -c ../examples/test/.lldb-pre-post-flight functionalities/watchpoint/hello_watchpoint 38 … -A x86_64 -v -c ../examples/test/.lldb-pre-post-flight functionalities/watchpoint/hello_watchpoint 46 Test a simple sequence of watchpoint creation and watchpoint hit. ... 54 Test a simple sequence of watchpoint creation and watchpoint hit. ...
|
/external/llvm-project/lldb/test/API/python_api/watchpoint/condition/ |
D | TestWatchpointConditionAPI.py | 66 watchpoint = value.Watch(True, False, True, error) 67 self.assertTrue(value and watchpoint, 72 watchpoint.SetCondition('global==5') 73 self.expect(watchpoint.GetCondition(), exe=False, 80 print(watchpoint)
|
/external/llvm-project/lldb/test/Shell/ScriptInterpreter/Lua/ |
D | watchpoint_callback.test | 6 watchpoint set expr 0x0 7 watchpoint command add -s lua 8 # CHECK: error: This script interpreter does not support watchpoint callbacks
|
/external/llvm-project/lldb/test/API/python_api/watchpoint/watchlocation/ |
D | TestTargetWatchAddress.py | 66 watchpoint = target.WatchAddress( 68 self.assertTrue(value and watchpoint, 77 print(watchpoint) 141 watchpoint = target.WatchAddress( 143 self.assertFalse(watchpoint)
|
D | TestSetWatchlocation.py | 67 watchpoint = value.WatchPointee(True, False, True, error) 68 self.assertTrue(value and watchpoint, 77 print(watchpoint)
|
/external/llvm-project/lldb/test/Shell/Register/ |
D | x86-db-read.test | 9 watchpoint set variable -w write g_8w 11 watchpoint set variable -w read_write g_16rw 13 watchpoint set variable -w write g_32w 15 watchpoint set variable -w read_write g_32rw
|
/external/llvm-project/lldb/examples/customization/pwd-cd-and-system/ |
D | README | 23 /Volumes/data/lldb/svn/trunk/test/functionalities/watchpoint/multiple_threads 26 /Volumes/data/lldb/svn/trunk/test/functionalities/watchpoint/multiple_threads 28 Current working directory: /Volumes/data/lldb/svn/trunk/test/functionalities/watchpoint
|
/external/llvm-project/lldb/test/API/commands/watchpoints/ |
D | categories | 1 watchpoint
|
/external/llvm-project/lldb/tools/debugserver/source/MacOSX/ |
D | MachThread.h | 71 uint32_t EnableHardwareWatchpoint(const DNBBreakpoint *watchpoint, 75 bool DisableHardwareWatchpoint(const DNBBreakpoint *watchpoint,
|
D | MachProcess.mm | 1840 // since the Z packets only send an address, we can only have one watchpoint 1843 // watchpoint 1862 // We failed to enable the watchpoint 2035 // If we have multiple references to a watchpoint, removing the watchpoint 2064 "%d ) invalid watchpoint ID", 2156 "watchpoint already enabled.",
|
/external/llvm-project/lldb/source/Commands/ |
D | CommandObjectWatchpointCommand.cpp | 140 > print "Hit this watchpoint!" in CommandObjectWatchpointCommandAdd() 164 > out_string = "Hit watchpoint number " + repr (wp_no) in CommandObjectWatchpointCommandAdd() 176 > print "Hit this watchpoint " + repr(wp_count) + " times!" in CommandObjectWatchpointCommandAdd()
|
D | Options.td | 1156 let Command = "watchpoint list" in { 1158 "brief description of the watchpoint (no location info).">; 1160 "description of the watchpoint and its locations.">; 1162 "everything we know about the watchpoint (for debugging debugger bugs).">; 1165 let Command = "watchpoint ignore" in { 1167 Arg<"Count">, Required, Desc<"Set the number of times this watchpoint is" 1171 let Command = "watchpoint modify" in { 1173 Desc<"The watchpoint stops only if this condition expression evaluates " 1177 let Command = "watchpoint command add" in { 1179 Arg<"OneLiner">, Desc<"Specify a one-line watchpoint command inline. Be " [all …]
|
/external/llvm-project/lldb/docs/use/ |
D | map.rst | 661 … <td class="header" colspan="2">Set a watchpoint on a variable when it is written to.</td> 668 <b>(lldb)</b> watchpoint set variable global_var 676 …<td class="header" colspan="2">Set a watchpoint on a memory location when it is written into. The … 683 <b>(lldb)</b> watchpoint set expression -- my_ptr 691 <td class="header" colspan="2">Set a condition on a watchpoint.</td> 699 <b>(lldb)</b> watchpoint modify -c '(global==5)' 705 …d #1: tid = 0x1c03, 0x0000000100000ef5 a.out`modify + 21 at main.cpp:16, stop reason = watchpoint 1 725 <b>(lldb)</b> watchpoint list 733 <td class="header" colspan="2">Delete a watchpoint.</td> 741 <b>(lldb)</b> watchpoint delete 1
|
D | tutorial.rst | 379 In addition to breakpoints, you can use help watchpoint to see all the commands 380 for watchpoint manipulations. For instance, we might do the following to watch 388 …declare @ '/Volumes/data/lldb/svn/ToT/test/functionalities/watchpoint/watchpoint_commands/conditio… 393 …declare @ '/Volumes/data/lldb/svn/ToT/test/functionalities/watchpoint/watchpoint_commands/conditio… 403 …d #1: tid = 0x1c03, 0x0000000100000ef5 a.out`modify + 21 at main.cpp:16, stop reason = watchpoint 1 413 …d #1: tid = 0x1c03, 0x0000000100000ef5 a.out`modify + 21 at main.cpp:16, stop reason = watchpoint 1 422 …declare @ '/Volumes/data/lldb/svn/ToT/test/functionalities/watchpoint/watchpoint_commands/conditio…
|
/external/llvm-project/llvm/test/tools/llvm-readobj/ELF/ |
D | note-core.test | 230 …leCheck %s --check-prefix=CHECK-GNU -DDESC="NT_ARM_HW_WATCH (AArch hardware watchpoint registers)" 231 …leCheck %s --check-prefix=CHECK-LLVM -DDESC="NT_ARM_HW_WATCH (AArch hardware watchpoint registers)"
|
/external/cpuinfo/test/dmesg/ |
D | nexus10.log | 136 <6>[ 0.222554] hw-breakpoint: found 5 (+1 reserved) breakpoint and 4 watchpoint registers. 137 <6>[ 0.222671] hw-breakpoint: maximum watchpoint size is 8 bytes.
|
/external/llvm-project/lldb/bindings/python/ |
D | python-wrapper.swig | 89 // and is used when a script command is attached to a watchpoint for execution.
|
/external/llvm-project/lldb/tools/debugserver/source/ |
D | ChangeLog | 745 watchpoint commands z1, Z1, z2, Z2, z3 and Z3 773 * MacOSX/arm/DNBArchImpl.cpp: Added hardware breakpoint and watchpoint
|
/external/llvm-project/lldb/source/Target/ |
D | Process.cpp | 2547 Status Process::EnableWatchpoint(Watchpoint *watchpoint, bool notify) { in EnableWatchpoint() argument 2553 Status Process::DisableWatchpoint(Watchpoint *watchpoint, bool notify) { in DisableWatchpoint() argument
|