Home | History | Annotate | Download | only in gdb-remote

Lines Matching refs:GDBRemoteCommunicationClient

1 //===-- GDBRemoteCommunicationClient.cpp ------------------------*- C++ -*-===//
11 #include "GDBRemoteCommunicationClient.h"
37 // GDBRemoteCommunicationClient constructor
39 GDBRemoteCommunicationClient::GDBRemoteCommunicationClient(bool is_platform) :
89 GDBRemoteCommunicationClient::~GDBRemoteCommunicationClient()
96 GDBRemoteCommunicationClient::HandshakeWithServer (Error *error_ptr)
109 GDBRemoteCommunicationClient::QueryNoAckModeSupported ()
129 GDBRemoteCommunicationClient::GetListThreadsInStopReplySupported ()
145 GDBRemoteCommunicationClient::GetVAttachOrWaitSupported ()
165 GDBRemoteCommunicationClient::GetSyncThreadStateSupported ()
186 GDBRemoteCommunicationClient::ResetDiscoverableSettings()
218 GDBRemoteCommunicationClient::GetThreadSuffixSupported ()
233 GDBRemoteCommunicationClient::GetVContSupported (char flavor)
292 GDBRemoteCommunicationClient::SendPacketAndWaitForResponse
306 GDBRemoteCommunicationClient::SendPacketAndWaitForResponse
432 GDBRemoteCommunicationClient::HarmonizeThreadIdsForProfileData
522 GDBRemoteCommunicationClient::SendContinuePacketAndWaitForResponse
533 log->Printf ("GDBRemoteCommunicationClient::%s ()", __FUNCTION__);
551 log->Printf ("GDBRemoteCommunicationClient::%s () sending continue packet: %s", __FUNCTION__, continue_packet.c_str());
561 log->Printf ("GDBRemoteCommunicationClient::%s () WaitForPacket(%s)", __FUNCTION__, continue_packet.c_str());
571 log->Printf ("GDBRemoteCommunicationClient::%s () got packet: %s", __FUNCTION__, response.GetStringRef().c_str());
788 log->Printf ("GDBRemoteCommunicationClient::%s () unrecognized async packet", __FUNCTION__);
797 log->Printf ("GDBRemoteCommunicationClient::%s () WaitForPacket(...) => false", __FUNCTION__);
802 log->Printf ("GDBRemoteCommunicationClient::%s () => %s", __FUNCTION__, StateAsCString(state));
810 GDBRemoteCommunicationClient::SendAsyncSignal (int signo)
833 GDBRemoteCommunicationClient::SendInterrupt
907 GDBRemoteCommunicationClient::GetCurrentProcessID ()
920 GDBRemoteCommunicationClient::GetLaunchSuccess (std::string &error_str)
946 GDBRemoteCommunicationClient::SendArgumentsPacket (char const *argv[])
976 GDBRemoteCommunicationClient::SendEnvironmentPacket (char const *name_equal_value)
996 GDBRemoteCommunicationClient::SendLaunchArchPacket (char const *arch)
1016 GDBRemoteCommunicationClient::GetOSVersion (uint32_t &major,
1034 GDBRemoteCommunicationClient::GetOSBuildString (std::string &s)
1050 GDBRemoteCommunicationClient::GetOSKernelDescription (std::string &s)
1065 GDBRemoteCommunicationClient::GetHostname (std::string &s)
1080 GDBRemoteCommunicationClient::GetSystemArchitecture ()
1088 GDBRemoteCommunicationClient::GetProcessArchitecture ()
1097 GDBRemoteCommunicationClient::GetHostInfo (bool force)
1321 GDBRemoteCommunicationClient::SendAttach
1343 GDBRemoteCommunicationClient::GetHostArchitecture ()
1351 GDBRemoteCommunicationClient::AllocateMemory (size_t size, uint32_t permissions)
1378 GDBRemoteCommunicationClient::DeallocateMemory (addr_t addr)
1401 GDBRemoteCommunicationClient::Detach (bool keep_stopped)
1445 GDBRemoteCommunicationClient::GetMemoryRegionInfo (lldb::addr_t addr,
1543 GDBRemoteCommunicationClient::GetWatchpointSupportInfo (uint32_t &num)
1590 GDBRemoteCommunicationClient::GetWatchpointSupportInfo (uint32_t &num, bool& after)
1599 GDBRemoteCommunicationClient::GetWatchpointsTriggerAfterInstruction (bool &after)
1614 GDBRemoteCommunicationClient::SetSTDIN (char const *path)
1636 GDBRemoteCommunicationClient::SetSTDOUT (char const *path)
1658 GDBRemoteCommunicationClient::SetSTDERR (char const *path)
1680 GDBRemoteCommunicationClient::SetWorkingDir (char const *path)
1702 GDBRemoteCommunicationClient::SetDisableASLR (bool enable)
1720 GDBRemoteCommunicationClient::DecodeProcessInfoResponse (StringExtractorGDBRemote &response, ProcessInstanceInfo &process_info)
1781 GDBRemoteCommunicationClient::GetProcessInfo (lldb::pid_t pid, ProcessInstanceInfo &process_info)
1805 GDBRemoteCommunicationClient::GetCurrentProcessInfo ()
1899 GDBRemoteCommunicationClient::FindProcesses (const ProcessInstanceInfoMatch &match_info,
1998 GDBRemoteCommunicationClient::GetUserName (uint32_t uid, std::string &name)
2028 GDBRemoteCommunicationClient::GetGroupName (uint32_t gid, std::string &name)
2057 GDBRemoteCommunicationClient::TestPacketSpeed (const uint32_t num_packets)
2110 GDBRemoteCommunicationClient::SendSpeedTestPacket (uint32_t send_size, uint32_t recv_size)
2135 GDBRemoteCommunicationClient::LaunchGDBserverAndGetPort ()
2157 GDBRemoteCommunicationClient::SetCurrentThread (uint64_t tid)
2182 GDBRemoteCommunicationClient::SetCurrentThreadForRun (uint64_t tid)
2208 GDBRemoteCommunicationClient::GetStopReply (StringExtractorGDBRemote &response)
2216 GDBRemoteCommunicationClient::GetThreadStopInfo (lldb::tid_t tid, StringExtractorGDBRemote &response)
2242 GDBRemoteCommunicationClient::SendGDBStoppointTypePacket (GDBStoppointType type, bool insert, addr_t addr, uint32_t length)
2287 GDBRemoteCommunicationClient::GetCurrentThreadIDs (std::vector<lldb::tid_t> &thread_ids,
2335 GDBRemoteCommunicationClient::GetShlibInfoAddr()