Home
last modified time | relevance | path

Searched refs:encryptionParams (Results 1 – 8 of 8) sorted by relevance

/frameworks/base/packages/DefaultContainerService/src/com/android/defcontainer/
DDefaultContainerService.java123 public int copyResource(final Uri packageURI, ContainerEncryptionParams encryptionParams,
133 copyFile(packageURI, autoOut, encryptionParams);
451 ContainerEncryptionParams encryptionParams) throws FileNotFoundException, IOException, in copyFile() argument
488 ApkContainer container = new ApkContainer(inStream, encryptionParams); in copyFile()
519 public ApkContainer(InputStream inStream, ContainerEncryptionParams encryptionParams) in ApkContainer() argument
521 if (encryptionParams == null) { in ApkContainer()
524 mInStream = getDecryptedStream(inStream, encryptionParams); in ApkContainer()
525 mTag = encryptionParams.getMacTag(); in ApkContainer()
537 private Mac getMacInstance(ContainerEncryptionParams encryptionParams) throws IOException { in getMacInstance() argument
540 final String macAlgo = encryptionParams.getMacAlgorithm(); in getMacInstance()
[all …]
/frameworks/base/core/java/com/android/internal/app/
DIMediaContainerService.aidl29 int copyResource(in Uri packageURI, in ContainerEncryptionParams encryptionParams, in copyResource() argument
/frameworks/base/core/java/android/content/pm/
DIPackageManager.aidl366 in ManifestDigest manifestDigest, in ContainerEncryptionParams encryptionParams); in installPackageWithVerification() argument
371 in ContainerEncryptionParams encryptionParams); in installPackageWithVerificationAndEncryption() argument
DPackageManager.java2449 ContainerEncryptionParams encryptionParams); in installPackageWithVerification() argument
2480 ContainerEncryptionParams encryptionParams); in installPackageWithVerificationAndEncryption() argument
/frameworks/base/test-runner/src/android/test/mock/
DMockPackageManager.java557 ManifestDigest manifestDigest, ContainerEncryptionParams encryptionParams) { in installPackageWithVerification() argument
567 VerificationParams verificationParams, ContainerEncryptionParams encryptionParams) { in installPackageWithVerificationAndEncryption() argument
/frameworks/base/core/java/android/app/
DApplicationPackageManager.java1031 ManifestDigest manifestDigest, ContainerEncryptionParams encryptionParams) { in installPackageWithVerification() argument
1034 verificationURI, manifestDigest, encryptionParams); in installPackageWithVerification()
1043 VerificationParams verificationParams, ContainerEncryptionParams encryptionParams) { in installPackageWithVerificationAndEncryption() argument
1046 installerPackageName, verificationParams, encryptionParams); in installPackageWithVerificationAndEncryption()
/frameworks/base/cmds/pm/src/com/android/commands/pm/
DPm.java858 final ContainerEncryptionParams encryptionParams; in runInstall() local
884 encryptionParams = new ContainerEncryptionParams(algo, new IvParameterSpec(iv), in runInstall()
891 encryptionParams = null; in runInstall()
936 installerPackageName, verificationParams, encryptionParams); in runInstall()
/frameworks/base/services/java/com/android/server/pm/
DPackageManagerService.java5606 ManifestDigest manifestDigest, ContainerEncryptionParams encryptionParams) { in installPackageWithVerification() argument
5610 installerPackageName, verificationParams, encryptionParams); in installPackageWithVerification()
5615 VerificationParams verificationParams, ContainerEncryptionParams encryptionParams) { in installPackageWithVerificationAndEncryption() argument
5642 verificationParams, encryptionParams, user); in installPackageWithVerificationAndEncryption()
6194 final ContainerEncryptionParams encryptionParams; field in PackageManagerService.InstallParams
6199 ContainerEncryptionParams encryptionParams, UserHandle user) { in InstallParams() argument
6206 this.encryptionParams = encryptionParams; in InstallParams()
6308 if (encryptionParams != null || !"file".equals(mPackageURI.getScheme())) { in handleStartCopy()
6322 .copyResource(mPackageURI, encryptionParams, out); in handleStartCopy()