/Zephyr-latest/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 131 #define DEBUG_RADIO_PREPARE_A(flag) \ argument 134 #define DEBUG_RADIO_START_A(flag) \ argument [all …]
|
/Zephyr-latest/subsys/bluetooth/controller/ll_sw/nordic/hal/nrf5/ |
D | debug.h | 109 #define DEBUG_CPU_SLEEP(flag) \ argument 120 #define DEBUG_TICKER_ISR(flag) \ argument 131 #define DEBUG_TICKER_TASK(flag) \ argument 142 #define DEBUG_TICKER_JOB(flag) \ argument 153 #define DEBUG_RADIO_ISR(flag) \ argument 164 #define DEBUG_RADIO_XTAL(flag) \ argument 175 #define DEBUG_RADIO_ACTIVE(flag) \ argument 186 #define DEBUG_RADIO_CLOSE(flag) \ argument 196 #define DEBUG_RADIO_PREPARE_A(flag) \ argument 207 #define DEBUG_RADIO_START_A(flag) \ argument [all …]
|
/Zephyr-latest/tests/bsim/babblekit/include/babblekit/ |
D | flags.h | 19 #define DECLARE_FLAG(flag) extern atomic_t flag argument 26 #define DEFINE_FLAG(flag) atomic_t flag = (atomic_t) false argument 28 #define SET_FLAG(flag) (void)atomic_set(&flag, (atomic_t) true) argument 29 #define UNSET_FLAG(flag) (void)atomic_set(&flag, (atomic_t) false) argument 31 #define IS_FLAG_SET(flag) (atomic_get(&flag) != false) argument 40 #define WAIT_FOR_FLAG(flag) \ argument 46 #define WAIT_FOR_FLAG_UNSET(flag) \ argument 52 #define TAKE_FLAG(flag) \ argument
|
/Zephyr-latest/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 23 #define WAIT_FOR_FLAG_UNSET(flag) \ argument 27 #define TAKE_FLAG(flag) \ argument 31 #define GET_FLAG(flag) (bool)atomic_get(&flag) argument
|
/Zephyr-latest/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 37 #define WAIT_FOR_FLAG_UNSET(flag) \ argument 41 #define TAKE_FLAG(flag) \ argument 45 #define GET_FLAG(flag) \ argument
|
/Zephyr-latest/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 35 #define WAIT_FOR_FLAG_UNSET(flag) \ argument 39 #define TAKE_FLAG(flag) \ argument 43 #define GET_FLAG(flag) (bool)atomic_get(&flag) argument
|
/Zephyr-latest/tests/bsim/bluetooth/host/adv/extended/src/ |
D | common.h | 20 #define CREATE_FLAG(flag) static atomic_t flag = (atomic_t)false argument 21 #define SET_FLAG(flag) (void)atomic_set(&flag, (atomic_t) true) argument 22 #define TEST_FLAG(flag) (atomic_get(&flag) == (atomic_t)true) argument 23 #define UNSET_FLAG(flag) (void)atomic_set(&flag, (atomic_t) false) argument 24 #define WAIT_FOR_FLAG(flag) \ argument 28 #define WAIT_FOR_FLAG_UNSET(flag) \ argument 32 #define TAKE_FLAG(flag) \ argument
|
/Zephyr-latest/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 26 #define WAIT_FOR_FLAG_UNSET(flag) \ argument 30 #define TAKE_FLAG(flag) \ argument
|
/Zephyr-latest/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 37 #define WAIT_FOR_FLAG_UNSET(flag) \ argument 41 #define TAKE_FLAG(flag) \ argument
|
/Zephyr-latest/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 37 #define WAIT_FOR_FLAG_UNSET(flag) \ argument 41 #define TAKE_FLAG(flag) \ argument
|
/Zephyr-latest/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 41 #define WAIT_FOR_FLAG_UNSET(flag) \ argument 45 #define TAKE_FLAG(flag) \ argument 49 #define GET_FLAG(flag) \ argument
|
/Zephyr-latest/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 25 #define WAIT_FOR_FLAG_UNSET(flag) \ argument
|
/Zephyr-latest/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 35 #define WAIT_FOR_FLAG_UNSET(flag) \ argument 39 #define TAKE_FLAG(flag) \ argument
|
/Zephyr-latest/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 25 #define WAIT_FOR_FLAG_UNSET(flag) \ argument 29 #define TAKE_FLAG(flag) \ argument
|
/Zephyr-latest/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 31 #define WAIT_FOR_FLAG_UNSET(flag) \ argument
|
/Zephyr-latest/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 22 #define WAIT_FOR_FLAG_UNSET(flag) \ argument
|
/Zephyr-latest/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 22 #define WAIT_FOR_FLAG_UNSET(flag) \ argument
|
/Zephyr-latest/tests/bsim/bluetooth/host/att/retry_on_sec_err/ |
D | test_utils.h | 8 #define DECLARE_FLAG(flag) extern atomic_t flag argument 9 #define DEFINE_FLAG(flag) atomic_t flag = (atomic_t) false argument 10 #define SET_FLAG(flag) (void)atomic_set(&flag, (atomic_t) true) argument 11 #define UNSET_FLAG(flag) (void)atomic_set(&flag, (atomic_t) false) argument 12 #define WAIT_FOR_FLAG(flag) \ argument
|
/Zephyr-latest/tests/bsim/bluetooth/host/att/pipeline/common/ |
D | 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 TEST_FLAG(flag) (bool)atomic_get(&flag) 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 29 #define WAIT_FOR_FLAG_UNSET(flag) \ argument 33 #define TAKE_FLAG(flag) \ argument
|
/Zephyr-latest/tests/bsim/bluetooth/host/l2cap/many_conns/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 33 #define WAIT_FOR_FLAG_UNSET(flag) \ argument
|
/Zephyr-latest/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 33 #define WAIT_FOR_FLAG_UNSET(flag) \ argument
|
/Zephyr-latest/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 33 #define WAIT_FOR_FLAG_UNSET(flag) \ argument
|
/Zephyr-latest/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 33 #define WAIT_FOR_FLAG_UNSET(flag) \ argument
|
/Zephyr-latest/tests/bsim/bluetooth/host/misc/hfc/src/ |
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 29 #define WAIT_FOR_FLAG_UNSET(flag) \ argument 33 #define TAKE_FLAG(flag) \ argument
|
/Zephyr-latest/tests/bsim/bluetooth/host/misc/unregister_conn_cb/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 37 #define WAIT_FOR_FLAG_UNSET(flag) \ argument
|