Searched defs:ThreadLocal (Results 1 - 2 of 2) sorted by relevance

/frameworks/compile/mclinker/include/mcld/LD/
H A DResolveInfo.h58 ThreadLocal = 6, enumerator in enum:mcld::ResolveInfo::Type
/frameworks/compile/mclinker/utils/gtest/include/
H A Dgtest.h230 // Mutex, MutexLock, ThreadLocal, GetThreadCount()
2342 // Helpers for ThreadLocal.
2346 // ThreadLocal<T>. Hence the need for class
2362 // ThreadLocal<int> tl(100); // 100 is the default value for each thread.
2374 // In addition, the default ThreadLocal constructor requires T to have
2377 // An object managed for a thread by a ThreadLocal instance is deleted
2378 // when the thread exits. Or, if the ThreadLocal instance dies in
2379 // that thread, when the ThreadLocal dies. It's the user's
2380 // responsibility to ensure that all other threads using a ThreadLocal
2384 // Google Test only uses global ThreadLocal object
2389 class ThreadLocal { class in namespace:std::tr1
2391 ThreadLocal() : key_(CreateKey()), function in class:std::tr1::ThreadLocal
2393 explicit ThreadLocal(const T& value) : key_(CreateKey()), function in class:std::tr1::ThreadLocal
2480 class ThreadLocal { class in namespace:std::tr1
2482 ThreadLocal() : value_() {} function in class:std::tr1::ThreadLocal
2483 explicit ThreadLocal(const T& value) : value_(value) {} function in class:std::tr1::ThreadLocal
[all...]

Completed in 82 milliseconds