Home
last modified time | relevance | path

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

/external/libchrome/base/task/sequence_manager/
Dwork_queue_sets.cc33 HeapHandle heap_handle = work_queue->heap_handle(); in RemoveQueue() local
34 if (!heap_handle.IsValid()) in RemoveQueue()
38 work_queue_heaps_[set_index].erase(heap_handle); in RemoveQueue()
52 work_queue_heaps_[old_set].erase(work_queue->heap_handle()); in ChangeSetIndex()
61 work_queue_heaps_[set].ChangeKey(work_queue->heap_handle(), in OnFrontTaskChanged()
76 DCHECK(!work_queue->heap_handle().IsValid()); in OnTaskPushedToEmptyQueue()
88 DCHECK(work_queue->heap_handle().IsValid()); in OnPopQueue()
103 HeapHandle heap_handle = work_queue->heap_handle(); in OnQueueBlocked() local
104 if (!heap_handle.IsValid()) in OnQueueBlocked()
108 work_queue_heaps_[set_index].erase(heap_handle); in OnQueueBlocked()
[all …]
Dtime_domain.cc65 if (queue->heap_handle().IsValid()) { in SetNextWakeUpForQueue()
67 delayed_wake_up_queue_.ChangeKey(queue->heap_handle(), in SetNextWakeUpForQueue()
75 if (queue->heap_handle().IsValid()) in SetNextWakeUpForQueue()
76 delayed_wake_up_queue_.erase(queue->heap_handle()); in SetNextWakeUpForQueue()
Dtask_queue_impl.h258 HeapHandle heap_handle() const { return main_thread_only().heap_handle; } in heap_handle() function
260 void set_heap_handle(HeapHandle heap_handle) { in set_heap_handle() argument
261 main_thread_only().heap_handle = heap_handle; in set_heap_handle()
355 HeapHandle heap_handle; member
Dwork_queue.h97 HeapHandle heap_handle() const { return heap_handle_; } in heap_handle() function
Dtime_domain.h124 DCHECK(queue->heap_handle().IsValid()); in ClearHeapHandle()