/Zephyr-latest/cmake/bintools/llvm/ |
D | target_bintools.cmake | 20 # elfconvert_flag_infile : empty, objcopy doesn't take arguments for filenames 21 # elfconvert_flag_outfile : empty, objcopy doesn't take arguments for filenames 61 # disassembly_flag_infile : empty, objdump doesn't take arguments for filenames 62 # disassembly_flag_outfile : '>', objdump doesn't take arguments for output file, but resul… 93 # strip_flag_infile : empty, strip doesn't take arguments for input file 116 # readelf_flag_infile : empty, readelf doesn't take arguments for filenames 117 # readelf_flag_outfile : '>', readelf doesn't take arguments for output
|
/Zephyr-latest/cmake/bintools/gnu/ |
D | target_bintools.cmake | 20 # elfconvert_flag_infile : empty, objcopy doesn't take arguments for filenames 21 # elfconvert_flag_outfile : empty, objcopy doesn't take arguments for filenames 66 # disassembly_flag_infile : empty, objdump doesn't take arguments for filenames 67 # disassembly_flag_outfile : '>', objdump doesn't take arguments for output file, but resul… 86 # strip_flag_infile : empty, strip doesn't take arguments for input file 110 # readelf_flag_infile : empty, readelf doesn't take arguments for filenames 111 # readelf_flag_outfile : '>', readelf doesn't take arguments for output
|
/Zephyr-latest/samples/subsys/portability/cmsis_rtos_v1/philosophers/src/ |
D | phil_obj_abstract.h | 17 * - a 'take' function that simulates taking the fork (eg. k_sem_take) 42 #define take(x) osSemaphoreWait(x, osWaitForever) macro 56 #define take(x) osMutexWait(x, 0) macro
|
/Zephyr-latest/samples/philosophers/src/ |
D | phil_obj_abstract.h | 17 * - a 'take' function that simulates taking the fork (eg. k_sem_take) 55 #define take(x) k_sem_take(x, K_FOREVER) macro 71 #define take(x) k_mutex_lock(x, K_FOREVER) macro 88 #define take(x) do { \ macro 109 #define take(x) do { \ macro 131 #define take(x) do { \ macro
|
/Zephyr-latest/samples/subsys/portability/cmsis_rtos_v2/philosophers/src/ |
D | phil_obj_abstract.h | 17 * - a 'take' function that simulates taking the fork (eg. k_sem_take) 46 #define take(x) osSemaphoreAcquire(x, osWaitForever) macro 62 #define take(x) osMutexAcquire(x, osWaitForever) macro
|
/Zephyr-latest/tests/kernel/mutex/sys_mutex/src/ |
D | thread_competition.c | 79 * @brief Test multi-threads to take mutex. 131 "The highest priority thread failed to take the mutex."); in ZTEST() 135 "The higher priority thread failed to take the mutex."); in ZTEST() 139 "The low priority thread failed to take the mutex."); in ZTEST()
|
D | main.c | 151 TC_ERROR("Failed to take mutex %p\n", &mutex_4); in thread_06() 211 TC_ERROR("Failed to take mutex %p\n", &mutex_2); in thread_08() 239 TC_ERROR("Failed to NOT take locked mutex %p\n", &mutex_1); in thread_09() 247 TC_ERROR("Failed to take mutex %p\n", &mutex_1); in thread_09() 272 TC_ERROR("Failed to take mutex %p\n", &mutex_2); in thread_11() 352 * 1st iteration: Take mutex_1; thread_09 waits on mutex_1 in ZTEST_USER_OR_NOT() 353 * 2nd iteration: Take mutex_2: thread_08 waits on mutex_2 in ZTEST_USER_OR_NOT() 354 * 3rd iteration: Take mutex_3; thread_07 waits on mutex_3 in ZTEST_USER_OR_NOT() 355 * 4th iteration: Take mutex_4; thread_05 waits on mutex_4 in ZTEST_USER_OR_NOT() 503 TC_ERROR("Failed to take mutex %p\n", ¬_my_mutex); in sys_mutex_tests_setup()
|
/Zephyr-latest/samples/modules/tflite-micro/hello_world/src/ |
D | constants.h | 28 * number, the more time it will take to run through the entire range. The value 30 * of time. Since different devices take different amounts of time to perform
|
/Zephyr-latest/tests/benchmarks/latency_measure/src/ |
D | sema_test_signal_release.c | 11 * This file contains the test that measures semaphore give and take time 143 "semaphore.take.blocking.%c_to_%c", in sema_context_switch() 147 "%-40s - Take a semaphore (context switch)", tag); in sema_context_switch() 203 /* 2. Take a semaphore--no contention */ in immediate_give_take() 285 "semaphore.take.immediate.%s", in sema_test_signal() 288 "%-40s - Take a semaphore (no blocking)", tag); in sema_test_signal()
|
/Zephyr-latest/tests/benchmarks/latency_measure/ |
D | README.rst | 95 …semaphore.take.immediate.kernel - Take a semaphore (no blocking) : … 96 …semaphore.take.blocking.k_to_k - Take a semaphore (context switch) : … 148 …semaphore.take.immediate.kernel - Take a semaphore (no blocking) : … 149 …semaphore.take.blocking.k_to_k - Take a semaphore (context switch) : … 205 …semaphore.take.immediate.kernel - Take a semaphore (no blocking) : … 206 …semaphore.take.blocking.k_to_k - Take a semaphore (context switch) : … 317 …semaphore.take.immediate.kernel - Take a semaphore (no blocking) : … 319 …semaphore.take.immediate.user - Take a semaphore (no blocking) : … 320 …semaphore.take.blocking.k_to_k - Take a semaphore (context switch) : … 322 …semaphore.take.blocking.k_to_u - Take a semaphore (context switch) : … [all …]
|
/Zephyr-latest/tests/subsys/secure_storage/psa/its/ |
D | overlay-store_settings.conf | 6 # Limit the space available for the maximum entry test to not take too long with NVS.
|
/Zephyr-latest/drivers/entropy/ |
D | entropy_mcux_rnga.c | 26 * between 4 and 8 samples. Conservatively, we take 8. in entropy_mcux_rnga_get_uint8() 71 * take care below to ensure the read rate is lower than the in entropy_mcux_rnga_init()
|
/Zephyr-latest/soc/nxp/s32/s32k1/ |
D | soc.c | 27 * reconfiguration must take place within 128 bus clocks from in z_arm_watchdog_init() 44 /* Wait for new configuration to take effect */ in z_arm_watchdog_init()
|
/Zephyr-latest/boards/digilent/arty_a7/ |
D | Kconfig | 12 Board initialization priority. The board initialization must take
|
/Zephyr-latest/tests/kernel/mutex/mutex_api/src/ |
D | test_mutex_apis.c | 77 /* wait for spawn thread to take action */ in tmutex_test_lock() 93 /* wait for spawn thread to take action */ in tmutex_test_lock_timeout() 304 "waiter thread can't take the mutex"); in ZTEST_USER() 333 /* wait for spawn thread t1 to take action */ in ZTEST_USER() 347 /* wait for spawn thread t2 to take action */ in ZTEST_USER() 363 /* wait for spawn thread t1 to take action */ in ZTEST_USER() 373 /* wait for spawn thread t2 to take action */ in ZTEST_USER() 389 /* wait for spawn thread t1 to take action */ in ZTEST_USER() 406 /* wait for spawn thread t2 and t3 to take action */ in ZTEST_USER()
|
/Zephyr-latest/doc/services/pm/ |
D | index.rst | 7 integrator to implement power management support that can take full
|
/Zephyr-latest/tests/kernel/semaphore/semaphore/src/ |
D | main.c | 318 /**TESTPOINT: semaphore take return -EBUSY*/ in ZTEST_USER() 322 /**TESTPOINT: semaphore take return -EAGAIN*/ in ZTEST_USER() 347 /* Take semaphore and wait for the abort. */ in ZTEST_USER() 372 /**TESTPOINT: sem count get after take*/ in ZTEST_USER() 463 * @brief Test k_sem_take() when there is no semaphore to take 483 * @brief Test a semaphore take operation with an unavailable semaphore 486 * - Take an unavailable semaphore and wait it until timeout. 498 /* take an unavailable semaphore and wait it until timeout */ in ZTEST_USER() 505 * @brief Test the semaphore take operation with specified timeout 509 * - Take semaphore and wait it given by other threads in specified timeout. [all …]
|
/Zephyr-latest/kernel/ |
D | sem.c | 15 * operations, the same number of 'take' operations can be performed without 141 SYS_PORT_TRACING_OBJ_FUNC_ENTER(k_sem, take, sem, timeout); in z_impl_k_sem_take() 156 SYS_PORT_TRACING_OBJ_FUNC_BLOCKING(k_sem, take, sem, timeout); in z_impl_k_sem_take() 161 SYS_PORT_TRACING_OBJ_FUNC_EXIT(k_sem, take, sem, timeout, ret); in z_impl_k_sem_take()
|
/Zephyr-latest/tests/net/conn_mgr_monitor/src/ |
D | main.c | 299 /* Take A up */ in cycle_ready_ifaces() 311 /* Take B up */ in cycle_ready_ifaces() 320 /* Take A down */ in cycle_ready_ifaces() 329 /* Take B down */ in cycle_ready_ifaces() 369 /* Take B up */ in cycle_ignored_iface() 385 /* Take B down */ in cycle_ignored_iface() 398 /* Take A up */ in cycle_ignored_iface() 423 /* Take B up */ in cycle_ignored_iface() 436 /* Take B down */ in cycle_ignored_iface() 449 /* Take A down */ in cycle_ignored_iface() [all …]
|
/Zephyr-latest/drivers/flash/ |
D | Kconfig.nor | 59 This is the wait delay (in us) to allow for CS switching to take effect 65 Flash operations can take anywhere from 1ms to 240 seconds to
|
/Zephyr-latest/cmake/bintools/armclang/ |
D | target_bintools.cmake | 42 # disassembly_flag_infile : empty, fromelf doesn't take arguments for filenames 60 # readelf_flag_infile : empty, fromelf doesn't take arguments for filenames
|
/Zephyr-latest/subsys/ipc/ipc_service/lib/ |
D | Kconfig | 19 Static VRINGs alignment. This should take into account the cache line
|
/Zephyr-latest/scripts/pylib/pytest-twister-harness/tests/fixtures/ |
D | mcumgr_fixture_test.py | 83 # take second hash to test 87 # take first hash to confirm
|
/Zephyr-latest/tests/misc/test_build/src/ |
D | main.c | 14 * to take turns printing a greeting message at a controlled rate. The demo 39 /* take my semaphore */ in helloLoop()
|
/Zephyr-latest/scripts/pylib/twister/twisterlib/ |
D | platform.py | 63 # if no RAM size is specified by the board, take a default of 128K 70 # if no flash size is specified by the board, take a default of 512K 112 # if no RAM size is specified by the board, take a default of 128K 114 # if no flash size is specified by the board, take a default of 512K
|