Home
last modified time | relevance | path

Searched refs:id3 (Results 1 – 4 of 4) sorted by relevance

/Zephyr-Core-3.5.0/tests/subsys/portability/cmsis_rtos_v1/src/
Dthread_apis.c103 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()
Dthread_instance.c28 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/
Dthread_apis.c211 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/
Dmain.c101 union test_ids id3 = { in ZTEST() local
136 cache_get(&cache, id3.raw, &buf, false, __LINE__); in ZTEST()