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

Commit 509d0ffb authored by Sarah Chin's avatar Sarah Chin
Browse files

Run update-api on IRadio services

Update the API surface for all IRadio services.
There is no functional change.

Test: build
Change-Id: Ie80cfc891dd88fa6eb0280ed555ac7ab7f7a2606
parent 4f2132e3
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -34,8 +34,8 @@
package android.hardware.radio.config;
@Backing(type="int") @JavaDerive(toString=true) @VintfStability
enum MultipleEnabledProfilesMode {
  NONE = 0,
  MEP_A1 = 1,
  MEP_A2 = 2,
  MEP_B = 3,
  NONE,
  MEP_A1,
  MEP_A2,
  MEP_B,
}
+4 −4
Original line number Diff line number Diff line
@@ -34,8 +34,8 @@
package android.hardware.radio.data;
@Backing(type="int") @JavaDerive(toString=true) @VintfStability
enum ApnAuthType {
  NO_PAP_NO_CHAP = 0,
  PAP_NO_CHAP = 1,
  NO_PAP_CHAP = 2,
  PAP_CHAP = 3,
  NO_PAP_NO_CHAP,
  PAP_NO_CHAP,
  NO_PAP_CHAP,
  PAP_CHAP,
}
+15 −15
Original line number Diff line number Diff line
@@ -35,19 +35,19 @@ package android.hardware.radio.data;
@Backing(type="int") @JavaDerive(toString=true) @VintfStability
enum ApnTypes {
  NONE = 0,
  DEFAULT = 1,
  MMS = 2,
  SUPL = 4,
  DUN = 8,
  HIPRI = 16,
  FOTA = 32,
  IMS = 64,
  CBS = 128,
  IA = 256,
  EMERGENCY = 512,
  MCX = 1024,
  XCAP = 2048,
  VSIM = 4096,
  BIP = 8192,
  ENTERPRISE = 16384,
  DEFAULT = (1 << 0),
  MMS = (1 << 1),
  SUPL = (1 << 2),
  DUN = (1 << 3),
  HIPRI = (1 << 4),
  FOTA = (1 << 5),
  IMS = (1 << 6),
  CBS = (1 << 7),
  IA = (1 << 8),
  EMERGENCY = (1 << 9),
  MCX = (1 << 10),
  XCAP = (1 << 11),
  VSIM = (1 << 12),
  BIP = (1 << 13),
  ENTERPRISE = (1 << 14),
}
+339 −339

File changed.

Preview size limit exceeded, changes collapsed.

+1 −1
Original line number Diff line number Diff line
@@ -60,7 +60,7 @@ parcelable DataProfileInfo {
  const int ID_FOTA = 3;
  const int ID_CBS = 4;
  const int ID_OEM_BASE = 1000;
  const int ID_INVALID = -1;
  const int ID_INVALID = 0xFFFFFFFF;
  const int TYPE_COMMON = 0;
  const int TYPE_3GPP = 1;
  const int TYPE_3GPP2 = 2;
Loading