Searched defs:connected (Results 1 - 8 of 8) sorted by relevance

/vbox/src/VBox/Devices/PC/ipxe/src/net/infiniband/
H A Dib_cmrc.c86 /** QP is connected */
87 int connected; member in struct:ib_cmrc_connection
158 DBGC ( cmrc, "CMRC %p connected\n", cmrc );
159 cmrc->connected = 1;
163 cmrc->connected = 0;
276 if ( ! cmrc->connected ) {
330 * connected.
332 return ( cmrc->connected ? IB_MAX_PAYLOAD_SIZE : 0 );
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/BsdSocketLib/
H A Dres_send.c125 static int connected = 0; /* is the socket connected */ variable
581 connected = 0;
589 * If our datagram socket is "connected" to the
595 * however, we don't want to remain connected,
604 if (!connected) {
616 connected = 1;
629 if (connected) {
649 connected = 0;
931 connected
[all...]
/vbox/src/VBox/Devices/Network/lwip/src/api/
H A Dsockets.c85 ENOTCONN, /* ERR_CONN -6 Not connected. */
533 int ret,connected; local
541 /* get the peer if currently connected */
542 connected = (netconn_peer(sock->conn, &addr, &port) == ERR_OK);
557 if (connected)
/vbox/src/VBox/Devices/Network/lwip-new/src/include/lwip/
H A Dtcp.h114 /** Function prototype for tcp connected callback functions. Called when a pcb
115 * is connected to the remote side after initiating a connection attempt by
119 * @param tpcb The connection pcb which is connected
147 /* Function to call when a listener has been connected.
149 * @param pcb a new tcp_pcb that now is connected
262 tcp_connected_fn connected; member in struct:tcp_pcb
364 u16_t port, tcp_connected_fn connected);
399 #define tcp_connect_ip6(pcb, ip6addr, port, connected) \
400 tcp_connect(pcb, ip6_2_ip(ip6addr), port, connected)
/vbox/src/VBox/Devices/Network/lwip/src/include/lwip/
H A Dtcp.h82 u16_t port, err_t (* connected)(void *arg,
296 err_t (* connected)(void *arg, struct tcp_pcb *pcb, err_t err); member in struct:tcp_pcb
298 /* Function to call when a listener has been connected. */
334 /* Function to call when a listener has been connected. */
380 if((pcb)->connected != NULL) \
381 (ret = (pcb)->connected((pcb)->callback_arg,(pcb),(err)))
/vbox/src/VBox/Devices/Network/lwip-new/src/core/
H A Dtcp.c106 /** List of all TCP PCBs bound but not yet (connected || listening) */
165 * Connection pcbs are freed if not yet connected and may not be referenced
283 * Connection pcbs are freed if not yet connected and may not be referenced
352 /* Not (yet?) connected, cannot shutdown the TX side as that would bring us
565 LWIP_ERROR("tcp_listen: pcb already connected", pcb->state == CLOSED, return NULL);
740 * Connects to another host. The function given as the "connected"
746 * @param connected callback function to call when connected (or on error)
753 tcp_connected_fn connected)
830 pcb->connected
752 tcp_connect(struct tcp_pcb *pcb, ip_addr_t *ipaddr, u16_t port, tcp_connected_fn connected) argument
[all...]
/vbox/src/VBox/Additions/linux/lightdm-greeter/liblightdm-gobject-1.5.0/
H A Dgreeter.c48 gboolean connected; member in struct:__anon2079
475 * Connects the greeter to the display manager. Will block until connected.
477 * Return value: #TRUE if successfully connected
533 priv->connected = TRUE;
804 g_return_if_fail (priv->connected);
840 g_return_if_fail (priv->connected);
892 g_return_if_fail (priv->connected);
931 g_return_if_fail (priv->connected);
980 g_return_if_fail (priv->connected);
1050 g_return_if_fail (priv->connected);
[all...]
/vbox/src/libs/xpcom18a4/ipc/ipcd/client/src/
H A Dipcdclient.cpp164 // the monitor protects the targetMap and the connected and shutdown flags.
176 PRBool connected; member in class:ipcClientState
189 , connected(PR_FALSE)
191 : connected(PR_FALSE)
393 while (gClientState->connected && (!gClientState->shutdown || isIPCMTarget))
493 LOG(("woke up from sleep [pendingQempty=%d connected=%d shutdown=%d isIPCMTarget=%d]\n",
494 td->pendingQ.IsEmpty(), gClientState->connected,
791 gClientState->connected = PR_TRUE;
845 LOG(("IPC_Shutdown: connected=%d\n",gClientState->connected));
[all...]

Completed in 4537 milliseconds