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

Commit b4eb99bd authored by Venkatarama Avadhani's avatar Venkatarama Avadhani
Browse files

CAS: Add @hide annotations

Add annotations so the java-source library can be used in
frameworks/base to initialize the constants.

Bug: 230377377, 227673974, 233862815
Test: build
Change-Id: Iff7f937bd996866e19a8b23492cb8a982d1d57fe
parent 7b540655
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -32,6 +32,7 @@
// later when a module using the interface is updated, e.g., Mainline modules.

package android.hardware.cas;
/* @hide */
@VintfStability
parcelable AidlCasPluginDescriptor {
  int caSystemId;
+1 −0
Original line number Diff line number Diff line
@@ -32,6 +32,7 @@
// later when a module using the interface is updated, e.g., Mainline modules.

package android.hardware.cas;
/* @hide */
@VintfStability
union DestinationBuffer {
  android.hardware.cas.SharedBuffer nonsecureMemory;
+1 −0
Original line number Diff line number Diff line
@@ -32,6 +32,7 @@
// later when a module using the interface is updated, e.g., Mainline modules.

package android.hardware.cas;
/* @hide */
@VintfStability
interface ICas {
  void closeSession(in byte[] sessionId);
+1 −0
Original line number Diff line number Diff line
@@ -32,6 +32,7 @@
// later when a module using the interface is updated, e.g., Mainline modules.

package android.hardware.cas;
/* @hide */
@VintfStability
interface ICasListener {
  void onEvent(in int event, in int arg, in byte[] data);
+1 −0
Original line number Diff line number Diff line
@@ -32,6 +32,7 @@
// later when a module using the interface is updated, e.g., Mainline modules.

package android.hardware.cas;
/* @hide */
@VintfStability
interface IDescrambler {
  int descramble(in android.hardware.cas.ScramblingControl scramblingControl, in android.hardware.cas.SubSample[] subSamples, in android.hardware.cas.SharedBuffer srcBuffer, in long srcOffset, in android.hardware.cas.DestinationBuffer dstBuffer, in long dstOffset);
Loading