OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PoloWireInterface
(Results
1 - 15
of
15
) sorted by null
/external/google-tv-pairing-protocol/cpp/src/polo/wire/
polowireinterface.h
28
class
PoloWireInterface
{
30
PoloWireInterface
() {}
31
virtual ~
PoloWireInterface
() {}
53
DISALLOW_COPY_AND_ASSIGN(
PoloWireInterface
);
polowireadapter.cc
22
PoloWireAdapter::PoloWireAdapter(
PoloWireInterface
* interface)
polowireadapter.h
18
#include "polo/wire/
polowireinterface
.h"
27
// received from the supplied
PoloWireInterface
.
34
explicit PoloWireAdapter(
PoloWireInterface
* interface);
80
PoloWireInterface
* interface() { return interface_; }
86
PoloWireInterface
* interface_;
/external/google-tv-pairing-protocol/java/src/com/google/polo/wire/
PoloWireInterface.java
28
public interface
PoloWireInterface
{
WireFormat.java
33
* Returns a new {@link
PoloWireInterface
} for this enum value.
36
* @return the new {@link
PoloWireInterface
}
38
public
PoloWireInterface
getWireInterface(PairingContext context) {
/external/google-tv-pairing-protocol/java/src/com/google/polo/pairing/
ClientPairingSession.java
25
import com.google.polo.wire.
PoloWireInterface
;
46
public ClientPairingSession(
PoloWireInterface
protocol,
59
public ClientPairingSession(
PoloWireInterface
protocol,
ServerPairingSession.java
28
import com.google.polo.wire.
PoloWireInterface
;
41
public ServerPairingSession(
PoloWireInterface
protocol,
46
public ServerPairingSession(
PoloWireInterface
protocol,
PairingSession.java
34
import com.google.polo.wire.
PoloWireInterface
;
131
private final
PoloWireInterface
mProtocol;
202
public PairingSession(
PoloWireInterface
protocol,
/external/google-tv-pairing-protocol/java/src/com/google/polo/pairing/message/
PoloMessage.java
19
import com.google.polo.wire.
PoloWireInterface
;
24
* <p>Implementations of {@link
PoloWireInterface
} will translate to and from
/external/google-tv-pairing-protocol/cpp/tests/polo/wire/
mocks.h
19
#include <polo/wire/
polowireinterface
.h>
26
// A mock
PoloWireInterface
.
27
class MockWireInterface : public
PoloWireInterface
{
36
explicit MockWireAdapter(
PoloWireInterface
* interface)
/external/google-tv-pairing-protocol/java/src/com/google/polo/wire/json/
JsonWireAdapter.java
26
import com.google.polo.wire.
PoloWireInterface
;
35
* A {@link
PoloWireInterface
} which uses JavaScript Object Notation (JSON) for
45
public class JsonWireAdapter implements
PoloWireInterface
{
/external/google-tv-pairing-protocol/java/src/com/google/polo/wire/xml/
XmlWireAdapter.java
24
import com.google.polo.wire.
PoloWireInterface
;
30
public class XmlWireAdapter implements
PoloWireInterface
{
/external/google-tv-pairing-protocol/cpp/src/polo/wire/protobuf/
protobufwireadapter.h
33
explicit ProtobufWireAdapter(
PoloWireInterface
* interface);
protobufwireadapter.cc
31
ProtobufWireAdapter::ProtobufWireAdapter(
PoloWireInterface
* interface)
/external/google-tv-pairing-protocol/java/src/com/google/polo/wire/protobuf/
ProtobufWireAdapter.java
34
import com.google.polo.wire.
PoloWireInterface
;
44
* Implementation of {@link
PoloWireInterface
} that uses Protocol Buffers for
57
public class ProtobufWireAdapter implements
PoloWireInterface
{
Completed in 370 milliseconds