/Zephyr-latest/tests/posix/eventfd/src/ |
D | _main.c | 41 zassert_equal(ret, 1, "eventfd not blocked with initval == 0"); in eventfd_poll_unset_common() 48 zassert_equal(ret, 0, "eventfd blocked after write"); in eventfd_poll_unset_common() 62 zassert_equal(ret, 1, "eventfd not blocked after read"); in eventfd_poll_unset_common() 73 zassert_equal(ret, 0, "eventfd is blocked with initval != 0"); in eventfd_poll_set_common() 81 zassert_equal(ret, 1, "eventfd is not blocked after read"); in eventfd_poll_set_common()
|
D | ioctl.c | 27 zassert_equal(ret, 1, "eventfd read not blocked"); in ZTEST_F() 47 zassert_equal(ret, 0, "eventfd write blocked"); in ZTEST_F() 68 zassert_equal(ret, 1, "eventfd read not blocked"); in ZTEST_F()
|
D | nonblocking.c | 53 zassert_equal(ret, 0, "eventfd write blocked with initval == 0"); in ZTEST_F() 64 zassert_equal(ret, 1, "eventfd write not blocked with cnt == UINT64_MAX-1"); in ZTEST_F()
|
/Zephyr-latest/tests/kernel/workq/work/ |
D | testcase.yaml | 6 # the related CI checks got blocked, so exclude it.
|
/Zephyr-latest/tests/kernel/msgq/msgq_api/src/ |
D | test_msgq_contexts.c | 213 /* blocked to TIMEOUT */ in get_empty_entry() 218 /* blocked forever */ in get_empty_entry() 234 /* blocked to TIMEOUT */ in put_full_entry() 239 /* blocked forever */ in put_full_entry() 388 * - A thread get message from an empty message queue will be blocked if timeout 407 /* that getting thread is being blocked now */ in ZTEST() 428 * - A thread put message to a full message queue will be blocked if timeout 449 /* that putting thread is being blocked now */ in ZTEST()
|
/Zephyr-latest/subsys/shell/ |
D | Kconfig.template.shell_log_queue_size | 8 by shell thread. Too small queue may lead to the logger thread being blocked
|
D | Kconfig.template.shell_log_queue_timeout | 10 Logger thread is blocked for that period, thus long timeout impacts
|
/Zephyr-latest/subsys/zbus/ |
D | zbus_runtime_observers.c | 18 _ZBUS_ASSERT(!k_is_in_isr(), "ISR blocked"); in zbus_chan_add_obs() 75 _ZBUS_ASSERT(!k_is_in_isr(), "ISR blocked"); in zbus_chan_rm_obs()
|
/Zephyr-latest/tests/drivers/flash/stm32/src/ |
D | main.c | 225 TC_PRINT("Try to unlock blocked OPT\n"); in ZTEST() 231 zassert_true(flash_opt_locked(), "OPT unlocked after being blocked"); in ZTEST() 242 TC_PRINT("Try to unlock blocked CR\n"); in ZTEST() 247 zassert_true(flash_cr_locked(), "CR unlocked after being blocked"); in ZTEST()
|
/Zephyr-latest/drivers/usb/udc/ |
D | Kconfig.dwc2 | 50 blocked for this amount of time. Set it to zero to wait forever.
|
/Zephyr-latest/boards/nxp/mimxrt1180_evk/ |
D | board.c | 27 /* Set the access attribute, otherwise MSIX access will be blocked. */ in board_early_init_hook()
|
/Zephyr-latest/scripts/pylib/twister/twisterlib/ |
D | statuses.py | 41 BLOCK = 'blocked'
|
/Zephyr-latest/.github/workflows/ |
D | stale_issue.yml | 26 exempt-pr-labels: 'Blocked,In progress'
|
/Zephyr-latest/subsys/bluetooth/mesh/ |
D | transport.c | 85 uint8_t blocked:1, /* Blocked by ongoing tx */ member 210 struct seg_tx *blocked = NULL; in seg_tx_unblock_check() local 213 /* Unblock the first blocked tx with the same params. */ in seg_tx_unblock_check() 216 seg_tx[i].blocked && in seg_tx_unblock_check() 218 (!blocked || seg_tx[i].seq_auth < blocked->seq_auth)) { in seg_tx_unblock_check() 219 blocked = &seg_tx[i]; in seg_tx_unblock_check() 223 if (blocked) { in seg_tx_unblock_check() 224 LOG_DBG("Unblocked 0x%04x", (uint16_t)(blocked->seq_auth & TRANS_SEQ_ZERO_MASK)); in seg_tx_unblock_check() 225 blocked->blocked = false; in seg_tx_unblock_check() 226 k_work_reschedule(&blocked->retransmit, K_NO_WAIT); in seg_tx_unblock_check() [all …]
|
/Zephyr-latest/subsys/net/lib/dhcpv4/ |
D | Kconfig | 140 int "The time IPv4 addresses remains blocked after conflict detection (seconds)" 144 In case IPv4 address becomes blocked (either because of receiving
|
/Zephyr-latest/tests/kernel/ipi_cascade/src/ |
D | main.c | 16 * Thread T3 is blocked, pinned to core X and runs at a high priority. 17 * Thread T4 is blocked, not pinned to a core and runs at a med-low priority. 206 /* 3. T3 and T4 are blocked. Pin T3 to this CPU */ in ZTEST()
|
/Zephyr-latest/tests/boot/with_mcumgr/pytest/ |
D | test_downgrade_prevention.py | 27 blocked the image swap
|
/Zephyr-latest/drivers/flash/ |
D | Kconfig.stm32 | 49 blocked.
|
/Zephyr-latest/samples/kernel/condition_variables/simple/src/ |
D | main.c | 71 * blocked, the mutex is released, then re-acquired before this in main()
|
/Zephyr-latest/scripts/gitlint/ |
D | zephyr_commit_rules.py | 122 name = "body-contains-blocked-tags" 131 return [RuleViolation(self.id, f"Commit message contains a blocked tag: {tag}")]
|
/Zephyr-latest/include/zephyr/net/ |
D | conn_mgr_monitor.h | 57 * Events related to the iface connecting/disconnecting will no longer be blocked,
|
/Zephyr-latest/tests/kernel/obj_core/obj_core_stats/src/ |
D | main.c | 233 /* test_thread should now be blocked on wake_test_thread */ in ZTEST() 244 * Busy wait for 10 msec. As test_thread should still be blocked, in ZTEST() 259 "Thread raw stats changed while blocked\n"); in ZTEST() 261 "Thread query stats changed while blocked\n"); in ZTEST() 274 /* test_thread should now be blocked. */ in ZTEST()
|
/Zephyr-latest/include/zephyr/mgmt/mcumgr/mgmt/ |
D | mgmt_defines.h | 127 /** Command blocked by processing of other command */
|
/Zephyr-latest/subsys/logging/ |
D | Kconfig.processing | 33 int "Maximum time (in milliseconds) thread can be blocked"
|
/Zephyr-latest/doc/kernel/services/synchronization/ |
D | condvar.rst | 85 * blocked, the mutex is released, then re-acquired before this
|