Home | History | Annotate | Download | only in sip

Lines Matching defs:this

4  * This software was developed by employees of the National Institute of
11 * This software is provided by NIST as a service and is expressly
20 * Permission to use this software is contingent upon your acceptance
21 * of the terms of this agreement
61 this.refCount++;
66 this.pendingEvents = new LinkedList();
67 Thread myThread = new Thread(this);
68 // This needs to be set to false else the
72 this.sipStack = sipStackImpl;
83 synchronized (this.eventMutex) {
102 if (this.refCount > 0)
103 this.refCount--;
105 if (this.refCount == 0) {
114 * Brutally stop the event scanner. This does not wait for the refcount to
119 synchronized (this.eventMutex) {
120 this.isStopped = true;
121 this.refCount = 0;
122 this.eventMutex.notify();
143 // Check if this request has already created a
240 // We cannot let this thread die under any
323 * some time. However, this is really an application bug.
324 * This garbage collects unacknowledged dialogs.
341 // We cannot let this thread die under any
356 // This assumes that the application will not need
376 // We cannot let this thread die under any
389 // We cannot let this thread die under any
421 // JvB: for backwards compatibility, accept this
436 // JvB: for backwards compatibility, accept this
451 * For the non-re-entrant listener this delivers the events to the listener
458 // Ask the auditor to monitor this thread
465 synchronized (this.eventMutex) {
471 if (this.isStopped) {
496 // make a new one for the other methods to operate on. This
522 if (!this.isStopped) {