Home
last modified time | relevance | path

Searched full:blocked (Results 1 – 25 of 119) sorted by relevance

12345

/Zephyr-latest/tests/posix/eventfd/src/
D_main.c41 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()
Dioctl.c27 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()
Dnonblocking.c53 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/
Dtestcase.yaml6 # the related CI checks got blocked, so exclude it.
/Zephyr-latest/tests/kernel/msgq/msgq_api/src/
Dtest_msgq_contexts.c213 /* 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/
DKconfig.template.shell_log_queue_size8 by shell thread. Too small queue may lead to the logger thread being blocked
DKconfig.template.shell_log_queue_timeout10 Logger thread is blocked for that period, thus long timeout impacts
/Zephyr-latest/subsys/zbus/
Dzbus_runtime_observers.c18 _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/
Dmain.c225 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/
DKconfig.dwc250 blocked for this amount of time. Set it to zero to wait forever.
/Zephyr-latest/boards/nxp/mimxrt1180_evk/
Dboard.c27 /* Set the access attribute, otherwise MSIX access will be blocked. */ in board_early_init_hook()
/Zephyr-latest/scripts/pylib/twister/twisterlib/
Dstatuses.py41 BLOCK = 'blocked'
/Zephyr-latest/.github/workflows/
Dstale_issue.yml26 exempt-pr-labels: 'Blocked,In progress'
/Zephyr-latest/subsys/bluetooth/mesh/
Dtransport.c85 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/
DKconfig140 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/
Dmain.c16 * 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/
Dtest_downgrade_prevention.py27 blocked the image swap
/Zephyr-latest/drivers/flash/
DKconfig.stm3249 blocked.
/Zephyr-latest/samples/kernel/condition_variables/simple/src/
Dmain.c71 * blocked, the mutex is released, then re-acquired before this in main()
/Zephyr-latest/scripts/gitlint/
Dzephyr_commit_rules.py122 name = "body-contains-blocked-tags"
131 return [RuleViolation(self.id, f"Commit message contains a blocked tag: {tag}")]
/Zephyr-latest/include/zephyr/net/
Dconn_mgr_monitor.h57 * Events related to the iface connecting/disconnecting will no longer be blocked,
/Zephyr-latest/tests/kernel/obj_core/obj_core_stats/src/
Dmain.c233 /* 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/
Dmgmt_defines.h127 /** Command blocked by processing of other command */
/Zephyr-latest/subsys/logging/
DKconfig.processing33 int "Maximum time (in milliseconds) thread can be blocked"
/Zephyr-latest/doc/kernel/services/synchronization/
Dcondvar.rst85 * blocked, the mutex is released, then re-acquired before this

12345