Lines Matching refs:FSEventWrap
50 class FSEventWrap: public HandleWrap {
62 SET_MEMORY_INFO_NAME(FSEventWrap)
63 SET_SELF_SIZE(FSEventWrap)
68 FSEventWrap(Environment* env, Local<Object> object);
69 ~FSEventWrap() override = default;
79 FSEventWrap::FSEventWrap(Environment* env, Local<Object> object)
88 void FSEventWrap::GetInitialized(const FunctionCallbackInfo<Value>& args) {
89 FSEventWrap* wrap = Unwrap<FSEventWrap>(args.This());
94 void FSEventWrap::Initialize(Local<Object> target,
103 FSEventWrap::kInternalFieldCount);
123 void FSEventWrap::RegisterExternalReferences(
130 void FSEventWrap::New(const FunctionCallbackInfo<Value>& args) {
133 new FSEventWrap(env, args.This());
137 void FSEventWrap::Start(const FunctionCallbackInfo<Value>& args) {
140 FSEventWrap* wrap = Unwrap<FSEventWrap>(args.This());
165 FSEventWrap::Close(args);
178 void FSEventWrap::OnEvent(uv_fs_event_t* handle, const char* filename,
180 FSEventWrap* wrap = static_cast<FSEventWrap*>(handle->data);
241 node::FSEventWrap::Initialize)
243 node::FSEventWrap::RegisterExternalReferences)