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

  /external/chromium_org/chrome/installer/util/
helper.cc 22 base::FilePath install_path; local
24 PathService::Get(base::DIR_PROGRAM_FILES, &install_path);
26 PathService::Get(base::DIR_LOCAL_APP_DATA, &install_path);
29 if (!install_path.empty()) {
30 install_path = install_path.Append(distribution->GetInstallSubDir());
31 install_path = install_path.Append(sub_path);
34 return install_path;
  /external/chromium_org/chrome/browser/component_updater/
default_component_installer.cc 54 const base::FilePath& install_path) {
55 if (!base::Move(unpack_path, install_path))
57 if (!installer_traits_->OnCustomInstall(manifest, install_path))
59 if (!installer_traits_->VerifyInstallation(install_path))
73 base::FilePath install_path =
75 if (base::PathExists(install_path)) {
76 if (!base::DeleteFile(install_path, true))
79 if (!InstallHelper(manifest, unpack_path, install_path)) {
80 base::DeleteFile(install_path, true);
default_component_installer.h 94 const base::FilePath& install_path);
  /external/chromium_org/chrome/browser/extensions/
sandboxed_unpacker_unittest.cc 113 base::FilePath install_path = local
115 EXPECT_FALSE(base::PathExists(install_path));
121 base::FilePath install_path = local
123 EXPECT_TRUE(base::PathExists(install_path));
extension_service_unittest.cc 4589 base::FilePath install_path = extensions_install_dir_.AppendASCII(id); local
    [all...]
  /external/chromium_org/cloud_print/virtual_driver/win/install/
setup.cc 104 HRESULT RegisterPortMonitor(bool install, const base::FilePath& install_path) {
105 DCHECK(install || install_path.empty());
113 install_path.Append(GetPortMonitorDllName());
251 HRESULT InstallDriver(const base::FilePath& install_path) {
268 base::FilePath data_file = install_path.Append(kDataFileName);
392 HRESULT RegisterVirtualDriver(const base::FilePath& install_path) {
395 DCHECK(base::DirectoryExists(install_path));
401 result = InstallDriver(install_path);
407 result = RegisterPortMonitor(true, install_path);
471 HRESULT DoRegister(const base::FilePath& install_path) {
    [all...]
  /external/chromium/chrome/browser/extensions/
sandboxed_extension_unpacker_unittest.cc 169 FilePath install_path = local
171 EXPECT_FALSE(file_util::PathExists(install_path));
176 EXPECT_FALSE(file_util::PathExists(install_path));
extension_updater_unittest.cc 276 const FilePath& install_path() const { return install_path_; } function in class:ServiceForDownloadTests
750 FilePath tmpfile_path = service->install_path();
854 FilePath tmpfile_path = service.install_path();
873 EXPECT_FALSE(service.install_path().empty());
877 EXPECT_TRUE(file_util::ReadFileToString(service.install_path(),
880 file_util::Delete(service.install_path(), false);
    [all...]
extension_service_unittest.cc 2844 FilePath install_path = extensions_install_dir_.AppendASCII(id); local
    [all...]
  /external/chromium_org/chrome/test/mini_installer_test/
installer_test_util.cc 181 base::FilePath install_path; local
183 system_level, &install_path)) {
187 install_path = install_path.Append(installer::kChromeExe);
188 CommandLine browser(install_path);
  /development/testrunner/
runtest.py 295 install_path = m.group(2)
296 if install_path.endswith(".apk"):
297 abs_install_path = os.path.join(self._root_path, install_path)
301 self._PushInstallFileToDevice(install_path)
303 def _PushInstallFileToDevice(self, install_path):
304 m = self._re_make_install_path.match(install_path)
310 abs_install_path = os.path.join(self._root_path, install_path)
314 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())
install_worker.cc 644 base::FilePath install_path(installer_state.target_path());
679 install_path.value(),
684 install_path.Append(dist->GetIconFilename()).value(),
    [all...]
setup_main.cc 564 base::FilePath install_path(installer::GetChromeInstallPath(
567 if (install_path.empty()) {
576 install_path.Append(installer::kChromeExe);
    [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...]
  /external/chromium_org/chrome/browser/extensions/updater/
extension_updater_unittest.cc 420 const base::FilePath& install_path() const { return install_path_; } function in class:extensions::ServiceForDownloadTests
    [all...]

Completed in 1163 milliseconds