Home
last modified time | relevance | path

Searched refs:connected (Results 1 – 25 of 488) sorted by relevance

12345678910>>...20

/third_party/curl/lib/
Dconnect.c353 BIT(connected); /* cf has connected */
501 baller->connected = FALSE; in baller_start()
537 baller->connected = FALSE; in baller_start_next()
549 bool *connected) in baller_connect() argument
552 *connected = baller->connected; in baller_connect()
553 if(!baller->result && !*connected) { in baller_connect()
555 baller->result = Curl_conn_cf_connect(baller->cf, data, 0, connected); in baller_connect()
558 if(*connected) { in baller_connect()
559 baller->connected = TRUE; in baller_connect()
582 bool *connected) in is_connected() argument
[all …]
Dcfilters.c52 cf->connected = FALSE; in Curl_cf_def_close()
179 while(cf && !cf->connected) { in Curl_conn_recv()
198 while(cf && !cf->connected) { in Curl_conn_send()
343 *done = cf->connected; in Curl_conn_connect()
364 return cf && cf->connected; in Curl_conn_is_connected()
373 if(cf->connected) in Curl_conn_is_ip_connected()
421 while(cf && !cf->connected) { in Curl_conn_data_pending()
435 while(cf && !cf->connected && cf->next && !cf->next->connected) in Curl_conn_cf_adjust_pollset()
525 if(cf && !cf->connected) in Curl_conn_get_socket()
621 struct curltime connected; in conn_report_connect_stats() local
[all …]
Dcf-haproxy.c113 if(cf->connected) { in cf_haproxy_connect()
152 cf->connected = *done; in cf_haproxy_connect()
168 cf->connected = FALSE; in cf_haproxy_close()
178 if(cf->next->connected && !cf->connected) { in cf_haproxy_adjust_pollset()
Dcf-https-connect.c196 cf->connected = TRUE; in baller_connected()
246 if(cf->connected) { in cf_hc_connect()
309 cf->connected = FALSE; in cf_hc_connect()
315 cf->connected = TRUE; in cf_hc_connect()
329 if(!cf->connected) { in cf_hc_adjust_pollset()
351 if(cf->connected) in cf_hc_data_pending()
387 if(!cf->connected) { in cf_hc_query()
412 cf->connected = FALSE; in cf_hc_close()
/third_party/node/test/parallel/
Dtest-internal-socket-list-send.js14 const child = Object.assign(new EventEmitter(), { connected: false }); property
32 connected: true, property
55 connected: true, property
75 connected: true, property
100 connected: true, property
129 connected: true, property
Dtest-tls-secure-session.js24 let connected = false; variable
31 assert(!connected);
34 connected = true;
38 assert(connected);
Dtest-child-process-fork-net.js95 let connected = 0; variable
98 switch (connected % 6) {
112 connected += 1;
120 if (connected === count) {
170 assert.strictEqual(connected, count);
Dtest-net-connect-buffer2.js25 let connected = false;
27 socket.connect(this.address().port, common.mustCall(() => connected = true));
43 assert.ok(connected);
Dtest-net-connect-buffer.js46 let connected = false;
48 socket.connect(this.address().port, common.mustCall(() => connected = true));
64 assert.ok(connected);
Dtest-internal-socket-list-receive.js14 connected: false, property
26 connected: true, property
40 connected: true, property
Dtest-http-1.0-keep-alive.js130 const conn = net.createConnection(port, '127.0.0.1', connected);
132 function connected() { function
151 connected();
/third_party/python/Lib/
Dasyncore.py220 connected = False variable in dispatcher
240 self.connected = True
249 self.connected = False
263 elif self.connected:
336 self.connected = False
395 self.connected = False
422 elif not self.connected:
434 self.connected = True
443 if not self.connected:
528 return (not self.connected) or len(self.out_buffer)
[all …]
/third_party/skia/third_party/externals/egl-registry/extensions/NV/
DEGL_NV_stream_consumer_gltexture_yuv.txt117 default), then the stream will be connected to a single texture
120 connected to some number of planar textures, determined by the value
137 If EGL_COLOR_BUFFER_TYPE is EGL_RGB_BUFFER, the stream is connected
147 Plane <n> of the stream contents will be connected to the texture
152 Once connected, the stream will remain associated with the initial
212 On success the texture(s) are connected to the <stream>, <stream>
216 When a producer is later connected, if it cannot support the planar
220 If any texture is later deleted, connected to a different
221 EGLStream, or connected to an EGLImage, then <stream> will be
225 "incomplete" until they are connected to a new EGLStream, connected
/third_party/EGL/extensions/NV/
DEGL_NV_stream_consumer_gltexture_yuv.txt117 default), then the stream will be connected to a single texture
120 connected to some number of planar textures, determined by the value
137 If EGL_COLOR_BUFFER_TYPE is EGL_RGB_BUFFER, the stream is connected
147 Plane <n> of the stream contents will be connected to the texture
152 Once connected, the stream will remain associated with the initial
212 On success the texture(s) are connected to the <stream>, <stream>
216 When a producer is later connected, if it cannot support the planar
220 If any texture is later deleted, connected to a different
221 EGLStream, or connected to an EGLImage, then <stream> will be
225 "incomplete" until they are connected to a new EGLStream, connected
DEGL_NV_stream_origin.txt48 both the connected consumer and producer and appropriate handling is
135 and a producer are connected to the stream. Querying it before that
160 and a producer are connected to the stream. Querying it before that
184 and a producer are connected to the stream. Querying it before that
206 and a producer are connected to the stream. Querying it before that
228 and a producer are connected to the stream. Querying it before that
248 not define a frame orientation are connected to the stream?
250 RESOLVED: If the consumer or producer connected to the stream does
254 2. What should the query return when the connected consumer or
/third_party/lwip/src/apps/http/
Daltcp_proxyconnect.c169 if (conn->connected) { in altcp_proxyconnect_lower_connected()
170 if (conn->connected(conn->arg, conn, err) == ERR_ABRT) { in altcp_proxyconnect_lower_connected()
237 if (conn->connected) { in altcp_proxyconnect_lower_recv()
238 return conn->connected(conn->arg, conn, ERR_OK); in altcp_proxyconnect_lower_recv()
459 …_connect(struct altcp_pcb *conn, const ip_addr_t *ipaddr, u16_t port, altcp_connected_fn connected) in altcp_proxyconnect_connect() argument
475 conn->connected = connected; in altcp_proxyconnect_connect()
/third_party/skia/third_party/externals/egl-registry/extensions/KHR/
DEGL_KHR_stream.txt78 These APIs may be connected directly to an EGLStream as a producer
79 or consumer. Once a stream oriented producer is "connected" to an
83 "connected" to an EGLStream and "started" it may retrieve image
116 consumer works or is "connected" to an EGLStream. Different kinds
311 Each EGLStream may be connected to only one producer and one
312 consumer. Once an EGLStream is connected to a consumer, it will
313 be connected to that consumer until the EGLStream is destroyed.
314 Likewise, once an EGLStream is connected to a producer it will be
315 connected to that producer until the EGLStream is destroyed.
317 producer that can be connected.
[all …]
/third_party/EGL/extensions/KHR/
DEGL_KHR_stream.txt78 These APIs may be connected directly to an EGLStream as a producer
79 or consumer. Once a stream oriented producer is "connected" to an
83 "connected" to an EGLStream and "started" it may retrieve image
116 consumer works or is "connected" to an EGLStream. Different kinds
311 Each EGLStream may be connected to only one producer and one
312 consumer. Once an EGLStream is connected to a consumer, it will
313 be connected to that consumer until the EGLStream is destroyed.
314 Likewise, once an EGLStream is connected to a producer it will be
315 connected to that producer until the EGLStream is destroyed.
317 producer that can be connected.
[all …]
/third_party/openssl/doc/man3/
DBIO_s_datagram.pod46 This BIO can be used with either a connected or unconnected network socket. A
47 connected socket is a network socket which has had L<BIO_connect(3)> or a
56 to become connected. These controls are provided to indicate to the BIO how
68 BIO_s_dgram() only with a connected socket. An exception is where
84 connected.
89 connected, and therefore how the BIO_s_datagram() should attempt to use the
93 underlying socket has been connected and will attempt to use the socket using OS
96 is connected.
99 socket is not connected and will attempt to use the socket using an OS APIs
164 can only be used with a connected socket.
/third_party/node/lib/internal/
Dsocket_list.js19 if (!this.child.connected) return onclose();
68 if (!self.child.connected) return;
86 if (!this.child.connected) return;
/third_party/jerryscript/docs/
D13.DEBUGGER-TRANSPORT.md137 Tells whether a debugger client is connected to the debugger server.
145 - return value: `true`, if a client is connected, `false` otherwise.
152 not connected.
174 - return value: `true`, if a client is still connected, `false` otherwise.
189 - return value: `true`, if a client is still connected, `false` otherwise.
/third_party/glfw/docs/
Dmonitor.dox20 A monitor object represents a currently connected monitor and is represented as
32 video mode, describes the viewports that the connected monitors provide into the
49 You can retrieve all currently connected monitors with @ref glfwGetMonitors.
58 monitors may be moved to a different index when a monitor is connected or
64 If you wish to be notified when a monitor is connected or disconnected, set
72 connected or disconnected and the event that occurred.
79 // The monitor was connected
/third_party/NuttX/drivers/usbdev/gadget/
Dusbd_video.c183 static int uvc_wait_host_sub(uvc_t hdl, int *connected) in uvc_wait_host_sub() argument
203 if ((*connected = fuvc_host_connected(fuvc)) != 0) in uvc_wait_host_sub()
215 int uvc_wait_host(uvc_t hdl, int wait_option, int *connected) in uvc_wait_host() argument
219 if (connected == NULL) in uvc_wait_host()
227 ret = uvc_wait_host_sub(hdl, connected); in uvc_wait_host()
233 ret = uvc_wait_host_sub(hdl, connected); in uvc_wait_host()
234 if (ret != UVC_OK || *connected) in uvc_wait_host()
556 fuvc->connected = 0; in uvc_video_tran_copy()
/third_party/node/deps/npm/node_modules/socks/docs/examples/typescript/
DbindExample.md5 …ted by the SOCKS proxy server it then communicates the remote host that connected to the SOCKS pro…
14 4. Client <--(client2's host info) (Proxy tells the origin client who connected to it)
66 …remoteHost: { // This is the remote ip and port that connected to the SOCKS proxy on the newly bou…
73 …t TCP connection between client and client2 (1.2.3.4) (the client which connected to the proxy on …
/third_party/node/deps/npm/node_modules/socks/docs/examples/javascript/
DbindExample.md5 …ted by the SOCKS proxy server it then communicates the remote host that connected to the SOCKS pro…
14 4. Client <--(client2's host info) (Proxy tells the origin client who connected to it)
66 …remoteHost: { // This is the remote ip and port that connected to the SOCKS proxy on the newly bou…
73 …t TCP connection between client and client2 (1.2.3.4) (the client which connected to the proxy on …

12345678910>>...20