/Zephyr-Core-3.5.0/tests/kernel/sched/schedule_api/src/ |
D | test_sched_timeslice_and_lock.c | 33 tdata[tnum].executed = 1; in thread_entry() 50 tdata[i].executed = 0; in setup_threads() 109 zassert_true(tdata[0].executed == 1); in ZTEST() 110 zassert_true(tdata[1].executed == 1); in ZTEST() 112 zassert_true(tdata[i].executed == 0); in ZTEST() 136 zassert_true(tdata[i].executed == 1); in ZTEST() 153 zassert_true(tdata[i].executed == 0); in ZTEST() 181 zassert_true(tdata[i].executed == 0); in ZTEST() 184 zassert_true(tdata[0].executed == 1); in ZTEST() 189 static int executed; variable [all …]
|
D | test_sched.h | 24 int executed; member
|
/Zephyr-Core-3.5.0/samples/drivers/dac/ |
D | README.rst | 23 The sample can be built and executed for the 34 The sample can be built and executed for the 45 The sample can be built and executed for the 56 The sample can be built and executed for the 67 The sample can be built and executed for the 78 The sample can be built and executed for the 89 The sample can be built and executed for the 100 The sample can be built and executed for the :ref:`twr_ke18f` as 114 The sample can be built and executed for the :ref:`frdm_k64f` as 129 executed for the :ref:`bl652_dvk` as follows: [all …]
|
/Zephyr-Core-3.5.0/tests/drivers/clock_control/clock_control_api/src/ |
D | test_clock_control.c | 223 bool *executed = (bool *)user_data; in clock_on_callback() local 225 *executed = true; in clock_on_callback() 234 bool executed = false; in test_async_on_instance() local 240 err = clock_control_async_on(dev, subsys, clock_on_callback, &executed); in test_async_on_instance() 246 zassert_true(executed, "%s: Expected flag to be true", dev->name); in test_async_on_instance() 269 bool executed = false; in test_async_on_stopped_on_instance() local 277 err = clock_control_async_on(dev, subsys, clock_on_callback, &executed); in test_async_on_stopped_on_instance() 288 zassert_false(executed, "%s: Expected flag to be false", dev->name); in test_async_on_stopped_on_instance()
|
/Zephyr-Core-3.5.0/boards/posix/native_sim/ |
D | Kconfig.board | 8 Will produce a console Linux process which can be executed natively 16 Will produce a console Linux process which can be executed natively
|
/Zephyr-Core-3.5.0/tests/kernel/mem_protect/mem_map/src/ |
D | main.c | 111 static void transplanted_function(bool *executed) in __in_section_unique() 113 *executed = true; in __in_section_unique() 126 bool executed = false; in ZTEST() local 127 void (*func)(bool *executed); in ZTEST() 142 func = (void (*)(bool *executed))mapped_exec; in ZTEST() 143 func(&executed); in ZTEST() 144 zassert_true(executed, "function did not execute"); in ZTEST() 150 func = (void (*)(bool *executed))mapped_ro; in ZTEST() 152 func(&executed); in ZTEST()
|
/Zephyr-Core-3.5.0/samples/sensor/fxos8700/ |
D | README.rst | 26 Sample can be built and executed for the FRDM-K64F as follows: 46 Sample can be built and executed for the FRDM-K22F as follows: 69 Sample can be built and executed for the TWR-KE18F as follows: 80 Sample can be built and executed for the FRDM-KL25Z as follows: 92 Sample can be built and executed for the Micro Bit as follows: 104 Sample can be built and executed for the reel board as follows: 116 Sample can be built and executed for the MIMXRT685-EVK as follows: 128 Sample can be built and executed for the MIMXRT595-EVK as follows:
|
/Zephyr-Core-3.5.0/boards/posix/nrf_bsim/ |
D | Kconfig.board | 16 Will produce a console Linux process which can be executed natively. 32 Will produce a console Linux process which can be executed natively. 48 Will produce a console Linux process which can be executed natively.
|
/Zephyr-Core-3.5.0/boards/posix/native_posix/ |
D | Kconfig.board | 8 Will produce a console Linux process which can be executed natively 20 Will produce a console Linux process which can be executed natively
|
/Zephyr-Core-3.5.0/tests/subsys/rtio/rtio_api/src/ |
D | rtio_api.h | 14 int executed; member
|
/Zephyr-Core-3.5.0/tests/kernel/smp/src/ |
D | main.c | 47 int executed; member 208 tinfo[thread_num].executed = 1; in thread_entry_fn() 274 tinfo[i].executed = 0; in cleanup_resources() 388 zassert_true(tinfo[i].executed == 1, in ZTEST() 391 zassert_true(tinfo[num_threads - 1].executed == 0, in ZTEST() 422 zassert_true(tinfo[i].executed == 1, in ZTEST() 456 zassert_true(tinfo[i].executed == 1, in ZTEST() 484 zassert_true(tinfo[i].executed == 1, in ZTEST() 502 tinfo[thread_num].executed = 1; in thread_wakeup_entry() 539 if (tinfo[i].executed == 1 && threads_woke_up <= tnum) { in check_wokeup_threads()
|
/Zephyr-Core-3.5.0/samples/drivers/led_pwm/ |
D | README.rst | 12 (child nodes) the same test pattern (described below) is executed. The LED API 30 This sample can be built and executed on all the boards with PWM LEDs connected.
|
/Zephyr-Core-3.5.0/tests/kernel/profiling/profiling_api/ |
D | Kconfig | 9 test to profile idle thread will be executed.
|
/Zephyr-Core-3.5.0/doc/connectivity/networking/api/ |
D | zperf.rst | 30 If Zephyr acts as a client, iPerf must be executed in server mode. 44 In the Zephyr console, zperf can be executed as follows: 87 and in the host side, iPerf must be executed with the following
|
/Zephyr-Core-3.5.0/samples/arch/smp/pi/ |
D | README.rst | 25 required for all the calculation to be done. It can be built and executed 46 All 16 threads executed by 4 cores in 28 msec
|
/Zephyr-Core-3.5.0/samples/compression/lz4/ |
D | README.rst | 15 The sample can be built and executed on nrf52840dk_nrf52840 as follows:
|
/Zephyr-Core-3.5.0/tests/arch/x86/nmi/ |
D | README.txt | 11 This project outputs to the console. It can be built and executed
|
/Zephyr-Core-3.5.0/soc/arm/infineon_cat1/psoc6/ |
D | Kconfig.soc | 104 Choose the prebuilt application image to be executed on the Cortex-M0+ core of the PSoC™ 6 110 DeepSleep prebuilt application image is executed on the Cortex-M0+ core of the PSoC™ 6 BLE
|
/Zephyr-Core-3.5.0/samples/hello_world/ |
D | README.rst | 15 This application can be built and executed on QEMU as follows:
|
/Zephyr-Core-3.5.0/modules/trusted-firmware-a/ |
D | Kconfig | 13 itself is to be executed in the Non-Secure Processing Environment.
|
/Zephyr-Core-3.5.0/tests/kernel/xip/ |
D | README.txt | 11 This project outputs to the console. It can be built and executed
|
/Zephyr-Core-3.5.0/samples/drivers/peci/ |
D | README.rst | 17 The sample can be built and executed on boards supporting PECI.
|
/Zephyr-Core-3.5.0/samples/boards/mec15xxevb_assy6853/power_management/ |
D | README.rst | 15 The sample can be built and executed on boards using west.
|
/Zephyr-Core-3.5.0/samples/drivers/kscan_touch/ |
D | README.rst | 16 The sample can be built and executed on boards with a touch panel for example
|
/Zephyr-Core-3.5.0/samples/subsys/debug/gdbstub/ |
D | README.rst | 15 This application can be built and executed on QEMU as follows:
|