ThreadData        211 modules/core/src/alloc.cpp struct ThreadData;
ThreadData        229 modules/core/src/alloc.cpp     void init(Block* _prev, Block* _next, int _objSize, ThreadData* _threadData)
ThreadData        258 modules/core/src/alloc.cpp     ThreadData* threadData;
ThreadData        408 modules/core/src/alloc.cpp     static ThreadData* get()
ThreadData        410 modules/core/src/alloc.cpp         ThreadData* data;
ThreadData        413 modules/core/src/alloc.cpp         data = (ThreadData*)TlsGetValue(tlsKey);
ThreadData        416 modules/core/src/alloc.cpp             data = new ThreadData;
ThreadData        424 modules/core/src/alloc.cpp         delete (ThreadData*)data;
ThreadData        428 modules/core/src/alloc.cpp     static ThreadData* get()
ThreadData        430 modules/core/src/alloc.cpp         ThreadData* data;
ThreadData        433 modules/core/src/alloc.cpp         data = (ThreadData*)pthread_getspecific(tlsKey);
ThreadData        436 modules/core/src/alloc.cpp             data = new ThreadData;
ThreadData        445 modules/core/src/alloc.cpp DWORD ThreadData::tlsKey = TLS_OUT_OF_INDEXES;
ThreadData        449 modules/core/src/alloc.cpp     if( ThreadData::tlsKey != TLS_OUT_OF_INDEXES )
ThreadData        450 modules/core/src/alloc.cpp         delete (ThreadData*)TlsGetValue( ThreadData::tlsKey );
ThreadData        454 modules/core/src/alloc.cpp pthread_key_t ThreadData::tlsKey = 0;
ThreadData        458 modules/core/src/alloc.cpp static void checkList(ThreadData* tls, int idx)
ThreadData        498 modules/core/src/alloc.cpp     ThreadData* tls = ThreadData::get();
ThreadData        609 modules/core/src/alloc.cpp     ThreadData* tls = ThreadData::get();