Searched refs:tempfd2 (Results 1 – 5 of 5) sorted by relevance
/glibc-2.36/sysdeps/pthread/ |
D | tst-cancel4.c | 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() [all …]
|
D | tst-cancel4-common.c | 122 if (tempfd2 != -1) in do_test() 124 close (tempfd2); in do_test() 125 tempfd2 = -1; in do_test() 224 if (tempfd2 != -1) in do_test() 226 close (tempfd2); in do_test() 227 tempfd2 = -1; in do_test()
|
D | tst-cancel4-common.h | 31 static int tempfd2 = -1; variable
|
/glibc-2.36/nptl/ |
D | tst-cancel4_1.c | 66 tempfd2 = socket (AF_UNIX, SOCK_DGRAM, 0); in tf_sendmmsg() 67 if (tempfd2 == -1) in tf_sendmmsg() 94 ssize_t ret = sendmmsg (tempfd2, &mm, 1, 0); in tf_sendmmsg()
|
D | tst-cancel4_2.c | 62 tempfd2 = socket (AF_UNIX, SOCK_DGRAM, 0); in tf_recvmmsg() 63 if (tempfd2 == -1) in tf_recvmmsg() 92 ssize_t ret = recvmmsg (tempfd2, &mm, 1, 0, NULL); in tf_recvmmsg()
|