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

1 2 3

  /external/apache-http/src/org/apache/http/impl/conn/
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...]
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...]
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...]
DefaultClientConnection.java 76 private final Log wireLog = LogFactory.getLog("org.apache.http.wire");
180 inbuffer = new LoggingSessionInputBuffer(inbuffer, new Wire(wireLog));
196 outbuffer = new LoggingSessionOutputBuffer(outbuffer, new Wire(wireLog));
  /prebuilts/go/darwin-x86/src/net/http/internal/
chunked.go 5 // The wire protocol for HTTP's "chunked" Transfer-Encoding.
186 // Encoding wire format to the underlying Wire chunkedWriter.
188 Wire io.Writer
191 // Write the contents of data as one chunk to Wire.
201 if _, err = fmt.Fprintf(cw.Wire, "%x\r\n", len(data)); err != nil {
204 if n, err = cw.Wire.Write(data); err != nil {
211 if _, err = io.WriteString(cw.Wire, "\r\n"); err != nil {
214 if bw, ok := cw.Wire.(*FlushAfterChunkWriter); ok {
221 _, err := io.WriteString(cw.Wire, "0\r\n"
    [all...]
  /prebuilts/go/linux-x86/src/net/http/internal/
chunked.go 5 // The wire protocol for HTTP's "chunked" Transfer-Encoding.
186 // Encoding wire format to the underlying Wire chunkedWriter.
188 Wire io.Writer
191 // Write the contents of data as one chunk to Wire.
201 if _, err = fmt.Fprintf(cw.Wire, "%x\r\n", len(data)); err != nil {
204 if n, err = cw.Wire.Write(data); err != nil {
211 if _, err = io.WriteString(cw.Wire, "\r\n"); err != nil {
214 if bw, ok := cw.Wire.(*FlushAfterChunkWriter); ok {
221 _, err := io.WriteString(cw.Wire, "0\r\n"
    [all...]
  /external/protobuf/csharp/src/Google.Protobuf/
WireFormat.cs 41 /// the Protocol Buffer wire format.
47 /// Wire types within protobuf encoding.
81 /// Given a tag value, determines the wire type (lower 3 bits).
97 /// Makes a tag value given a field number and wire type.
  /external/golang-protobuf/proto/
properties.go 35 * Routines for encoding data into the wire format for protocol buffers.
51 // Constants that identify the encoding of a value on the wire.
81 // A decoder creates a value from its wire representation.
177 Wire string
218 s := p.Wire
261 p.Wire = fields[0]
262 switch p.Wire {
292 fmt.Fprintf(os.Stderr, "proto: tag has unknown wire type: %q\n", s)
419 if p.Wire == "bytes" {
525 if p.Wire == "bytes"
    [all...]
text.go 167 if props.Wire != "group" {
526 if props != nil && props.Wire == "group" {
619 wire, tag := x&7, x>>3
620 if wire == WireEndGroup {
630 if wire != WireStartGroup {
635 if !w.compact || wire == WireStartGroup {
640 switch wire {
661 _, err = fmt.Fprintf(w, "/* unknown wire type %d */", wire)
text_parser.go 417 switch props.Wire {
  /external/protobuf/js/binary/
constants.js 200 * Wire-format type codes, taken from proto2/public/wire_format_lite.h.
215 * Translates field type to wire type.
reader.js 33 * wire-format protocol buffers into Javascript data structures.
56 * BinaryReader implements the decoders for all the wire types specified in
68 * Wire-format decoder.
86 * Wire type of the next proto field in the buffer, filled in by
200 * @return {jspb.BinaryConstants.WireType} The wire type of the next field
209 * @return {boolean} Whether the current wire type is an end-group tag. Used as
286 // If the wire type isn't one of the valid ones, something's broken.
293 goog.asserts.fail('Invalid wire type');
335 goog.asserts.fail('Invalid wire type for skipVarintField');
349 goog.asserts.fail('Invalid wire type for skipDelimitedField')
    [all...]
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.osgi.services_3.3.100.v20130513-1956.jar 
  /prebuilts/go/darwin-x86/src/encoding/gob/
codec_test.go 943 // Wire type is RT0, local type is RT1.
986 // Wire type is IT0, local type is RT1.
    [all...]
  /prebuilts/go/linux-x86/src/encoding/gob/
codec_test.go 943 // Wire type is RT0, local type is RT1.
986 // Wire type is IT0, local type is RT1.
    [all...]
  /prebuilts/go/darwin-x86/src/net/
dnsmsg.go 16 // The second half implements the conversion to and from wire format.
27 // Wire constants.
85 // The wire format for the DNS packet header.
315 // Map of constructors for each RR wire type.
711 // Convert convenient dnsMsg into wire-like dnsHeader.
  /prebuilts/go/linux-x86/src/net/
dnsmsg.go 16 // The second half implements the conversion to and from wire format.
27 // Wire constants.
85 // The wire format for the DNS packet header.
315 // Map of constructors for each RR wire type.
711 // Convert convenient dnsMsg into wire-like dnsHeader.
  /prebuilts/devtools/tools/lib/
osgi-4.0.0.jar 
  /prebuilts/tools/common/m2/repository/com/android/external/osgi/osgi/4.0.0/
osgi-4.0.0.jar 
  /prebuilts/tools/common/osgi/
osgi.jar 
  /external/robolectric/v1/lib/main/
httpclient-4.0.3.jar 
  /prebuilts/misc/common/robolectric/3.1.1/lib/
httpclient-4.0.3.jar 
  /prebuilts/misc/common/robolectric/3.4.2/lib/
httpclient-4.0.3.jar 
  /prebuilts/misc/common/robolectric/3.5.1/lib/
httpclient-4.0.3.jar 
  /prebuilts/misc/common/robolectric/3.6.1/lib/
httpclient-4.0.3.jar 

Completed in 362 milliseconds

1 2 3