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

1 2 3 4

  /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/skia/src/core/
SkRemoteGlyphCache.cpp 46 WireTypeface wire = { local
56 return SkData::MakeWithCopy(&wire, sizeof(wire));
73 WireTypeface wire; local
74 if (len < sizeof(wire)) {
78 memcpy(&wire, buf, sizeof(wire));
80 auto typeFace = fMapIdToTypeface.find(wire.typeface_id);
84 wire.typeface_id,
85 wire.style
    [all...]
  /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;
  /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/boringssl/src/tool/
client.cc 429 std::vector<uint8_t> wire; local
441 wire.push_back(static_cast<uint8_t>(len));
442 wire.resize(wire.size() + len);
443 OPENSSL_memcpy(wire.data() + wire.size() - len, alpn_protos.data() + i,
447 if (SSL_CTX_set_alpn_protos(ctx.get(), wire.data(), wire.size()) != 0) {
  /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.nano.PoloProto;
36 import com.google.polo.wire.protobuf.nano.PoloProto.OuterMessage;
53 * buffers to the wire protocol only. Some applications may prefer to use
54 * a different wire format, where the requirement of adding the protobuf library
91 * Returns the next message sent over the wire, blocking as necessary.
98 * Returns the next message read over the wire, requiring it to be a certain
119 * @return the next OuterMessage read from the wire
141 * Reads the next inner message from the wire, decoding and handling the oute
    [all...]
  /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 
  /external/skqp/tools/
remote_demo.cpp 166 WireTypeface wire; local
167 if (len >= sizeof(wire)) {
168 memcpy(&wire, buf, sizeof(wire));
169 auto i = mapIdToTypeface.find(wire.typeface_id);
173 wire.typeface_id,
174 wire.thread_id,
175 wire.style,
176 wire.is_fixed,
179 i = mapIdToTypeface.emplace_hint(i, wire.typeface_id, newTypeface)
222 WireTypeface wire = { local
    [all...]

Completed in 1429 milliseconds

1 2 3 4