Lines Matching defs:socket
29 * Output includes socket fd instead of socket pointer address to avoid
32 * The socket pointer address is not used at the moment and it was made
33 * visible as a convenient way to find IP address from socket pointer
299 * connection and then write its socket descriptor with remote device
311 struct socket *socket;
325 * @sockfd: socket descriptor of an established TCP connection
359 /* Extract socket from fd. */
360 socket = sockfd_lookup(sockfd, &err);
361 if (!socket) {
366 if (socket->type != SOCK_STREAM) {
368 socket->type);
369 sockfd_put(socket);
377 sockfd_put(socket);
384 sockfd_put(socket);
402 sockfd_put(socket);
423 vdev->ud.tcp_socket = socket;