- 95eae42 Make lldb::Regex use StringRef. by Zachary Turner · 9 years ago
- 1355f47 Fixed the build by changing a couple of const char *s to StringRefs. by Sean Callanan · 9 years ago
- ecbb0bb Fix more functions in Args to use StringRef. by Zachary Turner · 9 years ago
- b9c1b51 *** This commit represents a complete reformatting of the LLDB source code by Kate Stone · 9 years ago
- 26709df Convert some functions to use StringRef instead of c_str, len by Zachary Turner · 9 years ago
- b3d1290 Fixup r278524 for non-apple targets by Pavel Labath · 9 years ago
- c6c420f Switch over to using socketpair for local debugserver connections as they are twice as fast as TCP sockets (on macOS at least). by Greg Clayton · 9 years ago
- f343968f Delete Host/windows/win32.h by Zachary Turner · 9 years ago
- 8c1b6bd Reapply "Rewrite gdb-remote's SendContinuePacketAndWaitForResponse" by Pavel Labath · 9 years ago
- 1eb0d42 Remove Android.h by Pavel Labath · 9 years ago
- 4cb6992 Revert "Rewrite gdb-remote's SendContinuePacketAndWaitForResponse" by Pavel Labath · 9 years ago
- e768c4b Rewrite gdb-remote's SendContinuePacketAndWaitForResponse by Pavel Labath · 9 years ago
- 2d6a9ec Clean up vestigial remnants of locking primitives by Saleem Abdulrasool · 9 years ago
- 7aa4d97 Implement ProcessInfo::Dump(), log gdb-remote stub launch by Todd Fiala · 9 years ago
- 16ff860 remove use of Mutex in favour of std::{,recursive_}mutex by Saleem Abdulrasool · 9 years ago
- 62e0681 Add -Wimplicit-fallthrough command line option to clang in by Jason Molenda · 10 years ago
- ccd6cff Modify "platform connect" to connect to processes as well by Tamas Berghammer · 10 years ago
- 9fe526c Add domain socket support to gdb-remote protocol and lldb-server. by Oleksiy Vyalov · 10 years ago
- 6988abc Allow LLDB.framework to locate debugserver even when it doesn't exist in the LLDB.framework. by Greg Clayton · 10 years ago
- 0409754 A small fixup needed for debugserver to work natively by Jason Molenda · 10 years ago
- 0ace3f5 A change I'm open to reverting if there is disagreement: by Jason Molenda · 10 years ago
- a21fdb0 GDBRemoteCommunication::DecompressPacket assumed that the buffer it was by Jason Molenda · 10 years ago
- 46951b5 Use only unnamed pipes to launch lldb-server gdbserver. by Chaoren Lin · 10 years ago
- fea7765 Add comment explaning sanity check on packet size in the packet decompression method. by Jason Molenda · 10 years ago
- 21c34ac Fix off-by-one error in the packet decompression routine by Jason Molenda · 10 years ago
- 91ffe0a Add a new wart, I mean feature, on to gdb-remote protocol: compression. by Jason Molenda · 10 years ago
- fab40d3 Add Read Thread to GDBRemoteCommunication by Ewan Crawford · 10 years ago
- b30c50c Add a new "qEcho" packet with the following format: by Greg Clayton · 10 years ago
- 9aa2da00 Change ProcessGDBRemote last stop packet to a container. by Ewan Crawford · 10 years ago
- 78baa19 Remote Non-Stop Support by Ewan Crawford · 10 years ago
- d7e6a4f Fixed a ton of gcc compile warnings by Vince Harron · 10 years ago
- 8b33567 Get lldb-server building on android-9 by Vince Harron · 10 years ago
- 9753dd9 Add support for ./dotest.py --channel and --log-success by Vince Harron · 10 years ago
- 368c9f6 Add an unnamed pipe fail-safe to launching lldb-gdbserver. by Chaoren Lin · 11 years ago
- db264a6 Move several plugin to its own namespace by Tamas Berghammer · 11 years ago
- 912800c Create ScopedTimeout class for GDBRemoteCommunication by Tamas Berghammer · 11 years ago
- c2c3d71 Merge lldb-platform and lldb-gdbserver into a single binary by Tamas Berghammer · 11 years ago
- e13c273 Separate monolithic GDBRemoteCommunicationServer class into 4 part by Tamas Berghammer · 11 years ago
- 4536c45 Fix warning about the use of mktemp and make platform agnostic by adding and using PipeBase::CreateWithUniqueName - on behalf of flackr. by Oleksiy Vyalov · 11 years ago
- f8ce61c Launch lldb-gdbserver in same process group when launched remotely using lldb-platform - commit on behalf of flackr. by Oleksiy Vyalov · 11 years ago
- 5275aaa Moved Args::StringToXIntYZ to StringConvert::ToXIntYZ by Vince Harron · 11 years ago
- 4771829 Extend PipePosix with support for named pipes/timeout-based IO and integrate it with GDBRemoteCommunication / lldb-gdbserver - include reviews fixes. by Oleksiy Vyalov · 11 years ago
- d5f8b6a Extend PipePosix with support for named pipes/timeout-based IO and integrate it with GDBRemoteCommunication / lldb-gdbserver. by Oleksiy Vyalov · 11 years ago
- 9b69327 Revert "Use timeout when reading debugserver's port from a named pipe." by Zachary Turner · 11 years ago
- e8fb693 Use timeout when reading debugserver's port from a named pipe. by Oleksiy Vyalov · 11 years ago
- 629680e for Oleksiy Vyalov - Redirect stdin, stdout and stderr to /dev/null when launching LLGS process. Differential Revision: http://reviews.llvm.org/D6105 by Shawn Best · 11 years ago
- 118593a The change previously committed as 220983 broke large binary memory reads. I kept the "idx - 1" fix from 220983, but reverted the while loop that was incorrectly added. by Greg Clayton · 11 years ago
- 396f80a commit on behalf of Oleksiy Vyalov Fix junk content handling within GDBRemoteCOmmunication::CheckForPacket 1. Avoid removing of an extra symbol from m_bytes. 2. iterate over m_bytes until useful content is found. Differential Revision: http://reviews.llvm.org/D6042 by Shawn Best · 11 years ago
- 93a66fc Move ConnectionFileDescriptor to platform-specific Host directory. by Zachary Turner · 11 years ago
- acee96a Fix up the HostThread interface, making the interface simpler. by Zachary Turner · 11 years ago
- 7e24432 Add better logging for the "$vFile:pwrite:" packet so we can show binary data instead of nothing or unprintable characters. This can easily be extended for other packets that have binary data. by Greg Clayton · 11 years ago
- 39de311 Create a HostThread abstraction. by Zachary Turner · 11 years ago
- 34ba426 Add arbitrary command line flags to llgs/debugserver startup for local debugging. by Todd Fiala · 11 years ago
- c25146b Fixes a few more places where we were manually setting the filename. by Zachary Turner · 11 years ago
- 6fd8677 Two small fixes to get Mac native + debugserver working after the by Jason Molenda · 11 years ago
- 42ff0ad Move Host::GetLLDBPath to HostInfo. by Zachary Turner · 11 years ago
- c00cf4a Move FileSystem functions out of Host and into their own classes. by Zachary Turner · 11 years ago
- 9868892 Creates a socket host object. by Zachary Turner · 11 years ago
- 015d818 Enable lldb-platform exe support for Linux. by Todd Fiala · 11 years ago
- 06f09b5 Fixed the "log enable gdb-remote packets" to support dumping the binary memory read packet ('x') by printing out the binary data correctly using only printable characters and removing the 0x7d escapes so the memory is readable in the packet output. by Greg Clayton · 11 years ago
- f0066ad Fixed CTRL+C related issues: by Greg Clayton · 12 years ago
- 6eff101 Replace some _MSC_VER with _WIN32. by Hafiz Abid Qadeer · 12 years ago
- 3121fde Be sure to propagate the error back out SBTarget::Attach() when we fail to launch debugserver as root. by Greg Clayton · 12 years ago
- 1681092 Remove an assertion that was being hit due to slow DNS name lookups on MacOSX for "localhost". by Greg Clayton · 12 years ago
- 3c5d333 Fix handling of gdbserver binary packets with escape characters. by Steve Pucci · 12 years ago
- 3c6774a hostname is guarantee to never be null in this branch. by Jean-Daniel Dupas · 12 years ago
- 6e20554 Initialize the named_pipe_path in GDBRemoteCommunication::StartDebugserverProcess by Jason Molenda · 12 years ago
- ffa674e Terminate an unused char* buffer correctly so we don't try to open by Jason Molenda · 12 years ago
- b36da43 Fixed the Visual Studio Windows build by Deepak Panickal · 12 years ago
- fda4fab Revert to getting a random port and sending that down to debugserver for iOS. The sandboxing is not letting debugserver reverse connect back to lldb. by Greg Clayton · 12 years ago
- 3a7c3d1 <rdar://problem/15639995> by Han Ming Ong · 12 years ago
- 3dedae1 Fixed the GDBRemoteCommuncation to return a new GDBRemoteCommuncation::PacketResult enum for all packet sends/receives. by Greg Clayton · 12 years ago
- d629980 Replace all in_port_t with uint16_t to avoid compilation issues on different systems. by Greg Clayton · 12 years ago
- 00fe87b Modified local spawning in debugserver processes to use a new --reverse-connect option so that debugserver actually connects back to LLDB instead of LLDB connecting to debugserver. by Greg Clayton · 12 years ago
- 91a9b247 Switch local launching of debugserver over to always use a FIFO in order to handshake with the launched debugserver. by Greg Clayton · 12 years ago
- 4598907 Fixed format strings as they still must specicy a '%' prior to using PRI*64 macros. by Greg Clayton · 12 years ago
- d66b50c Fixes to get LLDB building on Windows again. by Deepak Panickal · 12 years ago
- e5fd5e1 Clear 'packet_str' before putting new packet. by Hafiz Abid Qadeer · 12 years ago
- da96ef2 Handle run-length-encoding. by Hafiz Abid Qadeer · 12 years ago
- e0f8f57 merge lldb-platform-work branch (and assorted fixes) into trunk by Daniel Malea · 12 years ago
- a6b4c77 Include checksum in non-ack mode by Ed Maste · 12 years ago
- 5160ce5 <rdar://problem/13521159> by Greg Clayton · 13 years ago
- d01b295 Resolve printf formatting warnings on Linux: by Daniel Malea · 13 years ago
- 43e0af0 Stop using the "%z" size_t modifier and cast all size_t values to uint64_t. Some platforms don't support this modification. by Greg Clayton · 13 years ago
- 4ceb928 Change the Mutex::Locker class so that it takes the Mutex object and locks it, rather by Jim Ingham · 13 years ago
- 561e190 Use Log::Printf() instead of printf(). by Johnny Chen · 13 years ago
- d989673 <rdar://problem/11486302> by Greg Clayton · 13 years ago
- 10ebffa Don't expose the pthread_mutex_t underlying the Mutex & Mutex::Locker classes. by Jim Ingham · 14 years ago
- d451c1a Added the thread ID (tid) to each packet history item and the packet history now always dumps to a lldb_private::Stream. by Greg Clayton · 14 years ago
- c3c0b0e Remove the GetSequenceMutex timeout that isn't being used in the GDB remote plug-in. by Greg Clayton · 14 years ago
- 37a0a24 No functionality changes, mostly cleanup. by Greg Clayton · 14 years ago
- 9fc1355 Trying to solve our disappearing thread issues by making thread list updates safer. by Greg Clayton · 14 years ago
- c1422c1 Added a packet history object to the GDBRemoteCommunication class that is always remembering the last 512 packets that were sent/received. These packets get dumped if logging gets enabled, or when the new expr lldb::DumpProcessGDBRemotePacketHistory (void *process, const char *log_file_path) global function is called. by Greg Clayton · 14 years ago
- 86edbf4 Cleaned up many error codes. For any who is filling in error strings into by Greg Clayton · 14 years ago
- fd54b36 Update declarations for all functions/methods that accept printf-style by Jason Molenda · 14 years ago
- 74549c8 Initialize the all important automatic variable 'lldb::ConnectionStatus status' before by Johnny Chen · 14 years ago
- 644247c Added "target variable" command that allows introspection of global by Greg Clayton · 14 years ago
- 0c51ac3 When we use the "fd://%u" for file descriptors, we need to detect if this is by Greg Clayton · 14 years ago
- 197bacf Cleanup errors that come out of commands and make sure they all have newlines by Greg Clayton · 14 years ago
- f3dd93c Added the notion of an system root for SDKs. This is a directory where all by Greg Clayton · 14 years ago