Home
last modified time | relevance | path

Searched refs:pThreads (Results 1 – 5 of 5) sorted by relevance

/external/ltp/testcases/kernel/io/disktest/
Dthreading.c133 while (test->env->pThreads) { in cleanUpTestChildren()
134 pTmpThread = test->env->pThreads->next; in cleanUpTestChildren()
135 pTmpThreadLast = test->env->pThreads; in cleanUpTestChildren()
139 test->env->pThreads = pTmpThread; in cleanUpTestChildren()
168 pNewThread->next = test->env->pThreads; in CreateTestChild()
169 test->env->pThreads = pNewThread; in CreateTestChild()
170 test->env->pThreads->hThread = hTmpThread; in CreateTestChild()
Dglobals.c57 env->pThreads = NULL; in init_gbl_data()
Dmain.h261 thread_struct_t *pThreads; /* List of child test processes */ member
/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
Dthreads.cpp1099 pPool->pThreads = new (std::nothrow) THREAD_PTR[pPool->numThreads]; in CreateThreadPool()
1100 SWR_ASSERT(pPool->pThreads); in CreateThreadPool()
1232 …pPool->pThreads[workerId] = new std::thread(workerThreadInit<true, true>, &pPool->pThreadData[work… in StartThreadPool()
1252 pPool->pThreads[t]->detach(); in DestroyThreadPool()
1253 delete(pPool->pThreads[t]); in DestroyThreadPool()
1256 delete[] pPool->pThreads; in DestroyThreadPool()
Dthreads.h54 THREAD_PTR* pThreads; member