Home
last modified time | relevance | path

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

/system/core/libcutils/include/cutils/
Dsockets.h127 } cutils_socket_buffer_t; typedef
132 const cutils_socket_buffer_t* buffers,
/system/core/libcutils/include_vndk/cutils/
Dsockets.h127 } cutils_socket_buffer_t; typedef
132 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.cpp117 bool Send(std::vector<cutils_socket_buffer_t> buffers) override;
143 bool UdpSocket::Send(std::vector<cutils_socket_buffer_t> buffers) { in Send()
175 bool Send(std::vector<cutils_socket_buffer_t> buffers) override;
198 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.cpp164 if (!socket_->Send(std::vector<cutils_socket_buffer_t>{{header, 8}, {data, length}})) { in Write()
/system/core/libcutils/
Dsockets_windows.cpp58 const cutils_socket_buffer_t* buffers, in socket_send_buffers()
Dsockets_unix.cpp35 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()
/system/core/fastboot/device/
Dtcp_client.cpp111 if (!socket_->Send(std::vector<cutils_socket_buffer_t>{{header, 8}, {data, len}})) { in Write()