Home | History | Annotate | Download | only in libiberty

Lines Matching refs:filename

28 version of the filename.  Symlinks will be resolved, and ``.'' and ``..''
76 lrealpath (const char *filename)
78 /* Method 1: The system has a compile time upper bound on a filename
85 const char *rp = realpath (filename, buf);
87 rp = filename;
97 char *rp = canonicalize_file_name (filename);
99 return strdup (filename);
123 rp = realpath (filename, buf);
124 ret = strdup (rp ? rp : filename);
141 DWORD len = GetFullPathName (filename, MAX_PATH, buf, &basename);
143 return strdup (filename);
155 /* This system is a lost cause, just duplicate the filename. */
156 return strdup (filename);