OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TLSKey
(Results
1 - 4
of
4
) sorted by null
/external/libchrome/base/threading/
thread_local_storage_posix.cc
13
bool PlatformThreadLocalStorage::AllocTLS(
TLSKey
* key) {
18
void PlatformThreadLocalStorage::FreeTLS(
TLSKey
key) {
23
void PlatformThreadLocalStorage::SetTLSValue(
TLSKey
key, void* value) {
thread_local_storage.h
55
typedef unsigned long
TLSKey
;
58
typedef pthread_key_t
TLSKey
;
73
static bool AllocTLS(
TLSKey
* key);
77
static void FreeTLS(
TLSKey
key);
78
static void SetTLSValue(
TLSKey
key, void* value);
79
static void* GetTLSValue(
TLSKey
key) {
thread_local_storage.cc
150
PlatformThreadLocalStorage::
TLSKey
key =
161
PlatformThreadLocalStorage::
TLSKey
tmp = key;
170
static_cast<PlatformThreadLocalStorage::
TLSKey
>(
208
PlatformThreadLocalStorage::
TLSKey
key =
227
PlatformThreadLocalStorage::
TLSKey
key =
284
PlatformThreadLocalStorage::
TLSKey
key =
306
PlatformThreadLocalStorage::
TLSKey
key =
319
PlatformThreadLocalStorage::
TLSKey
key =
327
PlatformThreadLocalStorage::
TLSKey
key =
/external/pdfium/third_party/libopenjpeg20/
thread.c
109
static DWORD
TLSKey
= 0;
130
TLSKey
= TlsAlloc();
140
if (
TLSKey
== TLS_OUT_OF_INDEXES) {
156
HANDLE hEvent = (HANDLE) TlsGetValue(
TLSKey
);
164
TlsSetValue(
TLSKey
, hEvent);
233
/* Make sure
TLSKey
is not being created just at that moment... */
239
hEvent = (HANDLE) TlsGetValue(
TLSKey
);
Completed in 852 milliseconds