/external/v8/test/mjsunit/ |
H A 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]); 153 // Set some more breakpoints, and clear them in various orders:
|
H A D | debug-clearbreakpointgroup.js | 112 var breakpoints = Debug.scriptBreakPoints(); 113 assertEquals(3, breakpoints.length); 114 var breakpointNumbers = breakpoints.map( 118 // Check that all breakpoints from group 1 were deleted and all the 124 // Clear all breakpoints to allow the test to run again (--stress-opt).
|
/external/ltrace/ |
H A D | proc.c | 127 if (proc->breakpoints != NULL) { 128 dict_destroy(proc->breakpoints, 130 free(proc->breakpoints); 131 proc->breakpoints = NULL; 149 proc->breakpoints = malloc(sizeof(*proc->breakpoints)); 150 if (proc->breakpoints == NULL) 152 DICT_INIT(proc->breakpoints, 156 proc->breakpoints = NULL; 185 dict_destroy(proc->breakpoints, NUL [all...] |
H A D | breakpoints.c | 116 assert(proc->breakpoints != NULL); 121 if (DICT_FIND_VAL(proc->breakpoints, &addr, &found) < 0) 303 /* Only the group leader should be getting the breakpoints and 307 assert(leader->breakpoints != NULL); 310 * breakpoints that are enabled at this address. The 317 if (DICT_FIND_VAL(leader->breakpoints, &bp->addr, &ext_bp) != 0) { 342 DICT_FIND_VAL(leader->breakpoints, &addr, &bp); 398 DICT_EACH(proc->breakpoints, arch_addr_t, struct breakpoint *, 434 * outside. Here we just put in breakpoints. */ 435 assert(proc->breakpoints ! [all...] |
H A D | Android.mk | 30 breakpoints.c \
|
H A D | proc.h | 93 /* Dictionary of breakpoints (which is a mapping 96 struct dict *breakpoints; member in struct:process 236 /* Iterate through the breakpoints of PROC. See callback.h for notes
|
/external/deqp/android/scripts/ |
H A D | debug.py | 75 breakpoints, 184 for breakpoint in breakpoints: 660 parser.add_argument('--breakpoints', dest='breakpoints', default=["tcu::App::App"], nargs='+', help="List of breakpoints that are set by gdb.") 693 breakpoints=args.breakpoints,
|
/external/lldb/examples/python/ |
H A D | process_events.py | 81 parser.add_option('-b', '--breakpoint', action='append', type='string', metavar='BPEXPR', dest='breakpoints', help='Breakpoint commands to create after the target has been created, the values will be sent to the "_regexp-break" command which supports breakpoints by name, file:line, and address.') 143 # Set any breakpoints that were specified in the args if we are launching. We use the 145 if launch_info and options.breakpoints: 146 for bp in options.breakpoints: 198 if options.breakpoints: 199 for bp in options.breakpoints:
|
H A D | performance.py | 92 self.breakpoints = list() 95 self.breakpoints.append(breakpoint) 112 self.breakpoints.append (self.target.BreakpointCreateByName(name, self.modules, self.files)) 114 self.breakpoints.append (self.target.BreakpointCreateByLocation(file, line)) 117 for bp in self.breakpoints:
|
/external/lldb/source/Commands/ |
H A D | CommandObjectBreakpoint.cpp | 70 "Sets a breakpoint or set of breakpoints in the executable.", 165 error.SetErrorStringWithFormat ("Set exception breakpoints separately for c++ and objective-c"); 362 result.AppendError ("Invalid target. Must set target before setting breakpoints (see 'target create' command)."); 367 // The following are the various types of breakpoints that could be set: 411 result.AppendError("Only one file at a time is allowed for file and line breakpoints."); 540 // Don't print out this warning for exception breakpoints. They can get set before the target 634 "To set breakpoints on .c/.cpp/.m/.mm files that are #included, set target.inline-breakpoint-strategy" 701 "Modify the options on a breakpoint or set of breakpoints in the executable. " 905 result.AppendError ("Invalid target. No existing target or breakpoints."); 1015 "Enable the specified disabled breakpoint(s). If no breakpoints ar 1043 const BreakpointList &breakpoints = target->GetBreakpointList(); local 1163 const BreakpointList &breakpoints = target->GetBreakpointList(); local 1341 const BreakpointList &breakpoints = target->GetBreakpointList(m_options.m_internal); local 1536 BreakpointList &breakpoints = target->GetBreakpointList(); local 1659 const BreakpointList &breakpoints = target->GetBreakpointList(); local [all...] |
H A D | CommandObjectBreakpointCommand.cpp | 515 result.AppendError ("There is not a current executable; there are no breakpoints to which to add commands"); 520 const BreakpointList &breakpoints = target->GetBreakpointList(); local 521 size_t num_breakpoints = breakpoints.GetSize(); 525 result.AppendError ("No breakpoints exist to have commands added"); 697 result.AppendError ("There is not a current executable; there are no breakpoints from which to delete commands"); 702 const BreakpointList &breakpoints = target->GetBreakpointList(); local 703 size_t num_breakpoints = breakpoints.GetSize(); 707 result.AppendError ("No breakpoints exist to have commands deleted"); 795 result.AppendError ("There is not a current executable; there are no breakpoints for which to list commands"); 800 const BreakpointList &breakpoints local [all...] |
/external/lldb/source/Breakpoint/ |
H A D | BreakpointIDList.cpp | 158 // all the current breakpoints and locations in the range are added to NEW_ARGS. When this function is done, 271 // We have valid range starting & ending breakpoint IDs. Go through all the breakpoints in the 272 // target and find all the breakpoints that fit into this range, and add them to new_args. 286 " different major breakpoints, %d and %d.\n", 293 const BreakpointList& breakpoints = target->GetBreakpointList(); local 294 const size_t num_breakpoints = breakpoints.GetSize(); 297 Breakpoint *breakpoint = breakpoints.GetBreakpointAtIndex (j).get();
|
/external/valgrind/gdbserver_tests/ |
H A D | mcbreak.stdoutB.exp | 43 Delete all breakpoints? (y or n) [answered Y; input not from terminal]
|
H A D | mcwatchpoints.stdoutB.exp | 33 Delete all breakpoints? (y or n) [answered Y; input not from terminal]
|
/external/ltrace/sysdeps/linux-gnu/mips/ |
H A D | trace.c | 281 if (DICT_HAS_KEY(proc->leader->breakpoints, &baddr)) {
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/ |
H A D | jdimodel.jar | ... jdt/internal/debug/core/ org/eclipse/jdt/internal/debug/core/breakpoints/ org/eclipse/jdt/internal/debug/core/hcr/ org/eclipse/jdt ... |
/external/ltrace/sysdeps/linux-gnu/metag/ |
H A D | trace.c | 380 if (dict_find(proc->leader->breakpoints, &baddr) != NULL) {
|
/external/v8/src/debug/ |
H A D | debug.js | 695 // Disable all user defined breakpoints: 699 // Disable all exception breakpoints: 982 o.body.breakpoints = []; 994 o.body.breakpoints.push(number); 1563 response.body = { breakpoints: cleared_break_points }; 1625 breakpoints: array,
|
/external/ltrace/sysdeps/linux-gnu/ |
H A D | trace.c | 335 if (DICT_FIND_VAL(proc->leader->breakpoints, &ip, &found) < 0) { 612 assert(!"Too many sw singlestep breakpoints!"); 932 * the processes, stop them all, remove all the breakpoints, and then 934 * other tasks running, they might hit stray return breakpoints and 1068 DICT_FIND_VAL(proc->leader->breakpoints, 1167 * handler that stops all the threads, removes all breakpoints, and
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
H A D | org.eclipse.debug.core_3.6.0.v20100519.jar | META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ... |
/external/kernel-headers/original/uapi/linux/ |
H A D | kvm.h | 78 struct kvm_breakpoint breakpoints[4]; member in struct:kvm_debug_guest
|
/external/v8/test/cctest/ |
H A D | test-debug.cc | 944 // Run without breakpoints. 955 // Run without breakpoints. 977 // Run without breakpoints. 988 // Run without breakpoints. 1009 // Run without breakpoints. 1020 // Run without breakpoints. 1042 // Run without breakpoints. 1062 // Run without breakpoints. 1084 // Run without breakpoints. 1104 // Run without breakpoints 5015 const char* breakpoints = "\\"breakpoints\\":["; local [all...] |
/external/guice/extensions/struts2/lib/ |
H A D | freemarker-2.3.16.jar | META-INF/ META-INF/MANIFEST.MF freemarker/ freemarker/cache/ freemarker/core/ freemarker/debug/ freemarker/debug/impl/ ... |
/external/bison/build-aux/ |
H A D | texinfo.tex | 727 % page at this \penalty, if there are no other feasible breakpoints in 6046 \raggedbottom % Worry more about breakpoints than the bottom.
|
/external/libmicrohttpd/doc/ |
H A D | texinfo.tex | 728 % page at this \penalty, if there are no other feasible breakpoints in 6047 \raggedbottom % Worry more about breakpoints than the bottom.
|