HomeSort by relevance Sort by last modified time
    Searched full:debugger (Results 76 - 100 of 1775) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium/chrome/browser/debugger/
debugger_remote_service.cc 8 #include "chrome/browser/debugger/debugger_remote_service.h"
15 #include "chrome/browser/debugger/devtools_manager.h"
16 #include "chrome/browser/debugger/devtools_protocol_handler.h"
17 #include "chrome/browser/debugger/devtools_remote_message.h"
18 #include "chrome/browser/debugger/inspectable_tab_proxy.h"
53 // is ready off-hand (synchronously), it is sent back to the remote debugger.
55 // V8 debugger via DevToolsClientHost.
117 // Sends a JSON response to the remote debugger using |response| as content,
151 // a message from the V8 VM debugger corresponding to |tab_id| is received.
153 // to the remote debugger
    [all...]
devtools_remote_service.h 10 #include "chrome/browser/debugger/devtools_remote.h"
24 // Handles Chrome remote debugger protocol service commands.
browser_list_tabcontents_provider.h 8 #include "chrome/browser/debugger/devtools_http_protocol_handler.h"
inspectable_tab_proxy.h 13 #include "chrome/browser/debugger/devtools_client_host.h"
23 // them on remote debugger connection loss.
48 // Gets invoked when a remote debugger is detached. In this case we should
49 // send the corresponding message to the V8 debugger for each of the tabs
50 // the debugger is attached to, and invoke InspectedTabClosing().
devtools_protocol_handler.cc 5 #include "chrome/browser/debugger/devtools_protocol_handler.h"
8 #include "chrome/browser/debugger/inspectable_tab_proxy.h"
9 #include "chrome/browser/debugger/debugger_remote_service.h"
10 #include "chrome/browser/debugger/devtools_remote_message.h"
11 #include "chrome/browser/debugger/devtools_remote_listen_socket.h"
12 #include "chrome/browser/debugger/devtools_remote_service.h"
13 #include "chrome/browser/debugger/extension_ports_remote_service.h"
  /dalvik/vm/jdwp/
JdwpMain.cpp 126 * debugger. Create the JDWP thread and let it continue the mission.
147 * For suspend=y, wait for the debugger to connect to us or for us to
148 * connect to the debugger.
168 * Ordinarily we would pause briefly to allow the debugger to set
184 * a debugger attached.
186 * This includes freeing up the debugger event list.
196 * Should not have one of these in progress. If the debugger went away
245 * Are we talking to a debugger?
279 * non-server mode, we bail out of the thread when the debugger drops
282 * We broadcast a notification when a debugger attaches, after w
    [all...]
  /external/chromium_org/third_party/WebKit/ManualTests/inspector/
