Lines Matching refs:real_path
272 if (char *real_path = realpath(exe_path, nullptr)) {
273 std::string ret = std::string(real_path);
274 free(real_path);
278 char real_path[PATH_MAX];
279 if (realpath(exe_path, real_path))
280 return std::string(real_path);
320 char real_path[PATH_MAX];
321 if (realpath(exe_path, real_path))
322 return std::string(real_path);
1307 std::error_code real_path(const Twine &path, SmallVectorImpl<char> &dest,
1317 return real_path(Storage, dest, false);