/developtools/profiler/device/base/src/ |
H A D | event_notifier.cpp | 29 EventNotifierPtr EventNotifier::Create(unsigned int initValue, unsigned int mask) in Create() 31 return std::make_shared<EventNotifier>(initValue, mask); in Create() 34 EventNotifierPtr EventNotifier::CreateWithFd(int fd) in CreateWithFd() 36 return std::make_shared<EventNotifier>(fd); in CreateWithFd() 39 EventNotifier::EventNotifier(unsigned int initValue, unsigned int mask) : fd_(-1), flags_(O_CLOEXEC) in EventNotifier() function in EventNotifier 49 PROFILER_LOG_DEBUG(LOG_CORE, "EventNotifier create eventfd %d done!", fd_); in EventNotifier() 52 EventNotifier::EventNotifier(int fd) : fd_(fd), flags_(0) in EventNotifier() function in EventNotifier 56 PROFILER_LOG_DEBUG(LOG_CORE, "EventNotifier bin in EventNotifier() [all...] |
/developtools/profiler/device/base/include/ |
H A D | event_notifier.h | 22 class EventNotifier; 24 using EventNotifierPtr = std::shared_ptr<EventNotifier>; 26 class EventNotifier { class 41 EventNotifier(unsigned int initValue, unsigned int mask); 42 EventNotifier(int fd); 43 ~EventNotifier(); 49 DISALLOW_COPY_AND_MOVE(EventNotifier);
|
/developtools/profiler/device/base/test/unittest/ |
H A D | epoll_event_poller_test.cpp | 188 auto notifier = EventNotifier::Create(0, EventNotifier::NONBLOCK); in HWTEST_F() 201 auto evNotifier = EventNotifier::CreateWithFd(evFd); in HWTEST_F()
|
/developtools/profiler/device/plugins/native_hook/src/ |
H A D | stack_writer.cpp | 32 eventNotifier_ = EventNotifier::CreateWithFd(eventFd); in StackWriter()
|
/developtools/profiler/device/plugins/ffrt_profiler/client/src/ |
H A D | ffrt_profiler_write.cpp | 38 eventNotifier_ = EventNotifier::CreateWithFd(eventFd); in FfrtProfilerWriter()
|
/developtools/profiler/device/plugins/ffrt_profiler/service/include/ |
H A D | ffrt_profiler_manager.h | 46 std::shared_ptr<EventNotifier> eventNotifier = nullptr;
|
/developtools/profiler/device/plugins/network_profiler/service/include/ |
H A D | network_profiler_manager.h | 46 std::shared_ptr<EventNotifier> eventNotifier = nullptr;
|
/developtools/profiler/device/plugins/network_profiler/client/src/ |
H A D | network_profiler_write.cpp | 38 eventNotifier_ = EventNotifier::CreateWithFd(eventFd); in NetworkProfilerWriter()
|
/developtools/profiler/device/plugins/native_daemon/include/ |
H A D | hook_manager.h | 67 std::shared_ptr<EventNotifier> eventNotifier = nullptr;
|
H A D | stack_preprocess.h | 78 void TakeResultsFromShmem(const std::shared_ptr<EventNotifier>&, const std::shared_ptr<ShareMemoryBlock>&);
|
/developtools/profiler/device/plugins/api/src/ |
H A D | buffer_writer.cpp | 43 eventNotifier_ = EventNotifier::CreateWithFd(eventFd); in BufferWriter()
|
/developtools/profiler/device/plugins/ffrt_profiler/service/src/ |
H A D | ffrt_profiler_manager.cpp | 225 ctx->eventNotifier = EventNotifier::Create(0, EventNotifier::NONBLOCK); in HandleFfrtProfilerContext() 226 CHECK_NOTNULL(ctx->eventNotifier, false, "create EventNotifier for %s failed!", ctx->smbName.c_str()); in HandleFfrtProfilerContext()
|
/developtools/profiler/device/plugins/network_profiler/service/src/ |
H A D | network_profiler_manager.cpp | 234 ctx->eventNotifier = EventNotifier::Create(0, EventNotifier::NONBLOCK); in HandleNetworkProfilerContext() 235 CHECK_NOTNULL(ctx->eventNotifier, false, "create EventNotifier for %s failed!", ctx->smbName.c_str()); in HandleNetworkProfilerContext()
|
/developtools/profiler/device/services/plugin_service/src/ |
H A D | plugin_service.cpp | 150 auto notifier = EventNotifier::Create(0, EventNotifier::NONBLOCK); in CreatePluginSession() 151 CHECK_NOTNULL(notifier, false, "create EventNotifier for %s failed!", pluginName.c_str()); in CreatePluginSession()
|
/developtools/profiler/device/plugins/native_daemon/src/ |
H A D | hook_manager.cpp | 264 ctx->eventNotifier = EventNotifier::Create(0, EventNotifier::NONBLOCK); in HandleHookContext() 265 CHECK_NOTNULL(ctx->eventNotifier, false, "create EventNotifier for %s failed!", ctx->smbName.c_str()); in HandleHookContext()
|
H A D | stack_preprocess.cpp | 264 void StackPreprocess::TakeResultsFromShmem(const std::shared_ptr<EventNotifier>& eventNotifier, in TakeResultsFromShmem()
|