Searched refs:send_fds (Results 1 - 3 of 3) sorted by relevance
/third_party/libuv/test/ |
H A 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_OK(socketpair(AF_UNIX, SOCK_STREAM, 0, send_fds + i)); in TEST_IMPL() 121 ASSERT_EQ(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/ |
H A D | socket.py | 15 send_fds() -- Send file descriptor to the socket. 552 def send_fds(sock, buffers, fds, flags=0, address=None): function 553 """ send_fds(sock, buffers, fds[, flags[, address]]) -> integer 559 __all__.append("send_fds")
|
/third_party/python/Lib/test/ |
H A D | test_socket.py | 6663 @requireAttrs(socket, "send_fds") 6685 socket.send_fds(sock1, [MSG], fds)
|
Completed in 12 milliseconds