HomeSort by relevance Sort by last modified time
    Searched defs:Install (Results 1 - 25 of 65) sorted by null

1 2 3

  /external/chromium_org/build/android/pylib/uiautomator/
test_package.py 26 def Install(self, adb):
  /external/chromium_org/build/android/pylib/gtest/
test_package.py 60 def Install(self, adb):
61 """Install the test package to the device.
test_package_exe.py 122 def Install(self, adb):
test_package_apk.py 132 def Install(self, adb):
  /external/chromium_org/build/android/pylib/instrumentation/
test_package.py 37 def Install(self, adb):
  /external/chromium_org/ui/views/focus/
focus_manager_factory.cc 48 void FocusManagerFactory::Install(FocusManagerFactory* f) {
  /external/chromium_org/build/android/gyp/
apk_install.py 49 raise Exception('APK install failed unexpectedly.')
58 help='Path to .apk to install.')
59 parser.add_option('--install-record',
60 help='Path to install record (touched only when APK is installed).')
81 def Install():
82 device.Install(options.apk_path, reinstall=True)
89 Install,
  /external/chromium_org/chrome/browser/component_updater/test/
test_installer.cc 19 bool TestInstaller::Install(const base::DictionaryValue& manifest,
59 bool VersionedTestInstaller::Install(const base::DictionaryValue& manifest,
  /external/chromium_org/build/android/gyp/util/
build_device.py 40 def Install(self, *args, **kwargs):
41 return self.adb.Install(*args, **kwargs)
  /external/chromium_org/chrome/browser/component_updater/
recovery_component_installer.cc 56 virtual bool Install(const base::DictionaryValue& manifest,
101 bool RecoveryComponentInstaller::Install(const base::DictionaryValue& manifest,
pepper_flash_component_installer.cc 251 virtual bool Install(const base::DictionaryValue& manifest,
270 bool PepperFlashComponentInstaller::Install(
281 // Passed the basic tests. Time to install it.
399 // is disabled then this one should never install.
swiftshader_component_installer.cc 105 virtual bool Install(const base::DictionaryValue& manifest,
124 bool SwiftShaderComponentInstaller::Install(
141 // Passed the basic tests. Time to install it.
widevine_cdm_component_installer.cc 195 virtual bool Install(const base::DictionaryValue& manifest,
215 bool WidevineCdmComponentInstaller::Install(
234 // Passed the basic tests. Time to install it.
255 // returns the assumed install path. The path separator in |file| is '/'
component_updater_service.cc 331 void Install(const CRXContext* context, const base::FilePath& crx_path);
864 base::Bind(&CrxUpdateService::Install,
872 // Install consists of digital signature verification, unpacking and then
876 void CrxUpdateService::Install(const CRXContext* context,
    [all...]
  /external/chromium_org/chrome/browser/net/
crl_set_fetcher.cc 145 bool CRLSetFetcher::Install(const base::DictionaryValue& manifest,
  /development/testrunner/
adb_interface.py 134 def Install(self, apk_path):
141 output of install command
143 return self.SendCommand("install -r %s" % apk_path)
  /external/chromium_org/chrome/renderer/extensions/
webstore_bindings.cc 49 // chrome.webstore.install() calls generate an install ID so that the install's
50 // callbacks may be fired when the browser notifies us of install completion
60 RouteFunction("Install",
61 base::Bind(&WebstoreBindings::Install, base::Unretained(this)));
64 void WebstoreBindings::Install(
  /external/chromium_org/chrome/test/install_test/
install_test.py 7 Provides an interface to install or update chrome from within a testcase, and
50 self.Install(self.GetUpdateBuilds()[0])
53 self.Install(self.GetUpdateBuilds()[1])
112 def Install(self, build, master_pref=None):
130 self._installation = chrome_installer_win.Install(
137 """Returns Chorme build to be used for install test scenarios."""
179 install testing. Pass this argument only if testing
180 fresh install scenarios.
chrome_installer_win.py 51 def Install(installer_path, install_type, build, options):
74 options.append('--install')
  /external/chromium_org/chrome/test/mini_installer_test/
installer_test_util.cc 157 bool Install(const base::FilePath& installer) {
168 bool Install(const base::FilePath& installer, const SwitchBuilder& switches) {
186 LOG(ERROR) << "Could not find Chrome install directory";
  /external/chromium_org/chrome/browser/component_updater/pnacl/
pnacl_component_installer.cc 240 bool PnaclComponentInstaller::Install(const base::DictionaryValue& manifest,
258 // Don't install if the current version is actually newer.
264 // Passed the basic tests. Time to install it.
288 // returns the assumed install path. The path separator in |file| is '/'
  /external/chromium_org/cloud_print/service/win/
cloud_print_service_config.cc 95 void Install(const string16& user, const string16& password,
253 PostIOTask(base::Bind(&SetupDialog::Install, this, GetUser(),
331 void SetupDialog::Install(const string16& user, const string16& password,
  /external/chromium_org/remoting/host/setup/
daemon_installer_win.cc 49 L"\"%ls\" /install \"bundlename=Chromoting%%20Host&appguid=%ls&"
73 virtual void Install() OVERRIDE;
98 virtual void Install() OVERRIDE;
124 void DaemonComInstallerWin::Install() {
228 hr = dispatch::Invoke(V_DISPATCH(&bundle_), L"install",
276 void DaemonCommandLineInstallerWin::Install() {
376 // Omaha to install the machine instance first and then install Chromoting
  /external/chromium_org/tools/memory_watcher/
memory_hook.cc 28 // Macro to install Patch functions.
31 patch_##name.Install(&Perftools_##name); \
34 // Macro to install Patch functions.
37 patch_##name.Install(&Perftools_##name); \
116 void Install(T func) {
  /external/chromium_org/build/android/pylib/
android_commands.py 384 def Install(self, package_file_path, reinstall=False):
388 package_file_path: Path to .apk file to install.
392 A status string returned by adb install
397 install_cmd = ['install']
418 apk_path: Path to .apk file to install.
429 logging.info('Skipped install: identical %s APK already installed' %
432 # Install.
439 install_status = self.Install(apk_path, reinstall=keep_data)
448 raise Exception('Install failure')
    [all...]

Completed in 412 milliseconds

1 2 3