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

Commit 2cacdcec authored by Aaqib Ismail's avatar Aaqib Ismail Committed by Android (Google) Code Review
Browse files

Merge "Update automotive generated AIDL files"

parents 93410d8d 442c89c4
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -34,10 +34,10 @@
package android.hardware.automotive.vehicle;
@Backing(type="int") @VintfStability
enum Obd2CommonIgnitionMonitors {
  COMPONENTS_AVAILABLE = 1,
  COMPONENTS_INCOMPLETE = 2,
  FUEL_SYSTEM_AVAILABLE = 4,
  FUEL_SYSTEM_INCOMPLETE = 8,
  MISFIRE_AVAILABLE = 16,
  MISFIRE_INCOMPLETE = 32,
  COMPONENTS_AVAILABLE = (0x1 << 0),
  COMPONENTS_INCOMPLETE = (0x1 << 1),
  FUEL_SYSTEM_AVAILABLE = (0x1 << 2),
  FUEL_SYSTEM_INCOMPLETE = (0x1 << 3),
  MISFIRE_AVAILABLE = (0x1 << 4),
  MISFIRE_INCOMPLETE = (0x1 << 5),
}
+18 −18
Original line number Diff line number Diff line
@@ -34,22 +34,22 @@
package android.hardware.automotive.vehicle;
@Backing(type="int") @VintfStability
enum Obd2CompressionIgnitionMonitors {
  COMPONENTS_AVAILABLE = 1,
  COMPONENTS_INCOMPLETE = 2,
  FUEL_SYSTEM_AVAILABLE = 4,
  FUEL_SYSTEM_INCOMPLETE = 8,
  MISFIRE_AVAILABLE = 16,
  MISFIRE_INCOMPLETE = 32,
  EGR_OR_VVT_AVAILABLE = 64,
  EGR_OR_VVT_INCOMPLETE = 128,
  PM_FILTER_AVAILABLE = 256,
  PM_FILTER_INCOMPLETE = 512,
  EXHAUST_GAS_SENSOR_AVAILABLE = 1024,
  EXHAUST_GAS_SENSOR_INCOMPLETE = 2048,
  BOOST_PRESSURE_AVAILABLE = 4096,
  BOOST_PRESSURE_INCOMPLETE = 8192,
  NOx_SCR_AVAILABLE = 16384,
  NOx_SCR_INCOMPLETE = 32768,
  NMHC_CATALYST_AVAILABLE = 65536,
  NMHC_CATALYST_INCOMPLETE = 131072,
  COMPONENTS_AVAILABLE = (0x1 << 0),
  COMPONENTS_INCOMPLETE = (0x1 << 1),
  FUEL_SYSTEM_AVAILABLE = (0x1 << 2),
  FUEL_SYSTEM_INCOMPLETE = (0x1 << 3),
  MISFIRE_AVAILABLE = (0x1 << 4),
  MISFIRE_INCOMPLETE = (0x1 << 5),
  EGR_OR_VVT_AVAILABLE = (0x1 << 6),
  EGR_OR_VVT_INCOMPLETE = (0x1 << 7),
  PM_FILTER_AVAILABLE = (0x1 << 8),
  PM_FILTER_INCOMPLETE = (0x1 << 9),
  EXHAUST_GAS_SENSOR_AVAILABLE = (0x1 << 10),
  EXHAUST_GAS_SENSOR_INCOMPLETE = (0x1 << 11),
  BOOST_PRESSURE_AVAILABLE = (0x1 << 12),
  BOOST_PRESSURE_INCOMPLETE = (0x1 << 13),
  NOx_SCR_AVAILABLE = (0x1 << 14),
  NOx_SCR_INCOMPLETE = (0x1 << 15),
  NMHC_CATALYST_AVAILABLE = (0x1 << 16),
  NMHC_CATALYST_INCOMPLETE = (0x1 << 17),
}
+22 −22
Original line number Diff line number Diff line
@@ -34,26 +34,26 @@
package android.hardware.automotive.vehicle;
@Backing(type="int") @VintfStability
enum Obd2SparkIgnitionMonitors {
  COMPONENTS_AVAILABLE = 1,
  COMPONENTS_INCOMPLETE = 2,
  FUEL_SYSTEM_AVAILABLE = 4,
  FUEL_SYSTEM_INCOMPLETE = 8,
  MISFIRE_AVAILABLE = 16,
  MISFIRE_INCOMPLETE = 32,
  EGR_AVAILABLE = 64,
  EGR_INCOMPLETE = 128,
  OXYGEN_SENSOR_HEATER_AVAILABLE = 256,
  OXYGEN_SENSOR_HEATER_INCOMPLETE = 512,
  OXYGEN_SENSOR_AVAILABLE = 1024,
  OXYGEN_SENSOR_INCOMPLETE = 2048,
  AC_REFRIGERANT_AVAILABLE = 4096,
  AC_REFRIGERANT_INCOMPLETE = 8192,
  SECONDARY_AIR_SYSTEM_AVAILABLE = 16384,
  SECONDARY_AIR_SYSTEM_INCOMPLETE = 32768,
  EVAPORATIVE_SYSTEM_AVAILABLE = 65536,
  EVAPORATIVE_SYSTEM_INCOMPLETE = 131072,
  HEATED_CATALYST_AVAILABLE = 262144,
  HEATED_CATALYST_INCOMPLETE = 524288,
  CATALYST_AVAILABLE = 1048576,
  CATALYST_INCOMPLETE = 2097152,
  COMPONENTS_AVAILABLE = (0x1 << 0),
  COMPONENTS_INCOMPLETE = (0x1 << 1),
  FUEL_SYSTEM_AVAILABLE = (0x1 << 2),
  FUEL_SYSTEM_INCOMPLETE = (0x1 << 3),
  MISFIRE_AVAILABLE = (0x1 << 4),
  MISFIRE_INCOMPLETE = (0x1 << 5),
  EGR_AVAILABLE = (0x1 << 6),
  EGR_INCOMPLETE = (0x1 << 7),
  OXYGEN_SENSOR_HEATER_AVAILABLE = (0x1 << 8),
  OXYGEN_SENSOR_HEATER_INCOMPLETE = (0x1 << 9),
  OXYGEN_SENSOR_AVAILABLE = (0x1 << 10),
  OXYGEN_SENSOR_INCOMPLETE = (0x1 << 11),
  AC_REFRIGERANT_AVAILABLE = (0x1 << 12),
  AC_REFRIGERANT_INCOMPLETE = (0x1 << 13),
  SECONDARY_AIR_SYSTEM_AVAILABLE = (0x1 << 14),
  SECONDARY_AIR_SYSTEM_INCOMPLETE = (0x1 << 15),
  EVAPORATIVE_SYSTEM_AVAILABLE = (0x1 << 16),
  EVAPORATIVE_SYSTEM_INCOMPLETE = (0x1 << 17),
  HEATED_CATALYST_AVAILABLE = (0x1 << 18),
  HEATED_CATALYST_INCOMPLETE = (0x1 << 19),
  CATALYST_AVAILABLE = (0x1 << 20),
  CATALYST_INCOMPLETE = (0x1 << 21),
}
+6 −6
Original line number Diff line number Diff line
@@ -36,10 +36,10 @@ package android.hardware.automotive.vehicle;
parcelable UserInfo {
  int userId = 0;
  int flags;
  const int USER_FLAG_SYSTEM = 1;
  const int USER_FLAG_GUEST = 2;
  const int USER_FLAG_EPHEMERAL = 4;
  const int USER_FLAG_ADMIN = 8;
  const int USER_FLAG_DISABLED = 16;
  const int USER_FLAG_PROFILE = 32;
  const int USER_FLAG_SYSTEM = 0x01;
  const int USER_FLAG_GUEST = 0x02;
  const int USER_FLAG_EPHEMERAL = 0x04;
  const int USER_FLAG_ADMIN = 0x08;
  const int USER_FLAG_DISABLED = 0x10;
  const int USER_FLAG_PROFILE = 0x20;
}
+3 −3
Original line number Diff line number Diff line
@@ -34,7 +34,7 @@
package android.hardware.automotive.vehicle;
@Backing(type="int") @VintfStability
enum VehicleApPowerStateConfigFlag {
  ENABLE_DEEP_SLEEP_FLAG = 1,
  CONFIG_SUPPORT_TIMER_POWER_ON_FLAG = 2,
  ENABLE_HIBERNATION_FLAG = 4,
  ENABLE_DEEP_SLEEP_FLAG = 0x1,
  CONFIG_SUPPORT_TIMER_POWER_ON_FLAG = 0x2,
  ENABLE_HIBERNATION_FLAG = 0x4,
}
Loading