Home | History | Annotate | Download | only in conn

Lines Matching defs:this

10  *  this work for additional information regarding copyright ownership.
11 * The ASF licenses this file to You under the Apache License, Version 2.0
12 * (the "License"); you may not use this file except in compliance with
24 * This software consists of voluntary contributions made by many
61 this.out = out;
62 this.wire = wire;
66 this.out.write(b, off, len);
67 if (this.wire.enabled()) {
68 this.wire.output(b, off, len);
73 this.out.write(b);
74 if (this.wire.enabled()) {
75 this.wire.output(b);
80 this.out.write(b);
81 if (this.wire.enabled()) {
82 this.wire.output(b);
87 this.out.flush();
91 this.out.writeLine(buffer);
92 if (this.wire.enabled()) {
94 this.wire.output(s + "[EOL]");
99 this.out.writeLine(s);
100 if (this.wire.enabled()) {
101 this.wire.output(s + "[EOL]");
106 return this.out.getMetrics();