/base/telephony/ril_adapter/test/unittest/include/ |
D | ril_interface_test.h | 31 void GetImeiStressTest(int32_t slotId); 32 void RilCmDialStressTest(int32_t slotId); 33 void SetRadioStateStressTest(int32_t slotId); 34 void GetCallListTest(int32_t slotId); 35 void RilCmDialTest(int32_t slotId); 36 void HangupTest(int32_t slotId); 37 void RejectTest(int32_t slotId); 38 void AnswerCallTest(int32_t slotId); 39 void HoldCallTest(int32_t slotId); 40 void UnHoldCallTest(int32_t slotId); [all …]
|
/base/telephony/core_service/services/sim/src/ |
D | sim_manager.cpp | 32 for (int32_t slotId = 0; slotId < slotCount_; slotId++) { in ~SimManager() local 33 multiSimMonitor_->UnRegisterForIccLoaded(slotId); in ~SimManager() 34 multiSimMonitor_->UnRegisterForSimStateChanged(slotId); in ~SimManager() 59 for (int32_t slotId = 0; slotId < slotCount_; slotId++) { in InitMultiSimObject() local 60 simStateManager_[slotId] = std::make_shared<SimStateManager>(telRilManager_); in InitMultiSimObject() 61 if (simStateManager_[slotId] != nullptr) { in InitMultiSimObject() 62 simStateManager_[slotId]->Init(slotId); in InitMultiSimObject() 64 …simFileManager_[slotId] = SimFileManager::CreateInstance(telRilManager_, simStateManager_[slotId]); in InitMultiSimObject() 65 if (simFileManager_[slotId] != nullptr) { in InitMultiSimObject() 66 simFileManager_[slotId]->Init(slotId); in InitMultiSimObject() [all …]
|
/base/telephony/core_service/interfaces/kits/js/ |
D | @ohos.telephony.sim.d.ts | 34 function isSimActive(slotId: number, callback: AsyncCallback<boolean>): void; 35 function isSimActive(slotId: number): Promise<boolean>; 61 function hasOperatorPrivileges(slotId: number, callback: AsyncCallback<boolean>): void; 62 function hasOperatorPrivileges(slotId: number): Promise<boolean>; 77 function getISOCountryCodeForSim(slotId: number, callback: AsyncCallback<string>): void; 78 function getISOCountryCodeForSim(slotId: number): Promise<string>; 96 function getSimOperatorNumeric(slotId: number, callback: AsyncCallback<string>): void; 97 function getSimOperatorNumeric(slotId: number): Promise<string>; 116 function getSimSpn(slotId: number, callback: AsyncCallback<string>): void; 117 function getSimSpn(slotId: number): Promise<string>; [all …]
|
D | @ohos.telephony.radio.d.ts | 57 function getRadioTech(slotId: number, 59 …function getRadioTech(slotId: number): Promise<{psRadioTech: RadioTechnology, csRadioTech: RadioTe… 76 function getNetworkState(slotId: number, callback: AsyncCallback<NetworkState>): void; 77 function getNetworkState(slotId?: number): Promise<NetworkState>; 97 function sendUpdateCellLocationRequest(slotId: number, callback: AsyncCallback<void>): void; 116 function sendUpdateCellLocationRequest(slotId?: number): Promise<void>; 135 …function getCellInformation(slotId: number, callback: AsyncCallback<Array<CellInformation>>): void; 136 function getCellInformation(slotId?: number): Promise<Array<CellInformation>>; 155 …function getNetworkSelectionMode(slotId: number, callback: AsyncCallback<NetworkSelectionMode>): v… 156 function getNetworkSelectionMode(slotId: number): Promise<NetworkSelectionMode>; [all …]
|
/base/telephony/core_service/services/network_search/src/ |
D | network_search_manager.cpp | 49 for (int32_t slotId = 0; slotId < SIM_SLOT_COUNT; slotId++) { in ~NetworkSearchManager() local 50 std::shared_ptr<NetworkSearchManagerInner> inner = FindManagerInner(slotId); in ~NetworkSearchManager() 58 …etworkSearchManager::InitPointer(std::shared_ptr<NetworkSearchManagerInner> &inner, int32_t slotId) in InitPointer() argument 65 name.append(std::to_string(slotId)); in InitPointer() 68 … TELEPHONY_LOGE("NetworkSearchManager failed to create EventRunner slotId:%{public}d", slotId); in InitPointer() 73 TELEPHONY_LOGE("failed to create new ObserverHandler slotId:%{public}d", slotId); in InitPointer() 76 inner->networkSearchState_ = std::make_shared<NetworkSearchState>(shared_from_this(), slotId); in InitPointer() 78 TELEPHONY_LOGE("failed to create new NetworkSearchState slotId:%{public}d", slotId); in InitPointer() 82 inner->eventLoop_, shared_from_this(), telRilManager_, simManager_, slotId); in InitPointer() 84 TELEPHONY_LOGE("failed to create new NetworkSearchHandler slotId:%{public}d", slotId); in InitPointer() [all …]
|
/base/telephony/ril_adapter/services/hril/src/ |
D | hril_manager.cpp | 54 ReqDataInfo *HRilManager::CreateHRilRequest(int32_t serial, int32_t slotId, int32_t request) in CreateHRilRequest() argument 57 HRilSimSlotId simSlotId = (HRilSimSlotId)slotId; in CreateHRilRequest() 62 requestInfo->slotId = simSlotId; in CreateHRilRequest() 111 void HRilManager::RegisterCallFuncs(int32_t slotId, const HRilCallReq *callFuncs) in RegisterCallFuncs() argument 113 if (hrilCall_[slotId] != nullptr) { in RegisterCallFuncs() 114 hrilCall_[slotId]->RegisterCallFuncs(callFuncs); in RegisterCallFuncs() 118 void HRilManager::RegisterDataFuncs(int32_t slotId, const HRilDataReq *dataFuncs) in RegisterDataFuncs() argument 120 if (hrilData_[slotId] != nullptr) { in RegisterDataFuncs() 121 hrilData_[slotId]->RegisterDataFuncs(dataFuncs); in RegisterDataFuncs() 125 void HRilManager::RegisterModemFuncs(int32_t slotId, const HRilModemReq *modemFuncs) in RegisterModemFuncs() argument [all …]
|
/base/telephony/core_service/services/network_search/include/ |
D | network_search_manager.h | 128 void SetRadioState(int32_t slotId, bool isOn, int32_t rst) override; 129 int32_t SetRadioState(int32_t slotId, bool isOn, int32_t rst, NSCALLBACK &callback) override; 130 int32_t GetRadioState(int32_t slotId) override; 131 int32_t GetRadioState(int32_t slotId, NSCALLBACK &callback) override; 132 int32_t GetPsRadioTech(int32_t slotId, int32_t &psRadioTech) override; 133 int32_t GetCsRadioTech(int32_t slotId, int32_t &csRadioTech) override; 134 std::u16string GetOperatorNumeric(int32_t slotId) override; 135 int32_t GetOperatorName(int32_t slotId, std::u16string &operatorName) override; 136 int32_t GetNetworkStatus(int32_t slotId, sptr<NetworkState> &networkState) override; 137 … int32_t GetSignalInfoList(int32_t slotId, std::vector<sptr<SignalInformation>> &signals) override; [all …]
|
/base/telephony/cellular_call/services/control/src/ |
D | cellular_call_config.cpp | 96 int32_t CellularCallConfig::SetDomainPreferenceMode(int32_t slotId, int32_t mode) in SetDomainPreferenceMode() argument 102 modeTempMap_[slotId] = mode; in SetDomainPreferenceMode() 103 return configRequest_.SetDomainPreferenceModeRequest(slotId, mode); in SetDomainPreferenceMode() 106 int32_t CellularCallConfig::GetDomainPreferenceMode(int32_t slotId) in GetDomainPreferenceMode() argument 108 return configRequest_.GetDomainPreferenceModeRequest(slotId); in GetDomainPreferenceMode() 111 int32_t CellularCallConfig::SetImsSwitchStatus(int32_t slotId, bool active) in SetImsSwitchStatus() argument 114 …ularCallConfig::SetImsSwitchStatus entry, slotId: %{public}d, active: %{public}d", slotId, active); in SetImsSwitchStatus() 115 if (!volteSupported_[slotId]) { in SetImsSwitchStatus() 119 if (active && !IsVolteProvisioned(slotId)) { in SetImsSwitchStatus() 123 int32_t simId = CoreManagerInner::GetInstance().GetSimId(slotId); in SetImsSwitchStatus() [all …]
|
/base/telephony/cellular_call/vendor/ims/services/ims_call/src/ |
D | ims_call.cpp | 43 int32_t slotId = callInfo.slotId; in Dial() local 49 imsCallCallback_->DialResponse(slotId, info); in Dial() 58 int32_t slotId = callInfo.slotId; in HangUp() local 64 imsCallCallback_->HangUpResponse(slotId, info); in HangUp() 73 int32_t slotId = callInfo.slotId; in RejectWithReason() local 79 imsCallCallback_->RejectWithReasonResponse(slotId, info); in RejectWithReason() 88 int32_t slotId = callInfo.slotId; in Answer() local 94 imsCallCallback_->AnswerResponse(slotId, info); in Answer() 98 int32_t ImsCall::HoldCall(int32_t slotId, int32_t callType) in HoldCall() argument 108 imsCallCallback_->HoldCallResponse(slotId, info); in HoldCall() [all …]
|
/base/telephony/core_service/interfaces/innerkits/include/ |
D | core_service_client.h | 35 int32_t GetSignalInfoList(int32_t slotId, std::vector<sptr<SignalInformation>> &signals); 36 bool IsNrSupported(int32_t slotId); 37 int32_t GetPsRadioTech(int32_t slotId, int32_t &psRadioTech); 38 int32_t GetCsRadioTech(int32_t slotId, int32_t &csRadioTech); 39 int32_t GetNrOptionMode(int32_t slotId, NrMode &mode); 40 int32_t GetUniqueDeviceId(int32_t slotId, std::u16string &deviceId); 41 int32_t GetMeid(int32_t slotId, std::u16string &meid); 42 std::u16string GetOperatorNumeric(int32_t slotId); 43 int32_t GetOperatorName(int32_t slotId, std::u16string &operatorName); 44 int32_t GetNetworkState(int32_t slotId, sptr<NetworkState> &networkState); [all …]
|
D | i_sim_manager.h | 34 virtual int32_t HasSimCard(int32_t slotId, bool &hasSimCard) = 0; 35 virtual int32_t GetSimState(int32_t slotId, SimState &simState) = 0; 36 virtual int32_t GetCardType(int32_t slotId, CardType &cardType) = 0; 37 …virtual int32_t UnlockPin(int32_t slotId, const std::string &pin, LockStatusResponse &response) = … 39 …int32_t slotId, const std::string &newPin, const std::string &puk, LockStatusResponse &response) =… 41 …int32_t slotId, const std::string &newPin, const std::string &oldPin, LockStatusResponse &response… 42 …virtual int32_t SetLockState(int32_t slotId, const LockInfo &options, LockStatusResponse &response… 43 virtual int32_t GetLockState(int32_t slotId, LockType lockType, LockState &lockState) = 0; 44 virtual int32_t RefreshSimState(int32_t slotId) = 0; 45 …virtual int32_t UnlockPin2(int32_t slotId, const std::string &pin2, LockStatusResponse &response) … [all …]
|
D | core_manager_inner.h | 40 … int32_t slotId, const std::shared_ptr<AppExecFwk::EventHandler> &handler, int what, int32_t *obj); 42 … int32_t slotId, const std::shared_ptr<AppExecFwk::EventHandler> &observerCallBack, int what); 56 …int32_t slotId, int32_t eventId, int fun, int rst, const std::shared_ptr<AppExecFwk::EventHandler>… 58 … int32_t slotId, int32_t eventId, const std::shared_ptr<AppExecFwk::EventHandler> &handler) const; 59 …int32_t ShutDown(int32_t slotId, int32_t eventId, const std::shared_ptr<AppExecFwk::EventHandler> … 60 int32_t Dial(int32_t slotId, int32_t eventId, std::string address, int clirMode, 62 …int32_t Reject(int32_t slotId, int32_t eventId, const std::shared_ptr<AppExecFwk::EventHandler> &h… 64 …int32_t slotId, int32_t eventId, int32_t gsmIndex, const std::shared_ptr<AppExecFwk::EventHandler>… 65 …int32_t Answer(int32_t slotId, int32_t eventId, const std::shared_ptr<AppExecFwk::EventHandler> &h… 67 … int32_t slotId, int32_t eventId, const std::shared_ptr<AppExecFwk::EventHandler> &handler) const; [all …]
|
D | i_network_search.h | 38 virtual int32_t GetPsRadioTech(int32_t slotId, int32_t &psRadioTech) = 0; 39 virtual int32_t GetCsRadioTech(int32_t slotId, int32_t &csRadioTech) = 0; 40 virtual std::u16string GetOperatorNumeric(int32_t slotId) = 0; 41 virtual int32_t GetOperatorName(int32_t slotId, std::u16string &operatorName) = 0; 42 virtual int32_t GetNetworkStatus(int32_t slotId, sptr<NetworkState> &networkState) = 0; 43 virtual int32_t GetRadioState(int32_t slotId) = 0; 44 virtual int32_t GetRadioState(int32_t slotId, NSCALLBACK &callback) = 0; 50 virtual void SetRadioState(int32_t slotId, bool isOn, int32_t rst) = 0; 51 virtual int32_t SetRadioState(int32_t slotId, bool isOn, int32_t rst, NSCALLBACK &callback) = 0; 52 …virtual int32_t GetSignalInfoList(int32_t slotId, std::vector<sptr<SignalInformation>> &signals) =… [all …]
|
D | core_service_proxy.h | 27 int32_t GetPsRadioTech(int32_t slotId, int32_t &psRadioTech) override; 28 int32_t GetCsRadioTech(int32_t slotId, int32_t &csRadioTech) override; 29 … int32_t GetSignalInfoList(int32_t slotId, std::vector<sptr<SignalInformation>> &signals) override; 30 std::u16string GetOperatorNumeric(int32_t slotId) override; 31 int32_t GetOperatorName(int32_t slotId, std::u16string &operatorName) override; 32 int32_t GetNetworkState(int32_t slotId, sptr<NetworkState> &networkState) override; 33 …int32_t SetRadioState(int32_t slotId, bool isOn, const sptr<INetworkSearchCallback> &callback) ove… 34 int32_t GetRadioState(int32_t slotId, const sptr<INetworkSearchCallback> &callback) override; 35 int32_t GetImei(int32_t slotId, std::u16string &imei) override; 36 int32_t GetMeid(int32_t slotId, std::u16string &meid) override; [all …]
|
D | i_tel_ril_manager.h | 34 …int32_t slotId, const std::shared_ptr<AppExecFwk::EventHandler> &handler, int32_t what, int32_t *o… 36 …int32_t slotId, const std::shared_ptr<AppExecFwk::EventHandler> &observerCallBack, int32_t what) =… 39 … int32_t slotId, int32_t fun, int32_t rst, const AppExecFwk::InnerEvent::Pointer &response) = 0; 40 …virtual int32_t GetRadioState(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) = 0; 42 virtual int32_t ShutDown(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &response) = 0; 44 virtual int32_t GetCallList(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &result) = 0; 47 …int32_t slotId, std::string address, int32_t clirMode, const AppExecFwk::InnerEvent::Pointer &resu… 49 virtual int32_t Reject(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &result) = 0; 51 …virtual int32_t Hangup(int32_t slotId, int32_t gsmIndex, const AppExecFwk::InnerEvent::Pointer &re… 53 virtual int32_t Answer(int32_t slotId, const AppExecFwk::InnerEvent::Pointer &result) = 0; [all …]
|
D | i_core_service.h | 37 virtual int32_t GetPsRadioTech(int32_t slotId, int32_t &psRadioTech) = 0; 38 virtual int32_t GetCsRadioTech(int32_t slotId, int32_t &csRadioTech) = 0; 39 virtual std::u16string GetOperatorNumeric(int32_t slotId) = 0; 40 virtual int32_t GetOperatorName(int32_t slotId, std::u16string &operatorName) = 0; 41 …virtual int32_t GetSignalInfoList(int32_t slotId, std::vector<sptr<SignalInformation>> &signals) =… 42 virtual int32_t GetNetworkState(int32_t slotId, sptr<NetworkState> &networkState) = 0; 43 …virtual int32_t SetRadioState(int32_t slotId, bool isOn, const sptr<INetworkSearchCallback> &callb… 44 virtual int32_t GetRadioState(int32_t slotId, const sptr<INetworkSearchCallback> &callback) = 0; 45 virtual int32_t GetImei(int32_t slotId, std::u16string &imei) = 0; 46 virtual int32_t GetMeid(int32_t slotId, std::u16string &meid) = 0; [all …]
|
/base/telephony/core_service/services/tel_ril/src/ |
D | tel_ril_manager.cpp | 42 for (int32_t slotId = SIM_SLOT_0; slotId < SIM_SLOT_COUNT; slotId++) { in OnInit() local 43 InitTelModule(slotId); in OnInit() 104 void TelRilManager::InitTelModule(int32_t slotId) in InitTelModule() argument 108 …telRilSms_.push_back(std::make_unique<TelRilSms>(slotId, rilInterface_, observerHandler_[slotId], … in InitTelModule() 109 …telRilSim_.push_back(std::make_unique<TelRilSim>(slotId, rilInterface_, observerHandler_[slotId], … in InitTelModule() 110 …telRilCall_.push_back(std::make_unique<TelRilCall>(slotId, rilInterface_, observerHandler_[slotId]… in InitTelModule() 111 …telRilData_.push_back(std::make_unique<TelRilData>(slotId, rilInterface_, observerHandler_[slotId]… in InitTelModule() 112 …telRilModem_.push_back(std::make_unique<TelRilModem>(slotId, rilInterface_, observerHandler_[slotI… in InitTelModule() 114 std::make_unique<TelRilNetwork>(slotId, rilInterface_, observerHandler_[slotId], handler_)); in InitTelModule() 116 TelRilSms &TelRilManager::GetTelRilSms(int32_t slotId) in GetTelRilSms() argument [all …]
|
/base/telephony/cellular_call/services/ims_service_interaction/src/ |
D | ims_call_proxy.cpp | 29 TELEPHONY_LOGE("[slot%{public}d]Permission denied!", callInfo.slotId); in Dial() 34 TELEPHONY_LOGE("[slot%{public}d]Write descriptor token fail!", callInfo.slotId); in Dial() 35 …CellularCallHiSysEvent::WriteDialCallFaultEvent(callInfo.slotId, INVALID_PARAMETER, callInfo.video… in Dial() 40 TELEPHONY_LOGE("[slot%{public}d]Write callInfo fail!", callInfo.slotId); in Dial() 41 …CellularCallHiSysEvent::WriteDialCallFaultEvent(callInfo.slotId, INVALID_PARAMETER, callInfo.video… in Dial() 46 TELEPHONY_LOGE("[slot%{public}d]Write mode fail!", callInfo.slotId); in Dial() 47 …CellularCallHiSysEvent::WriteDialCallFaultEvent(callInfo.slotId, INVALID_PARAMETER, callInfo.video… in Dial() 53 TELEPHONY_LOGE("[slot%{public}d]Remote is null", callInfo.slotId); in Dial() 54 …CellularCallHiSysEvent::WriteDialCallFaultEvent(callInfo.slotId, INVALID_PARAMETER, callInfo.video… in Dial() 64 TELEPHONY_LOGE("[slot%{public}d]SendRequest fail, error:%{public}d", callInfo.slotId, error); in Dial() [all …]
|
/base/telephony/ril_adapter/services/hril/include/ |
D | hril_manager.h | 46 … virtual ReqDataInfo *CreateHRilRequest(int32_t serial, int32_t slotId, int32_t request) override; 49 void RegisterCallFuncs(int32_t slotId, const HRilCallReq *callFuncs); 50 void RegisterDataFuncs(int32_t slotId, const HRilDataReq *dataFuncs); 51 void RegisterModemFuncs(int32_t slotId, const HRilModemReq *modemFuncs); 52 void RegisterNetworkFuncs(int32_t slotId, const HRilNetworkReq *networkFuncs); 53 void RegisterSimFuncs(int32_t slotId, const HRilSimReq *simFuncs); 54 void RegisterSmsFuncs(int32_t slotId, const HRilSmsReq *smsFuncs); 58 …void OnCallReport(int32_t slotId, const ReportInfo *reportInfo, const uint8_t *response, size_t re… 59 …void OnDataReport(int32_t slotId, const ReportInfo *reportInfo, const uint8_t *response, size_t re… 60 …void OnModemReport(int32_t slotId, const ReportInfo *reportInfo, const uint8_t *response, size_t r… [all …]
|
/base/telephony/core_service/services/core/src/ |
D | core_service.cpp | 119 int32_t CoreService::GetPsRadioTech(int32_t slotId, int32_t &psRadioTech) in GetPsRadioTech() argument 129 return networkSearchManager_->GetPsRadioTech(slotId, psRadioTech); in GetPsRadioTech() 132 int32_t CoreService::GetCsRadioTech(int32_t slotId, int32_t &csRadioTech) in GetCsRadioTech() argument 142 return networkSearchManager_->GetCsRadioTech(slotId, csRadioTech); in GetCsRadioTech() 145 int32_t CoreService::SetNetworkSelectionMode(int32_t slotId, int32_t selectMode, in SetNetworkSelectionMode() argument 159 slotId, selectMode, networkInformation, resumeSelection, callback); in SetNetworkSelectionMode() 162 int32_t CoreService::GetSignalInfoList(int32_t slotId, std::vector<sptr<SignalInformation>> &signal… in GetSignalInfoList() argument 168 return networkSearchManager_->GetSignalInfoList(slotId, signals); in GetSignalInfoList() 171 std::u16string CoreService::GetOperatorNumeric(int32_t slotId) in GetOperatorNumeric() argument 177 return networkSearchManager_->GetOperatorNumeric(slotId); in GetOperatorNumeric() [all …]
|
/base/telephony/core_service/services/core/include/ |
D | core_service.h | 41 int32_t GetPsRadioTech(int32_t slotId, int32_t &psRadioTech) override; 43 int32_t GetCsRadioTech(int32_t slotId, int32_t &csRadioTech) override; 45 … int32_t GetSignalInfoList(int32_t slotId, std::vector<sptr<SignalInformation>> &signals) override; 47 std::u16string GetOperatorNumeric(int32_t slotId) override; 49 int32_t GetOperatorName(int32_t slotId, std::u16string &operatorName) override; 51 int32_t GetNetworkState(int32_t slotId, sptr<NetworkState> &networkState) override; 53 …int32_t SetRadioState(int32_t slotId, bool isOn, const sptr<INetworkSearchCallback> &callback) ove… 55 int32_t GetRadioState(int32_t slotId, const sptr<INetworkSearchCallback> &callback) override; 57 int32_t GetImei(int32_t slotId, std::u16string &imei) override; 59 int32_t GetMeid(int32_t slotId, std::u16string &meid) override; [all …]
|
/base/telephony/cellular_call/services/control/include/ |
D | cellular_call_config.h | 47 int32_t SetDomainPreferenceMode(int32_t slotId, int32_t mode); 58 int32_t GetDomainPreferenceMode(int32_t slotId); 69 int32_t SetImsSwitchStatus(int32_t slotId, bool active); 80 int32_t GetImsSwitchStatus(int32_t slotId, bool &enabled); 88 void GetDomainPreferenceModeResponse(int32_t slotId, int32_t mode); 96 void GetImsSwitchStatusResponse(int32_t slotId, int32_t active); 104 int32_t GetPreferenceMode(int32_t slotId) const; 112 int32_t GetSwitchStatus(int32_t slotId) const; 222 int32_t SetMute(int32_t slotId, int32_t mute); 230 int32_t GetMute(int32_t slotId); [all …]
|
/base/telephony/cellular_call/interfaces/innerkits/ims/ |
D | ims_call_callback_proxy.h | 31 int32_t DialResponse(int32_t slotId, const HRilRadioResponseInfo &info) override; 32 int32_t HangUpResponse(int32_t slotId, const HRilRadioResponseInfo &info) override; 33 int32_t RejectWithReasonResponse(int32_t slotId, const HRilRadioResponseInfo &info) override; 34 int32_t AnswerResponse(int32_t slotId, const HRilRadioResponseInfo &info) override; 35 int32_t HoldCallResponse(int32_t slotId, const HRilRadioResponseInfo &info) override; 36 int32_t UnHoldCallResponse(int32_t slotId, const HRilRadioResponseInfo &info) override; 37 int32_t SwitchCallResponse(int32_t slotId, const HRilRadioResponseInfo &info) override; 38 int32_t CallStateChangeReport(int32_t slotId) override; 39 int32_t GetImsCallsDataResponse(int32_t slotId, const HRilRadioResponseInfo &info) override; 40 int32_t GetImsCallsDataResponse(int32_t slotId, const ImsCurrentCallList &callList) override; [all …]
|
/base/telephony/core_service/frameworks/native/src/ |
D | core_service_client.cpp | 99 int32_t CoreServiceClient::GetPsRadioTech(int32_t slotId, int32_t &psRadioTech) in GetPsRadioTech() argument 106 return proxy->GetPsRadioTech(slotId, psRadioTech); in GetPsRadioTech() 109 int32_t CoreServiceClient::GetCsRadioTech(int32_t slotId, int32_t &csRadioTech) in GetCsRadioTech() argument 116 return proxy->GetCsRadioTech(slotId, csRadioTech); in GetCsRadioTech() 119 int32_t CoreServiceClient::GetMeid(int32_t slotId, std::u16string &meid) in GetMeid() argument 126 return proxy->GetMeid(slotId, meid); in GetMeid() 129 int32_t CoreServiceClient::GetUniqueDeviceId(int32_t slotId, std::u16string &deviceId) in GetUniqueDeviceId() argument 136 return proxy->GetUniqueDeviceId(slotId, deviceId); in GetUniqueDeviceId() 139 bool CoreServiceClient::IsNrSupported(int32_t slotId) in IsNrSupported() argument 146 return proxy->IsNrSupported(slotId); in IsNrSupported() [all …]
|
/base/telephony/core_service/test/unittest/tel_ril_gtest/ |
D | tel_ril_test.h | 138 …void ProcessTest(int32_t index, int32_t slotId, const std::shared_ptr<AppExecFwk::EventHandler> &h… 174 …void CallGetCurrentCallsStatusTest(int32_t slotId, const std::shared_ptr<AppExecFwk::EventHandler>… 175 …void SimGetSimStatusTest(int32_t slotId, const std::shared_ptr<AppExecFwk::EventHandler> &handler); 176 void SimIccIoTest(int32_t slotId, const std::shared_ptr<AppExecFwk::EventHandler> &handler); 177 void SimGetImsiTest(int32_t slotId, const std::shared_ptr<AppExecFwk::EventHandler> &handler); 178 …void GetSimLockStatusTest(int32_t slotId, const std::shared_ptr<AppExecFwk::EventHandler> &handler… 179 void SetSimLockTest(int32_t slotId, const std::shared_ptr<AppExecFwk::EventHandler> &handler); 180 void UnSetSimLockTest(int32_t slotId, const std::shared_ptr<AppExecFwk::EventHandler> &handler); 181 …void ChangeSimPasswordTest(int32_t slotId, const std::shared_ptr<AppExecFwk::EventHandler> &handle… 182 void EnterSimPinTest(int32_t slotId, const std::shared_ptr<AppExecFwk::EventHandler> &handler); [all …]
|