HomeSort by relevance Sort by last modified time
    Searched defs:breakpoint (Results 1 - 25 of 30) sorted by null

1 2

  /external/v8/test/mjsunit/
debug-changebreakpoint.js 36 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;;
97 breakpoint = Debug.setBreakPoint(g, 0, 0);
debug-clearbreakpoint.js 36 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 = Debug.setBreakPoint(g, 0, 0)
    [all...]
debug-setexceptionbreak.js 41 var breakpoint = -1; variable
114 breakpoint = Debug.setBreakPoint(g, 0, 0);
  /external/ltrace/
breakpoint.h 37 * 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 **ret
62 struct breakpoint { struct
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/EventModifiers/
CountModifierTest.java 21 import org.apache.harmony.jpda.tests.framework.Breakpoint;
62 * This testcase is for BREAKPOINT event with Count modifier.
63 * <BR>It runs CountModifierDebuggee and sets BREAKPOINT to its
66 * BREAKPOINT event occurs once after having called the method (count - 1)
75 // Breakpoint at start of test method.
77 Breakpoint breakpoint = new Breakpoint(TEST_CLASS_SIGNATURE, local
80 breakpoint);
ThreadOnlyModifierTest.java 21 import org.apache.harmony.jpda.tests.framework.Breakpoint;
55 * This testcase is for BREAKPOINT event with ThreadOnly modifier.
56 * <BR>It runs ThreadOnlyModifierDebuggee and sets BREAKPOINT to its
59 * BREAKPOINT event occurs only in the
68 Breakpoint breakpoint = new Breakpoint(TEST_CLASS_SIGNATURE, local
71 breakpoint);
InstanceOnlyModifierTest.java 21 import org.apache.harmony.jpda.tests.framework.Breakpoint;
57 * This testcase is for BREAKPOINT event with InstanceOnly modifier.
58 * <BR>It runs InstanceOnlyModifierDebuggee and sets BREAKPOINT to its
61 * BREAKPOINT event occurs only when 'this' object is the object in field
72 Breakpoint breakpoint = new Breakpoint(TEST_CLASS_SIGNATURE, local
75 breakpoint);
  /external/autotest/site_utils/
dump_to_cloudsql.py 180 def breakpoint(self, line): member in class:MySQLState
233 if state.breakpoint(line):
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
ExceptionCaughtTest.java 28 import org.apache.harmony.jpda.tests.framework.Breakpoint;
289 // we install a breakpoint.
290 // Note: we use a Count modifier to avoid suspending on the breakpoint. This
292 Breakpoint breakpoint = new Breakpoint(getDebuggeeClassSignature(), local
295 breakpoint, JDWPConstants.SuspendPolicy.ALL, 10);
  /external/skia/debugger/QT/
SkDebuggerGUI.cpp 404 QIcon breakpoint; local
405 breakpoint.addFile(QString::fromUtf8(":/breakpoint.png"),
408 fActionBreakpoint.setIcon(breakpoint);
428 fActionCreateBreakpoint.setText("Set Breakpoint");
  /external/libxml2/
xmlmemory.c 139 * Breakpoint to use in conjunction with xmlMemStopAtBlock. When the block
140 * number reaches the specified value this function is called. One need to add a breakpoint
946 char *breakpoint; local
961 breakpoint = getenv("XML_MEM_BREAKPOINT");
962 if (breakpoint != NULL) {
963 sscanf(breakpoint, "%ud", &xmlMemStopAtBlock);
967 breakpoint = getenv("XML_MEM_TRACE");
968 if (breakpoint != NULL) {
969 sscanf(breakpoint, "%p", &xmlMemTraceBlockAt);
  /bionic/libm/upstream-freebsd/lib/msun/src/
math_private.h 545 #define breakpoint() asm("int $3") macro
549 #define breakpoint() raise(SIGTRAP) macro
  /device/google/contexthub/firmware/external/freebsd/lib/msun/src/
math_private.h 537 #define breakpoint() asm("int $3") macro
541 #define breakpoint() raise(SIGTRAP) macro
  /external/valgrind/coregrind/m_gdbserver/
m_gdbserver.c 296 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);
    [all...]
  /ndk/sources/android/support/src/msun/
math_private.h 533 #define breakpoint() asm("int $3") macro
537 #define breakpoint() raise(SIGTRAP) macro
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
jdimodel.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.debug.core_3.6.0.v20100519.jar 
  /external/v8/src/debug/
debug.js 82 // The different types of breakpoint position alignments.
132 var break_point = new BreakPoint(source_position, opt_script_break_point);
142 function BreakPoint(source_position, opt_script_break_point) {
154 BreakPoint.prototype.number = function() {
159 BreakPoint.prototype.func = function() {
164 BreakPoint.prototype.source_position = function() {
169 BreakPoint.prototype.active = function() {
177 BreakPoint.prototype.condition = function() {
185 BreakPoint.prototype.script_break_point = function() {
190 BreakPoint.prototype.enable = function()
    [all...]
  /external/guice/extensions/struts2/lib/
freemarker-2.3.16.jar 
  /prebuilts/tools/common/m2/repository/org/freemarker/freemarker/2.3.20/
freemarker-2.3.20.jar 
  /prebuilts/sdk/tools/
jack-launcher.jar 
jack-server-4.8.ALPHA.jar 
  /external/guice/lib/build/
bnd-0.0.384.jar 
  /prebuilts/tools/common/m2/repository/net/sourceforge/htmlunit/htmlunit-core-js/2.14/
htmlunit-core-js-2.14.jar 
  /prebuilts/tools/common/m2/repository/org/mozilla/rhino/1.7R3/
rhino-1.7R3.jar 

Completed in 798 milliseconds

1 2