HomeSort by relevance Sort by last modified time
    Searched refs:breakpoints (Results 1 - 25 of 69) sorted by null

1 2 3

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/bindings/
BreakpointManager.js 105 var breakpoints = this._provisionalBreakpoints.get(sourceFileId).values();
106 for (var i = 0; i < breakpoints.length; ++i)
107 result.set(breakpoints[i]._breakpointStorageId(), breakpoints[i]);
113 var breakpoints = this._provisionalBreakpoints.values();
114 for (var i = 0; i < breakpoints.length; ++i)
115 breakpoints[i].remove();
178 var breakpoints = this._breakpointsForPrimaryUISourceCode.get(uiSourceCode) || [];
179 for (var i = 0; i < breakpoints.length; ++i)
180 breakpoints[i]._updateInDebuggerForTarget(target)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
breakpointsList.css 58 .breakpoints-list-deactivated {
104 .event-listener-breakpoints.properties-tree li {
109 .event-listener-breakpoints.properties-tree .children li {
114 .event-listener-breakpoints .checkbox-elem {
sourcesPanel.css 103 .scripts-toggle-breakpoints.toggled-on .glyph {
107 .scripts-toggle-breakpoints .glyph {
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
DOMBreakpointsSidebarPane.js 37 WebInspector.NativeBreakpointsSidebarPane.call(this, WebInspector.UIString("DOM Breakpoints"));
280 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Remove all DOM breakpoints" : "Remove All DOM Breakpoints"), this._removeAllBreakpoints.bind(this));
319 var breakpoints = [];
324 breakpoints.push(breakpoint);
328 breakpoints.push({ url: this._inspectedURL, path: element._node.path(), type: element._type, enabled: element._checkboxElement.checked });
330 WebInspector.settings.domBreakpoints.set(breakpoints);
351 var breakpoints = pathToBreakpoints[path];
352 for (var i = 0; i < breakpoints.length; ++i)
353 this._setBreakpoint(node, breakpoints[i].type, breakpoints[i].enabled)
    [all...]
  /external/ltrace/
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, NULL, NULL, NULL)
    [all...]
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 != NULL)
    [all...]
Android.mk 25 breakpoints.c \
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/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
BreakpointsSidebarPane.js 34 WebInspector.SidebarPane.call(this, WebInspector.UIString("Breakpoints"));
43 this.emptyElement.textContent = WebInspector.UIString("No Breakpoints");
72 WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Deactivate breakpoints" : "Deactivate Breakpoints") :
73 WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Activate breakpoints" : "Activate Breakpoints");
197 var breakpoints = this._items.values();
200 if (breakpoints.length > 1) {
201 var removeAllTitle = WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Remove all breakpoints" : "Remove All Breakpoints");
    [all...]
JavaScriptSourceFrame.js 461 var breakpoints = {};
466 breakpoints[lineNumber] = breakpointDecoration;
471 // Remove all breakpoints.
474 // Restore all breakpoints from saved decorations.
475 for (var lineNumberString in breakpoints) {
479 var breakpointDecoration = breakpoints[lineNumberString];
486 var breakpoints = this._breakpointManager.breakpointsForUISourceCode(this._uiSourceCode);
487 for (var i = 0; i < breakpoints.length; ++i)
488 breakpoints[i].remove();
    [all...]
  /external/deqp/android/scripts/
debug.py 54 breakpoints
140 for breakpoint in breakpoints:
226 parser.add_argument('--breakpoints', dest='breakpoints', default=["tcu::App::App"], nargs='+', help="List of breakpoints that are set by gdb.")
240 breakpoints=args.breakpoints) variable
  /external/chromium_org/v8/test/mjsunit/
debug-clearbreakpointgroup.js 108 var breakpoints = Debug.scriptBreakPoints();
109 assertEquals(3, breakpoints.length);
110 var breakpointNumbers = breakpoints.map(
114 // Check that all breakpoints from group 1 were deleted and all the
120 // Clear all breakpoints to allow the test to run again (--stress-opt).
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:
debug-enable-disable-breakpoints.js 81 // Enable both breakpoints.
92 // Deactivate all breakpoints.
102 // Activate all breakpoints.
debug-liveedit-breakpoints.js 97 // Check 2 breakpoints. The one in deleted function should have been moved somewhere.
101 // Delete all breakpoints to make this test reentrant.
  /external/lldb/examples/python/
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:
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/
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. "
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...]
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 = target->GetBreakpointList() local
    [all...]
  /external/lldb/source/Breakpoint/
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/qemu/include/exec/
cpu-defs.h 177 QTAILQ_HEAD(breakpoints_head, CPUBreakpoint) breakpoints; \
  /external/valgrind/main/gdbserver_tests/
mcbreak.stdoutB.exp 44 Delete all breakpoints? (y or n) [answered Y; input not from terminal]
mcwatchpoints.stdoutB.exp 33 Delete all breakpoints? (y or n) [answered Y; input not from terminal]
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
DebuggerScript.js 332 var breakpoints = eventData.breakPointsHit();
334 if (!breakpoints)
337 for (var i = 0; i < breakpoints.length; i++) {
338 var breakpoint = breakpoints[i];
  /external/oprofile/events/x86-64/family11h/
events 109 event:0xdc counters:0,1,2,3 um:zero minimum:1 name:DR0_BREAKPOINTS : Number of breakpoints for DR0
110 event:0xdd counters:0,1,2,3 um:zero minimum:1 name:DR1_BREAKPOINTS : Number of breakpoints for DR1
111 event:0xde counters:0,1,2,3 um:zero minimum:1 name:DR2_BREAKPOINTS : Number of breakpoints for DR2
112 event:0xdf counters:0,1,2,3 um:zero minimum:1 name:DR3_BREAKPOINTS : Number of breakpoints for DR3

Completed in 592 milliseconds

1 2 3