Lines Matching refs:pConnection
223 T2 pConnection = &it.second; in FindConnectionByState() local
224 if (pConnection != nullptr && pConnection->GetStatus() == state) { in FindConnectionByState()
225 return pConnection; in FindConnectionByState()
242 T2 pConnection = &it.second; in FindConnectionByIndex() local
243 if (pConnection != nullptr && pConnection->GetIndex() == index) { in FindConnectionByIndex()
244 return pConnection; in FindConnectionByIndex()
279 auto pConnection = &it.second; in IsInState() local
280 if (pConnection != nullptr && pConnection->GetStatus() == state) { in IsInState()
312 … auto pConnection = FindConnectionByIndex<T &, decltype(&t.begin()->second)>(t, callInfo.index); in StartDtmf() local
313 if (pConnection == nullptr) { in StartDtmf()
321 return pConnection->StartDtmfRequest(callInfo.slotId, cDtmfCode, pConnection->GetIndex()); in StartDtmf()
348 … auto pConnection = FindConnectionByIndex<T &, decltype(&t.begin()->second)>(t, callInfo.index); in StopDtmf() local
349 if (pConnection == nullptr) { in StopDtmf()
353 return pConnection->StopDtmfRequest(callInfo.slotId, pConnection->GetIndex()); in StopDtmf()
392 … auto pConnection = FindConnectionByIndex<T &, decltype(&t.begin()->second)>(t, callInfo.index); in SendDtmf() local
393 if (pConnection == nullptr) { in SendDtmf()
401 return pConnection->SendDtmfRequest(callInfo.slotId, cDtmfCode, pConnection->GetIndex()); in SendDtmf()