HomeSort by relevance Sort by last modified time
    Searched refs:breakpoint (Results 26 - 50 of 77) sorted by null

12 3 4

  /external/chromium_org/v8/src/
d8.js 166 result += 'breakpoint';
922 // Check for breakpoint condition.
929 // Check for script breakpoint (name:line[:column]). If no ':' in break
988 request.arguments.breakpoint = parseInt(args);
997 // Create a JSON request for the change breakpoint command.
1070 request.arguments.breakpoint = parseInt(breakpointArg);
    [all...]
  /external/chromium_org/third_party/libxml/src/
xmlmemory.c 138 * Breakpoint to use in conjunction with xmlMemStopAtBlock. When the block
139 * 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/
xmlmemory.c 138 * Breakpoint to use in conjunction with xmlMemStopAtBlock. When the block
139 * 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/v8/test/mjsunit/
debug-setbreakpoint.js 181 // Try setting breakpoint by url specified in sourceURL
194 assertTrue(breakListenerCalled, "Break listener not called on breakpoint set by sourceURL");
197 // Breakpoint in a script with no statements test case. If breakpoint is set
203 // Gets a script of 'i1' function and sets the breakpoint at line #4 which
212 // Creates the eval script and tries to set the breakpoint.
debug-ignore-breakpoints.js 51 // Set a breakpoint in f.
61 // Set another breakpoint in f at the same place.
debug-multiple-breakpoints.js 55 // Set a breakpoint in f.
60 // Set another breakpoint in f at the same place.
debug-step-2.js 74 // Set a breakpoint on the first var statement (line 1).
82 // Clear the breakpoint and check that no stepping happens.
debug-listbreakpoints.js 69 var arguments = '{"breakpoint":' + breakpoint_id + '}'
105 assertTrue(found, "found unexpected breakpoint " + id);
122 // Test with the 1 breakpoint already set:
137 // Clear the one breakpoint and retest:
debug-clearbreakpointgroup.js 65 // Clear breakpoint group 1.
100 // Call function 'g' from the compiled script to trigger breakpoint.
debug-setexceptionbreak.js 41 var breakpoint = -1; variable
114 breakpoint = Debug.setBreakPoint(g, 0, 0);
debug-break-inline.js 42 // Debug event listener which sets a breakpoint first time it is hit
  /external/v8/test/mjsunit/
debug-setbreakpoint.js 181 // Try setting breakpoint by url specified in sourceURL
194 assertTrue(breakListenerCalled, "Break listener not called on breakpoint set by sourceURL");
197 // Breakpoint in a script with no statements test case. If breakpoint is set
203 // Gets a script of 'i1' function and sets the breakpoint at line #4 which
212 // Creates the eval script and tries to set the breakpoint.
debug-ignore-breakpoints.js 51 // Set a breakpoint in f.
61 // Set another breakpoint in f at the same place.
debug-multiple-breakpoints.js 55 // Set a breakpoint in f.
60 // Set another breakpoint in f at the same place.
debug-step-2.js 74 // Set a breakpoint on the first var statement (line 1).
82 // Clear the breakpoint and check that no stepping happens.
debug-listbreakpoints.js 69 var arguments = '{"breakpoint":' + breakpoint_id + '}'
105 assertTrue(found, "found unexpected breakpoint " + id);
122 // Test with the 1 breakpoint already set:
137 // Clear the one breakpoint and retest:
debug-clearbreakpointgroup.js 65 // Clear breakpoint group 1.
100 // Call function 'g' from the compiled script to trigger breakpoint.
debug-setexceptionbreak.js 41 var breakpoint = -1; variable
114 breakpoint = Debug.setBreakPoint(g, 0, 0);
  /external/v8/src/
d8.js 170 result += 'breakpoint';
976 // Check for breakpoint condition.
983 // Check for script breakpoint (name:line[:column]). If no ':' in break
1042 request.arguments.breakpoint = parseInt(args);
1051 // Create a JSON request for the change breakpoint command.
1124 request.arguments.breakpoint = parseInt(breakpointArg);
    [all...]
debug-debugger.js 118 var break_point = new BreakPoint(source_position, opt_script_break_point);
128 function BreakPoint(source_position, opt_script_break_point) {
142 BreakPoint.prototype.number = function() {
147 BreakPoint.prototype.func = function() {
152 BreakPoint.prototype.source_position = function() {
157 BreakPoint.prototype.hit_count = function() {
162 BreakPoint.prototype.active = function() {
170 BreakPoint.prototype.condition = function() {
178 BreakPoint.prototype.ignoreCount = function() {
183 BreakPoint.prototype.script_break_point = function()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
DebuggerScript.js 298 var breakpoint = breakpoints[i];
299 var scriptBreakPoint = breakpoint.script_break_point();
300 numbers.push(scriptBreakPoint ? scriptBreakPoint.number() : breakpoint.number());
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_gdb.py 88 breakpoint='PyObject_Print',
92 Run 'python -c SOURCE' under gdb with a breakpoint.
94 Support injecting commands after the breakpoint is reached
100 # We use "set breakpoint pending yes" to avoid blocking with a:
102 # Make breakpoint pending on future shared library load? (y or [n])
114 commands = ['set breakpoint pending yes',
115 'break %s' % breakpoint,
150 'Function "%s" not defined.' % breakpoint,
177 # run "python -c'print DATA'" under gdb with a breakpoint on
181 # For a nested structure, the first time we hit the breakpoint wil
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_gdb.py 88 breakpoint='PyObject_Print',
92 Run 'python -c SOURCE' under gdb with a breakpoint.
94 Support injecting commands after the breakpoint is reached
100 # We use "set breakpoint pending yes" to avoid blocking with a:
102 # Make breakpoint pending on future shared library load? (y or [n])
114 commands = ['set breakpoint pending yes',
115 'break %s' % breakpoint,
150 'Function "%s" not defined.' % breakpoint,
177 # run "python -c'print DATA'" under gdb with a breakpoint on
181 # For a nested structure, the first time we hit the breakpoint wil
    [all...]
  /external/valgrind/main/gdbserver_tests/
mcinfcallWSRU.stderrB.exp 3 Breakpoint 1 at 0x........: file sleepers.c, line 72.
6 Breakpoint 1, sleeper_or_burner (v=0x........) at sleepers.c:72
10 Breakpoint 1, sleeper_or_burner (v=0x........) at sleepers.c:72
14 Breakpoint 1, sleeper_or_burner (v=0x........) at sleepers.c:72
17 Breakpoint 1, sleeper_or_burner (v=0x........) at sleepers.c:72
20 Program received signal SIGTRAP, Trace/breakpoint trap.
  /bionic/libm/upstream-freebsd/lib/msun/src/
math_private.h 533 #define breakpoint() asm("int $3") macro
537 #define breakpoint() raise(SIGTRAP) macro

Completed in 931 milliseconds

12 3 4