Home | History | Annotate | Download | only in conn

Lines Matching defs:wire

40  * Logs all data read to the wire LOG.
58 /** The wire log to use for writing. */
59 private final Wire wire;
64 * @param wire The wire log to use.
66 public LoggingSessionInputBuffer(final SessionInputBuffer in, final Wire wire) {
69 this.wire = wire;
78 if (this.wire.enabled() && l > 0) {
79 this.wire.input(b, off, l);
86 if (this.wire.enabled() && l > 0) {
87 this.wire.input(l);
94 if (this.wire.enabled() && l > 0) {
95 this.wire.input(b, 0, l);
102 if (this.wire.enabled() && s != null) {
103 this.wire.input(s + "[EOL]");
110 if (this.wire.enabled() && l > 0) {
113 this.wire.input(s + "[EOL]");