/external/lldb/test/python_api/watchpoint/ |
D | TestWatchpointIter.py | 66 watchpoint = value.Watch(True, True, True, error) 67 self.assertTrue(value and watchpoint, 77 self.assertTrue(watchpoint.IsEnabled()) 78 watch_id = watchpoint.GetID() 98 print watchpoint 99 self.assertTrue(watchpoint.GetHardwareIndex() != -1) 102 print lldbutil.get_description(watchpoint, lldb.eDescriptionLevelFull) 106 watchpoint.SetEnabled(False) 107 self.assertTrue(watchpoint.GetHardwareIndex() == -1) 108 self.assertFalse(watchpoint.IsEnabled()) [all …]
|
D | TestWatchpointIgnoreCount.py | 66 watchpoint = value.Watch(True, True, True, error) 67 self.assertTrue(value and watchpoint, 77 watchpoint = target.GetWatchpointAtIndex(0) 78 self.assertTrue(watchpoint.IsEnabled()) 79 self.assertTrue(watchpoint.GetIgnoreCount() == 0) 80 watch_id = watchpoint.GetID() 82 print watchpoint 86 watchpoint.SetIgnoreCount(2) 87 print watchpoint 94 self.assertTrue(watchpoint) [all …]
|
D | TestSetWatchpoint.py | 66 watchpoint = value.Watch(True, True, True, error) 67 self.assertTrue(value and watchpoint, 75 print watchpoint
|
/external/valgrind/gdbserver_tests/ |
D | mcwatchpoints.stdoutB.exp | 5 Hardware read watchpoint 2: undefined[0] 6 Hardware access (read/write) watchpoint 3: undefined[4] 7 Hardware watchpoint 4: undefined[8] 8 Hardware read watchpoint 5: undefined[9] 9 Hardware access (read/write) watchpoint 6: undefined[9] 10 Hardware watchpoint 7: undefined[9] 12 Hardware read watchpoint 2: undefined[0] 17 Hardware access (read/write) watchpoint 3: undefined[4] 22 Hardware access (read/write) watchpoint 3: undefined[4] 28 Hardware watchpoint 4: undefined[8]
|
D | mcclean_after_fork.stdinB.gdb | 15 # put a read watchpoint on mem 16 # we expect that the read watchpoint is not triggered in the child 22 # we should now have encountered the read watchpoint in the parent.
|
D | mcclean_after_fork.stdoutB.exp | 7 Hardware read watchpoint 4: mem 9 Hardware read watchpoint 4: mem
|
D | mcwatchpoints.vgtest | 1 # test the memcheck watchpoint functionality 2 # Note: we need --vgdb=full to stop at the instruction following the watchpoint.
|
/external/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/lldb/test/python_api/watchpoint/condition/ |
D | TestWatchpointConditionAPI.py | 71 watchpoint = value.Watch(True, False, True, error) 72 self.assertTrue(value and watchpoint, 77 watchpoint.SetCondition('global==5') 78 self.expect(watchpoint.GetCondition(), exe=False, 85 print watchpoint
|
/external/lldb/test/python_api/watchpoint/watchlocation/ |
D | TestTargetWatchAddress.py | 88 watchpoint = target.WatchAddress(value.GetValueAsUnsigned(), 1, False, True, error) 89 self.assertTrue(value and watchpoint, 98 print watchpoint 147 watchpoint = target.WatchAddress(value.GetValueAsUnsigned(), 365, False, True, error) 148 self.assertFalse(watchpoint)
|
D | TestSetWatchlocation.py | 73 watchpoint = value.WatchPointee(True, False, True, error) 74 self.assertTrue(value and watchpoint, 83 print watchpoint
|
/external/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/lldb/source/Target/ |
D | StopInfo.cpp | 534 watchpoint(w) in WatchpointSentry() 536 if (process && watchpoint) in WatchpointSentry() 539 watchpoint->TurnOnEphemeralMode(); in WatchpointSentry() 540 process->DisableWatchpoint(watchpoint, notify); in WatchpointSentry() 545 if (process && watchpoint) in ~WatchpointSentry() 547 if (!watchpoint->IsDisabledDuringEphemeralMode()) in ~WatchpointSentry() 550 process->EnableWatchpoint(watchpoint, notify); in ~WatchpointSentry() 552 watchpoint->TurnOffEphemeralMode(); in ~WatchpointSentry() 557 Watchpoint *watchpoint; member in lldb_private::StopInfoWatchpoint::WatchpointSentry
|
D | Process.cpp | 2803 Process::EnableWatchpoint (Watchpoint *watchpoint, bool notify) in EnableWatchpoint() argument 2811 Process::DisableWatchpoint (Watchpoint *watchpoint, bool notify) in DisableWatchpoint() argument
|
/external/lldb/tools/debugserver/source/MacOSX/ |
D | MachThread.h | 67 … uint32_t EnableHardwareWatchpoint (const DNBBreakpoint *watchpoint, bool also_set_on_task); 69 …bool DisableHardwareWatchpoint (const DNBBreakpoint *watchpoint, bool also_set_on_task);
|
/external/valgrind/include/ |
D | pub_tool_gdbserver.h | 126 Bool (*watchpoint) (PointKind kind, Bool insert, Addr addr, SizeT len)
|
/external/valgrind/coregrind/m_gdbserver/ |
D | README_DEVELOPERS | 107 supports this : when a watchpoint is placed, memcheck changes 110 is due to a watchpoint and gives the control back to gdb. 111 Stopping on the exact instruction for a write watchpoint implies 114 and so "does not believe" the information that the write watchpoint 115 was triggered, and continues the execution. At the next watchpoint 118 terminate the current instruction before reporting the write watchpoint. 122 See m_gdbserver.c Bool VG_(is_watched) where watchpoint handling
|
D | m_gdbserver.c | 334 void VG_(needs_watchpoint) (Bool (*watchpoint) (PointKind kind, in VG_() 339 tool_watchpoint = watchpoint; in VG_()
|
/external/lldb/utils/vim-lldb/plugin/ |
D | lldb.vim | 82 …=custom,s:CompleteCommand -nargs=* Lwatchpoint python ctrl.doCommand('watchpoint', '<args>')
|
/external/v8/test/webkit/ |
D | dfg-patchable-get-by-id-after-watchpoint-expected.txt | 24 This tests that a patchable GetById right after a watchpoint has the appropriate nop padding.
|
D | dfg-proto-stub-watchpoint-fire-expected.txt | 24 Tests that we don't crash if a watchpoint on prototype access stubs is fired.
|
/external/lldb/scripts/Python/ |
D | python-wrapper.swig | 247 // and is used when a script command is attached to a watchpoint for execution.
|
/external/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/lldb/docs/ |
D | lldb-gdb-remote.txt | 804 // "watchpoint". Should be used in conjunction with
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/ |
D | jdimodel.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |