Home
last modified time | relevance | path

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

/aosp14/frameworks/base/core/java/android/os/incremental/
H A DIncrementalStorage.java182 @Nullable byte[] metadata, @Nullable byte[] v4signatureBytes, @Nullable byte[] content) in makeFile() argument
188 validateV4Signature(v4signatureBytes); in makeFile()
193 params.signature = v4signatureBytes; in makeFile()
489 private static void validateV4Signature(@Nullable byte[] v4signatureBytes) in validateV4Signature() argument
491 if (v4signatureBytes == null || v4signatureBytes.length == 0) { in validateV4Signature()
497 signature = V4Signature.readFrom(v4signatureBytes); in validateV4Signature()
/aosp14/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageManagerShellCommand.java3823 byte[] v4signatureBytes = null; in processArgForLocalFile()
3830 v4signatureBytes = v4signature.toByteArray(); in processArgForLocalFile()
3838 session.addFile(LOCATION_DATA_APP, name, size, metadata.toByteArray(), v4signatureBytes); in processArgForLocalFile()