• Home
  • Raw
  • Download

Lines Matching refs:resolved_path

43     char resolved_path[PATH_MAX];  in GetFileStats()  local
44 if (file_spec->GetPath (resolved_path, sizeof(resolved_path))) in GetFileStats()
45 return ::stat (resolved_path, stats_ptr) == 0; in GetFileStats()
209 char resolved_path[PATH_MAX]; in Resolve() local
210 if (::realpath (unglobbed_path, resolved_path)) in Resolve()
213 return ::snprintf(dst_path, dst_len, "%s", resolved_path); in Resolve()
298 char resolved_path[PATH_MAX]; in SetFile() local
303 …path_fit = (FileSpec::Resolve (pathname, resolved_path, sizeof(resolved_path)) < sizeof(resolved_p… in SetFile()
310 if (::strlen (pathname) > sizeof(resolved_path) - 1) in SetFile()
313 ::strcpy (resolved_path, pathname); in SetFile()
319 char *filename = ::basename (resolved_path); in SetFile()
326 if (strchr(resolved_path, '/')) in SetFile()
328 char *directory = ::dirname (resolved_path); in SetFile()
336 char *last_resolved_path_slash = strrchr(resolved_path, '/'); in SetFile()
340 m_directory.SetCString(resolved_path); in SetFile()
346 m_directory.SetCString(resolved_path); in SetFile()
794 char resolved_path[PATH_MAX]; in ReadFileContents() local
795 if (GetPath(resolved_path, sizeof(resolved_path))) in ReadFileContents()
798 error = file.Open(resolved_path, File::eOpenOptionRead); in ReadFileContents()
831 char resolved_path[PATH_MAX]; in ReadFileContents() local
832 if (GetPath(resolved_path, sizeof(resolved_path))) in ReadFileContents()
835 error = file.Open(resolved_path, File::eOpenOptionRead); in ReadFileContents()
856 char resolved_path[PATH_MAX]; in ReadFileContentsAsCString() local
857 if (GetPath(resolved_path, sizeof(resolved_path))) in ReadFileContentsAsCString()
860 error = file.Open(resolved_path, File::eOpenOptionRead); in ReadFileContentsAsCString()