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

  /external/chromium_org/base/threading/
thread_local_storage_posix.cc 13 bool PlatformThreadLocalStorage::AllocTLS(TLSKey* key) {
15 base::internal::PlatformThreadLocalStorage::OnThreadExit);
18 void PlatformThreadLocalStorage::FreeTLS(TLSKey key) {
23 void* PlatformThreadLocalStorage::GetTLSValue(TLSKey key) {
27 void PlatformThreadLocalStorage::SetTLSValue(TLSKey key, void* value) {
thread_local_storage.cc 10 using base::internal::PlatformThreadLocalStorage;
22 PlatformThreadLocalStorage::TLS_KEY_OUT_OF_INDEXES;
59 PlatformThreadLocalStorage::TLSKey key =
61 if (key == PlatformThreadLocalStorage::TLS_KEY_OUT_OF_INDEXES) {
62 CHECK(PlatformThreadLocalStorage::AllocTLS(&key));
69 if (key == PlatformThreadLocalStorage::TLS_KEY_OUT_OF_INDEXES) {
70 PlatformThreadLocalStorage::TLSKey tmp = key;
71 CHECK(PlatformThreadLocalStorage::AllocTLS(&key) &&
72 key != PlatformThreadLocalStorage::TLS_KEY_OUT_OF_INDEXES);
73 PlatformThreadLocalStorage::FreeTLS(tmp)
    [all...]
thread_local_storage_win.cc 15 bool PlatformThreadLocalStorage::AllocTLS(TLSKey* key) {
24 void PlatformThreadLocalStorage::FreeTLS(TLSKey key) {
29 void* PlatformThreadLocalStorage::GetTLSValue(TLSKey key) {
33 void PlatformThreadLocalStorage::SetTLSValue(TLSKey key, void* value) {
70 base::internal::PlatformThreadLocalStorage::OnThreadExit();
thread_local_storage.h 22 // PlatformThreadLocalStorage is low-level abstraction to the OS's TLS
24 class BASE_EXPORT PlatformThreadLocalStorage {

Completed in 42 milliseconds