Searched full:unlocked (Results 1 – 25 of 83) sorted by relevance
1234
/Zephyr-latest/dts/bindings/watchdog/ |
D | nxp,s32-swt.yaml | 55 default: "unlocked" 57 - "unlocked" 63 - unlocked: registers are always writable. 64 - soft: unlocked by writing an unlock sequence to the service register. 65 - hard: unlocked only after a reset. 66 Defaults to unlocked (hardware reset value).
|
/Zephyr-latest/doc/kernel/services/synchronization/ |
D | mutexes.rst | 25 is unlocked. 36 to be unlocked. 45 When the mutex becomes unlocked it is then locked by the highest-priority 58 A mutex that is repeatedly locked by a thread must be unlocked an equal number 59 of times before the mutex becomes fully unlocked so it can be claimed 69 at the same priority as the waiting thread. Once the mutex has been unlocked, 86 be observed if the mutexes are not unlocked in the reverse order to which the 143 A mutex is unlocked by calling :c:func:`k_mutex_unlock`.
|
/Zephyr-latest/include/zephyr/arch/arm/ |
D | error.h | 29 * force them unlocked, the thread is in an undefined state anyway 33 * schedule a new thread until they are unlocked which is not what we want. 34 * Force them unlocked as well.
|
/Zephyr-latest/samples/bluetooth/eddystone/src/ |
D | main.c | 151 .state = EDS_UNLOCKED, /* Start unlocked */ 566 /* Capabilities: Readable only when unlocked. Never writable. */ 569 /* Active slot: Must be unlocked for both read and write. */ 574 /* Advertising Interval: Must be unlocked for both read and write. */ 577 /* Radio TX Power: Must be unlocked for both read and write. */ 582 /* Advertised TX Power: Must be unlocked for both read and write. */ 588 * Readable in locked or unlocked state. 589 * Writeable only in unlocked state. 603 /* Public ECDH Key: Readable only in unlocked state. Never writable. */ 606 /* EID Identity Key:Readable only in unlocked state. Never writable. */ [all …]
|
/Zephyr-latest/include/zephyr/sys/ |
D | mutex.h | 30 * that can be locked/unlocked with atomic ops if there is no 114 * The mutex cannot be claimed by another thread until it has been unlocked by 119 * @retval 0 Mutex unlocked
|
/Zephyr-latest/tests/kernel/obj_core/obj_core/src/ |
D | main.c | 108 "static %s not found with unlocked walk\n", str); in common_obj_core_test() 123 "dynamic %s not found with unlocked walk\n", str); in common_obj_core_test() 163 zassert_equal(status, 0, "static thread found with unlocked walk\n"); in ZTEST() 172 zassert_equal(status, 0, "dynamic thread found with unlocked walk\n"); in ZTEST()
|
/Zephyr-latest/tests/arch/x86/direct_isr/src/ |
D | direct_isr.c | 106 /* interrupt serve after irq unlocked */ in ZTEST() 112 /* trigger after irq unlocked */ in ZTEST()
|
/Zephyr-latest/drivers/ieee802154/ |
D | ieee802154_nrf5.h | 52 /* CCA complete semaphore. Unlocked when CCA is complete. */ 58 /* TX synchronization semaphore. Unlocked when frame has been
|
/Zephyr-latest/tests/kernel/interrupt/src/ |
D | regular_isr.c | 110 /* interrupt serve after irq unlocked */ in ZTEST() 116 /* trigger after irq unlocked */ in ZTEST()
|
D | prevent_irq.c | 34 * that the system timer interrupt is serviced after interrupts are unlocked.
|
/Zephyr-latest/tests/posix/common/src/ |
D | mutex.c | 42 zassert_false(pthread_mutex_unlock(&mutex), "mutex is not unlocked"); in recursive_mutex_entry() 43 zassert_false(pthread_mutex_unlock(&mutex), "mutex is not unlocked"); in recursive_mutex_entry() 116 * twice and unlocked for the same number of time.
|
/Zephyr-latest/include/zephyr/arch/arc/v2/vpx/ |
D | arc_vpx.h | 50 * @param cpu_id CPU ID of the VPX vector register set to be unlocked
|
/Zephyr-latest/arch/arc/core/ |
D | cpu_idle.S | 33 * This function always exits with interrupts unlocked.
|
/Zephyr-latest/dts/bindings/flash_controller/ |
D | st,stm32-qspi-nor.yaml | 72 property to indicate that the BPR must be unlocked before write
|
/Zephyr-latest/subsys/net/ip/ |
D | Kconfig.debug | 11 Specific debugging options to other sub-menus will be unlocked
|
/Zephyr-latest/tests/kernel/threads/no-multithreading/src/ |
D | main.c | 56 zassert_true(timeout_run, "Timeout should expire because irq got unlocked"); in ZTEST()
|
/Zephyr-latest/subsys/shell/modules/kernel_service/thread/ |
D | stacks.c | 62 * Use the unlocked version as the callback itself might call in cmd_kernel_thread_stacks()
|
D | list.c | 119 * Use the unlocked version as the callback itself might call in cmd_kernel_thread_list()
|
/Zephyr-latest/tests/drivers/flash/stm32/src/ |
D | main.c | 231 zassert_true(flash_opt_locked(), "OPT unlocked after being blocked"); in ZTEST() 247 zassert_true(flash_cr_locked(), "CR unlocked after being blocked"); in ZTEST()
|
/Zephyr-latest/drivers/tee/optee/ |
D | optee_rpc_cmd.h | 36 * world mutex with a thread waiting thread is unlocked.
|
/Zephyr-latest/tests/bluetooth/tester/src/audio/ |
D | btp_csis.c | 104 LOG_DBG("%s", locked ? "locked" : "unlocked"); in lock_changed_cb()
|
/Zephyr-latest/tests/kernel/common/src/ |
D | irq_offload.c | 51 "IRQs should have been unlocked, but key is 0x%x\n", in ZTEST()
|
/Zephyr-latest/dts/bindings/mtd/ |
D | jedec,spi-nor-common.yaml | 24 property to indicate that the BPR must be unlocked before write
|
/Zephyr-latest/kernel/ |
D | mutex.c | 175 * Check if mutex was unlocked after this thread was unpended. in z_impl_k_mutex_lock() 234 * Attempt to unlock a mutex which is unlocked. mutex->lock_count in z_impl_k_mutex_unlock()
|
/Zephyr-latest/include/zephyr/drivers/ethernet/ |
D | eth_adin2111.h | 37 * @retval 0 Device unlocked.
|
1234