Home
last modified time | relevance | path

Searched refs:disconnect (Results 1 - 25 of 147) sorted by relevance

123456

/third_party/node/test/parallel/
H A Dtest-child-process-disconnect.js31 // Check that the 'disconnect' event is deferred to the next event loop tick.
32 const disconnect = process.disconnect;
33 process.disconnect = function() {
34 disconnect.apply(this, arguments);
36 process.once('disconnect', common.mustCall(disconnectIsNotAsync));
47 process.on('disconnect', function() {
74 // When calling .disconnect the event should emit
76 child.on('disconnect', common.mustCall(function() {
87 // Connect to child using TCP to know if disconnect wa
[all...]
H A Dtest-cluster-disconnect-before-exit.js27 const worker = cluster.fork().on('online', common.mustCall(disconnect));
29 function disconnect() {
30 worker.disconnect();
31 // The worker remains in cluster.workers until both disconnect AND exit.
32 // Disconnect is supposed to disconnect all workers, but not workers that
33 // are already disconnected, since calling disconnect() on an already
35 worker.on('disconnect', common.mustCall(cluster.disconnect));
H A Dtest-cluster-disconnect-unshared-udp.js36 cluster.fork({ BOUND: 'y' }).on('listening', disconnect);
39 function disconnect() {
40 unbound.disconnect();
41 unbound.on('disconnect', cluster.disconnect);
H A Dtest-cluster-disconnect-unshared-tcp.js33 cluster.fork({ BOUND: 'y' }).on('listening', disconnect);
36 function disconnect() {
37 unbound.disconnect();
38 unbound.on('disconnect', cluster.disconnect);
H A Dtest-cluster-worker-forced-exit.js34 // 1 setup worker to wait a short time after disconnect, and exit
36 // 2 disconnect worker with cluster's disconnect, confirm sentinel
37 // 3 disconnect worker with child_process's disconnect, confirm
40 process.on('disconnect', (msg) => {
52 .on('online', common.mustCall(() => worker.disconnect()))
61 .on('online', common.mustCall(() => worker.process.disconnect()))
H A Dtest-inspector-bindings.js56 session.disconnect();
99 session.disconnect();
116 session.disconnect();
H A Dtest-inspector-multisession-js.js54 session1.disconnect();
55 session2.disconnect();
H A Dtest-inspector-waiting-for-disconnect.js38 await session.disconnect();
40 await oldStyleSession.disconnect();
H A Dtest-performanceobserver.js57 obs.disconnect();
70 observer.disconnect();
H A Dtest-inspector-wait-for-connection.js40 secondSession.disconnect();
41 session.disconnect();
H A Dtest-child-process-fork-net.js79 process.on('disconnect', mustCall(() => {
80 debug(`[${id}] process disconnect, ending`);
163 child3.disconnect();
H A Dtest-debugger-run-after-quit-restart.js33 .then(() => cli.waitFor(/disconnect/))
37 /Waiting for the debugger to disconnect/,
H A Dtest-cluster-accept-fail.js26 process.disconnect();
H A Dtest-cluster-dgram-reuse.js20 cluster.worker.disconnect();
/third_party/nghttp2/src/
H A Dshrpx_memcached_connection.cc54 mconn->disconnect(); in timeoutcb()
88 mconn->disconnect(); in connectcb()
118 MemcachedConnection::~MemcachedConnection() { conn_.disconnect(); } in ~MemcachedConnection()
132 void MemcachedConnection::disconnect() { in disconnect() function in shrpx::MemcachedConnection
143 conn_.disconnect(); in disconnect()
719 disconnect(); in add_request()
733 disconnect(); in reconnect_or_fail()
745 disconnect(); in reconnect_or_fail()
765 disconnect(); in reconnect_or_fail()
772 disconnect(); in reconnect_or_fail()
[all...]
H A Dshrpx_live_check.cc133 disconnect(); in ~LiveCheck()
138 void LiveCheck::disconnect() { in disconnect() function in shrpx::LiveCheck
156 conn_.disconnect(); in disconnect()
670 disconnect(); in on_failure()
685 disconnect(); in on_success()
699 disconnect(); in on_success()
/third_party/node/lib/internal/cluster/
H A Dchild.js43 process.once('disconnect', () => {
44 worker.emit('disconnect');
47 // Unexpected disconnect, primary exited, or some such nastiness, so
59 else if (message.act === 'disconnect')
260 // If disconnect is worker initiated, wait for ack to be sure
265 process.disconnect();
267 send({ act: 'exitedAfterDisconnect' }, () => process.disconnect());
286 Worker.prototype.disconnect = function() {
304 send({ act: 'exitedAfterDisconnect' }, () => process.disconnect());
305 process.once('disconnect', ()
[all...]
H A Dprimary.js148 intercom.emit('disconnect');
191 worker.process.once('disconnect', () => {
209 worker.emit('disconnect');
210 cluster.emit('disconnect', worker);
223 cluster.disconnect = function(cb) {
227 process.nextTick(() => intercom.emit('disconnect'));
231 worker.disconnect();
237 intercom.once('disconnect', cb);
352 Worker.prototype.disconnect = function() {
354 send(this, { act: 'disconnect' });
[all...]
/third_party/skia/third_party/externals/oboe/src/flowgraph/
H A DFlowGraphNode.cpp90 void FlowGraphPortFloatOutput::disconnect(FlowGraphPortFloatInput *port) { in disconnect() function in FlowGraphPortFloatOutput
91 port->disconnect(this); in disconnect()
H A DFlowGraphNode.h251 void disconnect(FlowGraphPortFloatInput *port);
315 void disconnect(FlowGraphPortFloatOutput *port) { in disconnect() function in FLOWGRAPH_OUTER_NAMESPACE::flowgraph::FlowGraphPortFloatInput
321 void disconnect() { in disconnect() function in FLOWGRAPH_OUTER_NAMESPACE::flowgraph::FlowGraphPortFloatInput
/third_party/node/lib/
H A Dinspector.js149 disconnect() {
152 this[connectionSymbol].disconnect();
/third_party/node/lib/internal/util/
H A Dinspector.js19 const kInspectMsgRegex = /Debugger listening on ws:\/\/\[?(.+?)\]?:(\d+)\/|For help, see: https:\/\/nodejs\.org\/en\/docs\/inspector|Debugger attached|Waiting for the debugger to disconnect\.\.\./;
56 session.disconnect();
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/radius/
H A Dradius_das.c28 enum radius_das_res (*disconnect)(void *ctx, member
147 res = das->disconnect(das->ctx, &attrs); in radius_das_disconnect()
554 das->disconnect = conf->disconnect; in radius_das_init()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/radius/
H A Dradius_das.c28 enum radius_das_res (*disconnect)(void *ctx, member
147 res = das->disconnect(das->ctx, &attrs); in radius_das_disconnect()
554 das->disconnect = conf->disconnect; in radius_das_init()
/third_party/node/test/fixtures/wpt/user-timing/
H A Dsupported-usertiming-types.any.js27 observer.disconnect();

Completed in 9 milliseconds

123456