HomeSort by relevance Sort by last modified time
    Searched refs:Receive (Results 1 - 25 of 40) sorted by null

1 2

  /external/google-tv-pairing-protocol/cpp/src/polo/wire/
polowireinterface.h 33 // Sets the listener that will receive incoming data and error notifications.
43 // @param num_bytes the number of bytes to receive
44 virtual void Receive(size_t num_bytes) = 0;
47 // Gets the listener that will receive incoming data and error notifications.
  /external/llvm/tools/lli/
RemoteTargetExternal.h 96 if (!Receive(LLI_ChildActive)) {
123 bool Receive(LLIMessageType Msg);
124 bool Receive(LLIMessageType Msg, int32_t &Data);
125 bool Receive(LLIMessageType Msg, uint64_t &Data);
RemoteTargetExternal.cpp 39 if (!Receive(LLI_AllocationResult, Address)) {
60 if (!Receive(LLI_LoadResult, Status)) {
84 if (!Receive(LLI_LoadResult, Status)) {
106 if (!Receive(LLI_ExecutionResult, RetVal)) {
175 bool RemoteTargetExternal::Receive(LLIMessageType Msg) {
187 bool RemoteTargetExternal::Receive(LLIMessageType Msg, int32_t &Data) {
198 bool RemoteTargetExternal::Receive(LLIMessageType Msg, uint64_t &Data) {
211 "Payload vector not empty to receive header");
232 "Payload vector empty to receive");
  /external/libchrome/base/win/
scoped_comptr.h 77 // Used to receive object pointers as out arguments (and take ownership).
79 // Usage: Foo(p.Receive());
80 Interface** Receive() {
87 return reinterpret_cast<void**>(Receive());
111 return object->QueryInterface(Receive());
132 QueryInterface(my_identity.Receive());
135 other->QueryInterface(other_identity.Receive());
scoped_propvariant.h 30 PROPVARIANT* Receive() {
35 // Clears the instance to prepare it for re-use (e.g., via Receive).
  /external/webrtc/webrtc/modules/audio_device/android/
opensles_common.h 30 SLType* Receive() {
opensles_player.cc 275 slCreateEngine(engine_object_.Receive(), 1, option, 0, NULL, NULL),
302 RETURN_ON_ERROR((*engine_)->CreateOutputMix(engine_, output_mix_.Receive(), 0,
349 engine_, player_object_.Receive(), &audio_source, &audio_sink,
  /external/libchrome/base/
sync_socket.h 76 // buffer is a pointer to the buffer to receive data.
77 // length is the number of bytes of data to receive (must be non-zero).
79 virtual size_t Receive(void* buffer, size_t length);
81 // Same as Receive() but only blocks for data until |timeout| has elapsed or
88 // Returns the number of bytes available. If non-zero, Receive() will not
104 // another thread while a blocking Receive or Send is being done from the
118 // a blocking Receive or Send.
129 size_t Receive(void* buffer, size_t length) override;
sync_socket_unittest.cc 29 // Use receive with timeout so we don't hang the test harness indefinitely.
57 // Verify |socket_a| can send to |socket_a| and |socket_a| can Receive from
61 ASSERT_EQ(sizeof(kSending), socket_b->Receive(&received, sizeof(kSending)));
71 ASSERT_EQ(sizeof(kSending), socket_a->Receive(&received, sizeof(kSending)));
125 // Ensure the receive didn't just timeout.
sync_socket_posix.cc 28 // To avoid users sending negative message lengths to Send/Receive
127 size_t SyncSocket::Receive(void* buffer, size_t length) {
148 // this case, the best we can do is Peek() to see if we can Receive() now or
151 return Peek() < length ? 0 : Receive(buffer, length);
191 Receive(static_cast<char*>(buffer) + bytes_read_total, bytes_to_read);
  /system/core/fastboot/
socket.cpp 55 ssize_t bytes = Receive(reinterpret_cast<char*>(data) + total, length - total, timeout_ms);
116 ssize_t Receive(void* data, size_t length, int timeout_ms) override;
151 ssize_t UdpSocket::Receive(void* data, size_t length, int timeout_ms) {
174 ssize_t Receive(void* data, size_t length, int timeout_ms) override;
230 ssize_t TcpSocket::Receive(void* data, size_t length, int timeout_ms) {
socket_test.cpp 98 EXPECT_EQ(-1, server->Receive(buffer, sizeof(buffer), kShortTimeoutMs));
101 EXPECT_EQ(-1, client->Receive(buffer, sizeof(buffer), kShortTimeoutMs));
108 EXPECT_EQ(-1, client->Receive(buffer, sizeof(buffer), kShortTimeoutMs));
120 EXPECT_EQ(-1, server->Receive(buffer, sizeof(buffer), kTestTimeoutMs));
124 EXPECT_EQ(-1, client->Receive(buffer, sizeof(buffer), kTestTimeoutMs));
131 EXPECT_EQ(0, client->Receive(buffer, sizeof(buffer), kTestTimeoutMs));
156 // Tests UDP receive overflow when the UDP packet is larger than the receive buffer.
165 ssize_t bytes = server->Receive(buffer, 5, kTestTimeoutMs);
356 EXPECT_NONFATAL_FAILURE(mock->Receive(&c, 1, 0), "not enough bytes (1) for foo")
    [all...]
socket.h 63 // A UDP server saves sender addresses in Receive(), and uses the most recent address during
83 // Waits up to |timeout_ms| to receive up to |length| bytes of data. |timout_ms| of 0 will
86 virtual ssize_t Receive(void* data, size_t length, int timeout_ms) = 0;
88 // Calls Receive() until exactly |length| bytes have been received or an error occurs.
91 // Returns true if the last Receive() call timed out normally and can be retried; fatal errors
socket_mock.h 61 ssize_t Receive(void* data, size_t length, int timeout_ms) override;
71 // Adds data to provide for Receive().
74 // Adds a Receive() timeout after which ReceiveTimedOut() will return true.
77 // Adds a Receive() failure after which ReceiveTimedOut() will return false.
92 bool status; // Return value for Send() or timeout status for Receive().
socket_mock.cpp 73 ssize_t SocketMock::Receive(void* data, size_t length, int /*timeout_ms*/) {
75 ADD_FAILURE() << "Receive() was called when no message was ready";
81 ADD_FAILURE() << "Receive() was called out-of-order";
87 ADD_FAILURE() << "Receive(): not enough bytes (" << length << ") for " << message;
  /external/webrtc/webrtc/p2p/base/
stunserver_unittest.cc 52 StunMessage* Receive() {
83 StunMessage* msg = Receive();
relayserver_unittest.cc 107 return Receive(client1_.get());
110 return Receive(client2_.get());
118 StunMessage* Receive(rtc::TestClient* client) {
  /system/core/libmemunreachable/
LeakPipe.h 143 bool Receive(T* value) {
146 ALOGE("failed to receive value: %s", strerror(errno));
159 if (!Receive(&size)) {
MemUnreachable.cpp 391 ok = ok && pipe.Receiver().Receive(&info.num_allocations);
392 ok = ok && pipe.Receiver().Receive(&info.allocation_bytes);
393 ok = ok && pipe.Receiver().Receive(&info.num_leaks);
394 ok = ok && pipe.Receiver().Receive(&info.leak_bytes);
  /external/google-tv-pairing-protocol/cpp/tests/polo/wire/
mocks.h 30 MOCK_METHOD1(Receive, void(size_t num_bytes));
  /external/webrtc/webrtc/modules/video_capture/windows/
sink_filter_ds.h 48 STDMETHODIMP Receive (IN IMediaSample *);
  /frameworks/rs/api/
rs_io.spec 23 <li>Send the processed allocation or receive the next allocation to process.</li></ul>
30 summary: Receive new content from the queue
32 Receive a new set of contents from the queue.
  /external/webrtc/webrtc/tools/rtcbot/rtcBotReportVisualizer/
main.js 62 // Receive bandwidth
63 analyzeData(reports, filesNames, "Available Receive Bandwidth-bot1", "bot1",
65 analyzeData(reports, filesNames, "Available Receive Bandwidth-bot2", "bot2",
  /external/autotest/client/tests/kvm/deps/
rss.cpp 299 BOOL Receive(SOCKET socket, char *buffer, int len)
362 // Receive data from the socket
542 if (!Receive(socket, (char *)&packet_size, 4))
546 if (!Receive(socket, buffer, packet_size))
594 // Receive data into a file
657 if (!Receive(ci->socket, (char *)&msg, 4))
658 return TerminateTransfer(ci, "Could not receive further msgs");
664 "RSS_SET_PATH: could not receive path, or path too long");
674 "RSS_CREATE_FILE: could not receive filename");
688 "RSS_CREATE_DIR: could not receive dirname")
    [all...]
  /external/google-tv-pairing-protocol/cpp/tests/polo/wire/protobuf/
protobufwireadaptertest.cc 71 EXPECT_CALL(interface_, Receive(4));
83 EXPECT_CALL(interface_, Receive(message_size));

Completed in 576 milliseconds

1 2