/Zephyr-Core-3.7.0/include/zephyr/shell/ |
D | shell.h | 90 * 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/ |
D | shell.c | 21 "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/ |
D | wdt_shell.c | 12 "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/ |
D | codec_shell.c | 12 "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/ |
D | sensor_shell.c | 25 "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/ |
D | simple.proto | 7 syntax = "proto3";
|
D | complex.proto | 7 syntax = "proto3";
|
/Zephyr-Core-3.7.0/samples/modules/nanopb/src/ |
D | simple.proto | 4 syntax = "proto3";
|
/Zephyr-Core-3.7.0/scripts/pylib/twister/twisterlib/ |
D | mixins.py | 1 # vim: set syntax=python ts=4 :
|
D | error.py | 1 # vim: set syntax=python ts=4 :
|
/Zephyr-Core-3.7.0/tests/modules/nanopb/proto/sub/ |
D | nested.proto | 7 syntax = "proto3";
|
/Zephyr-Core-3.7.0/subsys/shell/ |
D | shell_help.c | 162 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/ |
D | README.rst | 43 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/ |
D | testcase.yaml | 12 # linker_zephyr_pre0.cmd:140: syntax error (??)
|
/Zephyr-Core-3.7.0/doc/build/dts/ |
D | intro.rst | 18 intro-syntax-structure.rst
|
D | bindings.rst | 27 bindings-syntax.rst
|
/Zephyr-Core-3.7.0/doc/safety/ |
D | safety_requirements.rst | 33 (See: `Syntax`_) 112 Syntax subsection 115 * Use of a recognized Requirements Syntax is recommended.
|
/Zephyr-Core-3.7.0/dts/bindings/dma/ |
D | st,stm32-dmamux.yaml | 75 # Parameter syntax of stm32 follows the dma client dts syntax
|
D | st,stm32-bdma.yaml | 91 # Parameter syntax of stm32 follows the dma client dts syntax
|
D | st,stm32-dma-v2bis.yaml | 79 # Parameter syntax of stm32 follows the dma client dts syntax
|
D | arm,dma-pl330.yaml | 39 # Parameter syntax
|
D | st,stm32-dma-v1.yaml | 81 # Parameter syntax of stm32 follows the dma client dts syntax
|
/Zephyr-Core-3.7.0/samples/drivers/lcd_cyclonev_socdk/src/ |
D | commands.h | 27 /* Syntax prefix LD_CUSTOM_CHAR [addr] [d0 …d7] 49 /* Syntax prefix CHGE_RS232_BAUD [param]
|
/Zephyr-Core-3.7.0/samples/net/syslog_net/ |
D | Kconfig | 24 Following syntax is supported:
|
/Zephyr-Core-3.7.0/samples/subsys/shell/shell_module/src/ |
D | dynamic_cmd.c | 147 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()
|