Home
last modified time | relevance | path

Searched refs:task_id (Results 1 - 18 of 18) sorted by relevance

/third_party/libuv/test/
H A Dtest-thread-priority.c55 uv_thread_t task_id; in TEST_IMPL() local
61 ASSERT_OK(uv_thread_create(&task_id, simple_task, NULL)); in TEST_IMPL()
62 ASSERT_OK(uv_thread_getpriority(task_id, &priority)); in TEST_IMPL()
67 ASSERT_OK(pthread_getschedparam(task_id, &policy, &param)); in TEST_IMPL()
78 ASSERT_OK(uv_thread_setpriority(task_id, UV_THREAD_PRIORITY_LOWEST)); in TEST_IMPL()
79 ASSERT_OK(uv_thread_getpriority(task_id, &priority)); in TEST_IMPL()
100 ASSERT_OK(uv_thread_join(&task_id)); in TEST_IMPL()
/third_party/node/deps/v8/src/libplatform/
H A Ddefault-job.cc72 uint8_t task_id = 0; in AcquireTaskId() local
75 // the same task_id become visible to the current thread. in AcquireTaskId()
79 task_id = v8::base::bits::CountTrailingZeros32(~assigned_task_ids); in AcquireTaskId()
80 new_assigned_task_ids = assigned_task_ids | (uint32_t(1) << task_id); in AcquireTaskId()
84 return task_id; in AcquireTaskId()
87 void DefaultJobState::ReleaseTaskId(uint8_t task_id) { in ReleaseTaskId() argument
90 ~(uint32_t(1) << task_id), std::memory_order_release); in ReleaseTaskId()
91 DCHECK(previous_task_ids & (uint32_t(1) << task_id)); in ReleaseTaskId()
H A Ddefault-job.h53 void ReleaseTaskId(uint8_t task_id);
/third_party/skia/infra/bots/recipes/
H A Dperf_skottietrace.py271 task_id='abc123',
288 task_id='abc123',
305 task_id='abc123',
322 task_id='abc123',
335 task_id='abc123',
H A Dtest.py199 task_id='task_12345',
/third_party/skia/third_party/externals/angle2/scripts/
H A Dupdate_extension_data.py119 def collect_task_and_update_json(task_id, gpu, bot_os, device_os, device_type):
121 (task_id, get_props_string(gpu, bot_os, device_os, device_type)))
125 run_swarming('collect', '-S', SWARMING_SERVER, '-output-dir=%s' % tempdirname, task_id)
126 task_dir = os.path.join(tempdirname, task_id)
198 collect_task_and_update_json(task['task_id'], gpu, bot_os, device_os, device_type)
/third_party/node/deps/v8/src/heap/
H A Dconcurrent-marking.cc88 ConcurrentMarkingVisitor(int task_id, in ConcurrentMarkingVisitor() argument
459 uint8_t task_id = delegate->GetTaskId() + 1; in Run() local
460 TaskState* task_state = &task_state_[task_id]; in Run()
468 task_id, &local_marking_worklists, &local_weak_objects, heap_, in Run()
480 task_id); in Run()
575 "Task %d concurrently marked %dKB in %.2fms\n", task_id, in Run()
H A Dscavenger.h93 EphemeronTableList* ephemeron_table_list, int task_id);
H A Dscavenger.cc564 EphemeronTableList* ephemeron_table_list, int task_id) in Scavenger()
561 Scavenger(ScavengerCollector* collector, Heap* heap, bool is_logging, EmptyChunksList* empty_chunks, CopiedList* copied_list, PromotionList* promotion_list, EphemeronTableList* ephemeron_table_list, int task_id) Scavenger() argument
/third_party/node/src/
H A Dinspector_js_api.cc229 // In general it means that our task_id should always be even. in GetAsyncTask()
242 int64_t task_id = args[0]->IntegerValue(env->context()).FromJust(); in InvokeAsyncTaskFnWithId() local
243 (env->inspector_agent()->*asyncTaskFn)(GetAsyncTask(task_id)); in InvokeAsyncTaskFnWithId()
255 int64_t task_id = args[1]->IntegerValue(env->context()).FromJust(); in AsyncTaskScheduledWrapper() local
256 void* task = GetAsyncTask(task_id); in AsyncTaskScheduledWrapper()
/third_party/skia/infra/bots/recipe_modules/docker/examples/
H A Dfull.py38 task_id='task_12345')
/third_party/mesa3d/src/gallium/drivers/radeonsi/
H A Dradeon_uvd_enc.h132 uint32_t task_id; member
153 uint32_t task_id; member
H A Dradeon_vcn_enc.h155 uint32_t task_id; member
H A Dradeon_uvd_enc_1_1.c206 enc->enc_pic.task_info.task_id++; in radeon_uvd_enc_task_info()
215 RADEON_ENC_CS(enc->enc_pic.task_info.task_id); in radeon_uvd_enc_task_info()
H A Dradeon_vcn_enc_1_2.c77 enc->enc_pic.task_info.task_id++; in radeon_enc_task_info()
86 RADEON_ENC_CS(enc->enc_pic.task_info.task_id); in radeon_enc_task_info()
/third_party/node/deps/v8/src/wasm/
H A Dmodule-compiler.cc134 Queue* GetQueueForTask(int task_id) { in GetQueueForTask() argument
135 int required_queues = task_id + 1; in GetQueueForTask()
139 return queues_[task_id].get(); in GetQueueForTask()
170 return queues_[task_id].get(); in GetQueueForTask()
330 int next_task_id(int task_id, size_t num_queues) const { in next_task_id() argument
331 int next = task_id + 1; in next_task_id()
445 // first stolen unit (rest put in queue of {task_id}), or {nullopt} if
472 // Steal one priority unit from {steal_from_task_id} to {task_id}. Return
594 CompilationUnitQueues::Queue* GetQueueForCompileTask(int task_id);
1515 int task_id in ExecuteCompilationUnits() local
3486 GetQueueForCompileTask( int task_id) GetQueueForCompileTask() argument
[all...]
/third_party/NuttX/drivers/usbdev/gadget/
H A Drndis.c154 pthread_t task_id; /* Network connection status processing task */ member
458 ret = usb_os_task_creat(&dev->task_id, (TSK_ENTRY_FUNC)link_status_check_thread, LINK_STATUS_TASK_PRI, "USB_Status_Task", (UINTPTR)(dev)); in link_status_check_init()
468 (void)usb_os_task_delete(dev->task_id); in link_status_check_deinit()
/third_party/rust/crates/libc/src/unix/bsd/apple/
H A Dmod.rs5328 task_id: *mut u32, in backtrace_async()

Completed in 33 milliseconds