Searched refs:vstrchr (Results 1 – 6 of 6) sorted by relevance
/external/mksh/src/ |
D | exec.c | 696 if (Flag(FRESTRICTED) && vstrchr(cp, '/')) { in comexec() 1111 if (vstrchr(name, '/')) { in findcom() 1247 if (vstrchr(name, '/')) { in search_path()
|
D | funcs.c | 1683 while (*cp && vstrchr("augo", *cp)) in c_umask() 1701 if (!vstrchr("=+-", op = *cp)) in c_umask() 1705 while (*cp && vstrchr("rwxugoXs", *cp)) in c_umask() 1742 } else if (!vstrchr("=+-", *cp)) in c_umask() 2504 optc = vstrchr(id, '[') ? 0 : 1; in c_unset()
|
D | misc.c | 731 } else if ((c & 0x80) && vstrchr("*+?@! ", c & 0x7f)) { in has_globbing() 950 if ((*p & 0x80) && vstrchr("*+?@! ", *p & 0x7f)) in pat_scan()
|
D | sh.h | 522 #define vstrchr(s,c) (cstrchr((s), (c)) != NULL) macro 527 #define vstrchr(s,c) (strchr((s), (c)) != NULL) macro
|
D | eval.c | 1295 if (vstrchr(sp, '[')) in varsub() 1669 !vstrchr("*+?@! ", *s & 0x7f)) in debunk()
|
D | edit.c | 568 iscmd = p < 0 || vstrchr(";|&()`", buf[p]); in x_locate_word() 640 if (*toglob == '~' && !vstrchr(toglob, '/')) { in x_cf_glob() 835 if (vstrchr("\"#$&'()*:;<=>?[\\`{|}", s[add]) || in x_escape() 836 vstrchr(ifs, s[add])) { in x_escape()
|