HomeSort by relevance Sort by last modified time
    Searched defs:debugger (Results 1 - 25 of 31) sorted by null

1 2

  /external/smack/src/org/jivesoftware/smack/debugger/
SmackDebugger.java 21 package org.jivesoftware.smack.debugger;
63 * has been secured so the connection is using a new reader and writer. The debugger
73 * has been secured so the connection is using a new reader and writer. The debugger
ConsoleDebugger.java 18 package org.jivesoftware.smack.debugger;
32 * Very simple debugger that prints to the console (stdout) the sent and received stanzas. Use
33 * this debugger with caution since printing to the console is an expensive operation that may
178 // Add the connection listener to the connection so that the debugger can be notified
  /external/lldb/examples/python/
disasm.py 36 # Create a new debugger instance
37 debugger = lldb.SBDebugger.Create() variable
41 debugger.SetAsync (False)
46 target = debugger.CreateTargetWithFileAndArch (exe, lldb.LLDB_ARCH_DEFAULT)
114 print "Unexpected process state: %s, killing process..." % debugger.StateAsCString (state)
types.py 85 parser.add_option('-d', '--debug', action='store_true', dest='debug', help='Pause 10 seconds to wait for a debugger to attach.', default=False)
168 def check_padding_command (debugger, command, result, dict):
180 verify_types(options, debugger.GetSelectedTarget(), command_args)
222 debugger = lldb.SBDebugger.Create() variable
232 print "Waiting for debugger to attach to process %d" % os.getpid()
240 target = debugger.CreateTarget (path,
250 elif getattr(lldb, 'debugger', None):
251 lldb.debugger.HandleCommand('command script add -f types.check_padding_command check_padding')
disasm-stress-test.py 44 debugger = lldb.SBDebugger.Create() variable
46 if debugger.IsValid() == False:
50 target = debugger.CreateTargetWithFileAndArch(None, arg_ns.arch)
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3baserecognizer.h 95 /// points to an instance of the debugger interface. In general, the
96 /// debugger is only referenced internally in recovery/error operations
100 pANTLR3_DEBUG_EVENT_LISTENER debugger; member in struct:ANTLR3_BASE_RECOGNIZER_struct
antlr3basetreeadaptor.h 66 /// points to an instance of the debugger interface. In general, the
67 /// debugger is only referenced internally in recovery/error operations
71 pANTLR3_DEBUG_EVENT_LISTENER debugger; member in struct:ANTLR3_BASE_TREE_ADAPTOR_struct
129 void (*setDebugEventListener)(struct ANTLR3_BASE_TREE_ADAPTOR_struct * adaptor, pANTLR3_DEBUG_EVENT_LISTENER debugger);
antlr3tokenstream.h 116 /// Debugger interface, is this is a debugging token stream
118 pANTLR3_DEBUG_EVENT_LISTENER debugger; member in struct:ANTLR3_TOKEN_STREAM_struct
176 void (*setDebugListener) (struct ANTLR3_TOKEN_STREAM_struct * tokenStream, pANTLR3_DEBUG_EVENT_LISTENER debugger);
  /external/lldb/source/Commands/
CommandObjectBreakpointCommand.cpp 180 Special information about debugger command breakpoint commands\n\
183 You may enter any debugger command, exactly as you would at the debugger prompt.\n\
184 You may enter as many debugger commands as you like, but do NOT enter more than\n\
374 Debugger &debugger = target->GetDebugger(); local
375 // Rig up the results secondary output stream to the debugger's, so the output will come out synchronously
376 // if the debugger is set up that way.
378 StreamSP output_stream (debugger.GetAsyncOutputStream());
379 StreamSP error_stream (debugger.GetAsyncErrorStream())
    [all...]
CommandObjectWatchpointCommand.cpp 158 Special information about debugger command watchpoint commands \n\
161 You may enter any debugger command, exactly as you would at the \n\
162 debugger prompt. You may enter as many debugger commands as you like, \n\
351 Debugger &debugger = target->GetDebugger(); local
352 // Rig up the results secondary output stream to the debugger's, so the output will come out synchronously
353 // if the debugger is set up that way.
355 StreamSP output_stream (debugger.GetAsyncOutputStream());
356 StreamSP error_stream (debugger.GetAsyncErrorStream())
    [all...]
CommandObjectPlatform.cpp 19 #include "lldb/Core/Debugger.h"
438 Debugger &debugger = m_interpreter.GetDebugger(); local
444 debugger,
446 debugger.GetListener(),
    [all...]
CommandObjectProcess.cpp 123 "Launch the executable in the debugger.",
188 Debugger &debugger = m_interpreter.GetDebugger(); local
189 Target *target = debugger.GetSelectedTarget().get();
276 debugger,
278 debugger.GetListener(),
284 process = target->CreateProcess (debugger.GetListener(), plugin_name, NULL).get();
    [all...]
  /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...]
