Home | History | Annotate | Download | only in wgl

Lines Matching refs:te

81          THREADENTRY32 te;
82 te.dwSize = sizeof te;
83 if (Thread32First(hSnapshot, &te)) {
85 if (te.dwSize >= FIELD_OFFSET(THREADENTRY32, th32OwnerProcessID) +
86 sizeof te.th32OwnerProcessID) {
87 if (te.th32OwnerProcessID == dwCurrentProcessId) {
88 if (te.th32ThreadID != dwCurrentThreadId) {
90 data = stw_tls_data_create(te.th32ThreadID);
100 te.dwSize = sizeof te;
101 } while (Thread32Next(hSnapshot, &te));