Home
last modified time | relevance | path

Searched refs:cfg_flags (Results 1 – 13 of 13) sorted by relevance

/Zephyr-latest/tests/drivers/gpio/gpio_api_1pin/src/
Dtest_pin_interrupt.c50 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/
Dmain.c97 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/
Dshell_dummy.c106 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()
Dshell_adsp_memory_window.c128 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()
Dshell_rtt.c191 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()
Dshell_rpmsg.c193 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()
Dshell_websocket.c392 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()
Dshell_uart.c541 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()
Dshell_mqtt.c826 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()
Dshell_telnet.c791 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/
Dshell.c1206 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/
Dnrf_etr.c772 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/
Dshell.h1006 struct shell_backend_config_flags cfg_flags,