Home
last modified time | relevance | path

Searched refs:observerCallBack (Results 1 – 14 of 14) sorted by relevance

/base/telephony/core_service/test/unittest/tel_ril_gtest/
Dzero_branch_test_tel_ril.cpp76 std::shared_ptr<AppExecFwk::EventHandler> observerCallBack = nullptr; variable
78 …telRilManager->RegisterCoreNotify(SLOT_ID, observerCallBack, RadioEvent::RADIO_ICC_STATUS_CHANGED,…
81 …EXPECT_EQ(telRilManager->RegisterCoreNotify(SLOT_ID, observerCallBack, RadioEvent::RADIO_OFF, null…
84 …telRilManager->UnRegisterCoreNotify(SLOT_ID, observerCallBack, RadioEvent::RADIO_OFF), TELEPHONY_E…
/base/telephony/core_service/services/sim/include/
Dsim_state_manager.h51 void UnRegisterCoreNotify(const HANDLE &observerCallBack, int what);
Dsim_state_handle.h130 …void UnRegisterCoreNotify(const std::shared_ptr<AppExecFwk::EventHandler> &observerCallBack, int w…
Dsim_file_manager.h74 …void UnRegisterCoreNotify(const std::shared_ptr<AppExecFwk::EventHandler> &observerCallBack, int w…
Dicc_file.h76 … UnRegisterCoreNotify(const std::shared_ptr<AppExecFwk::EventHandler> &observerCallBack, int what);
Dsim_manager.h135 void UnRegisterCoreNotify(int32_t slotId, const HANDLE &observerCallBack, int what) override;
/base/telephony/core_service/services/tel_ril/src/
Dtel_ril_manager.cpp206 …int32_t slotId, const std::shared_ptr<AppExecFwk::EventHandler> &observerCallBack, int32_t what, i… in RegisterCoreNotify() argument
213 observerHandler->RegObserver(what, observerCallBack); in RegisterCoreNotify()
217 observerHandler->RegObserver(what, observerCallBack); in RegisterCoreNotify()
229 observerHandler->RegObserver(what, observerCallBack); in RegisterCoreNotify()
237 int32_t slotId, const std::shared_ptr<AppExecFwk::EventHandler> &observerCallBack, int32_t what) in UnRegisterCoreNotify() argument
242 observerHandler->Remove(what, observerCallBack); in UnRegisterCoreNotify()
/base/telephony/core_service/services/sim/src/
Dsim_manager.cpp1040 int32_t slotId, const std::shared_ptr<AppExecFwk::EventHandler> &observerCallBack, int what) in UnRegisterCoreNotify() argument
1047 simFileManager_[slotId]->UnRegisterCoreNotify(observerCallBack, what); in UnRegisterCoreNotify()
1053 simStateManager_[slotId]->UnRegisterCoreNotify(observerCallBack, what); in UnRegisterCoreNotify()
/base/telephony/core_service/interfaces/innerkits/include/
Di_sim_manager.h130 virtual void UnRegisterCoreNotify(int32_t slotId, const HANDLE &observerCallBack, int what) = 0;
Di_tel_ril_manager.h36 …int32_t slotId, const std::shared_ptr<AppExecFwk::EventHandler> &observerCallBack, int32_t what) =…
Dcore_manager_inner.h42 … int32_t slotId, const std::shared_ptr<AppExecFwk::EventHandler> &observerCallBack, int what);
/base/telephony/core_service/test/unittest/core_service_gtest/
Dzero_branch_test_sim_ril.cpp556 std::shared_ptr<AppExecFwk::EventHandler> observerCallBack = nullptr; variable
559 telRilManager->RegisterCoreNotify(slot_0, observerCallBack, what, obj);
560 telRilManager->UnRegisterCoreNotify(slot_0, observerCallBack, what);
/base/telephony/core_service/frameworks/native/src/
Dcore_manager_inner.cpp102 int32_t slotId, const std::shared_ptr<AppExecFwk::EventHandler> &observerCallBack, int what) in UnRegisterCoreNotify() argument
109 networkSearchManager_->UnRegisterCoreNotify(slotId, observerCallBack, what); in UnRegisterCoreNotify()
115 simManager_->UnRegisterCoreNotify(slotId, observerCallBack, what); in UnRegisterCoreNotify()
121 return telRilManager_->UnRegisterCoreNotify(slotId, observerCallBack, what); in UnRegisterCoreNotify()
/base/telephony/core_service/services/tel_ril/include/
Dtel_ril_manager.h45 …int32_t slotId, const std::shared_ptr<AppExecFwk::EventHandler> &observerCallBack, int32_t what) o…