Home
last modified time | relevance | path

Searched refs:AppEventObserver (Results 1 – 10 of 10) sorted by relevance

/ohos5.0/base/hiviewdfx/hiappevent/frameworks/native/libhiappevent/observer/
H A Dapp_event_observer.cpp204 bool AppEventObserver::MeetProcessCondition() in MeetProcessCondition()
210 void AppEventObserver::ResetCurrCondition() in ResetCurrCondition()
237 void AppEventObserver::ProcessTimeout() in ProcessTimeout()
252 bool AppEventObserver::HasTimeoutCondition() in HasTimeoutCondition()
257 void AppEventObserver::ProcessStartup() in ProcessStartup()
271 void AppEventObserver::ProcessBackground() in ProcessBackground()
285 std::string AppEventObserver::GetName() in GetName()
290 int64_t AppEventObserver::GetSeq() in GetSeq()
300 void AppEventObserver::SetSeq(int64_t seq) in SetSeq()
333 int64_t AppEventObserver::GenerateHashCode() in GenerateHashCode()
[all …]
H A Dapp_event_watcher.cpp19 AppEventWatcher::AppEventWatcher(const std::string& name) : AppEventObserver(name) {}; in AppEventWatcher()
25 : AppEventObserver(name) in AppEventWatcher()
H A Dapp_event_observer_mgr.cpp54 std::shared_ptr<AppEventObserver> observer) in StoreEventMappingToDb()
67 std::shared_ptr<AppEventObserver> observer) in SendEventsToObserver()
85 int64_t InitObserverFromDb(std::shared_ptr<AppEventObserver> observer, in InitObserverFromDb()
116 int64_t InitObserver(std::shared_ptr<AppEventObserver> observer, bool& isExist) in InitObserver()
203 int64_t AppEventObserverMgr::RegisterObserver(std::shared_ptr<AppEventObserver> observer) in RegisterObserver()
381 bool AppEventObserverMgr::InitObserverFromListener(std::shared_ptr<AppEventObserver> observer, bool… in InitObserverFromListener()
H A Dapp_event_processor_proxy.cpp121 return AppEventObserver::VerifyEvent(event) in VerifyEvent()
/ohos5.0/base/hiviewdfx/hiappevent/frameworks/native/libhiappevent/observer/include/
H A Dapp_event_observer_mgr.h35 using HiAppEvent::AppEventObserver;
47 int64_t RegisterObserver(std::shared_ptr<AppEventObserver> observer);
68 bool InitObserverFromListener(std::shared_ptr<AppEventObserver> observer, bool sendFlag);
73 std::unordered_map<int64_t, std::shared_ptr<AppEventObserver>> observers_;
H A Dapp_event_observer.h51 class AppEventObserver {
53 AppEventObserver(const std::string& name) : name_(name) {} in AppEventObserver() function
54 virtual ~AppEventObserver() = default;
H A Dapp_event_watcher.h22 using HiAppEvent::AppEventObserver;
26 class AppEventWatcher : public AppEventObserver {
H A Dapp_event_processor_proxy.h26 class AppEventProcessorProxy : public AppEventObserver, public std::enable_shared_from_this<AppEven…
29 … : AppEventObserver(name), processor_(processor), userIdVersion_(-1), userPropertyVersion_(-1) {} in AppEventProcessorProxy()
/ohos5.0/base/hiviewdfx/hiappevent/frameworks/native/libhiappevent/load/include/
H A Dmodule_loader.h35 std::shared_ptr<AppEventObserver> CreateProcessorProxy(const std::string& name);
/ohos5.0/base/hiviewdfx/hiappevent/frameworks/native/libhiappevent/load/
H A Dmodule_loader.cpp127 std::shared_ptr<AppEventObserver> ModuleLoader::CreateProcessorProxy(const std::string& name) in CreateProcessorProxy()