HomeSort by relevance Sort by last modified time
    Searched full:socket_send_buffers (Results 1 - 6 of 6) sorted by null

  /system/core/libcutils/tests/
sockets_test.cpp 61 // Send multiple buffers using socket_send_buffers().
66 EXPECT_EQ(11, socket_send_buffers(client, socket_buffers, 3));
184 // Tests socket_send_buffers() failure.
186 EXPECT_EQ(-1, socket_send_buffers(INVALID_SOCKET, nullptr, 0));
  /system/core/libcutils/
sockets_unix.cpp 62 ssize_t socket_send_buffers(cutils_socket_t sock, function
sockets_windows.cpp 62 ssize_t socket_send_buffers(cutils_socket_t sock, function
  /system/core/fastboot/
socket.h 118 // should call this rather than using socket_send_buffers() directly.
120 socket_send_buffers_function_ = &socket_send_buffers;
socket_test.cpp 182 // Mock out socket_send_buffers() to verify we're sending in the correct buffers and
208 // Tests TCP re-sending until socket_send_buffers() sends all data. This is a little complicated,
209 // but the general idea is that we intercept calls to socket_send_buffers() using a lambda mock
240 // Create a mock function for custom socket_send_buffers() behavior. This function will
  /system/core/include/cutils/
sockets.h 146 * socket_send_buffers(sock, buffers, 2);
160 ssize_t socket_send_buffers(cutils_socket_t sock,

Completed in 163 milliseconds