OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ThreadHandle
(Results
1 - 2
of
2
) 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/llvm/utils/KillTheDoctor/
KillTheDoctor.cpp
157
struct
ThreadHandle
: CommonHandle {};
164
typedef ScopedHandle<
ThreadHandle
> ThreadScopedHandle;
Completed in 223 milliseconds