HomeSort by relevance Sort by last modified time
    Searched refs:real_path_result (Results 1 - 2 of 2) sorted by null

  /external/chromium/base/
file_util_posix.cc 799 FilePath real_path_result; local
800 if (!RealPath(path, &real_path_result))
803 // To be consistant with windows, fail if |real_path_result| is a
806 if (CallStat(real_path_result.value().c_str(), &file_info) != 0 ||
810 *normalized_path = real_path_result;
  /external/chromium_org/base/
file_util_posix.cc 627 FilePath real_path_result; local
628 if (!RealPath(path, &real_path_result))
631 // To be consistant with windows, fail if |real_path_result| is a
634 if (CallStat(real_path_result.value().c_str(), &file_info) != 0 ||
638 *normalized_path = real_path_result;

Completed in 119 milliseconds