| /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)  argument109 #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) \  argument120 #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  argument26 #define DEFINE_FLAG(flag)  atomic_t flag = (atomic_t) false  argument
 32 #define DEFINE_FLAG_STATIC(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
 37 #define IS_FLAG_SET(flag) (atomic_get(&flag) != false)  argument
 46 #define WAIT_FOR_FLAG(flag)                                                                        \  argument
 52 #define WAIT_FOR_FLAG_UNSET(flag)                                                                  \  argument
 58 #define TAKE_FLAG(flag)                                                                            \  argument
 
 | 
| /Zephyr-latest/tests/bsim/bluetooth/audio/src/ | 
| D | common.h | 81 #define CREATE_FLAG(flag) static atomic_t flag = (atomic_t)false  argument82 #define SET_FLAG(flag) (void)atomic_set(&flag, (atomic_t)true)  argument
 83 #define UNSET_FLAG(flag) (void)atomic_clear(&flag)  argument
 84 #define TEST_FLAG(flag) (atomic_get(&flag) == (atomic_t)true)  argument
 85 #define WAIT_FOR_FLAG(flag)                                                                        \  argument
 89 #define WAIT_FOR_AND_CLEAR_FLAG(flag)                                                              \  argument
 93 #define WAIT_FOR_UNSET_FLAG(flag) \  argument
 
 | 
| /Zephyr-latest/lib/libc/common/source/thrd/ | 
| D | once.c | 13 void call_once(once_flag *flag, void (*func)(void))  in call_once()
 | 
| /Zephyr-latest/scripts/tests/twister_blackbox/ | 
| D | test_disable.py | 76 …def test_disable_suite_name_check(self, capfd, out_path, test_path, test_platforms, flag, expected…  argument110 …def test_disable_warnings_as_errors(self, capfd, out_path, test_path, test_platforms, flag, expect…  argument
 
 | 
| D | test_tooling.py | 106     def test_ninja(self, capfd, out_path, test_path, test_platforms, flag):  argument
 | 
| D | test_printouts.py | 412     def test_broken_parameter(self, capfd, flag):  argument433     def test_help(self, capfd, flag):  argument
 
 | 
| D | test_output.py | 52     def test_detailed_test_id(self, out_path, flag, expect_paths):  argument
 | 
| /Zephyr-latest/tests/lib/c_lib/thrd/src/ | 
| D | once.c | 15 static once_flag flag = ONCE_FLAG_INIT;  variable
 | 
| /Zephyr-latest/drivers/gpio/ | 
| D | gpio_renesas_rz.h | 49 #define GPIO_RZ_PIN_CONFIGURE_GET_FILTER(flag) (((flags >> RZG3S_GPIO_FILTER_SHIFT) & 0x1F) << 19U)  argument50 #define GPIO_RZ_PIN_CONFIGURE_GET(flag)        (((flag >> RZG3S_GPIO_IOLH_SHIFT) & 0x3) << 10U)  argument
 55 #define GPIO_RZ_PIN_SPECIAL_FLAG_GET(flag)       GPIO_RZ_PIN_CONFIGURE_GET_FILTER(flag)  argument
 97 #define GPIO_RZ_PIN_CONFIGURE_GET(flag) (((flag >> RZTN_GPIO_DRCTL_SHIFT) & 0x33) << 8U)  argument
 102 #define GPIO_RZ_PIN_SPECIAL_FLAG_GET(flag)       IOPORT_CFG_REGION_NSAFETY  argument
 
 | 
| /Zephyr-latest/tests/bsim/bluetooth/host/gatt/notify_multiple/src/ | 
| D | common.h | 12 #define FORCE_FLAG(flag, val) (void)atomic_set(&flag, (atomic_t)val)  argument
 | 
| /Zephyr-latest/lib/libc/common/include/machine/ | 
| D | _threads.h | 21 	char flag;  member
 | 
| /Zephyr-latest/subsys/bluetooth/mesh/ | 
| D | settings.c | 138 void bt_mesh_settings_store_schedule(enum bt_mesh_settings_flag flag)  in bt_mesh_settings_store_schedule()179 void bt_mesh_settings_store_cancel(enum bt_mesh_settings_flag flag)  in bt_mesh_settings_store_cancel()
 
 | 
| /Zephyr-latest/tests/arch/arm/arm_no_multithreading/src/ | 
| D | main.c | 89 	int i, flag = test_flag;  in test_main()  local
 | 
| /Zephyr-latest/samples/modules/thrift/hello/server/src/ | 
| D | main.cpp | 31 #define IS_ENABLED(flag) flag  argument
 | 
| /Zephyr-latest/samples/modules/thrift/hello/client/src/ | 
| D | main.cpp | 29 #define IS_ENABLED(flag) flag  argument
 | 
| /Zephyr-latest/tests/kernel/smp_boot_delay/src/ | 
| D | main.c | 80 	volatile bool *flag = (void *)arg;  in custom_init_fn()  local
 | 
| /Zephyr-latest/drivers/dma/ | 
| D | dma_mcux_edma.c | 137 #define EDMA_TCD_SADDR(tcd, flag)     ((tcd)->SADDR)  argument138 #define EDMA_TCD_DADDR(tcd, flag)     ((tcd)->DADDR)  argument
 139 #define EDMA_TCD_BITER(tcd, flag)     ((tcd)->BITER)  argument
 140 #define EDMA_TCD_CITER(tcd, flag)     ((tcd)->CITER)  argument
 141 #define EDMA_TCD_CSR(tcd, flag)       ((tcd)->CSR)  argument
 142 #define EDMA_TCD_DLAST_SGA(tcd, flag) ((tcd)->DLAST_SGA)  argument
 236 	uint32_t flag = EDMA_GetChannelStatusFlags(DEV_BASE(dev), hw_channel);  in dma_mcux_edma_irq_handler()  local
 260 	uint32_t flag = 0;  in dma_mcux_edma_error_irq_handler()  local
 
 | 
| /Zephyr-latest/subsys/mctp/ | 
| D | mctp_uart.c | 32 	uint8_t flag;  member40 	uint8_t flag;  member
 
 | 
| /Zephyr-latest/include/zephyr/net/ | 
| D | conn_mgr_connectivity_impl.h | 303 					     enum conn_mgr_if_flag flag, bool value)  in conn_mgr_binding_set_flag()327 					     enum conn_mgr_if_flag flag)  in conn_mgr_binding_get_flag()
 
 | 
| /Zephyr-latest/tests/kernel/mutex/sys_mutex/src/ | 
| D | thread_competition.c | 26 static uint32_t flag[3];  variable
 | 
| /Zephyr-latest/tests/kernel/threads/no-multithreading/src/ | 
| D | main.c | 35 	bool *flag = k_timer_user_data_get(timer);  in timeout_handler()  local
 | 
| /Zephyr-latest/lib/posix/options/getopt/ | 
| D | getopt.h | 50 	int *flag;  member
 | 
| /Zephyr-latest/tests/subsys/dfu/mcuboot/src/ | 
| D | main.c | 106 	uint8_t flag[BOOT_MAX_ALIGN];  in ZTEST()  local
 |