Home
last modified time | relevance | path

Searched refs:id2 (Results 1 – 9 of 9) sorted by relevance

/Zephyr-Core-3.5.0/tests/subsys/portability/cmsis_rtos_v1/src/
Dthread_instance.c28 osThreadId id1, id2, id3, id4; in ZTEST() local
34 id2 = osThreadCreate(osThread(thread_inst_check), NULL); in ZTEST()
35 zassert_true(id2 != NULL, "Failed creating thread_inst_check"); in ZTEST()
43 status = osThreadTerminate(id2); in ZTEST()
51 zassert_true(id2 == id4, "Error creating thread_inst_check"); in ZTEST()
Dtimer.c44 osTimerId id2; in ZTEST() local
79 id2 = osTimerCreate(osTimer(Timer2), osTimerPeriodic, &exec2); in ZTEST()
80 zassert_true(id2 != NULL, "error creating periodic timer"); in ZTEST()
83 status = osTimerStart(id2, timerDelay); in ZTEST()
96 status = osTimerDelete(id2); in ZTEST()
Dthread_apis.c134 osThreadId id2; in ZTEST() local
139 id2 = osThreadCreate(osThread(thread2), NULL); in ZTEST()
140 zassert_true(id2 != NULL, "Failed creating thread2"); in ZTEST()
Dsignal.c117 osThreadId id1, id2; in ZTEST() local
124 id2 = osThreadCreate(osThread(Thread_2), osThreadGetId()); in ZTEST()
125 zassert_true(id2 != NULL, "Thread creation failed"); in ZTEST()
/Zephyr-Core-3.5.0/tests/subsys/portability/cmsis_rtos_v2/src/
Dtimer.c45 osTimerId_t id2; in ZTEST() local
88 id2 = osTimerNew(Timer2_Callback, osTimerPeriodic, &exec2, NULL); in ZTEST()
89 zassert_true(id2 != NULL, "error creating periodic timer"); in ZTEST()
91 zassert_equal(osTimerIsRunning(id2), 0, "Error: Timer is running"); in ZTEST()
94 status = osTimerStart(id2, timerDelay); in ZTEST()
107 status = osTimerDelete(id2); in ZTEST()
Devent_flags.c122 osThreadId_t id1, id2; in test_event_flags_signalled() local
131 id2 = osThreadNew(thread2, evt_id, &thread2_attr); in test_event_flags_signalled()
132 zassert_true(id2 != NULL, "Failed creating thread2"); in test_event_flags_signalled()
Dthread_apis.c118 osThreadId_t id2; in thread_apis_common() local
128 id2 = osThreadNew(thread2, yield_check, thread2_attr); in thread_apis_common()
129 zassert_true(id2 != NULL, "Failed creating thread2"); in thread_apis_common()
/Zephyr-Core-3.5.0/scripts/coredump/coredump_parser/
Dlog_parser.py121 id1, id2, hdr_ver, tgt_code, ptr_size, flags, reason = struct.unpack(LOG_HDR_STRUCT, hdr)
123 if (id1 + id2) != COREDUMP_HDR_ID:
145 del id1, id2, hdr_ver, tgt_code, ptr_size, flags, reason
/Zephyr-Core-3.5.0/tests/subsys/logging/log_cache/src/
Dmain.c98 union test_ids id2 = { in ZTEST() local
125 cache_get(&cache, id2.raw, &buf, false, __LINE__); in ZTEST()
135 cache_get(&cache, id2.raw, &buf, true, __LINE__); in ZTEST()