Home
last modified time | relevance | path

Searched refs:hostPackageDir (Results 1 – 2 of 2) sorted by relevance

/tools/tradefederation/core/tests/src/com/android/tradefed/device/
DLocalAndroidVirtualDeviceTest.java223 Capture<String> hostPackageDir, in mockAcloudCreate() argument
257 EasyMock.capture(hostPackageDir), in mockAcloudCreate()
330 Capture<String> hostPackageDir = new Capture<String>(); in testPreinvocationSetupSuccess() local
337 hostPackageDir, in testPreinvocationSetupSuccess()
357 File capturedHostPackageDir = new File(hostPackageDir.getValue()); in testPreinvocationSetupSuccess()
388 Capture<String> hostPackageDir = new Capture<String>(); in testPreInvocationSetupBootFailure() local
395 hostPackageDir, in testPreInvocationSetupBootFailure()
417 File capturedHostPackageDir = new File(hostPackageDir.getValue()); in testPreInvocationSetupBootFailure()
437 Capture<String> hostPackageDir = new Capture<String>(); in testPreInvocationSetupFailure() local
440 mockAcloudCreate(CommandStatus.FAILED, "", reportFile, hostPackageDir, imageDir); in testPreInvocationSetupFailure()
[all …]
/tools/tradefederation/core/src/com/android/tradefed/device/
DLocalAndroidVirtualDevice.java199 File hostPackageDir = null; in findHostPackage() local
203 hostPackageDir = extractArchive(hostPackage); in findHostPackage()
209 if (hostPackageDir == null) { in findHostPackage()
215 hostPackageDir = new File(androidHostOut); in findHostPackage()
218 if (hostPackageDir == null || !hostPackageDir.isDirectory()) { in findHostPackage()
225 FileUtil.chmodRWXRecursively(new File(hostPackageDir, "bin")); in findHostPackage()
226 return hostPackageDir; in findHostPackage()