OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:threadLocalStorageHandle
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/v8/src/third_party/vtune/
jitprofiling.cc
125
static DWORD
threadLocalStorageHandle
= 0;
127
static pthread_key_t
threadLocalStorageHandle
= (pthread_key_t)0;
203
pThreadStack threadStack = (pThreadStack)TlsGetValue (
threadLocalStorageHandle
);
205
pThreadStack threadStack = (pThreadStack)pthread_getspecific(
threadLocalStorageHandle
);
219
TlsSetValue(
threadLocalStorageHandle
,(void*)threadStack);
221
pthread_setspecific(
threadLocalStorageHandle
,(void*)threadStack);
238
pThreadStack threadStack = (pThreadStack)TlsGetValue (
threadLocalStorageHandle
);
240
pThreadStack threadStack = (pThreadStack)pthread_getspecific(
threadLocalStorageHandle
);
424
if (!
threadLocalStorageHandle
)
426
threadLocalStorageHandle
= TlsAlloc()
[
all
...]
/external/llvm/lib/ExecutionEngine/IntelJITEvents/
jitprofiling.c
87
static DWORD
threadLocalStorageHandle
= 0;
89
static pthread_key_t
threadLocalStorageHandle
= (pthread_key_t)0;
167
(pThreadStack)TlsGetValue (
threadLocalStorageHandle
);
170
(pThreadStack)pthread_getspecific(
threadLocalStorageHandle
);
184
TlsSetValue(
threadLocalStorageHandle
,(void*)threadStack);
186
pthread_setspecific(
threadLocalStorageHandle
,(void*)threadStack);
205
(pThreadStack)TlsGetValue (
threadLocalStorageHandle
);
208
(pThreadStack)pthread_getspecific(
threadLocalStorageHandle
);
405
if (!
threadLocalStorageHandle
)
407
threadLocalStorageHandle
= TlsAlloc()
[
all
...]
Completed in 37 milliseconds