HomeSort by relevance Sort by last modified time
    Searched refs:LocalStorageKey (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/v8/src/base/platform/
platform.h 416 typedef int32_t LocalStorageKey;
459 static LocalStorageKey CreateThreadLocalKey();
460 static void DeleteThreadLocalKey(LocalStorageKey key);
461 static void* GetThreadLocal(LocalStorageKey key);
462 static int GetThreadLocalInt(LocalStorageKey key) {
465 static void SetThreadLocal(LocalStorageKey key, void* value);
466 static void SetThreadLocalInt(LocalStorageKey key, int value) {
469 static bool HasThreadLocal(LocalStorageKey key) {
474 static inline void* GetExistingThreadLocal(LocalStorageKey key) {
481 static inline void* GetExistingThreadLocal(LocalStorageKey key)
    [all...]
platform-posix.cc 554 static Thread::LocalStorageKey PthreadKeyToLocalKey(pthread_key_t pthread_key) {
556 // We need to cast pthread_key_t to Thread::LocalStorageKey in two steps
559 STATIC_ASSERT(sizeof(Thread::LocalStorageKey) == sizeof(pthread_key_t));
561 return static_cast<Thread::LocalStorageKey>(ptr_key);
563 return static_cast<Thread::LocalStorageKey>(pthread_key);
568 static pthread_key_t LocalKeyToPthreadKey(Thread::LocalStorageKey local_key) {
570 STATIC_ASSERT(sizeof(Thread::LocalStorageKey) == sizeof(pthread_key_t));
621 static void CheckFastTls(Thread::LocalStorageKey key) {
635 Thread::LocalStorageKey Thread::CreateThreadLocalKey() {
647 LocalStorageKey local_key = PthreadKeyToLocalKey(key)
    [all...]
platform-unittest.cc 97 Thread::LocalStorageKey keys_[256];
platform-win32.cc     [all...]
  /external/chromium_org/v8/src/
assert-scope.h 88 static base::Thread::LocalStorageKey thread_local_key;
isolate.h 530 static base::Thread::LocalStorageKey isolate_key() {
535 static base::Thread::LocalStorageKey thread_id_key() {
539 static base::Thread::LocalStorageKey per_isolate_thread_data_key();
    [all...]
isolate.cc 110 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;
    [all...]

Completed in 360 milliseconds