Home
last modified time | relevance | path

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

/aosp12/system/core/libcutils/include/cutils/
H A Dsockets.h127 } cutils_socket_buffer_t; typedef
132 const cutils_socket_buffer_t* buffers,
/aosp12/system/core/libcutils/include_outside_system/cutils/
H A Dsockets.h127 } cutils_socket_buffer_t; typedef
132 const cutils_socket_buffer_t* buffers,
/aosp12/system/core/fastboot/
H A 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()
H A 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)>
H A 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()
H A Dsocket_mock.h59 bool Send(std::vector<cutils_socket_buffer_t> buffers) override;
H A Dsocket_mock.cpp65 bool SocketMock::Send(std::vector<cutils_socket_buffer_t> buffers) { in Send()
H A Dtcp.cpp164 if (!socket_->Send(std::vector<cutils_socket_buffer_t>{{header, 8}, {data, length}})) { in Write()
/aosp12/system/core/libcutils/
H A Dsockets_windows.cpp58 const cutils_socket_buffer_t* buffers, in socket_send_buffers()
H A Dsockets_unix.cpp35 const cutils_socket_buffer_t* buffers, in socket_send_buffers()
H A Dsockets_test.cpp65 cutils_socket_buffer_t socket_buffers[] = { {data[0].data(), data[0].length()}, in TestConnectedSockets()
/aosp12/system/core/fastboot/device/
H A Dtcp_client.cpp111 if (!socket_->Send(std::vector<cutils_socket_buffer_t>{{header, 8}, {data, len}})) { in Write()