Home
last modified time | relevance | path

Searched refs:send_fds (Results 1 – 6 of 6) sorted by relevance

/third_party/libuv/test/
Dtest-pipe-sendmsg.c111 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/
Dsocket.py551 def send_fds(sock, buffers, fds, flags=0, address=None): function
/third_party/python/Doc/library/
Dsocket.rst1156 .. function:: send_fds(sock, buffers, fds[, flags[, address]])
1653 def send_fds(sock, msg, fds):
/third_party/python/Doc/whatsnew/
D3.9.rst664 The socket module now has the :func:`socket.send_fds` and
/third_party/python/Misc/NEWS.d/
D3.9.0a1.rst3209 The socket module now has the :func:`socket.send_fds` and
/third_party/python/Lib/test/
Dtest_socket.py6578 socket.send_fds(sock1, [MSG], fds)