Searched refs:breakpoint (Results 1 - 25 of 154) sorted by relevance

1234567

/external/ltrace/
H A Dbreakpoint.h37 * low-level breakpoint, likely without tracepoint attached.
47 void (*on_hit)(struct breakpoint *bp, struct process *proc);
48 void (*on_continue)(struct breakpoint *bp, struct process *proc);
49 void (*on_install)(struct breakpoint *bp, struct process *proc);
50 void (*on_retract)(struct breakpoint *bp, struct process *proc);
52 /* Create a new breakpoint that should handle return from the
53 * function. BP is the breakpoint that was just hit and for
54 * which we wish to find the corresponding return breakpoint.
56 * been initialized to desired breakpoint object, or NULL if
58 int (*get_return_bp)(struct breakpoint **re
62 struct breakpoint { struct
[all...]
H A Dforward.h25 struct breakpoint;
H A Dbreakpoints.c37 #include "breakpoint.h"
63 breakpoint_on_hit(struct breakpoint *bp, struct process *proc)
71 breakpoint_on_continue(struct breakpoint *bp, struct process *proc)
81 breakpoint_on_retract(struct breakpoint *bp, struct process *proc)
89 breakpoint_on_install(struct breakpoint *bp, struct process *proc)
97 breakpoint_get_return_bp(struct breakpoint **ret,
98 struct breakpoint *bp, struct process *proc)
112 struct breakpoint *
120 struct breakpoint *found;
128 os_breakpoint_init(struct process *proc, struct breakpoint *sb
[all...]
H A Dcommon.h57 struct breakpoint;
H A Dbackend.h42 * on the same OS (e.g. a way to insert a breakpoint into the process
110 /* Enable breakpoint SBP in process PROC. */
111 void enable_breakpoint(struct process *proc, struct breakpoint *sbp);
113 /* Disable breakpoint SBP in process PROC. */
114 void disable_breakpoint(struct process *proc, struct breakpoint *sbp);
137 /* Called after we hit a breakpoint SBP. Should do whatever
139 void continue_after_breakpoint(struct process *proc, struct breakpoint *sbp);
178 * Returning NULL delays breakpoint insertion and enables heaps of
191 * should insert an introspection breakpoint for handling dynamic
237 int os_breakpoint_init(struct process *proc, struct breakpoint *sb
[all...]
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-131994.js40 var breakpoint = exec_state.frame(0);
43 assertTrue(breakpoint.sourceLineText().indexOf("// Break") > -1);
45 assertEquals(3, breakpoint.evaluate('x').value());
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DbreakpointsList.css30 .sidebar-pane > .body .breakpoint-condition {
38 .breakpoint-list .editing.being-edited {
43 #breakpoint-condition-input {
51 ol.breakpoint-list {
63 .breakpoint-list li {
70 .breakpoint-list li:hover {
74 .breakpoint-list .checkbox-elem {
83 .breakpoint-list .source-text {
90 .sidebar-pane .breakpoint-hit {
94 li.breakpoint
[all...]
/external/chromium_org/v8/test/mjsunit/
H A Ddebug-clearbreakpoint.js36 var breakpoint = -1; variable
71 testArguments(dcp, '{"breakpoint":0}', false);
72 testArguments(dcp, '{"breakpoint":' + (breakpoint + 1)+ '}', false);
73 testArguments(dcp, '{"breakpoint":"xx"}', false);
76 testArguments(dcp, '{"breakpoint":' + breakpoint + '}', true);
79 testArguments(dcp, '{"breakpoint":' + breakpoint + '}', false);
95 breakpoint
[all...]
H A Ddebug-changebreakpoint.js36 var breakpoint = -1; variable
71 testArguments(dcp, '{"breakpoint":0,"condition":"false"}', false);
72 testArguments(dcp, '{"breakpoint":' + (breakpoint + 1) + ',"condition":"false"}', false);
73 testArguments(dcp, '{"breakpoint":"xx","condition":"false"}', false);
76 var bp_str = '"breakpoint":' + breakpoint;;
103 breakpoint = Debug.setBreakPoint(g, 0, 0);
/external/lldb/test/api/multithreaded/
H A Dtest_breakpoint_callback.cpp3 // SBBreakpoint.SetCallback() is invoked when a breakpoint is hit.
35 SBBreakpoint breakpoint = target.BreakpointCreateByName("next"); local
36 if (!breakpoint.IsValid()) throw Exception("invalid breakpoint");
37 breakpoint.SetCallback(BPCallback, 0);
H A Dlistener_test.cpp2 // a breakpoint.
36 SBBreakpoint breakpoint = target.BreakpointCreateByName("next"); local
37 if (!breakpoint.IsValid()) throw Exception("invalid breakpoint");
/external/lldb/test/python_api/default-constructor/
H A Dsb_breakpointlocation.py25 breakpoint = obj.GetBreakpoint()
26 # Do fuzz testing on the breakpoint obj, it should not crash lldb.
28 sb_breakpoint.fuzz_obj(breakpoint)
/external/lldb/test/functionalities/expr-doesnt-deadlock/
H A DTestExprDoesntBlock.py44 # Now create a breakpoint at source line before call_me_to_get_lock gets called.
47 breakpoint = target.BreakpointCreateBySourceRegex('Break here', main_file_spec)
49 print "breakpoint:", breakpoint
50 self.assertTrue(breakpoint and
51 breakpoint.GetNumLocations() == 1,
61 self.assertTrue(thread.IsValid(), "There should be a thread stopped due to breakpoint condition")
/external/lldb/examples/python/
H A Djump.py17 breakpoint = None
32 breakpoint = target.BreakpointCreateByLocation (line_entry.GetFileSpec(), line_number)
44 breakpoint = target.BreakpointCreateByLocation(line_entry.GetFileSpec(), (line_entry.GetLine() + line_number))
56 breakpoint = target.BreakpointCreateByLocation(line_entry.GetFileSpec(), (line_entry.GetLine() - line_number))
65 breakpoint = target.BreakpointCreateByLocation(file_name, line_number)
73 breakpoint = target.BreakpointCreateByAddress(address)
77 breakpoint = target.BreakpointCreateByName(linespec)
79 num_locations = breakpoint.GetNumLocations()
87 location = breakpoint.GetLocationAtIndex(location_index)
90 target.BreakpointDelete(breakpoint
[all...]
/external/lldb/test/functionalities/breakpoint/breakpoint_conditions/
H A DTestBreakpointConditions.py2 Test breakpoint conditions with 'breakpoint modify -c <expr> id'.
13 mydir = os.path.join("functionalities", "breakpoint", "breakpoint_conditions")
18 """Exercise breakpoint condition with 'breakpoint modify -c <expr> id'."""
25 """Exercise breakpoint condition inline with 'breakpoint set'."""
33 """Use Python APIs to set breakpoint conditions."""
39 """Exercise breakpoint condition with 'breakpoint modif
[all...]
/external/ltrace/sysdeps/linux-gnu/arm/
H A Dbreakpoint.c22 * Modified from sysdeps/linux-gnu/breakpoint.c and added ARM Thumb support.
29 #include "breakpoint.h"
34 arch_enable_breakpoint(pid_t pid, struct breakpoint *sbp)
69 arch_disable_breakpoint(pid_t pid, const struct breakpoint *sbp)
95 arch_breakpoint_init(struct process *proc, struct breakpoint *sbp)
106 arch_breakpoint_destroy(struct breakpoint *sbp)
111 arch_breakpoint_clone(struct breakpoint *retp, struct breakpoint *sbp)
/external/ltrace/sysdeps/linux-gnu/
H A Dbreakpoint.c33 #include "breakpoint.h"
38 extern void arch_enable_breakpoint(pid_t, struct breakpoint *);
41 arch_enable_breakpoint(pid_t pid, struct breakpoint *sbp)
82 enable_breakpoint(struct process *proc, struct breakpoint *sbp)
90 extern void arch_disable_breakpoint(pid_t, const struct breakpoint *sbp);
93 arch_disable_breakpoint(pid_t pid, const struct breakpoint *sbp)
130 disable_breakpoint(struct process *proc, struct breakpoint *sbp)
H A Dtrace.h50 * Breakpoint re-enablement. When we hit a breakpoint, we must
53 * otherwise the processes would race for who sees the breakpoint
65 struct breakpoint *breakpoint_being_enabled;
68 struct breakpoint *sws_bps[2];
111 (struct process *proc, struct breakpoint *sbp,
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/bindings/
H A DBreakpointManager.js59 BreakpointAdded: "breakpoint-added",
60 BreakpointRemoved: "breakpoint-removed",
223 var breakpoint = this.findBreakpoint(uiSourceCode, lineNumber, columnNumber);
224 if (breakpoint) {
225 breakpoint._updateState(condition, enabled);
226 return breakpoint;
231 breakpoint = new WebInspector.BreakpointManager.Breakpoint(this, projectId, path, sourceFileId, lineNumber, columnNumber, condition, enabled);
234 this._breakpointsForPrimaryUISourceCode.get(uiSourceCode).push(breakpoint);
235 return breakpoint;
295 * @return {!Array.<!{breakpoint
[all...]
/external/lldb/test/python_api/lldbutil/iter/
H A DTestLLDBIterator.py46 breakpoint = target.BreakpointCreateByLocation("main.cpp", self.line1)
47 self.assertTrue(breakpoint, VALID_BREAKPOINT)
77 breakpoint = target.BreakpointCreateByLocation("main.cpp", self.line1)
78 self.assertTrue(breakpoint, VALID_BREAKPOINT)
79 breakpoint = target.BreakpointCreateByLocation("main.cpp", self.line2)
80 self.assertTrue(breakpoint, VALID_BREAKPOINT)
106 breakpoint = target.BreakpointCreateByLocation("main.cpp", self.line1)
107 self.assertTrue(breakpoint, VALID_BREAKPOINT)
/external/lldb/test/functionalities/fat_archives/
H A DTestFatArchives.py37 set a breakpoint in the target and verify any breakpoint locations have valid debug
44 # Create a breakpoint by name
45 breakpoint = target.BreakpointCreateByName ('foo', exe)
46 self.assertTrue(breakpoint, VALID_BREAKPOINT)
48 # Make sure the breakpoint resolves to a function, file and line
49 for bp_loc in breakpoint:
50 # Get a section offset address (lldb.SBAddress) from the breakpoint location
54 self.assertTrue(function.IsValid(), "Verify breakpoint in fat BSD archive has valid function debug info")
55 self.assertTrue(line_entry.GetFileSpec(), "Verify breakpoint i
[all...]
/external/lldb/test/lang/objc/objc-ivar-stripped/
H A DTestObjCIvarStripped.py26 self.stop_line = line_number(self.main_source, '// Set breakpoint here.')
35 breakpoint = target.BreakpointCreateByLocation(self.main_source, self.stop_line)
36 self.assertTrue(breakpoint, VALID_BREAKPOINT)
42 thread_list = lldbutil.get_threads_stopped_at_breakpoint (process, breakpoint)
/external/lldb/test/python_api/watchpoint/watchlocation/
H A DTestTargetWatchAddress.py65 # Now create a breakpoint on main.c.
66 breakpoint = target.BreakpointCreateByLocation(self.source, self.line)
67 self.assertTrue(breakpoint and
68 breakpoint.GetNumLocations() == 1,
74 # We should be stopped due to the breakpoint. Get frame #0.
124 # Now create a breakpoint on main.c.
125 breakpoint = target.BreakpointCreateByLocation(self.source, self.line)
126 self.assertTrue(breakpoint and
127 breakpoint.GetNumLocations() == 1,
133 # We should be stopped due to the breakpoint
[all...]
/external/lldb/test/functionalities/thread/break_after_join/
H A DTestBreakAfterJoin.py19 """Test breakpoint handling after a thread join."""
27 """Test breakpoint handling after a thread join."""
34 # Find the line number for our breakpoint.
35 self.breakpoint = line_number('main.cpp', '// Set breakpoint here')
38 """Test breakpoint handling after a thread join."""
42 # This should create a breakpoint in the main thread.
43 lldbutil.run_break_set_by_file_and_line (self, "main.cpp", self.breakpoint, num_expected_locations=1)
45 # The breakpoint list should show 1 location.
46 self.expect("breakpoint lis
[all...]
/external/lldb/test/functionalities/thread/exit_during_break/
H A DTestExitDuringBreak.py19 """Test thread exit during breakpoint handling."""
27 """Test thread exit during breakpoint handling."""
34 # Find the line number for our breakpoint.
35 self.breakpoint = line_number('main.cpp', '// Set breakpoint here')
38 """Test thread exit during breakpoint handling."""
42 # This should create a breakpoint in the main thread.
43 lldbutil.run_break_set_by_file_and_line (self, "main.cpp", self.breakpoint, num_expected_locations=1)
45 # The breakpoint list should show 1 location.
46 self.expect("breakpoint lis
[all...]

Completed in 316 milliseconds

1234567