/third_party/pulseaudio/src/pulsecore/ |
D | protocol-cli.c | 42 pa_idxset *connections; member 49 pa_idxset_remove_by_data(p->connections, c, NULL); in cli_unlink() 67 if (pa_idxset_size(p->connections)+1 > MAX_CONNECTIONS) { in pa_cli_protocol_connect() 76 pa_idxset_put(p->connections, c, NULL); in pa_cli_protocol_connect() 86 while ((c = pa_idxset_iterate(p->connections, &state, NULL))) in pa_cli_protocol_disconnect() 99 p->connections = pa_idxset_new(NULL, NULL); in cli_protocol_new() 132 while ((c = pa_idxset_first(p->connections, NULL))) in pa_cli_protocol_unref() 135 pa_idxset_free(p->connections, NULL); in pa_cli_protocol_unref()
|
/third_party/node/test/parallel/ |
D | test-https-close.js | 14 const connections = {}; constant 26 delete connections[key]; 28 connections[key] = connection; 34 for (const key in connections) { 35 connections[key].destroy(); 36 delete connections[key];
|
D | test-process-getactiveresources-track-active-handles.js | 7 const connections = []; variable 12 connections.push(c); 35 clients.length + connections.length); 38 connections.forEach((item) => item.end());
|
D | test-net-pause-resume-connecting.js | 27 let connections = 0; variable 34 connections++; 37 if (connections === 5) 93 assert.strictEqual(connections, 5);
|
D | test-net-server-max-connections-close-makes-more-available.js | 16 const connections = []; variable 46 connections[index] = connection; 53 connections[index].on('end', function() { 56 connections[index].end();
|
D | test-process-getactivehandles.js | 7 const connections = []; variable 12 connections.push(c); 40 connections.forEach(function(item) {
|
D | test-http-server-close-all.js | 8 let connections = 0; variable 20 connections++; 41 assert.strictEqual(connections, 2);
|
D | test-http-server-close-idle.js | 8 let connections = 0; variable 20 connections++; 43 assert.strictEqual(connections, 2);
|
D | test-https-server-close-all.js | 19 let connections = 0; variable 31 connections++; 51 assert.strictEqual(connections, 2);
|
/third_party/node/lib/internal/ |
D | socket_list.js | 63 this.connections = 0; 81 if (this.connections === 0) return onempty(this); 90 count: this.connections, 97 this.connections++; 101 this.connections--; 103 if (this.connections === 0) this.emit('empty', this);
|
/third_party/node/deps/undici/src/lib/ |
D | pool.js | 28 connections, property 42 if (connections != null && (!Number.isFinite(connections) || connections < 0)) { 69 this[kConnections] = connections || null
|
/third_party/node/test/pummel/ |
D | test-http-upload-timeout.js | 29 let connections = 0; variable 37 connections--; 41 if (connections === 0) { 50 connections++;
|
/third_party/skia/third_party/externals/microhttpd/src/examples/ |
D | mhd2spdy_spdy.h | 74 struct SPDY_Connection *connections[], 83 struct SPDY_Connection *connections[], 90 struct SPDY_Connection *connections[], 98 struct SPDY_Connection *connections[],
|
D | mhd2spdy_spdy.c | 986 struct SPDY_Connection *connections[], in spdy_get_selectfdset() argument 1014 connections[*real_size] = glob_opt.spdy_connection; in spdy_get_selectfdset() 1041 connections[*real_size] = connection; in spdy_get_selectfdset() 1111 struct SPDY_Connection *connections[], in spdy_run_select() argument 1120 …if(FD_ISSET(connections[i]->fd, read_fd_set) || FD_ISSET(connections[i]->fd, write_fd_set) || FD_I… in spdy_run_select() 1123 ret = spdy_exec_io(connections[i]); in spdy_run_select() 1127 glob_opt.streams_opened -= connections[i]->streams_opened; in spdy_run_select() 1128 if(connections[i] == glob_opt.spdy_connection) in spdy_run_select() 1134 … DLL_remove(glob_opt.spdy_connections_head, glob_opt.spdy_connections_tail, connections[i]); in spdy_run_select() 1138 spdy_free_connection(connections[i]); in spdy_run_select()
|
/third_party/libwebsockets/minimal-examples/secure-streams/minimal-secure-streams-stress/ |
D | README.md | 4 SS connections and a budget of sequential connections. 7 SS connections one after the other. 21 --budget <count>|Each fork sequentially does this many SS connections (default 1)|
|
/third_party/curl/docs/libcurl/opts/ |
D | CURLOPT_MAXCONNECTS.md | 29 persistent connections that libcurl may cache in the pool associated with this 31 unless you are perfectly aware of how this works. This concerns connections 32 using any of the protocols that support persistent connections. 35 prevent increasing the number of open connections. 38 smaller CURLOPT_MAXCONNECTS(3) than before may cause open connections to
|
D | CURLMOPT_MAXCONNECTS.md | 27 amount of simultaneously open connections that libcurl may keep in its 36 number of open connections from increasing. 42 connections. 58 /* only keep 10 connections in the cache */
|
D | CURLMOPT_MAX_HOST_CONNECTIONS.md | 14 CURLMOPT_MAX_HOST_CONNECTIONS - max number of connections to a single host 28 of simultaneously open connections to a single host (a host being the same as 35 proxy connections, and then the proxy is considered to be the host for which 61 /* do no more than 2 connections per host */
|
D | CURLMOPT_MAX_TOTAL_CONNECTIONS.md | 14 CURLMOPT_MAX_TOTAL_CONNECTIONS - max simultaneously open connections 28 of simultaneously open connections in total using this multi handle. For each 31 sessions are held pending until there are available connections. If 59 /* never do more than 15 connections */
|
/third_party/node/benchmark/async_hooks/ |
D | http-server.js | 6 connections: [50, 500], property 10 function main({ asyncHooks, connections, duration }) { property 35 connections, property
|
/third_party/node/benchmark/http/ |
D | incoming_headers.js | 6 connections: [50], // Concurrent connections property 12 function main({ connections, headers, w, duration }) { property 35 connections, property
|
/third_party/libwebsockets/minimal-examples/mqtt-client/minimal-mqtt-client-multi/ |
D | README.md | 14 However it does it for 8 client connections concurrently. 20 -c <conns>|Count of simultaneous connections (default 8) 21 -s|Stagger the connections by 100ms, the last by 1s
|
/third_party/libwebsockets/READMEs/ |
D | README.routing.md | 10 connections quickly is a given. But POSIX sockets do not act like 16 table relates to existing connections, dynamically. 31 Both server and client connections now store their peer sockaddr in the 38 removing the highest priority gateway route, all connections to a peer 39 without a net route match are invalidated. However connections with
|
/third_party/libwebsockets/lib/core-net/ |
D | README.md | 10 connections to the same place by sharing any existing connection and its tls 13 There are two basic approaches, for h1 additional connections of the same type 25 connections themselves can register on as "active client connections". 55 h2 connections act the same as h1 before the initial connection has been made, 56 but once it is made all the queued connections join the network connection as
|
/third_party/curl/tests/libtest/ |
D | lib1533.c | 105 long connections = 0; in perform_and_check_connections() local 113 res = curl_easy_getinfo(curl, CURLINFO_NUM_CONNECTS, &connections); in perform_and_check_connections() 120 description, expected_connections, connections); in perform_and_check_connections() 122 if(connections != expected_connections) { in perform_and_check_connections()
|