Home
last modified time | relevance | path

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

/hardware/google/gfxstream/guest/android-emu/aemu/base/threads/
DAndroidWorkPool.cpp365 std::vector<size_t> threadIndices; in schedule() local
367 while (threadIndices.size() < tasks.size()) { in schedule()
370 threadIndices.push_back(i); in schedule()
371 if (threadIndices.size() == tasks.size()) break; in schedule()
373 if (threadIndices.size() < tasks.size()) { in schedule()
380 for (size_t i = 0; i < threadIndices.size(); ++i) { in schedule()
381 mThreads[threadIndices[i]]->run(resHandle, waitGroup, tasks[i]); in schedule()