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

1 2 3

  /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
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
polowireinterface.h 21 #include "polo/wire/polowirelistener.h"
25 namespace wire { namespace in namespace:polo
56 } // 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/java/src/com/google/polo/wire/
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.
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.
  /external/apache-http/src/org/apache/http/impl/conn/
LoggingSessionInputBuffer.java 40 * Logs all data read to the wire LOG.
58 /** The wire log to use for writing. */
59 private final Wire wire; field in class:LoggingSessionInputBuffer
64 * @param wire The wire log to use.
66 public LoggingSessionInputBuffer(final SessionInputBuffer in, final Wire wire) {
69 this.wire = wire;
    [all...]
LoggingSessionOutputBuffer.java 40 * Logs all data written to the wire LOG.
56 /** The wire log to use. */
57 private final Wire wire; field in class:LoggingSessionOutputBuffer
62 * @param wire The Wire log to use.
64 public LoggingSessionOutputBuffer(final SessionOutputBuffer out, final Wire wire) {
67 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.
50 public class Wire {
54 public Wire(Log log) {
58 private void wire(String header, InputStream instream) method in class:Wire
97 wire(">> ", outstream);
105 wire("<< ", instream);
113 wire(">> ", new ByteArrayInputStream(b, off, len));
121 wire("<< ", new ByteArrayInputStream(b, off, len));
129 wire(">> ", new ByteArrayInputStream(b))
    [all...]
  /external/google-tv-pairing-protocol/cpp/src/polo/wire/protobuf/
protobufwireadapter.h 21 #include "polo/wire/polowireadapter.h"
22 #include "polo/wire/protobuf/polo.pb.h"
25 namespace wire { namespace in namespace:polo
28 // Polo wire adapter that transmits Polo messages using protocol buffers.
32 // @param interface the wire interface used to send and receive data
149 } // namespace wire
protobufwireadapter.cc 18 #include "polo/wire/protobuf/protobufwireadapter.h"
28 namespace wire { namespace in namespace:polo
473 } // namespace wire
  /external/boringssl/src/tool/
client.cc 198 std::vector<uint8_t> wire; local
210 wire.push_back(static_cast<uint8_t>(len));
211 wire.resize(wire.size() + len);
212 memcpy(wire.data() + wire.size() - len, alpn_protos.data() + i, len);
215 if (SSL_CTX_set_alpn_protos(ctx.get(), wire.data(), wire.size()) != 0) {
  /external/google-tv-pairing-protocol/cpp/tests/polo/wire/protobuf/
protobufwireadaptertest.cc 20 #include <polo/wire/protobuf/protobufwireadapter.h>
21 #include "polo/wire/mocks.h"
29 namespace wire { namespace in namespace:polo
320 } // namespace wire
  /external/google-tv-pairing-protocol/java/src/com/google/polo/wire/json/
Base64.java 28 package 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
JsonMessageBuilder.java 17 package com.google.polo.wire.json;
108 * outermost wire message
358 * Generates a JSONObject corresponding to a full wire message (wrapped in
363 * wire message
384 * Generates a {@link JSONObject} corresponding to a wire message with an
391 * wire message
  /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;
XmlMessageWrapper.java 17 package com.google.polo.wire.xml;
XmlMessageBuilder.java 17 package com.google.polo.wire.xml;
43 * This wire format was specified by a third party; it uses a proprietary
190 * JsonWireAdapter. However, the XML wire format was specified with slight
413 * Generates a String corresponding to a full wire message (wrapped in
591 * Converts an {@link EncodingType} to the numeric value used on the wire.
593 * Note that in this implementation, the values used on the wire do not match
616 * Converts a numeric value used on the wire to the corresponding
619 * Note that in this implementation, the values used on the wire do not match
622 * @param intType the value used on the wire
  /external/okhttp/okhttp-hpacktests/src/test/java/com/squareup/okhttp/internal/spdy/hpackjson/
Case.java 27 * Representation of an individual case (set of headers and wire format).
34 private String wire; field in class:Case
47 return ByteString.decodeHex(wire);
54 public void setWire(ByteString wire) {
55 this.wire = wire.hex();
62 result.wire = wire;
  /external/google-tv-pairing-protocol/cpp/src/polo/pairing/
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_;
  /external/google-tv-pairing-protocol/java/src/com/google/polo/wire/protobuf/
ProtobufWireAdapter.java 17 package com.google.polo.wire.protobuf;
34 import com.google.polo.wire.PoloWireInterface;
35 import com.google.polo.wire.protobuf.PoloProto.OuterMessage;
52 * buffers to the wire protocol only. Some applications may prefer to use
53 * a different wire format, where the requirement of adding the protobuf library
90 * Returns the next message sent over the wire, blocking as necessary.
97 * Returns the next message read over the wire, requiring it to be a certain
118 * @return the next OuterMessage read from the wire
140 * Reads the next inner message from the wire, decoding and handling the outer
234 * Writes an {@link OuterMessage} to the wire
    [all...]
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
org.eclipse.sisu.inject-0.0.0.M5.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/sisu/org.eclipse.sisu.inject/0.0.0.M5/
org.eclipse.sisu.inject-0.0.0.M5.jar 

Completed in 505 milliseconds

1 2 3