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/chromium_org/base/threading/
thread_local_storage_posix.cc
13
bool PlatformThreadLocalStorage::AllocTLS(
TLSKey
* key) {
18
void PlatformThreadLocalStorage::FreeTLS(
TLSKey
key) {
23
void* PlatformThreadLocalStorage::GetTLSValue(
TLSKey
key) {
27
void PlatformThreadLocalStorage::SetTLSValue(
TLSKey
key, void* value) {
thread_local_storage.h
28
typedef unsigned long
TLSKey
;
31
typedef pthread_key_t
TLSKey
;
46
static bool AllocTLS(
TLSKey
* key);
50
static void FreeTLS(
TLSKey
key);
51
static void SetTLSValue(
TLSKey
key, void* value);
52
static void* GetTLSValue(
TLSKey
key);
thread_local_storage_win.cc
15
bool PlatformThreadLocalStorage::AllocTLS(
TLSKey
* key) {
16
TLSKey
value = TlsAlloc();
24
void PlatformThreadLocalStorage::FreeTLS(
TLSKey
key) {
29
void* PlatformThreadLocalStorage::GetTLSValue(
TLSKey
key) {
33
void PlatformThreadLocalStorage::SetTLSValue(
TLSKey
key, void* value) {
thread_local_storage.cc
59
PlatformThreadLocalStorage::
TLSKey
key =
70
PlatformThreadLocalStorage::
TLSKey
tmp = key;
125
PlatformThreadLocalStorage::
TLSKey
key =
176
PlatformThreadLocalStorage::
TLSKey
key =
201
PlatformThreadLocalStorage::
TLSKey
key =
Completed in 96 milliseconds