/Zephyr-Core-3.7.0/subsys/net/ip/ |
D | promiscuous.c | 26 static atomic_t enabled = ATOMIC_INIT(0); variable 43 atomic_inc(&enabled); in net_promisc_mode_on() 72 prev = atomic_dec(&enabled); in net_promisc_mode_off() 74 atomic_clear(&enabled); in net_promisc_mode_off() 91 if (!atomic_get(&enabled)) { in net_promisc_mode_input()
|
/Zephyr-Core-3.7.0/kernel/ |
D | Kconfig.obj_core | 19 When enabled, this option integrates condition variables into the 26 When enabled, this option integrate kernel events into the object 33 When enabled, this option integrates FIFOs into the object core 40 When enabled, this option integrates LIFOs into the object core 47 When enabled, this option integrates mailboxes into the object core 54 When enabled, this option integrates memory slabs into the object 61 When enabled, this option integrates mutexes into the object core 68 When enabled, this option integrates message queues into the object 75 When enabled, this option integrates semaphores into the object core 82 When enabled, this option integrates pipes into the object core [all …]
|
/Zephyr-Core-3.7.0/tests/subsys/edac/ibecc/ |
D | README.rst | 11 IBECC should be enabled in BIOS. This is usually enabled in the default 12 BIOS configuration. Verify following is enabled:: 20 For injection test Error Injection should be enabled. 31 Additionally Error Injection need to be enabled in the following BIOS menu:: 38 enabled for production. Due to this reason test has production configuration
|
/Zephyr-Core-3.7.0/drivers/watchdog/ |
D | wdt_rpi_pico.c | 28 bool enabled; member 80 data->enabled = true; in wdt_rpi_pico_setup() 102 if (data->enabled == false) { in wdt_rpi_pico_disable() 108 data->enabled = false; in wdt_rpi_pico_disable() 146 if (data->enabled == false) { in wdt_rpi_pico_feed() 181 .enabled = false \
|
D | wdt_nrfx.c | 20 bool enabled; member 57 data->enabled = true; in wdt_nrf_setup() 82 data->enabled = false; in wdt_nrf_disable() 99 if (data->enabled) { in wdt_nrf_install_timeout() 151 if (!data->enabled) { in wdt_nrf_feed()
|
/Zephyr-Core-3.7.0/include/zephyr/drivers/ |
D | mbox.h | 210 mbox_channel_id_t channel_id, bool enabled); 416 mbox_channel_id_t channel_id, bool enabled); 420 bool enabled) in z_impl_mbox_set_enabled() argument 429 return api->set_enabled(dev, channel_id, enabled); in z_impl_mbox_set_enabled() 442 bool enabled) in mbox_set_enabled_dt() argument 444 return mbox_set_enabled(spec->dev, spec->channel_id, enabled); in mbox_set_enabled_dt()
|
/Zephyr-Core-3.7.0/tests/drivers/clock_control/stm32_clock_configuration/stm32_common_core/boards/ |
D | hse_css.overlay | 8 * Warning: This overlay assumes the HSE clock has already been enabled, 13 css-enabled;
|
/Zephyr-Core-3.7.0/tests/drivers/clock_control/stm32_clock_configuration/stm32h7_core/boards/ |
D | hse_css.overlay | 8 * Warning: This overlay assumes the HSE clock has already been enabled, 13 css-enabled;
|
/Zephyr-Core-3.7.0/tests/arch/arc/arc_dsp_sharing/src/ |
D | main.c | 11 #error Rebuild with the ARC_DSP config option enabled 15 #error Rebuild with the ARC_DSP_SHARING config option enabled
|
/Zephyr-Core-3.7.0/tests/kernel/fpu_sharing/generic/src/ |
D | main.c | 13 #error Rebuild with the FPU config option enabled 17 #error Rebuild with the FPU_SHARING config option enabled
|
/Zephyr-Core-3.7.0/samples/drivers/mbox/remote/ |
D | Kconfig | 7 bool "TX enabled" 13 bool "RX enabled"
|
/Zephyr-Core-3.7.0/subsys/bluetooth/audio/ |
D | Kconfig | 15 that have been enabled in the stack, such as Periodic 24 This hidden option is enabled when any of the profiles/services 30 This hidden option is enabled when any of the profiles/services 45 This hidden option is enabled when any of the content control 46 features are enabled.
|
/Zephyr-Core-3.7.0/subsys/zbus/ |
D | zbus.c | 154 if (!obs->data->enabled || observation_mask->enabled) { in _zbus_vded_exec() 182 if (!obs->data->enabled) { in _zbus_vded_exec() 219 if (!obs->data->enabled || observation_mask->enabled) { in chan_update_hop() 505 if (observation_mask->enabled != masked) { in zbus_obs_set_chan_notification_mask() 506 observation_mask->enabled = masked; in zbus_obs_set_chan_notification_mask() 542 *masked = observation_mask->enabled; in zbus_obs_is_chan_notification_masked() 554 int zbus_obs_set_enable(struct zbus_observer *obs, bool enabled) in zbus_obs_set_enable() argument 559 if (obs->data->enabled != enabled) { in zbus_obs_set_enable() 560 obs->data->enabled = enabled; in zbus_obs_set_enable()
|
/Zephyr-Core-3.7.0/samples/sensor/tmp108/ |
D | Kconfig | 27 although this will work with one shot enabled, 28 it requires continuous monitoring mode to be enabled 38 although this will work with one shot enabled, 39 it requires continuous monitoring mode to be enabled
|
/Zephyr-Core-3.7.0/subsys/bluetooth/host/ |
D | CMakeLists.txt | 80 message(WARNING "One of these options are enabled: 87 message(WARNING "CONFIG_BT_FIXED_PASSKEY is enabled 93 message(WARNING "CONFIG_BT_OOB_DATA_FIXED is enabled. 99 message(WARNING "One or both these options are enabled: 106 message(WARNING "CONFIG_BT_CONN_DISABLE_SECURITY is enabled. 123 # and PSA enabled, the libraries must be linked.
|
/Zephyr-Core-3.7.0/drivers/i2s/ |
D | Kconfig.sam_ssc | 26 bool "RF pin enabled" 29 If enabled RF signal is connected to RF pin. It will be configured as 37 bool "RK pin enabled" 40 If enabled RK signal is connected to RK pin. It will be configured as
|
/Zephyr-Core-3.7.0/drivers/serial/ |
D | uart_bt.c | 25 atomic_t enabled; member 42 static void bt_notif_enabled(bool enabled, void *ctx) in bt_notif_enabled() argument 49 (void)atomic_set(&dev_data->bt.enabled, enabled ? 1 : 0); in bt_notif_enabled() 51 LOG_DBG("%s() - %s", __func__, enabled ? "enabled" : "disabled"); in bt_notif_enabled() 134 if (atomic_get(&dev_data->bt.enabled)) { in uart_bt_fifo_fill() 162 if (k_is_in_isr() || !atomic_get(&dev_data->bt.enabled)) { in uart_bt_poll_out() 171 if (atomic_get(&dev_data->bt.enabled)) { in uart_bt_poll_out() 321 .enabled = ATOMIC_INIT(0), \
|
/Zephyr-Core-3.7.0/boards/sparkfun/thing_plus/ |
D | Kconfig | 9 # (board.c), so it is forced here to be enabled always, not only 10 # enabled by default (in defconfig).
|
/Zephyr-Core-3.7.0/drivers/bluetooth/hci/ |
D | Kconfig.nxp | 10 If enabled, the Controller auto sleep mode will be configured and enabled during HCI init. 18 If enabled, the Host will send calibration data to the BLE Controller during HCI init. 23 If enabled, the Host will send calibration data annex 100 to the BLE Controller during HCI
|
/Zephyr-Core-3.7.0/drivers/mbox/ |
D | mbox_handlers.c | 40 bool enabled) in z_vrfy_mbox_set_enabled() argument 44 return z_impl_mbox_set_enabled(dev, channel_id, enabled); in z_vrfy_mbox_set_enabled()
|
/Zephyr-Core-3.7.0/subsys/bluetooth/mesh/ |
D | adv_legacy.c | 41 static bool enabled; variable 107 if (enabled) { in bt_data_send() 151 while (enabled) { in adv_thread() 237 enabled = true; in bt_mesh_adv_enable() 246 enabled = false; in bt_mesh_adv_disable()
|
/Zephyr-Core-3.7.0/samples/drivers/mbox/ |
D | Kconfig | 14 bool "TX enabled" 20 bool "RX enabled"
|
/Zephyr-Core-3.7.0/include/zephyr/zbus/ |
D | zbus.h | 114 bool enabled; member 166 bool enabled; member 249 _mask)) = {.enabled = false}; 281 _mask)) = {.enabled = _masked} 403 .enabled = _enable, \ 444 .enabled = _enable, \ 483 .enabled = _enable, \ 785 int zbus_obs_set_enable(struct zbus_observer *obs, bool enabled); 802 *enable = obs->data->enabled; in zbus_obs_is_enabled()
|
/Zephyr-Core-3.7.0/subsys/logging/ |
D | Kconfig.processing | 13 If enabled, printk messages are redirected to the logging subsystem. 22 If enabled, then if there is no space to log a new message, the 29 When enabled logger will block (if in the thread context) when 40 to the logger deadlock if logging is enabled in threads used for 50 Set 0 to disable the feature. If LOG_PROCESS_THREAD is enabled then 58 When enabled thread is created by the logger subsystem. Thread is 155 When enabled, shorter timestamp is used and trace message is 166 When enabled, real time clock is used for timestamping. 173 If enabled, logging may take more code size to get faster logging.
|
/Zephyr-Core-3.7.0/drivers/kscan/ |
D | kscan_input.c | 19 bool enabled; member 71 data->enabled = true; in kscan_input_enable_callback() 80 data->enabled = false; in kscan_input_disable_callback()
|