Searched refs:id3 (Results 1 – 4 of 4) sorted by relevance
/Zephyr-Core-3.5.0/tests/subsys/portability/cmsis_rtos_v1/src/ |
D | thread_apis.c | 103 osThreadId id3; in ZTEST() local 105 id3 = osThreadCreate(osThread(thread3), NULL); in ZTEST() 106 zassert_true(id3 != NULL, "Failed creating thread3"); in ZTEST() 115 status = osThreadTerminate(id3); in ZTEST() 119 status = osThreadSetPriority(id3, osPriorityNormal); in ZTEST() 124 status = osThreadTerminate(id3); in ZTEST()
|
D | thread_instance.c | 28 osThreadId id1, id2, id3, id4; in ZTEST() local 37 id3 = osThreadCreate(osThread(thread_inst_check), NULL); in ZTEST() 38 zassert_true(id3 != NULL, "Failed creating thread_inst_check"); in ZTEST()
|
/Zephyr-Core-3.5.0/tests/subsys/portability/cmsis_rtos_v2/src/ |
D | thread_apis.c | 211 osThreadId_t id3; in thread_prior_common() local 213 id3 = osThreadNew(thread3, state, attr); in thread_prior_common() 214 zassert_true(id3 != NULL, "Failed creating thread3"); in thread_prior_common() 223 status = osThreadTerminate(id3); in thread_prior_common() 227 status = osThreadSetPriority(id3, osPriorityNormal); in thread_prior_common() 232 status = osThreadTerminate(id3); in thread_prior_common()
|
/Zephyr-Core-3.5.0/tests/subsys/logging/log_cache/src/ |
D | main.c | 101 union test_ids id3 = { in ZTEST() local 136 cache_get(&cache, id3.raw, &buf, false, __LINE__); in ZTEST()
|