/frameworks/native/cmds/installd/ |
otapreopt_slot.sh | 23 if test -d /data/ota/$SLOT_SUFFIX/dalvik-cache ; then 27 NEW_SIZE=$(du -h -s /data/ota/$SLOT_SUFFIX/dalvik-cache) 28 mv /data/ota/$SLOT_SUFFIX/dalvik-cache/* /data/dalvik-cache/ 29 rmdir /data/ota/$SLOT_SUFFIX/dalvik-cache 30 rmdir /data/ota/$SLOT_SUFFIX
|
/tools/test/connectivity/acts/framework/acts/libs/ota/ota_tools/ |
ota_tool_factory.py | 17 from acts.libs.ota.ota_tools.adb_sideload_ota_tool import AdbSideloadOtaTool 18 from acts.libs.ota.ota_tools.update_device_ota_tool import UpdateDeviceOtaTool 44 raise KeyError('Given Ota Tool class name does not match a known '
|
adb_sideload_ota_tool.py | 19 from acts.libs.ota.ota_tools.ota_tool import OtaTool 21 # OTA Packages can be upwards of 1 GB. This may take some time to transfer over 40 logging.info('Sideloading ota package')
|
update_device_ota_tool.py | 22 from acts.libs.ota.ota_tools import ota_tool 26 # OTA Packages can be upwards of 1 GB. This may take some time to transfer over 33 """Runs an OTA Update with system/update_engine/scripts/update_device.py."""
|
/packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/ota/ |
OtaService.java | 17 package com.android.managedprovisioning.ota; 24 * Service that keeps the ota process alive.
|
PreBootListener.java | 16 package com.android.managedprovisioning.ota;
|
TaskExecutor.java | 17 package com.android.managedprovisioning.ota; 23 * Class that executes the provisioning tasks during the OTA process.
|
/tools/test/connectivity/acts/framework/tests/libs/ota/ota_tools/ |
adb_sideload_ota_tool_test.py | 20 from acts.libs.ota.ota_runners import ota_runner 21 from acts.libs.ota.ota_tools import ota_tool 22 from acts.libs.ota.ota_tools import adb_sideload_ota_tool
|
ota_tool_test.py | 18 from acts.libs.ota.ota_tools import ota_tool
|
update_device_ota_tool_test.py | 20 from acts.libs.ota.ota_runners import ota_runner 21 from acts.libs.ota.ota_tools import update_device_ota_tool
|
ota_tool_factory_test.py | 18 from acts.libs.ota.ota_tools import ota_tool_factory
|
/tools/test/connectivity/acts/tests/sample/ |
OtaSampleTest.py | 18 from acts.libs.ota import ota_updater 22 """Demonstrates an example OTA Update test."""
|
/tools/test/connectivity/acts/framework/acts/libs/ota/ota_runners/ |
ota_runner_factory.py | 20 from acts.libs.ota.ota_runners import ota_runner 21 from acts.libs.ota.ota_tools import ota_tool_factory 22 from acts.libs.ota.ota_tools import adb_sideload_ota_tool 34 for that device. This will prevent OTA Update tests that accidentally flash 39 android_devices: The devices to run an OTA Update on. 53 for that device. This will prevent OTA Update tests that accidentally flash 58 android_device: The device to run the OTA Update on. 111 update.zip package location(s) for running an OTA update. 113 sl4a.apk package location(s) for running an OTA update. 116 android_device: The AndroidDevice to run the OTA Update on [all...] |
/packages/apps/ManagedProvisioning/tests/instrumentation/src/com/android/managedprovisioning/ota/ |
TaskExecutorTest.java | 17 package com.android.managedprovisioning.ota;
|
/tools/test/connectivity/acts/framework/acts/libs/ota/ |
ota_updater.py | 18 from acts.libs.ota.ota_runners import ota_runner_factory 40 'initialized for OTA Updates. Did you forget to call'
|
/tools/test/connectivity/acts/framework/tests/libs/ota/ |
ota_updater_test.py | 19 from acts.libs.ota import ota_updater 20 from acts.libs.ota.ota_runners import ota_runner 54 with mock.patch('acts.libs.ota.ota_runners.ota_runner_factory.'
|
/tools/tradefederation/core/prod-tests/src/com/android/ota/tests/ |
OtaStabilityTestTest.java | 16 package com.android.ota.tests;
|
/system/update_engine/scripts/ |
update_device.py | 35 # The path used to store the OTA package when applying the package from a file. 77 Android OTA packages traditionally used a .zip file to store the payload. When 83 # Android OTA package file paths. 281 ota = AndroidOTAPackage(ota_filename) 282 headers = ota.properties 288 '--payload=%s' % payload_url, '--offset=%d' % ota.offset, 289 '--size=%d' % ota.size, '--headers="%s"' % headers] 348 parser = argparse.ArgumentParser(description='Android A/B OTA helper.') 350 help='the OTA package file (a .zip file) or raw payload \ 399 ota = AndroidOTAPackage(args.otafile [all...] |
/build/make/target/product/ |
runtime_libart.mk | 93 pm.dexopt.ab-ota=speed-profile \
|
/tools/test/connectivity/acts/framework/tests/libs/ota/ota_runners/ |
ota_runner_factory_test.py | 23 from acts.libs.ota.ota_runners import ota_runner 24 from acts.libs.ota.ota_runners import ota_runner_factory 78 function_path = 'acts.libs.ota.ota_runners.ota_runner_factory.create' 94 function_path = 'acts.libs.ota.ota_runners.ota_runner_factory.create' 102 with mock.patch('acts.libs.ota.ota_tools.ota_tool_factory.create'): 108 with mock.patch('acts.libs.ota.ota_tools.ota_tool_factory.create'): 111 'ota': 'pkg' 112 }, {'ota': 'sl4a'}, self.device) 115 with mock.patch('acts.libs.ota.ota_tools.ota_tool_factory.create'): 120 with mock.patch('acts.libs.ota.ota_tools.ota_tool_factory.create') [all...] |
ota_runner_test.py | 20 from acts.libs.ota.ota_tools import ota_tool 21 from acts.libs.ota.ota_runners import ota_runner
|
/tools/test/connectivity/acts/tests/google/bt/ota/ |
BtOtaTest.py | 13 Test script for Bluetooth OTA testing. 16 from acts.libs.ota import ota_updater 38 #Run OTA below, if ota fails then abort all tests 43 "Failed up apply OTA update. Aborting tests") 48 """Test device name persists after OTA update 50 Test device name persists after OTA update 53 1. Verify pre OTA device name matches post OTA device name 62 TAGS: OTA [all...] |
/packages/providers/TelephonyProvider/src/com/android/providers/telephony/ |
CarrierIdProvider.java | 351 * Update database with data from assets or ota only if version jumps. 487 * Get the latest version from the last applied, assets and ota file. if the latest version 495 CarrierIdProto.CarrierList ota = null; local 508 ota = CarrierIdProto.CarrierList.parseFrom(readInputStreamToByteArray(is)); 510 Log.e(TAG, "read carrier list from ota pb failure: " + ex); 520 if (ota != null && ota.version > version) { 521 carrierList = ota; 522 version = ota.version;
|
/system/core/bootstat/ |
boot_reason_test.sh | 490 ota test 499 - NB: should report ota 535 EXPECT_PROPERTY sys.boot.reason "\(reboot,ota\|bootloader\)" 537 report_bootstat_logs reboot,ota bootloader 547 adb reboot ota 549 EXPECT_PROPERTY sys.boot.reason reboot,ota 550 EXPECT_PROPERTY persist.sys.boot.reason reboot,ota 551 report_bootstat_logs reboot,ota 1053 eval set properties ota cold factory_reset hard battery unknown \ [all...] |
/frameworks/base/services/core/java/com/android/server/pm/ |
OtaDexoptService.java | 47 * A service for A/B OTA dexopting. 59 // The amount of "available" (free - low threshold) space necessary at the start of an OTA to 101 OtaDexoptService ota = new OtaDexoptService(context, packageManagerService); local 102 ServiceManager.addService("otadexopt", ota); 105 ota.moveAbArtifacts(packageManagerService.mInstaller); 107 return ota; 125 // Important: the packages we need to run with ab-ota compiler-reason. 165 Log.i(TAG, "Cleaning up OTA Dexopt state."); 211 Log.w(TAG, "Not enough space for OTA dexopt, stopping with " 314 // Use the package manager install and install lock here for the OTA dex optimizer [all...] |