Home
last modified time | relevance | path

Searched refs:listener_ (Results 1 – 3 of 3) sorted by relevance

/ark/js_runtime/ecmascript/tooling/interface/
Dnotification_manager.h50 listener_ = listener; in AddListener()
54 listener_ = nullptr; in RemoveListener()
59 if (UNLIKELY(listener_ != nullptr)) { in LoadModuleEvent()
60 listener_->LoadModule(name); in LoadModuleEvent()
66 if (UNLIKELY(listener_ != nullptr)) { in BytecodePcChangedEvent()
67 listener_->BytecodePcChanged(thread, method, bcOffset); in BytecodePcChangedEvent()
73 if (UNLIKELY(listener_ != nullptr)) { in PendingJobEntryEvent()
74 listener_->PendingJobEntry(); in PendingJobEntryEvent()
80 if (UNLIKELY(listener_ != nullptr)) { in VmStartEvent()
81 listener_->VmStart(); in VmStartEvent()
[all …]
/ark/runtime_core/runtime/dprofiler/
Ddprofiler.cpp70 listener_(MakePandaUnique<DProfilerListener>(this)) in DProfiler()
72 …runtime_->GetNotificationManager()->AddListener(listener_.get(), RuntimeNotificationManager::Event… in DProfiler()
Ddprofiler.h58 PandaUniquePtr<RuntimeListener> listener_; variable