OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SecretMessage
(Results
1 - 3
of
3
) sorted by null
/external/google-tv-pairing-protocol/cpp/src/polo/pairing/message/
secretmessage.cc
15
#include "polo/pairing/message/
secretmessage
.h"
24
SecretMessage
::
SecretMessage
(const std::vector<uint8_t>& secret)
29
const std::vector<uint8_t>&
SecretMessage
::secret() const {
33
std::string
SecretMessage
::ToString() const {
35
ss << "[
SecretMessage
secret="
secretmessage.h
29
class
SecretMessage
: public PoloMessage {
33
explicit
SecretMessage
(const std::vector<uint8_t>& secret);
43
DISALLOW_COPY_AND_ASSIGN(
SecretMessage
);
/external/google-tv-pairing-protocol/java/src/com/google/polo/pairing/message/
SecretMessage.java
27
public class
SecretMessage
extends PoloMessage {
31
public
SecretMessage
(byte[] secret) {
57
if (!(obj instanceof
SecretMessage
)) {
61
SecretMessage
other = (
SecretMessage
) obj;
Completed in 48 milliseconds