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

1 2 3 4

  /external/apache-http/src/org/apache/http/impl/conn/
LoggingSessionOutputBuffer.java 40 * Logs all data written to the wire LOG.
51 /** The wire log to use. */
52 private final Wire wire; field in class:LoggingSessionOutputBuffer
57 * @param wire The Wire log to use.
59 public LoggingSessionOutputBuffer(final SessionOutputBuffer out, final Wire wire) {
62 this.wire = wire;
    [all...]
LoggingSessionInputBuffer.java 40 * Logs all data read to the wire LOG.
53 /** The wire log to use for writing. */
54 private final Wire wire; field in class:LoggingSessionInputBuffer
59 * @param wire The wire log to use.
61 public LoggingSessionInputBuffer(final SessionInputBuffer in, final Wire wire) {
64 this.wire = wire;
    [all...]
Wire.java 2 * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//httpclient/src/java/org/apache/commons/httpclient/Wire.java,v 1.9 2004/06/24 21:39:52 mbecke Exp $
39 * Logs data to the wire LOG.
45 public class Wire {
49 public Wire(Log log) {
53 private void wire(String header, InputStream instream) method in class:Wire
92 wire(">> ", outstream);
100 wire("<< ", instream);
108 wire(">> ", new ByteArrayInputStream(b, off, len));
116 wire("<< ", new ByteArrayInputStream(b, off, len));
124 wire(">> ", new ByteArrayInputStream(b))
    [all...]
  /external/google-tv-pairing-protocol/cpp/src/polo/pairing/
serverpairingsession.cc 24 ServerPairingSession::ServerPairingSession(wire::PoloWireAdapter *wire,
28 : PairingSession(wire, context, challenge),
37 wire()->GetNextMessage();
42 wire()->GetNextMessage();
54 wire()->SendPairingRequestAckMessage(ack);
57 wire()->GetNextMessage();
64 wire()->SendOptionsMessage(local_options());
72 wire()->SendErrorMessage(kErrorBadConfiguration);
83 wire()->SendErrorMessage(kErrorBadConfiguration)
    [all...]
clientpairingsession.cc 26 ClientPairingSession::ClientPairingSession(wire::PoloWireAdapter *wire,
31 : PairingSession(wire, context, challenge),
42 wire()->SendPairingRequestMessage(message);
45 wire()->SendPairingRequestMessage(message);
49 wire()->GetNextMessage();
60 wire()->SendConfigurationMessage(*config);
61 wire()->GetNextMessage();
74 wire()->SendOptionsMessage(local_options());
75 wire()->GetNextMessage()
    [all...]
clientpairingsession.h 31 // @param wire the wire adapter used to send and receive Polo messages
36 ClientPairingSession(wire::PoloWireAdapter* wire,
serverpairingsession.h 31 // @param wire the wire adapter used to send and receive Polo messages
35 ServerPairingSession(wire::PoloWireAdapter *wire,
pairingsession.h 24 #include "polo/wire/polowireadapter.h"
55 // Creates a new pairing session. The given wire adapter will be used for
59 PairingSession(wire::PoloWireAdapter* wire,
151 // Gets the wire adapter used to send and receive Polo messages.
152 wire::PoloWireAdapter* wire() const { return wire_; } function in class:polo::pairing::PairingSession
186 wire::PoloWireAdapter* wire_;
pairingsession.cc 24 PairingSession::PairingSession(wire::PoloWireAdapter* wire,
28 wire_(wire),
165 wire()->SendErrorMessage(kErrorProtocol);
219 wire()->SendErrorMessage(kErrorProtocol);
225 wire()->SendErrorMessage(kErrorInvalidChallengeResponse);
233 wire()->SendErrorMessage(kErrorProtocol);
249 wire()->SendErrorMessage(kErrorInvalidChallengeResponse);
  /external/google-tv-pairing-protocol/java/src/com/google/polo/wire/
WireFormat.java 17 package com.google.polo.wire;
20 import com.google.polo.wire.json.JsonWireAdapter;
21 import com.google.polo.wire.protobuf.ProtobufWireAdapter;
22 import com.google.polo.wire.xml.XmlWireAdapter;
25 * Represents the various wire formats available.
PoloWireInterface.java 17 package com.google.polo.wire;
31 * Returns the next message from the wire.
40 * Returns the next message from the wire.
52 * Send a normal message out on the wire.
62 * Send an error message out on the wire, based on an exception.
  /external/google-tv-pairing-protocol/cpp/src/polo/wire/
polowireadapter.cc 17 #include "polo/wire/polowireadapter.h"
20 namespace wire { namespace in namespace:polo
32 } // namespace wire
polowirelistener.h 22 namespace wire { namespace in namespace:polo
24 // Listener that receives bytes from a wire interface.
33 // Handles a protocol error from the wire interface if there was an error
39 } // namespace wire
polowireinterface.h 21 #include "polo/wire/polowirelistener.h"
25 namespace wire { namespace in namespace:polo
56 } // namespace wire
polowireadapter.h 18 #include "polo/wire/polowireinterface.h"
23 namespace wire { namespace in namespace:polo
79 // Gets the Polo wire interface used to send and receive data.
92 } // namespace wire
  /external/google-tv-pairing-protocol/cpp/tests/polo/wire/
mocks.h 19 #include <polo/wire/polowireinterface.h>
20 #include <polo/wire/polowireadapter.h>
24 namespace wire { namespace in namespace:polo
60 } // namespace wire
  /external/google-tv-pairing-protocol/cpp/tests/polo/pairing/
serverpairingsessiontest.cc 20 #include "polo/wire/mocks.h"
33 TestServerPairingSession(wire::PoloWireAdapter* wire,
36 : ServerPairingSession(wire, context, challenge, "server1") {
77 StrictMock<wire::MockWireInterface> interface_;
78 StrictMock<wire::MockWireAdapter> wire_;
clientpairingsessiontest.cc 20 #include "polo/wire/mocks.h"
33 TestClientPairingSession(wire::PoloWireAdapter* wire,
36 : ClientPairingSession(wire, context, challenge, "service1", "client1") {
86 StrictMock<wire::MockWireInterface> interface_;
87 StrictMock<wire::MockWireAdapter> wire_;
  /external/google-tv-pairing-protocol/cpp/
Makefile.am 70 polo_wire_includedir = $(includedir)/polo/wire
72 src/polo/wire/polowireadapter.h \
73 src/polo/wire/polowireinterface.h \
74 src/polo/wire/polowirelistener.h
76 polo_wire_protobuf_includedir = $(includedir)/polo/wire/protobuf
78 src/polo/wire/protobuf/polo.pb.h \
79 src/polo/wire/protobuf/protobufwireadapter.h
100 src/polo/wire/protobuf/polo.pb.cc \
101 src/polo/wire/protobuf/polo.pb.h
107 --cpp_out=$(srcdir)/src/polo/wire/protobuf
    [all...]
  /external/google-tv-pairing-protocol/java/src/com/google/polo/pairing/message/
PoloMessage.java 19 import com.google.polo.wire.PoloWireInterface;
25 * the wire version of protocol messages to subclasses of PoloMessage.
  /external/google-tv-pairing-protocol/java/
Makefile 54 $(PROTO_JAVA_OUT)/$(PACKAGE_NAME)/wire/protobuf/PoloProto.java: $(PROTO_SRC_DIR)/polo.proto
59 $(PROTO_JAVA_OUT)/$(PACKAGE_NAME)/wire/protobuf/PoloProto.java
  /external/qemu/distrib/sdl-1.2.15/src/video/Xext/Xxf86dga/
XF86DGA2.c 101 dgaEvent *wire = (dgaEvent *) wire_ev; local
109 switch((wire->u.u.type & 0x7f) - info->codes->first_event) {
112 mevent->type = wire->u.u.type & 0x7F;
113 mevent->serial = _XSetLastRequestRead(dpy, (xGenericReply *)wire);
115 mevent->screen = wire->u.event.screen;
116 mevent->time = wire->u.event.time;
117 mevent->state = wire->u.event.state;
118 mevent->dx = wire->u.event.dx;
119 mevent->dy = wire->u.event.dy;
124 bevent->type = wire->u.u.type & 0x7F
    [all...]
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
org.eclipse.sisu.inject-0.0.0.M5.jar 
  /external/google-tv-pairing-protocol/java/src/com/google/polo/wire/json/
JsonWireAdapter.java 17 package com.google.polo.wire.json;
26 import com.google.polo.wire.PoloWireInterface;
38 * Messages are streamed over the wire prepended with an integer which indicates
  /external/google-tv-pairing-protocol/java/src/com/google/polo/wire/xml/
XmlWireAdapter.java 17 package com.google.polo.wire.xml;
24 import com.google.polo.wire.PoloWireInterface;

Completed in 221 milliseconds

1 2 3 4