Lines Matching refs:handle
37 auto handle = DelayedSingleton<CellularCallService>::GetInstance()->GetHandler(slotId);
38 if (handle == nullptr) {
39 TELEPHONY_LOGE("SetDomainPreferenceModeRequest return, error type: handle is nullptr.");
43 slotId, RadioEvent::RADIO_SET_CALL_PREFERENCE_MODE, mode, handle);
59 auto handle = DelayedSingleton<CellularCallService>::GetInstance()->GetHandler(slotId);
60 if (handle == nullptr) {
61 TELEPHONY_LOGE("GetDomainPreferenceModeRequest return, error type: handle is nullptr.");
64 CoreManagerInner::GetInstance().GetCallPreferenceMode(slotId, RadioEvent::RADIO_GET_CALL_PREFERENCE_MODE, handle);
80 auto handle = DelayedSingleton<CellularCallService>::GetInstance()->GetHandler(slotId);
81 if (handle == nullptr) {
82 TELEPHONY_LOGE("SetVoNRSwitchStatusRequest return, error type: handle is nullptr.");
86 CoreManagerInner::GetInstance().SetVoNRSwitch(slotId, state, RadioEvent::RADIO_SET_VONR_SWITCH_STATUS, handle);
162 auto handle = DelayedSingleton<CellularCallService>::GetInstance()->GetHandler(slotId);
163 if (handle == nullptr) {
164 TELEPHONY_LOGE("SetMuteRequest return, error type: handle is nullptr.");
167 CoreManagerInner::GetInstance().SetMute(slotId, RadioEvent::RADIO_SET_CMUT, mute, handle);
183 auto handle = DelayedSingleton<CellularCallService>::GetInstance()->GetHandler(slotId);
184 if (handle == nullptr) {
185 TELEPHONY_LOGE("GetMuteRequest return, error type: handle is nullptr.");
188 CoreManagerInner::GetInstance().GetMute(slotId, RadioEvent::RADIO_GET_CMUT, handle);
194 auto handle = DelayedSingleton<CellularCallService>::GetInstance()->GetHandler(slotId);
195 if (handle == nullptr) {
196 TELEPHONY_LOGE("GetEmergencyCallListRequest return, error type: handle is nullptr.");
199 CoreManagerInner::GetInstance().GetEmergencyCallList(slotId, RadioEvent::RADIO_GET_EMERGENCY_CALL_LIST, handle);
206 auto handle = DelayedSingleton<CellularCallService>::GetInstance()->GetHandler(slotId);
207 if (handle == nullptr) {
208 TELEPHONY_LOGE("SetEmergencyCallListRequest return, error type: handle is nullptr.");
213 slotId, RadioEvent::RADIO_SET_EMERGENCY_CALL_LIST, eccVec, handle);