Home
last modified time | relevance | path

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

/components/finsh/
A Dmsh.h19 int msh_exec_module(const char *cmd_line, int size);
20 int msh_exec_script(const char *cmd_line, int size);
A Dmsh.c253 int msh_exec_module(const char *cmd_line, int size) in msh_exec_module() argument
263 while ((cmd_line[cmd_length] != ' ' && cmd_line[cmd_length] != '\t') && cmd_length < size) in msh_exec_module()
275 rt_memcpy(pg_name, cmd_line, cmd_length); in msh_exec_module()
286 rt_snprintf(pg_name, length - 1, "/bin/%.*s", cmd_length, cmd_line); in msh_exec_module()
301 rt_snprintf(pg_name, length - 1, "/bin/%.*s.mo", cmd_length, cmd_line); in msh_exec_module()
310 dlmodule_exec(pg_name, cmd_line, size); in msh_exec_module()
A Dmsh_file.c69 int msh_exec_script(const char *cmd_line, int size) in msh_exec_script() argument
79 while ((cmd_line[cmd_length] != ' ' && cmd_line[cmd_length] != '\t') && cmd_length < size) in msh_exec_script()
90 rt_memcpy(pg_name, cmd_line, cmd_length); in msh_exec_script()
101 rt_snprintf(pg_name, length - 1, "/bin/%.*s", cmd_length, cmd_line); in msh_exec_script()
/components/libc/posix/libdl/
A Ddlmodule.c152 if (module == RT_NULL || module->cmd_line == RT_NULL) in _dlmodule_thread_entry()
156 if (module->cmd_line) in _dlmodule_thread_entry()
159 argc = _rt_module_split_arg((char *)module->cmd_line, rt_strlen(module->cmd_line), argv); in _dlmodule_thread_entry()
168 module->cmd_line); in _dlmodule_thread_entry()
388 if (module->cmd_line) rt_free(module->cmd_line); in dlmodule_destroy()
578 module->cmd_line = rt_strdup(cmd); in dlmodule_exec()
755 module->cmd_line = rt_strdup(cmd); in dlmodule_exec_custom()
A Ddlmodule.h47 char *cmd_line; /* command line */ member

Completed in 8 milliseconds