Searched refs:breakpoint (Results 51 - 75 of 154) sorted by relevance

1234567

/external/lldb/examples/test/
H A Dusage-lldb-loggings9 [11:31:34] johnny:/Volumes/data/lldb/svn/ToT/test $ ./dotest.py -A x86_64 -v -c ../examples/test/.lldb-loggings functionalities/breakpoint/breakpoint_command
38 Command invoked: python ./dotest.py -A x86_64 -v -c ../examples/test/.lldb-loggings functionalities/breakpoint/breakpoint_command
46 Test a sequence of breakpoint command add, list, and delete. ...
51 Test a sequence of breakpoint command add, list, and delete. ...
70 [11:37:09] johnny:/Volumes/data/lldb/svn/ToT/test $ ./dotest.py -A x86_64 -v -c ../examples/test/.lldb-loggings functionalities/breakpoint/breakpoint_command
103 Command invoked: python ./dotest.py -A x86_64 -v -c ../examples/test/.lldb-loggings functionalities/breakpoint/breakpoint_command
111 Test a sequence of breakpoint command add, list, and delete. ...
116 Test a sequence of breakpoint command add, list, and delete. ...
/external/lldb/test/functionalities/thread/step_out/
H A DTestThreadStepOut.py57 # Find the line number for our breakpoint.
58 self.breakpoint = line_number('main.cpp', '// Set breakpoint here')
68 "main.cpp:%d" % self.breakpoint])
102 # This should create a breakpoint in the main thread.
103 lldbutil.run_break_set_by_file_and_line (self, "main.cpp", self.breakpoint, num_expected_locations=1)
105 # The breakpoint list should show 1 location.
106 self.expect("breakpoint list -f", "Breakpoint location shown correctly",
107 substrs = ["1: file = 'main.cpp', line = %d, locations = 1" % self.breakpoint])
133 # Step out of thread stopped at breakpoint
[all...]
/external/lldb/test/lang/cpp/class_types/
H A DTestClassTypes.py1 """Test breakpoint on a class constructor; and variable list the this object."""
25 """Use Python APIs to create a breakpoint by (filespec, line)."""
41 """Use Python APIs to create a breakpoint by (filespec, line)."""
85 # The stop reason of the thread should be breakpoint.
88 'stop reason = breakpoint'])
90 # The breakpoint should have a hit count of 1.
91 self.expect("breakpoint list -f", BREAKPOINT_HIT_ONCE,
100 """Use Python APIs to create a breakpoint by (filespec, line)."""
117 breakpoint = target.BreakpointCreateByLocation(bpfilespec, self.line)
118 self.assertTrue(breakpoint, VALID_BREAKPOIN
[all...]
/external/lldb/test/lang/cpp/dynamic-value/
H A DTestCppValueCast.py59 self.line = line_number(self.source, '// Set breakpoint here.')
75 breakpoint = target.BreakpointCreateByLocation(self.source, self.line)
76 self.assertTrue(breakpoint, VALID_BREAKPOINT)
94 threads = lldbutil.get_threads_stopped_at_breakpoint (process, breakpoint)
122 threads = lldbutil.continue_to_breakpoint (process, breakpoint)
/external/lldb/test/lang/objc/blocks/
H A DTestObjCIvarsInBlocks.py48 breakpoint = target.BreakpointCreateBySourceRegex ('// Break here inside the block.', self.class_source_file_spec)
49 self.assertTrue(breakpoint, VALID_BREAKPOINT)
52 self.assertTrue(breakpoint, VALID_BREAKPOINT)
58 thread_list = lldbutil.get_threads_stopped_at_breakpoint (process, breakpoint)
102 self.assertTrue (process.GetState() == lldb.eStateStopped, "Stopped at the second breakpoint.")
/external/ltrace/sysdeps/linux-gnu/ppc/
H A Darch.h91 /* Transitional state before the breakpoint is enabled. */
120 /* This is where we hide symbol for IRELATIVE breakpoint for
130 struct breakpoint *dl_plt_update_bp;
132 /* PLT update breakpoint looks here for the handler. */
/external/chromium_org/net/dns/
H A Dserial_worker_unittest.cc64 void BreakCallback(std::string breakpoint) { argument
65 breakpoint_ = breakpoint;
/external/lldb/test/expression_command/issue_11588/
H A DTest11588.py35 breakpoint = target.BreakpointCreateBySourceRegex('Set breakpoint here.',lldb.SBFileSpec ("main.cpp", False))
41 thread_list = lldbutil.get_threads_stopped_at_breakpoint (process, breakpoint)
/external/lldb/test/lang/objc/print-obj/
H A DTestPrintObj.py37 self.line = line_number(self.source, '// Set a breakpoint here.')
43 Set a breakpoint on the line in my_pthread_routine. Then switch threads
53 breakpoint = target.BreakpointCreateByLocation(self.source, self.line)
54 self.assertTrue(breakpoint, VALID_BREAKPOINT)
55 self.runCmd("breakpoint list")
/external/lldb/test/python_api/lldbutil/frame/
H A DTestFrameUtils.py33 breakpoint = target.BreakpointCreateByLocation("main.c", self.line)
34 self.assertTrue(breakpoint, VALID_BREAKPOINT)
/external/lldb/test/python_api/lldbutil/iter/
H A DTestRegistersIterator.py35 breakpoint = target.BreakpointCreateByLocation("main.cpp", self.line1)
36 self.assertTrue(breakpoint, VALID_BREAKPOINT)
/external/lldb/test/python_api/objc_type/
H A DTestObjCType.py44 # Create the breakpoint inside function 'main'.
45 breakpoint = target.BreakpointCreateByLocation("main.m", self.line)
46 self.assertTrue(breakpoint, VALID_BREAKPOINT)
57 self.assertTrue(thread.IsValid(), "There should be a thread stopped due to breakpoint condition")
/external/lldb/test/python_api/process/
H A DTestProcessAPI.py86 breakpoint = target.BreakpointCreateByLocation("main.cpp", self.line)
87 self.assertTrue(breakpoint, VALID_BREAKPOINT)
93 self.assertTrue(thread.IsValid(), "There should be a thread stopped due to breakpoint")
168 breakpoint = target.BreakpointCreateByLocation("main.cpp", self.line)
169 self.assertTrue(breakpoint, VALID_BREAKPOINT)
175 self.assertTrue(thread.IsValid(), "There should be a thread stopped due to breakpoint")
219 breakpoint = target.BreakpointCreateByLocation("main.cpp", self.line)
220 self.assertTrue(breakpoint, VALID_BREAKPOINT)
226 self.assertTrue(thread.IsValid(), "There should be a thread stopped due to breakpoint")
327 breakpoint
[all...]
/external/valgrind/main/gdbserver_tests/
H A Dnlvgdbsigqueue.stdoutB.exp3 Program received signal SIGTRAP, Trace/breakpoint trap.
H A Dmcbreak.stdoutB.exp46 Program received signal SIGTRAP, Trace/breakpoint trap.
52 Program received signal SIGTRAP, Trace/breakpoint trap.
/external/lldb/test/lang/c/array_types/
H A DTestArrayTypes.py1 """Test breakpoint by file/line number; and list variables with array types."""
63 # The stop reason of the thread should be breakpoint.
66 'stop reason = breakpoint'])
68 # The breakpoint should have a hit count of 1.
69 self.expect("breakpoint list -f", BREAKPOINT_HIT_ONCE,
102 breakpoint = target.BreakpointCreateByLocation("main.c", self.line)
103 self.assertTrue(breakpoint, VALID_BREAKPOINT)
105 # Sanity check the print representation of breakpoint.
106 bp = str(breakpoint)
124 # The stop reason of the thread should be breakpoint
[all...]
/external/lldb/test/expression_command/call-throws/
H A DTestCallThatThrows.py50 breakpoint = target.BreakpointCreateBySourceRegex('I am about to throw.',self.main_source_spec)
51 self.assertTrue(breakpoint.GetNumLocations() > 0, VALID_BREAKPOINT)
58 # Frame #0 should be at our breakpoint.
59 threads = lldbutil.get_threads_stopped_at_breakpoint (process, breakpoint)
77 # Okay, now try with a breakpoint in the called code in the case where
78 # we are ignoring breakpoint hits.
89 # Now set the ObjC language breakpoint and make sure that doesn't interfere with the call:
/external/lldb/test/lang/c/bitfields/
H A DTestBitfields.py58 # The stop reason of the thread should be breakpoint.
61 'stop reason = breakpoint'])
63 # The breakpoint should have a hit count of 1.
64 self.expect("breakpoint list -f", BREAKPOINT_HIT_ONCE,
133 breakpoint = target.BreakpointCreateByLocation("main.c", self.line)
134 self.assertTrue(breakpoint, VALID_BREAKPOINT)
139 # The stop reason of the thread should be breakpoint.
146 # The breakpoint should have a hit count of 1.
147 self.assertTrue(breakpoint.GetHitCount() == 1, BREAKPOINT_HIT_ONCE)
/external/ltrace/
H A Dproc.h94 * address->breakpoint). This is NULL for non-leader
213 * a breakpoint is inserted for it. Returns 0 if the activation was
216 * breakpoint. */
230 int proc_add_breakpoint(struct process *proc, struct breakpoint *bp);
234 void proc_remove_breakpoint(struct process *proc, struct breakpoint *bp);
241 struct breakpoint *bp,
/external/chromium_org/v8/src/
H A Dd8.js143 result += 'breakpoint';
895 // Check for breakpoint condition.
902 // Check for script breakpoint (name:line[:column]). If no ':' in break
961 request.arguments.breakpoint = parseInt(args);
970 // Create a JSON request for the change breakpoint command.
1043 request.arguments.breakpoint = parseInt(breakpointArg);
1186 print('clear <breakpoint #> - deletes the specified user defined breakpoint');
1187 print('d[elete] <breakpoint #> - deletes the specified user defined breakpoint');
[all...]
/external/lldb/test/functionalities/conditional_break/
H A DTestConditionalBreak.py56 breakpoint = target.BreakpointCreateByName("c", exe)
57 self.assertTrue(breakpoint, VALID_BREAKPOINT)
64 # The stop reason of the thread should be breakpoint.
109 # executable, sets the breakpoint on c(), and adds the callback for the
110 # breakpoint such that lldb only stops when the caller of c() is a().
130 # The stop reason of the thread should be breakpoint.
132 substrs = ['stopped', 'stop reason = breakpoint'])
/external/lldb/test/functionalities/exec/
H A DTestExec.py59 breakpoint = target.BreakpointCreateBySourceRegex ('Set breakpoint 1 here', lldb.SBFileSpec ("main.cpp", False))
60 self.assertTrue(breakpoint, VALID_BREAKPOINT)
67 # The stop reason of the thread should be breakpoint.
97 # Run and we should stop at breakpoint in main after exec
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/EventModifiers/
H A DJDWPEventModifierTestCase.java55 * @param breakpoint the breakpoint info
59 Breakpoint breakpoint) {
60 long typeID = debuggeeWrapper.vmMirror.getTypeID(breakpoint.className, typeTag);
61 long methodID = getMethodID(typeID, breakpoint.methodName);
65 breakpoint.index));
58 createBreakpointEventBuilder(byte typeTag, Breakpoint breakpoint) argument
/external/lldb/test/expression_command/test/
H A DTestExprs.py93 # Create the breakpoint.
95 breakpoint = target.BreakpointCreateByLocation(filespec, self.line)
96 self.assertTrue(breakpoint, VALID_BREAKPOINT)
98 # Verify the breakpoint just created.
99 self.expect(str(breakpoint), BREAKPOINT_CREATED, exe=False,
115 # The stop reason of the thread should be breakpoint.
130 # We should be stopped on the breakpoint with a hit count of 1.
131 self.assertTrue(breakpoint.GetHitCount() == 1, BREAKPOINT_HIT_ONCE)
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
H A DDOMBreakpointsSidebarPane.js152 message = "Paused on a \"%s\" breakpoint set on %s, because a new child was added to its descendant %s.";
155 message = "Paused on a \"%s\" breakpoint set on %s, because a new child was added to that node.";
157 message = "Paused on a \"%s\" breakpoint set on %s, because its descendant %s was removed.";
161 message = "Paused on a \"%s\" breakpoint set on %s.";
279 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Remove breakpoint" : "Remove Breakpoint"), removeBreakpoint.bind(this));
300 element.classList.add("breakpoint-hit");
307 this._highlightedElement.classList.remove("breakpoint-hit");
322 var breakpoint = storedBreakpoints[i];
323 if (breakpoint.url !== this._inspectedURL)
324 breakpoints.push(breakpoint);
[all...]

Completed in 388 milliseconds

1234567