Home
last modified time | relevance | path

Searched refs:breakpoint (Results 1 – 25 of 82) sorted by relevance

1234

/external/ltrace/
Dbreakpoint.h47 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);
58 int (*get_return_bp)(struct breakpoint **ret,
59 struct breakpoint *bp, struct process *proc);
62 struct breakpoint { struct
73 void breakpoint_on_hit(struct breakpoint *bp, struct process *proc); argument
77 void breakpoint_on_continue(struct breakpoint *bp, struct process *proc);
86 void breakpoint_on_retract(struct breakpoint *bp, struct process *proc);
[all …]
Dbreakpoints.c63 breakpoint_on_hit(struct breakpoint *bp, struct process *proc) in breakpoint_on_hit()
71 breakpoint_on_continue(struct breakpoint *bp, struct process *proc) in breakpoint_on_continue()
81 breakpoint_on_retract(struct breakpoint *bp, struct process *proc) in breakpoint_on_retract()
89 breakpoint_on_install(struct breakpoint *bp, struct process *proc) in breakpoint_on_install()
97 breakpoint_get_return_bp(struct breakpoint **ret, in breakpoint_get_return_bp()
98 struct breakpoint *bp, struct process *proc) in breakpoint_get_return_bp()
112 struct breakpoint *
120 struct breakpoint *found; in address2bpstruct()
128 os_breakpoint_init(struct process *proc, struct breakpoint *sbp) in os_breakpoint_init()
134 os_breakpoint_destroy(struct breakpoint *sbp) in os_breakpoint_destroy()
[all …]
Dbackend.h111 void enable_breakpoint(struct process *proc, struct breakpoint *sbp);
114 void disable_breakpoint(struct process *proc, struct breakpoint *sbp);
139 void continue_after_breakpoint(struct process *proc, struct breakpoint *sbp);
236 int os_breakpoint_init(struct process *proc, struct breakpoint *sbp);
237 void os_breakpoint_destroy(struct breakpoint *sbp);
238 int os_breakpoint_clone(struct breakpoint *retp, struct breakpoint *sbp);
245 int arch_breakpoint_init(struct process *proc, struct breakpoint *sbp);
246 void arch_breakpoint_destroy(struct breakpoint *sbp);
247 int arch_breakpoint_clone(struct breakpoint *retp, struct breakpoint *sbp);
453 struct breakpoint *bp,
Dproc.c153 arch_addr_t, struct breakpoint *, in process_bare_init()
239 destroy_breakpoint_cb(struct process *proc, struct breakpoint *bp, void *data) in destroy_breakpoint_cb()
338 clone_single_bp(arch_addr_t *key, struct breakpoint **bpp, void *u) in clone_single_bp()
340 struct breakpoint *bp = *bpp; in clone_single_bp()
343 struct breakpoint *clone = malloc(sizeof(*clone)); in clone_single_bp()
410 arch_addr_t, struct breakpoint *, NULL, in process_clone()
800 struct breakpoint *bp; in breakpoint_for_symbol()
1019 proc_add_breakpoint(struct process *proc, struct breakpoint *bp) in proc_add_breakpoint()
1041 proc_remove_breakpoint(struct process *proc, struct breakpoint *bp) in proc_remove_breakpoint()
1046 int rc = DICT_ERASE(proc->breakpoints, &bp->addr, struct breakpoint *, in proc_remove_breakpoint()
[all …]
Dproc.h230 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,
Dforward.h25 struct breakpoint;
/external/v8/test/mjsunit/
Ddebug-script-breakpoints.js54 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());
Ddebug-clearbreakpoint.js36 var breakpoint = -1; variable
72 testArguments(dcp, '{"breakpoint":' + (breakpoint + 1)+ '}', false);
76 testArguments(dcp, '{"breakpoint":' + breakpoint + '}', true);
79 testArguments(dcp, '{"breakpoint":' + breakpoint + '}', false);
95 breakpoint = Debug.setBreakPoint(g, 0, 0);
Ddebug-changebreakpoint.js36 var breakpoint = -1; variable
72 testArguments(dcp, '{"breakpoint":' + (breakpoint + 1) + ',"condition":"false"}', false);
76 var bp_str = '"breakpoint":' + breakpoint;;
103 breakpoint = Debug.setBreakPoint(g, 0, 0);
Ddebug-setexceptionbreak.js41 var breakpoint = -1; variable
114 breakpoint = Debug.setBreakPoint(g, 0, 0);
/external/ltrace/sysdeps/linux-gnu/
Dbreakpoint.c38 extern void arch_enable_breakpoint(pid_t, struct breakpoint *);
41 arch_enable_breakpoint(pid_t pid, struct breakpoint *sbp) in arch_enable_breakpoint()
82 enable_breakpoint(struct process *proc, struct breakpoint *sbp) in enable_breakpoint()
90 extern void arch_disable_breakpoint(pid_t, const struct breakpoint *sbp);
93 arch_disable_breakpoint(pid_t pid, const struct breakpoint *sbp) in arch_disable_breakpoint()
130 disable_breakpoint(struct process *proc, struct breakpoint *sbp) in disable_breakpoint()
Dtrace.h65 struct breakpoint *breakpoint_being_enabled;
68 struct breakpoint *sws_bps[2];
111 (struct process *proc, struct breakpoint *sbp,
Dtrace.c334 struct breakpoint *found; in ugly_workaround()
410 retract_breakpoint_cb(struct process *proc, struct breakpoint *bp, void *data) in retract_breakpoint_cb()
554 arch_sw_singlestep(struct process *proc, struct breakpoint *bp, in arch_sw_singlestep()
583 sw_singlestep_bp_on_hit(struct breakpoint *bp, struct process *proc) in sw_singlestep_bp_on_hit()
605 struct breakpoint *bp in sw_singlestep_add_bp()
665 struct breakpoint *sbp = self->breakpoint_being_enabled; in singlestep_error()
776 struct breakpoint *other in process_stopping_on_event()
808 struct breakpoint *sbp = self->breakpoint_being_enabled; in process_stopping_on_event()
863 process_install_stopping_handler(struct process *proc, struct breakpoint *sbp, in process_install_stopping_handler()
912 continue_after_breakpoint(struct process *proc, struct breakpoint *sbp) in continue_after_breakpoint()
[all …]
/external/ltrace/sysdeps/linux-gnu/arm/
Dbreakpoint.c34 arch_enable_breakpoint(pid_t pid, struct breakpoint *sbp) in arch_enable_breakpoint()
69 arch_disable_breakpoint(pid_t pid, const struct breakpoint *sbp) in arch_disable_breakpoint()
95 arch_breakpoint_init(struct process *proc, struct breakpoint *sbp) in arch_breakpoint_init()
106 arch_breakpoint_destroy(struct breakpoint *sbp) in arch_breakpoint_destroy()
111 arch_breakpoint_clone(struct breakpoint *retp, struct breakpoint *sbp) in arch_breakpoint_clone()
/external/v8/test/mjsunit/regress/
Dregress-131994.js39 var breakpoint = exec_state.frame(0);
42 assertTrue(breakpoint.sourceLineText().indexOf("// Break") > -1);
44 assertEquals(3, breakpoint.evaluate('x').value());
/external/valgrind/gdbserver_tests/
Dnlvgdbsigqueue.stdoutB.exp-solaris23 Program received signal SIGTRAP, Trace/breakpoint trap.
15 Program received signal SIGTRAP, Trace/breakpoint trap.
Dnlvgdbsigqueue.stdoutB.exp-solaris13 Program received signal SIGTRAP, Trace/breakpoint trap.
14 Program received signal SIGTRAP, Trace/breakpoint trap.
/external/valgrind/docs/internals/
Darm_thumb_notes_gdbserver.txt18 * breakpoint handling:
19 gdbsrv code detects that a breakpoint is reached
20 by comparing the current guest_IP with the breakpoint addresses given
22 the gdbsrv code has to ensure breakpoint comparisons are done without
44 When a breakpoint is placed at an instruction, the translation for this
71 (see breakpoint handling above).
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/EventModifiers/
DJDWPEventModifierTestCase.java59 Breakpoint breakpoint) { in createBreakpointEventBuilder() argument
60 long typeID = debuggeeWrapper.vmMirror.getTypeID(breakpoint.className, typeTag); in createBreakpointEventBuilder()
61 long methodID = getMethodID(typeID, breakpoint.methodName); in createBreakpointEventBuilder()
65 breakpoint.index)); in createBreakpointEventBuilder()
DCountModifierTest.java77 Breakpoint breakpoint = new Breakpoint(TEST_CLASS_SIGNATURE, in testBreakpoint() local
80 breakpoint); in testBreakpoint()
DThreadOnlyModifierTest.java68 Breakpoint breakpoint = new Breakpoint(TEST_CLASS_SIGNATURE, in testBreakpoint() local
71 breakpoint); in testBreakpoint()
/external/ltrace/sysdeps/linux-gnu/ppc/
Dplt.c825 dl_plt_update_bp_on_hit(struct breakpoint *bp, struct process *proc) in dl_plt_update_bp_on_hit()
940 jump_to_entry_point(struct process *proc, struct breakpoint *bp) in jump_to_entry_point()
950 ppc_plt_bp_continue(struct breakpoint *bp, struct process *proc) in ppc_plt_bp_continue()
1025 struct breakpoint *bp = data; in detach_task_cb()
1043 ppc_plt_bp_retract(struct breakpoint *bp, struct process *proc) in ppc_plt_bp_retract()
1058 ppc_plt_bp_install(struct breakpoint *bp, struct process *proc) in ppc_plt_bp_install()
1152 arch_breakpoint_init(struct process *proc, struct breakpoint *bp) in arch_breakpoint_init()
1188 arch_breakpoint_destroy(struct breakpoint *bp) in arch_breakpoint_destroy()
1193 arch_breakpoint_clone(struct breakpoint *retp, struct breakpoint *sbp) in arch_breakpoint_clone()
Dtrace.c90 arch_sw_singlestep(struct process *proc, struct breakpoint *sbp, in arch_sw_singlestep()
95 struct breakpoint *other = address2bpstruct(proc->leader, ip); in arch_sw_singlestep()
/external/libxml2/
Dxmlmemory.c938 char *breakpoint; in xmlInitMemory() local
953 breakpoint = getenv("XML_MEM_BREAKPOINT"); in xmlInitMemory()
954 if (breakpoint != NULL) { in xmlInitMemory()
955 sscanf(breakpoint, "%ud", &xmlMemStopAtBlock); in xmlInitMemory()
959 breakpoint = getenv("XML_MEM_TRACE"); in xmlInitMemory()
960 if (breakpoint != NULL) { in xmlInitMemory()
961 sscanf(breakpoint, "%p", &xmlMemTraceBlockAt); in xmlInitMemory()
/external/opencv3/doc/tutorials/introduction/windows_visual_studio_image_watch/
Dwindows_visual_studio_image_watch.markdown90 Now set a breakpoint on the source line that says
94 To set the breakpoint, right-click on the source line and select Breakpoints --\> Insert Breakpoint
97 Launch the program in the debugger (Debug --\> Start Debugging, or hit *F5*). When the breakpoint is
99 breakpoint:
101 ![](images/breakpoint.png)
115 Here's what the docked Image Watch window looks like at our breakpoint:

1234