HomeSort by relevance Sort by last modified time
    Searched refs:GetNextMessage (Results 1 - 17 of 17) sorted by null

  /external/google-tv-pairing-protocol/cpp/tests/polo/pairing/
serverpairingsessiontest.cc 72 EXPECT_CALL(wire_, GetNextMessage());
92 EXPECT_CALL(wire_, GetNextMessage());
101 EXPECT_CALL(wire_, GetNextMessage());
111 EXPECT_CALL(wire_, GetNextMessage());
129 EXPECT_CALL(wire_, GetNextMessage());
clientpairingsessiontest.cc 81 EXPECT_CALL(wire_, GetNextMessage());
107 EXPECT_CALL(wire_, GetNextMessage());
116 EXPECT_CALL(wire_, GetNextMessage());
132 EXPECT_CALL(wire_, GetNextMessage());
pairingsessiontest.cc 159 EXPECT_CALL(wire_, GetNextMessage());
213 EXPECT_CALL(wire_, GetNextMessage());
243 EXPECT_CALL(wire_, GetNextMessage());
  /external/libchrome/crypto/
p224_spake_unittest.cc 29 client_message = client->GetNextMessage();
30 server_message = server->GetNextMessage();
91 std::string client_message = client.GetNextMessage();
97 std::string server_message = server.GetNextMessage();
135 client_message = client.GetNextMessage();
136 server_message = server.GetNextMessage();
p224_spake.h 30 // that.) To use the object, call GetNextMessage() and pass that message to the
33 // kResultPending: Another round is required. Call GetNextMessage and repeat.
62 // GetNextMessage returns a byte string which must be passed to the other
64 const std::string& GetNextMessage();
67 // call to GetNextMessage() by the other party.
102 // next_message_ contains a value for GetNextMessage() to return.
p224_spake.cc 137 const std::string& P224EncryptedKeyExchange::GetNextMessage() {
146 LOG(FATAL) << "P224EncryptedKeyExchange::GetNextMessage called in"
  /external/google-tv-pairing-protocol/cpp/src/polo/pairing/
serverpairingsession.cc 37 wire()->GetNextMessage();
42 wire()->GetNextMessage();
57 wire()->GetNextMessage();
clientpairingsession.cc 49 wire()->GetNextMessage();
61 wire()->GetNextMessage();
75 wire()->GetNextMessage();
pairingsession.cc 121 wire_->GetNextMessage();
176 wire_->GetNextMessage();
  /external/google-tv-pairing-protocol/cpp/src/polo/wire/
polowireadapter.h 45 virtual void GetNextMessage() = 0;
  /external/libmojo/mojo/edk/system/ports/
message_queue.h 45 void GetNextMessage(ScopedMessage* message, MessageFilter* filter);
50 // GetNextMessage.
53 // until GetNextMessage is called enough times to return a null message.
message_queue.cc 48 void MessageQueue::GetNextMessage(ScopedMessage* message,
node.cc 287 port->message_queue.GetNextMessage(message, filter);
    [all...]
  /external/google-tv-pairing-protocol/cpp/tests/polo/wire/
mocks.h 40 MOCK_METHOD0(GetNextMessage, void());
  /external/google-tv-pairing-protocol/cpp/src/polo/wire/protobuf/
protobufwireadapter.h 37 virtual void GetNextMessage();
protobufwireadapter.cc 35 void ProtobufWireAdapter::GetNextMessage() {
37 LOG(ERROR) << "Invalid state: GetNextMessage called during a read";
  /external/google-tv-pairing-protocol/cpp/tests/polo/wire/protobuf/
protobufwireadaptertest.cc 68 // Expects that a call to GetNextMessage will be made which triggers a read
72 adapter_.GetNextMessage();
75 // Expects that a call to GetNextMessage will be made, and the preamble will
109 // Verifies that a call to GetNextMessage will trigger a read for the 4 byte
111 TEST_F(ProtobufWireAdapterTest, GetNextMessage) {

Completed in 395 milliseconds