/third_party/skia/src/gpu/ |
D | GrDDLTask.cpp | 23 for (auto& task : fDDL->priv().renderTasks()) { in GrDDLTask() local 38 for (auto& task : fDDL->priv().renderTasks()) { in endFlush() local 46 for (auto& task : fDDL->priv().renderTasks()) { in disown() local 58 for (auto& task : fDDL->priv().renderTasks()) { in onIsUsed() local 72 for (auto& task : fDDL->priv().renderTasks()) { in gatherProxyIntervals() local 84 for (auto& task : fDDL->priv().renderTasks()) { in gatherIDs() local 90 for (auto& task : fDDL->priv().renderTasks()) { in onPrepare() local 97 for (auto& task : fDDL->priv().renderTasks()) { in onExecute() local 126 for (auto& task : fDDL->priv().renderTasks()) { in dump() local
|
D | GrDrawingManager.cpp | 120 bool used = std::any_of(fDAG.begin(), fDAG.end(), [&](auto& task) { in flush() 170 for (const auto& task : fDAG) { in flush() local 225 for (const auto& task : fDAG) { in flush() local 349 for (const auto& task : fDAG) { in removeRenderTasks() local 429 sk_sp<GrRenderTask>& task = fDAG[i]; in reorderTasks() local 448 for (auto& task : fDAG) { in closeAllTasks() local 455 GrRenderTask* GrDrawingManager::insertTaskBeforeLast(sk_sp<GrRenderTask> task) { in insertTaskBeforeLast() 470 GrRenderTask* GrDrawingManager::appendTask(sk_sp<GrRenderTask> task) { in appendTask() 559 void GrDrawingManager::setLastRenderTask(const GrSurfaceProxy* proxy, GrRenderTask* task) { in setLastRenderTask() 579 GrRenderTask* task = this->getLastRenderTask(proxy); in getLastOpsTask() local [all …]
|
/third_party/node/deps/v8/src/libplatform/ |
D | default-foreground-task-runner.cc | 39 void DefaultForegroundTaskRunner::PostTaskLocked(std::unique_ptr<Task> task, in PostTaskLocked() 47 void DefaultForegroundTaskRunner::PostTask(std::unique_ptr<Task> task) { in PostTask() 57 std::unique_ptr<Task> task, double delay_in_seconds, in PostDelayedTaskLocked() 66 void DefaultForegroundTaskRunner::PostDelayedTask(std::unique_ptr<Task> task, in PostDelayedTask() 73 std::unique_ptr<Task> task, double delay_in_seconds) { in PostNonNestableDelayedTask() 78 void DefaultForegroundTaskRunner::PostIdleTask(std::unique_ptr<IdleTask> task) { in PostIdleTask() 90 std::unique_ptr<Task> task) { in PostNonNestableTask() 110 std::unique_ptr<Task> task = in MoveExpiredDelayedTasks() local 136 std::unique_ptr<Task> task = std::move(it->second); in PopTaskFromQueue() local 156 std::unique_ptr<Task> task = std::move(const_cast<DelayedEntry&>(entry).task); in PopTaskFromDelayedQueueLocked() local [all …]
|
D | default-worker-threads-task-runner.cc | 34 void DefaultWorkerThreadsTaskRunner::PostTask(std::unique_ptr<Task> task) { in PostTask() 40 void DefaultWorkerThreadsTaskRunner::PostDelayedTask(std::unique_ptr<Task> task, in PostDelayedTask() 48 std::unique_ptr<IdleTask> task) { in PostIdleTask() 72 while (std::unique_ptr<Task> task = runner_->GetNext()) { in Run() local
|
D | delayed-task-queue.cc | 27 void DelayedTaskQueue::Append(std::unique_ptr<Task> task) { in Append() 34 void DelayedTaskQueue::AppendDelayed(std::unique_ptr<Task> task, in AppendDelayed() 51 std::unique_ptr<Task> task = PopTaskFromDelayedQueue(now); in GetNext() local
|
/third_party/gstreamer/gstreamer/gst/ |
D | gsttask.c | 239 gst_task_init (GstTask * task) in gst_task_init() 263 GstTask *task = GST_TASK (object); in gst_task_finalize() local 288 gst_task_configure_name (GstTask * task) in gst_task_configure_name() 329 gst_task_func (GstTask * task) in gst_task_func() 478 GstTask *task; in gst_task_new() local 509 gst_task_set_lock (GstTask * task, GRecMutex * mutex) in gst_task_set_lock() 543 gst_task_get_pool (GstTask * task) in gst_task_get_pool() 570 gst_task_set_pool (GstTask * task, GstTaskPool * pool) in gst_task_set_pool() 604 gst_task_set_enter_callback (GstTask * task, GstTaskThreadFunc enter_func, in gst_task_set_enter_callback() 642 gst_task_set_leave_callback (GstTask * task, GstTaskThreadFunc leave_func, in gst_task_set_leave_callback() [all …]
|
D | gsttask.h | 42 #define GST_TASK(task) (G_TYPE_CHECK_INSTANCE_CAST ((task), GST_TYPE_TASK, GstTask… argument 43 #define GST_IS_TASK(task) (G_TYPE_CHECK_INSTANCE_TYPE ((task), GST_TYPE_TASK)) argument 46 #define GST_TASK_GET_CLASS(task) (G_TYPE_INSTANCE_GET_CLASS ((task), GST_TYPE_TASK, GstTaskC… argument 47 #define GST_TASK_CAST(task) ((GstTask*)(task)) argument 73 #define GST_TASK_STATE(task) (GST_TASK_CAST(task)->state) argument 81 #define GST_TASK_GET_COND(task) (&GST_TASK_CAST(task)->cond) argument 88 #define GST_TASK_WAIT(task) g_cond_wait(GST_TASK_GET_COND (task), GST_OBJECT_GET_LOCK (… argument 95 #define GST_TASK_SIGNAL(task) g_cond_signal(GST_TASK_GET_COND (task)) argument 102 #define GST_TASK_BROADCAST(task) g_cond_broadcast(GST_TASK_GET_COND (task)) argument 110 #define GST_TASK_GET_LOCK(task) (GST_TASK_CAST(task)->lock) argument
|
/third_party/libwebsockets/lib/misc/threadpool/ |
D | threadpool.c | 75 struct lws_threadpool_task *task; member 125 __lws_threadpool_task_dump(struct lws_threadpool_task *task, char *buf, int len) in __lws_threadpool_task_dump() 237 state_transition(struct lws_threadpool_task *task, in state_transition() 245 task_to_wsi(struct lws_threadpool_task *task) in task_to_wsi() 255 lws_threadpool_task_cleanup_destroy(struct lws_threadpool_task *task) in lws_threadpool_task_cleanup_destroy() 269 __lws_threadpool_reap(struct lws_threadpool_task *task) in __lws_threadpool_reap() 319 struct lws_threadpool_task **c, *task = NULL; in lws_threadpool_tsi_context() local 393 struct lws_threadpool_task *task) in lws_threadpool_worker_sync() 493 struct lws_threadpool_task **c, **c2, *task; in lws_threadpool_worker() local 744 struct lws_threadpool_task **c, *task; in lws_threadpool_finish() local [all …]
|
/third_party/node/deps/v8/src/d8/ |
D | d8-platforms.cc | 55 void CallOnWorkerThread(std::unique_ptr<Task> task) override { in CallOnWorkerThread() 69 void CallDelayedOnWorkerThread(std::unique_ptr<Task> task, in CallDelayedOnWorkerThread() 174 void CallOnWorkerThread(std::unique_ptr<Task> task) override { in CallOnWorkerThread() 178 void CallDelayedOnWorkerThread(std::unique_ptr<Task> task, in CallDelayedOnWorkerThread() 213 void PostTask(std::unique_ptr<Task> task) final { in PostTask() 217 void PostNonNestableTask(std::unique_ptr<Task> task) final { in PostNonNestableTask() 222 void PostDelayedTask(std::unique_ptr<Task> task, in PostDelayedTask() 228 void PostIdleTask(std::unique_ptr<IdleTask> task) final { in PostIdleTask() 258 DelayedTask(std::unique_ptr<Task> task, int32_t delay_ms) in DelayedTask() 273 DelayedIdleTask(std::unique_ptr<IdleTask> task, int32_t delay_ms) in DelayedIdleTask() [all …]
|
/third_party/gstreamer/gstplugins_bad/ext/webrtc/ |
D | webrtcsctptransport.c | 58 struct task struct 67 _execute_task (GstWebRTCBin * webrtc, struct task *task) in _execute_task() 75 _free_task (struct task *task) in _free_task() 88 struct task *task = g_new0 (struct task, 1); in _sctp_enqueue_task() local
|
/third_party/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_rast.c | 95 lp_rast_tile_begin(struct lp_rasterizer_task *task, in lp_rast_tile_begin() 135 lp_rast_clear_color(struct lp_rasterizer_task *task, in lp_rast_clear_color() 183 lp_rast_clear_zstencil(struct lp_rasterizer_task *task, in lp_rast_clear_zstencil() 298 lp_rast_shade_tile(struct lp_rasterizer_task *task, in lp_rast_shade_tile() 390 lp_rast_shade_tile_opaque(struct lp_rasterizer_task *task, in lp_rast_shade_tile_opaque() 411 lp_rast_shade_quads_mask_sample(struct lp_rasterizer_task *task, in lp_rast_shade_quads_mask_sample() 492 lp_rast_shade_quads_mask(struct lp_rasterizer_task *task, in lp_rast_shade_quads_mask() 509 lp_rast_blit_tile_to_dest(struct lp_rasterizer_task *task, in lp_rast_blit_tile_to_dest() 609 lp_rast_blit_tile(struct lp_rasterizer_task *task, in lp_rast_blit_tile() 624 lp_rast_begin_query(struct lp_rasterizer_task *task, in lp_rast_begin_query() [all …]
|
D | lp_rast_linear.c | 46 lp_rast_linear_clear(struct lp_rasterizer_task *task, in lp_rast_linear_clear() 68 lp_rast_linear_tile(struct lp_rasterizer_task *task, in lp_rast_linear_tile() 127 lp_rast_linear_rect(struct lp_rasterizer_task *task, in lp_rast_linear_rect() 240 lp_linear_rasterize_bin(struct lp_rasterizer_task *task, in lp_linear_rasterize_bin()
|
D | lp_rast_rect.c | 88 full(struct lp_rasterizer_task *task, in full() 100 partial(struct lp_rasterizer_task *task, in partial() 123 intersect_rect_and_tile(struct lp_rasterizer_task *task, in intersect_rect_and_tile() 148 lp_rast_rectangle(struct lp_rasterizer_task *task, in lp_rast_rectangle()
|
D | lp_cs_tpool.c | 45 struct lp_cs_tpool_task *task; in lp_cs_tpool_worker() local 133 struct lp_cs_tpool_task *task; in lp_cs_tpool_queue_task() local 172 struct lp_cs_tpool_task *task = *task_handle; in lp_cs_tpool_wait_for_task() local
|
/third_party/node/src/ |
D | node_platform.cc | 42 while (std::unique_ptr<Task> task = pending_worker_tasks->BlockingPop()) { in PlatformWorkerThread() local 74 void PostDelayedTask(std::unique_ptr<Task> task, double delay_in_seconds) { in PostDelayedTask() 102 while (std::unique_ptr<Task> task = scheduler->tasks_.Pop()) in FlushTasks() local 127 std::unique_ptr<Task> task, in ScheduleTask() 155 std::unique_ptr<Task> task(static_cast<Task*>(timer->data)); in TakeTimerTask() local 204 void WorkerThreadsTaskRunner::PostTask(std::unique_ptr<Task> task) { in PostTask() 208 void WorkerThreadsTaskRunner::PostDelayedTask(std::unique_ptr<Task> task, in PostDelayedTask() 248 void PerIsolatePlatformData::PostIdleTask(std::unique_ptr<v8::IdleTask> task) { in PostIdleTask() 252 void PerIsolatePlatformData::PostTask(std::unique_ptr<Task> task) { in PostTask() 263 std::unique_ptr<Task> task, double delay_in_seconds) { in PostDelayedTask() [all …]
|
/third_party/python/Lib/asyncio/ |
D | base_tasks.py | 8 def _task_repr_info(task): argument 25 def _task_get_stack(task, limit): argument 60 def _task_print_stack(task, limit, file): argument
|
/third_party/cef/libcef/browser/ |
D | thread_util.h | 45 #define CEF_POST_TASK(id, task) base::PostTask(FROM_HERE, {id}, task) argument 46 #define CEF_POST_DELAYED_TASK(id, task, delay_ms) \ argument 58 #define CEF_POST_BLOCKING_TASK(priority, task) \ argument 68 #define CEF_POST_USER_VISIBLE_TASK(task) \ argument 73 #define CEF_POST_BACKGROUND_TASK(task) \ argument
|
/third_party/typescript/.vscode/ |
D | tasks.json | 9 "task": "local", string 21 "task": "tsc", string 30 "task": "tests", string 38 "task": "services", string
|
/third_party/mesa3d/src/gallium/frontends/nine/ |
D | threadpool.c | 49 struct threadpool_task *task; in threadpool_worker() local 145 struct threadpool_task *task, *previous; in _mesa_threadpool_queue_task() local 187 struct threadpool_task *task = *task_handle; in _mesa_threadpool_wait_for_task() local
|
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/ |
D | VkQueue.cpp | 175 Task task; in ~Queue() local 189 Task task; in submit() local 203 void Queue::submitQueue(const Task &task) in submitQueue() 280 Task task = pending.take(); in taskLoop() local 303 Task task; in waitIdle() local
|
/third_party/typescript/tests/baselines/reference/ |
D | privateFieldAssignabilityFromUnknown.js | 6 const task: Class = {} as unknown; constant 22 var task = {}; variable
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
D | WorkerThread.cpp | 66 std::shared_ptr<Closure> task) in postWorkerTask() 154 std::shared_ptr<WaitableEvent> AsyncWorkerPool::postWorkerTask(std::shared_ptr<Closure> task) in postWorkerTask() 186 auto task = mTaskQueue.front(); in checkToRunPendingTasks() local 273 DelegateWorkerTask(std::shared_ptr<Closure> task, in DelegateWorkerTask() 297 std::shared_ptr<WaitableEvent> DelegateWorkerPool::postWorkerTask(std::shared_ptr<Closure> task) in postWorkerTask() 346 std::shared_ptr<Closure> task) in PostWorkerTask()
|
/third_party/gstreamer/gstplugins_bad/gst/rtmp2/rtmp/ |
D | rtmputils.c | 59 GTask *task; in gst_rtmp_input_stream_read_all_bytes_async() local 79 GTask *task = user_data; in read_all_bytes_done() local 113 GTask *task; in gst_rtmp_output_stream_write_all_bytes_async() local 136 GTask *task = user_data; in write_all_bytes_done() local 191 GTask *task; in gst_rtmp_output_stream_write_all_buffer_async() local 220 GTask *task = user_data; in write_all_buffer_done() local 247 GTask *task; in gst_rtmp_output_stream_write_all_buffer_finish() local
|
/third_party/libuv/test/ |
D | runner.c | 86 task_entry_t* task; in run_tests() local 170 task_entry_t* task; in run_test() local 370 task_entry_t* task; in run_test_part() local 388 static int find_helpers(const task_entry_t* task, in find_helpers() 406 const task_entry_t* task; in print_tests() local
|
/third_party/skia/experimental/graphite/src/ |
D | TaskGraph.cpp | 15 void TaskGraph::add(sk_sp<Task> task) { in add() 20 for (const auto& task: fTasks) { in addCommands() local
|