Home
last modified time | relevance | path

Searched refs:appFile (Results 1 – 6 of 6) sorted by relevance

/tools/tradefederation/core/test_framework/com/android/tradefed/targetprep/
DInstallAllTestZipAppsSetup.java199 void installApk(File appFile, ITestDevice device) in installApk() argument
201 CLog.d("Installing apk from %s ...", appFile.getAbsolutePath()); in installApk()
202 String result = device.installPackage(appFile, true, mInstallArgs.toArray(new String[] {})); in installApk()
206 addApkToInstalledList(appFile, device); in installApk()
213 appFile, device.getSerialNumber(), result), in installApk()
218 appFile, device.getSerialNumber(), result); in installApk()
229 void addApkToInstalledList(File appFile, ITestDevice device) throws TargetSetupError { in addApkToInstalledList() argument
230 String packageName = getAppPackageName(appFile); in addApkToInstalledList()
244 String getAppPackageName(File appFile) { in getAppPackageName() argument
245 AaptParser parser = AaptParser.parse(appFile); in getAppPackageName()
DAllTestAppsInstallSetup.java150 void installApk(File appFile, ITestDevice device) throws TargetSetupError, in installApk() argument
152 CLog.d("Installing apk from %s ...", appFile.getAbsolutePath()); in installApk()
153 String result = device.installPackage(appFile, true, in installApk()
158 AaptParser parser = AaptParser.parse(appFile); in installApk()
172 appFile, device.getSerialNumber(), result), in installApk()
176 CLog.e("Failed to install %s on %s. Reason: '%s'", appFile, in installApk()
/tools/tradefederation/core/src/com/android/tradefed/targetprep/
DInstallApexModuleTargetPreparer.java1214 for (File appFile : testAppFileNames.keySet()) { in collectApexInfoFromApexModules()
1215 if (isApex(appFile)) { in collectApexInfoFromApexModules()
1217 retrieveApexInfo(appFile, testInfo.getDevice().getDeviceDescriptor()); in collectApexInfoFromApexModules()
/tools/tradefederation/core/javatests/com/android/tradefed/targetprep/
DInstallAllTestZipAppsSetupTest.java73 String getAppPackageName(File appFile) { in setUp()
/tools/tradefederation/core/src/com/android/tradefed/device/
DTestDevice.java734 for (File appFile : appFiles) { in allowLegacyStorageForApps()
735 AaptParser aaptParser = createParser(appFile); in allowLegacyStorageForApps()
778 protected AaptParser createParser(File appFile) { in createParser() argument
779 return AaptParser.parse(appFile); in createParser()
/tools/tradefederation/core/javatests/com/android/tradefed/device/
DTestDeviceTest.java182 protected AaptParser createParser(File appFile) { in createParser() argument