Home
last modified time | relevance | path

Searched refs:pConnection (Results 1 – 3 of 3) sorted by relevance

/base/telephony/cellular_call/services/control/include/
Dcontrol_base.h230 T2 pConnection = &it.second; in FindConnectionByState() local
231 if (pConnection != nullptr && pConnection->GetStatus() == state) { in FindConnectionByState()
232 return pConnection; in FindConnectionByState()
249 T2 pConnection = &it.second; in FindConnectionByIndex() local
250 if (pConnection != nullptr && pConnection->GetIndex() == index) { in FindConnectionByIndex()
251 return pConnection; in FindConnectionByIndex()
286 auto pConnection = &it.second; in IsInState() local
287 if (pConnection != nullptr && pConnection->GetStatus() == state) { in IsInState()
319 … auto pConnection = FindConnectionByIndex<T &, decltype(&t.begin()->second)>(t, callInfo.index); in StartDtmf() local
321 if (pConnection == nullptr) { in StartDtmf()
[all …]
/base/telephony/cellular_call/services/control/src/
Dcs_control.cpp115 CellularCallConnectionCS pConnection; in DialGsm() local
120 pConnection.SwitchCallRequest(callInfo.slotId); in DialGsm()
160 auto pConnection = FindConnectionByIndex<CsConnectionMap &, CellularCallConnectionCS *>( in HangUp() local
162 if (pConnection == nullptr) { in HangUp()
171 pConnection->GetCallReportInfo(), TelCallState::CALL_STATUS_DISCONNECTING); in HangUp()
180 return pConnection->HangUpRequest(callInfo.slotId); in HangUp()
208 auto pConnection = in Answer() local
210 if (pConnection == nullptr) { in Answer()
243 pConnection->GetStatus() == TelCallState::CALL_STATUS_WAITING) { in Answer()
260 if (pConnection->GetStatus() == TelCallState::CALL_STATUS_INCOMING || in Answer()
[all …]
Dims_control.cpp126 … auto pConnection = FindConnectionByIndex<ImsConnectionMap &, CellularCallConnectionIMS *>( in HangUp() local
128 if (pConnection == nullptr) { in HangUp()
135 pConnection->GetCallReportInfo(), TelCallState::CALL_STATUS_DISCONNECTING); in HangUp()
137 return pConnection->HangUpRequest(callInfo.slotId, callInfo.phoneNum, callInfo.index); in HangUp()
162 auto pConnection = FindConnectionByIndex<ImsConnectionMap &, CellularCallConnectionIMS *>( in Answer() local
164 if (pConnection == nullptr) { in Answer()
186 pConnection->GetStatus() == TelCallState::CALL_STATUS_WAITING) { in Answer()
196 if (pConnection->GetStatus() == TelCallState::CALL_STATUS_ALERTING || in Answer()
197 pConnection->GetStatus() == TelCallState::CALL_STATUS_INCOMING || in Answer()
198 pConnection->GetStatus() == TelCallState::CALL_STATUS_WAITING) { in Answer()
[all …]