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

  /external/chromium_org/chrome/browser/profiles/
file_path_verifier_win.cc 36 if (!base::NormalizeFilePath(file, &normalized_path)) {
46 // base::NormalizeFilePath() was redirected.
  /external/chromium_org/storage/browser/fileapi/
external_mount_points.cc 22 base::FilePath NormalizeFilePath(const base::FilePath& path) {
106 base::FilePath path = NormalizeFilePath(path_in);
129 path_to_name_map_.erase(NormalizeFilePath(instance->path()));
225 base::FilePath path = NormalizeFilePath(path_in);
  /external/chromium_org/chrome/browser/ui/
network_profile_bubble.cc 133 if (!base::NormalizeFilePath(temp_file, &normalized_temp_file))
  /external/chromium_org/base/files/
file_util_unittest.cc 55 // To test that NormalizeFilePath() deals with NTFS reparse points correctly,
293 ASSERT_FALSE(NormalizeFilePath(file_a_path, &normalized_file_a_path))
294 << "NormalizeFilePath() should fail on nonexistent paths.";
298 ASSERT_TRUE(NormalizeFilePath(file_a_path, &normalized_file_a_path));
302 ASSERT_TRUE(NormalizeFilePath(file_b_path, &normalized_file_b_path));
340 // NormalizeFilePath() fails without crashing.
384 ASSERT_TRUE(NormalizeFilePath(file_txt, &normalized_path));
389 ASSERT_TRUE(NormalizeFilePath(to_sub_a.Append(FPL("file.txt")),
395 ASSERT_TRUE(NormalizeFilePath(base_b.Append(FPL("to_base_b"))
402 // A long enough path will cause NormalizeFilePath() to fail. Make a lon
    [all...]
file_util.h 276 BASE_EXPORT bool NormalizeFilePath(const FilePath& path, FilePath* real_path);
file_util_win.cc 436 bool NormalizeFilePath(const FilePath& path, FilePath* real_path) {
file_util_posix.cc 84 // Helper for NormalizeFilePath(), defined below.
597 bool NormalizeFilePath(const FilePath& path, FilePath* normalized_path) {
  /external/chromium_org/chrome/browser/extensions/
sandboxed_unpacker.cc 126 // and uses NormalizeFilePath to check if the path is junction free.
136 // NormalizeFilePath requires a non-empty file, so write some data.
143 bool normalized = base::NormalizeFilePath(temp_file, &normalized_temp_file);
300 if (!base::NormalizeFilePath(temp_crx_path, &link_free_crx_path)) {

Completed in 1467 milliseconds