Home | History | Annotate | Download | only in os

Lines Matching defs:this

5  * you may not use this file except in compliance with the License.
23 * This differs from the built-in java.lang.Object wait() and notify()
24 * in that this class contains the condition to wait on itself. That means
29 * This class uses itself as the object to wait on, so if you wait()
64 synchronized (this) {
68 this.notifyAll();
81 synchronized (this) {
94 synchronized (this) {
97 this.wait();
119 // Object.wait(0) means wait forever, to mimic this, we just
121 // this code for the common case.
123 synchronized (this) {
128 this.wait(end-now);
137 this.block();