Lines Matching refs:telephonyService

95 int32_t ImsTest::SetDomainPreferenceMode(const sptr<CellularCallInterface> &telephonyService) const
104 return telephonyService->SetDomainPreferenceMode(slotId, mode);
107 int32_t ImsTest::GetDomainPreferenceMode(const sptr<CellularCallInterface> &telephonyService) const
113 return telephonyService->GetDomainPreferenceMode(slotId);
116 int32_t ImsTest::SetImsSwitchStatus(const sptr<CellularCallInterface> &telephonyService) const
125 return telephonyService->SetImsSwitchStatus(slotId, active);
128 int32_t ImsTest::GetImsSwitchStatus(const sptr<CellularCallInterface> &telephonyService) const
135 return telephonyService->GetImsSwitchStatus(slotId, enabled);
138 int32_t ImsTest::SetImsConfigString(const sptr<CellularCallInterface> &telephonyService) const
148 return telephonyService->SetImsConfig(slotId, static_cast<ImsConfigItem>(item), value);
151 int32_t ImsTest::SetImsConfigInt(const sptr<CellularCallInterface> &telephonyService) const
161 return telephonyService->SetImsConfig(slotId, static_cast<ImsConfigItem>(item), value);
164 int32_t ImsTest::GetImsConfig(const sptr<CellularCallInterface> &telephonyService) const
171 return telephonyService->GetImsConfig(slotId, static_cast<ImsConfigItem>(item));
174 int32_t ImsTest::SetImsFeatureValue(const sptr<CellularCallInterface> &telephonyService) const
184 return telephonyService->SetImsFeatureValue(slotId, static_cast<FeatureType>(type), value);
187 int32_t ImsTest::GetImsFeatureValue(const sptr<CellularCallInterface> &telephonyService) const
194 return telephonyService->GetImsFeatureValue(slotId, static_cast<FeatureType>(type));
197 int32_t ImsTest::ControlCamera(const sptr<CellularCallInterface> &telephonyService) const
203 return telephonyService->ControlCamera(slotId, callIndex, cameraId);
206 int32_t ImsTest::SetPreviewWindow(const sptr<CellularCallInterface> &telephonyService) const
218 return telephonyService->SetPreviewWindow(slotId, callIndex, subSurfaceId, surface);
221 int32_t ImsTest::SetDisplayWindow(const sptr<CellularCallInterface> &telephonyService) const
233 return telephonyService->SetDisplayWindow(slotId, callIndex, subSurfaceId, surface);
236 int32_t ImsTest::SetCameraZoom(const sptr<CellularCallInterface> &telephonyService) const
240 return telephonyService->SetCameraZoom(zoomRatio);
243 int32_t ImsTest::SetPausePicture(const sptr<CellularCallInterface> &telephonyService) const
249 return telephonyService->SetPausePicture(slotId, callIndex, path);
252 int32_t ImsTest::SetDeviceDirection(const sptr<CellularCallInterface> &telephonyService) const
258 return telephonyService->SetDeviceDirection(slotId, callIndex, rotation);
261 int32_t ImsTest::SendUpdateCallMediaModeRequest(const sptr<CellularCallInterface> &telephonyService) const
282 return telephonyService->SendUpdateCallMediaModeRequest(callInfo, callMode);
285 int32_t ImsTest::SendUpdateCallMediaModeResponse(const sptr<CellularCallInterface> &telephonyService) const
306 return telephonyService->SendUpdateCallMediaModeResponse(callInfo, callMode);
309 int32_t ImsTest::CancelCallUpgrade(const sptr<CellularCallInterface> &telephonyService) const
314 return telephonyService->CancelCallUpgrade(slotId, callIndex);
317 int32_t ImsTest::RequestCameraCapabilities(const sptr<CellularCallInterface> &telephonyService) const
322 return telephonyService->RequestCameraCapabilities(slotId, callIndex);
325 int32_t ImsTest::InputNumForInterface(const sptr<CellularCallInterface> &telephonyService) const
365 ret = (this->*requestFunction)(telephonyService);