Home
last modified time | relevance | path

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

/system/core/libcutils/include/cutils/
Dsockets.h135 } cutils_socket_buffer_t; typedef
140 const cutils_socket_buffer_t* buffers,
/system/core/libcutils/include_vndk/cutils/
Dsockets.h135 } cutils_socket_buffer_t; typedef
140 const cutils_socket_buffer_t* buffers,
/system/core/fastboot/
Dsocket.h80 virtual bool Send(std::vector<cutils_socket_buffer_t> buffers) = 0;
118 std::function<ssize_t(cutils_socket_t, cutils_socket_buffer_t*, size_t)>
Dsocket.cpp115 bool Send(std::vector<cutils_socket_buffer_t> buffers) override;
141 bool UdpSocket::Send(std::vector<cutils_socket_buffer_t> buffers) { in Send()
173 bool Send(std::vector<cutils_socket_buffer_t> buffers) override;
196 bool TcpSocket::Send(std::vector<cutils_socket_buffer_t> buffers) { in Send()
Dsocket_test.cpp177 std::vector<cutils_socket_buffer_t> buffers{{data[0].data(), data[0].length()}, in TEST()
185 cutils_socket_t /*cutils_sock*/, cutils_socket_buffer_t* sent_buffers, in TEST()
214 std::vector<cutils_socket_buffer_t> buffers{{data[0].data(), data[0].length()}, in TEST()
244 cutils_socket_t /*cutils_sock*/, cutils_socket_buffer_t* buffers, in TEST()
Dsocket_mock.h59 bool Send(std::vector<cutils_socket_buffer_t> buffers) override;
Dsocket_mock.cpp65 bool SocketMock::Send(std::vector<cutils_socket_buffer_t> buffers) { in Send()
Dtcp.cpp163 if (!socket_->Send(std::vector<cutils_socket_buffer_t>{{header, 8}, {data, length}})) { in Write()
/system/core/libcutils/
Dsockets_windows.cpp63 const cutils_socket_buffer_t* buffers, in socket_send_buffers()
Dsockets_unix.cpp42 const cutils_socket_buffer_t* buffers, in socket_send_buffers()
Dsockets_test.cpp65 cutils_socket_buffer_t socket_buffers[] = { {data[0].data(), data[0].length()}, in TestConnectedSockets()