Lines Matching refs:m_comm

174     m_comm("lldb.process.kdp-remote.communication"),
186 m_comm.SetPacketTimeout(timeout_seconds);
277 m_comm.SetConnection(conn_ap.release());
279 if (m_comm.SendRequestReattach(reply_port))
281 if (m_comm.SendRequestConnect(reply_port, reply_port, "Greetings from LLDB..."))
283 m_comm.GetVersion();
284 uint32_t cpu = m_comm.GetCPUType();
285 uint32_t sub = m_comm.GetCPUSubtype();
293 UUID kernel_uuid = m_comm.GetUUID ();
294 addr_t kernel_load_addr = m_comm.GetLoadAddress ();
296 if (m_comm.RemoteIsEFI ())
300 else if (m_comm.RemoteIsDarwinKernel ())
318 if ((cstr = m_comm.GetKernelVersion ()) != NULL)
323 // if ((cstr = m_comm.GetImagePath ()) != NULL)
351 m_comm.Disconnect();
503 if (m_comm.SendRequestResume ())
568 if (m_comm.IsRunning())
593 if (m_comm.IsRunning())
605 if (!keep_stopped && m_comm.IsConnected())
607 const bool success = m_comm.SendRequestDisconnect();
615 m_comm.Disconnect ();
619 m_comm.Clear();
643 return m_comm.IsConnected() && m_private_state.GetValue() != eStateExited;
652 if (m_comm.IsConnected())
653 return m_comm.SendRequestReadMemory (addr, buf, size, error);
661 if (m_comm.IsConnected())
662 return m_comm.SendRequestWriteMemory (addr, buf, size, error);
685 if (m_comm.LocalBreakpointsAreSupported ())
690 if (m_comm.SendRequestBreakpoint(true, bp_site->GetLoadAddress()))
708 if (m_comm.LocalBreakpointsAreSupported ())
716 if (m_destroy_in_process && m_comm.IsRunning())
723 if (m_comm.SendRequestBreakpoint(false, bp_site->GetLoadAddress()))
884 if (process->m_comm.WaitForPacketWithTimeoutMicroSeconds (exc_reply_packet, 1 * USEC_PER_SEC))