Lines Matching refs:tempfd2

751   tempfd2 = socket (AF_UNIX, SOCK_STREAM, 0);  in tf_send()
752 if (tempfd2 == -1) in tf_send()
755 if (connect (tempfd2, (struct sockaddr *) &sun, sizeof (sun)) != 0) in tf_send()
760 set_socket_buffer (tempfd2); in tf_send()
771 size_t s = send (tempfd2, mem, arg == NULL ? sizeof (mem) : 1, 0); in tf_send()
809 tempfd2 = socket (AF_UNIX, SOCK_STREAM, 0); in tf_recv()
810 if (tempfd2 == -1) in tf_recv()
813 if (connect (tempfd2, (struct sockaddr *) &sun, sizeof (sun)) != 0) in tf_recv()
827 recv (tempfd2, mem, arg == NULL ? sizeof (mem) : 0, 0); in tf_recv()
860 tempfd2 = socket (AF_UNIX, SOCK_DGRAM, 0); in tf_recvfrom()
861 if (tempfd2 == -1) in tf_recvfrom()
874 recvfrom (tempfd2, mem, arg == NULL ? sizeof (mem) : 0, 0, in tf_recvfrom()
908 tempfd2 = socket (AF_UNIX, SOCK_DGRAM, 0); in tf_recvmsg()
909 if (tempfd2 == -1) in tf_recvmsg()
932 recvmsg (tempfd2, &m, 0); in tf_recvmsg()
1287 tempfd2 = socket (AF_UNIX, SOCK_STREAM, 0); in tf_sendto()
1288 if (tempfd2 == -1) in tf_sendto()
1291 if (connect (tempfd2, (struct sockaddr *) &sun, sizeof (sun)) != 0) in tf_sendto()
1296 set_socket_buffer (tempfd2); in tf_sendto()
1307 sendto (tempfd2, mem, arg == NULL ? sizeof (mem) : 1, 0, NULL, 0); in tf_sendto()
1344 tempfd2 = socket (AF_UNIX, SOCK_DGRAM, 0); in tf_sendmsg()
1345 if (tempfd2 == -1) in tf_sendmsg()
1368 sendmsg (tempfd2, &m, 0); in tf_sendmsg()
1429 tempfd2 = socket (AF_UNIX, SOCK_STREAM, 0); in tf_connect()
1430 if (tempfd2 == -1) in tf_connect()
1440 connect (tempfd2, (struct sockaddr *) &sun, sizeof (sun)); in tf_connect()