/external/chromium_org/chromeos/dbus/ |
image_burner_client.h | 28 typedef base::Callback<void(const std::string& target_path, 33 typedef base::Callback<void(const std::string& target_path,
|
image_burner_client.cc | 88 std::string target_path; local 91 if (!reader.PopString(&target_path) || 98 burn_finished_handler_.Run(target_path, success, error); 104 std::string target_path; local 107 if (!reader.PopString(&target_path) || 114 burn_progress_update_handler_.Run(target_path, num_bytes_burnt,
|
/external/chromium_org/chrome/browser/download/ |
download_target_info.h | 19 base::FilePath target_path; member in struct:DownloadTargetInfo 32 // |target_path|. 40 // Whether the |target_path| would be handled safely by the browser if it were
|
download_path_reservation_tracker.h | 26 // Callback used with |GetReservedPath|. |target_path| specifies the target 30 // - |target_path| was verified as being unique if uniqueness was 34 // |target_path| may be different from that of |requested_target_path|. 35 typedef base::Callback<void(const base::FilePath& target_path,
|
download_path_reservation_tracker.cc | 169 base::FilePath target_path(suggested_path.NormalizePathSeparators()); 170 base::FilePath target_dir = target_path.DirName(); 171 base::FilePath filename = target_path.BaseName(); 194 target_path = target_dir.Append(filename); 203 if (limit <= 0 || !TruncateFileName(&target_path, limit)) 208 if (!name_too_long && IsPathInUse(target_path)) { 221 base::FilePath path_to_check(target_path); 234 target_path = path_to_check; 243 reservations[key] = target_path; 245 *reserved_path = target_path; [all...] |
/external/chromium_org/content/public/test/ |
mock_download_manager.cc | 15 const base::FilePath& target_path, 32 target_path(target_path), 50 target_path(rhs.target_path), 70 target_path == rhs.target_path && 101 const base::FilePath& target_path, 117 id, current_path, target_path, url_chain, referrer_url, mime_type,
|
mock_download_manager.h | 32 base::FilePath target_path; member in struct:content::MockDownloadManager::CreateDownloadItemAdapter 51 const base::FilePath& target_path, 106 const base::FilePath& target_path,
|
/external/chromium_org/third_party/zlib/google/ |
zip_reader_unittest.cc | 239 base::FilePath target_path(FILE_PATH_LITERAL("foo/bar/quux.txt")); 240 ASSERT_TRUE(reader.LocateAndOpenEntry(target_path)); 241 EXPECT_EQ(target_path, reader.current_entry_info()->file_path()); 248 base::FilePath target_path(FILE_PATH_LITERAL("nonexistent.txt")); 249 ASSERT_FALSE(reader.LocateAndOpenEntry(target_path)); 256 base::FilePath target_path(FILE_PATH_LITERAL("foo/bar/quux.txt")); 257 ASSERT_TRUE(reader.LocateAndOpenEntry(target_path)); 275 base::FilePath target_path(FILE_PATH_LITERAL("foo/bar/quux.txt")); 276 ASSERT_TRUE(reader.LocateAndOpenEntry(target_path)); 295 base::FilePath target_path(FILE_PATH_LITERAL("foo/bar/quux.txt")) [all...] |
/external/chromium_org/chrome/browser/history/ |
download_row.cc | 21 const base::FilePath& target_path, 40 target_path(target_path),
|
download_row.h | 27 const base::FilePath& target_path, 52 base::FilePath target_path; member in struct:history::DownloadRow
|
/external/chromium_org/chrome/tools/test/ |
generate_mime_tests.pl | 47 print "Usage:\n generate_mime_tests.pl < target_path >\n target_path". 53 my $target_path = $ARGV[0]; 214 $infile = $target_path.$infile; 266 $infile = $target_path.$infile;
|
/external/chromium_org/content/browser/download/ |
download_item_impl_delegate.cc | 33 base::FilePath target_path(download->GetForcedFilePath()); 34 callback.Run(target_path, 37 target_path);
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/ |
workspace.py | 52 target_path = self._filesystem.join(directory, target_name) 53 if not self._filesystem.exists(target_path): 54 return target_path
|
/external/chromium_org/chrome/common/ |
logging_chrome.cc | 159 base::FilePath target_path; local 162 target_path = GenerateTimestampedName(symlink_path, base::Time::Now()); 169 if (!base::CreateSymbolicLink(target_path, symlink_path)) { 171 << " pointing at " << target_path.value(); 174 if (!base::ReadSymbolicLink(symlink_path, &target_path)) 177 return target_path; 181 const base::FilePath& target_path) { 184 if (::unlink(target_path.value().c_str()) == -1) 185 DPLOG(WARNING) << "Unable to unlink log file " << target_path.value(); 234 base::FilePath target_path = SetUpSymlinkIfNeeded(log_path, true) local 260 base::FilePath target_path; local [all...] |
/external/chromium_org/chrome/browser/extensions/api/image_writer_private/ |
operation_chromeos.cc | 87 void Operation::StartWriteOnUIThread(const std::string& target_path, 100 target_path, 105 const std::string& target_path, 117 void Operation::OnBurnProgress(const std::string& target_path,
|
operation.h | 171 // Starts the ImageBurner write. Note that target_path is the file path of 173 void StartWriteOnUIThread(const std::string& target_path, 176 const std::string& target_path, 179 void OnBurnProgress(const std::string& target_path,
|
/external/chromium_org/chrome/installer/test/ |
alternate_version_generator.h | 26 // the original and placing it in |target_path|. Any previous file at 27 // |target_path| is clobbered. Returns true on success. |original_version| and 31 const base::FilePath& target_path,
|
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/memfs/ |
mem_fs.cc | 184 Error MemFs::Rename(const Path& src_path, const Path& target_path) { 199 error = FindNode(target_path.Parent(), 0, &target_parent); 203 std::string target_name = target_path.Basename(); 207 error = FindNode(target_path, 0, &target_node); 218 RemoveInternal(target_path, REMOVE_ALL); 230 target_parent->RemoveChild(target_path.Basename()); 244 target_parent->AddChild(target_path.Basename(), target_node); 246 target_parent->AddChild(target_path.Basename(), src_node);
|
/external/chromium_org/sandbox/win/src/ |
sync_policy.cc | 70 UNICODE_STRING target_path = {}; local 72 status = NtQuerySymbolicLinkObject(symbolic_link, &target_path, 81 target_path.Buffer = new wchar_t[target_length + 1]; 82 target_path.Length = 0; 83 target_path.MaximumLength = target_length; 84 status = NtQuerySymbolicLinkObject(symbolic_link, &target_path, 87 target->assign(target_path.Buffer, target_length); 93 delete[] target_path.Buffer;
|
/external/chromium_org/chrome/browser/ |
sxs_linux.cc | 144 base::FilePath target_path = local 148 if (!base::Move(source_path, target_path)) { 150 << "' to '" << target_path.value() << "'";
|
/external/chromium_org/tools/gyp/pylib/gyp/ |
mac_tool.py | 303 target_path = os.path.join( 310 shutil.copy2(source_path, target_path) 311 return target_path 328 target_path = os.path.join( 332 shutil.copy2(source_path, target_path) 474 target_path = os.path.join( 481 shutil.copy2(source_path, target_path) 482 data = self._LoadPlistMaybeBinary(target_path) 488 plistlib.writePlist(data, target_path) 489 return target_path [all...] |
/external/chromium_org/chrome/installer/util/ |
installer_state_unittest.cc | 52 void set_target_path(const base::FilePath& target_path) { 53 target_path_ = target_path; 261 EXPECT_EQ(test_dir_.path().value(), installer_state.target_path().value()); 276 base::FilePath new_version_dir(installer_state.target_path().Append( 278 base::FilePath old_version_dir(installer_state.target_path().Append( 501 EXPECT_EQ(test_dir_.path().value(), installer_state.target_path().value()); 523 installer_state.target_path().Append(L"1.2.3.4"), 524 installer_state.target_path().Append(L"1.2.3.5"), 525 installer_state.target_path().Append(L"1.2.3.6"), 526 installer_state.target_path().Append(base::ASCIIToWide(kOldVersion)) [all...] |
/external/chromium_org/chrome/installer/setup/ |
uninstall.cc | 64 void DeleteInstallTempDir(const base::FilePath& target_path) { 65 base::FilePath temp_path(target_path.DirName().Append( 69 if (!temp_dir.Initialize(target_path.DirName(), 518 const base::FilePath& target_path = installer_state.target_path(); local 519 if (target_path.empty()) { 525 DeleteInstallTempDir(target_path); 529 base::FilePath app_host_exe(target_path.Append(installer::kChromeAppHostExe)); 540 const base::FilePath& target_path = installer_state.target_path(); local [all...] |
/external/chromium_org/chrome/browser/extensions/api/music_manager_private/ |
device_id_linux.cc | 57 base::FilePath target_path; local 58 if (!base::ReadSymbolicLink(file_path, &target_path)) 61 base::FilePath device_name = target_path.BaseName();
|
/external/chromium_org/base/win/ |
shortcut.cc | 291 FilePath* target_path, 294 if (target_path) 304 if (target_path) 305 *target_path = properties.target;
|