Home
last modified time | relevance | path

Searched refs:unref (Results 1 - 25 of 143) sorted by relevance

123456

/third_party/node/test/parallel/
H A Dtest-timers-immediate-unref.js8 immediate.unref();
13 // It also confirms that unref/ref are chainable.
14 setImmediate(common.mustCall(firstStep)).ref().unref().unref().ref();
19 setImmediate(common.mustCall()).unref();
24 // clearImmediate works just fine with unref'd immediates
32 }).unref();
33 const immB = setImmediate(common.mustNotCall()).unref();
40 setImmediate(common.mustNotCall()).unref();
H A Dtest-net-persistent-ref-unref.js14 const unref = TCPWrap.prototype.unref;
24 TCPWrap.prototype.unref = function() {
25 unref.call(this);
34 sock.unref();
H A Dtest-http-server-headers-timeout-keepalive.js19 }, firstDelay).unref();
24 }, firstDelay + secondDelay).unref();
76 }, defer).unref();
H A Dtest-http-server-request-timeout-keepalive.js19 }, firstDelay).unref();
24 }, firstDelay + secondDelay).unref();
74 }, defer).unref();
H A Dtest-timers-unrefed-in-callback.js31 timer1.unref();
50 timer2.unref();
H A Dtest-http2-socket-proxy.js81 socket.unref();
107 socket.unref = fn;
108 assert.strictEqual(session.unref, fn);
/third_party/skia/bench/
H A DRefCntBench.cpp33 ref.unref();
68 ref->unref();
70 ref->unref();
94 ref->unref();
96 ref->unref();
122 ref.unref();
154 ref->unref();
156 ref->unref();
180 ref->unref();
182 ref->unref();
[all...]
/third_party/skia/tests/
H A DResourceCacheTest.cpp370 // Since the resources have neither unique nor scratch keys, delete immediately upon unref. in test_no_key()
372 a->unref(); in test_no_key()
378 c->unref(); in test_no_key()
384 d->unref(); in test_no_key()
389 b->unref(); in test_no_key()
441 a->unref(); in test_purge_unlocked()
442 b->unref(); in test_purge_unlocked()
443 c->unref(); in test_purge_unlocked()
444 d->unref(); in test_purge_unlocked()
496 a->unref(); in test_purge_command_buffer_usage()
[all...]
H A DRefCntTest.cpp19 ref->unref(); in bounce_ref()
33 ref->unref(); in test_refCnt()
40 ref->unref(); in bounce_weak_ref()
68 ref->unref(); in test_weakRefCnt()
83 #define check(reporter, ref, unref, make, kill) \
85 REPORTER_ASSERT(reporter, gUnrefCounter == unref); \
102 void unref() { in unref() function in Effect
376 rc->unref(); in DEF_TEST()
H A DCachedDataTest.cpp58 data->unref(); in test_locking()
64 data->unref(); in test_locking()
92 data->unref(); in DEF_TEST()
97 data->unref(); in DEF_TEST()
H A DMaskCacheTest.cpp53 data->unref(); in DEF_TEST()
66 data->unref(); in DEF_TEST()
90 data->unref(); in DEF_TEST()
103 data->unref(); in DEF_TEST()
/third_party/node/lib/internal/fs/
H A Dwatchers.js112 this.unref();
163 this.unref();
168 this._handle?.unref();
173 // Avoid refCount calling ref multiple times causing unref to have no effect.
181 StatWatcher.prototype.unref = function() {
182 // Avoid refCount calling unref multiple times causing ref to have no effect.
185 this._handle.unref();
285 FSWatcher.prototype.unref = function() {
286 if (this._handle) this._handle.unref();
/third_party/node/benchmark/dgram/
H A Dbind-params.js24 .unref();
33 .unref();
42 .unref();
/third_party/node/deps/npm/node_modules/retry/lib/
H A Dretry_operation.js76 if (self._options.unref) {
77 self._timeout.unref();
84 if (this._options.unref) {
85 timer.unref();
/third_party/skia/src/core/
H A DSkIDChangeListener.cpp33 fListeners[i]->unref(); in ~List()
47 fListeners[i]->unref(); in add()
66 listener->unref(); in changed()
/third_party/node/lib/internal/worker/
H A Dio.js117 MessagePort.prototype.unref = MessagePortPrototype.unref;
296 // If there are none or all are removed, unref() the channel so the worker
298 port.unref();
326 port.unref();
342 this[kPort].unref();
395 this[kPort].unref();
501 // Platform APIs with Node.js specific methods but ref and unref
514 // The unref() method is Node.js specific and not part of the standard
516 // Platform APIs with Node.js specific methods but ref and unref
[all...]
/third_party/node/lib/internal/
H A Dstructured_clone.js21 channel.port1.unref();
22 channel.port2.unref();
H A Dworker.js227 this[kPort].unref();
295 this[kPublicPort].unref();
296 this[kPort].unref();
402 unref() {
405 this[kHandle].unref();
406 this[kPublicPort].unref();
/third_party/node/test/pseudo-tty/
H A Dref_keeps_node_running.js22 handle.unref();
24 strictEqual(isHandleActive(handle), false, 'TTY handle active after unref()');
30 handle.unref();
/third_party/skia/include/core/
H A DSkRefCnt.h24 When an owner wants to release its reference, it calls unref(). When the
25 shared object's reference count goes to zero as the result of an unref()
53 // until previous owners are all totally done calling unref(). in unique()
59 /** Increment the reference count. Must be balanced by a call to unref().
71 void unref() const { in unref() function in SkRefCntBase
122 void deref() const { this->unref(); } in deref()
146 /** Check if the argument is non-null, and if so, call obj->unref()
150 obj->unref(); in SkSafeUnref()
172 // - unref() needs a release barrier, and an acquire if it's going to call delete.
176 void unref() cons in ref() function in SkNVRefCnt
[all...]
/third_party/skia/src/gpu/
H A DGrCpuBuffer.h32 void unref() const override { GrNonAtomicRef<GrCpuBuffer>::unref(); }
H A DGrGpuBuffer.h30 void unref() const final { GrGpuResource::unref(); }
/third_party/skia/src/gpu/vk/
H A DGrVkResourceProvider.cpp431 // unref all the fActiveCommandPools and reset the array. Since this can happen in the middle in checkCommandBuffers()
488 fExternalRenderPasses[i]->unref(); in destroyResources()
492 // Iterate through all store GrVkSamplers and unref them before resetting the hash table. in destroyResources()
493 fSamplers.foreach([&](auto* elt) { elt->unref(); }); in destroyResources()
496 fYcbcrConversions.foreach([&](auto* elt) { elt->unref(); }); in destroyResources()
506 pool->unref(); in destroyResources()
514 pool->unref(); in destroyResources()
533 pool->unref(); in releaseUnlockedBackendObjects()
546 pool->unref(); in backgroundReset()
643 fRenderPasses[i]->unref(); in releaseResources()
[all...]
/third_party/node/test/sequential/
H A Dtest-child-process-pass-fd.js67 // channel. Once this is done, we can unref our client and server sockets, and
79 }).unref();
82 socket = net.connect(port, common.localhostIPv4, socketConnected).unref();
/third_party/node/lib/internal/modules/esm/
H A Dworker.js132 immediate = setImmediate(checkForMessages).unref();
190 immediate = setImmediate(checkForMessages).unref();
224 immediate = setImmediate(checkForMessages).unref();

Completed in 12 milliseconds

123456