Home | History | Annotate | Download | only in conn

Lines Matching defs:wire

40  * Logs all data read to the wire LOG.
53 /** The wire log to use for writing. */
54 private final Wire wire;
59 * @param wire The wire log to use.
61 public LoggingSessionInputBuffer(final SessionInputBuffer in, final Wire wire) {
64 this.wire = wire;
73 if (this.wire.enabled() && l > 0) {
74 this.wire.input(b, off, l);
81 if (this.wire.enabled() && l > 0) {
82 this.wire.input(l);
89 if (this.wire.enabled() && l > 0) {
90 this.wire.input(b, 0, l);
97 if (this.wire.enabled() && s != null) {
98 this.wire.input(s + "[EOL]");
105 if (this.wire.enabled() && l > 0) {
108 this.wire.input(s + "[EOL]");