Home
last modified time | relevance | path

Searched refs:certFile (Results 1 – 3 of 3) sorted by relevance

/tools/apksig/src/apksigner/java/com/android/apksigner/
DSignerParams.java65 private String certFile; field in SignerParams
130 public void setCertFile(String certFile) { in setCertFile() argument
131 this.certFile = certFile; in setCertFile()
166 && (certFile == null) in isEmpty()
177 } else if (certFile != null) { in loadPrivateKeyAndCerts()
392 if (certFile == null) { in loadPrivateKeyAndCertsFromFiles()
435 try (FileInputStream in = new FileInputStream(certFile)) { in loadPrivateKeyAndCertsFromFiles()
/tools/tradefederation/core/tests/src/com/android/tradefed/device/
DTestDeviceTest.java1262 final String certFile = "foo.dc"; in testInstallPackages() local
1264 EasyMock.expect(mMockIDevice.syncPackageToDevice(EasyMock.contains(certFile))).andReturn( in testInstallPackages()
1265 certFile); in testInstallPackages()
1270 EasyMock.eq(certFile), in testInstallPackages()
1280 mMockIDevice.removeRemotePackage(certFile); in testInstallPackages()
1285 assertNull(mTestDevice.installPackage(new File(apkFile), new File(certFile), true, "-l")); in testInstallPackages()
1305 final String certFile = "foo.dc"; in testInstallPackages_timeout() local
1307 EasyMock.expect(mMockIDevice.syncPackageToDevice(EasyMock.contains(certFile))) in testInstallPackages_timeout()
1308 .andReturn(certFile); in testInstallPackages_timeout()
1315 EasyMock.eq(certFile), in testInstallPackages_timeout()
[all …]
/tools/tradefederation/core/src/com/android/tradefed/device/
DTestDevice.java284 public String installPackage(final File packageFile, final File certFile, in installPackage() argument
299 getIDevice().syncPackageToDevice(certFile.getAbsolutePath()); in installPackage()