Home
last modified time | relevance | path

Searched full:syntax (Results 1 – 25 of 152) sorted by relevance

1234567

/Zephyr-Core-3.7.0/include/zephyr/shell/
Dshell.h90 * returned commands: entry->syntax are sorted in alphabetical order.
92 * write to entry->syntax NULL value. This will indicate to the shell
207 const char *syntax; /*!< Command syntax strings. */ member
219 * @note Each root command shall have unique syntax. If a command will be called
223 * @param[in] syntax Command syntax (for example: history).
230 #define SHELL_CMD_ARG_REGISTER(syntax, subcmd, help, handler, \ argument
232 static const struct shell_static_entry UTIL_CAT(_shell_, syntax) = \
233 SHELL_CMD_ARG(syntax, subcmd, help, handler, mandatory, optional); \
235 UTIL_CAT(shell_cmd_, syntax), shell_root_cmds, \
236 UTIL_CAT(shell_cmd_, syntax) \
[all …]
/Zephyr-Core-3.7.0/subsys/llext/
Dshell.c21 "Load an elf file encoded in hex directly from the shell input. Syntax:\n" \
25 "Unload an extension by name. Syntax:\n" \
29 "List extension symbols. Syntax:\n" \
33 "Call extension function with prototype void fn(void). Syntax:\n" \
81 entry->syntax = cmd.ext ? cmd.ext->name : NULL; in llext_name_get()
93 if (entry->syntax) { in llext_name_arg_get()
/Zephyr-Core-3.7.0/drivers/watchdog/
Dwdt_shell.c12 "Set up watchdog instance. Syntax:\n" \
16 "Disable watchdog instance. Syntax:\n" \
20 "Install a new timeout. Syntax:\n" \
24 "Feed specified watchdog timeout. Syntax:\n" \
168 entry->syntax = (dev != NULL) ? dev->name : NULL; in device_name_get()
/Zephyr-Core-3.7.0/drivers/audio/
Dcodec_shell.c12 "Start output audio playback. Syntax:\n" \
16 "Stop output audio playback. Syntax:\n" \
20 "Set a codec property. Syntax:\n" \
24 "Apply any cached properties. Syntax:\n" \
176 entry->syntax = (dev != NULL) ? dev->name : NULL; in device_name_get()
/Zephyr-Core-3.7.0/drivers/sensor/
Dsensor_shell.c25 "when no channels are provided. Syntax:\n" \
30 "are provided. Syntax:\n" \
34 "Get the sensor's channel attribute. Syntax:\n" \
741 entry->syntax = NULL; in channel_name_get()
755 entry->syntax = sensor_channel_name[i]; in channel_name_get()
767 entry->syntax = NULL; in attribute_name_get()
775 entry->syntax = sensor_attribute_name[i]; in attribute_name_get()
788 entry->syntax = NULL; in trigger_opt_get_for_stream()
795 entry->syntax = "incl"; in trigger_opt_get_for_stream()
798 entry->syntax = "drop"; in trigger_opt_get_for_stream()
[all …]
/Zephyr-Core-3.7.0/tests/modules/nanopb/proto/
Dsimple.proto7 syntax = "proto3";
Dcomplex.proto7 syntax = "proto3";
/Zephyr-Core-3.7.0/samples/modules/nanopb/src/
Dsimple.proto4 syntax = "proto3";
/Zephyr-Core-3.7.0/scripts/pylib/twister/twisterlib/
Dmixins.py1 # vim: set syntax=python ts=4 :
Derror.py1 # vim: set syntax=python ts=4 :
/Zephyr-Core-3.7.0/tests/modules/nanopb/proto/sub/
Dnested.proto7 syntax = "proto3";
/Zephyr-Core-3.7.0/subsys/shell/
Dshell_help.c162 longest = Z_MAX(longest, z_shell_strlen(entry->syntax)); in z_shell_help_subcmd_print()
178 help_item_print(sh, entry->syntax, longest, entry->help); in z_shell_help_subcmd_print()
188 field_width = z_shell_strlen(cmd->syntax) + z_shell_strlen(cmd_sep); in z_shell_help_cmd_print()
190 z_shell_fprintf(sh, SHELL_NORMAL, "%s%s", cmd->syntax, cmd_sep); in z_shell_help_cmd_print()
/Zephyr-Core-3.7.0/samples/subsys/llext/shell_loader/
DREADME.rst43 Syntax:
45 unload :Unload an extension by name. Syntax:
47 list_symbols :List extension symbols. Syntax:
49 call_fn :Call extension function with prototype void fn(void). Syntax:
/Zephyr-Core-3.7.0/tests/posix/shm/
Dtestcase.yaml12 # linker_zephyr_pre0.cmd:140: syntax error (??)
/Zephyr-Core-3.7.0/doc/build/dts/
Dintro.rst18 intro-syntax-structure.rst
Dbindings.rst27 bindings-syntax.rst
/Zephyr-Core-3.7.0/doc/safety/
Dsafety_requirements.rst33 (See: `Syntax`_)
112 Syntax subsection
115 * Use of a recognized Requirements Syntax is recommended.
/Zephyr-Core-3.7.0/dts/bindings/dma/
Dst,stm32-dmamux.yaml75 # Parameter syntax of stm32 follows the dma client dts syntax
Dst,stm32-bdma.yaml91 # Parameter syntax of stm32 follows the dma client dts syntax
Dst,stm32-dma-v2bis.yaml79 # Parameter syntax of stm32 follows the dma client dts syntax
Darm,dma-pl330.yaml39 # Parameter syntax
Dst,stm32-dma-v1.yaml81 # Parameter syntax of stm32 follows the dma client dts syntax
/Zephyr-Core-3.7.0/samples/drivers/lcd_cyclonev_socdk/src/
Dcommands.h27 /* Syntax prefix LD_CUSTOM_CHAR [addr] [d0 …d7]
49 /* Syntax prefix CHGE_RS232_BAUD [param]
/Zephyr-Core-3.7.0/samples/net/syslog_net/
DKconfig24 Following syntax is supported:
/Zephyr-Core-3.7.0/samples/subsys/shell/shell_module/src/
Ddynamic_cmd.c147 entry->syntax = dynamic_cmd_buffer[idx]; in dynamic_cmd_get()
152 /* if there are no more dynamic commands available syntax in dynamic_cmd_get()
155 entry->syntax = NULL; in dynamic_cmd_get()

1234567