Lines Matching refs:real_path
276 if (char *real_path = realpath(exe_path, nullptr)) {
277 std::string ret = std::string(real_path);
278 free(real_path);
282 char real_path[PATH_MAX];
283 if (realpath(exe_path, real_path))
284 return std::string(real_path);
319 char real_path[PATH_MAX];
320 if (realpath(exe_path, real_path))
321 return std::string(real_path);
1306 std::error_code real_path(const Twine &path, SmallVectorImpl<char> &dest,
1316 return real_path(Storage, dest, false);