Home
last modified time | relevance | path

Searched refs:handle_ (Results 1 – 25 of 60) sorted by relevance

123

/third_party/node/deps/v8/src/objects/
Dprototype-inl.h22 handle_(receiver), in PrototypeIterator()
26 CHECK(!handle_.is_null()); in PrototypeIterator()
58 handle_(receiver_map->GetPrototypeChainRootMap(isolate_).prototype(), in PrototypeIterator()
61 is_at_end_(handle_->IsNull(isolate_)), in PrototypeIterator()
64 DCHECK(handle_->IsJSReceiver()); in PrototypeIterator()
65 Map map = JSReceiver::cast(*handle_).map(); in PrototypeIterator()
73 DCHECK(!handle_.is_null()); in HasAccess()
74 if (handle_->IsAccessCheckNeeded()) { in HasAccess()
76 Handle<JSObject>::cast(handle_)); in HasAccess()
82 if (handle_.is_null() && object_.IsJSProxy()) { in Advance()
[all …]
Dprototype.h52 DCHECK(handle_.is_null()); in GetCurrent()
58 DCHECK(!iterator.handle_.is_null()); in GetCurrent()
60 return Handle<T>::cast(iterator.handle_); in GetCurrent()
79 Handle<HeapObject> handle_; variable
/third_party/node/deps/v8/src/handles/
Dmaybe-handles-inl.h28 handle_ = handle(heap_object, isolate); in MaybeObjectHandle()
31 handle_ = handle(object->cast<Object>(), isolate); in MaybeObjectHandle()
41 handle_ = handle(heap_object, local_heap); in MaybeObjectHandle()
44 handle_ = handle(object->cast<Object>(), local_heap); in MaybeObjectHandle()
50 : reference_type_(HeapObjectReferenceType::STRONG), handle_(object) {} in MaybeObjectHandle()
54 handle_(object, isolate) {} in MaybeObjectHandle()
58 handle_(object, local_heap) {} in MaybeObjectHandle()
63 : reference_type_(reference_type), handle_(handle(object, isolate)) {} in MaybeObjectHandle()
67 : reference_type_(reference_type), handle_(object) {} in MaybeObjectHandle()
81 handle_.ToHandle(&this_handle) == in is_identical_to()
[all …]
/third_party/gn/src/base/win/
Dscoped_handle.h39 GenericScopedHandle() : handle_(Traits::NullHandle()) {} in GenericScopedHandle()
41 explicit GenericScopedHandle(Handle handle) : handle_(Traits::NullHandle()) { in GenericScopedHandle()
46 : handle_(Traits::NullHandle()) { in GenericScopedHandle()
52 bool IsValid() const { return Traits::IsHandleValid(handle_); } in IsValid()
61 if (handle_ != handle) { in Set()
67 handle_ = handle; in Set()
73 Handle Get() const { return handle_; } in Get()
77 Handle temp = handle_; in Take()
78 handle_ = Traits::NullHandle(); in Take()
84 if (Traits::IsHandleValid(handle_)) { in Close()
[all …]
/third_party/skia/third_party/externals/tint/src/utils/io/
Dcommand_posix.cc35 File() : handle_(kClosed) {} in File()
38 explicit File(int handle) : handle_(handle) {} in File()
46 handle_ = rhs.handle_; in operator =()
47 rhs.handle_ = kClosed; in operator =()
53 if (handle_ != kClosed) { in Close()
54 close(handle_); in Close()
56 handle_ = kClosed; in Close()
60 operator int() { return handle_; } in operator int()
63 operator bool() { return handle_ != kClosed; } in operator bool()
69 int handle_ = kClosed; member in tint::utils::__anon2a4219c90111::File
Dcommand_windows.cc31 Handle() : handle_(nullptr) {} in Handle()
34 explicit Handle(HANDLE handle) : handle_(handle) {} in Handle()
42 handle_ = rhs.handle_; in operator =()
43 rhs.handle_ = nullptr; in operator =()
49 if (handle_) { in Close()
50 CloseHandle(handle_); in Close()
52 handle_ = nullptr; in Close()
56 operator HANDLE() { return handle_; } in operator HANDLE()
59 operator bool() { return handle_ != nullptr; } in operator bool()
65 HANDLE handle_ = nullptr; member in tint::utils::__anonf6952aa10111::Handle
/third_party/cef/libcef/renderer/
Dv8_impl.cc407 handle_.Reset(isolate_, external); in CreateExternal()
408 handle_.SetWeak(this, FirstWeakCallback, v8::WeakCallbackType::kParameter); in CreateExternal()
416 wrapper->handle_.Reset(); in FirstWeakCallback()
429 v8::Persistent<v8::External> handle_; member in __anon44d5a20d0111::V8FunctionData
863 (!handle_.get() || handle_->BelongsToCurrentThread())
871 #define CEF_V8_HANDLE_IS_VALID() (handle_.get() && handle_->IsValid())
951 : handle_(new Handle(isolate, context, context)), enter_count_(0) {} in CefV8ContextImpl()
958 return new CefTaskRunnerImpl(handle_->task_runner()); in GetTaskRunner()
998 v8::Isolate* isolate = handle_->isolate(); in GetGlobal()
1011 v8::Isolate* isolate = handle_->isolate(); in Enter()
[all …]
Dv8_impl.h138 : CefV8HandleBase(isolate, context), handle_(isolate, v) {} in CefV8Handle()
145 return handleType::New(isolate(), handle_); in GetNewV8Handle()
148 persistentType& GetPersistentV8Handle() { return handle_; } in GetPersistentV8Handle()
151 ~CefV8Handle() override { handle_.Reset(); } in ~CefV8Handle()
153 persistentType handle_; variable
189 scoped_refptr<Handle> handle_; variable
316 persistentType handle_; variable
354 scoped_refptr<Handle> handle_; variable
/third_party/node/src/
Dsignal_wrap.cc91 reinterpret_cast<uv_handle_t*>(&handle_), in SignalWrap()
93 int r = uv_signal_init(env->event_loop(), &handle_); in SignalWrap()
99 DecreaseSignalHandlerCount(handle_.signum); in Close()
122 &wrap->handle_, in Start()
124 SignalWrap* wrap = ContainerOf(&SignalWrap::handle_, handle); in Start()
149 DecreaseSignalHandlerCount(wrap->handle_.signum); in Stop()
152 int err = uv_signal_stop(&wrap->handle_); in Stop()
156 uv_signal_t handle_; member in node::__anonba80cb1a0111::SignalWrap
Dudp_wrap.cc139 reinterpret_cast<uv_handle_t*>(&handle_), in UDPWrap()
144 int r = uv_udp_init(env->event_loop(), &handle_); in UDPWrap()
245 uv_fileno(reinterpret_cast<uv_handle_t*>(&wrap->handle_), &fd); in GetFD()
282 err = uv_udp_bind(&wrap->handle_, in DoBind()
310 err = uv_udp_connect(&wrap->handle_, in DoConnect()
325 int err = uv_udp_open(&wrap->handle_, fd); in Open()
359 uv_handle_t* handle = reinterpret_cast<uv_handle_t*>(&wrap->handle_); in BufferSize()
395 int err = uv_udp_connect(&wrap->handle_, nullptr); in Disconnect()
413 int err = uv_udp_set_multicast_interface(&wrap->handle_, iface_cstr); in SetMulticastInterface()
434 int err = uv_udp_set_membership(&wrap->handle_, in SetMembership()
[all …]
Dnode_binding.cc327 : filename_(filename), flags_(flags), handle_(nullptr) {} in DLib()
331 handle_ = dlopen(filename_.c_str(), flags_); in Open()
332 if (handle_ != nullptr) return true; in Open()
338 if (handle_ == nullptr) return; in Close()
349 int err = dlclose(handle_); in Close()
352 global_handle_map.erase(handle_); in Close()
354 handle_ = nullptr; in Close()
358 return dlsym(handle_, name); in GetSymbolAddress()
364 handle_ = static_cast<void*>(lib_.handle); in Open()
373 if (handle_ == nullptr) return; in Close()
[all …]
Dpipe_wrap.cc161 int r = uv_pipe_init(env->event_loop(), &handle_, ipc); in PipeWrap()
171 int err = uv_pipe_bind(&wrap->handle_, *name); in Bind()
182 uv_pipe_pending_instances(&wrap->handle_, instances); in SetPendingInstances()
192 int err = uv_pipe_chmod(&wrap->handle_, mode); in Fchmod()
203 int err = uv_listen(reinterpret_cast<uv_stream_t*>(&wrap->handle_), in Listen()
219 int err = uv_pipe_open(&wrap->handle_, fd); in Open()
241 &wrap->handle_, in Connect()
Dfs_event_wrap.cc74 uv_fs_event_t handle_; member in node::__anond61f01b60111::FSEventWrap
82 reinterpret_cast<uv_handle_t*>(&handle_), in FSEventWrap()
156 int err = uv_fs_event_init(wrap->env()->event_loop(), &wrap->handle_); in Start()
161 err = uv_fs_event_start(&wrap->handle_, OnEvent, *path, flags); in Start()
171 uv_unref(reinterpret_cast<uv_handle_t*>(&wrap->handle_)); in Start()
Dtty_wrap.cc100 int err = uv_tty_get_winsize(&wrap->handle_, &width, &height); in GetWindowSize()
117 int err = uv_tty_set_mode(&wrap->handle_, args[0]->IsTrue()); in SetRawMode()
149 reinterpret_cast<uv_stream_t*>(&handle_), in TTYWrap()
151 *init_err = uv_tty_init(env->event_loop(), &handle_, fd, 0); in TTYWrap()
Dtcp_wrap.cc179 int r = uv_tcp_init(env->event_loop(), &handle_); in TCPWrap()
191 int err = uv_tcp_nodelay(&wrap->handle_, enable); in SetNoDelay()
205 int err = uv_tcp_keepalive(&wrap->handle_, enable, delay); in SetKeepAlive()
217 int err = uv_tcp_simultaneous_accepts(&wrap->handle_, enable); in SetSimultaneousAccepts()
232 int err = uv_tcp_open(&wrap->handle_, fd); in Open()
263 err = uv_tcp_bind(&wrap->handle_, in Bind()
288 int err = uv_listen(reinterpret_cast<uv_stream_t*>(&wrap->handle_), in Listen()
341 &wrap->handle_, in Connect()
374 int err = uv_tcp_close_reset(&handle_, OnClose); in Reset()
Dnode_object_wrap.h70 return handle_; in persistent()
122 wrap->handle_.Reset(); in WeakCallback()
127 v8::Persistent<v8::Object> handle_; variable
Dnode_watchdog.cc170 reinterpret_cast<uv_handle_t*>(&handle_), in TraceSigintWatchdog()
172 int r = uv_async_init(env->event_loop(), &handle_, [](uv_async_t* handle) { in TraceSigintWatchdog()
174 ContainerOf(&TraceSigintWatchdog::handle_, handle); in TraceSigintWatchdog()
179 uv_unref(reinterpret_cast<uv_handle_t*>(&handle_)); in TraceSigintWatchdog()
187 CHECK_EQ(uv_async_send(&handle_), 0); in HandleSigint()
Dconnection_wrap.cc28 reinterpret_cast<uv_stream_t*>(&handle_), in ConnectionWrap()
37 CHECK_EQ(&wrap_data->handle_, reinterpret_cast<UVType*>(handle)); in OnConnection()
59 uv_stream_t* client = reinterpret_cast<uv_stream_t*>(&wrap->handle_); in OnConnection()
Dhandle_wrap.cc76 uv_close(handle_, OnClose); in Close()
127 handle_(handle) { in HandleWrap()
128 handle_->data = this; in HandleWrap()
Dinspector_io.cc100 : handle_(std::make_shared<RequestQueue>(this)) { in RequestQueueData()
135 return handle_; in handle()
156 std::shared_ptr<RequestQueue> handle_; member in node::inspector::__anon04a051710111::RequestQueueData
373 queue->handle_->Reset(); in CloseAndFree()
374 queue->handle_.reset(); in CloseAndFree()
Dhandle_wrap.h74 inline uv_handle_t* GetHandle() const { return handle_; } in GetHandle()
113 uv_handle_t* const handle_; variable
/third_party/libuv/test/
Dtest-udp-dgram-too-big.c30 ASSERT((uv_udp_t*)(handle) == &handle_)
35 static uv_udp_t handle_; variable
67 r = uv_udp_init(uv_default_loop(), &handle_); in TEST_IMPL()
74 &handle_, in TEST_IMPL()
/third_party/node/deps/v8/src/heap/cppgc/
Dgc-invoker.cc50 handle_(Handle::NonEmptyTag{}), in GCTask()
57 if (handle_.IsCanceled() || (collector_->epoch() != saved_epoch_)) return; in Run()
60 handle_.Cancel(); in Run()
63 Handle GetHandle() { return handle_; } in GetHandle()
67 Handle handle_; member in cppgc::internal::GCInvoker::GCInvokerImpl::GCTask
/third_party/node/src/inspector/
Dmain_thread_interface.cc203 if (handle_) in ~MainThreadInterface()
204 handle_->Reset(); in ~MainThreadInterface()
257 if (handle_ == nullptr) in GetHandle()
258 handle_ = std::make_shared<MainThreadHandle>(this); in GetHandle()
259 return handle_; in GetHandle()
/third_party/cef/libcef/browser/gpu/
Dexternal_texture_manager.cc38 handle_((HANDLE)0), in GLImageDXGISharedHandle()
42 void* share_handle() const { return handle_; } in share_handle()
94 dxgi_res->GetSharedHandle(&handle_); in Initialize()
131 HANDLE handle_; member in gpu::gles2::__anon05385c830111::GLImageDXGISharedHandle

123