/external/chromium_org/v8/src/ |
liveedit.h | 38 // from debugger and wishes to change the algorithm without restart. 107 // source and sends notification to debugger. 130 // A copy of this is in liveedit-debugger.js.
|
execution.cc | 138 if (isolate->debugger()->IsDebuggerActive()) { 795 // If currently in the debugger don't do any actual preemption but record 796 // that preemption occoured while in the debugger. 829 // Ignore debug break if debugger is not active. 830 if (!isolate->debugger()->IsDebuggerActive()) { 849 // Don't stop in debugger functions. 882 // Enter the debugger. Just continue if we fail to enter the debugger. 883 EnterDebugger debugger; local 884 if (debugger.FailedToEnter()) [all...] |
/external/chromium_org/v8/test/mjsunit/ |
debug-liveedit-restart-frame.js | 56 // Restarter doesn't work on slim function when stopped on 'debugger' 57 // statement. (There is no padding for 'debugger' statement). 61 debugger;
|
debug-return-value.js | 80 // Collect the position of the debugger statement. 133 // Four steps from the debugger statement in this function will position us at 138 function f(x) {debugger; if (x) { return 1; } else { return 2; } };
|
debug-setexceptionbreak.js | 32 // Note: the following tests only checks the debugger handling of the 33 // setexceptionbreak command. It does not test whether the debugger 82 // the first time, we send the command with no enabled arg, the debugger
|
/external/smack/src/org/jivesoftware/smack/ |
BOSHConnection.java | 95 // The readerPipe and consumer thread are used for the debugger. 187 // Initialize the debugger 191 if (debugger.getReaderListener() != null) { 192 addPacketListener(debugger.getReaderListener(), null); 194 if (debugger.getWriterListener() != null) { 195 addPacketSendingListener(debugger.getWriterListener(), null); 368 if (config.isDebuggerEnabled() && debugger != null) { 369 debugger.userHasLogged(user); 410 // If DEBUG_ENABLED was set to true AFTER the connection was created the debugger 412 if (config.isDebuggerEnabled() && debugger != null) [all...] |
/external/v8/src/ |
liveedit.h | 38 // from debugger and wishes to change the algorithm without restart. 107 // source and sends notification to debugger. 126 // A copy of this is in liveedit-debugger.js.
|
flag-definitions.h | 307 "automatically set the debug break flag when debugger commands are " 443 DEFINE_bool(debugger, false, "Enable JavaScript debugger") 444 DEFINE_bool(remote_debugger, false, "Connect JavaScript debugger to the " 445 "debugger agent in another process") 446 DEFINE_bool(debugger_agent, false, "Enable debugger agent") 455 DEFINE_bool(debug_compile_events, false, "Enable debugger compile events") 457 "Enable debugger script collected events") 459 DEFINE_bool(debug_compile_events, true, "Enable debugger compile events") 461 "Enable debugger script collected events" [all...] |
/external/v8/test/mjsunit/ |
debug-return-value.js | 80 // Collect the position of the debugger statement. 133 // Four steps from the debugger statement in this function will position us at 138 function f(x) {debugger; if (x) { return 1; } else { return 2; } };
|
debug-setexceptionbreak.js | 32 // Note: the following tests only checks the debugger handling of the 33 // setexceptionbreak command. It does not test whether the debugger 82 // the first time, we send the command with no enabled arg, the debugger
|
/hardware/ti/omap3/dspbridge/inc/ |
dbg.h | 104 * Output a formatted string to the debugger. 121 * Output a trace message to the debugger, if the given trace level 133 * Debug message is printed to debugger output window, if trace level
|
/hardware/ti/omap3/dspbridge/libbridge/inc/ |
dbg.h | 104 * Output a formatted string to the debugger. 121 * Output a trace message to the debugger, if the given trace level 133 * Debug message is printed to debugger output window, if trace level
|
/sdk/eclipse/plugins/com.android.ide.eclipse.monitor/src/com/android/ide/eclipse/monitor/ddms/ |
DebugPortProvider.java | 43 * debugger ports. 80 * Returns the map of Static debugger ports. The map links device serial numbers to 81 * a map linking application name to debugger ports.
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/ |
ANTLRDebugEventListener.h | 80 * triggered by both LA and LT calls. The debugger will want to know 82 * what token was seen at that depth. A remote debugger cannot look 94 * any backtrack), this informs the debugger that stream should be 113 * inform the debugger what line/charPos it is passing in the grammar. 117 * This should also allow breakpoints because the debugger can stop
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/ |
ANTLRDebugEventListener.h | 80 * triggered by both LA and LT calls. The debugger will want to know 82 * what token was seen at that depth. A remote debugger cannot look 94 * any backtrack), this informs the debugger that stream should be 113 * inform the debugger what line/charPos it is passing in the grammar. 117 * This should also allow breakpoints because the debugger can stop
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/ |
ANTLRDebugEventListener.h | 80 * triggered by both LA and LT calls. The debugger will want to know 82 * what token was seen at that depth. A remote debugger cannot look 94 * any backtrack), this informs the debugger that stream should be 113 * inform the debugger what line/charPos it is passing in the grammar. 117 * This should also allow breakpoints because the debugger can stop
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
ANTLRDebugEventListener.h | 80 * triggered by both LA and LT calls. The debugger will want to know 82 * what token was seen at that depth. A remote debugger cannot look 94 * any backtrack), this informs the debugger that stream should be 113 * inform the debugger what line/charPos it is passing in the grammar. 117 * This should also allow breakpoints because the debugger can stop
|
/external/v8/ |
ChangeLog | 49 Debugger: naive implementation of "step into Function.prototype.bind". 51 Debugger: added ability to set script source from within OnBeforeCompile 638 Fixed: debugger stops stepping outside evaluate (Issue 1639). 651 Fixed debugger stepping next with trycatch recursion (Issue 1639). 839 Fix the debugger for strict-mode functions. (Chromium issue 89236) 849 Improved debugger support to allow inspection of optimized frames (issue 903 Added debugger support for inspecting optimized frames (issue 1140). 912 Fixed debugger not breaking on certain "if" statements (issue 1523). 931 Added support for debugger inspection of locals in optimized frames [all...] |
/dalvik/vm/ |
Globals.h | 21 * view the state in a debugger, it makes clean shutdown simpler, we can 458 * (2) the debugger has sent a "suspend all" request; 459 * (3) a thread has hit a breakpoint or exception that the debugger 604 /* when using a native debugger, set this to suppress watchdog timers */ 608 * JDWP debugger support. 610 * Note: Each thread will normally determine whether the debugger is active 612 * seen as "debugger is making requests of 1 or more threads". 614 bool debuggerConnected; /* debugger or DDMS is connected */ 615 bool debuggerActive; /* debugger is making requests */ 619 * Registry of objects known to the debugger [all...] |
Thread.h | 56 THREAD_SUSPENDED = 9, /* suspended, usually by GC or debugger */ 131 * debugger is responsible for. This has to be tracked separately so 132 * that we can recover correctly if the debugger abruptly disconnects 133 * (suspendCount -= dbgSuspendCount). The debugger should not be able 134 * to resume GC-suspended threads, because we ignore the debugger while 354 * Thread suspend/resume, used by the GC and debugger. 386 * Wait until a thread has suspended. (Used by debugger support.)
|
Thread.cpp | 67 All threads are native pthreads. All threads, except the JDWP debugger 68 thread, are visible to code running in the VM and to the debugger. (We 69 don't want the debugger to try to manipulate the thread that listens for 70 instructions from the debugger.) Internal VM threads are in the "system" 77 Certain debugger events may inspire threads to self-suspend. 88 Threads may be suspended by the GC, debugger, or the SIGQUIT listener 89 thread. The debugger may suspend or resume individual threads, while the 93 a debugger requirement: if the debugger suspends a thread, the thread is 94 not allowed to run again until the debugger resumes it (or disconnects [all...] |
/external/chromium_org/v8/samples/ |
lineprocessor.cc | 76 * When run with "-p" argument, the program starts V8 Debugger Agent and 77 * allows remote debugger to attach and debug JavaScript code. 80 * 1. Wait for remote debugger to attach 85 * debugger to attach. 88 * V8 Debugger Agent holds a connection with remote debugger, but it does 90 * is waiting for input, all requests from debugger get deferred until V8
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
Debugger.py | 35 if prev_frame.f_code.co_filename.count('Debugger.py'): 36 # (that test will catch both Debugger.py and RemoteDebugger.py) 51 class Debugger: 77 # Clean up pyshell if user clicked debugger control close widget. 79 # toggled debugger from pyshell Debug menu) 81 # Now close the debugger control window.... 313 "Load PyShellEditorWindow breakpoints into subprocess debugger"
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
Debugger.py | 35 if prev_frame.f_code.co_filename.count('Debugger.py'): 36 # (that test will catch both Debugger.py and RemoteDebugger.py) 51 class Debugger: 77 # Clean up pyshell if user clicked debugger control close widget. 79 # toggled debugger from pyshell Debug menu) 81 # Now close the debugger control window.... 313 "Load PyShellEditorWindow breakpoints into subprocess debugger"
|
/external/chromium_org/chrome/browser/extensions/api/debugger/ |
debugger_api.cc | 5 // Implements the Chrome Extensions Debugger API. 7 #include "chrome/browser/extensions/api/debugger/debugger_api.h" 21 #include "chrome/browser/extensions/api/debugger/debugger_api_constants.h" 65 namespace Attach = extensions::api::debugger::Attach; 66 namespace Detach = extensions::api::debugger::Detach; 67 namespace OnDetach = extensions::api::debugger::OnDetach; 68 namespace OnEvent = extensions::api::debugger::OnEvent; 69 namespace SendCommand = extensions::api::debugger::SendCommand; 319 // Detach from debugger when extension unloads. 329 // Attach to debugger and tell it we are ready [all...] |