Home
last modified time | relevance | path

Searched refs:connected (Results 1 - 25 of 118) sorted by relevance

12345

/third_party/curl/lib/
H A 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()
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()
545 baller_connect(struct Curl_cfilter *cf, struct Curl_easy *data, struct eyeballer *baller, struct curltime *now, bool *connected) baller_connect() argument
580 is_connected(struct Curl_cfilter *cf, struct Curl_easy *data, bool *connected) is_connected() argument
[all...]
H A Dcfilters.c52 cf->connected = FALSE; in Curl_cf_def_close()
179 while(cf && !cf->connected) { in Curl_conn_recv()
185 failf(data, "recv: no filter connected"); in Curl_conn_recv()
198 while(cf && !cf->connected) { in Curl_conn_send()
204 failf(data, "send: no filter 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()
434 /* Get the lowest not-connected filte in Curl_conn_cf_adjust_pollset()
621 struct curltime connected; conn_report_connect_stats() local
[all...]
H A 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()
179 /* If we are not connected, but the filter "below" is in cf_haproxy_adjust_pollset()
H A 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()
H A Dhttp_proxy.c174 if(cf->connected) { in http_proxy_cf_connect()
191 /* First time call after the subchain connected */ in http_proxy_cf_connect()
227 /* subchain connected and we had already installed the protocol filter. in http_proxy_cf_connect()
236 cf->connected = TRUE; in http_proxy_cf_connect()
249 if(!cf->connected) { in Curl_cf_http_proxy_get_host()
275 cf->connected = FALSE; in http_proxy_cf_close()
/third_party/node/test/parallel/
H A Dtest-tls-secure-session.js24 let connected = false;
31 assert(!connected);
34 connected = true;
38 assert(connected);
H A Dtest-child-process-fork-net.js95 let connected = 0;
98 switch (connected % 6) {
112 connected += 1;
120 if (connected === count) {
170 assert.strictEqual(connected, count);
H A Dtest-http-1.0-keep-alive.js130 const conn = net.createConnection(port, '127.0.0.1', connected);
132 function connected() {
151 connected();
H A Dtest-internal-socket-list-receive.js11 // Verify that the message won't be sent when child is not connected.
14 connected: false,
26 connected: true,
40 connected: true,
H A Dtest-child-process-disconnect.js48 socket.end((process.connected).toString());
77 parentFlag = child.connected;
H A Dtest-tls-connect-given-socket.js76 // Already connected socket
77 const connected = net.connect(port, common.mustCall(() => {
78 establish(connected);
H A Dtest-tls-getprotocol.js37 let connected = 0;
51 if (++connected === clientConfigs.length)
H A Dtest-dgram-send-bad-arguments.js31 function checkArgs(connected) {
44 if (connected) {
50 message: 'Already connected'
59 message: 'Already connected'
68 message: 'Already connected'
77 message: 'Already connected'
/third_party/python/Lib/
H A Dasyncore.py218 connected = False variable in dispatcher
238 self.connected = True
240 # passed be connected.
247 self.connected = False
261 elif self.connected:
262 status.append('connected')
334 self.connected = False
393 self.connected = False
417 # accepting sockets are never connected, they "spawn" new
418 # sockets that are connected
[all...]
/third_party/node/lib/internal/
H A Dsocket_list.js19 if (!this.child.connected) return onclose();
68 if (!self.child.connected) return;
86 if (!this.child.connected) return;
/third_party/lwip/src/apps/http/
H A Daltcp_proxyconnect.c167 /* upper connected is called when handshake is done */ in altcp_proxyconnect_lower_connected()
169 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 altcp_proxyconnect_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/NuttX/drivers/usbdev/gadget/
H A 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()
H A Drndis.c148 bool connected; /* Connection status indicator */ member
425 link_status = dev->connected; in link_status_check_func()
912 if (!priv->connected) in rndis_txpoll()
1015 if (!priv->connected) in rndis_recvpacket()
1248 priv->connected = false; in rndis_handle_control_message()
1390 priv->connected = false; in rndis_handle_control_message()
1394 UINFO("RNDIS is now connected\n"); in rndis_handle_control_message()
1395 priv->connected = true; in rndis_handle_control_message()
1426 priv->connected = false; in rndis_handle_control_message()
1795 priv->connected in usbclass_bind()
[all...]
/third_party/node/test/cctest/
H A Dtest_inspector_socket.cc189 static bool connected = false; member
230 connected = true; in on_new_connection()
351 connected = false;
368 SPIN_WHILE(!connect.data || !connected);
384 ASSERT_TRUE(connected); in TEST_F()
473 ASSERT_TRUE(connected); in TEST_F()
511 ASSERT_TRUE(connected); in TEST_F()
525 ASSERT_TRUE(connected); in TEST_F()
749 ASSERT_TRUE(connected); in TEST_F()
802 ASSERT_TRUE(connected); in TEST_F()
[all...]
H A Dtest_inspector_socket_server.cc274 connected++; in Connected()
292 int connected = 0; member in __anon15477::ServerHolder
399 EXPECT_EQ(1, server.connected); in TEST_F()
420 EXPECT_EQ(1, server.connected); in TEST_F()
429 EXPECT_EQ(2, server.connected); in TEST_F()
443 SPIN_WHILE(3 != server.connected); in TEST_F()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/fst/
H A Dfst.c23 Boolean connected, in fst_ctrl_iface_notify_peer_state_change()
28 extra.peer_state.connected = connected; in fst_ctrl_iface_notify_peer_state_change()
187 fst_printf_iface(iface, MSG_DEBUG, MACSTR " became connected", in fst_notify_peer_connected()
22 fst_ctrl_iface_notify_peer_state_change(struct fst_iface *iface, Boolean connected, const u8 *peer_addr) fst_ctrl_iface_notify_peer_state_change() argument
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/fst/
H A Dfst.c23 bool connected, in fst_ctrl_iface_notify_peer_state_change()
28 extra.peer_state.connected = connected; in fst_ctrl_iface_notify_peer_state_change()
187 fst_printf_iface(iface, MSG_DEBUG, MACSTR_SEC " became connected", in fst_notify_peer_connected()
22 fst_ctrl_iface_notify_peer_state_change(struct fst_iface *iface, bool connected, const u8 *peer_addr) fst_ctrl_iface_notify_peer_state_change() argument
/third_party/glfw/src/
H A Dinput.c424 js->connected = GLFW_TRUE; in _glfwInputJoystick()
426 js->connected = GLFW_FALSE; in _glfwInputJoystick()
1067 if (!js->connected) in glfwJoystickPresent()
1095 if (!js->connected) in glfwGetJoystickAxes()
1127 if (!js->connected) in glfwGetJoystickButtons()
1163 if (!js->connected) in glfwGetJoystickHats()
1192 if (!js->connected) in glfwGetJoystickName()
1220 if (!js->connected) in glfwGetJoystickGUID()
1325 if (js->connected) in glfwUpdateGamepadMappings()
1351 if (!js->connected) in glfwJoystickIsGamepad()
[all...]
/third_party/curl/lib/vquic/
H A Dcurl_msh3.c124 bool connected; member
243 CURL_TRC_CF(data, cf, "[MSH3] connected"); in msh3_conn_connected()
245 ctx->connected = true; in msh3_conn_connected()
258 ctx->connected = false; in msh3_conn_shutdown_complete()
870 if(cf->connected) { in cf_msh3_connect()
900 cf->connected = TRUE; in cf_msh3_connect()
995 if(cf->connected) in cf_msh3_query()
1001 if(cf->connected) in cf_msh3_query()
1022 ctx->connected; in cf_msh3_conn_is_alive()
/third_party/lwip/src/core/
H A Daltcp_tcp.c95 if (conn->connected) { in altcp_tcp_connected()
96 return conn->connected(conn->arg, conn, err); in altcp_tcp_connected()
271 altcp_tcp_connect(struct altcp_pcb *conn, const ip_addr_t *ipaddr, u16_t port, altcp_connected_fn connected) in altcp_tcp_connect() argument
278 conn->connected = connected; in altcp_tcp_connect()

Completed in 18 milliseconds

12345