| /Zephyr-latest/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-latest/kernel/ |
| D | Kconfig.init | 14 A custom hook soc_reset_hook() is executed at the beginning of the 22 A custom hook soc_prep_hook() is executed at the beginning of the 30 A custom SoC hook soc_early_init_hook() is executed before the kernel and 38 A custom SoC hook soc_late_init_hook() is executed after the kernel and 55 A custom board hook board_early_init_hook() is executed before the kernel and 63 A custom board hook board_late_init_hook() is executed after the kernel and
|
| /Zephyr-latest/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 :zephyr:board:`twr_ke18f` as 114 The sample can be built and executed for the :zephyr:board:`frdm_k64f` as 129 executed for the :zephyr:board:`bl652_dvk` as follows: [all …]
|
| /Zephyr-latest/tests/drivers/clock_control/clock_control_api/src/ |
| D | test_clock_control.c | 187 bool *executed = (bool *)user_data; in clock_on_callback() local 189 *executed = true; in clock_on_callback() 198 bool executed = false; in test_async_on_instance() local 204 err = clock_control_async_on(dev, subsys, clock_on_callback, &executed); in test_async_on_instance() 210 zassert_true(executed, "%s: Expected flag to be true", dev->name); in test_async_on_instance() 233 bool executed = false; in test_async_on_stopped_on_instance() local 241 err = clock_control_async_on(dev, subsys, clock_on_callback, &executed); in test_async_on_stopped_on_instance() 252 zassert_false(executed, "%s: Expected flag to be false", dev->name); in test_async_on_stopped_on_instance()
|
| /Zephyr-latest/tests/kernel/mem_protect/mem_map/src/ |
| D | main.c | 136 static void transplanted_function(bool *executed) in __in_section_unique() 138 *executed = true; in __in_section_unique() 151 bool executed = false; in ZTEST() local 152 void (*func)(bool *executed); in ZTEST() 167 func = (void (*)(bool *executed))mapped_exec; in ZTEST() 168 func(&executed); in ZTEST() 169 zassert_true(executed, "function did not execute"); in ZTEST() 176 func = (void (*)(bool *executed))mapped_ro; in ZTEST() 178 func(&executed); in ZTEST()
|
| /Zephyr-latest/boards/native/nrf_bsim/ |
| D | Kconfig | 12 Will produce a console Linux process which can be executed natively. 23 Will produce a console Linux process which can be executed natively. 34 Will produce a console Linux process which can be executed natively. 45 Will produce a console Linux process which can be executed natively.
|
| /Zephyr-latest/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-latest/samples/drivers/led/pwm/ |
| D | README.rst | 12 (child nodes) the same test pattern (described below) is executed. The LED API 31 This sample can be built and executed on all the boards with PWM LEDs connected.
|
| /Zephyr-latest/soc/ambiq/apollo4x/ |
| D | Kconfig.defconfig | 10 # management operations are executed in the idle task
|
| /Zephyr-latest/soc/ambiq/apollo3x/ |
| D | Kconfig.defconfig | 10 # management operations are executed in the idle task
|
| /Zephyr-latest/soc/st/stm32/stm32wb0x/ |
| D | Kconfig | 14 # WB0x has a ROM bootloader executed at reset,
|
| /Zephyr-latest/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-latest/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-latest/snippets/nordic-flpr/ |
| D | README.rst | 11 FLPR code is to be executed from SRAM, so the FLPR image must be built
|
| /Zephyr-latest/tests/subsys/settings_commit_prio/ |
| D | README.rst | 14 This application can be built and executed on native_sim as follows:
|
| /Zephyr-latest/soc/infineon/cat1a/ |
| D | Kconfig | 44 Choose the prebuilt application image to be executed on the Cortex-M0+ core of the PSOC™ 6 50 DeepSleep prebuilt application image is executed on the Cortex-M0+ core of the PSOC™ 6 BLE
|
| /Zephyr-latest/snippets/nordic-ppr-xip/ |
| D | README.rst | 10 (Peripheral Processor) from another core. PPR code is to be executed from MRAM,
|
| /Zephyr-latest/snippets/nordic-flpr-xip/ |
| D | README.rst | 11 FLPR code is to be executed from RRAM, so the FLPR image must be built
|
| /Zephyr-latest/samples/subsys/demand_paging/ |
| D | README.rst | 13 evicted for more code to be executed when memory is exhausted. 26 This application can be built and executed on QEMU as follows:
|
| /Zephyr-latest/tests/arch/x86/nmi/ |
| D | README.txt | 11 This project outputs to the console. It can be built and executed
|
| /Zephyr-latest/tests/subsys/sensing/ |
| D | README.rst | 15 This application can be built and executed on native_sim as follows:
|
| /Zephyr-latest/samples/drivers/peci/ |
| D | README.rst | 17 The sample can be built and executed on boards supporting PECI.
|
| /Zephyr-latest/samples/hello_world/ |
| D | README.rst | 15 This application can be built and executed on QEMU as follows:
|
| /Zephyr-latest/modules/trusted-firmware-a/ |
| D | Kconfig | 13 itself is to be executed in the Non-Secure Processing Environment.
|