Searched refs:id2 (Results 1 – 9 of 9) sorted by relevance
/Zephyr-Core-3.5.0/tests/subsys/portability/cmsis_rtos_v1/src/ |
D | thread_instance.c | 28 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()
|
D | timer.c | 44 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()
|
D | thread_apis.c | 134 osThreadId id2; in ZTEST() local 139 id2 = osThreadCreate(osThread(thread2), NULL); in ZTEST() 140 zassert_true(id2 != NULL, "Failed creating thread2"); in ZTEST()
|
D | signal.c | 117 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/ |
D | timer.c | 45 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()
|
D | event_flags.c | 122 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()
|
D | thread_apis.c | 118 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/ |
D | log_parser.py | 121 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/ |
D | main.c | 98 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()
|