OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ThreadHandle
(Results
1 - 6
of
6
) sorted by null
/external/nist-sip/java/gov/nist/core/
ThreadAuditor.java
25
private Map<Thread,
ThreadHandle
> threadHandles = new HashMap<Thread,
ThreadHandle
>();
31
public class
ThreadHandle
{
42
public
ThreadHandle
(ThreadAuditor aThreadAuditor) {
102
public synchronized
ThreadHandle
addCurrentThread() {
105
ThreadHandle
threadHandle
= new
ThreadHandle
(this);
107
threadHandles.put(Thread.currentThread(),
threadHandle
);
109
return
threadHandle
;
[
all
...]
/external/nist-sip/java/gov/nist/javax/sip/stack/
UDPMessageProcessor.java
179
ThreadAuditor.
ThreadHandle
threadHandle
= sipStack.getThreadAuditor().addCurrentThread();
186
threadHandle
.ping();
UDPMessageChannel.java
246
ThreadAuditor.
ThreadHandle
threadHandle
= null;
267
if (
threadHandle
== null) {
268
threadHandle
= sipStack.getThreadAuditor()
273
threadHandle
.ping();
279
.wait(
threadHandle
[
all
...]
SIPTransactionStack.java
368
ThreadAuditor.
ThreadHandle
threadHandle
;
371
public PingTimer(ThreadAuditor.
ThreadHandle
a_oThreadHandle) {
372
threadHandle
= a_oThreadHandle;
379
if (
threadHandle
== null) {
382
threadHandle
= getThreadAuditor().addCurrentThread();
386
threadHandle
.ping();
389
getTimer().schedule(new PingTimer(
threadHandle
),
390
threadHandle
.getPingIntervalInMillisecs());
[
all
...]
/external/llvm/utils/KillTheDoctor/
KillTheDoctor.cpp
160
struct
ThreadHandle
: CommonHandle {};
167
typedef ScopedHandle<
ThreadHandle
> ThreadScopedHandle;
/external/nist-sip/java/gov/nist/javax/sip/
EventScanner.java
459
ThreadAuditor.
ThreadHandle
threadHandle
= sipStack.getThreadAuditor().addCurrentThread();
482
threadHandle
.ping();
485
eventMutex.wait(
threadHandle
.getPingIntervalInMillisecs());
Completed in 74 milliseconds