/external/chromium_org/chrome/installer/util/ |
helper.cc | 19 base::FilePath install_path; local 28 if (PathService::Get(key, &install_path)) { 29 install_path = install_path.Append(dist->GetInstallSubDir()); 30 install_path = install_path.Append(kInstallBinaryDir); 32 return install_path;
|
/external/chromium_org/chrome/browser/component_updater/ |
default_component_installer.cc | 56 const base::FilePath& install_path) { 57 if (!base::Move(unpack_path, install_path)) 59 if (!installer_traits_->OnCustomInstall(manifest, install_path)) 61 if (!installer_traits_->VerifyInstallation(install_path)) 75 base::FilePath install_path = 77 if (base::PathExists(install_path)) { 78 if (!base::DeleteFile(install_path, true)) 81 if (!InstallHelper(manifest, unpack_path, install_path)) { 82 base::DeleteFile(install_path, true);
|
default_component_installer.h | 98 const base::FilePath& install_path);
|
/external/chromium_org/chrome/browser/extensions/ |
sandboxed_unpacker_unittest.cc | 114 base::FilePath install_path = local 116 EXPECT_FALSE(base::PathExists(install_path)); 122 base::FilePath install_path = local 124 EXPECT_TRUE(base::PathExists(install_path));
|
extension_service_unittest.cc | 4625 base::FilePath install_path = extensions_install_dir().AppendASCII(id); local [all...] |
/external/chromium_org/chrome/browser/ui/pdf/ |
adobe_reader_info_win.cc | 125 base::FilePath install_path = GetInstalledPath(kRegistryAcrobatReader); 126 if (install_path.empty()) 127 install_path = GetInstalledPath(kRegistryAcrobat); 128 if (install_path.empty()) 132 bool found = app_cmd.find(install_path.value()) != base::string16::npos; 134 *path = install_path; 163 base::FilePath install_path; local 164 bool is_default = IsAdobeReaderDefaultPDFViewerInternal(&install_path); 169 FileVersionInfo::CreateFileVersionInfo(install_path));
|
/external/chromium_org/cloud_print/virtual_driver/win/install/ |
setup.cc | 103 HRESULT RegisterPortMonitor(bool install, const base::FilePath& install_path) { 104 DCHECK(install || install_path.empty()); 112 install_path.Append(GetPortMonitorDllName()); 250 HRESULT InstallDriver(const base::FilePath& install_path) { 267 base::FilePath data_file = install_path.Append(kDataFileName); 389 HRESULT RegisterVirtualDriver(const base::FilePath& install_path) { 392 DCHECK(base::DirectoryExists(install_path)); 398 result = InstallDriver(install_path); 404 result = RegisterPortMonitor(true, install_path); 468 HRESULT DoRegister(const base::FilePath& install_path) { [all...] |
/development/testrunner/ |
runtest.py | 323 for install_path in re.split(r'\s+', install_paths): 324 if install_path.endswith(".apk"): 325 abs_install_path = os.path.join(self._root_path, install_path) 329 self._PushInstallFileToDevice(install_path) 331 def _PushInstallFileToDevice(self, install_path): 332 m = self._re_make_install_path.match(install_path) 338 abs_install_path = os.path.join(self._root_path, install_path) 342 logger.Log("Error: Failed to recognize path of file to install %s" % install_path)
|
/external/chromium_org/tools/gyp/pylib/gyp/generator/ |
make.py | 730 install_path = self._InstallableTargetInstallPath() 733 install_path = self.output 791 target_outputs[qualified_target] = install_path [all...] |
/external/chromium_org/chrome/installer/setup/ |
install_worker_unittest.cc | 204 base::FilePath install_path = local 207 install_path.AppendASCII(current_version_->GetString()) 234 base::FilePath install_path = local 237 install_path.AppendASCII(current_version_->GetString()) 266 base::FilePath install_path = local 269 install_path.AppendASCII(current_version_->GetString()) [all...] |
install_worker.cc | 692 base::FilePath install_path(installer_state.target_path()); [all...] |
setup_main.cc | 573 base::FilePath install_path(installer::GetChromeInstallPath( 576 if (install_path.empty()) { 585 install_path.Append(installer::kChromeExe); [all...] |
/external/chromium_org/chrome/browser/extensions/updater/ |
extension_updater_unittest.cc | 462 const base::FilePath& install_path() const { return install_path_; } function in class:extensions::ServiceForDownloadTests [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/ |
bdist_msi.py | 338 install_path = r"SOFTWARE\Python\PythonCore\%s\InstallPath" % ver 354 [(machine_reg, 2, install_path, None, Type), 355 (user_reg, 1, install_path, None, Type)]) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/ |
bdist_msi.py | 338 install_path = r"SOFTWARE\Python\PythonCore\%s\InstallPath" % ver 354 [(machine_reg, 2, install_path, None, Type), 355 (user_reg, 1, install_path, None, Type)]) [all...] |