/Zephyr-latest/subsys/bluetooth/mesh/ |
D | adv_ext.c | 65 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/ |
D | device_runtime.c | 55 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/ |
D | test_suite_invalid_inputs.c | 78 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/ |
D | main.c | 99 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/ |
D | gpio_npm2100.c | 87 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()
|
D | gpio_mcux.c | 31 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 …]
|
D | gpio_rv32m1.c | 27 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 …]
|
D | gpio_xmc4xxx.c | 34 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 …]
|
D | gpio_sc18im704.c | 79 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 …]
|
D | gpio_npm1300.c | 106 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 …]
|
D | gpio_stm32.c | 52 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/ |
D | irq_manage.c | 52 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/ |
D | pacs.c | 106 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/ |
D | gpio.h | 795 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/ |
D | radio_nrf52811.h | 419 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 …]
|
D | radio_nrf52833.h | 418 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 …]
|
D | radio_nrf52840.h | 409 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 …]
|
D | radio_nrf54lx.h | 418 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 …]
|
D | radio_sim_nrf54l.h | 412 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/ |
D | shell_ops.h | 42 _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/ |
D | nsos_fcntl.h | 18 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/ |
D | i2c_bitbang.c | 201 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/ |
D | test_iv_index.c | 58 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/ |
D | main.c | 92 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/ |
D | irq_manage.c | 50 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()
|