Home
last modified time | relevance | path

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

/aosp12/system/bt/osi/src/
H A Dthread.cc48 fixed_queue_t* work_queue; member
76 ret->work_queue = fixed_queue_new(work_queue_capacity); in thread_new_sized()
77 if (!ret->work_queue) goto error; in thread_new_sized()
97 fixed_queue_free(ret->work_queue, osi_free); in thread_new_sized()
114 fixed_queue_free(thread->work_queue, osi_free); in thread_free()
139 fixed_queue_enqueue(thread->work_queue, item); in thread_post()
213 int fd = fixed_queue_get_dequeue_fd(thread->work_queue); in run_thread()
214 void* context = thread->work_queue; in run_thread()
226 static_cast<work_item_t*>(fixed_queue_try_dequeue(thread->work_queue)); in run_thread()
227 while (item && count <= fixed_queue_capacity(thread->work_queue)) { in run_thread()
[all …]
/aosp12/art/compiler/optimizing/
H A Dload_store_elimination.cc1695 while (!work_queue.empty()) { in MaterializeNonLoopPhis()
1701 work_queue.pop_back(); in MaterializeNonLoopPhis()
1739 work_queue.pop_back(); in MaterializeNonLoopPhis()
1918 while (!work_queue.empty()) { in TryReplacingLoopPhiPlaceholderWithDefault()
1920 work_queue.pop_back(); in TryReplacingLoopPhiPlaceholderWithDefault()
2002 while (!work_queue.empty()) { in TryReplacingLoopPhiPlaceholderWithSingleInput()
2004 work_queue.pop_back(); in TryReplacingLoopPhiPlaceholderWithSingleInput()
2058 while (!work_queue.empty()) { in FindLoopPhisToMaterialize()
2060 work_queue.pop_back(); in FindLoopPhisToMaterialize()
2629 while (!work_queue.empty()) { in SearchPhiPlaceholdersForKeptStores()
[all …]
/aosp12/art/dex2oat/linker/
H A Dimage_writer.cc1583 WorkQueue work_queue; in ProcessCollectedClasses() local
1598 work_queue.emplace_back(entry.klass, last_oat_index); in ProcessCollectedClasses()
1639 for (const auto& pair : work_queue) { in ProcessCollectedClasses()
1680 return work_queue; in ProcessCollectedClasses()