Home
last modified time | relevance | path

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

/external/adhd/cras/src/tests/
Dutil_unittest.cc21 int send_fds[2]; in TEST() local
35 send_fds[0] = fd[1]; in TEST()
36 send_fds[1] = fd2[1]; in TEST()
37 ASSERT_GE(cras_send_with_fds(sock[0], msg, strlen(msg), send_fds, num_fds), in TEST()
/external/libchrome/base/posix/
Dunix_domain_socket.cc254 std::vector<int> send_fds; in SendRecvMsgWithFlags() local
255 send_fds.push_back(send_sock.get()); in SendRecvMsgWithFlags()
256 if (!SendMsg(fd, request.data(), request.size(), send_fds)) in SendRecvMsgWithFlags()
Dunix_domain_socket_unittest.cc140 std::vector<int> send_fds(UnixDomainSocket::kMaxFileDescriptors, in TEST() local
143 send_fds)); in TEST()
/external/perfetto/include/perfetto/base/
Dunix_socket.h83 const int* send_fds = nullptr,
240 const int* send_fds,
/external/perfetto/src/base/
Dunix_socket.cc251 const int* send_fds, in Send() argument
272 memcpy(CMSG_DATA(cmsg), send_fds, num_fds * sizeof(int)); in Send()
590 const int* send_fds, in Send() argument
604 const ssize_t sz = sock_raw_.Send(msg, len, send_fds, num_fds); in Send()
/external/python/cpython3/Doc/library/
Dsocket.rst1449 def send_fds(sock, msg, fds):