Home
last modified time | relevance | path

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

/developtools/profiler/device/plugins/native_daemon/test/unittest/common/native/
Dhook_service_test.cpp48 auto eventNotifier = EventNotifier::Create(0, EventNotifier::NONBLOCK); variable
49 ASSERT_TRUE(eventNotifier != nullptr);
51 int eventFd = eventNotifier->GetFd();
/developtools/profiler/device/services/plugin_service/src/
Dplugin_service.cpp135 pluginCtx->eventNotifier = notifier; in CreatePluginSession()
245 if (pluginCtx->eventNotifier) { in DestroyPluginSession()
246 eventPoller_->RemoveFileDescriptor(pluginCtx->eventNotifier->GetFd()); in DestroyPluginSession()
247 pluginCtx->eventNotifier = nullptr; in DestroyPluginSession()
281 if (pluginCtx->eventNotifier) { in RemovePluginSessionCtx()
282 eventPoller_->RemoveFileDescriptor(pluginCtx->eventNotifier->GetFd()); in RemovePluginSessionCtx()
283 pluginCtx->eventNotifier = nullptr; in RemovePluginSessionCtx()
412 if (context.eventNotifier) { in ReadShareMemoryOffline()
413 context.eventNotifier->Take(); in ReadShareMemoryOffline()
451 if (context.eventNotifier) { in ReadShareMemoryOnline()
[all …]
/developtools/profiler/device/services/profiler_service/test/unittest/
Dplugin_service_stubs.cpp190 if (pluginCtx->eventNotifier) { in DestroyPluginSession()
191 eventPoller_->RemoveFileDescriptor(pluginCtx->eventNotifier->GetFd()); in DestroyPluginSession()
192 pluginCtx->eventNotifier = nullptr; in DestroyPluginSession()
/developtools/profiler/device/plugins/native_daemon/include/
Dhook_manager.h53 …std::shared_ptr<ShareMemoryBlock>& shareMemoryBlock, std::shared_ptr<EventNotifier>& eventNotifier,
/developtools/profiler/device/services/plugin_service/include/
Dplugin_service.h70 EventNotifierPtr eventNotifier; member
/developtools/profiler/device/plugins/native_daemon/src/
Dhook_manager.cpp97 std::shared_ptr<EventNotifier>& eventNotifier, in HookManager() argument
99 eventNotifier_(eventNotifier), in HookManager()