Searched refs:HandleWrap (Results 1 – 25 of 29) sorted by relevance
12
/third_party/node/src/ |
D | handle_wrap.cc | 38 void HandleWrap::Ref(const FunctionCallbackInfo<Value>& args) { in Ref() 39 HandleWrap* wrap; in Ref() 47 void HandleWrap::Unref(const FunctionCallbackInfo<Value>& args) { in Unref() 48 HandleWrap* wrap; in Unref() 56 void HandleWrap::HasRef(const FunctionCallbackInfo<Value>& args) { in HasRef() 57 HandleWrap* wrap; in HasRef() 63 void HandleWrap::Close(const FunctionCallbackInfo<Value>& args) { in Close() 64 HandleWrap* wrap; in Close() 70 void HandleWrap::Close(Local<Value> close_callback) { in Close() 86 void HandleWrap::OnGCCollect() { in OnGCCollect() [all …]
|
D | handle_wrap.h | 56 class HandleWrap : public AsyncWrap { 63 static inline bool IsAlive(const HandleWrap* wrap) { in IsAlive() 69 static inline bool HasRef(const HandleWrap* wrap) { in HasRef() 82 HandleWrap(Environment* env, 108 ListNode<HandleWrap> handle_wrap_queue_;
|
D | node_postmortem_metadata.cc | 26 V(HandleWrap, handle_wrap_queue_, ListNode_HandleWrap, \ 27 HandleWrap::handle_wrap_queue_) \ 30 V(ListNode_HandleWrap, prev_, uintptr_t, ListNode<HandleWrap>::prev_) \ 31 V(ListNode_HandleWrap, next_, uintptr_t, ListNode<HandleWrap>::next_) \
|
D | signal_wrap.cc | 47 class SignalWrap : public HandleWrap { 57 constructor->Inherit(HandleWrap::GetConstructorTemplate(env)); in Initialize() 80 : HandleWrap(env, in SignalWrap() 93 HandleWrap::Close(close_callback); in Close()
|
D | stream_wrap.cc | 111 : HandleWrap(env, in LibuvStreamWrap() 128 tmpl->Inherit(HandleWrap::GetConstructorTemplate(env)); in GetConstructorTemplate() 169 return HandleWrap::IsAlive(this); in IsAlive() 224 HandleWrap* wrap = Unwrap<HandleWrap>(wrap_obj); in AcceptHandle()
|
D | fs_event_wrap.cc | 49 class FSEventWrap: public HandleWrap { 78 : HandleWrap(env, in FSEventWrap() 102 t->Inherit(HandleWrap::GetConstructorTemplate(env)); in Initialize()
|
D | node_stat_watcher.cc | 51 t->Inherit(HandleWrap::GetConstructorTemplate(env)); in Initialize() 62 : HandleWrap(binding_data->env(), in StatWatcher()
|
D | node_stat_watcher.h | 39 class StatWatcher : public HandleWrap {
|
D | udp_wrap.h | 82 kUDPWrapBaseField = HandleWrap::kInternalFieldCount, 118 class UDPWrap final : public HandleWrap,
|
D | process_wrap.cc | 47 class ProcessWrap : public HandleWrap { 58 constructor->Inherit(HandleWrap::GetConstructorTemplate(env)); in Initialize() 81 : HandleWrap(env, in ProcessWrap()
|
D | node_watchdog.cc | 127 constructor->Inherit(HandleWrap::GetConstructorTemplate(env)); in Init() 162 : HandleWrap(env, in TraceSigintWatchdog()
|
D | stream_wrap.h | 35 class LibuvStreamWrap : public HandleWrap, public StreamBase {
|
D | node_watchdog.h | 84 class TraceSigintWatchdog : public HandleWrap, public SigintWatchdogBase {
|
D | histogram.cc | 225 tmpl->Inherit(HandleWrap::GetConstructorTemplate(env)); in GetConstructorTemplate() 251 : HandleWrap( in IntervalHistogram()
|
D | histogram.h | 150 class IntervalHistogram : public HandleWrap, public HistogramImpl {
|
D | README.md | 672 In Node.js, handles are often managed through a [`HandleWrap`][] subclass. 697 [`ReqWrap`][] and [`HandleWrap`][] instances, cleanup of the associated libuv 703 If a libuv handle is not managed through a [`HandleWrap`][] instance, 797 loop, as is the case for the [`HandleWrap`][] and [`ReqWrap`][] classes. 879 ### `HandleWrap` 881 `HandleWrap` is a subclass of `AsyncWrap` specifically designed to make working 886 `HandleWrap` instances are [cleaned up][cleanup hooks] automatically when the 889 `HandleWrap` also provides facilities for diagnostic tooling to get an 1015 [`HandleWrap`]: #handlewrap
|
D | node_messaging.cc | 581 : HandleWrap(env, in MessagePort() 634 HandleWrap::Close(close_callback); in Close() 636 HandleWrap::Close(close_callback); in Close() 1095 m->Inherit(HandleWrap::GetConstructorTemplate(env)); in GetMessagePortConstructorTemplate()
|
D | node_messaging.h | 161 class MessagePort : public HandleWrap {
|
D | stream_base.cc | 198 HandleWrap* wrap; in WriteBuffer() 300 HandleWrap* wrap; in WriteString()
|
D | udp_wrap.cc | 113 : HandleWrap(env, in UDPWrap() 179 t->Inherit(HandleWrap::GetConstructorTemplate(env)); in Initialize()
|
D | node_process_methods.cc | 294 if (!HandleWrap::HasRef(w)) in GetActiveHandles()
|
D | env.h | 1183 typedef ListHead<HandleWrap, &HandleWrap::handle_wrap_queue_> HandleWrapQueue;
|
D | env.cc | 611 for (HandleWrap* handle : handle_wrap_queue_) in CleanupHandles()
|
/third_party/node/test/cctest/ |
D | test_node_postmortem_metadata.cc | 38 class TestHandleWrap : public node::HandleWrap { 47 : node::HandleWrap(env, in SET_MEMORY_INFO_NAME()
|
/third_party/node/doc/guides/ |
D | cpp-style-guide.md | 133 HandleWrap::HandleWrap(Environment* env,
|
12