Searched refs:cellularDataHandler (Results 1 – 11 of 11) sorted by relevance
| /base/telephony/cellular_data/test/ |
| D | zero_branch_test.cpp | 150 CellularDataHandler cellularDataHandler { subscriberInfo, 0 }; variable 152 ASSERT_FALSE(cellularDataHandler.ReleaseNet(request)); 153 ASSERT_FALSE(cellularDataHandler.RequestNet(request)); 156 cellularDataHandler.ProcessEvent(event); 158 cellularDataHandler.OnReceiveEvent(data); 159 ASSERT_NE(cellularDataHandler.SetCellularDataEnable(true), TELEPHONY_ERR_SUCCESS); 161 cellularDataHandler.IsCellularDataEnabled(dataEnaled); 164 cellularDataHandler.IsCellularDataRoamingEnabled(dataRoamingEnabled); 166 ASSERT_NE(cellularDataHandler.SetCellularDataRoamingEnabled(true), TELEPHONY_ERR_SUCCESS); 167 ASSERT_EQ(ApnProfileState::PROFILE_STATE_IDLE, cellularDataHandler.GetCellularDataState()); [all …]
|
| /base/telephony/cellular_data/services/src/ |
| D | cellular_data_rdb_observer.cpp | 26 …lularDataRdbObserver::CellularDataRdbObserver(std::weak_ptr<TelEventHandler> &&cellularDataHandler) in CellularDataRdbObserver() argument 27 : cellularDataHandler_(std::move(cellularDataHandler)) in CellularDataRdbObserver() 35 auto cellularDataHandler = cellularDataHandler_.lock(); in OnChange() local 36 if (cellularDataHandler == nullptr) { in OnChange() 41 cellularDataHandler->SendEvent(event); in OnChange()
|
| D | cellular_data_incall_observer.cpp | 26 …ataIncallObserver::CellularDataIncallObserver(std::weak_ptr<TelEventHandler> &&cellularDataHandler) in CellularDataIncallObserver() argument 27 : cellularDataHandler_(std::move(cellularDataHandler)) in CellularDataIncallObserver() 45 auto cellularDataHandler = cellularDataHandler_.lock(); in OnChange() local 46 if (cellularDataHandler != nullptr) { in OnChange() 47 … cellularDataHandler->SendEvent(CellularDataEventCode::MSG_DB_SETTING_INCALL_CHANGED, value, 0); in OnChange()
|
| D | cellular_data_setting_observer.cpp | 26 …aSettingObserver::CellularDataSettingObserver(std::weak_ptr<TelEventHandler> &&cellularDataHandler) in CellularDataSettingObserver() argument 27 : cellularDataHandler_(std::move(cellularDataHandler)) in CellularDataSettingObserver() 45 auto cellularDataHandler = cellularDataHandler_.lock(); in OnChange() local 46 if (cellularDataHandler != nullptr) { in OnChange() 47 … cellularDataHandler->SendEvent(CellularDataEventCode::MSG_DB_SETTING_ENABLE_CHANGED, value, 0); in OnChange()
|
| D | cellular_data_roaming_observer.cpp | 27 std::weak_ptr<TelEventHandler> &&cellularDataHandler, int32_t slotId) in CellularDataRoamingObserver() argument 28 : cellularDataHandler_(std::move(cellularDataHandler)), slotId_(slotId) in CellularDataRoamingObserver() 52 auto cellularDataHandler = cellularDataHandler_.lock(); in OnChange() local 53 if (cellularDataHandler != nullptr) { in OnChange() 54 … cellularDataHandler->SendEvent(CellularDataEventCode::MSG_DB_SETTING_ROAMING_CHANGED, value, 0); in OnChange()
|
| /base/telephony/cellular_data/services/include/ |
| D | cellular_data_incall_observer.h | 26 explicit CellularDataIncallObserver(std::weak_ptr<TelEventHandler> &&cellularDataHandler);
|
| D | cellular_data_rdb_observer.h | 26 explicit CellularDataRdbObserver(std::weak_ptr<TelEventHandler> &&cellularDataHandler);
|
| D | cellular_data_setting_observer.h | 26 explicit CellularDataSettingObserver(std::weak_ptr<TelEventHandler> &&cellularDataHandler);
|
| D | cellular_data_roaming_observer.h | 26 …explicit CellularDataRoamingObserver(std::weak_ptr<TelEventHandler> &&cellularDataHandler, int32_t…
|
| /base/telephony/cellular_data/services/include/state_machine/ |
| D | cellular_data_state_machine.h | 42 …ataConnectionManager> &cdConnectionManager, std::shared_ptr<TelEventHandler> &&cellularDataHandler) in CellularDataStateMachine() argument 44 cellularDataHandler_(std::move(cellularDataHandler)), cid_(0), capability_(0), in CellularDataStateMachine()
|
| D | incall_data_state_machine.h | 34 …int32_t slotId, std::weak_ptr<TelEventHandler> &&cellularDataHandler, sptr<ApnManager> &apnManager) in IncallDataStateMachine() argument 35 … : StateMachine("IncallDataStateMachine"), cellularDataHandler_(std::move(cellularDataHandler)), in IncallDataStateMachine()
|