Home | History | Annotate | Download | only in android

Lines Matching refs:Socket

92 typedef int Socket;
97 Socket sock; /* socket used for communication */
108 /* listening socket */
109 Socket listen_fd;
193 /* Detach the socket descriptor from a given ControlClient
195 * the client, or redirecting the socket to another service.
197 * NOTE: this does not close the socket.
216 /* Reattach a control client to a given socket.
217 * Return the old socket descriptor for the client.
322 control_client_create( Socket socket,
328 socket_set_nodelay( socket );
329 socket_set_nonblock( socket );
332 client->sock = socket;
336 qemu_set_fd_handler( socket, control_client_read, NULL, client );
599 Socket fd;
631 Socket fd;
639 perror("socket");
2671 /* Detach the client socket, and re-attach it to a monitor */
2673 snprintf(socketname, sizeof socketname, "tcp:socket=%d", fd);