Home
last modified time | relevance | path

Searched refs:LocalStorageKey (Results 1 – 7 of 7) sorted by relevance

/external/v8/src/base/platform/
Dplatform.h416 typedef int32_t LocalStorageKey; typedef
459 static LocalStorageKey CreateThreadLocalKey();
460 static void DeleteThreadLocalKey(LocalStorageKey key);
461 static void* GetThreadLocal(LocalStorageKey key);
462 static int GetThreadLocalInt(LocalStorageKey key) { in GetThreadLocalInt()
465 static void SetThreadLocal(LocalStorageKey key, void* value);
466 static void SetThreadLocalInt(LocalStorageKey key, int value) { in SetThreadLocalInt()
469 static bool HasThreadLocal(LocalStorageKey key) { in HasThreadLocal()
474 static inline void* GetExistingThreadLocal(LocalStorageKey key) { in GetExistingThreadLocal()
481 static inline void* GetExistingThreadLocal(LocalStorageKey key) { in GetExistingThreadLocal()
Dplatform-posix.cc560 static Thread::LocalStorageKey PthreadKeyToLocalKey(pthread_key_t pthread_key) { in PthreadKeyToLocalKey()
565 STATIC_ASSERT(sizeof(Thread::LocalStorageKey) == sizeof(pthread_key_t)); in PthreadKeyToLocalKey()
567 return static_cast<Thread::LocalStorageKey>(ptr_key); in PthreadKeyToLocalKey()
569 return static_cast<Thread::LocalStorageKey>(pthread_key); in PthreadKeyToLocalKey()
574 static pthread_key_t LocalKeyToPthreadKey(Thread::LocalStorageKey local_key) { in LocalKeyToPthreadKey()
576 STATIC_ASSERT(sizeof(Thread::LocalStorageKey) == sizeof(pthread_key_t)); in LocalKeyToPthreadKey()
627 static void CheckFastTls(Thread::LocalStorageKey key) { in CheckFastTls()
641 Thread::LocalStorageKey Thread::CreateThreadLocalKey() { in CreateThreadLocalKey()
653 LocalStorageKey local_key = PthreadKeyToLocalKey(key); in CreateThreadLocalKey()
662 void Thread::DeleteThreadLocalKey(LocalStorageKey key) { in DeleteThreadLocalKey()
[all …]
Dplatform-unittest.cc97 Thread::LocalStorageKey keys_[256];
Dplatform-win32.cc1375 Thread::LocalStorageKey Thread::CreateThreadLocalKey() { in CreateThreadLocalKey()
1378 return static_cast<LocalStorageKey>(result); in CreateThreadLocalKey()
1382 void Thread::DeleteThreadLocalKey(LocalStorageKey key) { in DeleteThreadLocalKey()
1389 void* Thread::GetThreadLocal(LocalStorageKey key) { in GetThreadLocal()
1394 void Thread::SetThreadLocal(LocalStorageKey key, void* value) { in SetThreadLocal()
/external/v8/src/
Disolate.h530 static base::Thread::LocalStorageKey isolate_key() { in isolate_key()
535 static base::Thread::LocalStorageKey thread_id_key() { in thread_id_key()
539 static base::Thread::LocalStorageKey per_isolate_thread_data_key();
1173 static base::Thread::LocalStorageKey per_isolate_thread_data_key_;
1174 static base::Thread::LocalStorageKey isolate_key_;
1175 static base::Thread::LocalStorageKey thread_id_key_;
Dassert-scope.h88 static base::Thread::LocalStorageKey thread_local_key;
Disolate.cc110 base::Thread::LocalStorageKey Isolate::isolate_key_;
111 base::Thread::LocalStorageKey Isolate::thread_id_key_;
112 base::Thread::LocalStorageKey Isolate::per_isolate_thread_data_key_;
114 base::Thread::LocalStorageKey PerThreadAssertScopeBase::thread_local_key;