Home
last modified time | relevance | path

Searched refs:dloc (Results 1 – 5 of 5) sorted by relevance

/Zephyr-latest/subsys/shell/
Dshell_utils.h54 struct shell_static_entry *dloc);
59 struct shell_static_entry *dloc);
78 struct shell_static_entry *dloc,
Dshell_utils.c288 struct shell_static_entry *dloc) in z_shell_cmd_get() argument
297 __ASSERT_NO_MSG(dloc != NULL); in z_shell_cmd_get()
301 parent->subcmd->dynamic_get(idx, dloc); in z_shell_cmd_get()
302 if (dloc->syntax != NULL) { in z_shell_cmd_get()
303 res = dloc; in z_shell_cmd_get()
340 struct shell_static_entry *dloc) in z_shell_find_cmd() argument
357 while ((entry = z_shell_cmd_get(parent, idx++, dloc)) != NULL) { in z_shell_find_cmd()
371 struct shell_static_entry *dloc, in z_shell_get_last_command() argument
389 entry = z_shell_find_cmd(entry, argv[*match_arg], dloc); in z_shell_get_last_command()
397 if (only_static && (entry == dloc)) { in z_shell_get_last_command()
Dshell_help.c157 struct shell_static_entry dloc; in z_shell_help_subcmd_print() local
162 while ((entry = z_shell_cmd_get(parent, idx++, &dloc)) != NULL) { in z_shell_help_subcmd_print()
178 while ((entry = z_shell_cmd_get(parent, idx++, &dloc)) != NULL) { in z_shell_help_subcmd_print()
Dshell_wildcard.c75 struct shell_static_entry dloc; in commands_expand() local
79 while ((entry = z_shell_cmd_get(cmd, cmd_idx++, &dloc)) != NULL) { in commands_expand()
Dshell.c331 struct shell_static_entry dloc; in find_completion_candidates() local
339 while ((candidate = z_shell_cmd_get(cmd, idx, &dloc)) != NULL) { in find_completion_candidates()
629 struct shell_static_entry dloc; /* Memory for dynamic commands. */ in execute() local
728 entry = z_shell_find_cmd(parent, argvp[0], &dloc); in execute()