OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:threadData
(Results
1 - 2
of
2
) sorted by null
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
PoolAlloc.cpp
25
TThreadGlobalPools*
threadData
= new TThreadGlobalPools();
26
threadData
->globalPoolAllocator = 0;
28
OS_SetTLSValue(PoolIndex,
threadData
);
58
TThreadGlobalPools*
threadData
= static_cast<TThreadGlobalPools*>(OS_GetTLSValue(PoolIndex));
60
return *
threadData
->globalPoolAllocator;
65
TThreadGlobalPools*
threadData
= static_cast<TThreadGlobalPools*>(OS_GetTLSValue(PoolIndex));
67
threadData
->globalPoolAllocator = poolAllocator;
/sdk/traceview/src/com/android/traceview/
DmTraceReader.java
61
private HashMap<Integer,
ThreadData
> mThreadMap;
62
private
ThreadData
[] mSortedThreads;
78
mThreadMap = new HashMap<Integer,
ThreadData
>();
173
ThreadData
prevThreadData = null;
227
ThreadData
threadData
= mThreadMap.get(threadId);
228
if (
threadData
== null) {
230
threadData
= new
ThreadData
(threadId, name, mTopLevel);
231
mThreadMap.put(threadId,
threadData
);
[
all
...]
Completed in 268 milliseconds