Home
last modified time | relevance | path

Searched refs:updater (Results 1 – 25 of 27) sorted by relevance

12

/external/autotest/client/common_lib/cros/
Dautoupdater_unittest.py39 updater = autoupdater.ChromiumOSUpdater(
43 self.mox.StubOutWithMock(updater.host, 'get_release_version')
44 updater.host.get_release_version().MultipleTimes().AndReturn(
48 self.assertFalse(updater.check_version())
49 self.assertTrue(updater.check_version_to_confirm_install())
52 self.mox.StubOutWithMock(updater.host, 'get_release_version')
53 updater.host.get_release_version().MultipleTimes().AndReturn(
57 self.assertFalse(updater.check_version())
58 self.assertFalse(updater.check_version_to_confirm_install())
61 self.mox.StubOutWithMock(updater.host, 'get_release_version')
[all …]
Dautoupdater.py486 for updater in updaters: updater.start()
487 for updater in updaters: updater.join()
/external/autotest/server/site_tests/firmware_UpdateKernelSubkeyVersion/
Dfirmware_UpdateKernelSubkeyVersion.py25 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')
78 self.faft_client.updater.cleanup()
89 self.faft_client.updater.run_autoupdate('test')
93 self.faft_client.updater.run_bootok('test')
[all …]
/external/autotest/server/site_tests/firmware_UpdateFirmwareDataKeyVersion/
Dfirmware_UpdateFirmwareDataKeyVersion.py25 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(),
63 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')
82 self.faft_client.updater.cleanup()
94 self.faft_client.updater.run_autoupdate('test')
98 self.faft_client.updater.run_bootok('test')
[all …]
/external/autotest/server/site_tests/autoupdate_Rollback/
Dautoupdate_Rollback.py26 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,
/external/autotest/server/site_tests/firmware_UpdateFirmwareVersion/
Dfirmware_UpdateFirmwareVersion.py50 self.faft_client.updater.run_factory_install()
55 self._fwid = self.faft_client.updater.get_fwid()
63 self.faft_client.updater.resign_firmware(self._update_version)
64 self.faft_client.updater.repack_shellball('test')
67 self.faft_client.updater.cleanup()
78 self.faft_client.updater.run_autoupdate('test')
82 self.faft_client.updater.run_bootok('test')
90 self.faft_client.updater.run_recovery()
/external/guava/guava/src/com/google/common/util/concurrent/
DAtomicDouble.java60 private static final AtomicLongFieldUpdater<AtomicDouble> updater = field in AtomicDouble
118 return longBitsToDouble(updater.getAndSet(this, next)); in getAndSet()
132 return updater.compareAndSet(this, in compareAndSet()
153 return updater.weakCompareAndSet(this, in weakCompareAndSet()
170 if (updater.compareAndSet(this, current, next)) { in getAndAdd()
188 if (updater.compareAndSet(this, current, next)) { in addAndGet()
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/generators/rss/
DRSSFeedGetPropertyTask.java59 RSSFeedUpdateEntryTask updater = new RSSFeedUpdateEntryTask(); in execute() local
60 updater.setFile(file.toString()); in execute()
61 updater.setXpath(xpath); in execute()
62 updater.setDebug(debug); in execute()
63 updater.execute(); in execute()
/external/autotest/server/site_tests/firmware_UpdateKernelDataKeyVersion/
Dfirmware_UpdateKernelDataKeyVersion.py35 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())
76 self.faft_client.updater.cleanup()
/external/skia/src/gpu/text/
DGrBatchFontCache.h145 void addGlyphToBulkAndSetUseToken(GrBatchAtlas::BulkUseTokenUpdater* updater, in addGlyphToBulkAndSetUseToken() argument
148 updater->add(glyph->fID); in addGlyphToBulkAndSetUseToken()
152 void setUseTokenBulk(const GrBatchAtlas::BulkUseTokenUpdater& updater, in setUseTokenBulk() argument
155 this->getAtlas(format)->setLastUseTokenBulk(updater, token); in setUseTokenBulk()
/external/autotest/client/cros/faft/utils/
Dfirmware_updater.py144 updater = os.path.join(
147 updater = os.path.join(self._temp_path, 'chromeos-firmwareupdate')
150 '/bin/sh %s --mode %s %s' % (updater, mode, ' '.join(options)))
/external/autotest/server/site_tests/platform_RebootAfterUpdate/
Dplatform_RebootAfterUpdate.py70 updater = autoupdate_utils.get_updater_from_repo_url(host, job_repo_url)
71 updater.update_stateful(clobber=True)
/external/autotest/server/hosts/
Dcros_host.py545 def _try_stateful_update(self, update_url, force_update, updater): argument
571 if not updater.check_version():
586 updater.run_update(update_root=False)
600 def _post_update_processing(self, updater, expected_kernel=None): argument
615 updater.verify_boot_expectations(
618 'build' % (updater.update_version, self.hostname))
620 if not updater.check_version_to_confirm_install():
624 updater.update_version,
765 updater = autoupdater.ChromiumOSUpdater(
772 update_url, force_update, updater)
[all …]
Dservo_host.py441 updater = autoupdater.ChromiumOSUpdater(update_url=url, host=self)
443 status = updater.check_update_status()
486 updater.trigger_update()
496 updater.check_update_status())
/external/skia/src/gpu/
DGrBatchAtlas.h127 void setLastUseTokenBulk(const BulkUseTokenUpdater& updater, GrBatchToken batchToken) { in setLastUseTokenBulk() argument
128 int count = updater.fPlotsToUpdate.count(); in setLastUseTokenBulk()
130 BatchPlot* plot = fPlotArray[updater.fPlotsToUpdate[i]]; in setLastUseTokenBulk()
/external/autotest/server/site_tests/autoupdate_EndToEndTest/
Dautoupdate_EndToEndTest.py919 updater = autoupdater.ChromiumOSUpdater(url, host=self._host)
921 updater.update_stateful(clobber=clobber)
923 updater.update_image()
1166 updater = autoupdater.ChromiumOSUpdater(
1168 updater.trigger_update()
1281 updater = autoupdater.BrilloUpdater(url, host=self._host)
1282 updater.update_image()
1350 updater = autoupdater.BrilloUpdater(url, host=self._host)
1351 updater.trigger_update()
/external/autotest/contrib/
Dcrbug_crawler.py370 updater = UpdateManager(autocommit=True)
372 updater.update(issue,
375 updater.revert()
/external/webrtc/tools/
Dwhitespace.txt13 Testing Git updater.
/external/autotest/client/site_tests/hardware_DiskFirmwareUpgrade/
Dcontrol8 CRITERIA = "Check the disk updater script behaves as expected"
/external/chromium-trace/catapult/systrace/systrace/test_data/
Datrace_thread_names1updater', 397: 'surfaceflinger', 398: 'EventThread', 399: 'surfaceflinger', 400: 'EventThread', 40…
Datrace_extracted_threads1updater', 397: 'surfaceflinger', 398: 'EventThread', 399: 'surfaceflinger', 400: 'EventThread', 40…
Datrace_ps_dump128 system 396 180 146792 9724 ffffffff 00000000 S GL updater
440 system 5717 764 1701620 103200 ffffffff 00000000 S GL updater
473 u0_a20 1692 915 1616624 108684 ffffffff 00000000 S GL updater
625 u0_a22 1644 1305 1674592 127012 ffffffff 00000000 S GL updater
1153 u0_a88 5563 5519 1556696 65876 ffffffff 00000000 S gandalf updater
1166 u0_a88 5583 5519 1556696 65876 ffffffff 00000000 S gandalf updater
/external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rjsmin/bench/
Dbootstrap.js1579 this.updater = this.options.updater || this.updater
1593 .val(this.updater(val))
1598 , updater: function (item) { method in Typeahead
/external/okhttp/website/static/
Dbootstrap.min.js6updater=this.options.updater||this.updater,this.source=this.options.source,this.$menu=e(this.optio… method in t
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/
DDiskLruCacheTest.java482 DiskLruCache.Editor updater = cache.edit("k1"); in updateExistingEntryWithTooFewValuesReusesPreviousValues() local
483 setString(updater, 0, "C"); in updateExistingEntryWithTooFewValuesReusesPreviousValues()
484 updater.commit(); in updateExistingEntryWithTooFewValuesReusesPreviousValues()

12