hidden-evals.html 7 <tt>debugger</tt> commands, some don't.
25 <li><p>debugger should stop in the <code>clickHandler</code> function
41 <li><p>the debugger should stop in <code>f_named_3()</code> because of the
42 <code>debugger</code> command
45 <li><p>the debugger should stop in <code>f_unnamed_3()</code> because of the
46 <code>debugger</code> command. At this point, a third "(program)" entry for
84 " debugger;",
92 " debugger;",
102 debugger;
debugger-pause-on-for-in-statements.html 4 debugger;
15 Start a debugging session in the Web Inspector and open this file. When the debugger breaks, select the (program) node
debugger-pause-on-for-statements.html 4 debugger;
13 Start a debugging session in the Web Inspector and open this file. When the debugger breaks, select the (program) node
debugger-pause-during-load.html 2 debugger; // You should see this code and execution line in the Scripts panel.
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorDebuggerAgent.h 90 virtual void setBreakpointByUrl(ErrorString*, int lineNumber, const String* optionalURL, const String* optionalURLRegex, const int* optionalColumnNumber, const String* optionalCondition, const bool* isAntiBreakpoint, TypeBuilder::Debugger::BreakpointId*, RefPtr<TypeBuilder::Array<TypeBuilder::Debugger::Location> >& locations);
91 virtual void setBreakpoint(ErrorString*, const RefPtr<JSONObject>& location, const String* optionalCondition, TypeBuilder::Debugger::BreakpointId*, RefPtr<TypeBuilder::Debugger::Location>& actualLocation);
94 virtual void getStepInPositions(ErrorString*, const String& callFrameId, RefPtr<TypeBuilder::Array<TypeBuilder::Debugger::Location> >& positions);
95 virtual void getBacktrace(ErrorString*, RefPtr<TypeBuilder::Array<TypeBuilder::Debugger::CallFrame> >&);
98 virtual void setScriptSource(ErrorString*, RefPtr<TypeBuilder::Debugger::SetScriptSourceError>&, const String& scriptId, const String& newContent, const bool* preview, RefPtr<TypeBuilder::Array<TypeBuilder::Debugger::CallFrame> >& newCallFrames, RefPtr<JSONObject>& result);
99 virtual void restartFrame(ErrorString*, const String& callFrameId, RefPtr<TypeBuilder::Array<TypeBuilder::Debugger::CallFrame> >& newCallFrames, RefPtr<JSONObject>& result);
101 virtual void getFunctionDetails(ErrorString*, const String& functionId, RefPtr<TypeBuilder::Debugger::FunctionDetails>&)
    [all...]
  /art/runtime/jdwp/
