Home
last modified time | relevance | path

Searched refs:EventDispatchQueue (Results 1 – 6 of 6) sorted by relevance

/ohos5.0/base/hiviewdfx/hiview/base/
H A Devent_dispatch_queue.cpp25 EventDispatchQueue::EventDispatchQueue(const std::string& name, Event::ManageType type, HiviewConte… in EventDispatchQueue() function in OHOS::HiviewDFX::EventDispatchQueue
29 EventDispatchQueue::~EventDispatchQueue() in ~EventDispatchQueue()
34 void EventDispatchQueue::ProcessUnorderedEvent(const Event& event) in ProcessUnorderedEvent()
51 void EventDispatchQueue::Stop() in Stop()
58 void EventDispatchQueue::Start() in Start()
67 void EventDispatchQueue::Enqueue(std::shared_ptr<Event> event) in Enqueue()
H A Dlibhiviewbase.map4 "OHOS::HiviewDFX::EventDispatchQueue::Stop()";
7 "OHOS::HiviewDFX::EventDispatchQueue::~EventDispatchQueue()";
10 …"OHOS::HiviewDFX::EventDispatchQueue::EventDispatchQueue(std::__h::basic_string<char, std::__h::ch…
11 "OHOS::HiviewDFX::EventDispatchQueue::Start()";
24 … "OHOS::HiviewDFX::EventDispatchQueue::Enqueue(std::__h::shared_ptr<OHOS::HiviewDFX::Event>)";
/ohos5.0/base/hiviewdfx/hiview/base/include/
H A Devent_dispatch_queue.h26 class EventDispatchQueue : public std::enable_shared_from_this<EventDispatchQueue> {
28 EventDispatchQueue(const std::string& name, Event::ManageType type, HiviewContext* context_);
29 ~EventDispatchQueue();
/ohos5.0/base/hiviewdfx/hiview/core/test/unittest/common/
H A Devent_dispatch_queue_test.cpp75 …auto unorderQueue = std::make_shared<EventDispatchQueue>(TEST_QUEUE_NAME, Event::ManageType::UNORD…
98 …auto unorderQueue = std::make_shared<EventDispatchQueue>(TEST_QUEUE_NAME, Event::ManageType::UNORD…
/ohos5.0/base/hiviewdfx/hiview/core/include/
H A Dhiview_platform.h191 std::shared_ptr<EventDispatchQueue> unorderQueue_;
/ohos5.0/base/hiviewdfx/hiview/core/
H A Dhiview_platform.cpp611 …unorderQueue_ = std::make_shared<EventDispatchQueue>("plat_unorder", Event::ManageType::UNORDERED,… in StartPlatformDispatchQueue()