/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...] |
forward.h | 25 struct breakpoint;
|
breakpoints.c | 37 #include "breakpoint.h" 63 breakpoint_on_hit(struct breakpoint *bp, struct process *proc) 71 breakpoint_on_continue(struct breakpoint *bp, struct process *proc) 81 breakpoint_on_retract(struct breakpoint *bp, struct process *proc) 89 breakpoint_on_install(struct breakpoint *bp, struct process *proc) 97 breakpoint_get_return_bp(struct breakpoint **ret, 98 struct breakpoint *bp, struct process *proc) 112 struct breakpoint * 120 struct breakpoint *found; 128 os_breakpoint_init(struct process *proc, struct breakpoint *sbp [all...] |
common.h | 57 struct breakpoint;
|
backend.h | 42 * on the same OS (e.g. a way to insert a breakpoint into the process 110 /* Enable breakpoint SBP in process PROC. */ 111 void enable_breakpoint(struct process *proc, struct breakpoint *sbp); 113 /* Disable breakpoint SBP in process PROC. */ 114 void disable_breakpoint(struct process *proc, struct breakpoint *sbp); 137 /* Called after we hit a breakpoint SBP. Should do whatever 139 void continue_after_breakpoint(struct process *proc, struct breakpoint *sbp); 178 * Returning NULL delays breakpoint insertion and enables heaps of 191 * should insert an introspection breakpoint for handling dynamic 237 int os_breakpoint_init(struct process *proc, struct breakpoint *sbp) [all...] |
proc.h | 94 * address->breakpoint). This is NULL for non-leader 213 * a breakpoint is inserted for it. Returns 0 if the activation was 216 * breakpoint. */ 230 int proc_add_breakpoint(struct process *proc, struct breakpoint *bp); 234 void proc_remove_breakpoint(struct process *proc, struct breakpoint *bp); 241 struct breakpoint *bp,
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/cris/ |
break.s | 4 break breakpoint 22 .set breakpoint,2
|
/development/scripts/gdb/ |
dalvik.gdb | 18 # also set a breakpoint in a libart.so function to stop when the program 19 # hits an unexpected breakpoint 26 # set a breakpoint and record its number 27 set breakpoint pending on 34 set breakpoint pending auto 48 by gdb unless they are not handled by ART itself. A breakpoint is 60 # delete our breakpoint
|
/external/ltrace/sysdeps/linux-gnu/arm/ |
breakpoint.c | 22 * Modified from sysdeps/linux-gnu/breakpoint.c and added ARM Thumb support. 29 #include "breakpoint.h" 34 arch_enable_breakpoint(pid_t pid, struct breakpoint *sbp) 69 arch_disable_breakpoint(pid_t pid, const struct breakpoint *sbp) 95 arch_breakpoint_init(struct process *proc, struct breakpoint *sbp) 106 arch_breakpoint_destroy(struct breakpoint *sbp) 111 arch_breakpoint_clone(struct breakpoint *retp, struct breakpoint *sbp)
|
/external/ltrace/sysdeps/linux-gnu/ |
breakpoint.c | 33 #include "breakpoint.h" 38 extern void arch_enable_breakpoint(pid_t, struct breakpoint *); 41 arch_enable_breakpoint(pid_t pid, struct breakpoint *sbp) 82 enable_breakpoint(struct process *proc, struct breakpoint *sbp) 90 extern void arch_disable_breakpoint(pid_t, const struct breakpoint *sbp); 93 arch_disable_breakpoint(pid_t pid, const struct breakpoint *sbp) 130 disable_breakpoint(struct process *proc, struct breakpoint *sbp)
|
trace.h | 50 * Breakpoint re-enablement. When we hit a breakpoint, we must 53 * otherwise the processes would race for who sees the breakpoint 65 struct breakpoint *breakpoint_being_enabled; 68 struct breakpoint *sws_bps[2]; 111 (struct process *proc, struct breakpoint *sbp,
|
trace.c | 46 #include "breakpoint.h" 294 * handling "onexit" and inherited the handler from breakpoint 328 breakpoint where IP points and let the process continue. After 329 this the breakpoint can be retracted and the process detached. */ 334 struct breakpoint *found; 379 * edge of an instruction. So for tasks that have a breakpoint event 410 retract_breakpoint_cb(struct process *proc, struct breakpoint *bp, void *data) 470 * breakpoint (and therefore potentially doesn't have aligned IP), 515 * even if we are over a breakpoint. */ 554 arch_sw_singlestep(struct process *proc, struct breakpoint *bp [all...] |
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/ |
arch5tej.s | 11 bkpt @ Support for a breakpoint without an argument
|
/external/valgrind/gdbserver_tests/solaris/ |
nlcontrolc.stdoutB.exp | 2 Program received signal SIGTRAP, Trace/breakpoint trap. 10 Program received signal SIGTRAP, Trace/breakpoint trap.
|
/external/v8/test/mjsunit/ |
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-enable-disable-breakpoints.js | 51 // Set a breakpoint in f. 56 // Disable the breakpoint. 61 // Enable the breakpoint. 66 // Set another breakpoint in f at the same place. 71 // Disable the second breakpoint. 76 // Disable the first breakpoint. 87 // Disable the first breakpoint. 97 // Enable the first breakpoint.
|
debug-conditional-breakpoints.js | 51 // Conditional breakpoint which syntax error. 59 // Conditional breakpoint which evaluates to false. 67 // Conditional breakpoint which evaluates to true. 75 // Conditional breakpoint which different types of quotes. 105 // Conditional breakpoint which checks global variable. 117 // Conditional breakpoint which checks global variable. 127 // Conditional breakpoint which checks a parameter. 137 // Conditional breakpoint which checks a local variable. 147 // Multiple conditional breakpoint which the same condition. 160 // Multiple conditional breakpoint which different conditions [all...] |
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;; 103 breakpoint = Debug.setBreakPoint(g, 0, 0);
|
debug-script-breakpoints.js | 54 var breakpoint = Debug.scriptBreakPoints()[id]; 55 assertEquals(script_name, breakpoint.script_name()); 56 assertEquals(line, breakpoint.line()); 57 assertEquals(column, breakpoint.column()); 91 var breakpoint = Debug.scriptBreakPoints()[id]; 92 assertEquals(script_id, breakpoint.script_id()); 93 assertEquals(line, breakpoint.line()); 94 assertEquals(column, breakpoint.column());
|
/external/valgrind/gdbserver_tests/ |
nlcontrolc.stdoutB.exp | 2 Program received signal SIGTRAP, Trace/breakpoint trap. 14 Program received signal SIGTRAP, Trace/breakpoint trap.
|
nlvgdbsigqueue.stdoutB.exp | 3 Program received signal SIGTRAP, Trace/breakpoint trap.
|
mcbreak.stdoutB.exp | 0 Breakpoint 1 at 0x........: file t.c, line 113. 2 Breakpoint 2 at 0x........: file t.c, line 118. 4 Breakpoint 1, main (argc=1, argv=0x........) at t.c:113 37 Breakpoint 2, main (argc=1, argv=0x........) at t.c:118 39 Breakpoint 3 at 0x........: file t.c, line 120. 41 Breakpoint 3, main (argc=1, argv=0x........) at t.c:120 45 Program received signal SIGTRAP, Trace/breakpoint trap. 51 Program received signal SIGTRAP, Trace/breakpoint trap.
|
/external/ltrace/sysdeps/linux-gnu/ppc/ |
arch.h | 91 /* Transitional state before the breakpoint is enabled. */ 120 /* This is where we hide symbol for IRELATIVE breakpoint for 128 /* Breakpoint that hits when the dynamic linker is about to 130 struct breakpoint *dl_plt_update_bp; 132 /* PLT update breakpoint looks here for the handler. */
|
/external/v8/test/mjsunit/regress/ |
regress-131994.js | 39 var breakpoint = exec_state.frame(0); 42 assertTrue(breakpoint.sourceLineText().indexOf("// Break") > -1); 44 assertEquals(3, breakpoint.evaluate('x').value());
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/EventModifiers/ |
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; 65 breakpoint.index)) [all...] |