Lines Matching refs:shell_static_entry
23 static const TYPE_SECTION_ITERABLE(struct shell_static_entry, \
270 const struct shell_static_entry *root_cmd_find(const char *syntax) in root_cmd_find()
285 const struct shell_static_entry *z_shell_cmd_get( in z_shell_cmd_get()
286 const struct shell_static_entry *parent, in z_shell_cmd_get()
288 struct shell_static_entry *dloc) in z_shell_cmd_get()
290 const struct shell_static_entry *res = NULL; in z_shell_cmd_get()
306 const struct shell_static_entry *entry_list; in z_shell_cmd_get()
311 (const struct shell_static_entry *)parent->subcmd; in z_shell_cmd_get()
337 const struct shell_static_entry *z_shell_find_cmd( in z_shell_find_cmd()
338 const struct shell_static_entry *parent, in z_shell_find_cmd()
340 struct shell_static_entry *dloc) in z_shell_find_cmd()
342 const struct shell_static_entry *entry; in z_shell_find_cmd()
343 struct shell_static_entry parent_cpy; in z_shell_find_cmd()
353 memcpy(&parent_cpy, parent, sizeof(struct shell_static_entry)); in z_shell_find_cmd()
366 const struct shell_static_entry *z_shell_get_last_command( in z_shell_get_last_command()
367 const struct shell_static_entry *entry, in z_shell_get_last_command()
371 struct shell_static_entry *dloc, in z_shell_get_last_command()
374 const struct shell_static_entry *prev_entry = NULL; in z_shell_get_last_command()
408 const struct shell_static_entry *entry; in shell_set_root_cmd()