/Zephyr-Core-3.5.0/subsys/bluetooth/controller/ll_sw/openisa/hal/RV32M1/ |
D | debug.h | 107 #define DEBUG_CPU_SLEEP(flag) gpio_pin_set(DEBUG0_PORT, DEBUG0_PIN, flag) argument 109 #define DEBUG_TICKER_ISR(flag) gpio_pin_set(DEBUG1_PORT, DEBUG1_PIN, flag) argument 111 #define DEBUG_TICKER_TASK(flag) gpio_pin_set(DEBUG1_PORT, DEBUG1_PIN, flag) argument 113 #define DEBUG_TICKER_JOB(flag) gpio_pin_set(DEBUG2_PORT, DEBUG2_PIN, flag) argument 115 #define DEBUG_RADIO_ISR(flag) gpio_pin_set(DEBUG7_PORT, DEBUG7_PIN, flag) argument 117 #define DEBUG_RADIO_XTAL(flag) gpio_pin_set(DEBUG8_PORT, DEBUG8_PIN, flag) argument 119 #define DEBUG_RADIO_ACTIVE(flag) gpio_pin_set(DEBUG9_PORT, DEBUG9_PIN, flag) argument 121 #define DEBUG_RADIO_CLOSE(flag) \ argument 123 if (!flag) { \ 124 gpio_pin_set(DEBUG3_PORT, DEBUG3_PIN, flag); \ [all …]
|
/Zephyr-Core-3.5.0/subsys/bluetooth/controller/ll_sw/nordic/hal/nrf5/ |
D | debug.h | 108 #define DEBUG_CPU_SLEEP(flag) \ argument 110 if (flag) { \ 119 #define DEBUG_TICKER_ISR(flag) \ argument 121 if (flag) { \ 130 #define DEBUG_TICKER_TASK(flag) \ argument 132 if (flag) { \ 141 #define DEBUG_TICKER_JOB(flag) \ argument 143 if (flag) { \ 152 #define DEBUG_RADIO_ISR(flag) \ argument 154 if (flag) { \ [all …]
|
/Zephyr-Core-3.5.0/tests/bsim/bluetooth/host/l2cap/split/common/ |
D | utils.h | 16 #define DECLARE_FLAG(flag) extern atomic_t flag argument 17 #define DEFINE_FLAG(flag) atomic_t flag = (atomic_t) false argument 18 #define SET_FLAG(flag) (void)atomic_set(&flag, (atomic_t) true) argument 19 #define UNSET_FLAG(flag) (void)atomic_set(&flag, (atomic_t) false) argument 21 #define WAIT_FOR_FLAG(flag) \ argument 22 while (!(bool)atomic_get(&flag)) { \ 25 #define WAIT_FOR_FLAG_UNSET(flag) \ argument 26 while ((bool)atomic_get(&flag)) { \ 29 #define TAKE_FLAG(flag) \ argument 30 while (!(bool)atomic_cas(&flag, true, false)) { \
|
/Zephyr-Core-3.5.0/tests/bsim/bluetooth/host/security/security_changed_callback/src/ |
D | bs_bt_utils.h | 27 #define DECLARE_FLAG(flag) extern atomic_t flag argument 28 #define DEFINE_FLAG(flag) atomic_t flag = (atomic_t) false argument 29 #define SET_FLAG(flag) (void)atomic_set(&flag, (atomic_t) true) argument 30 #define UNSET_FLAG(flag) (void)atomic_set(&flag, (atomic_t) false) argument 31 #define WAIT_FOR_FLAG(flag) \ argument 32 while (!(bool)atomic_get(&flag)) { \ 35 #define WAIT_FOR_FLAG_UNSET(flag) \ argument 36 while ((bool)atomic_get(&flag)) { \ 39 #define TAKE_FLAG(flag) \ argument 40 while (!(bool)atomic_cas(&flag, true, false)) { \ [all …]
|
/Zephyr-Core-3.5.0/tests/bsim/bluetooth/host/gatt/sc_indicate/src/ |
D | bs_bt_utils.h | 15 #define DECLARE_FLAG(flag) extern atomic_t flag argument 16 #define DEFINE_FLAG(flag) atomic_t flag = (atomic_t) false argument 17 #define SET_FLAG(flag) (void)atomic_set(&flag, (atomic_t) true) argument 18 #define UNSET_FLAG(flag) (void)atomic_set(&flag, (atomic_t) false) argument 19 #define WAIT_FOR_FLAG(flag) \ argument 20 while (!(bool)atomic_get(&flag)) { \ 23 #define WAIT_FOR_FLAG_UNSET(flag) \ argument 24 while ((bool)atomic_get(&flag)) { \ 27 #define TAKE_FLAG(flag) \ argument 28 while (!(bool)atomic_cas(&flag, true, false)) { \ [all …]
|
/Zephyr-Core-3.5.0/tests/bsim/bluetooth/host/security/bond_per_connection/src/ |
D | bs_bt_utils.h | 29 #define DECLARE_FLAG(flag) extern atomic_t flag argument 30 #define DEFINE_FLAG(flag) atomic_t flag = (atomic_t) false argument 31 #define SET_FLAG(flag) (void)atomic_set(&flag, (atomic_t) true) argument 32 #define UNSET_FLAG(flag) (void)atomic_set(&flag, (atomic_t) false) argument 33 #define WAIT_FOR_FLAG(flag) \ argument 34 while (!(bool)atomic_get(&flag)) { \ 37 #define WAIT_FOR_FLAG_UNSET(flag) \ argument 38 while ((bool)atomic_get(&flag)) { \ 41 #define TAKE_FLAG(flag) \ argument 42 while (!(bool)atomic_cas(&flag, true, false)) { \ [all …]
|
/Zephyr-Core-3.5.0/tests/bsim/bluetooth/host/privacy/central/src/ |
D | bs_bt_utils.h | 27 #define DECLARE_FLAG(flag) extern atomic_t flag argument 28 #define DEFINE_FLAG(flag) atomic_t flag = (atomic_t) false argument 29 #define SET_FLAG(flag) (void)atomic_set(&flag, (atomic_t) true) argument 30 #define UNSET_FLAG(flag) (void)atomic_set(&flag, (atomic_t) false) argument 31 #define WAIT_FOR_FLAG(flag) \ argument 32 while (!(bool)atomic_get(&flag)) { \ 35 #define WAIT_FOR_FLAG_UNSET(flag) \ argument 36 while ((bool)atomic_get(&flag)) { \ 39 #define TAKE_FLAG(flag) \ argument 40 while (!(bool)atomic_cas(&flag, true, false)) { \
|
/Zephyr-Core-3.5.0/tests/bsim/bluetooth/host/att/sequential/common/ |
D | utils.h | 16 #define DECLARE_FLAG(flag) extern atomic_t flag argument 17 #define DEFINE_FLAG(flag) atomic_t flag = (atomic_t) false argument 18 #define SET_FLAG(flag) (void)atomic_set(&flag, (atomic_t) true) argument 19 #define UNSET_FLAG(flag) (void)atomic_set(&flag, (atomic_t) false) argument 25 #define WAIT_FOR_FLAG(flag) \ argument 26 while (!(bool)atomic_get(&flag)) { \ 29 #define WAIT_FOR_FLAG_UNSET(flag) \ argument 30 while ((bool)atomic_get(&flag)) { \ 33 #define TAKE_FLAG(flag) \ argument 34 while (!(bool)atomic_cas(&flag, true, false)) { \
|
/Zephyr-Core-3.5.0/tests/bsim/bluetooth/host/security/id_addr_update/common/ |
D | bs_bt_utils.h | 33 #define DECLARE_FLAG(flag) extern atomic_t flag argument 34 #define DEFINE_FLAG(flag) atomic_t flag = (atomic_t) false argument 35 #define SET_FLAG(flag) (void)atomic_set(&flag, (atomic_t) true) argument 36 #define UNSET_FLAG(flag) (void)atomic_set(&flag, (atomic_t) false) argument 37 #define WAIT_FOR_FLAG(flag) \ argument 38 while (!(bool)atomic_get(&flag)) { \ 41 #define WAIT_FOR_FLAG_UNSET(flag) \ argument 42 while ((bool)atomic_get(&flag)) { \ 45 #define TAKE_FLAG(flag) \ argument 46 while (!(bool)atomic_cas(&flag, true, false)) { \ [all …]
|
/Zephyr-Core-3.5.0/tests/bsim/bluetooth/host/iso/cis/src/ |
D | common.h | 17 #define CREATE_FLAG(flag) static atomic_t flag = (atomic_t) false argument 18 #define SET_FLAG(flag) (void)atomic_set(&flag, (atomic_t) true) argument 19 #define UNSET_FLAG(flag) (void)atomic_set(&flag, (atomic_t) false) argument 20 #define TEST_FLAG(flag) (atomic_get(&flag) == (atomic_t) true) argument 21 #define WAIT_FOR_FLAG_SET(flag) \ argument 22 while (!(bool)atomic_get(&flag)) { \ 25 #define WAIT_FOR_FLAG_UNSET(flag) \ argument 26 while ((bool)atomic_get(&flag)) { \
|
/Zephyr-Core-3.5.0/tests/bsim/bluetooth/host/adv/resume/src/ |
D | bs_bt_utils.h | 27 #define DECLARE_FLAG(flag) extern atomic_t flag argument 28 #define DEFINE_FLAG(flag) atomic_t flag = (atomic_t) false argument 29 #define SET_FLAG(flag) (void)atomic_set(&flag, (atomic_t) true) argument 30 #define UNSET_FLAG(flag) (void)atomic_set(&flag, (atomic_t) false) argument 31 #define WAIT_FOR_FLAG(flag) \ argument 32 while (!(bool)atomic_get(&flag)) { \ 35 #define WAIT_FOR_FLAG_UNSET(flag) \ argument 36 while ((bool)atomic_get(&flag)) { \ 39 #define TAKE_FLAG(flag) \ argument 40 while (!(bool)atomic_cas(&flag, true, false)) { \
|
/Zephyr-Core-3.5.0/tests/bsim/bluetooth/host/security/bond_overwrite_allowed/src/ |
D | bs_bt_utils.h | 29 #define DECLARE_FLAG(flag) extern atomic_t flag argument 30 #define DEFINE_FLAG(flag) atomic_t flag = (atomic_t) false argument 31 #define SET_FLAG(flag) (void)atomic_set(&flag, (atomic_t) true) argument 32 #define UNSET_FLAG(flag) (void)atomic_set(&flag, (atomic_t) false) argument 33 #define WAIT_FOR_FLAG(flag) \ argument 34 while (!(bool)atomic_get(&flag)) { \ 37 #define WAIT_FOR_FLAG_UNSET(flag) \ argument 38 while ((bool)atomic_get(&flag)) { \ 41 #define TAKE_FLAG(flag) \ argument 42 while (!(bool)atomic_cas(&flag, true, false)) { \
|
/Zephyr-Core-3.5.0/tests/bsim/bluetooth/host/security/bond_overwrite_denied/src/ |
D | bs_bt_utils.h | 29 #define DECLARE_FLAG(flag) extern atomic_t flag argument 30 #define DEFINE_FLAG(flag) atomic_t flag = (atomic_t) false argument 31 #define SET_FLAG(flag) (void)atomic_set(&flag, (atomic_t) true) argument 32 #define UNSET_FLAG(flag) (void)atomic_set(&flag, (atomic_t) false) argument 33 #define WAIT_FOR_FLAG(flag) \ argument 34 while (!(bool)atomic_get(&flag)) { \ 37 #define WAIT_FOR_FLAG_UNSET(flag) \ argument 38 while ((bool)atomic_get(&flag)) { \ 41 #define TAKE_FLAG(flag) \ argument 42 while (!(bool)atomic_cas(&flag, true, false)) { \
|
/Zephyr-Core-3.5.0/tests/bsim/bluetooth/host/l2cap/general/src/ |
D | common.h | 23 #define CREATE_FLAG(flag) static atomic_t flag = (atomic_t)false argument 24 #define SET_FLAG(flag) (void)atomic_set(&flag, (atomic_t)true) argument 25 #define UNSET_FLAG(flag) (void)atomic_set(&flag, (atomic_t)false) argument 26 #define TEST_FLAG(flag) (atomic_get(&flag) == (atomic_t)true) argument 27 #define WAIT_FOR_FLAG_SET(flag) \ argument 28 while (!(bool)atomic_get(&flag)) { \ 31 #define WAIT_FOR_FLAG_UNSET(flag) \ argument 32 while ((bool)atomic_get(&flag)) { \
|
/Zephyr-Core-3.5.0/tests/bsim/bluetooth/host/gatt/settings/src/ |
D | utils.h | 18 #define DECLARE_FLAG(flag) extern atomic_t flag argument 19 #define DEFINE_FLAG(flag) atomic_t flag = (atomic_t) false argument 20 #define SET_FLAG(flag) (void)atomic_set(&flag, (atomic_t) true) argument 21 #define UNSET_FLAG(flag) (void)atomic_set(&flag, (atomic_t) false) argument 22 #define WAIT_FOR_FLAG(flag) \ argument 23 while (!(bool)atomic_get(&flag)) { \ 26 #define WAIT_FOR_FLAG_UNSET(flag) \ argument 27 while ((bool)atomic_get(&flag)) { \ 30 #define TAKE_FLAG(flag) \ argument 31 while (!(bool)atomic_cas(&flag, true, false)) { \
|
/Zephyr-Core-3.5.0/tests/bsim/bluetooth/host/l2cap/credits_seg_recv/src/ |
D | common.h | 25 #define CREATE_FLAG(flag) static atomic_t flag = (atomic_t)false argument 26 #define SET_FLAG(flag) (void)atomic_set(&flag, (atomic_t)true) argument 27 #define UNSET_FLAG(flag) (void)atomic_set(&flag, (atomic_t)false) argument 28 #define TEST_FLAG(flag) (atomic_get(&flag) == (atomic_t)true) argument 29 #define WAIT_FOR_FLAG_SET(flag) \ argument 30 while (!(bool)atomic_get(&flag)) { \ 33 #define WAIT_FOR_FLAG_UNSET(flag) \ argument 34 while ((bool)atomic_get(&flag)) { \
|
/Zephyr-Core-3.5.0/tests/bsim/bluetooth/host/l2cap/credits/src/ |
D | common.h | 25 #define CREATE_FLAG(flag) static atomic_t flag = (atomic_t)false argument 26 #define SET_FLAG(flag) (void)atomic_set(&flag, (atomic_t)true) argument 27 #define UNSET_FLAG(flag) (void)atomic_set(&flag, (atomic_t)false) argument 28 #define TEST_FLAG(flag) (atomic_get(&flag) == (atomic_t)true) argument 29 #define WAIT_FOR_FLAG_SET(flag) \ argument 30 while (!(bool)atomic_get(&flag)) { \ 33 #define WAIT_FOR_FLAG_UNSET(flag) \ argument 34 while ((bool)atomic_get(&flag)) { \
|
/Zephyr-Core-3.5.0/tests/bsim/bluetooth/host/l2cap/stress/src/ |
D | common.h | 25 #define CREATE_FLAG(flag) static atomic_t flag = (atomic_t)false argument 26 #define SET_FLAG(flag) (void)atomic_set(&flag, (atomic_t)true) argument 27 #define UNSET_FLAG(flag) (void)atomic_set(&flag, (atomic_t)false) argument 28 #define TEST_FLAG(flag) (atomic_get(&flag) == (atomic_t)true) argument 29 #define WAIT_FOR_FLAG_SET(flag) \ argument 30 while (!(bool)atomic_get(&flag)) { \ 33 #define WAIT_FOR_FLAG_UNSET(flag) \ argument 34 while ((bool)atomic_get(&flag)) { \
|
/Zephyr-Core-3.5.0/tests/bsim/bluetooth/host/gatt/notify_multiple/src/ |
D | common.h | 30 #define CREATE_FLAG(flag) static atomic_t flag = (atomic_t)false argument 31 #define FORCE_FLAG(flag, val) (void)atomic_set(&flag, (atomic_t)val) argument 32 #define SET_FLAG(flag) (void)atomic_set(&flag, (atomic_t)true) argument 33 #define UNSET_FLAG(flag) (void)atomic_set(&flag, (atomic_t)false) argument 34 #define WAIT_FOR_FLAG(flag) \ argument 35 while (!(bool)atomic_get(&flag)) { \ 38 #define WAIT_FOR_FLAG_UNSET(flag) \ argument 39 while ((bool)atomic_get(&flag)) { \
|
/Zephyr-Core-3.5.0/tests/bsim/bluetooth/host/l2cap/send_on_connect/src/ |
D | common.h | 15 #define CREATE_FLAG(flag) static atomic_t flag = (atomic_t)false argument 16 #define SET_FLAG(flag) (void)atomic_set(&flag, (atomic_t)true) argument 17 #define UNSET_FLAG(flag) (void)atomic_set(&flag, (atomic_t)false) argument 18 #define WAIT_FOR_FLAG_SET(flag) \ argument 19 while (!(bool)atomic_get(&flag)) { \ 22 #define WAIT_FOR_FLAG_UNSET(flag) \ argument 23 while ((bool)atomic_get(&flag)) { \
|
/Zephyr-Core-3.5.0/tests/bsim/bluetooth/host/l2cap/userdata/src/ |
D | common.h | 15 #define CREATE_FLAG(flag) static atomic_t flag = (atomic_t)false argument 16 #define SET_FLAG(flag) (void)atomic_set(&flag, (atomic_t)true) argument 17 #define UNSET_FLAG(flag) (void)atomic_set(&flag, (atomic_t)false) argument 18 #define WAIT_FOR_FLAG_SET(flag) \ argument 19 while (!(bool)atomic_get(&flag)) { \ 22 #define WAIT_FOR_FLAG_UNSET(flag) \ argument 23 while ((bool)atomic_get(&flag)) { \
|
/Zephyr-Core-3.5.0/tests/bsim/bluetooth/host/adv/periodic/src/ |
D | common.h | 33 #define CREATE_FLAG(flag) static atomic_t flag = (atomic_t)false argument 34 #define SET_FLAG(flag) (void)atomic_set(&flag, (atomic_t)true) argument 35 #define UNSET_FLAG(flag) (void)atomic_set(&flag, (atomic_t)false) argument 36 #define TEST_FLAG(flag) (atomic_get(&flag) == (atomic_t)true) argument 37 #define WAIT_FOR_FLAG(flag) \ argument 38 while (!(bool)atomic_get(&flag)) { \
|
/Zephyr-Core-3.5.0/tests/bsim/bluetooth/audio/src/ |
D | common.h | 36 #define CREATE_FLAG(flag) static atomic_t flag = (atomic_t)false argument 37 #define SET_FLAG(flag) (void)atomic_set(&flag, (atomic_t)true) argument 38 #define UNSET_FLAG(flag) (void)atomic_clear(&flag) argument 39 #define TEST_FLAG(flag) (atomic_get(&flag) == (atomic_t)true) argument 40 #define WAIT_FOR_FLAG(flag) \ argument 41 while (!(bool)atomic_get(&flag)) { \ 44 #define WAIT_FOR_UNSET_FLAG(flag) \ argument 45 while (atomic_get(&flag) != (atomic_t)false) { \
|
/Zephyr-Core-3.5.0/tests/bsim/bluetooth/host/misc/disable/src/ |
D | common.h | 30 #define CREATE_FLAG(flag) static atomic_t flag = (atomic_t)false argument 31 #define SET_FLAG(flag) (void)atomic_set(&flag, (atomic_t)true) argument 32 #define UNSET_FLAG(flag) (void)atomic_set(&flag, (atomic_t)false) argument 33 #define WAIT_FOR_FLAG(flag) \ argument 34 while (!(bool)atomic_get(&flag)) { \ 37 #define WAIT_FOR_FLAG_UNSET(flag) \ argument 38 while ((bool)atomic_get(&flag)) { \
|
/Zephyr-Core-3.5.0/tests/bsim/bluetooth/host/att/eatt_notif/src/ |
D | common.h | 31 #define CREATE_FLAG(flag) static atomic_t flag = (atomic_t)false argument 32 #define SET_FLAG(flag) (void)atomic_set(&flag, (atomic_t)true) argument 33 #define UNSET_FLAG(flag) (void)atomic_set(&flag, (atomic_t)false) argument 34 #define TEST_FLAG(flag) (atomic_get(&flag) == (atomic_t)true) argument 35 #define WAIT_FOR_FLAG(flag) \ argument 36 while (!(bool)atomic_get(&flag)) { \
|