/Zephyr-latest/tests/drivers/gpio/gpio_api_1pin/src/ |
D | test_pin_interrupt.c | 50 void test_gpio_pin_interrupt_edge(unsigned int cfg_flags, in test_gpio_pin_interrupt_edge() argument 71 if ((cfg_flags & GPIO_ACTIVE_LOW) != 0) { in test_gpio_pin_interrupt_edge() 77 cfg_flags); in test_gpio_pin_interrupt_edge() 123 void test_gpio_pin_interrupt_level(unsigned int cfg_flags, in test_gpio_pin_interrupt_level() argument 147 if ((cfg_flags & GPIO_ACTIVE_LOW) != 0) { in test_gpio_pin_interrupt_level() 156 cfg_flags); in test_gpio_pin_interrupt_level()
|
/Zephyr-latest/tests/subsys/shell/shell_backend_uart/src/ |
D | main.c | 97 static const struct shell_backend_config_flags cfg_flags = {0}; in enable_shell_euart0() local 103 return shell_init(sh, euart0, cfg_flags, false, 0); in enable_shell_euart0()
|
/Zephyr-latest/subsys/shell/backends/ |
D | shell_dummy.c | 106 static const struct shell_backend_config_flags cfg_flags = in enable_shell_dummy() local 109 shell_init(&shell_dummy, NULL, cfg_flags, log_backend, level); in enable_shell_dummy()
|
D | shell_adsp_memory_window.c | 128 static const struct shell_backend_config_flags cfg_flags = in enable_shell_adsp_memory_window() local 131 shell_init(&shell_adsp_memory_window, NULL, cfg_flags, log_backend, level); in enable_shell_adsp_memory_window()
|
D | shell_rtt.c | 191 static const struct shell_backend_config_flags cfg_flags = in enable_shell_rtt() local 194 shell_init(&shell_rtt, NULL, cfg_flags, log_backend, level); in enable_shell_rtt()
|
D | shell_rpmsg.c | 193 static const struct shell_backend_config_flags cfg_flags = in shell_backend_rpmsg_init_transport() local 196 return shell_init(&shell_rpmsg, rpmsg_dev, cfg_flags, log_backend, level); in shell_backend_rpmsg_init_transport()
|
D | shell_websocket.c | 392 static const struct shell_backend_config_flags cfg_flags = in shell_websocket_enable() local 396 ret = shell_init(sh, NULL, cfg_flags, log_backend, level); in shell_websocket_enable()
|
D | shell_uart.c | 541 static const struct shell_backend_config_flags cfg_flags = in enable_shell_uart() local 552 shell_init(&shell_uart, dev, cfg_flags, log_backend, level); in enable_shell_uart()
|
D | shell_mqtt.c | 826 static const struct shell_backend_config_flags cfg_flags = { in enable_shell_mqtt() local 835 return shell_init(&shell_mqtt, NULL, cfg_flags, log_backend, level); in enable_shell_mqtt()
|
D | shell_telnet.c | 791 static const struct shell_backend_config_flags cfg_flags = in enable_shell_telnet() local 794 return shell_init(&shell_telnet, NULL, cfg_flags, log_backend, level); in enable_shell_telnet()
|
/Zephyr-latest/subsys/shell/ |
D | shell.c | 1206 struct shell_backend_config_flags cfg_flags) in instance_init() argument 1249 cfg_flags.obscure &= IS_ENABLED(CONFIG_SHELL_START_OBSCURED); in instance_init() 1250 cfg_flags.use_colors &= IS_ENABLED(CONFIG_SHELL_VT100_COLORS); in instance_init() 1251 cfg_flags.use_vt100 &= IS_ENABLED(CONFIG_SHELL_VT100_COMMANDS); in instance_init() 1252 cfg_flags.echo &= IS_ENABLED(CONFIG_SHELL_ECHO_STATUS); in instance_init() 1253 cfg_flags.mode_delete &= IS_ENABLED(CONFIG_SHELL_BACKSPACE_MODE_DELETE); in instance_init() 1254 sh->ctx->cfg.flags = cfg_flags; in instance_init() 1378 struct shell_backend_config_flags cfg_flags, in shell_init() argument 1388 int err = instance_init(sh, transport_config, cfg_flags); in shell_init()
|
/Zephyr-latest/drivers/misc/coresight/ |
D | nrf_etr.c | 772 static const struct shell_backend_config_flags cfg_flags = in etr_process_init() local 775 shell_init(&etr_shell, NULL, cfg_flags, true, level); in etr_process_init()
|
/Zephyr-latest/include/zephyr/shell/ |
D | shell.h | 1006 struct shell_backend_config_flags cfg_flags,
|