XMPPConnection.java 277 // If DEBUG_ENABLED was set to true AFTER the connection was created the debugger
279 if (config.isDebuggerEnabled() && debugger != null) {
280 debugger.userHasLogged(user);
322 // If DEBUG_ENABLED was set to true AFTER the connection was created the debugger
324 if (config.isDebuggerEnabled() && debugger != null) {
325 debugger.userHasLogged(user);
640 addPacketListener(debugger.getReaderListener(), null);
641 if (debugger.getWriterListener() != null) {
642 addPacketSendingListener(debugger.getWriterListener(), null);
    [all...]
Connection.java 41 import org.jivesoftware.smack.debugger.SmackDebugger;
178 protected SmackDebugger debugger = null; field in class:Connection
181 * The Reader which is used for the {@see debugger}.
186 * The Writer which is used for the {@see debugger}.
752 * Initialize the {@link #debugger}. You can specify a customized {@link SmackDebugger}
764 if (debugger == null) {
765 // Detect the debugger class to use.
792 Class.forName("org.jivesoftware.smack.debugger.ConsoleDebugger");
799 // Create a new debugger instance. If an exception occurs then disable the debugging
804 debugger = (SmackDebugger) constructor.newInstance(this, writer, reader)
    [all...]
  /external/lldb/source/Target/
StackFrame.cpp 19 #include "lldb/Core/Debugger.h"
1390 Debugger &debugger = target->GetDebugger(); local
    [all...]
StopInfo.cpp 25 #include "lldb/Core/Debugger.h"
434 Debugger &debugger = exe_ctx.GetTargetRef().GetDebugger(); local
435 StreamSP error_sp = debugger.GetAsyncErrorStream ();
464 Debugger &debugger = thread_sp->CalculateTarget()->GetDebugger(); local
465 bool old_async = debugger.GetAsyncExecution();
466 debugger.SetAsyncExecution (true);
470 debugger.SetAsyncExecution (old_async);
695 // constructor errors up to the debugger's Async I/O
744 Debugger &debugger = exe_ctx.GetTargetRef().GetDebugger(); local
784 Debugger &debugger = exe_ctx.GetTargetRef().GetDebugger(); local
    [all...]
  /external/lldb/source/API/
SBDebugger.cpp 38 #include "lldb/Core/Debugger.h"
60 Debugger::Initialize();
66 Debugger::Terminate();
101 SBDebugger debugger; local
102 debugger.reset(Debugger::CreateInstance(callback, baton));
107 debugger.GetDescription (sstr);
108 log->Printf ("SBDebugger::Create () => SBDebugger(%p): %s", debugger.m_opaque_sp.get(), sstr.GetData());
111 SBCommandInterpreter interp = debugger.GetCommandInterpreter();
124 return debugger;
    [all...]
SBTarget.cpp 35 #include "lldb/Core/Debugger.h"
553 SBDebugger debugger; local
556 debugger.reset (target_sp->GetDebugger().shared_from_this());
557 return debugger;
    [all...]
  /external/lldb/source/Core/
Module.cpp 95 // you have a command interpreter and can easily be called from an external debugger.
1328 Debugger &debugger = target->GetDebugger(); local
    [all...]
  /external/qemu-pc-bios/bochs/
bochs.h 135 // so that these functions can be redirected to the debugger when
226 // to the debugger.
248 // debugger not compiled in, use empty stubs
445 bx_bool debugger; member in struct:__anon34008
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
PyShell.py 36 from idlelib import Debugger
143 try: # update the subprocess debugger
144 debug = self.flist.pyshell.interp.debugger
146 except: # but debugger may not be active right now....
172 debug = self.flist.pyshell.interp.debugger
187 debug = self.flist.pyshell.interp.debugger
212 # debugger is loaded) is updated during the save, the visible
451 # close only the subprocess debugger
455 # Only close subprocess debugger, don't unregister gui_adap!
483 # restart subprocess debugger
575 debugger = None variable in class:ModifiedInterpreter
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
PyShell.py 36 from idlelib import Debugger
143 try: # update the subprocess debugger
144 debug = self.flist.pyshell.interp.debugger
146 except: # but debugger may not be active right now....
172 debug = self.flist.pyshell.interp.debugger
187 debug = self.flist.pyshell.interp.debugger
212 # debugger is loaded) is updated during the save, the visible
451 # close only the subprocess debugger
455 # Only close subprocess debugger, don't unregister gui_adap!
483 # restart subprocess debugger
575 debugger = None variable in class:ModifiedInterpreter
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
webkitdirs.pm 88 my $debugger;
1483 sub debugger subroutine
    [all...]
  /external/lldb/source/Interpreter/
ScriptInterpreterPython.cpp 35 #include "lldb/Core/Debugger.h"
116 lldb::DebuggerSP& debugger,
123 lldb::DebuggerSP& debugger);
502 // Importing 'lldb' module calls SBDebugger::Initialize, which calls Debugger::Initialize, which increments a
503 // global debugger ref-count; therefore we need to check the ref-count before and after importing lldb, and if the
504 // ref-count increased we need to call Debugger::Terminate here to decrement the ref-count so that when the final
505 // call to Debugger::Terminate is made, the ref-count has the correct value.
510 int old_count = Debugger::TestDebuggerRefCount();
521 int new_count = Debugger::TestDebuggerRefCount();
524 Debugger::Terminate()
544 Debugger &debugger = GetCommandInterpreter().GetDebugger(); local
1006 Debugger &debugger = GetCommandInterpreter().GetDebugger(); local
1522 Debugger &debugger = GetCommandInterpreter().GetDebugger(); local
1555 Debugger &debugger = GetCommandInterpreter().GetDebugger(); local
2392 Debugger &debugger = script_interpreter->GetCommandInterpreter().GetDebugger(); local
    [all...]

Completed in 920 milliseconds

1 2