Home
last modified time | relevance | path

Searched refs:flags (Results 76 – 100 of 1688) sorted by relevance

12345678910>>...68

/Zephyr-latest/subsys/bluetooth/mesh/
Dadv_ext.c65 ATOMIC_DEFINE(flags, ADV_FLAGS_NUM);
165 if (atomic_test_and_set_bit(ext_adv->flags, ADV_FLAG_ACTIVE)) { in adv_start()
170 if (atomic_test_bit(ext_adv->flags, ADV_FLAG_UPDATE_PARAMS)) { in adv_start()
174 atomic_clear_bit(ext_adv->flags, ADV_FLAG_ACTIVE); in adv_start()
178 atomic_set_bit_to(ext_adv->flags, ADV_FLAG_UPDATE_PARAMS, in adv_start()
185 atomic_clear_bit(ext_adv->flags, ADV_FLAG_ACTIVE); in adv_start()
194 atomic_clear_bit(ext_adv->flags, ADV_FLAG_ACTIVE); in adv_start()
213 atomic_set_bit(ext_adv->flags, ADV_FLAG_UPDATE_PARAMS); in bt_data_send()
253 if (atomic_test_bit(ext_adv->flags, ADV_FLAG_PROXY)) { in stop_proxy_adv()
260 atomic_clear_bit(ext_adv->flags, ADV_FLAG_PROXY); in stop_proxy_adv()
[all …]
/Zephyr-latest/subsys/pm/
Ddevice_runtime.c55 if (!atomic_test_bit(&pm->base.flags, PM_DEVICE_FLAG_RUNTIME_ENABLED)) { in runtime_suspend()
125 atomic_test_bit(&pm->base.flags, PM_DEVICE_FLAG_PD_CLAIMED)) { in runtime_suspend_work()
136 uint32_t flags = pm->base.flags; in get_sync_locked() local
139 if (flags & BIT(PM_DEVICE_FLAG_PD_CLAIMED)) { in get_sync_locked()
142 if (domain->pm_base->flags & BIT(PM_DEVICE_FLAG_ISR_SAFE)) { in get_sync_locked()
180 if (!atomic_test_bit(&pm->base.flags, PM_DEVICE_FLAG_RUNTIME_ENABLED)) { in pm_device_runtime_get()
184 if (atomic_test_bit(&dev->pm_base->flags, PM_DEVICE_FLAG_ISR_SAFE)) { in pm_device_runtime_get()
217 if (atomic_test_bit(&pm->base.flags, PM_DEVICE_FLAG_TURN_ON_FAILED)) { in pm_device_runtime_get()
223 atomic_set_bit(&pm->base.flags, PM_DEVICE_FLAG_PD_CLAIMED); in pm_device_runtime_get()
282 uint32_t flags = pm->base.flags; in put_sync_locked() local
[all …]
/Zephyr-latest/tests/bluetooth/host/id/bt_le_ext_adv_oob_get_local/src/
Dtest_suite_invalid_inputs.c78 atomic_clear_bit(bt_dev.flags, BT_DEV_READY); in ZTEST()
108 atomic_set_bit(bt_dev.flags, BT_DEV_READY); in ZTEST()
109 atomic_set_bit(bt_dev.flags, BT_DEV_INITIATING); in ZTEST()
111 atomic_clear_bit(adv.flags, BT_ADV_LIMITED); in ZTEST()
112 atomic_clear_bit(adv.flags, BT_ADV_USE_IDENTITY); in ZTEST()
146 atomic_set_bit(bt_dev.flags, BT_DEV_READY); in ZTEST()
185 atomic_set_bit(bt_dev.flags, BT_DEV_READY); in ZTEST()
186 atomic_clear_bit(adv.flags, BT_ADV_USE_IDENTITY); in ZTEST()
/Zephyr-latest/samples/drivers/can/babbling/src/
Dmain.c99 frame.flags |= CAN_FRAME_IDE; in main()
103 frame.flags |= CAN_FRAME_RTR; in main()
107 frame.flags |= CAN_FRAME_FDF; in main()
114 (frame.flags & CAN_FRAME_IDE) != 0 ? "extended" : "standard", in main()
115 (frame.flags & CAN_FRAME_IDE) != 0 ? 29 : 11, in main()
116 (frame.flags & CAN_FRAME_IDE) != 0 ? 8 : 3, frame.id, in main()
117 (frame.flags & CAN_FRAME_RTR) != 0 ? 1 : 0, in main()
118 (frame.flags & CAN_FRAME_FDF) != 0 ? 1 : 0); in main()
/Zephyr-latest/drivers/gpio/
Dgpio_npm2100.c87 gpio_flags_t flags) in gpio_npm2100_configure() argument
101 if ((flags & (GPIO_OUTPUT_INIT_LOW | GPIO_OUTPUT_INIT_HIGH)) != 0U) { in gpio_npm2100_configure()
103 !!(flags & GPIO_OUTPUT_INIT_HIGH)); in gpio_npm2100_configure()
110 if ((flags & GPIO_INPUT) != 0U) { in gpio_npm2100_configure()
113 if ((flags & GPIO_OUTPUT) != 0U) { in gpio_npm2100_configure()
116 if ((flags & GPIO_SINGLE_ENDED) != 0U) { in gpio_npm2100_configure()
119 if ((flags & GPIO_PULL_UP) != 0U) { in gpio_npm2100_configure()
122 if ((flags & GPIO_PULL_DOWN) != 0U) { in gpio_npm2100_configure()
125 if ((flags & NPM2100_GPIO_DRIVE_HIGH) != 0U) { in gpio_npm2100_configure()
128 if ((flags & NPM2100_GPIO_DEBOUNCE_ON) != 0U) { in gpio_npm2100_configure()
Dgpio_mcux.c31 unsigned int flags; member
43 static int gpio_mcux_iopctl_configure(const struct device *dev, gpio_pin_t pin, gpio_flags_t flags) in gpio_mcux_iopctl_configure() argument
50 if (((flags & GPIO_INPUT) != 0) && ((flags & GPIO_OUTPUT) != 0)) { in gpio_mcux_iopctl_configure()
54 if ((flags & GPIO_SINGLE_ENDED) != 0) { in gpio_mcux_iopctl_configure()
65 switch (flags & GPIO_DIR_MASK) { in gpio_mcux_iopctl_configure()
72 if ((flags & GPIO_OUTPUT_INIT_HIGH) != 0) { in gpio_mcux_iopctl_configure()
74 } else if ((flags & GPIO_OUTPUT_INIT_LOW) != 0) { in gpio_mcux_iopctl_configure()
86 if ((flags & GPIO_PULL_UP) != 0) { in gpio_mcux_iopctl_configure()
89 } else if ((flags & GPIO_PULL_DOWN) != 0) { in gpio_mcux_iopctl_configure()
96 switch (flags & KINETIS_GPIO_DS_MASK) { in gpio_mcux_iopctl_configure()
[all …]
Dgpio_rv32m1.c27 unsigned int flags; member
77 gpio_pin_t pin, gpio_flags_t flags) in gpio_rv32m1_configure() argument
91 if ((flags & GPIO_INT_ENABLE) && ((flags & GPIO_INPUT) == 0)) { in gpio_rv32m1_configure()
95 if (((flags & GPIO_INPUT) != 0) && ((flags & GPIO_OUTPUT) != 0)) { in gpio_rv32m1_configure()
99 if ((flags & GPIO_SINGLE_ENDED) != 0) { in gpio_rv32m1_configure()
104 if ((flags & GPIO_INT_ENABLE) && in gpio_rv32m1_configure()
105 ((config->flags & GPIO_INT_ENABLE) == 0U)) { in gpio_rv32m1_configure()
116 switch (flags & GPIO_DIR_MASK) { in gpio_rv32m1_configure()
121 if ((flags & GPIO_OUTPUT_INIT_HIGH) != 0) { in gpio_rv32m1_configure()
123 } else if ((flags & GPIO_OUTPUT_INIT_LOW) != 0) { in gpio_rv32m1_configure()
[all …]
Dgpio_xmc4xxx.c34 static int gpio_xmc4xxx_convert_flags(XMC_GPIO_CONFIG_t *pin_config, gpio_flags_t flags) in gpio_xmc4xxx_convert_flags() argument
36 bool is_input = flags & GPIO_INPUT; in gpio_xmc4xxx_convert_flags()
37 bool is_output = flags & GPIO_OUTPUT; in gpio_xmc4xxx_convert_flags()
45 if (flags & GPIO_OPEN_SOURCE) { in gpio_xmc4xxx_convert_flags()
51 if (flags & GPIO_PULL_DOWN) { in gpio_xmc4xxx_convert_flags()
54 if (flags & GPIO_PULL_UP) { in gpio_xmc4xxx_convert_flags()
59 ds = XMC4XXX_GPIO_GET_DS(flags); in gpio_xmc4xxx_convert_flags()
66 if (flags & GPIO_OPEN_DRAIN) { in gpio_xmc4xxx_convert_flags()
69 if (flags & GPIO_OUTPUT_INIT_LOW) { in gpio_xmc4xxx_convert_flags()
72 if (flags & GPIO_OUTPUT_INIT_HIGH) { in gpio_xmc4xxx_convert_flags()
[all …]
Dgpio_sc18im704.c79 gpio_flags_t flags) in gpio_sc18im_pin_configure() argument
96 if (flags & (GPIO_PULL_UP | GPIO_PULL_DOWN)) { in gpio_sc18im_pin_configure()
100 if (flags & GPIO_INPUT) { in gpio_sc18im_pin_configure()
102 } else if (flags & GPIO_OUTPUT) { in gpio_sc18im_pin_configure()
103 if (flags & GPIO_SINGLE_ENDED) { in gpio_sc18im_pin_configure()
104 if (flags & GPIO_LINE_OPEN_DRAIN) { in gpio_sc18im_pin_configure()
146 if (ret == 0 && flags & GPIO_OUTPUT) { in gpio_sc18im_pin_configure()
147 if (flags & GPIO_OUTPUT_INIT_HIGH) { in gpio_sc18im_pin_configure()
150 if (flags & GPIO_OUTPUT_INIT_LOW) { in gpio_sc18im_pin_configure()
162 gpio_flags_t *flags) in gpio_sc18im_pin_get_config() argument
[all …]
Dgpio_npm1300.c106 gpio_flags_t flags) in gpio_npm1300_configure() argument
120 if ((flags & GPIO_INPUT) != 0U) { in gpio_npm1300_configure()
121 if (flags & GPIO_ACTIVE_LOW) { in gpio_npm1300_configure()
130 } else if ((flags & NPM1300_GPIO_WDT_RESET_ON) != 0U) { in gpio_npm1300_configure()
133 } else if ((flags & NPM1300_GPIO_PWRLOSSWARN_ON) != 0U) { in gpio_npm1300_configure()
136 } else if ((flags & GPIO_OUTPUT_INIT_HIGH) != 0U) { in gpio_npm1300_configure()
139 } else if ((flags & GPIO_OUTPUT) != 0U) { in gpio_npm1300_configure()
150 !!(flags & GPIO_SINGLE_ENDED)); in gpio_npm1300_configure()
157 !!(flags & GPIO_PULL_UP)); in gpio_npm1300_configure()
163 !!(flags & GPIO_PULL_DOWN)); in gpio_npm1300_configure()
[all …]
Dgpio_stm32.c52 static int gpio_stm32_flags_to_conf(gpio_flags_t flags, uint32_t *pincfg) in gpio_stm32_flags_to_conf() argument
55 if ((flags & GPIO_OUTPUT) != 0) { in gpio_stm32_flags_to_conf()
60 if ((flags & GPIO_SINGLE_ENDED) != 0) { in gpio_stm32_flags_to_conf()
61 if (flags & GPIO_LINE_OPEN_DRAIN) { in gpio_stm32_flags_to_conf()
71 if ((flags & GPIO_PULL_UP) != 0) { in gpio_stm32_flags_to_conf()
73 } else if ((flags & GPIO_PULL_DOWN) != 0) { in gpio_stm32_flags_to_conf()
77 } else if ((flags & GPIO_INPUT) != 0) { in gpio_stm32_flags_to_conf()
82 if ((flags & GPIO_PULL_UP) != 0) { in gpio_stm32_flags_to_conf()
84 } else if ((flags & GPIO_PULL_DOWN) != 0) { in gpio_stm32_flags_to_conf()
95 switch (flags & (STM32_GPIO_SPEED_MASK << STM32_GPIO_SPEED_SHIFT)) { in gpio_stm32_flags_to_conf()
[all …]
/Zephyr-latest/arch/riscv/core/
Dirq_manage.c52 const void *parameter, uint32_t flags) in arch_irq_connect_dynamic() argument
57 z_riscv_irq_priority_set(irq, priority, flags); in arch_irq_connect_dynamic()
59 ARG_UNUSED(flags); in arch_irq_connect_dynamic()
68 uint32_t flags) in arch_irq_disconnect_dynamic() argument
71 ARG_UNUSED(flags); in arch_irq_disconnect_dynamic()
/Zephyr-latest/subsys/bluetooth/audio/
Dpacs.c106 ATOMIC_DEFINE(flags, FLAG_NUM);
110 ATOMIC_DEFINE(flags, PACS_FLAG_NUM);
138 if (atomic_test_bit(pacs.clients[i].flags, FLAG_ACTIVE) && in client_lookup_conn()
150 if (atomic_test_bit(pacs.clients[i].flags, FLAG_ACTIVE)) { in pacs_set_notify_bit()
151 atomic_set_bit(pacs.clients[i].flags, bit); in pacs_set_notify_bit()
246 if (atomic_test_bit(pacs.flags, PACS_FLAG_SNK_PAC) && in pacs_get_available_contexts_for_conn()
254 if (atomic_test_bit(pacs.flags, PACS_FLAG_SRC_PAC) && in pacs_get_available_contexts_for_conn()
295 if (atomic_test_bit(pacs.flags, PACS_FLAG_SNK_PAC)) { in supported_context_get()
302 if (atomic_test_bit(pacs.flags, PACS_FLAG_SRC_PAC)) { in supported_context_get()
443 if (atomic_test_bit(pacs.flags, PACS_FLAG_SNK_LOC)) { in set_snk_location()
[all …]
/Zephyr-latest/include/zephyr/drivers/
Dgpio.h795 gpio_flags_t flags);
798 gpio_flags_t *flags);
868 gpio_flags_t flags);
872 gpio_flags_t flags) in z_impl_gpio_pin_interrupt_configure() argument
884 SYS_PORT_TRACING_FUNC_ENTER(gpio_pin, interrupt_configure, port, pin, flags); in z_impl_gpio_pin_interrupt_configure()
891 __ASSERT((flags & (GPIO_INT_DISABLE | GPIO_INT_ENABLE)) in z_impl_gpio_pin_interrupt_configure()
895 __ASSERT((flags & (GPIO_INT_DISABLE | GPIO_INT_ENABLE)) != 0U, in z_impl_gpio_pin_interrupt_configure()
898 __ASSERT(((flags & GPIO_INT_ENABLE) == 0) || in z_impl_gpio_pin_interrupt_configure()
899 ((flags & GPIO_INT_EDGE) != 0) || in z_impl_gpio_pin_interrupt_configure()
900 ((flags & (GPIO_INT_LOW_0 | GPIO_INT_HIGH_1)) != in z_impl_gpio_pin_interrupt_configure()
[all …]
/Zephyr-latest/subsys/bluetooth/controller/ll_sw/nordic/hal/nrf5/radio/
Dradio_nrf52811.h419 static inline uint32_t hal_radio_phy_mode_get(uint8_t phy, uint8_t flags) in hal_radio_phy_mode_get() argument
435 if (flags & 0x01) { in hal_radio_phy_mode_get()
495 static inline uint32_t hal_radio_tx_ready_delay_us_get(uint8_t phy, uint8_t flags) in hal_radio_tx_ready_delay_us_get() argument
506 if (flags & 0x01) { in hal_radio_tx_ready_delay_us_get()
515 static inline uint32_t hal_radio_rx_ready_delay_us_get(uint8_t phy, uint8_t flags) in hal_radio_rx_ready_delay_us_get() argument
526 if (flags & 0x01) { in hal_radio_rx_ready_delay_us_get()
535 static inline uint32_t hal_radio_tx_chain_delay_us_get(uint8_t phy, uint8_t flags) in hal_radio_tx_chain_delay_us_get() argument
546 if (flags & 0x01) { in hal_radio_tx_chain_delay_us_get()
555 static inline uint32_t hal_radio_rx_chain_delay_us_get(uint8_t phy, uint8_t flags) in hal_radio_rx_chain_delay_us_get() argument
566 if (flags & 0x01) { in hal_radio_rx_chain_delay_us_get()
[all …]
Dradio_nrf52833.h418 static inline uint32_t hal_radio_phy_mode_get(uint8_t phy, uint8_t flags) in hal_radio_phy_mode_get() argument
434 if (flags & 0x01) { in hal_radio_phy_mode_get()
514 static inline uint32_t hal_radio_tx_ready_delay_us_get(uint8_t phy, uint8_t flags) in hal_radio_tx_ready_delay_us_get() argument
525 if (flags & 0x01) { in hal_radio_tx_ready_delay_us_get()
534 static inline uint32_t hal_radio_rx_ready_delay_us_get(uint8_t phy, uint8_t flags) in hal_radio_rx_ready_delay_us_get() argument
545 if (flags & 0x01) { in hal_radio_rx_ready_delay_us_get()
554 static inline uint32_t hal_radio_tx_chain_delay_us_get(uint8_t phy, uint8_t flags) in hal_radio_tx_chain_delay_us_get() argument
565 if (flags & 0x01) { in hal_radio_tx_chain_delay_us_get()
574 static inline uint32_t hal_radio_rx_chain_delay_us_get(uint8_t phy, uint8_t flags) in hal_radio_rx_chain_delay_us_get() argument
585 if (flags & 0x01) { in hal_radio_rx_chain_delay_us_get()
[all …]
Dradio_nrf52840.h409 static inline uint32_t hal_radio_phy_mode_get(uint8_t phy, uint8_t flags) in hal_radio_phy_mode_get() argument
441 if (flags & 0x01) { in hal_radio_phy_mode_get()
528 static inline uint32_t hal_radio_tx_ready_delay_us_get(uint8_t phy, uint8_t flags) in hal_radio_tx_ready_delay_us_get() argument
539 if (flags & 0x01) { in hal_radio_tx_ready_delay_us_get()
548 static inline uint32_t hal_radio_rx_ready_delay_us_get(uint8_t phy, uint8_t flags) in hal_radio_rx_ready_delay_us_get() argument
559 if (flags & 0x01) { in hal_radio_rx_ready_delay_us_get()
568 static inline uint32_t hal_radio_tx_chain_delay_us_get(uint8_t phy, uint8_t flags) in hal_radio_tx_chain_delay_us_get() argument
579 if (flags & 0x01) { in hal_radio_tx_chain_delay_us_get()
588 static inline uint32_t hal_radio_rx_chain_delay_us_get(uint8_t phy, uint8_t flags) in hal_radio_rx_chain_delay_us_get() argument
599 if (flags & 0x01) { in hal_radio_rx_chain_delay_us_get()
[all …]
Dradio_nrf54lx.h418 static inline uint32_t hal_radio_phy_mode_get(uint8_t phy, uint8_t flags) in hal_radio_phy_mode_get() argument
434 if (flags & 0x01) { in hal_radio_phy_mode_get()
674 static inline uint32_t hal_radio_tx_ready_delay_us_get(uint8_t phy, uint8_t flags) in hal_radio_tx_ready_delay_us_get() argument
685 if (flags & 0x01) { in hal_radio_tx_ready_delay_us_get()
694 static inline uint32_t hal_radio_rx_ready_delay_us_get(uint8_t phy, uint8_t flags) in hal_radio_rx_ready_delay_us_get() argument
705 if (flags & 0x01) { in hal_radio_rx_ready_delay_us_get()
714 static inline uint32_t hal_radio_tx_chain_delay_us_get(uint8_t phy, uint8_t flags) in hal_radio_tx_chain_delay_us_get() argument
725 if (flags & 0x01) { in hal_radio_tx_chain_delay_us_get()
734 static inline uint32_t hal_radio_rx_chain_delay_us_get(uint8_t phy, uint8_t flags) in hal_radio_rx_chain_delay_us_get() argument
745 if (flags & 0x01) { in hal_radio_rx_chain_delay_us_get()
[all …]
Dradio_sim_nrf54l.h412 static inline uint32_t hal_radio_phy_mode_get(uint8_t phy, uint8_t flags) in hal_radio_phy_mode_get() argument
428 if (flags & 0x01) { in hal_radio_phy_mode_get()
668 static inline uint32_t hal_radio_tx_ready_delay_us_get(uint8_t phy, uint8_t flags) in hal_radio_tx_ready_delay_us_get() argument
679 if (flags & 0x01) { in hal_radio_tx_ready_delay_us_get()
688 static inline uint32_t hal_radio_rx_ready_delay_us_get(uint8_t phy, uint8_t flags) in hal_radio_rx_ready_delay_us_get() argument
699 if (flags & 0x01) { in hal_radio_rx_ready_delay_us_get()
708 static inline uint32_t hal_radio_tx_chain_delay_us_get(uint8_t phy, uint8_t flags) in hal_radio_tx_chain_delay_us_get() argument
711 ARG_UNUSED(flags); in hal_radio_tx_chain_delay_us_get()
715 static inline uint32_t hal_radio_rx_chain_delay_us_get(uint8_t phy, uint8_t flags) in hal_radio_rx_chain_delay_us_get() argument
726 if (flags & 0x01) { in hal_radio_rx_chain_delay_us_get()
[all …]
/Zephyr-latest/subsys/shell/
Dshell_ops.h42 _internal_.flags._flag_ = 1U; \
50 _ret_ = (_internal_.flags._flag_ != 0); \
55 return sh->ctx->cfg.flags.insert_mode == 1; in z_flag_insert_mode_get()
68 return sh->ctx->cfg.flags.use_colors == 1; in z_flag_use_colors_get()
81 return sh->ctx->cfg.flags.use_vt100 == 1; in z_flag_use_vt100_get()
94 return sh->ctx->cfg.flags.echo == 1; in z_flag_echo_get()
107 return sh->ctx->cfg.flags.obscure == 1; in z_flag_obscure_get()
120 return sh->ctx->ctx.flags.processing == 1; in z_flag_processing_get()
133 return sh->ctx->ctx.flags.tx_rdy == 1; in z_flag_tx_rdy_get()
146 return sh->ctx->cfg.flags.mode_delete == 1; in z_flag_mode_delete_get()
[all …]
/Zephyr-latest/drivers/net/
Dnsos_fcntl.h18 int fl_to_nsos_mid(int flags);
19 int fl_to_nsos_mid_strict(int flags);
20 int fl_from_nsos_mid(int flags);
/Zephyr-latest/drivers/i2c/
Di2c_bitbang.c201 unsigned int flags; in i2c_bitbang_transfer() local
209 flags = I2C_MSG_RESTART; in i2c_bitbang_transfer()
213 flags |= I2C_MSG_STOP; in i2c_bitbang_transfer()
217 if (flags & I2C_MSG_STOP) { in i2c_bitbang_transfer()
222 flags &= I2C_MSG_RESTART; in i2c_bitbang_transfer()
225 if (flags & I2C_MSG_RESTART) { in i2c_bitbang_transfer()
227 } else if (msgs->flags & I2C_MSG_RESTART) { in i2c_bitbang_transfer()
232 flags |= msgs->flags; in i2c_bitbang_transfer()
235 if (flags & I2C_MSG_RESTART) { in i2c_bitbang_transfer()
238 byte0 |= (flags & I2C_MSG_RW_MASK) == I2C_MSG_READ; in i2c_bitbang_transfer()
[all …]
/Zephyr-latest/tests/bsim/bluetooth/mesh/src/
Dtest_iv_index.c58 atomic_set_bit(bt_mesh.flags, BT_MESH_IVU_IN_PROGRESS); in test_ivu_recovery()
70 ASSERT_FALSE(atomic_test_bit(bt_mesh.flags, BT_MESH_IVU_IN_PROGRESS)); in test_ivu_recovery()
78 atomic_clear_bit(bt_mesh.flags, BT_MESH_IVU_IN_PROGRESS); in test_ivu_recovery()
90 ASSERT_FALSE(atomic_test_bit(bt_mesh.flags, BT_MESH_IVU_IN_PROGRESS)); in test_ivu_recovery()
103 atomic_set_bit(bt_mesh.flags, BT_MESH_IVU_IN_PROGRESS); in test_ivu_normal()
110 ASSERT_FALSE(atomic_test_bit(bt_mesh.flags, BT_MESH_IVU_IN_PROGRESS)); in test_ivu_normal()
123 ASSERT_TRUE(atomic_test_bit(bt_mesh.flags, BT_MESH_IVU_IN_PROGRESS)); in test_ivu_normal()
137 atomic_set_bit(bt_mesh.flags, BT_MESH_IVU_IN_PROGRESS); in test_ivu_deferring()
143 ASSERT_TRUE(atomic_test_bit(bt_mesh.flags, BT_MESH_IVU_IN_PROGRESS)); in test_ivu_deferring()
146 ASSERT_FALSE(atomic_test_bit(bt_mesh.flags, BT_MESH_IVU_IN_PROGRESS)); in test_ivu_deferring()
/Zephyr-latest/tests/bluetooth/host/id/bt_id_adv_random_addr_check/src/
Dmain.c92 atomic_clear_bit(bt_dev.flags, BT_DEV_INITIATING); in ZTEST()
93 atomic_clear_bit(bt_dev.flags, BT_DEV_SCANNING); in ZTEST()
121 atomic_set_bit(bt_dev.flags, BT_DEV_INITIATING); in ZTEST()
122 atomic_set_bit(bt_dev.flags, BT_DEV_SCANNING); in ZTEST()
155 atomic_set_bit(bt_dev.flags, BT_DEV_SCANNING); in ZTEST()
189 atomic_set_bit(bt_dev.flags, BT_DEV_SCANNING); in ZTEST()
223 atomic_set_bit(bt_dev.flags, BT_DEV_INITIATING); in ZTEST()
224 atomic_set_bit(bt_dev.flags, BT_DEV_SCANNING); in ZTEST()
/Zephyr-latest/arch/arm64/core/
Dirq_manage.c50 void z_arm64_irq_priority_set(unsigned int irq, unsigned int prio, uint32_t flags) in z_arm64_irq_priority_set() argument
52 arm_gic_irq_set_priority(irq, prio, flags); in z_arm64_irq_priority_set()
59 const void *parameter, uint32_t flags) in arch_irq_connect_dynamic() argument
62 z_arm64_irq_priority_set(irq, priority, flags); in arch_irq_connect_dynamic()

12345678910>>...68