Searched refs:breakpoint (Results 76 - 100 of 154) sorted by relevance

1234567

/external/lldb/source/Breakpoint/
H A DBreakpointIDList.cpp144 result.AppendErrorWithFormat ("'%s' is not a valid breakpoint ID.\n", string_array[i]);
155 // an array of space-separated strings, and searches through the arguments for any breakpoint ID range specifiers.
157 // ID range specifiers are found, the range is interpreted and a list of canonical breakpoint IDs corresponding to
213 result.AppendErrorWithFormat ("'%d' is not a valid breakpoint ID.\n", bp_id);
244 result.AppendErrorWithFormat ("'%s' is not a valid breakpoint ID.\n", range_start.c_str());
253 result.AppendErrorWithFormat ("'%s' is not a valid breakpoint ID.\n", range_end);
265 result.AppendErrorWithFormat ("Invalid breakpoint id range: Either both ends of range must specify"
266 " a breakpoint location, or neither can specify a breakpoint location.\n");
271 // We have valid range starting & ending breakpoint ID
297 Breakpoint *breakpoint = breakpoints.GetBreakpointAtIndex (j).get(); local
[all...]
/external/ltrace/sysdeps/linux-gnu/
H A Dtrace.c46 #include "breakpoint.h"
294 * handling "onexit" and inherited the handler from breakpoint
328 breakpoint where IP points and let the process continue. After
329 this the breakpoint can be retracted and the process detached. */
334 struct breakpoint *found;
379 * edge of an instruction. So for tasks that have a breakpoint event
410 retract_breakpoint_cb(struct process *proc, struct breakpoint *bp, void *data)
470 * breakpoint (and therefore potentially doesn't have aligned IP),
515 * even if we are over a breakpoint. */
554 arch_sw_singlestep(struct process *proc, struct breakpoint *b
[all...]
/external/ltrace/
H A Dproc.c33 #include "breakpoint.h"
153 arch_addr_t, struct breakpoint *,
239 destroy_breakpoint_cb(struct process *proc, struct breakpoint *bp, void *data)
338 clone_single_bp(arch_addr_t *key, struct breakpoint **bpp, void *u)
340 struct breakpoint *bp = *bpp;
343 struct breakpoint *clone = malloc(sizeof(*clone));
410 arch_addr_t, struct breakpoint *, NULL,
781 "delayed and/or latent breakpoint pid=%d, %s@%p",
788 /* If there is an artificial breakpoint on the same address,
790 * there. That artificial breakpoint i
[all...]
H A DAndroid.mk56 sysdeps/linux-gnu/breakpoint.c \
73 $(arm_path)/breakpoint.c \
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/EventModifiers/
H A DCountModifierTest.java77 Breakpoint breakpoint = new Breakpoint(TEST_CLASS_SIGNATURE,
80 breakpoint);
H A DThreadOnlyModifierTest.java68 Breakpoint breakpoint = new Breakpoint(TEST_CLASS_SIGNATURE,
71 breakpoint);
H A DInstanceOnlyModifierTest.java77 Breakpoint breakpoint = new Breakpoint(TEST_CLASS_SIGNATURE,
80 breakpoint);
/external/lldb/test/lang/cpp/class_static/
H A DTestStaticVariables.py62 # The stop reason of the thread should be breakpoint.
65 'stop reason = breakpoint'])
86 breakpoint = target.BreakpointCreateByLocation("main.cpp", self.line)
87 self.assertTrue(breakpoint, VALID_BREAKPOINT)
93 # The stop reason of the thread should be breakpoint.
/external/lldb/test/lang/cpp/stl/
H A DTestSTL.py66 # test/stl: clang built binaries results in the breakpoint locations = 3,
75 'stop reason = breakpoint'])
77 # The breakpoint should have a hit count of 1.
78 self.expect("breakpoint list -f", BREAKPOINT_HIT_ONCE,
104 # Create the breakpoint inside function 'main'.
105 breakpoint = target.BreakpointCreateByLocation(self.source, self.line)
106 self.assertTrue(breakpoint, VALID_BREAKPOINT)
115 self.assertTrue(thread.IsValid(), "There should be a thread stopped due to breakpoint condition")
/external/lldb/test/python_api/type/
H A DTestTypeList.py51 # Create the breakpoint inside function 'main'.
52 breakpoint = target.BreakpointCreateByLocation(self.source, self.line)
53 self.assertTrue(breakpoint, VALID_BREAKPOINT)
62 self.assertTrue(thread.IsValid(), "There should be a thread stopped due to breakpoint condition")
/external/lldb/test/python_api/value/
H A DTestValueAPI.py50 # Create the breakpoint inside function 'main'.
51 breakpoint = target.BreakpointCreateByLocation('main.c', self.line)
52 self.assertTrue(breakpoint, VALID_BREAKPOINT)
61 self.assertTrue(thread.IsValid(), "There should be a thread stopped due to breakpoint condition")
/external/lldb/test/python_api/value/linked_list/
H A DTestValueAPILinkedList.py51 # Create the breakpoint inside function 'main'.
52 breakpoint = target.BreakpointCreateByLocation('main.cpp', self.line)
53 self.assertTrue(breakpoint, VALID_BREAKPOINT)
62 self.assertTrue(thread.IsValid(), "There should be a thread stopped due to breakpoint condition")
/external/lldb/tools/debugserver/source/MacOSX/
H A DMachThread.h66 uint32_t EnableHardwareBreakpoint (const DNBBreakpoint *breakpoint);
68 bool DisableHardwareBreakpoint (const DNBBreakpoint *breakpoint);
/external/ltrace/sysdeps/linux-gnu/ppc/
H A Dtrace.c36 #include "breakpoint.h"
90 arch_sw_singlestep(struct process *proc, struct breakpoint *sbp,
95 struct breakpoint *other = address2bpstruct(proc->leader, ip);
135 /* If a conditional branch is found, put a breakpoint
163 /* Put the breakpoint to the next instruction. */
H A Dplt.c35 #include "breakpoint.h"
67 * entry, and correspondingly that is useless as a breakpoint site.
75 * that there can be more than one breakpoint per symbol.
83 * we assume it was already resolved, and convert the breakpoint to
87 * When a PLT entry hits a resolved breakpoint (which happens because
98 * we treat it the same way as above: convert the PLT breakpoint to
103 * resolved, and put a breakpoint there. The next time around (when
106 * this breakpoint. When it hits, we know the PLT entry was resolved.
117 * that this breakpoint is artificial and has no associated symbol,
121 * breakpoint an
[all...]
/external/lldb/test/python_api/target/
H A DTestTargetAPI.py109 self.line1 = line_number('main.c', '// Find the line number for breakpoint 1 here.')
110 self.line2 = line_number('main.c', '// Find the line number for breakpoint 2 here.')
124 # Remove the lines to create a breakpoint and to start the inferior
127 breakpoint = target.BreakpointCreateByLocation('main.c', self.line1)
128 self.assertTrue(breakpoint, VALID_BREAKPOINT)
133 # Make sure we hit our breakpoint:
134 thread_list = lldbutil.get_threads_stopped_at_breakpoint (process, breakpoint)
207 # Add an extra twist of stopping the inferior in a breakpoint, and then continue till it's done.
210 breakpoint = target.BreakpointCreateByLocation('main.c', line)
265 self.assertTrue(thread.IsValid(), "There should be a thread stopped due to breakpoint conditio
[all...]
/external/deqp/android/scripts/
H A Ddebug.py138 gdbSetup.write("set breakpoint pending on\n")
140 for breakpoint in breakpoints:
141 print("Set breakpoint at %s" % breakpoint)
142 gdbSetup.write("break %s\n" % breakpoint)
144 gdbSetup.write("set breakpoint pending off\n")
/external/lldb/test/expression_command/call-restarts/
H A DTestCallThatRestarts.py54 breakpoint = target.BreakpointCreateBySourceRegex('Stop here in main.',self.main_source_spec)
55 self.assertTrue(breakpoint.GetNumLocations() > 0, VALID_BREAKPOINT)
62 # Frame #0 should be at our breakpoint.
63 threads = lldbutil.get_threads_stopped_at_breakpoint (process, breakpoint)
95 # Okay, now try with a breakpoint in the called code in the case where
96 # we are ignoring breakpoint hits.
/external/lldb/test/python_api/value/change_values/
H A DTestChangeValueAPI.py42 self.end_line = line_number ('main.c', '// Set a breakpoint here at the end')
53 # Create the breakpoint inside function 'main'.
54 breakpoint = target.BreakpointCreateByLocation('main.c', self.line)
55 self.assertTrue(breakpoint, VALID_BREAKPOINT)
57 # Create the breakpoint inside the function 'main'
61 # Create the breakpoint inside function 'main'.
72 self.assertTrue(thread.IsValid(), "There should be a thread stopped due to breakpoint condition")
124 # gcc may set multiple locations for breakpoint
125 breakpoint.SetEnabled(False)
132 self.assertTrue(thread.IsValid(), "There should be a thread stopped due to breakpoint conditio
[all...]
/external/lldb/source/Commands/
H A DCommandObjectBreakpoint.cpp69 "breakpoint set",
70 "Sets a breakpoint or set of breakpoints in the executable.",
71 "breakpoint set <cmd-options>"),
168 error.SetErrorStringWithFormat ("Unknown language type: '%s' for exception breakpoint", option_arg);
171 error.SetErrorStringWithFormat ("Unsupported language type: '%s' for exception breakpoint", option_arg);
368 // 1). -f -l -p [-s -g] (setting breakpoint by source location)
369 // 2). -a [-s -g] (setting breakpoint by address)
370 // 3). -n [-s -g] (setting breakpoint by function name)
371 // 4). -r [-s -g] (setting breakpoint by function name regular expression)
372 // 5). -p -f (setting a breakpoint b
1078 Breakpoint *breakpoint = target->GetBreakpointByID (cur_bp_id.GetBreakpointID()).get(); local
1198 Breakpoint *breakpoint = target->GetBreakpointByID (cur_bp_id.GetBreakpointID()).get(); local
1362 Breakpoint *breakpoint = breakpoints.GetBreakpointAtIndex (i).get(); local
1378 Breakpoint *breakpoint = target->GetBreakpointByID (cur_bp_id.GetBreakpointID()).get(); local
1702 Breakpoint *breakpoint = target->GetBreakpointByID (cur_bp_id.GetBreakpointID()).get(); local
1819 Breakpoint *breakpoint = target->GetBreakpointByID (cur_bp_id.GetBreakpointID()).get(); local
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/bindings/
H A DScriptSnippetModel.js351 * @return {!Array.<!{breakpoint: !WebInspector.BreakpointManager.Breakpoint, uiLocation: !WebInspector.UILocation}>}
357 breakpointLocations[i].breakpoint.remove();
363 * @param {!Array.<!{breakpoint: !WebInspector.BreakpointManager.Breakpoint, uiLocation: !WebInspector.UILocation}>} breakpointLocations
369 var breakpoint = breakpointLocations[i].breakpoint; variable
370 WebInspector.breakpointManager.setBreakpoint(uiSourceCode, uiLocation.lineNumber, uiLocation.columnNumber, breakpoint.condition(), breakpoint.enabled());
529 * @param {!Array.<!{breakpoint: !WebInspector.BreakpointManager.Breakpoint, uiLocation: !WebInspector.UILocation}>} breakpointLocations
/external/chromium_org/third_party/libxml/src/
H A Dxmlmemory.c139 * number reaches the specified value this function is called. One need to add a breakpoint
924 char *breakpoint; local
939 breakpoint = getenv("XML_MEM_BREAKPOINT");
940 if (breakpoint != NULL) {
941 sscanf(breakpoint, "%ud", &xmlMemStopAtBlock);
945 breakpoint = getenv("XML_MEM_TRACE");
946 if (breakpoint != NULL) {
947 sscanf(breakpoint, "%p", &xmlMemTraceBlockAt);
/external/libxml2/
H A Dxmlmemory.c139 * number reaches the specified value this function is called. One need to add a breakpoint
927 char *breakpoint; local
942 breakpoint = getenv("XML_MEM_BREAKPOINT");
943 if (breakpoint != NULL) {
944 sscanf(breakpoint, "%ud", &xmlMemStopAtBlock);
948 breakpoint = getenv("XML_MEM_TRACE");
949 if (breakpoint != NULL) {
950 sscanf(breakpoint, "%p", &xmlMemTraceBlockAt);
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorDebuggerAgent.cpp368 ScriptBreakpoint breakpoint(lineNumber, columnNumber, condition);
372 RefPtr<TypeBuilder::Debugger::Location> location = resolveBreakpoint(breakpointId, it->key, breakpoint, UserBreakpointSource);
408 ScriptBreakpoint breakpoint(lineNumber, columnNumber, condition);
409 actualLocation = resolveBreakpoint(breakpointId, scriptId, breakpoint, UserBreakpointSource);
413 *errorString = "Could not resolve breakpoint";
459 ScriptBreakpoint breakpoint(lineNumber, columnNumber, "");
460 m_continueToLocationBreakpointId = scriptDebugServer().setBreakpoint(scriptId, breakpoint, &lineNumber, &columnNumber, asBool(interstateLocationOpt));
606 PassRefPtr<TypeBuilder::Debugger::Location> InspectorDebuggerAgent::resolveBreakpoint(const String& breakpointId, const String& scriptId, const ScriptBreakpoint& breakpoint, BreakpointSource source) argument
612 if (breakpoint.lineNumber < script.startLine || script.endLine < breakpoint
1380 ScriptBreakpoint breakpoint; local
[all...]
/external/lldb/examples/python/
H A Dperformance.py88 def __init__(self, callback = None, callback_owner = None, name = None, module = None, file = None, line = None, breakpoint = None):
94 if breakpoint:
95 self.breakpoints.append(breakpoint)
216 print "breakpoint id = %d.%d" % (bp_id, bp_loc_id)
313 self.user_actions.append (BreakpointAction(breakpoint=bp, callback=TesterTestCase.BreakpointHit, callback_owner=self))

Completed in 564 milliseconds

1234567