Searched refs:CleanupQueue (Results 1 – 8 of 8) sorted by relevance
| /third_party/node/src/ |
| D | cleanup_queue-inl.h | 13 inline void CleanupQueue::MemoryInfo(MemoryTracker* tracker) const { in MemoryInfo() 19 inline size_t CleanupQueue::SelfSize() const { in SelfSize() 20 return sizeof(CleanupQueue) + in SelfSize() 24 bool CleanupQueue::empty() const { in empty() 28 void CleanupQueue::Add(Callback cb, void* arg) { in Add() 35 void CleanupQueue::Remove(Callback cb, void* arg) { in Remove() 41 void CleanupQueue::ForEachBaseObject(T&& iterator) const { in ForEachBaseObject() 50 BaseObject* CleanupQueue::GetBaseObject( in GetBaseObject()
|
| D | cleanup_queue.h | 17 class CleanupQueue : public MemoryRetainer { 21 CleanupQueue() {} in CleanupQueue() function 24 CleanupQueue(const CleanupQueue&) = delete; 26 SET_MEMORY_INFO_NAME(CleanupQueue) 61 friend class CleanupQueue;
|
| D | cleanup_queue.cc | 8 std::vector<CleanupQueue::CleanupHookCallback> CleanupQueue::GetOrdered() in GetOrdered() 27 void CleanupQueue::Drain() { in Drain() 42 size_t CleanupQueue::CleanupHookCallback::Hash::operator()( in operator ()() 47 bool CleanupQueue::CleanupHookCallback::Equal::operator()( in operator ()()
|
| D | node_realm.h | 76 inline void AddCleanupHook(CleanupQueue::Callback cb, void* arg); 77 inline void RemoveCleanupHook(CleanupQueue::Callback cb, void* arg); 139 CleanupQueue cleanup_queue_;
|
| D | node_realm-inl.h | 124 void Realm::AddCleanupHook(CleanupQueue::Callback fn, void* arg) { in AddCleanupHook() 128 void Realm::RemoveCleanupHook(CleanupQueue::Callback fn, void* arg) { in RemoveCleanupHook()
|
| D | base_object.h | 193 friend class CleanupQueue; variable
|
| D | env.h | 883 inline void AddCleanupHook(CleanupQueue::Callback cb, void* arg); 884 inline void RemoveCleanupHook(CleanupQueue::Callback cb, void* arg); 1095 CleanupQueue cleanup_queue_;
|
| D | env-inl.h | 752 void Environment::AddCleanupHook(CleanupQueue::Callback fn, void* arg) { in AddCleanupHook() 756 void Environment::RemoveCleanupHook(CleanupQueue::Callback fn, void* arg) { in RemoveCleanupHook()
|