Home
last modified time | relevance | path

Searched refs:IsCellularDataRoamingEnabled (Results 1 – 18 of 18) sorted by relevance

/base/telephony/cellular_data/frameworks/native/
Dcellular_data_service_proxy.h89 int32_t IsCellularDataRoamingEnabled(int32_t slotId, bool &dataRoamingEnabled);
Dcellular_data_client.cpp271 int32_t CellularDataClient::IsCellularDataRoamingEnabled(int32_t slotId, bool &dataRoamingEnabled) in IsCellularDataRoamingEnabled() function in OHOS::Telephony::CellularDataClient
278 return proxy->IsCellularDataRoamingEnabled(slotId, dataRoamingEnabled); in IsCellularDataRoamingEnabled()
Dcellular_data_service_proxy.cpp155 int32_t CellularDataServiceProxy::IsCellularDataRoamingEnabled(int32_t slotId, bool &dataRoamingEna… in IsCellularDataRoamingEnabled() function in OHOS::Telephony::CellularDataServiceProxy
/base/telephony/cellular_data/test/fuzztest/getcellulardatastate_fuzzer/
Dgetcellulardatastate_fuzzer.cpp100 void IsCellularDataRoamingEnabled(const uint8_t *data, size_t size) in IsCellularDataRoamingEnabled() function
211 IsCellularDataRoamingEnabled(data, size); in DoSomethingInterestingWithMyAPI()
/base/telephony/cellular_data/interfaces/innerkits/
Di_cellular_data_manager.h69 virtual int32_t IsCellularDataRoamingEnabled(int32_t slotId, bool &dataRoamingEnabled) = 0;
Dcellular_data_client.h92 int32_t IsCellularDataRoamingEnabled(int32_t slotId, bool &dataRoamingEnabled);
/base/telephony/cellular_data/services/include/
Dcellular_data_controller.h41 int32_t IsCellularDataRoamingEnabled(bool &dataRoamingEnabled) const;
Dcellular_data_service.h59 int32_t IsCellularDataRoamingEnabled(const int32_t slotId, bool &dataRoamingEnabled) override;
Dcellular_data_handler.h53 int32_t IsCellularDataRoamingEnabled(bool &dataRoamingEnabled) const;
/base/telephony/cellular_data/services/src/utils/
Dcellular_data_dump_helper.cpp100 dataService.IsCellularDataRoamingEnabled(i, dataRoamingEnabled); in ShowCellularDataInfo()
/base/telephony/cellular_data/services/src/
Dcellular_data_controller.cpp126 int32_t CellularDataController::IsCellularDataRoamingEnabled(bool &dataRoamingEnabled) const in IsCellularDataRoamingEnabled() function in OHOS::Telephony::CellularDataController
132 return cellularDataHandler_->IsCellularDataRoamingEnabled(dataRoamingEnabled); in IsCellularDataRoamingEnabled()
Dcellular_data_service.cpp214 int32_t CellularDataService::IsCellularDataRoamingEnabled(const int32_t slotId, bool &dataRoamingEn… in IsCellularDataRoamingEnabled() function in OHOS::Telephony::CellularDataService
223 return cellularDataControllers_[slotId]->IsCellularDataRoamingEnabled(dataRoamingEnabled); in IsCellularDataRoamingEnabled()
Dcellular_data_service_stub.cpp108 int32_t result = IsCellularDataRoamingEnabled(slotId, dataRoamingEnabled); in OnIsCellularDataRoamingEnabled()
Dcellular_data_handler.cpp175 int32_t CellularDataHandler::IsCellularDataRoamingEnabled(bool &dataRoamingEnabled) const in IsCellularDataRoamingEnabled() function in OHOS::Telephony::CellularDataHandler
/base/telephony/cellular_data/frameworks/js/napi/src/
Dnapi_cellular_data.cpp531 … asyncContext->errorCode = dataManager.IsCellularDataRoamingEnabled(asyncContext->slotId, enabled); in NativeIsCellularDataRoamingEnabled()
563 static napi_value IsCellularDataRoamingEnabled(napi_env env, napi_callback_info info) in IsCellularDataRoamingEnabled() function
940 DECLARE_NAPI_FUNCTION("isCellularDataRoamingEnabled", IsCellularDataRoamingEnabled), in RegistCellularData()
/base/telephony/cellular_data/test/
Dzero_branch_test.cpp164 cellularDataHandler.IsCellularDataRoamingEnabled(dataRoamingEnabled);
294 …ASSERT_NE(TELEPHONY_ERR_SUCCESS, service.IsCellularDataRoamingEnabled(INVALID_SLOTID, dataRoamingE…
337 controller.IsCellularDataRoamingEnabled(dataRoamingEnabled);
Dcellular_data_test.cpp335 … return CellularDataClient::GetInstance().IsCellularDataRoamingEnabled(slotId, dataRoamingEnabled); in IsCellularDataRoamingEnabledTest()
/base/telephony/cellular_data/test/unit_test/
Dcellular_data_code_test.cpp256 …int32_t result = CellularDataClient::GetInstance().IsCellularDataRoamingEnabled(slotId, isDataRoam… in IsCellularDataRoamingEnabledTest()