HomeSort by relevance Sort by last modified time
    Searched refs:watchpoint (Results 1 - 23 of 23) sorted by null

  /external/lldb/test/python_api/watchpoint/
TestWatchpointIgnoreCount.py 13 mydir = os.path.join("python_api", "watchpoint")
47 # Create a breakpoint on main.c in order to set our watchpoint later.
66 watchpoint = value.Watch(True, True, True, error)
67 self.assertTrue(value and watchpoint,
68 "Successfully found the variable and set a watchpoint")
75 # There should be only 1 watchpoint location under the target.
77 watchpoint = target.GetWatchpointAtIndex(0)
78 self.assertTrue(watchpoint.IsEnabled())
79 self.assertTrue(watchpoint.GetIgnoreCount() == 0)
80 watch_id = watchpoint.GetID(
    [all...]
TestWatchpointIter.py 2 Use lldb Python SBTarget API to iterate on the watchpoint(s) for the target.
13 mydir = os.path.join("python_api", "watchpoint")
47 # Create a breakpoint on main.c in order to set our watchpoint later.
66 watchpoint = value.Watch(True, True, True, error)
67 self.assertTrue(value and watchpoint,
68 "Successfully found the variable and set a watchpoint")
75 # There should be only 1 watchpoint location under the target.
77 self.assertTrue(watchpoint.IsEnabled())
78 watch_id = watchpoint.GetID()
92 self.assertTrue(thread, "The thread stopped due to watchpoint")
    [all...]
TestSetWatchpoint.py 2 Use lldb Python SBValue API to create a watchpoint for read_write of 'globl' var.
13 mydir = os.path.join("python_api", "watchpoint")
27 """Exercise SBValue.Watch() API to set a watchpoint."""
35 """Exercise SBValue.Watch() API to set a watchpoint."""
40 """Use SBFrame.WatchValue() to set a watchpoint and verify that the program stops later due to the watchpoint."""
66 watchpoint = value.Watch(True, True, True, error)
67 self.assertTrue(value and watchpoint,
68 "Successfully found the variable and set a watchpoint")
75 print watchpoint
    [all...]
  /external/valgrind/main/gdbserver_tests/
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
    [all...]
mcclean_after_fork.stdoutB.exp 7 Hardware read watchpoint 4: mem
9 Hardware read watchpoint 4: mem
  /external/lldb/examples/test/
usage-pre-post-flight 5 [11:31:19] johnny:/Volumes/data/lldb/svn/ToT/test $ ./dotest.py -A x86_64 -v -c ../examples/test/.lldb-pre-post-flight.bad functionalities/watchpoint/hello_watchpoint
8 [11:32:48] johnny:/Volumes/data/lldb/svn/ToT/test $ ./dotest.py -A x86_64 -v -c ../examples/test/.lldb-pre-post-flight functionalities/watchpoint/hello_watchpoint
38 Command invoked: python ./dotest.py -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/
TestWatchpointConditionAPI.py 2 Test watchpoint condition API.
13 mydir = os.path.join("python_api", "watchpoint", "condition")
22 # And the watchpoint variable declaration line number.
23 self.decl = line_number(self.source, '// Watchpoint variable declaration.')
31 """Test watchpoint condition API."""
39 """Test watchpoint condition API."""
45 """Do watchpoint condition API to set condition as 'global==5'."""
71 watchpoint = value.Watch(True, False, True, error)
72 self.assertTrue(value and watchpoint,
73 "Successfully found the variable and set a watchpoint")
    [all...]
  /external/lldb/test/python_api/watchpoint/watchlocation/
TestTargetWatchAddress.py 2 Use lldb Python SBtarget.WatchAddress() API to create a watchpoint for write of '*g_char_ptr'.
13 mydir = os.path.join("python_api", "watchpoint", "watchlocation")
29 """Exercise SBTarget.WatchAddress() API to set a watchpoint."""
38 """Exercise SBTarget.WatchAddress() API to set a watchpoint."""
58 """Use SBTarget.WatchAddress() to set a watchpoint and verify that the program stops later due to the watchpoint."""
88 watchpoint = target.WatchAddress(value.GetValueAsUnsigned(), 1, False, True, error)
89 self.assertTrue(value and watchpoint,
90 "Successfully found the pointer and set a watchpoint")
98 print watchpoint
    [all...]
TestSetWatchlocation.py 2 Use lldb Python SBValue.WatchPointee() API to create a watchpoint for write of '*g_char_ptr'.
13 mydir = os.path.join("python_api", "watchpoint", "watchlocation")
29 """Exercise SBValue.WatchPointee() API to set a watchpoint."""
38 """Exercise SBValue.WatchPointee() API to set a watchpoint."""
43 """Use SBValue.WatchPointee() to set a watchpoint and verify that the program stops later due to the watchpoint."""
73 watchpoint = value.WatchPointee(True, False, True, error)
74 self.assertTrue(value and watchpoint,
75 "Successfully found the pointer and set a watchpoint")
83 print watchpoint
    [all...]
  /external/valgrind/main/include/
pub_tool_gdbserver.h 89 accessibility for watchpoint support.
101 /* watchpoint support --------------------------------------*/
105 the access provided by the tool matches the watchpoint kind.
120 // Must return True if the watchpoint has been properly inserted or
128 Bool (*watchpoint) (PointKind kind, Bool insert, Addr addr, SizeT len)
  /external/chromium_org/v8/test/webkit/
dfg-patchable-get-by-id-after-watchpoint.js 25 "This tests that a patchable GetById right after a watchpoint has the appropriate nop padding."
30 var b = o.f; // Watchpoint.
62 // Cause first the watchpoint on o.f to fire, and then the GetById
64 O.prototype.g = 57; // Fire the watchpoint.
dfg-proto-stub-watchpoint-fire.js 25 "Tests that we don't crash if a watchpoint on prototype access stubs is fired."
  /external/lldb/tools/debugserver/source/MacOSX/
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/lldb/source/Target/
StopInfo.cpp 24 #include "lldb/Breakpoint/Watchpoint.h"
529 // Make sure watchpoint is properly disabled and subsequently enabled while performing watchpoint actions.
532 WatchpointSentry(Process *p, Watchpoint *w):
534 watchpoint(w)
536 if (process && watchpoint)
539 watchpoint->TurnOnEphemeralMode();
540 process->DisableWatchpoint(watchpoint, notify);
545 if (process && watchpoint)
547 if (!watchpoint->IsDisabledDuringEphemeralMode()
557 Watchpoint *watchpoint; member in class:lldb_private::StopInfoWatchpoint::WatchpointSentry
    [all...]
Process.cpp     [all...]
  /external/qemu/
exec.c 231 int flags, CPUWatchpoint **watchpoint)
236 /* Add a watchpoint. */
238 int flags, CPUWatchpoint **watchpoint)
246 fprintf(stderr, "qemu: tried to set invalid watchpoint at "
264 if (watchpoint)
265 *watchpoint = wp;
269 /* Remove a specific watchpoint. */
286 /* Remove a specific watchpoint by reference. */
287 void cpu_watchpoint_remove_by_ref(CPUArchState *env, CPUWatchpoint *watchpoint)
289 QTAILQ_REMOVE(&env->watchpoints, watchpoint, entry)
    [all...]
  /external/qemu/include/exec/
cpu-all.h 417 /* Breakpoint/watchpoint flags */
432 int flags, CPUWatchpoint **watchpoint);
435 void cpu_watchpoint_remove_by_ref(CPUArchState *env, CPUWatchpoint *watchpoint);
  /external/lldb/utils/vim-lldb/plugin/
lldb.vim 82 command -complete=custom,s:CompleteCommand -nargs=* Lwatchpoint python ctrl.doCommand('watchpoint', '<args>')
  /external/valgrind/main/coregrind/m_gdbserver/
m_gdbserver.c 72 watch_reason, // watchpoint detected by tool
333 void VG_(needs_watchpoint) (Bool (*watchpoint) (PointKind kind,
338 tool_watchpoint = watchpoint;
377 g = VG_(arena_malloc)(VG_AR_CORE, "gdbserver_point watchpoint",
441 /* If no overlap, examine next watchpoint: */
447 matches the watchpoint kind. */
451 /* Watchpoint encountered.
452 If this is a read watchpoint, we directly call gdbserver
454 Otherwise, for a write watchpoint, we have to finish
458 For a read watchpoint, we better call gdbserver directly
    [all...]
  /external/valgrind/main/none/tests/
cmdline1.stdout.exp 20 full is slower but provides precise watchpoint/step
cmdline2.stdout.exp 20 full is slower but provides precise watchpoint/step
  /external/chromium_org/third_party/cython/src/Cython/Debugger/
libpython.py     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
jdimodel.jar 

Completed in 3271 milliseconds