Searched defs:tsd (Results 1 - 5 of 5) sorted by relevance

/external/compiler-rt/lib/asan/
H A Dasan_posix.cc102 void AsanTSDInit(void (*destructor)(void *tsd)) { argument
113 void AsanTSDSet(void *tsd) { argument
115 pthread_setspecific(tsd_key, tsd);
H A Dasan_thread.cc47 void AsanThreadSummary::TSDDtor(void *tsd) { argument
48 AsanThreadSummary *summary = (AsanThreadSummary*)tsd;
H A Dasan_win.cc140 void AsanTSDInit(void (*destructor)(void *tsd)) { argument
150 void AsanTSDSet(void *tsd) { argument
152 fake_tsd = tsd;
/external/libxml2/
H A Dthreads.c670 xmlGlobalState *tsd = xmlNewGlobalState(); local
671 if (tsd == NULL)
674 pthread_setspecific(globalkey, tsd);
675 return (tsd);
697 xmlGlobalState *tsd = xmlNewGlobalState();
699 if (tsd == NULL)
706 xmlFreeGlobalState(tsd);
709 p->memory = tsd;
714 TlsSetValue(globalkey, tsd);
728 return (tsd);
[all...]
/external/compiler-rt/lib/asan/tests/
H A Dasan_test.cc214 void TSDDestructor(void *tsd) { argument

Completed in 223 milliseconds