/base/telephony/cellular_data/frameworks/cj/src/ |
H A D | tel_cellular_data_impl.h | 29 static bool IsCellularDataRoamingEnabled(int32_t slotId, int32_t &errCode);
|
H A D | tel_cellular_data_ffi.cpp | 47 return CellularDataImpl::IsCellularDataRoamingEnabled(slotId, *errCode); in FfiCellularDataIsCellularDataRoamingEnabled()
|
H A D | tel_cellular_data_impl.cpp | 191 bool CellularDataImpl::IsCellularDataRoamingEnabled(int32_t slotId, int32_t &errCode) in IsCellularDataRoamingEnabled() function in OHOS::Telephony::CellularDataImpl 195 LOGE("CellularDataImpl::IsCellularDataRoamingEnabled slotId is invalid"); in IsCellularDataRoamingEnabled() 201 errCode = CellularDataClient::GetInstance().IsCellularDataRoamingEnabled(slotId, enabled); in IsCellularDataRoamingEnabled()
|
/base/telephony/cellular_data/frameworks/native/ |
H A D | cellular_data_service_proxy.h | 89 int32_t IsCellularDataRoamingEnabled(int32_t slotId, bool &dataRoamingEnabled);
|
H A D | cellular_data_client.cpp | 269 int32_t CellularDataClient::IsCellularDataRoamingEnabled(int32_t slotId, bool &dataRoamingEnabled) in IsCellularDataRoamingEnabled() function in OHOS::Telephony::CellularDataClient 276 return proxy->IsCellularDataRoamingEnabled(slotId, dataRoamingEnabled); in IsCellularDataRoamingEnabled()
|
H A D | cellular_data_service_proxy.cpp | 176 int32_t CellularDataServiceProxy::IsCellularDataRoamingEnabled(int32_t slotId, bool &dataRoamingEnabled) in IsCellularDataRoamingEnabled() function in OHOS::Telephony::CellularDataServiceProxy
|
/base/telephony/cellular_data/interfaces/innerkits/ |
H A D | i_cellular_data_manager.h | 69 virtual int32_t IsCellularDataRoamingEnabled(int32_t slotId, bool &dataRoamingEnabled) = 0;
|
H A D | cellular_data_client.h | 100 int32_t IsCellularDataRoamingEnabled(int32_t slotId, bool &dataRoamingEnabled);
|
/base/telephony/cellular_data/services/include/ |
H A D | cellular_data_controller.h | 41 int32_t IsCellularDataRoamingEnabled(bool &dataRoamingEnabled) const;
|
H A D | cellular_data_service.h | 59 int32_t IsCellularDataRoamingEnabled(const int32_t slotId, bool &dataRoamingEnabled) override;
|
H A D | cellular_data_handler.h | 56 int32_t IsCellularDataRoamingEnabled(bool &dataRoamingEnabled) const;
|
/base/telephony/cellular_data/test/fuzztest/getcellulardatastate_fuzzer/ |
H A D | getcellulardatastate_fuzzer.cpp | 100 void IsCellularDataRoamingEnabled(const uint8_t *data, size_t size) in IsCellularDataRoamingEnabled() function 235 IsCellularDataRoamingEnabled(data, size); in DoSomethingInterestingWithMyAPI()
|
/base/telephony/cellular_data/test/ |
H A D | cellular_data_client_test.cpp | 85 CellularDataClient::GetInstance().IsCellularDataRoamingEnabled(0, dataRoamingEnabled); in HWTEST_F()
|
H A D | zero_branch_test.cpp | 167 cellularDataHandler.IsCellularDataRoamingEnabled(dataRoamingEnabled); in HWTEST_F() 320 controller.cellularDataHandler_->IsCellularDataRoamingEnabled(dataRoamingEnabled); in HWTEST_F() 672 ASSERT_NE(TELEPHONY_ERR_SUCCESS, service.IsCellularDataRoamingEnabled(INVALID_SLOTID, dataRoamingEnabled)); in HWTEST_F() 674 ASSERT_NE(TELEPHONY_ERR_SUCCESS, service.IsCellularDataRoamingEnabled(DEFAULT_SIM_SLOT_ID, dataRoamingEnabled)); in HWTEST_F() 724 ASSERT_NE(TELEPHONY_ERR_SUCCESS, service.IsCellularDataRoamingEnabled(INVALID_SLOTID, dataRoamingEnabled)); in HWTEST_F() 768 ASSERT_NE(TELEPHONY_ERR_SUCCESS, service.IsCellularDataRoamingEnabled(DEFAULT_SIM_SLOT_ID, dataRoamingEnabled)); in HWTEST_F() 771 ASSERT_NE(TELEPHONY_ERR_SUCCESS, service.IsCellularDataRoamingEnabled(INVALID_SLOTID, dataRoamingEnabled)); in HWTEST_F() 900 controller.IsCellularDataRoamingEnabled(dataRoamingEnabled); in HWTEST_F() 955 controller.IsCellularDataRoamingEnabled(dataRoamingEnabled); in HWTEST_F()
|
H A D | cellular_data_service_test.cpp | 71 ASSERT_NE(TELEPHONY_ERR_SUCCESS, service->IsCellularDataRoamingEnabled(DEFAULT_SIM_SLOT_ID, dataRoamingEnabled)); in HWTEST_F()
|
H A D | cellular_data_handler_branch_test.cpp | 148 cellularDataHandler->IsCellularDataRoamingEnabled(result); in HWTEST_F() 152 cellularDataHandler->IsCellularDataRoamingEnabled(result); in HWTEST_F()
|
H A D | cellular_data_test.cpp | 270 return CellularDataClient::GetInstance().IsCellularDataRoamingEnabled(slotId, dataRoamingEnabled); in IsCellularDataRoamingEnabledTest()
|
/base/telephony/cellular_data/services/src/ |
H A D | cellular_data_dump_helper.cpp | 100 dataService.IsCellularDataRoamingEnabled(i, dataRoamingEnabled); in ShowCellularDataInfo()
|
H A D | cellular_data_controller.cpp | 138 int32_t CellularDataController::IsCellularDataRoamingEnabled(bool &dataRoamingEnabled) const in IsCellularDataRoamingEnabled() function in OHOS::Telephony::CellularDataController 144 return cellularDataHandler_->IsCellularDataRoamingEnabled(dataRoamingEnabled); in IsCellularDataRoamingEnabled()
|
H A D | cellular_data_service.cpp | 244 int32_t CellularDataService::IsCellularDataRoamingEnabled(const int32_t slotId, bool &dataRoamingEnabled) in IsCellularDataRoamingEnabled() function in OHOS::Telephony::CellularDataService 254 return cellularDataController->IsCellularDataRoamingEnabled(dataRoamingEnabled); in IsCellularDataRoamingEnabled()
|
H A D | cellular_data_handler.cpp | 195 int32_t CellularDataHandler::IsCellularDataRoamingEnabled(bool &dataRoamingEnabled) const in IsCellularDataRoamingEnabled() function in OHOS::Telephony::CellularDataHandler 285 int32_t result = IsCellularDataRoamingEnabled(isRoaming); in ClearConnectionsOnUpdateApns() 404 int32_t res = IsCellularDataRoamingEnabled(dataRoamingEnabled); in RoamingStateOn() 424 int32_t res = IsCellularDataRoamingEnabled(dataRoamingEnabled); in RoamingStateOff() 2330 int32_t result = IsCellularDataRoamingEnabled(isRoaming); in CheckForCompatibleDataConnection()
|
H A D | cellular_data_service_stub.cpp | 153 int32_t result = IsCellularDataRoamingEnabled(slotId, dataRoamingEnabled); in OnIsCellularDataRoamingEnabled()
|
/base/telephony/cellular_data/frameworks/js/napi/src/ |
H A D | napi_cellular_data.cpp | 553 asyncContext->errorCode = dataManager.IsCellularDataRoamingEnabled(asyncContext->slotId, enabled); in NativeIsCellularDataRoamingEnabled() 585 static napi_value IsCellularDataRoamingEnabled(napi_env env, napi_callback_info info) in IsCellularDataRoamingEnabled() function 594 TELEPHONY_LOGE("IsCellularDataRoamingEnabled MatchEnableCellularDataRoamingParameters failed."); in IsCellularDataRoamingEnabled() 600 TELEPHONY_LOGE("IsCellularDataRoamingEnabled asyncContext is nullptr."); in IsCellularDataRoamingEnabled() 608 return NapiUtil::HandleAsyncWork(env, asyncContext.release(), "IsCellularDataRoamingEnabled", in IsCellularDataRoamingEnabled() 629 auto errorCode = dataManager.IsCellularDataRoamingEnabled(slotId, dataRoamingEnabled); in IsCellularDataRoamingEnabledSync() 1007 DECLARE_NAPI_FUNCTION("isCellularDataRoamingEnabled", IsCellularDataRoamingEnabled), in RegistCellularData()
|
/base/telephony/cellular_data/test/unit_test/ |
H A D | cellular_data_code_test.cpp | 256 int32_t result = CellularDataClient::GetInstance().IsCellularDataRoamingEnabled(slotId, isDataRoaming); in IsCellularDataRoamingEnabledTest() 257 std::cout << "Remote IsCellularDataRoamingEnabled result [" << result << "]" in IsCellularDataRoamingEnabledTest()
|