Lines Matching defs:file
1460 /* see unbksl() in this file for comments */
1654 * Reset the non-blocking flag on the specified file descriptor.
1893 * is not a non-directory existing file
1927 * - if file starts with '/', append file to result & set cdpathp to NULL
1928 * - if file starts with ./ or ../ append cwd and file to result
1933 * - file is appended to result
1940 make_path(const char *cwd, const char *file,
1952 if (!file)
1953 file = null;
1955 if (mksh_abspath(file)) {
1959 if (file[0] == '.') {
1960 char c = file[1];
1963 c = file[2];
2002 len = strlen(file) + 1;
2004 memcpy(xp, file, len);