Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/tools/rootcanal/model/setup/
Dtest_channel_transport.cc49 ssize_t bytes_read = socket->Recv(&command_name_size, 1); in OnCommandReady()
57 bytes_read = socket->Recv(command_name_raw.data(), command_name_size); in OnCommandReady()
72 bytes_read = socket->Recv(&num_args, 1); in OnCommandReady()
80 bytes_read = socket->Recv(&arg_size, 1); in OnCommandReady()
87 bytes_read = socket->Recv(arg.data(), arg_size); in OnCommandReady()
/packages/modules/Bluetooth/tools/rootcanal/model/devices/
Dlink_layer_socket_device.cc46 socket_->Recv(size_bytes_->data() + offset_, kSizeBytes); in Tick()
69 socket_->Recv(received_->data() + offset_, bytes_left_); in Tick()
/packages/modules/Bluetooth/tools/rootcanal/net/
Dasync_data_channel.h58 virtual ssize_t Recv(uint8_t* buffer, uint64_t bufferSize) = 0;
/packages/modules/Bluetooth/system/gd/hal/
Dsyscall_wrapper_mock.h40 MOCK_METHOD(ssize_t, Recv, (int, void*, size_t, int));
Dsyscall_wrapper_impl.h35 ssize_t Recv(int fd, void* buf, size_t n, int flags);
Dsyscall_wrapper_interface.h44 virtual ssize_t Recv(int fd, void* buf, size_t n, int flags) = 0;
Dsyscall_wrapper_impl.cc52 ssize_t SyscallWrapperImpl::Recv(int fd, void* buf, size_t n, int flags) { in Recv() function in bluetooth::hal::SyscallWrapperImpl
/packages/modules/Bluetooth/tools/rootcanal/net/posix/
Dposix_async_socket.h51 ssize_t Recv(uint8_t* buffer, uint64_t bufferSize) override;
Dposix_async_socket.cc68 ssize_t PosixAsyncSocket::Recv(uint8_t* buffer, uint64_t bufferSize) { in Recv() function in android::net::PosixAsyncSocket
/packages/modules/Bluetooth/tools/rootcanal/test/
Dposix_socket_unittest.cc178 int recv = sock2->Recv(buffer, buflen); in TEST_F()
221 ASSERT_GT(sock2->Recv(buffer, buflen), 0); in TEST_F()
/packages/modules/Bluetooth/tools/rootcanal/model/hci/
Dh4_data_channel_packetizer.cc75 ssize_t bytes_read = socket->Recv(buffer.data(), bytes_to_read); in OnDataReady()