/external/ltrace/ |
D | proc.c | 127 if (proc->breakpoints != NULL) { in process_bare_init() 128 dict_destroy(proc->breakpoints, in process_bare_init() 130 free(proc->breakpoints); in process_bare_init() 131 proc->breakpoints = NULL; in process_bare_init() 149 proc->breakpoints = malloc(sizeof(*proc->breakpoints)); in process_bare_init() 150 if (proc->breakpoints == NULL) in process_bare_init() 152 DICT_INIT(proc->breakpoints, in process_bare_init() 156 proc->breakpoints = NULL; in process_bare_init() 185 dict_destroy(proc->breakpoints, NULL, NULL, NULL); in process_bare_destroy() 186 free(proc->breakpoints); in process_bare_destroy() [all …]
|
D | breakpoints.c | 116 assert(proc->breakpoints != NULL); in address2bpstruct() 121 if (DICT_FIND_VAL(proc->breakpoints, &addr, &found) < 0) in address2bpstruct() 307 assert(leader->breakpoints != NULL); in insert_breakpoint() 317 if (DICT_FIND_VAL(leader->breakpoints, &bp->addr, &ext_bp) != 0) { in insert_breakpoint() 342 DICT_FIND_VAL(leader->breakpoints, &addr, &bp); in delete_breakpoint_at() 398 DICT_EACH(proc->breakpoints, arch_addr_t, struct breakpoint *, in disable_all_breakpoints() 435 assert(proc->breakpoints != NULL); in breakpoints_init()
|
D | proc.h | 96 struct dict *breakpoints; member
|
D | Makefile.am | 31 libltrace_la_SOURCES = bits.c breakpoints.c debug.c demangle.c dict.c \
|
D | Android.mk | 30 breakpoints.c \
|
D | NEWS | 122 before manipulating breakpoints. The downside is that performance
|
/external/v8/test/mjsunit/ |
D | debug-listbreakpoints.js | 92 assertEquals(response.body.breakpoints.length, num_breakpoints); 94 var breakpoints = response.body.breakpoints; 95 for (var i = 0; i < breakpoints.length; i++) { 96 var id = breakpoints[i].number; 100 assertEquals(breakpoints[i].line, breakpoint_linenos[j]);
|
D | debug-clearbreakpointgroup.js | 112 var breakpoints = Debug.scriptBreakPoints(); variable 113 assertEquals(3, breakpoints.length); 114 var breakpointNumbers = breakpoints.map(
|
D | mjsunit.status | 103 'debug-conditional-breakpoints': [PASS, NO_VARIANTS], 107 'debug-ignore-breakpoints': [PASS, NO_VARIANTS], # only in no-snap debug. 117 'debug-multiple-breakpoints': [PASS, NO_VARIANTS], # with custom snapshot and gc-stress. 119 'debug-enable-disable-breakpoints': [PASS, NO_VARIANTS], #arm64 nosnap with turbofan. 644 'debug-script-breakpoints': [PASS, FAIL],
|
/external/valgrind/docs/internals/ |
D | arm_thumb_notes_gdbserver.txt | 21 by gdb. As gdb is giving breakpoints without the thumb bit set, 24 => the breakpoints are stored in the gdbserver breakpoints hash table 26 => when the guest_IP is compared with these breakpoints, the thumb bit 69 This caused the breakpoints to not work (comparison between 73 This made breakpoints work, but then gdb next/step/... was then failing
|
/external/deqp/android/scripts/ |
D | debug.py | 75 breakpoints, argument 184 for breakpoint in breakpoints: 693 breakpoints=args.breakpoints,
|
/external/skia/site/dev/tools/ |
D | debugger.md | 106 alt-b | clears all breakpoints 107 ctrl-b | shows all breakpoints
|
/external/clang/test/CodeGenObjC/ |
D | debug-property-synth.m | 4 // Setting a breakpoint on a property should create breakpoints in
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/ |
D | jdimodel.jar | ... eclipse/jdt/internal/debug/core/breakpoints/
org/eclipse/jdt/internal/debug ... |
/external/ltrace/sysdeps/linux-gnu/mips/ |
D | trace.c | 281 if (DICT_HAS_KEY(proc->leader->breakpoints, &baddr)) { in arch_sw_singlestep()
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/META-INF/ |
D | MANIFEST.MF | 23 se.jdt.launching",org.eclipse.jdt.internal.debug.core.breakpoints;x-f
|
/external/ltrace/sysdeps/linux-gnu/metag/ |
D | trace.c | 380 if (dict_find(proc->leader->breakpoints, &baddr) != NULL) { in arch_sw_singlestep()
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
D | org.eclipse.debug.core_3.6.0.v20100519.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
/external/v8/src/debug/ |
D | debug.js | 1056 o.body.breakpoints = []; 1068 o.body.breakpoints.push(number); 1680 response.body = { breakpoints: cleared_break_points }; property 1744 breakpoints: array, property
|
/external/ltrace/sysdeps/linux-gnu/ |
D | trace.c | 335 if (DICT_FIND_VAL(proc->leader->breakpoints, &ip, &found) < 0) { in ugly_workaround() 1068 DICT_FIND_VAL(proc->leader->breakpoints, in process_vfork_on_event()
|
/external/llvm/docs/ |
D | WritingAnLLVMPass.rst | 1378 free to set breakpoints in your pass so that you can trace through execution or 1393 * Restarting the program breaks breakpoints. After following the information 1394 above, you have succeeded in getting some breakpoints planted in your pass. 1396 and you start getting errors about breakpoints being unsettable. The only 1397 way I have found to "fix" this problem is to delete the breakpoints that are 1398 already set in your pass, run the program, and re-set the breakpoints once
|
/external/kernel-headers/original/uapi/linux/ |
D | kvm.h | 78 struct kvm_breakpoint breakpoints[4]; member
|
/external/valgrind/ |
D | README_DEVELOPERS | 109 (4) Set any breakpoints you want and proceed as normal for gdb. The
|
/external/llvm/docs/tutorial/ |
D | LangImpl1.rst | 80 information will allow you to set breakpoints in Kaleidoscope
|
D | LangImpl8.rst | 439 With this we have enough debug information to set breakpoints in functions,
|