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 692 FilePath real_path_result; local
693 if (!RealPath(path, &real_path_result))
696 // To be consistant with windows, fail if |real_path_result| is a
699 if (CallStat(real_path_result.value().c_str(), &file_info) != 0 ||
703 *normalized_path = real_path_result;

Completed in 2227 milliseconds