HomeSort by relevance Sort by last modified time
    Searched refs:updater (Results 1 - 25 of 193) sorted by null

1 2 3 4 5 6 7 8

  /external/autotest/server/site_tests/autoupdate_Rollback/
autoupdate_Rollback.py 26 updater = autoupdate_utils.get_updater_from_repo_url(host, job_repo_url)
28 initial_kernel, updated_kernel = updater.get_kernel_state()
33 updater.update_rootfs()
38 updater.verify_boot_expectations(expected_kernel_state=updated_kernel,
43 updater.rollback_rootfs(powerwash=False)
49 updater.verify_boot_expectations(expected_kernel_state=initial_kernel,
  /packages/apps/Settings/src/com/android/settings/connecteddevice/dock/
DockUpdaterFeatureProviderImpl.java 17 final DockUpdater updater = new DockUpdater() { local
19 return updater;
25 final DockUpdater updater = new DockUpdater() { local
27 return updater;
  /external/autotest/client/common_lib/cros/
autoupdater_unittest.py 42 updater = autoupdater.ChromiumOSUpdater(
46 self.mox.StubOutWithMock(updater.host, 'get_release_version')
47 updater.host.get_release_version().MultipleTimes().AndReturn(
51 self.assertFalse(updater.check_version())
52 self.assertTrue(updater.check_version_to_confirm_install())
55 self.mox.StubOutWithMock(updater.host, 'get_release_version')
56 updater.host.get_release_version().MultipleTimes().AndReturn(
60 self.assertFalse(updater.check_version())
61 self.assertFalse(updater.check_version_to_confirm_install())
64 self.mox.StubOutWithMock(updater.host, 'get_release_version'
    [all...]
  /external/guava/guava/src/com/google/common/util/concurrent/
AtomicDouble.java 43 * <p>It is possible to write a more scalable updater, at the cost of
60 private static final AtomicLongFieldUpdater<AtomicDouble> updater = field in class:AtomicDouble
107 // updater.lazySet(this, next);
118 return longBitsToDouble(updater.getAndSet(this, next));
132 return updater.compareAndSet(this,
153 return updater.weakCompareAndSet(this,
170 if (updater.compareAndSet(this, current, next)) {
188 if (updater.compareAndSet(this, current, next)) {
  /external/autotest/server/site_tests/firmware_UpdateFirmwareDataKeyVersion/
firmware_UpdateFirmwareDataKeyVersion.py 25 os.path.join(self.faft_client.updater.get_temp_path(),
29 os.path.join(self.faft_client.updater.get_temp_path(),
33 os.path.join(self.faft_client.updater.get_temp_path(),
64 self.faft_client.updater.run_factory_install()
68 self._fwid = self.faft_client.updater.get_fwid()
77 self.faft_client.updater.resign_firmware(1)
78 self.faft_client.updater.repack_shellball('test')
83 self.faft_client.updater.cleanup()
97 self.faft_client.updater.run_autoupdate('test')
101 self.faft_client.updater.run_bootok('test'
    [all...]
  /external/autotest/server/site_tests/firmware_UpdateKernelSubkeyVersion/
firmware_UpdateKernelSubkeyVersion.py 25 os.path.join(self.faft_client.updater.get_temp_path(),
29 os.path.join(self.faft_client.updater.get_temp_path(),
33 os.path.join(self.faft_client.updater.get_temp_path(),
62 self.faft_client.updater.run_factory_install()
65 self._fwid = self.faft_client.updater.get_fwid()
74 self.faft_client.updater.resign_firmware(1)
75 self.faft_client.updater.repack_shellball('test')
79 self.faft_client.updater.cleanup()
92 self.faft_client.updater.run_autoupdate('test')
96 self.faft_client.updater.run_bootok('test'
    [all...]
  /packages/apps/Settings/tests/unit/src/com/android/settings/vpn2/
PreferenceListTest.java 80 final VpnSettings.UpdatePreferences updater = new VpnSettings.UpdatePreferences(mSettings); local
81 updater.run();
92 final VpnSettings.UpdatePreferences updater = new VpnSettings.UpdatePreferences(mSettings); local
93 updater.legacyVpns(
97 updater.run();
109 final VpnSettings.UpdatePreferences updater = new VpnSettings.UpdatePreferences(mSettings); local
110 updater.legacyVpns(
116 updater.run();
129 final VpnSettings.UpdatePreferences updater = new VpnSettings.UpdatePreferences(mSettings); local
130 updater.legacyVpns
    [all...]
  /bionic/libc/kernel/tools/
update_all.py 27 def processFiles(updater, original_dir, modified_dir, src_rel_dir, update_rel_dir):
56 updater.readFile(dst_file)
57 ret_val = updater.editFile(dst_file, new_data)
93 updater = BatchFileUpdater() variable
95 processFiles(updater, original_dir, modified_dir, "uapi", "uapi"),
98 processFiles(updater, original_dir, modified_dir, "scsi", os.path.join("android", "scsi", "scsi"))
100 updater.updateGitFiles()
  /external/autotest/site_utils/stable_images/
assign_stable_images.py 480 def _apply_cros_upgrades(updater, old_versions, new_versions,
498 @param updater Instance of _VersionUpdater responsible for
508 updater.report_default_changed(old_default, new_default)
509 updater.report('Applying stable version changes:')
515 updater.report_board_unchanged(board, new_build)
520 updater.set_mapping(board, old_build, new_build)
522 updater.upgrade_default(new_default)
525 updater.delete_mapping(board, old_versions[board])
526 updater.report('%d boards now use the default mapping' %
530 def _apply_firmware_upgrades(updater, old_versions, new_versions)
    [all...]
assign_stable_images_unittest.py 650 updater = _TestUpdater(self)
651 updater.pretest_init(old_versions, expected_versions)
653 updater, old_versions, new_versions, new_default)
654 updater.check_results(change_default)
821 updater = _TestUpdater(self)
822 updater.pretest_init(old_versions, new_versions)
824 updater, old_versions, new_versions)
825 updater.check_results(False)
  /external/autotest/server/site_tests/firmware_UpdateFirmwareVersion/
firmware_UpdateFirmwareVersion.py 51 self.faft_client.updater.run_factory_install()
56 self._fwid = self.faft_client.updater.get_fwid()
64 self.faft_client.updater.resign_firmware(self._update_version)
65 self.faft_client.updater.repack_shellball('test')
69 self.faft_client.updater.cleanup()
82 self.faft_client.updater.run_autoupdate('test')
86 self.faft_client.updater.run_bootok('test')
94 self.faft_client.updater.run_recovery()
  /external/autotest/server/site_tests/firmware_UpdateKernelDataKeyVersion/
firmware_UpdateKernelDataKeyVersion.py 35 os.path.join(self.faft_client.updater.get_temp_path(),
39 os.path.join(self.faft_client.updater.get_temp_path(),
43 os.path.join(self.faft_client.updater.get_temp_path(),
50 'b', self.faft_client.updater.get_keys_path())
77 self.faft_client.updater.cleanup()
  /frameworks/base/core/java/android/content/pm/
PackageBackwardCompatibility.java 48 // Attempt to load and add the optional updater that will only be available when
49 // REMOVE_OAHL_FROM_BCP=true. If that could not be found then add the default updater that
60 // Attempt to load and add the optional updater that will only be available when
61 // REMOVE_ATB_FROM_BCP=true. If that could not be found then add the default updater that
81 * @return true if the optional updater was added false otherwise.
97 PackageSharedLibraryUpdater updater; local
99 updater = defaultUpdater.get();
102 updater = clazz.getConstructor().newInstance();
108 packageUpdaters.add(updater);
  /hardware/google/av/media/sfplugin/tests/
ReflectedParamUpdater_test.cpp 147 ReflectedParamUpdater updater; local
153 updater.addParamDesc(mReflector, mDescriptors);
156 updater.getParamIndicesFromMessage(msg, &indices);
174 updater.updateParamsFromMessage(msg, &params);
181 msg = updater.getParams(params);
194 ReflectedParamUpdater updater; local
199 updater.addParamDesc(mReflector, mDescriptors);
202 updater.getParamIndicesFromMessage(msg, &indices);
221 updater.updateParamsFromMessage(msg, &params);
231 updater.updateParamsFromMessage(msg, &params)
249 ReflectedParamUpdater updater; local
321 ReflectedParamUpdater updater; local
    [all...]
  /external/autotest/server/site_tests/platform_RebootAfterUpdate/
platform_RebootAfterUpdate.py 70 updater = autoupdate_utils.get_updater_from_repo_url(host, job_repo_url)
71 updater.update_stateful(clobber=True)
  /external/autotest/server/site_tests/servohost_Reboot/
servohost_Reboot.py 38 updater = autoupdater.ChromiumOSUpdater(update_url=url, host=s_host)
39 reboot_needed = (updater.check_update_status() ==
  /frameworks/rs/tests/java_api/SampleTest/src/com/android/rs/sample/
SampleRSActivity.java 119 TextureViewUpdater updater = new TextureViewUpdater(outAlloc, Sampler.WRAP_LINEAR(mRS)); local
121 displayView.setSurfaceTextureListener(updater);
125 updater = new TextureViewUpdater(outAlloc, Sampler.CLAMP_LINEAR(mRS));
127 displayView.setSurfaceTextureListener(updater);
131 updater = new TextureViewUpdater(outAlloc, Sampler.WRAP_NEAREST(mRS));
133 displayView.setSurfaceTextureListener(updater);
137 updater = new TextureViewUpdater(outAlloc, Sampler.CLAMP_NEAREST(mRS));
139 displayView.setSurfaceTextureListener(updater);
  /bootable/recovery/updater/
Android.mk 80 # updater (static executable)
84 LOCAL_MODULE := updater
87 updater.cpp
105 # gets #included by updater.c. It calls all those registration
109 # These libs are also linked in with updater, but we don't try to call
  /sdk/apps/NotificationStudio/src/com/android/notificationstudio/editor/
Editors.java 72 Runnable updater = editor.bindEditor(editorView, item, new Runnable() {
83 // store the updater as the view tag
84 editorView.setTag(updater);
86 sUpdatePreset = updater;
  /external/autotest/server/site_tests/firmware_ChipFwUpdate/
firmware_ChipFwUpdate.py 113 cbfs_path = self.faft_client.updater.cbfs_setup_work_dir()
114 bios_relative_path = self.faft_client.updater.get_bios_relative_path()
130 if not self.faft_client.updater.cbfs_extract_chip(chip.fw_name):
135 hashblob = self.faft_client.updater.cbfs_get_chip_hash(
186 if not self.faft_client.updater.cbfs_replace_chip(
198 if not self.faft_client.updater.cbfs_sign_and_flash():
  /external/autotest/server/site_tests/firmware_CompareChipFwToShellBall/
firmware_CompareChipFwToShellBall.py 118 work_path = self.faft_client.updater.get_work_path()
119 bios_relative_path = self.faft_client.updater.get_bios_relative_path()
131 cbfs_path = self.faft_client.updater.cbfs_setup_work_dir()
132 bios_relative_path = self.faft_client.updater.get_bios_relative_path()
160 if not self.faft_client.updater.cbfs_extract_chip(chip.fw_name):
165 hashblob = self.faft_client.updater.cbfs_get_chip_hash(
  /external/skia/src/gpu/text/
GrAtlasManager.h 96 void setUseTokenBulk(const GrDrawOpAtlas::BulkUseTokenUpdater& updater,
99 this->getAtlas(format)->setLastUseTokenBulk(updater, token);
  /external/autotest/server/site_tests/autoupdate_P2P/
autoupdate_P2P.py 75 updater = autoupdater.ChromiumOSUpdater(update_url, host)
76 updater.update_image()
127 updater = autoupdater.ChromiumOSUpdater(update_url, host,
129 updater.update_image()
  /external/skqp/src/gpu/text/
GrAtlasGlyphCache.h 159 void addGlyphToBulkAndSetUseToken(GrDrawOpAtlas::BulkUseTokenUpdater* updater, GrGlyph* glyph,
162 updater->add(glyph->fID);
166 void setUseTokenBulk(const GrDrawOpAtlas::BulkUseTokenUpdater& updater,
169 this->getAtlas(format)->setLastUseTokenBulk(updater, token);
  /external/autotest/server/site_tests/firmware_ECUpdateId/
firmware_ECUpdateId.py 27 # It makes updater-related RPCs to use the active AP/EC firmware,
111 self.faft_client.updater.modify_ecid_and_flash_to_bios()
112 modified_hash = self.faft_client.updater.get_ec_hash()

Completed in 395 milliseconds

1 2 3 4 5 6 7 8