Lines Matching refs:ffrt_task_handle_t
36 | ffrt_queue_wait(ffrt_task_handle_t handle) | Waits until a task in the queue is complete.|
37 | ffrt_queue_cancel(ffrt_task_handle_t handle) | Cancels a task in the queue.|
60 | ffrt_task_handle_destroy(ffrt_task_handle_t handle) | Destroys a task handle.|
61 | ffrt_skip(ffrt_task_handle_t handle) | Skips a task.|
415 ffrt_task_handle_t task = ffrt_submit_h_base(
442 typedef void* ffrt_task_handle_t;
562 typedef void* ffrt_task_handle_t;
564 ffrt_task_handle_t ffrt_submit_h_base(ffrt_function_t func, void* arg, const ffrt_deps_t* in_deps, …
565 void ffrt_task_handle_destroy(ffrt_task_handle_t handle);
600 * **ffrt_task_handle_t** in the C code must be explicitly destroyed by calling **ffrt_task_handle_d…
601 … You need to set the **ffrt_task_handle_t** object in the C code to null or destroy the object. Fo…
602 * If **ffrt_task_handle_t** is accessed after **ffrt_task_handle_destroy** is called, undefined beh…
669 static inline ffrt_task_handle_t ffrt_submit_h_c(ffrt_function_t func, const ffrt_function_t after_…
685 …ffrt_task_handle_t h = ffrt_submit_h_c(func0, NULL, NULL, NULL, NULL, NULL); // not need some data…
698 ffrt_task_handle_t h2 = ffrt_submit_h_c(func3, NULL, &x, NULL, NULL, NULL);
2185 …ffrt_task_handle_t task1 = ffrt_queue_submit_h(queue_handle, ffrt::create_function_wrapper(basicFu…
2473 ffrt_task_handle_t task = ffrt_submit_h_base(
2481 ffrt_task_handle_t handle = ffrt_queue_submit_h(queue_handle,
2566 …ffrt_task_handle_t h = ffrt_submit_h_base([](){printf("Test task running...\n");}, NULL, NULL, NUL…
2579 …ffrt_task_handle_t h = ffrt_submit_h_base([](){printf("Test task running...\n");}, NULL, NULL, NUL…
2591 …ffrt_task_handle_t h = ffrt_submit_h_base([](){printf("Test task running...\n");}, NULL, NULL, NUL…