/base/telephony/cellular_data/services/src/ |
D | data_switch_settings.cpp | 30 bool dataEnabled = false; in LoadSwitchValue() local 32 IsUserDataOn(dataEnabled); in LoadSwitchValue() 66 int32_t DataSwitchSettings::IsUserDataOn(bool &dataEnabled) in IsUserDataOn() argument 81 dataEnabled = userDataOn_; in IsUserDataOn()
|
D | cellular_data_service_stub.cpp | 56 bool dataEnabled = false; in OnIsCellularDataEnabled() local 57 int32_t result = IsCellularDataEnabled(dataEnabled); in OnIsCellularDataEnabled() 65 if (!reply.WriteBool(dataEnabled)) { in OnIsCellularDataEnabled()
|
D | cellular_data_handler.cpp | 130 bool dataEnabled = false; in SetCellularDataEnable() local 131 int32_t result = dataSwitchSettings_->IsUserDataOn(dataEnabled); in SetCellularDataEnable() 135 if (dataEnabled == userDataOn) { in SetCellularDataEnable() 142 int32_t CellularDataHandler::IsCellularDataEnabled(bool &dataEnabled) const in IsCellularDataEnabled() 148 return dataSwitchSettings_->IsUserDataOn(dataEnabled); in IsCellularDataEnabled() 219 bool dataEnabled = false; in ClearAllConnections() local 220 dataSwitchSettings_->IsUserDataOn(dataEnabled); in ClearAllConnections() 221 if (!dataEnabled) { in ClearAllConnections() 1068 bool dataEnabled = false; in PsDataRatChanged() local 1069 IsCellularDataEnabled(dataEnabled); in PsDataRatChanged() [all …]
|
D | cellular_data_controller.cpp | 91 int32_t CellularDataController::IsCellularDataEnabled(bool &dataEnabled) const in IsCellularDataEnabled() 97 return cellularDataHandler_->IsCellularDataEnabled(dataEnabled); in IsCellularDataEnabled()
|
D | cellular_data_service.cpp | 127 int32_t CellularDataService::IsCellularDataEnabled(bool &dataEnabled) in IsCellularDataEnabled() argument 136 return cellularDataControllers_[DEFAULT_SIM_SLOT_ID]->IsCellularDataEnabled(dataEnabled); in IsCellularDataEnabled()
|
/base/telephony/cellular_data/services/src/utils/ |
D | cellular_data_dump_helper.cpp | 105 bool dataEnabled = false; in ShowCellularDataInfo() local 107 dataService.IsCellularDataEnabled(dataEnabled); in ShowCellularDataInfo() 108 result.append(GetBoolValue(dataEnabled)); in ShowCellularDataInfo()
|
/base/telephony/cellular_data/test/ |
D | cellular_data_test.cpp | 140 static int32_t IsCellularDataEnabledTest(bool &dataEnabled); 249 int32_t CellularDataTest::IsCellularDataEnabledTest(bool &dataEnabled) in IsCellularDataEnabledTest() argument 251 return CellularDataClient::GetInstance().IsCellularDataEnabled(dataEnabled); in IsCellularDataEnabledTest() 309 bool dataEnabled = false; variable 310 CellularDataTest::IsCellularDataEnabledTest(dataEnabled); 311 ASSERT_TRUE(dataEnabled >= static_cast<int32_t>(DataSwitchCode::CELLULAR_DATA_DISABLED)); 597 bool dataEnabled = false; variable 598 CellularDataTest::IsCellularDataEnabledTest(dataEnabled); 599 if (dataEnabled) { 632 bool dataEnabled = false; variable [all …]
|
D | zero_branch_test.cpp | 212 bool dataEnabled = false; variable 214 ASSERT_NE(TELEPHONY_ERR_SUCCESS, service.IsCellularDataEnabled(dataEnabled)); 254 bool dataEnabled = false; variable 255 controller.IsCellularDataEnabled(dataEnabled); 256 ASSERT_FALSE(dataEnabled);
|
/base/telephony/cellular_data/services/include/ |
D | data_switch_settings.h | 35 int32_t IsUserDataOn(bool &dataEnabled);
|
D | cellular_data_controller.h | 36 int32_t IsCellularDataEnabled(bool &dataEnabled) const;
|
D | cellular_data_service.h | 55 int32_t IsCellularDataEnabled(bool &dataEnabled) override;
|
D | cellular_data_handler.h | 49 int32_t IsCellularDataEnabled(bool &dataEnabled) const;
|
/base/telephony/cellular_data/interfaces/innerkits/ |
D | i_cellular_data_manager.h | 31 virtual int32_t IsCellularDataEnabled(bool &dataEnabled) = 0;
|
D | cellular_data_client.h | 54 int32_t IsCellularDataEnabled(bool &dataEnabled);
|
/base/telephony/cellular_data/frameworks/native/ |
D | cellular_data_service_proxy.h | 42 virtual int32_t IsCellularDataEnabled(bool &dataEnabled);
|
D | cellular_data_client.cpp | 218 int32_t CellularDataClient::IsCellularDataEnabled(bool &dataEnabled) in IsCellularDataEnabled() argument 225 return proxy->IsCellularDataEnabled(dataEnabled); in IsCellularDataEnabled()
|
D | cellular_data_service_proxy.cpp | 26 int32_t CellularDataServiceProxy::IsCellularDataEnabled(bool &dataEnabled) in IsCellularDataEnabled() argument 44 dataEnabled = reply.ReadBool(); in IsCellularDataEnabled()
|