Lines Matching defs:aout
78 * aout parameter), and a function which is responsible for doing any
83 Pfindexec(struct ps_prochandle *P, const char *aout,
93 dprintf("Pfindexec '%s'\n", aout);
102 * If the aout parameter turns out to be a directory, this is
106 if (aout != NULL && stat(aout, &st) == 0 && !S_ISDIR(st.st_mode)) {
107 if (try_exec(P, ".", aout, buf, isexec, isdata))
110 aout = ".";
112 } else if (aout == NULL || errno != 0)
113 aout = ".";
116 * At this point 'aout' is either "." or an alternate cwd. We use
120 if (realpath(aout, cwd) == NULL)