Searched refs:appFile (Results 1 – 6 of 6) sorted by relevance
/tools/tradefederation/core/test_framework/com/android/tradefed/targetprep/ |
D | InstallAllTestZipAppsSetup.java | 199 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()
|
D | AllTestAppsInstallSetup.java | 150 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/ |
D | InstallApexModuleTargetPreparer.java | 1214 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/ |
D | InstallAllTestZipAppsSetupTest.java | 73 String getAppPackageName(File appFile) { in setUp()
|
/tools/tradefederation/core/src/com/android/tradefed/device/ |
D | TestDevice.java | 734 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/ |
D | TestDeviceTest.java | 182 protected AaptParser createParser(File appFile) { in createParser() argument
|