HomeSort by relevance Sort by last modified time
    Searched refs:GetNextMessage (Results 1 - 19 of 19) 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 28 // that.) To use the object, call GetNextMessage() and pass that message to the
31 // kResultPending: Another round is required. Call GetNextMessage and repeat.
60 // GetNextMessage returns a byte string which must be passed to the other
62 const std::string& GetNextMessage();
65 // call to GetNextMessage() by the other party.
100 // next_message_ contains a value for GetNextMessage() to return.
p224_spake.cc 134 const std::string& P224EncryptedKeyExchange::GetNextMessage() {
143 LOG(FATAL) << "P224EncryptedKeyExchange::GetNextMessage called in"
  /external/libweave/third_party/chromium/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 29 // that.) To use the object, call GetNextMessage() and pass that message to the
32 // kResultPending: Another round is required. Call GetNextMessage and repeat.
61 // GetNextMessage returns a byte string which must be passed to the other
63 const std::string& GetNextMessage();
66 // call to GetNextMessage() by the other party.
101 // next_message_ contains a value for GetNextMessage() to return.
p224_spake.cc 151 const std::string& P224EncryptedKeyExchange::GetNextMessage() {
160 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/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) {
  /external/libweave/src/privet/
security_manager_unittest.cc 102 std::string client_commitment_base64{Base64Encode(spake.GetNextMessage())};
224 std::string client_commitment = Base64Encode(spake.GetNextMessage());
security_manager.cc 47 const std::string& GetMessage() override { return spake_.GetNextMessage(); }

Completed in 4371 milliseconds