Searched refs:cmdstr (Results 1 – 5 of 5) sorted by relevance
/external/syslinux/com32/rosh/ |
D | rosh.c | 257 void rosh_help(int type, const char *cmdstr) in rosh_help() argument 261 if ((cmdstr == NULL) || (strcmp(cmdstr, "") == 0)) { in rosh_help() 265 switch (cmdstr[0]) { in rosh_help() 273 printf(rosh_help_str_adv, cmdstr); in rosh_help() 279 if (cmdstr) in rosh_help() 280 printf("%s: %s: unknown command\n", APP_NAME, cmdstr); in rosh_help() 291 void rosh_error(const int ierrno, const char *cmdstr, const char *filestr) in rosh_error() argument 293 printf("--ERROR: %s '%s': ", cmdstr, filestr); in rosh_error() 335 int rosh_argcat(char *cmdstr, const int cmdlen, const int argc, char *argv[], in rosh_argcat() argument 341 cmdstr[0] = '\0'; /* Nullify string just to be sure */ in rosh_argcat() [all …]
|
/external/python/cpython2/Tools/scripts/ |
D | texcheck.py | 31 cmdstr = r""" variable 90 validcmds = set(cmdstr.split())
|
/external/syslinux/com32/menu/ |
D | readconfig.c | 601 static char *is_kernel_type(char *cmdstr, enum kernel_type *type) in is_kernel_type() argument 608 if ((q = looking_at(cmdstr, *p))) { in is_kernel_type() 617 static char *is_message_name(char *cmdstr, enum message_number *msgnr) in is_message_name() argument 623 if ((q = looking_at(cmdstr, messages[i].name))) { in is_message_name() 632 static char *is_fkey(char *cmdstr, int *fkeyno) in is_fkey() argument 637 if ((cmdstr[0] | 0x20) != 'f') in is_fkey() 640 no = strtoul(cmdstr + 1, &q, 10); in is_fkey()
|
/external/syslinux/com32/elflink/ldlinux/ |
D | readconfig.c | 645 static char *is_kernel_type(char *cmdstr, enum kernel_type *type) in is_kernel_type() argument 652 if ((q = looking_at(cmdstr, *p))) { in is_kernel_type() 661 static char *is_message_name(char *cmdstr, enum message_number *msgnr) in is_message_name() argument 667 if ((q = looking_at(cmdstr, messages[i].name))) { in is_message_name() 734 static char *is_fkey(char *cmdstr, int *fkeyno) in is_fkey() argument 739 if ((cmdstr[0] | 0x20) != 'f') in is_fkey() 742 no = strtoul(cmdstr + 1, &q, 10); in is_fkey()
|
/external/python/cpython2/Doc/library/ |
D | easydialogs.rst | 102 *commandlist* is a list of items of the form *cmdstr* or ``(cmdstr, descr)``, 103 where *descr* is as above. The *cmdstr*\ s will appear in a popup menu. When 104 chosen, the text of *cmdstr* will be appended to the command line as is, except
|