Lines Matching refs:shell_cmd_entry
13 TYPE_SECTION_START_EXTERN(union shell_cmd_entry, shell_dynamic_subcmds);
14 TYPE_SECTION_END_EXTERN(union shell_cmd_entry, shell_dynamic_subcmds);
16 TYPE_SECTION_START_EXTERN(union shell_cmd_entry, shell_subcmds);
17 TYPE_SECTION_END_EXTERN(union shell_cmd_entry, shell_subcmds);
28 static inline const union shell_cmd_entry *shell_root_cmd_get(uint32_t id) in shell_root_cmd_get()
30 const union shell_cmd_entry *cmd; in shell_root_cmd_get()
32 TYPE_SECTION_GET(union shell_cmd_entry, shell_root_cmds, id, &cmd); in shell_root_cmd_get()
40 static inline bool is_dynamic_cmd(const union shell_cmd_entry *entry) in is_dynamic_cmd()
49 static inline bool is_section_cmd(const union shell_cmd_entry *entry) in is_section_cmd()
264 TYPE_SECTION_COUNT(union shell_cmd_entry, shell_root_cmds, &len); in shell_root_cmd_count()
273 const union shell_cmd_entry *cmd; in root_cmd_find()