Searched defs:breakpoint (Results 1 - 20 of 20) sorted by last modified time

/external/v8/test/mjsunit/
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);
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-setexceptionbreak.js41 var breakpoint = -1; variable
114 breakpoint = Debug.setBreakPoint(g, 0, 0);
/external/valgrind/coregrind/m_gdbserver/
H A Dm_gdbserver.c296 static void breakpoint (Bool insert, CORE_ADDR addr) function
302 /* insert a breakpoint at addr or upgrade its kind */
304 add_gs_address (addr, GS_break, "m_gdbserver breakpoint insert");
313 /* delete a breakpoint at addr or downgrade its kind */
319 remove_gs_address (g, "m_gdbserver breakpoint remove");
357 breakpoint (insert, addr);
1160 This IP will be given to gdb (e.g. if a breakpoint is put at iaddr).
1272 or have just inserted a breakpoint.
1274 need to also implement the notion of 'breakpoint pending removal'
/external/v8/src/
H A Ddebug-debugger.js54 // The different types of breakpoint position alignments.
250 throw new Error("Unexpected breakpoint type " + type);
265 //Creates a clone of script breakpoint that is linked to another script.
397 throw new Error("Unexpected breakpoint type " + this.type_);
695 // Only enable if the breakpoint hasn't been deleted:
704 // Only enable if the breakpoint hasn't been deleted:
733 throw new Error('Invalid breakpoint');
776 // Sets a breakpoint in a script identified through id or name at the
1055 var breakpoint = this.breakPointsHit()[i];
1056 var script_break_point = breakpoint
[all...]
/external/skia/debugger/QT/
H A DSkDebuggerGUI.cpp468 QIcon breakpoint; local
469 breakpoint.addFile(QString::fromUtf8(":/breakpoint.png"),
472 fActionBreakpoint.setIcon(breakpoint);
/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...]
/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/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/lldb/source/Target/
H A DThreadPlanRunToAddress.cpp90 Breakpoint *breakpoint; local
91 breakpoint = m_thread.CalculateTarget()->CreateBreakpoint (m_addresses[i], true).get();
92 if (breakpoint != NULL)
94 m_break_ids[i] = breakpoint->GetID();
95 breakpoint->SetThreadID(m_thread.GetID());
96 breakpoint->SetBreakpointKind("run-to-address");
156 s->Printf (" using breakpoint: %d - ", m_break_ids[i]);
157 Breakpoint *breakpoint = m_thread.CalculateTarget()->GetBreakpointByID (m_break_ids[i]).get(); local
158 if (breakpoint)
159 breakpoint
[all...]
/external/lldb/test/api/multithreaded/
H A Dlistener_test.cpp2 // a breakpoint.
36 SBBreakpoint breakpoint = target.BreakpointCreateByName("next"); local
37 if (!breakpoint.IsValid()) throw Exception("invalid breakpoint");
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);
/external/lldb/tools/driver/
H A DDriver.cpp887 // Don't do anything about these events, since the breakpoint commands already echo these actions.
895 SBBreakpoint breakpoint = SBBreakpoint::GetBreakpointFromEvent(event); local
896 int message_len = ::snprintf (message, sizeof(message), "%d location%s added to breakpoint %d\n",
899 breakpoint.GetID());
/external/libxml2/
H A Dxmlmemory.c139 * number reaches the specified value this function is called. One need to add a breakpoint
928 char *breakpoint; local
943 breakpoint = getenv("XML_MEM_BREAKPOINT");
944 if (breakpoint != NULL) {
945 sscanf(breakpoint, "%ud", &xmlMemStopAtBlock);
949 breakpoint = getenv("XML_MEM_TRACE");
950 if (breakpoint != NULL) {
951 sscanf(breakpoint, "%p", &xmlMemTraceBlockAt);
/external/linux-tools-perf/src/tools/lib/traceevent/
H A Devent-parse.c112 void breakpoint(void) function
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.debug.core_3.6.0.v20100519.jar ... STEP_RETURN public static final int STEP_END public static final int BREAKPOINT public static final int CLIENT_REQUEST public static final int EVALUATION ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
H A Djdimodel.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
H A DVmMirror.java101 * Sets breakpoint to given location.
104 * @param breakpoint
107 public ReplyPacket setBreakpoint(byte typeTag, Breakpoint breakpoint) { argument
109 return setBreakpoint(typeTag, breakpoint,
114 * Sets breakpoint to given location.
117 * @param breakpoint
119 * Suspend policy for a breakpoint being created
122 public ReplyPacket setBreakpoint(byte typeTag, Breakpoint breakpoint, argument
125 long typeID = getTypeID(breakpoint.className, typeTag);
128 long methodID = getMethodID(typeID, breakpoint
187 setCountableBreakpoint(byte typeTag, Breakpoint breakpoint, byte suspendPolicy, int count) argument
[all...]
/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

Completed in 533 milliseconds