| /Zephyr-4.2.1/kernel/ |
| D | init.c | 68 STRUCT_SECTION_FOREACH(_static_thread_data, thread_data) { in z_init_static_threads() 70 thread_data->init_thread, in z_init_static_threads() 71 thread_data->init_stack, in z_init_static_threads() 72 thread_data->init_stack_size, in z_init_static_threads() 73 thread_data->init_entry, in z_init_static_threads() 74 thread_data->init_p1, in z_init_static_threads() 75 thread_data->init_p2, in z_init_static_threads() 76 thread_data->init_p3, in z_init_static_threads() 77 thread_data->init_prio, in z_init_static_threads() 78 thread_data->init_options, in z_init_static_threads() [all …]
|
| /Zephyr-4.2.1/subsys/testsuite/ztest/src/ |
| D | ztress.c | 83 struct ztress_context_data *thread_data = k_timer_user_data_get(timer); in progress_timeout() local 96 if (thread_data[i].exec_cnt == 0 && thread_data[i].preempt_cnt == 0) { in progress_timeout() 100 uint32_t exec_progress = (thread_data[i].exec_cnt) ? in progress_timeout() 101 (100 * exec_cnt[i]) / thread_data[i].exec_cnt : 100; in progress_timeout() 102 uint32_t preempt_progress = (thread_data[i].preempt_cnt) ? in progress_timeout() 103 (100 * preempt_cnt[i]) / thread_data[i].preempt_cnt : 100; in progress_timeout() 287 static void ztress_init(struct ztress_context_data *thread_data) in ztress_init() argument 296 k_timer_user_data_set(&progress_timer, thread_data); in ztress_init() 321 struct ztress_context_data *thread_data, in ztress_execute() argument 344 ztress_init(thread_data); in ztress_execute() [all …]
|
| /Zephyr-4.2.1/tests/ztest/ztress/src/ |
| D | main.c | 41 struct ztress_context_data thread_data[] = { in ZTEST() local 47 err = ztress_execute(&timer_data, thread_data, ARRAY_SIZE(thread_data)); in ZTEST() 137 struct ztress_context_data thread_data[] = { in ZTEST() local 143 err = ztress_execute(&timer_data, thread_data, ARRAY_SIZE(thread_data)); in ZTEST()
|
| /Zephyr-4.2.1/tests/kernel/stack/stack/src/ |
| D | main.c | 56 struct k_thread thread_data; variable 174 k_tid_t tid = k_thread_create(&thread_data, threadstack, TSTACK_SIZE, in ZTEST_USER() 203 k_tid_t tid = k_thread_create(&thread_data, threadstack, TSTACK_SIZE, in ZTEST_USER() 232 k_tid_t tid = k_thread_create(&thread_data, threadstack, TSTACK_SIZE, in ZTEST() 282 k_tid_t tid = k_thread_create(&thread_data, threadstack, in ZTEST() 314 k_thread_access_grant(k_current_get(), &stack1, &stack2, &thread_data, in stack_setup()
|
| /Zephyr-4.2.1/samples/subsys/ipc/rpmsg_service/remote/src/ |
| D | main.c | 21 static struct k_thread thread_data; variable 79 k_thread_create(&thread_data, thread_stack, CONFIG_APP_REMOTE_TASK_STACK_SIZE, app_task, in main()
|
| /Zephyr-4.2.1/samples/subsys/ipc/rpmsg_service/src/ |
| D | main.c | 21 static struct k_thread thread_data; variable 88 k_thread_create(&thread_data, thread_stack, CONFIG_MAIN_APP_TASK_STACK_SIZE, app_task, in main()
|
| /Zephyr-4.2.1/lib/posix/options/ |
| D | key.c | 223 key_data->thread_data.key = key_obj; in pthread_setspecific() 224 key_data->thread_data.spec_data = (void *)value; in pthread_setspecific() 227 sys_slist_append((&thread->key_list), (sys_snode_t *)(&key_data->thread_data)); in pthread_setspecific()
|
| D | posix_internal.h | 108 pthread_thread_data thread_data; member
|
| /Zephyr-4.2.1/tests/kernel/sched/schedule_api/src/ |
| D | test_sched.h | 21 struct thread_data { struct
|
| D | test_sched_timeslice_and_lock.c | 13 static struct thread_data tdata[THREADS_NUM];
|
| /Zephyr-4.2.1/drivers/usb/udc/ |
| D | udc_skeleton.c | 57 struct k_thread thread_data; member 349 k_thread_create(&priv->thread_data, in udc_skeleton_driver_preinit() 357 k_thread_name_set(&priv->thread_data, dev->name); in udc_skeleton_driver_preinit()
|
| D | udc_virtual.c | 40 struct k_thread thread_data; member 677 k_thread_create(&priv->thread_data, \ 685 k_thread_name_set(&priv->thread_data, dev->name); \
|
| D | udc_max32.c | 58 struct k_thread thread_data; member 807 k_thread_create(&priv->thread_data, udc_max32_stack_##n, \ 812 k_thread_name_set(&priv->thread_data, dev->name); \
|
| D | udc_renesas_ra.c | 30 struct k_thread thread_data; member 783 k_thread_create(&priv->thread_data, udc_renesas_ra_stack_##n, \ 788 k_thread_name_set(&priv->thread_data, dev->name); \
|
| D | udc_ambiq.c | 50 struct k_thread thread_data; member 1037 k_thread_create(&priv->thread_data, udc_ambiq_stack_##n, \ 1042 k_thread_name_set(&priv->thread_data, dev->name); \
|
| D | udc_sam0.c | 95 struct k_thread thread_data; member 1216 k_thread_create(&priv->thread_data, \ 1224 k_thread_name_set(&priv->thread_data, dev->name); \
|
| D | udc_rpi_pico.c | 57 struct k_thread thread_data; member 1260 k_thread_create(&priv->thread_data, \ 1268 k_thread_name_set(&priv->thread_data, dev->name); \
|
| /Zephyr-4.2.1/samples/subsys/ipc/openamp/remote/src/ |
| D | main.c | 23 static struct k_thread thread_data; variable 227 k_thread_create(&thread_data, thread_stack, APP_TASK_STACK_SIZE, in main()
|
| /Zephyr-4.2.1/samples/subsys/ipc/openamp/src/ |
| D | main.c | 24 static struct k_thread thread_data; variable 252 k_thread_create(&thread_data, thread_stack, APP_TASK_STACK_SIZE, in main()
|
| /Zephyr-4.2.1/subsys/testsuite/ztest/include/zephyr/ |
| D | ztress.h | 209 struct ztress_context_data *thread_data,
|
| /Zephyr-4.2.1/subsys/usb/usb_c/ |
| D | usbc_stack.h | 63 struct k_thread thread_data; member
|
| D | usbc_stack.c | 71 &port->thread_data, my_stack_area_##inst, \
|
| /Zephyr-4.2.1/tests/kernel/threads/thread_init/src/ |
| D | main.c | 54 static ZTEST_BMEM struct thread_data { struct
|
| /Zephyr-4.2.1/drivers/input/ |
| D | input_renesas_ra_ctsu.c | 34 struct k_thread thread_data; member 588 &data->thread_data, data->thread_stack, K_THREAD_STACK_SIZEOF(data->thread_stack), in renesas_ra_ctsu_init() 596 k_thread_name_set(&data->thread_data, dev->name); in renesas_ra_ctsu_init()
|
| /Zephyr-4.2.1/tests/net/context/src/ |
| D | main.c | 773 static struct k_thread thread_data; variable 821 return k_thread_create(&thread_data, thread_stack, STACKSIZE, in start_timeout_v6_thread() 830 return k_thread_create(&thread_data, thread_stack, STACKSIZE, in start_timeout_v4_thread()
|