Home
last modified time | relevance | path

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

/external/mksh/src/
Dexec.c558 if (!tp->u.fpath) { in comexec()
573 if (include(tp->u.fpath, 0, NULL, 0) < 0) { in comexec()
577 cp, tp->u.fpath, strerror(rv)); in comexec()
585 cp, tp->u.fpath); in comexec()
920 char *fpath; /* for function autoloading */ in findcom() local
938 if ((fpath = str_val(global("FPATH"))) == null) { in findcom()
939 tp->u.fpath = NULL; in findcom()
942 tp->u.fpath = search(name, fpath, R_OK, in findcom()
982 (fpath = str_val(global("FPATH"))) != null && in findcom()
983 (npath.ro = search(name, fpath, R_OK, in findcom()
[all …]
Dsh.h904 const char *fpath; /* temporary path to undef function */ member
Dedit.c386 char *toglob, *pat, *fpath; in x_command_glob() local
409 if ((fpath = str_val(global("FPATH"))) != null) in x_command_glob()
410 glob_path(flags, pat, &w, fpath); in x_command_glob()
Dfuncs.c820 if (tp->u.fpath) in c_whence()
822 tp->u.fpath); in c_whence()
/external/llvm/utils/
Dllvmbuild156 def is_executable(fpath): argument
157 return os.path.exists(fpath) and os.access(fpath, os.X_OK)