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

1 2 3 4 5 6 7 8 9

  /external/apache-http/src/org/apache/http/impl/conn/
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...]
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...]
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...]
  /device/google/accessory/demokit/firmware/demokit/
demokit.pde 1 #include <Wire.h>
305 Wire.begin();
376 Wire.beginTransmission(JOY_I2C_ADDR);
377 Wire.send(reg_addr);
378 Wire.endTransmission();
380 Wire.requestFrom(JOY_I2C_ADDR, 1);
382 while(Wire.available())
383 c = Wire.receive();
390 Wire.beginTransmission(JOY_I2C_ADDR);
391 Wire.send(reg_addr)
    [all...]
  /external/kernel-headers/original/linux/sunrpc/
auth_gss.h 39 /* on-the-wire gss cred: */
48 /* on-the-wire gss verifier: */
67 * the wire when communicating with a server. */
  /dalvik/vm/jdwp/
README.txt 1 Java Debug Wire Protocol support
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
netfilter_bridge.h 21 /* Packets about to hit the wire. */
atm_idt77105.h 19 __u32 symbol_errors; /* wire symbol errors */
netfilter_decnet.h 32 /* Packets about to hit the wire. */
  /external/kernel-headers/original/asm-arm/arch/
board.h 47 /* 4 wire signaling is optional, and is only used for SD/SDIO */
95 * 3 == 3 wire bidirectional
96 * 4 == 4 wire bidirectional
97 * 6 == 6 wire unidirectional (or TLL)
  /external/protobuf/java/src/main/java/com/google/protobuf/micro/
WireFormatMicro.java 40 * the Protocol Buffer wire format.
58 /** Given a tag value, determines the wire type (the lower 3 bits). */
68 /** Makes a tag value given a field number and wire type. */
73 // Field numbers for feilds in MessageSet wire format.
  /external/qemu/distrib/sdl-1.2.12/src/video/Xext/Xxf86dga/
XF86DGA2.c 96 dgaEvent *wire = (dgaEvent *) wire_ev; local
104 switch((wire->u.u.type & 0x7f) - info->codes->first_event) {
107 mevent->type = wire->u.u.type & 0x7F;
108 mevent->serial = _XSetLastRequestRead(dpy, (xGenericReply *)wire);
110 mevent->screen = wire->u.event.screen;
111 mevent->time = wire->u.event.time;
112 mevent->state = wire->u.event.state;
113 mevent->dx = wire->u.event.dx;
114 mevent->dy = wire->u.event.dy;
119 bevent->type = wire->u.u.type & 0x7F
    [all...]
  /external/dropbear/
channel.h 68 int writefd; /* read from wire, written to insecure side */
69 int readfd; /* read from insecure size, written to wire */
72 circbuffer *writebuf; /* data from the wire, for local consumption */
  /external/nist-sip/java/gov/nist/javax/sip/stack/
StackMessageFactory.java 35 * and responses. When a Request comes in off the wire, the stack calls
37 * When a response comes off the wire, the stack calls newSIPServerResponse
  /system/core/include/cutils/
logprint.h 103 * Splits a wire-format buffer into an AndroidLogEntry
106 * Returns 0 on success and -1 on invalid wire format (entry will be
  /external/chromium/base/
debug_util_mac.cc 32 // For all these signals, just wire things up so we exit immediately.
  /external/protobuf/java/src/main/java/com/google/protobuf/
WireFormat.java 40 * the Protocol Buffer wire format.
58 /** Given a tag value, determines the wire type (the lower 3 bits). */
68 /** Makes a tag value given a field number and wire type. */
149 // Field numbers for feilds in MessageSet wire format.
  /external/protobuf/python/google/protobuf/internal/
wire_format.py 31 """Constants and static functions to support protocol buffer wire format."""
43 # These numbers identify the wire type of a protocol buffer value.
82 wire type information in standard protocol message wire format.
89 raise message.EncodeError('Unknown wire type: %d' % wire_type)
  /development/samples/ApiDemos/src/com/example/android/apis/view/
List8.java 57 // Wire up the clear button to remove all photos
65 // Wire up the add button to add a new photo
Visibility1.java 51 // Wire each button to a click listener
  /external/iproute2/include/linux/
netfilter_ipv4.h 48 /* Packets about to hit the wire. */
  /external/kernel-headers/original/linux/
netfilter_bridge.h 21 /* Packets about to hit the wire. */
netfilter_ipv4.h 50 /* Packets about to hit the wire. */
netfilter_ipv6.h 55 /* Packets about to hit the wire. */
  /frameworks/base/core/tests/coretests/src/android/view/
Visibility.java 44 // Wire each button to a click listener

Completed in 1112 milliseconds

1 2 3 4 5 6 7 8 9