jdwp_main.cc 25 #include "debugger.h"
110 // Close a connection from a debugger (which may have already dropped us).
147 VLOG(jdwp) << "Not sending JDWP packet: no debugger attached!";
159 PLOG(ERROR) << StringPrintf("Failed to send JDWP packet %c%c%c%c to debugger (%d of %d)",
171 VLOG(jdwp) << "Not sending JDWP packet: no debugger attached!";
178 PLOG(ERROR) << StringPrintf("Failed to send JDWP packet to debugger (%d of %d)",
185 * packets to the debugger.
256 * debugger. Create the JDWP thread and let it continue the mission.
274 * debugger. Create the JDWP thread and let it continue the mission.
286 * For suspend=y, wait for the debugger to connect to us or for us t
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRDebugTreeParser.m 47 id<ANTLRDebugEventListener,NSObject> debugger = nil;
50 debugger = (id<ANTLRDebugEventListener>)theDebugListener;
52 debugger = [[ANTLRDebugEventProxy alloc] initWithGrammarName:[self grammarFileName] debuggerPort:portNumber];
55 treeNodeStream = [[ANTLRDebugTreeNodeStream alloc] initWithTreeNodeStream:theStream debugListener:debugger];
61 [self setDebugListener:debugger];
62 //[debugger release];
116 #warning TODO: recoverFromMismatchedToken in debugger
124 #warning TODO: recoverFromMismatchedSet in debugger
ANTLRDebugParser.m 47 id<ANTLRDebugEventListener,NSObject> debugger = nil;
50 debugger = [(id<ANTLRDebugEventListener,NSObject>)theDebugListener retain];
51 debugger = theDebugListener;
53 debugger = [[ANTLRDebugEventProxy alloc] initWithGrammarName:[self grammarFileName] debuggerPort:portNumber];
56 tokenStream = [[ANTLRDebugTokenStream alloc] initWithTokenStream:theStream debugListener:debugger];
63 [self setDebugListener:debugger];
64 [debugger release];
  /art/runtime/
thread_state.h 34 kWaitingForDebuggerToAttach, // WAITING TS_WAIT blocked waiting for debugger to attach
35 kWaitingInMainDebuggerLoop, // WAITING TS_WAIT blocking/reading/processing debugger events
36 kWaitingForDebuggerSuspension, // WAITING TS_WAIT waiting for debugger suspend all
42 kSuspended, // RUNNABLE TS_RUNNING suspended by GC or debugger
  /external/v8/test/mjsunit/
debug-stepout-scope.js 57 debugger;
68 debugger;
81 debugger;
92 debugger;
99 debugger;
112 debugger;
123 debugger;
130 debugger;
137 var prefixes = [ "debugger; ",
138 "if (false) { try { throw 0; } catch(x) { return x; } }; debugger; " ];
    [all...]
  /dalvik/docs/
debugger.html 3 <title>Dalvik Debugger Support</title>
7 <h1>Dalvik Debugger Support</h1>
28 All of the debugger support in the VM lives in the <code>dalvik/vm/jdwp</code>
30 <code>dalvik/vm/Debugger.c</code> bridges the gap. The goal in doing so
39 typically sits idle until DDMS or a debugger connects. The thread is
40 only responsible for handling requests from the debugger; VM-initated
41 communication, such as notifying the debugger when the VM has stopped at
53 connection from a debugger (either directly or in concert with DDMS).
55 but when the VM sees debugger packets it allocates additional data
66 The JDWP protocol is stateless, so the VM handles individual debugger
    [all...]
  /dalvik/vm/mterp/mips/
OP_INVOKE_OBJECT_INIT_RANGE.S 7 * skip it unless a debugger is active.
27 and a1, kSubModeDebuggerActive # debugger active?
35 * A debugger is attached, so we need to go ahead and do
  /external/chromium/chrome/common/extensions/docs/static/
experimental.debugger.html 7 Debugger API exposes Google Chrome debugging interface to the extensions.
14 using the debugger API.
18 Note that attaching to the page by means of the debugger API and using embedded
  /external/chromium_org/v8/test/mjsunit/
debug-set-variable-value.js 33 // Accepts a function/closure 'fun' that must have a debugger statement inside.
34 // A variable 'variable_name' must be initialized before debugger statement
36 // on debugger statement and check that returned value reflects the change.
144 if (debug_stop) debugger;
153 if (debug_stop) debugger;
162 if (debug_stop) debugger;
171 if (debug_stop) debugger;
185 if (debug_stop) debugger;
202 if (debug_stop) debugger;
225 debugger;
    [all...]
  /external/chromium/chrome/browser/debugger/manual_tests/
debugger-watch-expressions.html 11 the test method, thanks to the <code>debugger</code> statement.
43 debugger;
50 debugger;
62 debugger;
67 debugger;
  /external/chromium_org/v8/src/
debug-agent.h 42 // Debugger agent which starts a socket listener on the debugger port and
43 // handles connection from a remote debugger.
91 // Debugger agent session. The session receives requests from the remote
92 // debugger and sends debugger events/responses to the remote debugger.
  /external/v8/src/
debug-agent.h 42 // Debugger agent which starts a socket listener on the debugger port and
43 // handles connection from a remote debugger.
91 // Debugger agent session. The session receives requests from the remote
92 // debugger and sends debugger events/responses to the remote debugger.
  /frameworks/base/docs/html/tools/debugging/
debugging-projects-cmdline.jd 29 <li>Java Debugger</li>
32 <p>You need to obtain a JDWP-compliant Java debugger to properly debug your application.
33 Most Java IDEs will already have one included, or you can use a command line debugger,
37 <p>A Java Debugger assists you in finding problems with
52 <li>Attach your debugger to the debugging port 8700, or to the specific port shown for the
65 for debugger" in the Development settings panel the application will run when Eclipse connects,
68 <p>Changing either the application being debugged or the "Wait for debugger" option causes the
  /external/antlr/antlr-3.4/runtime/Python/tests/
t059debug.py 13 class Debugger(threading.Thread):
15 super(Debugger, self).__init__()
78 debugger = Debugger(port)
79 debugger.start()
97 debugger.join()
98 return debugger
149 debugger = self.execParser(
154 self.assertTrue(debugger.success)
170 self.assertListEqual(debugger.events, expected
    [all...]

Completed in 4319 milliseconds

1 2 34 5 6 7 8 91011>>