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

12 3 4

  /prebuilts/go/linux-x86/test/fixedbugs/
bug097.go 39 sys·Breakpoint(40960, 0, 45128, ...)
40 sys·Breakpoint(0xa000, 0xb048, 0xa000, ...)
  /prebuilts/go/darwin-x86/src/runtime/testdata/testprog/
deadlock.go 28 register("Breakpoint", Breakpoint)
144 func Breakpoint() {
145 runtime.Breakpoint()
  /prebuilts/go/linux-x86/src/runtime/testdata/testprog/
deadlock.go 28 register("Breakpoint", Breakpoint)
144 func Breakpoint() {
145 runtime.Breakpoint()
  /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;
61 * This testcase is for BREAKPOINT event with Count modifier.
62 * <BR>It runs CountModifierDebuggee and sets BREAKPOINT to its
65 * BREAKPOINT event occurs once after having called the method (count - 1)
74 // Breakpoint at start of test method.
76 Breakpoint breakpoint = new Breakpoint(TEST_CLASS_SIGNATURE, local
79 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);
JDWPEventModifierTestCase.java 3 import org.apache.harmony.jpda.tests.framework.Breakpoint;
51 * Creates an {@link EventBuilder} for BREAKPOINT event and sets a
55 * @param breakpoint the breakpoint info
59 Breakpoint breakpoint) {
60 long typeID = debuggeeWrapper.vmMirror.getTypeID(breakpoint.className, typeTag);
61 long methodID = getMethodID(typeID, breakpoint.methodName);
62 byte eventKind = JDWPConstants.EventKind.BREAKPOINT;
64 .setLocationOnly(new Location(typeTag, typeID, methodID, breakpoint.index))
    [all...]
  /art/test/997-single-step/src/art/
Test997.java 55 int cur_line = Breakpoint.locationToLine(e, loc);
  /external/valgrind/gdbserver_tests/
mcblocklistsearch.stderrB.exp 3 Breakpoint 1 at 0x........: file leak-tree.c, line 42.
4 Breakpoint 2 at 0x........: file leak-tree.c, line 67.
6 Breakpoint 1, f () at leak-tree.c:42
9 Breakpoint 2, main () at leak-tree.c:68
  /prebuilts/go/darwin-x86/test/
rename.go 58 runtime.Breakpoint() // panic is inaccessible
  /prebuilts/go/linux-x86/test/
rename.go 58 runtime.Breakpoint() // panic is inaccessible
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
bdb.py 8 __all__ = ["BdbQuit","Bdb","Breakpoint"]
127 # The line itself has no breakpoint, but maybe the line is the
128 # first line of a function with breakpoint set by function name.
234 # Set_break prints out the breakpoint line and file:lineno.
236 # for bp in Breakpoint.bpbynumber: if bp: bp.bpprint().
251 bp = Breakpoint(filename, lineno, temporary, cond, funcname)
254 if (filename, lineno) not in Breakpoint.bplist:
264 return 'There is no breakpoint at %s:%d' % (filename,
268 for bp in Breakpoint.bplist[filename, lineno][:]:
276 return 'Non-numeric breakpoint number (%s)' % arg
    [all...]
pdb.py 97 self.commands = {} # associates a command list to breakpoint numbers
104 self.commands_bnum = None # The breakpoint number for which we are
161 """Call every command that was set for the current active breakpoint
166 # self.currentbp is set in bdb in Bdb.break_here if a breakpoint was hit
276 a breakpoint command list definition.
318 """Defines a list of commands associated to a breakpoint.
320 Those commands will be executed whenever the breakpoint causes
323 bnum = len(bdb.Breakpoint.bpbynumber)-1
349 for bp in bdb.Breakpoint.bpbynumber:
414 # Check for reasonable breakpoint
    [all...]
  /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;
290 // we install a breakpoint.
291 // Note: we use a Count modifier to avoid suspending on the breakpoint. This
293 Breakpoint breakpoint = new Breakpoint(getDebuggeeClassSignature(), local
296 breakpoint, JDWPConstants.SuspendPolicy.ALL, 10);
  /external/python/cpython2/Lib/
bdb.py 8 __all__ = ["BdbQuit","Bdb","Breakpoint"]
132 # The line itself has no breakpoint, but maybe the line is the
133 # first line of a function with breakpoint set by function name.
194 # Issue #13183: pdb skips frames after hitting a breakpoint and running
247 # Set_break prints out the breakpoint line and file:lineno.
249 # for bp in Breakpoint.bpbynumber: if bp: bp.bpprint().
264 bp = Breakpoint(filename, lineno, temporary, cond, funcname)
267 if (filename, lineno) not in Breakpoint.bplist:
277 return 'There is no breakpoint at %s:%d' % (filename,
281 for bp in Breakpoint.bplist[filename, lineno][:]
    [all...]
pdb.py 97 self.commands = {} # associates a command list to breakpoint numbers
104 self.commands_bnum = None # The breakpoint number for which we are
161 """Call every command that was set for the current active breakpoint
166 # self.currentbp is set in bdb in Bdb.break_here if a breakpoint was hit
276 a breakpoint command list definition.
318 """Defines a list of commands associated to a breakpoint.
320 Those commands will be executed whenever the breakpoint causes
323 bnum = len(bdb.Breakpoint.bpbynumber)-1
349 for bp in bdb.Breakpoint.bpbynumber:
414 # Check for reasonable breakpoint
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
bdb.py 8 __all__ = ["BdbQuit","Bdb","Breakpoint"]
132 # The line itself has no breakpoint, but maybe the line is the
133 # first line of a function with breakpoint set by function name.
194 # Issue #13183: pdb skips frames after hitting a breakpoint and running
247 # Set_break prints out the breakpoint line and file:lineno.
249 # for bp in Breakpoint.bpbynumber: if bp: bp.bpprint().
264 bp = Breakpoint(filename, lineno, temporary, cond, funcname)
267 if (filename, lineno) not in Breakpoint.bplist:
277 return 'There is no breakpoint at %s:%d' % (filename,
281 for bp in Breakpoint.bplist[filename, lineno][:]
    [all...]
pdb.py 97 self.commands = {} # associates a command list to breakpoint numbers
104 self.commands_bnum = None # The breakpoint number for which we are
161 """Call every command that was set for the current active breakpoint
166 # self.currentbp is set in bdb in Bdb.break_here if a breakpoint was hit
276 a breakpoint command list definition.
318 """Defines a list of commands associated to a breakpoint.
320 Those commands will be executed whenever the breakpoint causes
323 bnum = len(bdb.Breakpoint.bpbynumber)-1
349 for bp in bdb.Breakpoint.bpbynumber:
414 # Check for reasonable breakpoint
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
bdb.py 8 __all__ = ["BdbQuit","Bdb","Breakpoint"]
132 # The line itself has no breakpoint, but maybe the line is the
133 # first line of a function with breakpoint set by function name.
194 # Issue #13183: pdb skips frames after hitting a breakpoint and running
247 # Set_break prints out the breakpoint line and file:lineno.
249 # for bp in Breakpoint.bpbynumber: if bp: bp.bpprint().
264 bp = Breakpoint(filename, lineno, temporary, cond, funcname)
267 if (filename, lineno) not in Breakpoint.bplist:
277 return 'There is no breakpoint at %s:%d' % (filename,
281 for bp in Breakpoint.bplist[filename, lineno][:]
    [all...]
pdb.py 97 self.commands = {} # associates a command list to breakpoint numbers
104 self.commands_bnum = None # The breakpoint number for which we are
161 """Call every command that was set for the current active breakpoint
166 # self.currentbp is set in bdb in Bdb.break_here if a breakpoint was hit
276 a breakpoint command list definition.
318 """Defines a list of commands associated to a breakpoint.
320 Those commands will be executed whenever the breakpoint causes
323 bnum = len(bdb.Breakpoint.bpbynumber)-1
349 for bp in bdb.Breakpoint.bpbynumber:
414 # Check for reasonable breakpoint
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
bdb.py 8 __all__ = ["BdbQuit","Bdb","Breakpoint"]
132 # The line itself has no breakpoint, but maybe the line is the
133 # first line of a function with breakpoint set by function name.
194 # Issue #13183: pdb skips frames after hitting a breakpoint and running
247 # Set_break prints out the breakpoint line and file:lineno.
249 # for bp in Breakpoint.bpbynumber: if bp: bp.bpprint().
264 bp = Breakpoint(filename, lineno, temporary, cond, funcname)
267 if (filename, lineno) not in Breakpoint.bplist:
277 return 'There is no breakpoint at %s:%d' % (filename,
281 for bp in Breakpoint.bplist[filename, lineno][:]
    [all...]
pdb.py 97 self.commands = {} # associates a command list to breakpoint numbers
104 self.commands_bnum = None # The breakpoint number for which we are
161 """Call every command that was set for the current active breakpoint
166 # self.currentbp is set in bdb in Bdb.break_here if a breakpoint was hit
276 a breakpoint command list definition.
318 """Defines a list of commands associated to a breakpoint.
320 Those commands will be executed whenever the breakpoint causes
323 bnum = len(bdb.Breakpoint.bpbynumber)-1
349 for bp in bdb.Breakpoint.bpbynumber:
414 # Check for reasonable breakpoint
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
bdb.py 8 __all__ = ["BdbQuit","Bdb","Breakpoint"]
132 # The line itself has no breakpoint, but maybe the line is the
133 # first line of a function with breakpoint set by function name.
194 # Issue #13183: pdb skips frames after hitting a breakpoint and running
247 # Set_break prints out the breakpoint line and file:lineno.
249 # for bp in Breakpoint.bpbynumber: if bp: bp.bpprint().
264 bp = Breakpoint(filename, lineno, temporary, cond, funcname)
267 if (filename, lineno) not in Breakpoint.bplist:
277 return 'There is no breakpoint at %s:%d' % (filename,
281 for bp in Breakpoint.bplist[filename, lineno][:]
    [all...]
pdb.py 97 self.commands = {} # associates a command list to breakpoint numbers
104 self.commands_bnum = None # The breakpoint number for which we are
161 """Call every command that was set for the current active breakpoint
166 # self.currentbp is set in bdb in Bdb.break_here if a breakpoint was hit
276 a breakpoint command list definition.
318 """Defines a list of commands associated to a breakpoint.
320 Those commands will be executed whenever the breakpoint causes
323 bnum = len(bdb.Breakpoint.bpbynumber)-1
349 for bp in bdb.Breakpoint.bpbynumber:
414 # Check for reasonable breakpoint
    [all...]
  /device/linaro/bootloader/edk2/EmulatorPkg/Unix/
lldbefi.py 359 # This is an lldb breakpoint script, and assumes the breakpoint is on a
392 # make breakpoint command contiue
412 # make breakpoint command contiue
536 Breakpoint = Target.BreakpointCreateByName('SecGdbScriptBreak')
537 if Breakpoint.GetNumLocations() == 1:
539 debugger.HandleCommand("breakpoint command add -s python -F lldbefi.LoadEmulatorEfiSymbols {id}".format(id=Breakpoint.GetID()))

Completed in 5595 milliseconds

12 3 4