Home
last modified time | relevance | path

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

/external/adhd/cras/src/tests/
Dutil_unittest.cc22 int send_fds[2]; in TEST() local
36 send_fds[0] = fd[1]; in TEST()
37 send_fds[1] = fd2[1]; in TEST()
38 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/ext/base/
Dunix_socket.h140 const int* send_fds = nullptr,
316 bool Send(const void* msg, size_t len, const int* send_fds, size_t num_fds);
/external/perfetto/src/base/
Dunix_socket.cc453 const int* send_fds, in Send() argument
474 memcpy(CMSG_DATA(cmsg), send_fds, num_fds * sizeof(int)); in Send()
903 const int* send_fds, in Send() argument
911 const ssize_t sz = sock_raw_.Send(msg, len, send_fds, num_fds); in Send()
/external/libabigail/tests/data/test-diff-pkg/
DlibICE-1.0.6-1.el6.x86_64.rpm--libICE-1.0.9-2.el7.x86_64.rpm-report-0.txt29 '_XtransConnFd* send_fds', at offset 704 (in bits) at Xtransint.h:149:1
/external/python/cpython3/Lib/
Dsocket.py550 def send_fds(sock, buffers, fds, flags=0, address=None): function
/external/python/cpython3/Doc/library/
Dsocket.rst1613 def send_fds(sock, msg, fds):
1636 .. method:: socket.send_fds(sock, buffers, fds[, flags[, address]])
/external/python/cpython3/Doc/whatsnew/
D3.9.rst656 The socket module now has the :func:`socket.send_fds` and
/external/python/cpython3/Misc/NEWS.d/
D3.9.0a1.rst3209 The socket module now has the :func:`socket.send_fds` and
/external/python/cpython3/Lib/test/
Dtest_socket.py6577 socket.send_fds(sock1, [MSG], fds)