Searched refs:pid_tid (Results 1 – 3 of 3) sorted by relevance
1772 auto pid_tid = packet.GetPidTid(LLDB_INVALID_PROCESS_ID); in Handle_vCont() local1773 if (!pid_tid) in Handle_vCont()1776 pid = pid_tid->first; in Handle_vCont()1777 tid = pid_tid->second; in Handle_vCont()2358 auto pid_tid = packet.GetPidTid(default_process ? default_process->GetID() in Handle_H() local2360 if (!pid_tid) in Handle_H()2364 lldb::pid_t pid = pid_tid->first; in Handle_H()2365 lldb::tid_t tid = pid_tid->second; in Handle_H()4039 auto pid_tid = packet.GetPidTid(m_current_process ? m_current_process->GetID() in Handle_T() local4041 if (!pid_tid) in Handle_T()[all …]
1411 auto pid_tid = thread_ids.GetPidTid(pid); in UpdateThreadIDsFromStopReplyThreadsValue() local1412 if (pid_tid && pid_tid->first == pid) { in UpdateThreadIDsFromStopReplyThreadsValue()1413 lldb::tid_t tid = pid_tid->second; in UpdateThreadIDsFromStopReplyThreadsValue()2170 auto pid_tid = thread_id.GetPidTid(pid); in SetThreadStopInfo() local2171 if (pid_tid) { in SetThreadStopInfo()2172 stop_pid = pid_tid->first; in SetThreadStopInfo()2173 tid = pid_tid->second; in SetThreadStopInfo()2287 auto pid_tid = thread_id.GetPidTid(LLDB_INVALID_PROCESS_ID); in SetThreadStopInfo() local2288 if (!pid_tid) { in SetThreadStopInfo()2291 pid_tid = {{LLDB_INVALID_PROCESS_ID, LLDB_INVALID_THREAD_ID}}; in SetThreadStopInfo()[all …]
1173 auto pid_tid = response.GetPidTid(0); in GetDefaultThreadId() local1174 if (!pid_tid) in GetDefaultThreadId()1177 lldb::pid_t pid = pid_tid->first; in GetDefaultThreadId()1187 tid = pid_tid->second; in GetDefaultThreadId()2892 auto pid_tid = response.GetPidTid(LLDB_INVALID_PROCESS_ID); in GetCurrentProcessAndThreadIDs() local2897 if (!pid_tid) in GetCurrentProcessAndThreadIDs()2900 ids.push_back(*pid_tid); in GetCurrentProcessAndThreadIDs()