HomeSort by relevance Sort by last modified time
    Searched full:tlskey (Results 1 - 6 of 6) sorted by null

  /external/libchrome/base/threading/
thread_local_storage_posix.cc 13 bool PlatformThreadLocalStorage::AllocTLS(TLSKey* key) {
18 void PlatformThreadLocalStorage::FreeTLS(TLSKey key) {
23 void* PlatformThreadLocalStorage::GetTLSValue(TLSKey key) {
27 void PlatformThreadLocalStorage::SetTLSValue(TLSKey key, void* value) {
thread_local_storage.h 30 typedef unsigned long TLSKey;
33 typedef pthread_key_t TLSKey;
48 static bool AllocTLS(TLSKey* key);
52 static void FreeTLS(TLSKey key);
53 static void SetTLSValue(TLSKey key, void* value);
54 static void* GetTLSValue(TLSKey key);
thread_local_storage.cc 60 PlatformThreadLocalStorage::TLSKey key =
71 PlatformThreadLocalStorage::TLSKey tmp = key;
80 static_cast<PlatformThreadLocalStorage::TLSKey>(
128 PlatformThreadLocalStorage::TLSKey key =
179 PlatformThreadLocalStorage::TLSKey key =
204 PlatformThreadLocalStorage::TLSKey key =
  /external/opencv3/modules/core/src/
alloc.cpp 407 static DWORD tlsKey;
411 if( tlsKey == TLS_OUT_OF_INDEXES )
412 tlsKey = TlsAlloc();
413 data = (ThreadData*)TlsGetValue(tlsKey);
417 TlsSetValue(tlsKey, data);
427 static pthread_key_t tlsKey;
431 if( !tlsKey )
432 pthread_key_create(&tlsKey, deleteData);
433 data = (ThreadData*)pthread_getspecific(tlsKey);
437 pthread_setspecific(tlsKey, data)
    [all...]
system.cpp 979 static DWORD tlsKey = TLS_OUT_OF_INDEXES;
983 if(tlsKey != TLS_OUT_OF_INDEXES)
985 delete (TLSStorage*)TlsGetValue(tlsKey);
986 TlsSetValue(tlsKey, NULL);
992 if (tlsKey == TLS_OUT_OF_INDEXES)
994 tlsKey = TlsAlloc();
995 CV_Assert(tlsKey != TLS_OUT_OF_INDEXES);
997 TLSStorage* d = (TLSStorage*)TlsGetValue(tlsKey);
1001 TlsSetValue(tlsKey, d);
1034 static pthread_key_t tlsKey = 0
    [all...]
  /libcore/ojluni/src/main/java/sun/security/ssl/
Handshaker.java     [all...]

Completed in 277 milliseconds