Lines Matching refs:telephonyService

114 int32_t CsTest::Dial(const sptr<CellularCallInterface> &telephonyService) const
129 return telephonyService->Dial(callInfo);
132 int32_t CsTest::HangUp(const sptr<CellularCallInterface> &telephonyService) const
144 return telephonyService->HangUp(callInfo, static_cast<CallSupplementType>(type));
147 int32_t CsTest::Answer(const sptr<CellularCallInterface> &telephonyService) const
154 return telephonyService->Answer(callInfo);
157 int32_t CsTest::Reject(const sptr<CellularCallInterface> &telephonyService) const
166 return telephonyService->Reject(callInfo);
169 int32_t CsTest::HoldCall(const sptr<CellularCallInterface> &telephonyService) const
176 return telephonyService->HoldCall(callInfo);
179 int32_t CsTest::UnHoldCall(const sptr<CellularCallInterface> &telephonyService) const
186 return telephonyService->UnHoldCall(callInfo);
189 int32_t CsTest::SwitchCall(const sptr<CellularCallInterface> &telephonyService) const
196 return telephonyService->SwitchCall(callInfo);
199 int32_t CsTest::IsEmergencyPhoneNumber(const sptr<CellularCallInterface> &telephonyService) const
209 telephonyService->IsEmergencyPhoneNumber(slotId, phoneNum, enabled);
213 int32_t CsTest::CombineConference(const sptr<CellularCallInterface> &telephonyService) const
220 return telephonyService->CombineConference(callInfo);
223 int32_t CsTest::SeparateConference(const sptr<CellularCallInterface> &telephonyService) const
232 return telephonyService->SeparateConference(callInfo);
235 int32_t CsTest::InviteToConference(const sptr<CellularCallInterface> &telephonyService) const
245 return telephonyService->InviteToConference(slotId, numberList);
248 int32_t CsTest::KickOutFromConference(const sptr<CellularCallInterface> &telephonyService) const
257 return telephonyService->KickOutFromConference(callInfo);
260 int32_t CsTest::HangUpAllConnection(const sptr<CellularCallInterface> &telephonyService) const
263 return telephonyService->HangUpAllConnection();
266 int32_t CsTest::RegisterCallBack(const sptr<CellularCallInterface> &telephonyService) const
272 int32_t CsTest::UnRegisterCallBack(const sptr<CellularCallInterface> &telephonyService) const
275 return telephonyService->UnRegisterCallManagerCallBack();
278 int32_t CsTest::StartDtmf(const sptr<CellularCallInterface> &telephonyService) const
290 return telephonyService->StartDtmf(cDtmfCode, callInfo);
293 int32_t CsTest::StopDtmf(const sptr<CellularCallInterface> &telephonyService) const
302 return telephonyService->StopDtmf(callInfo);
305 int32_t CsTest::SendDtmf(const sptr<CellularCallInterface> &telephonyService) const
317 return telephonyService->SendDtmf(cDtmfCode, callInfo);
320 int32_t CsTest::StartRtt(const sptr<CellularCallInterface> &telephonyService) const
329 return telephonyService->StartRtt(slotId, msg);
332 int32_t CsTest::StopRtt(const sptr<CellularCallInterface> &telephonyService) const
338 return telephonyService->StopRtt(slotId);
341 int32_t CsTest::SetCallTransferInfo(const sptr<CellularCallInterface> &telephonyService) const
358 return telephonyService->SetCallTransferInfo(slotId, callTransferInfo);
361 int32_t CsTest::GetCallTransferInfo(const sptr<CellularCallInterface> &telephonyService) const
370 return telephonyService->GetCallTransferInfo(slotId, static_cast<CallTransferType>(type));
373 int32_t CsTest::SetCallWaiting(const sptr<CellularCallInterface> &telephonyService) const
380 return telephonyService->SetCallWaiting(slotId, activate);
383 int32_t CsTest::GetCallWaiting(const sptr<CellularCallInterface> &telephonyService) const
389 return telephonyService->GetCallWaiting(slotId);
392 int32_t CsTest::SetCallRestriction(const sptr<CellularCallInterface> &telephonyService) const
409 return telephonyService->SetCallRestriction(slotId, info);
412 int32_t CsTest::GetCallRestriction(const sptr<CellularCallInterface> &telephonyService) const
421 return telephonyService->GetCallRestriction(slotId, static_cast<CallRestrictionType>(facType));
424 int32_t CsTest::SetCallRestrictionPassword(const sptr<CellularCallInterface> &telephonyService) const
440 int32_t ret = telephonyService->SetCallRestrictionPassword(slotId, facType, oldPassword, newPassword);
446 int32_t CsTest::SetMute(const sptr<CellularCallInterface> &telephonyService) const
455 return telephonyService->SetMute(slotId, mute);
458 int32_t CsTest::GetMute(const sptr<CellularCallInterface> &telephonyService) const
464 return telephonyService->GetMute(slotId);
473 auto telephonyService = iface_cast<CellularCallInterface>(remote);
474 ASSERT_TRUE(telephonyService != nullptr);
482 telephonyService->IsEmergencyPhoneNumber(SIM1_SLOTID, "499", enabled);
484 telephonyService->IsEmergencyPhoneNumber(SIM1_SLOTID, "443", enabled);
486 telephonyService->IsEmergencyPhoneNumber(SIM1_SLOTID, "356", enabled);
488 telephonyService->IsEmergencyPhoneNumber(SIM1_SLOTID, "975", enabled);
490 telephonyService->IsEmergencyPhoneNumber(SIM1_SLOTID, "783", enabled);
492 telephonyService->IsEmergencyPhoneNumber(SIM1_SLOTID, "350", enabled);
496 telephonyService->IsEmergencyPhoneNumber(SIM2_SLOTID, "499", enabled);
498 telephonyService->IsEmergencyPhoneNumber(SIM2_SLOTID, "443", enabled);
500 telephonyService->IsEmergencyPhoneNumber(SIM2_SLOTID, "356", enabled);
502 telephonyService->IsEmergencyPhoneNumber(SIM2_SLOTID, "975", enabled);
504 telephonyService->IsEmergencyPhoneNumber(SIM2_SLOTID, "783", enabled);
506 telephonyService->IsEmergencyPhoneNumber(SIM2_SLOTID, "350", enabled);
511 int32_t CsTest::InputNumForInterface(const sptr<CellularCallInterface> &telephonyService) const
539 ret = (this->*requestFunc)(telephonyService);