Searched defs:source_path (Results 1 - 25 of 40) sorted by relevance

12

/external/chromium_org/chrome/installer/mini_installer/
H A Ddecompress_test.cc14 base::FilePath source_path; local
15 PathService::Get(base::DIR_SOURCE_ROOT, &source_path);
16 source_path = source_path.Append(FILE_PATH_LITERAL("chrome"))
30 EXPECT_TRUE(mini_installer::Expand(source_path.value().c_str(),
/external/chromium_org/chrome/installer/util/
H A Dmove_tree_work_item.cc17 MoveTreeWorkItem::MoveTreeWorkItem(const base::FilePath& source_path, argument
21 : source_path_(source_path),
H A Dcopy_tree_work_item.cc16 CopyTreeWorkItem::CopyTreeWorkItem(const base::FilePath& source_path, argument
21 : source_path_(source_path),
H A Dwork_item.cc34 const base::FilePath& source_path,
39 return new CopyTreeWorkItem(source_path, dest_path, temp_dir,
79 const base::FilePath& source_path,
83 return new MoveTreeWorkItem(source_path,
33 CreateCopyTreeWorkItem( const base::FilePath& source_path, const base::FilePath& dest_path, const base::FilePath& temp_dir, CopyOverWriteOption overwrite_option, const base::FilePath& alternative_path) argument
78 CreateMoveTreeWorkItem( const base::FilePath& source_path, const base::FilePath& dest_path, const base::FilePath& temp_dir, MoveTreeOption duplicate_option) argument
H A Dwork_item_list.cc84 const std::wstring& source_path,
90 base::FilePath(source_path),
150 WorkItem* WorkItemList::AddMoveTreeWorkItem(const std::wstring& source_path, argument
154 WorkItem* item = WorkItem::CreateMoveTreeWorkItem(base::FilePath(source_path),
83 AddCopyTreeWorkItem( const std::wstring& source_path, const std::wstring& dest_path, const std::wstring& temp_dir, CopyOverWriteOption overwrite_option, const std::wstring& alternative_path) argument
/external/chromium_org/chrome/browser/extensions/
H A Dpath_util.cc48 base::FilePath PrettifyPath(const base::FilePath& source_path) { argument
50 if (source_path.empty() || !PathService::Get(base::DIR_HOME, &home_path))
51 return source_path;
54 if (source_path == home_path)
58 DCHECK(source_path.IsAbsolute());
66 source_path.GetComponents(&components);
80 DCHECK_EQ(actual_path.value(), source_path.value());
83 if (home_path.AppendRelativePath(source_path, &display_path))
85 return source_path;
/external/chromium_org/chrome/browser/safe_browsing/
H A Dbinary_feature_extractor_win_unittest.cc25 base::FilePath source_path; variable
26 ASSERT_TRUE(PathService::Get(chrome::DIR_TEST_DATA, &source_path));
27 testdata_path_ = source_path
/external/chromium_org/chrome/browser/
H A Dsxs_linux.cc115 base::FilePath source_path; local
116 if (!PathService::Get(chrome::DIR_USER_DATA, &source_path)) {
121 base::FilePath channels_path(source_path.AppendASCII(kChannelsFileName));
148 if (!base::Move(source_path, target_path)) {
149 LOG(ERROR) << "Failed to rename '" << source_path.value()
/external/chromium_org/third_party/WebKit/Source/bindings/scripts/
H A Didl_validator.py39 source_path = os.path.join(module_path, os.pardir, os.pardir) variable
42 EXTENDED_ATTRIBUTES_FILENAME = os.path.join(source_path,
H A Dcompute_interfaces_info_individual.py53 source_path = os.path.normpath(os.path.join(module_path, os.pardir, os.pardir)) variable
87 relative_path_local = os.path.relpath(idl_filename, source_path)
/external/chromium_org/chrome/browser/chromeos/file_manager/
H A Dfake_disk_mount_manager.h22 MountRequest(const std::string& source_path,
27 std::string source_path; member in struct:file_manager::FakeDiskMountManager::MountRequest
56 const std::string& source_path) const OVERRIDE;
60 virtual void MountPath(const std::string& source_path,
H A Dfake_disk_mount_manager.cc13 const std::string& source_path,
17 : source_path(source_path),
54 const std::string& source_path) const {
55 DiskMap::const_iterator iter = disks_.find(source_path);
71 void FakeDiskMountManager::MountPath(const std::string& source_path, argument
76 MountRequest(source_path, source_format, mount_label, type));
79 source_path,
80 source_path,
83 mount_points_.insert(make_pair(source_path, mount_poin
12 MountRequest( const std::string& source_path, const std::string& source_format, const std::string& mount_label, chromeos::MountType type) argument
[all...]
H A Dvolume_manager.h84 base::FilePath source_path; member in struct:file_manager::VolumeInfo
/external/chromium_org/chrome/browser/chromeos/file_system_provider/operations/
H A Dcopy_entry.cc18 const base::FilePath& source_path,
22 source_path_(source_path),
39 options.source_path = source_path_.AsUTF8Unsafe();
16 CopyEntry(extensions::EventRouter* event_router, const ProvidedFileSystemInfo& file_system_info, const base::FilePath& source_path, const base::FilePath& target_path, const storage::AsyncFileUtil::StatusCallback& callback) argument
H A Dmove_entry.cc18 const base::FilePath& source_path,
22 source_path_(source_path),
39 options.source_path = source_path_.AsUTF8Unsafe();
16 MoveEntry(extensions::EventRouter* event_router, const ProvidedFileSystemInfo& file_system_info, const base::FilePath& source_path, const base::FilePath& target_path, const storage::AsyncFileUtil::StatusCallback& callback) argument
/external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
H A Dfile_manager_private_apitest.cc40 std::string source_path; member in struct:__anon3137::TestMountPoint
191 DiskMountManager::MountPointInfo(kTestMountPoints[i].source_path,
203 kTestMountPoints[i].source_path,
205 kTestMountPoints[i].source_path,
232 const std::string& source_path) {
234 volumes_.find(source_path);
231 FindVolumeBySourcePath( const std::string& source_path) argument
/external/chromium_org/chrome/browser/chromeos/imageburner/
H A Dburn_device_handler_unittest.cc53 void EmulateRemoveDisk(const std::string& source_path) { argument
54 scoped_ptr<Disk> disk(RemoveDisk(source_path));
76 const std::string& source_path) const OVERRIDE {
85 virtual void MountPath(const std::string& source_path,
/external/chromium_org/chrome/common/importer/
H A Dimporter_data_types.h42 base::FilePath source_path; member in struct:importer::SourceProfile
/external/chromium_org/chromeos/dbus/
H A Dfake_cros_disks_client.cc26 void FakeCrosDisksClient::Mount(const std::string& source_path, argument
107 const std::string& source_path,
113 MountEntry(error_code, source_path, mount_type, mount_path));
105 SendMountCompletedEvent( MountError error_code, const std::string& source_path, MountType mount_type, const std::string& mount_path) argument
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/bindings/
H A Dmain.py39 source_path = os.path.normpath(os.path.join(module_path, os.pardir, os.pardir, variable
41 sys.path.append(source_path) # for Source/bindings imports
73 test_input_directory = os.path.join(source_path, 'bindings', 'tests', 'idls')
74 reference_directory = os.path.join(source_path, 'bindings', 'tests', 'results')
125 for idl_filename in idl_paths_recursive(source_path):
/external/chromium_org/chrome/browser/chromeos/drive/
H A Dfile_cache.cc138 const base::FilePath& source_path,
149 if (!base::GetFileSize(source_path, &file_size)) {
150 LOG(WARNING) << "Couldn't get file size for: " << source_path.value();
165 success = base::Move(source_path, dest_path);
168 success = base::CopyFile(source_path, dest_path);
176 << "source_path = " << source_path.value() << ", "
136 Store(const std::string& id, const std::string& md5, const base::FilePath& source_path, FileOperationType file_operation_type) argument
/external/chromium_org/chrome/browser/chromeos/file_system_provider/
H A Dprovided_file_system.cc233 const base::FilePath& source_path,
241 source_path,
283 const base::FilePath& source_path,
291 source_path,
232 CopyEntry( const base::FilePath& source_path, const base::FilePath& target_path, const storage::AsyncFileUtil::StatusCallback& callback) argument
282 MoveEntry( const base::FilePath& source_path, const base::FilePath& target_path, const storage::AsyncFileUtil::StatusCallback& callback) argument
/external/chromium_org/chromeos/disks/
H A Ddisk_mount_manager_unittest.cc25 const char* source_path; member in struct:__anon6149::TestDiskInfo
49 const char* source_path; member in struct:__anon6149::TestMountPointInfo
58 "/device/source_path",
84 "/archive/source_path",
90 "/device/source_path",
156 new DiskMountManager::Disk(disk.source_path,
183 DiskMountManager::MountPointInfo(mount_point.source_path,
220 "/archive/source_path"))
247 "/device/source_path"))
291 "/device/source_path"))
[all...]
/external/chromium_org/components/storage_monitor/
H A Dstorage_monitor_chromeos.cc51 std::string source_path = mount_info.source_path; local
54 DiskMountManager::GetInstance()->FindDiskBySourcePath(source_path);
/external/chromium_org/media/cast/test/
H A Dsender.cc313 base::FilePath source_path = cmd->GetSwitchValuePath(kSwitchSourceFile); local
314 if (!source_path.empty()) {
315 LOG(INFO) << "Source: " << source_path.value();
316 fake_media_source->SetSourceFile(source_path, override_fps);

Completed in 1305 milliseconds

12