Searched refs:dloc (Results 1 – 5 of 5) sorted by relevance
/Zephyr-latest/subsys/shell/ |
D | shell_utils.h | 54 struct shell_static_entry *dloc); 59 struct shell_static_entry *dloc); 78 struct shell_static_entry *dloc,
|
D | shell_utils.c | 288 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()
|
D | shell_help.c | 157 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()
|
D | shell_wildcard.c | 75 struct shell_static_entry dloc; in commands_expand() local 79 while ((entry = z_shell_cmd_get(cmd, cmd_idx++, &dloc)) != NULL) { in commands_expand()
|
D | shell.c | 331 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()
|