OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GetThreadLocal
(Results
1 - 22
of
22
) sorted by null
/external/chromium_org/v8/test/cctest/
test-platform-tls.cc
58
CHECK_EQ(GetValue(i), Thread::
GetThreadLocal
(keys[i]));
69
Thread::
GetThreadLocal
(keys[i]));
/external/v8/test/cctest/
test-platform-tls.cc
32
CHECK_EQ(GetValue(i), Thread::
GetThreadLocal
(keys[i]));
43
Thread::
GetThreadLocal
(keys[i]));
/external/chromium/base/threading/
thread_local_unittest.cc
46
class
GetThreadLocal
: public ThreadLocalTesterBase {
48
GetThreadLocal
(TLPType* tlp, base::WaitableEvent* done)
50
~
GetThreadLocal
() { }
82
GetThreadLocal
getter(&tlp, &done);
/external/chromium_org/base/threading/
thread_local_unittest.cc
50
class
GetThreadLocal
: public ThreadLocalTesterBase {
52
GetThreadLocal
(TLPType* tlp, base::WaitableEvent* done)
56
virtual ~
GetThreadLocal
() {}
88
GetThreadLocal
getter(&tlp, &done);
/external/chromium_org/mojo/public/utility/
thread_local_unittest.cc
51
class
GetThreadLocal
: public ThreadLocalTesterBase {
53
GetThreadLocal
(TLPType* tlp, base::WaitableEvent* done)
57
virtual ~
GetThreadLocal
() {}
89
GetThreadLocal
getter(&tlp, &done);
/external/chromium_org/v8/src/
platform.h
545
static void*
GetThreadLocal
(LocalStorageKey key);
547
return static_cast<int>(reinterpret_cast<intptr_t>(
GetThreadLocal
(key)));
554
return
GetThreadLocal
(key) != NULL;
561
ASSERT(result ==
GetThreadLocal
(key));
566
return
GetThreadLocal
(key);
assert-scope.h
102
Thread::
GetThreadLocal
(thread_local_key));
isolate.h
444
Thread::
GetThreadLocal
(per_isolate_thread_data_key_));
456
return reinterpret_cast<Isolate*>(Thread::
GetThreadLocal
(isolate_key_));
[
all
...]
platform-posix.cc
763
void* Thread::
GetThreadLocal
(LocalStorageKey key) {
platform-win32.cc
[
all
...]
isolate.cc
208
if (Thread::
GetThreadLocal
(isolate_key_) == NULL) {
[
all
...]
/external/v8/src/
platform.h
464
static void*
GetThreadLocal
(LocalStorageKey key);
466
return static_cast<int>(reinterpret_cast<intptr_t>(
GetThreadLocal
(key)));
473
return
GetThreadLocal
(key) != NULL;
480
ASSERT(result ==
GetThreadLocal
(key));
485
return
GetThreadLocal
(key);
platform-nullos.cc
392
void* Thread::
GetThreadLocal
(LocalStorageKey key) {
isolate.h
433
Thread::
GetThreadLocal
(per_isolate_thread_data_key_));
445
return reinterpret_cast<Isolate*>(Thread::
GetThreadLocal
(isolate_key_));
[
all
...]
platform-cygwin.cc
469
void* Thread::
GetThreadLocal
(LocalStorageKey key) {
platform-macos.cc
641
void* Thread::
GetThreadLocal
(LocalStorageKey key) {
platform-solaris.cc
536
void* Thread::
GetThreadLocal
(LocalStorageKey key) {
platform-freebsd.cc
544
void* Thread::
GetThreadLocal
(LocalStorageKey key) {
platform-linux.cc
804
void* Thread::
GetThreadLocal
(LocalStorageKey key) {
[
all
...]
platform-openbsd.cc
597
void* Thread::
GetThreadLocal
(LocalStorageKey key) {
isolate.cc
374
if (Thread::
GetThreadLocal
(isolate_key_) == NULL) {
[
all
...]
platform-win32.cc
[
all
...]
Completed in 1206 milliseconds