Lines Matching defs:fpath
54 char fpath[FILENAME_MAX];
108 if (lp + ln + 2 > sizeof(fpath)) {
114 memcpy(fpath, p, lp);
115 fpath[lp] = '/';
116 memcpy(fpath + lp + 1, file, ln);
117 fpath[lp + ln + 1] = '\0';
121 * here, using the current fpath as the filename, but
130 if (access(fpath, X_OK) == 0)
136 fpath[0] = '\0';
141 if (fpath[0] == '\0')
147 return posix_spawn(pid, fpath, fa, sa, cav, env);