Searched defs:breakpoint (Results 1 - 16 of 16) sorted by relevance

/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/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/webkit/Source/WebCore/inspector/
H A DInspectorDebuggerAgent.cpp166 ScriptBreakpoint breakpoint(lineNumber, columnNumber, condition);
170 RefPtr<InspectorObject> location = resolveBreakpoint(breakpointId, it->first, breakpoint);
203 ScriptBreakpoint breakpoint(lineNumber, columnNumber, condition);
204 *actualLocation = resolveBreakpoint(breakpointId, sourceId, breakpoint);
208 *errorString = "Could not resolve breakpoint";
239 ScriptBreakpoint breakpoint(lineNumber, columnNumber, "");
240 m_continueToLocationBreakpointId = scriptDebugServer().setBreakpoint(sourceId, breakpoint, &lineNumber, &columnNumber);
244 PassRefPtr<InspectorObject> InspectorDebuggerAgent::resolveBreakpoint(const String& breakpointId, const String& sourceId, const ScriptBreakpoint& breakpoint) argument
250 if (breakpoint.lineNumber < script.lineOffset)
259 if (breakpoint
392 ScriptBreakpoint breakpoint; local
[all...]
/external/valgrind/main/coregrind/m_gdbserver/
H A Dm_gdbserver.c248 static void breakpoint (Bool insert, CORE_ADDR addr) function
254 /* insert a breakpoint at addr or upgrade its kind */
256 add_gs_address (addr, GS_break, "m_gdbserver breakpoint insert");
265 /* delete a breakpoint at addr or downgrade its kind */
271 remove_gs_address (g, "m_gdbserver breakpoint remove");
308 breakpoint (insert, addr);
999 This IP will be given to gdb (e.g. if a breakpoint is put at iaddr).
1107 or have just inserted a breakpoint.
1109 need to also implement the notion of 'breakpoint pending removal'
/external/webkit/Source/JavaScriptCore/assembler/
H A DMacroAssemblerARM.h592 void breakpoint() function in class:JSC::MacroAssemblerARM
H A DMacroAssemblerMIPS.h1311 void breakpoint() function in class:JSC::MacroAssemblerMIPS
H A DMacroAssemblerSH4.h1662 void breakpoint() function in class:JSC::MacroAssemblerSH4
H A DMacroAssemblerX86Common.h1109 void breakpoint() function in class:JSC::MacroAssemblerX86Common
H A DMacroAssemblerARMv7.h1107 void breakpoint() function in class:JSC::MacroAssemblerARMv7
/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/qemu/
H A Dexec.c1433 /* Add a breakpoint. */
1435 CPUBreakpoint **breakpoint)
1453 if (breakpoint)
1454 *breakpoint = bp;
1461 /* Remove a specific breakpoint. */
1479 /* Remove a specific breakpoint by reference. */
1480 void cpu_breakpoint_remove_by_ref(CPUState *env, CPUBreakpoint *breakpoint) argument
1483 QTAILQ_REMOVE(&env->breakpoints, breakpoint, entry);
1485 breakpoint_invalidate(env, breakpoint->pc);
1487 qemu_free(breakpoint);
1434 cpu_breakpoint_insert(CPUState *env, target_ulong pc, int flags, CPUBreakpoint **breakpoint) argument
[all...]
/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/v8/src/
H A Ddebug-debugger.js264 throw new Error("Unexpected breakpoint type " + type);
277 //Creates a clone of script breakpoint that is linked to another script.
408 throw new Error("Unexpected breakpoint type " + this.type_);
699 // Only enable if the breakpoint hasn't been deleted:
708 // Only enable if the breakpoint hasn't been deleted:
737 throw new Error('Invalid breakpoint');
780 // Sets a breakpoint in a script identified through id or name at the
1058 var breakpoint = this.breakPointsHit()[i];
1059 var script_break_point = breakpoint.script_break_point();
1064 number = breakpoint
[all...]

Completed in 312 milliseconds