Searched refs:send_fds (Results 1 – 6 of 6) sorted by relevance
/third_party/libuv/test/ |
D | test-pipe-sendmsg.c | 111 int send_fds[ARRAY_SIZE(incoming)]; in TEST_IMPL() local 119 for (i = 0; i < ARRAY_SIZE(send_fds); i += 2) in TEST_IMPL() 120 ASSERT(0 == socketpair(AF_UNIX, SOCK_STREAM, 0, send_fds + i)); in TEST_IMPL() 121 ASSERT(i == ARRAY_SIZE(send_fds)); in TEST_IMPL() 132 msg.msg_controllen = CMSG_LEN(sizeof(send_fds)); in TEST_IMPL() 144 for (i = 0; i < ARRAY_SIZE(send_fds); i++) in TEST_IMPL() 145 pi[i] = send_fds[i]; in TEST_IMPL()
|
/third_party/python/Lib/ |
D | socket.py | 551 def send_fds(sock, buffers, fds, flags=0, address=None): function
|
/third_party/python/Doc/library/ |
D | socket.rst | 1156 .. function:: send_fds(sock, buffers, fds[, flags[, address]]) 1653 def send_fds(sock, msg, fds):
|
/third_party/python/Doc/whatsnew/ |
D | 3.9.rst | 664 The socket module now has the :func:`socket.send_fds` and
|
/third_party/python/Misc/NEWS.d/ |
D | 3.9.0a1.rst | 3209 The socket module now has the :func:`socket.send_fds` and
|
/third_party/python/Lib/test/ |
D | test_socket.py | 6578 socket.send_fds(sock1, [MSG], fds)
|