Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6e8483f3 authored by android-build-team Robot's avatar android-build-team Robot
Browse files

Snap for 6520975 from bd9221b7 to mainline-release

Change-Id: Ib0a4a009571bc90ae7765a4ce9061bc92abd9297
parents a1305d8d bd9221b7
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
drops {
  android_build_drop {
    build_id: "6508977"
    target: "CtsShim"
    source_file: "aosp_arm64/CtsShimPriv.apk"
  }
  dest_file: "packages/CtsShim/apk//arm/CtsShimPriv.apk"
  version: ""
  version_group: ""
  git_project: "platform/frameworks/base"
  git_branch: "rvc-dev"
}
+12 −0
Original line number Diff line number Diff line
drops {
  android_build_drop {
    build_id: "6508977"
    target: "CtsShim"
    source_file: "aosp_arm64/CtsShim.apk"
  }
  dest_file: "packages/CtsShim/apk//arm/CtsShim.apk"
  version: ""
  version_group: ""
  git_project: "platform/frameworks/base"
  git_branch: "rvc-dev"
}
+12 −0
Original line number Diff line number Diff line
drops {
  android_build_drop {
    build_id: "6508977"
    target: "CtsShim"
    source_file: "aosp_x86_64/CtsShimPriv.apk"
  }
  dest_file: "packages/CtsShim/apk//x86/CtsShimPriv.apk"
  version: ""
  version_group: ""
  git_project: "platform/frameworks/base"
  git_branch: "rvc-dev"
}
+12 −0
Original line number Diff line number Diff line
drops {
  android_build_drop {
    build_id: "6508977"
    target: "CtsShim"
    source_file: "aosp_x86_64/CtsShim.apk"
  }
  dest_file: "packages/CtsShim/apk//x86/CtsShim.apk"
  version: ""
  version_group: ""
  git_project: "platform/frameworks/base"
  git_branch: "rvc-dev"
}
+6 −6
Original line number Diff line number Diff line
@@ -67,9 +67,9 @@ import java.util.function.Consumer;
 * <pre class="prettyprint">
 *     final long sessionId = blobStoreManager.createSession(blobHandle);
 *     try (BlobStoreManager.Session session = blobStoreManager.openSession(sessionId)) {
 *         try (ParcelFileDescriptor pfd = new ParcelFileDescriptor.AutoCloseOutputStream(
 *         try (OutputStream out = new ParcelFileDescriptor.AutoCloseOutputStream(
 *                 session.openWrite(offsetBytes, lengthBytes))) {
 *             writeData(pfd);
 *             writeData(out);
 *         }
 *     }
 * </pre>
@@ -100,9 +100,9 @@ import java.util.function.Consumer;
 * <p> The following code snippet shows how to specify the access mode and commit the session:
 * <pre class="prettyprint">
 *     try (BlobStoreManager.Session session = blobStoreManager.openSession(sessionId)) {
 *         try (ParcelFileDescriptor pfd = new ParcelFileDescriptor.AutoCloseOutputStream(
 *         try (OutputStream out = new ParcelFileDescriptor.AutoCloseOutputStream(
 *                 session.openWrite(offsetBytes, lengthBytes))) {
 *             writeData(pfd);
 *             writeData(out);
 *         }
 *         session.allowSameSignatureAccess();
 *         session.allowPackageAccess(packageName, certificate);
@@ -134,9 +134,9 @@ import java.util.function.Consumer;
 *
 * <p> The following code snippet shows how to access the data blob:
 * <pre class="prettyprint">
 *     try (ParcelFileDescriptor pfd = new ParcelFileDescriptor.AutoCloseInputStream(
 *     try (InputStream in = new ParcelFileDescriptor.AutoCloseInputStream(
 *             blobStoreManager.openBlob(blobHandle)) {
 *         useData(pfd);
 *         useData(in);
 *     }
 * </pre>
 */
Loading