| /third_party/glib/gio/ |
| D | gtask.c | 595 #define G_TASK_IS_THREADED(task) ((task)->task_func != NULL) argument 645 g_task_init (GTask *task) in g_task_init() 653 GTask *task = G_TASK (object); in g_task_finalize() local 715 GTask *task; in g_task_new() local 762 GTask *task; in g_task_report_error() local 827 g_task_set_task_data (GTask *task, in g_task_set_task_data() 858 g_task_set_priority (GTask *task, in g_task_set_priority() 892 g_task_set_check_cancellable (GTask *task, in g_task_set_check_cancellable() 945 g_task_set_return_on_cancel (GTask *task, in g_task_set_return_on_cancel() 1018 g_task_set_name (GTask *task, in g_task_set_name() [all …]
|
| D | goutputstream.c | 952 GTask *task = user_data; in async_ready_write_callback_wrapper() local 1030 GTask *task; in g_output_stream_write_async() local 1112 GTask *task = user_data; in write_all_callback() local 1151 write_all_async_thread (GTask *task, in write_all_async_thread() 1205 GTask *task; in g_output_stream_write_all_async() local 1260 GTask *task; in g_output_stream_write_all_finish() local 1402 GTask *task = user_data; in writev_all_callback() local 1455 writev_all_async_thread (GTask *task, in writev_all_async_thread() 1510 GTask *task; in g_output_stream_writev_all_async() local 1582 GTask *task; in g_output_stream_writev_all_finish() local [all …]
|
| D | ginputstream.c | 632 GTask *task; in g_input_stream_read_async() local 714 GTask *task = user_data; in read_all_callback() local 755 read_all_async_thread (GTask *task, in read_all_async_thread() 805 GTask *task; in g_input_stream_read_all_async() local 859 GTask *task; in g_input_stream_read_all_finish() local 881 GTask *task = user_data; in read_bytes_callback() local 948 GTask *task; in g_input_stream_read_bytes_async() local 1034 GTask *task; in g_input_stream_skip_async() local 1131 GTask *task; in g_input_stream_close_async() local 1327 read_async_thread (GTask *task, in read_async_thread() [all …]
|
| /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/gstreamer/gstreamer/gst/ |
| D | gsttask.c | 184 gst_task_init (GstTask * task) in gst_task_init() 207 GstTask *task = GST_TASK (object); in gst_task_finalize() local 232 gst_task_configure_name (GstTask * task) in gst_task_configure_name() 273 gst_task_func (GstTask * task) in gst_task_func() 415 GstTask *task; in gst_task_new() local 446 gst_task_set_lock (GstTask * task, GRecMutex * mutex) in gst_task_set_lock() 480 gst_task_get_pool (GstTask * task) in gst_task_get_pool() 507 gst_task_set_pool (GstTask * task, GstTaskPool * pool) in gst_task_set_pool() 541 gst_task_set_enter_callback (GstTask * task, GstTaskThreadFunc enter_func, in gst_task_set_enter_callback() 579 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/glib/gio/tests/ |
| D | task.c | 41 wait_for_completed_notification (GTask *task) in wait_for_completed_notification() 89 GTask *task = user_data; in basic_return() local 108 GTask *task; in test_basic() local 156 GTask *task = user_data; in error_return() local 177 GTask *task; in test_error() local 239 GTask *task; in same_start() local 301 GTask *task; in test_return_from_toplevel() local 359 GTask *task = user_data; in anon_thread_func() local 370 GTask *task = user_data; in anon_start() local 380 GTask *task; in test_return_from_anon_thread() local [all …]
|
| /third_party/flutter/engine/flutter/shell/platform/embedder/ |
| D | embedder_task_runner.cc | 20 void EmbedderTaskRunner::PostTask(fml::closure task) { in PostTask() 24 void EmbedderTaskRunner::PostTaskForTime(fml::closure task, in PostTaskForTime() 42 void EmbedderTaskRunner::PostDelayedTask(fml::closure task, in PostDelayedTask() 52 fml::closure task; in PostTask() local
|
| /third_party/boost/libs/math/test/ |
| D | naive_monte_carlo_test.cpp | 42 auto task = mc.integrate(); in test_pi_multithreaded() local 70 auto task = mc.integrate(); in test_pi() local 95 auto task = mc.integrate(); in test_constant() local 119 auto task = mc.integrate(); in test_exception_from_integrand() local 149 auto task = mc.integrate(); in test_cancel_and_restart() local 176 auto task = mc.integrate(); in test_finite_singular_boundary() local 194 auto task = mc.integrate(); in test_multithreaded_variance() local 212 auto task = mc.integrate(); in test_variance() local 239 auto task = mc.integrate(); in test_product() local 270 auto task = mc1.integrate(); in test_alternative_rng_1() local [all …]
|
| /third_party/flutter/engine/flutter/fml/ |
| D | task_runner.cc | 23 void TaskRunner::PostTask(fml::closure task) { in PostTask() 27 void TaskRunner::PostTaskForTime(fml::closure task, in PostTaskForTime() 32 void TaskRunner::PostDelayedTask(fml::closure task, fml::TimeDelta delay) { in PostDelayedTask() 65 fml::closure task) { in RunNowOrPostTask()
|
| D | concurrent_message_loop.cc | 46 void ConcurrentMessageLoop::PostTask(fml::closure task) { in PostTask() 85 auto task = tasks_.front(); in WorkerMain() local 110 void ConcurrentTaskRunner::PostTask(fml::closure task) { in PostTask()
|
| /third_party/libwebsockets/lib/misc/threadpool/ |
| D | threadpool.c | 67 struct lws_threadpool_task *task; member 117 __lws_threadpool_task_dump(struct lws_threadpool_task *task, char *buf, int len) in __lws_threadpool_task_dump() 180 struct lws_threadpool_task *task = *c; in lws_threadpool_dump() local 195 struct lws_threadpool_task *task = pool->task; in lws_threadpool_dump() local 211 struct lws_threadpool_task *task = *c; in lws_threadpool_dump() local 228 state_transition(struct lws_threadpool_task *task, in state_transition() 236 lws_threadpool_task_cleanup_destroy(struct lws_threadpool_task *task) in lws_threadpool_task_cleanup_destroy() 251 __lws_threadpool_reap(struct lws_threadpool_task *task) in __lws_threadpool_reap() 292 struct lws_threadpool_task **c, *task = NULL; in lws_threadpool_tsi_context() local 364 struct lws_threadpool_task *task) in lws_threadpool_worker_sync() [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/gstreamer/gstplugins_bad/ext/webrtc/ |
| D | sctptransport.c | 57 struct task struct 66 _execute_task (GstWebRTCBin * webrtc, struct task *task) in _execute_task() 73 _free_task (struct task *task) in _free_task() 86 struct task *task = g_new0 (struct task, 1); in _sctp_enqueue_task() local
|
| /third_party/flutter/skia/infra/bots/android_compile/ |
| D | trigger_wait_ac_task.py | 62 def _write_to_storage(task): argument 72 def _get_task_file_name(task): argument 80 def _does_task_exist_in_storage(task): argument 188 def pretty_task_str(task): argument
|
| /third_party/node/src/ |
| D | node_platform.cc | 42 while (std::unique_ptr<Task> task = pending_worker_tasks->BlockingPop()) { in PlatformWorkerThread() local 67 void PostDelayedTask(std::unique_ptr<Task> task, double delay_in_seconds) { in PostDelayedTask() 95 while (std::unique_ptr<Task> task = scheduler->tasks_.Pop()) in FlushTasks() local 120 std::unique_ptr<Task> task, in ScheduleTask() 148 std::unique_ptr<Task> task(static_cast<Task*>(timer->data)); in TakeTimerTask() local 197 void WorkerThreadsTaskRunner::PostTask(std::unique_ptr<Task> task) { in PostTask() 201 void WorkerThreadsTaskRunner::PostDelayedTask(std::unique_ptr<Task> task, in PostDelayedTask() 241 void PerIsolatePlatformData::PostIdleTask(std::unique_ptr<v8::IdleTask> task) { in PostIdleTask() 245 void PerIsolatePlatformData::PostTask(std::unique_ptr<Task> task) { in PostTask() 256 std::unique_ptr<Task> task, double delay_in_seconds) { in PostDelayedTask() [all …]
|
| /third_party/flutter/engine/flutter/shell/platform/fuchsia/flutter/ |
| D | task_runner_adapter.cc | 22 void PostTask(fml::closure task) override { in PostTask() 26 void PostTaskForTime(fml::closure task, fml::TimePoint target_time) override { in PostTaskForTime() 32 void PostDelayedTask(fml::closure task, fml::TimeDelta delay) override { in PostDelayedTask()
|
| /third_party/flutter/engine/flutter/shell/platform/ohos/ |
| D | platform_task_runner_adapter.cc | 24 void PlatformTaskRunnerAdapter::PostTask(fml::closure task) in PostTask() 29 void PlatformTaskRunnerAdapter::PostTaskForTime(fml::closure task, fml::TimePoint target_time) in PostTaskForTime() 34 void PlatformTaskRunnerAdapter::PostDelayedTask(fml::closure task, fml::TimeDelta delay) in PostDelayedTask()
|
| /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/flutter/skia/infra/bots/g3_compile/ |
| D | trigger_wait_g3_task.py | 71 def _write_to_storage(task): argument 81 def _get_task_file_name(task): argument 86 def _does_running_task_exist_in_storage(task): argument 185 def pretty_task_str(task): 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 59 #define CEF_POST_BLOCKING_TASK(priority, task) \ argument 69 #define CEF_POST_USER_VISIBLE_TASK(task) \ argument 74 #define CEF_POST_BACKGROUND_TASK(task) \ argument
|
| /third_party/boost/libs/thread/test/ |
| D | test_9303.cpp | 67 boost::thread task(boost::move(example)); in main() local 79 boost::thread task(boost::move(example)); in main() local 114 boost::thread task(boost::move(example), boost::ref(ans)); in main() local 128 boost::thread task(boost::move(example), boost::ref(ans)); in main() local 145 boost::thread task(boost::bind(&task_t::operator(), example)); in main() 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/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
|