/Zephyr-Core-3.7.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.7.0/tests/subsys/portability/cmsis_rtos_v2/src/ |
D | timer.c | 45 osTimerId_t id2; in ZTEST() local 87 id2 = osTimerNew(Timer2_Callback, osTimerPeriodic, &exec2, NULL); in ZTEST() 88 zassert_true(id2 != NULL, "error creating periodic timer"); in ZTEST() 90 zassert_equal(osTimerIsRunning(id2), 0, "Error: Timer is running"); in ZTEST() 93 status = osTimerStart(id2, timerDelay); in ZTEST() 106 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 | 117 osThreadId_t id2; in thread_apis_common() local 127 id2 = osThreadNew(thread2, yield_check, thread2_attr); in thread_apis_common() 128 zassert_true(id2 != NULL, "Failed creating thread2"); in thread_apis_common()
|
/Zephyr-Core-3.7.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()
|
/Zephyr-Core-3.7.0/scripts/coredump/coredump_parser/ |
D | log_parser.py | 138 id1, id2, hdr_ver, tgt_code, ptr_size, flags, reason = struct.unpack(LOG_HDR_STRUCT, hdr) 140 if (id1 + id2) != COREDUMP_HDR_ID: 162 del id1, id2, hdr_ver, tgt_code, ptr_size, flags, reason
|
/Zephyr-Core-3.7.0/tests/drivers/watchdog/wdt_error_cases/src/ |
D | main.c | 666 int ret, id1, id2; in ZTEST() local 688 id2 = wdt_install_timeout(wdt, &m_cfg_wdt0); in ZTEST() 689 zassert_true(id2 >= 0, "Watchdog install error, got unexpected value of %d", id2); in ZTEST() 690 TC_PRINT("Configured WDT channel %d\n", id2); in ZTEST() 693 zassert_true(id2 <= id1, in ZTEST() 696 id2, id1); in ZTEST()
|