Update automotive generated AIDL files

Bug: 266986551
Test: atest VtsHalAutomotiveVehicle_TargetTest
Test: atest CtsCarTestCases:CarPropertyManagerTest
Test: atest CtsCarTestCases:VehiclePropertyIdsTest
Change-Id: Iedf926b34839e00e224653e6bdcf8fd440c4acf5
This commit is contained in:
Aaqib Ismail 2023-01-30 12:18:01 -08:00
parent 2576e6d1a9
commit 442c89c4cb
23 changed files with 443 additions and 443 deletions

View file

@ -34,10 +34,10 @@
package android.hardware.automotive.vehicle; package android.hardware.automotive.vehicle;
@Backing(type="int") @VintfStability @Backing(type="int") @VintfStability
enum Obd2CommonIgnitionMonitors { enum Obd2CommonIgnitionMonitors {
COMPONENTS_AVAILABLE = 1, COMPONENTS_AVAILABLE = (0x1 << 0),
COMPONENTS_INCOMPLETE = 2, COMPONENTS_INCOMPLETE = (0x1 << 1),
FUEL_SYSTEM_AVAILABLE = 4, FUEL_SYSTEM_AVAILABLE = (0x1 << 2),
FUEL_SYSTEM_INCOMPLETE = 8, FUEL_SYSTEM_INCOMPLETE = (0x1 << 3),
MISFIRE_AVAILABLE = 16, MISFIRE_AVAILABLE = (0x1 << 4),
MISFIRE_INCOMPLETE = 32, MISFIRE_INCOMPLETE = (0x1 << 5),
} }

View file

@ -34,22 +34,22 @@
package android.hardware.automotive.vehicle; package android.hardware.automotive.vehicle;
@Backing(type="int") @VintfStability @Backing(type="int") @VintfStability
enum Obd2CompressionIgnitionMonitors { enum Obd2CompressionIgnitionMonitors {
COMPONENTS_AVAILABLE = 1, COMPONENTS_AVAILABLE = (0x1 << 0),
COMPONENTS_INCOMPLETE = 2, COMPONENTS_INCOMPLETE = (0x1 << 1),
FUEL_SYSTEM_AVAILABLE = 4, FUEL_SYSTEM_AVAILABLE = (0x1 << 2),
FUEL_SYSTEM_INCOMPLETE = 8, FUEL_SYSTEM_INCOMPLETE = (0x1 << 3),
MISFIRE_AVAILABLE = 16, MISFIRE_AVAILABLE = (0x1 << 4),
MISFIRE_INCOMPLETE = 32, MISFIRE_INCOMPLETE = (0x1 << 5),
EGR_OR_VVT_AVAILABLE = 64, EGR_OR_VVT_AVAILABLE = (0x1 << 6),
EGR_OR_VVT_INCOMPLETE = 128, EGR_OR_VVT_INCOMPLETE = (0x1 << 7),
PM_FILTER_AVAILABLE = 256, PM_FILTER_AVAILABLE = (0x1 << 8),
PM_FILTER_INCOMPLETE = 512, PM_FILTER_INCOMPLETE = (0x1 << 9),
EXHAUST_GAS_SENSOR_AVAILABLE = 1024, EXHAUST_GAS_SENSOR_AVAILABLE = (0x1 << 10),
EXHAUST_GAS_SENSOR_INCOMPLETE = 2048, EXHAUST_GAS_SENSOR_INCOMPLETE = (0x1 << 11),
BOOST_PRESSURE_AVAILABLE = 4096, BOOST_PRESSURE_AVAILABLE = (0x1 << 12),
BOOST_PRESSURE_INCOMPLETE = 8192, BOOST_PRESSURE_INCOMPLETE = (0x1 << 13),
NOx_SCR_AVAILABLE = 16384, NOx_SCR_AVAILABLE = (0x1 << 14),
NOx_SCR_INCOMPLETE = 32768, NOx_SCR_INCOMPLETE = (0x1 << 15),
NMHC_CATALYST_AVAILABLE = 65536, NMHC_CATALYST_AVAILABLE = (0x1 << 16),
NMHC_CATALYST_INCOMPLETE = 131072, NMHC_CATALYST_INCOMPLETE = (0x1 << 17),
} }

View file

@ -34,26 +34,26 @@
package android.hardware.automotive.vehicle; package android.hardware.automotive.vehicle;
@Backing(type="int") @VintfStability @Backing(type="int") @VintfStability
enum Obd2SparkIgnitionMonitors { enum Obd2SparkIgnitionMonitors {
COMPONENTS_AVAILABLE = 1, COMPONENTS_AVAILABLE = (0x1 << 0),
COMPONENTS_INCOMPLETE = 2, COMPONENTS_INCOMPLETE = (0x1 << 1),
FUEL_SYSTEM_AVAILABLE = 4, FUEL_SYSTEM_AVAILABLE = (0x1 << 2),
FUEL_SYSTEM_INCOMPLETE = 8, FUEL_SYSTEM_INCOMPLETE = (0x1 << 3),
MISFIRE_AVAILABLE = 16, MISFIRE_AVAILABLE = (0x1 << 4),
MISFIRE_INCOMPLETE = 32, MISFIRE_INCOMPLETE = (0x1 << 5),
EGR_AVAILABLE = 64, EGR_AVAILABLE = (0x1 << 6),
EGR_INCOMPLETE = 128, EGR_INCOMPLETE = (0x1 << 7),
OXYGEN_SENSOR_HEATER_AVAILABLE = 256, OXYGEN_SENSOR_HEATER_AVAILABLE = (0x1 << 8),
OXYGEN_SENSOR_HEATER_INCOMPLETE = 512, OXYGEN_SENSOR_HEATER_INCOMPLETE = (0x1 << 9),
OXYGEN_SENSOR_AVAILABLE = 1024, OXYGEN_SENSOR_AVAILABLE = (0x1 << 10),
OXYGEN_SENSOR_INCOMPLETE = 2048, OXYGEN_SENSOR_INCOMPLETE = (0x1 << 11),
AC_REFRIGERANT_AVAILABLE = 4096, AC_REFRIGERANT_AVAILABLE = (0x1 << 12),
AC_REFRIGERANT_INCOMPLETE = 8192, AC_REFRIGERANT_INCOMPLETE = (0x1 << 13),
SECONDARY_AIR_SYSTEM_AVAILABLE = 16384, SECONDARY_AIR_SYSTEM_AVAILABLE = (0x1 << 14),
SECONDARY_AIR_SYSTEM_INCOMPLETE = 32768, SECONDARY_AIR_SYSTEM_INCOMPLETE = (0x1 << 15),
EVAPORATIVE_SYSTEM_AVAILABLE = 65536, EVAPORATIVE_SYSTEM_AVAILABLE = (0x1 << 16),
EVAPORATIVE_SYSTEM_INCOMPLETE = 131072, EVAPORATIVE_SYSTEM_INCOMPLETE = (0x1 << 17),
HEATED_CATALYST_AVAILABLE = 262144, HEATED_CATALYST_AVAILABLE = (0x1 << 18),
HEATED_CATALYST_INCOMPLETE = 524288, HEATED_CATALYST_INCOMPLETE = (0x1 << 19),
CATALYST_AVAILABLE = 1048576, CATALYST_AVAILABLE = (0x1 << 20),
CATALYST_INCOMPLETE = 2097152, CATALYST_INCOMPLETE = (0x1 << 21),
} }

View file

@ -36,10 +36,10 @@ package android.hardware.automotive.vehicle;
parcelable UserInfo { parcelable UserInfo {
int userId = 0; int userId = 0;
int flags; int flags;
const int USER_FLAG_SYSTEM = 1; const int USER_FLAG_SYSTEM = 0x01;
const int USER_FLAG_GUEST = 2; const int USER_FLAG_GUEST = 0x02;
const int USER_FLAG_EPHEMERAL = 4; const int USER_FLAG_EPHEMERAL = 0x04;
const int USER_FLAG_ADMIN = 8; const int USER_FLAG_ADMIN = 0x08;
const int USER_FLAG_DISABLED = 16; const int USER_FLAG_DISABLED = 0x10;
const int USER_FLAG_PROFILE = 32; const int USER_FLAG_PROFILE = 0x20;
} }

View file

@ -34,7 +34,7 @@
package android.hardware.automotive.vehicle; package android.hardware.automotive.vehicle;
@Backing(type="int") @VintfStability @Backing(type="int") @VintfStability
enum VehicleApPowerStateConfigFlag { enum VehicleApPowerStateConfigFlag {
ENABLE_DEEP_SLEEP_FLAG = 1, ENABLE_DEEP_SLEEP_FLAG = 0x1,
CONFIG_SUPPORT_TIMER_POWER_ON_FLAG = 2, CONFIG_SUPPORT_TIMER_POWER_ON_FLAG = 0x2,
ENABLE_HIBERNATION_FLAG = 4, ENABLE_HIBERNATION_FLAG = 0x4,
} }

View file

@ -34,14 +34,14 @@
package android.hardware.automotive.vehicle; package android.hardware.automotive.vehicle;
@Backing(type="int") @VintfStability @Backing(type="int") @VintfStability
enum VehicleApPowerStateReport { enum VehicleApPowerStateReport {
WAIT_FOR_VHAL = 1, WAIT_FOR_VHAL = 0x1,
DEEP_SLEEP_ENTRY = 2, DEEP_SLEEP_ENTRY = 0x2,
DEEP_SLEEP_EXIT = 3, DEEP_SLEEP_EXIT = 0x3,
SHUTDOWN_POSTPONE = 4, SHUTDOWN_POSTPONE = 0x4,
SHUTDOWN_START = 5, SHUTDOWN_START = 0x5,
ON = 6, ON = 0x6,
SHUTDOWN_PREPARE = 7, SHUTDOWN_PREPARE = 0x7,
SHUTDOWN_CANCELLED = 8, SHUTDOWN_CANCELLED = 0x8,
HIBERNATION_ENTRY = 9, HIBERNATION_ENTRY = 0x9,
HIBERNATION_EXIT = 10, HIBERNATION_EXIT = 0xA,
} }

View file

@ -34,11 +34,11 @@
package android.hardware.automotive.vehicle; package android.hardware.automotive.vehicle;
@Backing(type="int") @VintfStability @Backing(type="int") @VintfStability
enum VehicleArea { enum VehicleArea {
GLOBAL = 16777216, GLOBAL = 0x01000000,
WINDOW = 50331648, WINDOW = 0x03000000,
MIRROR = 67108864, MIRROR = 0x04000000,
SEAT = 83886080, SEAT = 0x05000000,
DOOR = 100663296, DOOR = 0x06000000,
WHEEL = 117440512, WHEEL = 0x07000000,
MASK = 251658240, MASK = 0x0f000000,
} }

View file

@ -34,12 +34,12 @@
package android.hardware.automotive.vehicle; package android.hardware.automotive.vehicle;
@Backing(type="int") @VintfStability @Backing(type="int") @VintfStability
enum VehicleAreaDoor { enum VehicleAreaDoor {
ROW_1_LEFT = 1, ROW_1_LEFT = 0x00000001,
ROW_1_RIGHT = 4, ROW_1_RIGHT = 0x00000004,
ROW_2_LEFT = 16, ROW_2_LEFT = 0x00000010,
ROW_2_RIGHT = 64, ROW_2_RIGHT = 0x00000040,
ROW_3_LEFT = 256, ROW_3_LEFT = 0x00000100,
ROW_3_RIGHT = 1024, ROW_3_RIGHT = 0x00000400,
HOOD = 268435456, HOOD = 0x10000000,
REAR = 536870912, REAR = 0x20000000,
} }

View file

@ -34,7 +34,7 @@
package android.hardware.automotive.vehicle; package android.hardware.automotive.vehicle;
@Backing(type="int") @VintfStability @Backing(type="int") @VintfStability
enum VehicleAreaMirror { enum VehicleAreaMirror {
DRIVER_LEFT = 1, DRIVER_LEFT = 0x00000001,
DRIVER_RIGHT = 2, DRIVER_RIGHT = 0x00000002,
DRIVER_CENTER = 4, DRIVER_CENTER = 0x00000004,
} }

View file

@ -34,13 +34,13 @@
package android.hardware.automotive.vehicle; package android.hardware.automotive.vehicle;
@Backing(type="int") @VintfStability @Backing(type="int") @VintfStability
enum VehicleAreaSeat { enum VehicleAreaSeat {
ROW_1_LEFT = 1, ROW_1_LEFT = 0x0001,
ROW_1_CENTER = 2, ROW_1_CENTER = 0x0002,
ROW_1_RIGHT = 4, ROW_1_RIGHT = 0x0004,
ROW_2_LEFT = 16, ROW_2_LEFT = 0x0010,
ROW_2_CENTER = 32, ROW_2_CENTER = 0x0020,
ROW_2_RIGHT = 64, ROW_2_RIGHT = 0x0040,
ROW_3_LEFT = 256, ROW_3_LEFT = 0x0100,
ROW_3_CENTER = 512, ROW_3_CENTER = 0x0200,
ROW_3_RIGHT = 1024, ROW_3_RIGHT = 0x0400,
} }

View file

@ -34,9 +34,9 @@
package android.hardware.automotive.vehicle; package android.hardware.automotive.vehicle;
@Backing(type="int") @VintfStability @Backing(type="int") @VintfStability
enum VehicleAreaWheel { enum VehicleAreaWheel {
UNKNOWN = 0, UNKNOWN = 0x0,
LEFT_FRONT = 1, LEFT_FRONT = 0x1,
RIGHT_FRONT = 2, RIGHT_FRONT = 0x2,
LEFT_REAR = 4, LEFT_REAR = 0x4,
RIGHT_REAR = 8, RIGHT_REAR = 0x8,
} }

View file

@ -34,14 +34,14 @@
package android.hardware.automotive.vehicle; package android.hardware.automotive.vehicle;
@Backing(type="int") @VintfStability @Backing(type="int") @VintfStability
enum VehicleAreaWindow { enum VehicleAreaWindow {
FRONT_WINDSHIELD = 1, FRONT_WINDSHIELD = 0x00000001,
REAR_WINDSHIELD = 2, REAR_WINDSHIELD = 0x00000002,
ROW_1_LEFT = 16, ROW_1_LEFT = 0x00000010,
ROW_1_RIGHT = 64, ROW_1_RIGHT = 0x00000040,
ROW_2_LEFT = 256, ROW_2_LEFT = 0x00000100,
ROW_2_RIGHT = 1024, ROW_2_RIGHT = 0x00000400,
ROW_3_LEFT = 4096, ROW_3_LEFT = 0x00001000,
ROW_3_RIGHT = 16384, ROW_3_RIGHT = 0x00004000,
ROOF_TOP_1 = 65536, ROOF_TOP_1 = 0x00010000,
ROOF_TOP_2 = 131072, ROOF_TOP_2 = 0x00020000,
} }

View file

@ -34,18 +34,18 @@
package android.hardware.automotive.vehicle; package android.hardware.automotive.vehicle;
@Backing(type="int") @VintfStability @Backing(type="int") @VintfStability
enum VehicleGear { enum VehicleGear {
GEAR_UNKNOWN = 0, GEAR_UNKNOWN = 0x0000,
GEAR_NEUTRAL = 1, GEAR_NEUTRAL = 0x0001,
GEAR_REVERSE = 2, GEAR_REVERSE = 0x0002,
GEAR_PARK = 4, GEAR_PARK = 0x0004,
GEAR_DRIVE = 8, GEAR_DRIVE = 0x0008,
GEAR_1 = 16, GEAR_1 = 0x0010,
GEAR_2 = 32, GEAR_2 = 0x0020,
GEAR_3 = 64, GEAR_3 = 0x0040,
GEAR_4 = 128, GEAR_4 = 0x0080,
GEAR_5 = 256, GEAR_5 = 0x0100,
GEAR_6 = 512, GEAR_6 = 0x0200,
GEAR_7 = 1024, GEAR_7 = 0x0400,
GEAR_8 = 2048, GEAR_8 = 0x0800,
GEAR_9 = 4096, GEAR_9 = 0x1000,
} }

View file

@ -34,10 +34,10 @@
package android.hardware.automotive.vehicle; package android.hardware.automotive.vehicle;
@Backing(type="int") @VintfStability @Backing(type="int") @VintfStability
enum VehicleHvacFanDirection { enum VehicleHvacFanDirection {
UNKNOWN = 0, UNKNOWN = 0x0,
FACE = 1, FACE = 0x1,
FLOOR = 2, FLOOR = 0x2,
FACE_AND_FLOOR = 3, FACE_AND_FLOOR = 0x3,
DEFROST = 4, DEFROST = 0x4,
DEFROST_AND_FLOOR = 6, DEFROST_AND_FLOOR = 0x06,
} }

View file

@ -34,11 +34,11 @@
package android.hardware.automotive.vehicle; package android.hardware.automotive.vehicle;
@Backing(type="int") @VintfStability @Backing(type="int") @VintfStability
enum VehicleHwMotionButtonStateFlag { enum VehicleHwMotionButtonStateFlag {
BUTTON_PRIMARY = 1, BUTTON_PRIMARY = 0x0001,
BUTTON_SECONDARY = 2, BUTTON_SECONDARY = 0x0002,
BUTTON_TERTIARY = 4, BUTTON_TERTIARY = 0x0004,
BUTTON_BACK = 8, BUTTON_BACK = 0x0008,
BUTTON_FORWARD = 16, BUTTON_FORWARD = 0x0010,
BUTTON_STYLUS_PRIMARY = 32, BUTTON_STYLUS_PRIMARY = 0x0020,
BUTTON_STYLUS_SECONDARY = 64, BUTTON_STYLUS_SECONDARY = 0x0040,
} }

View file

@ -36,8 +36,8 @@ package android.hardware.automotive.vehicle;
enum VehicleIgnitionState { enum VehicleIgnitionState {
UNDEFINED = 0, UNDEFINED = 0,
LOCK = 1, LOCK = 1,
OFF = 2, OFF,
ACC = 3, ACC,
ON = 4, ON,
START = 5, START,
} }

View file

@ -37,5 +37,5 @@ enum VehicleLightSwitch {
OFF = 0, OFF = 0,
ON = 1, ON = 1,
DAYTIME_RUNNING = 2, DAYTIME_RUNNING = 2,
AUTOMATIC = 256, AUTOMATIC = 0x100,
} }

View file

@ -34,220 +34,220 @@
package android.hardware.automotive.vehicle; package android.hardware.automotive.vehicle;
@Backing(type="int") @VintfStability @Backing(type="int") @VintfStability
enum VehicleProperty { enum VehicleProperty {
INVALID = 0, INVALID = 0x00000000,
INFO_VIN = 286261504, INFO_VIN = (((0x0100 + 0x10000000) + 0x01000000) + 0x00100000),
INFO_MAKE = 286261505, INFO_MAKE = (((0x0101 + 0x10000000) + 0x01000000) + 0x00100000),
INFO_MODEL = 286261506, INFO_MODEL = (((0x0102 + 0x10000000) + 0x01000000) + 0x00100000),
INFO_MODEL_YEAR = 289407235, INFO_MODEL_YEAR = (((0x0103 + 0x10000000) + 0x01000000) + 0x00400000),
INFO_FUEL_CAPACITY = 291504388, INFO_FUEL_CAPACITY = (((0x0104 + 0x10000000) + 0x01000000) + 0x00600000),
INFO_FUEL_TYPE = 289472773, INFO_FUEL_TYPE = (((0x0105 + 0x10000000) + 0x01000000) + 0x00410000),
INFO_EV_BATTERY_CAPACITY = 291504390, INFO_EV_BATTERY_CAPACITY = (((0x0106 + 0x10000000) + 0x01000000) + 0x00600000),
INFO_EV_CONNECTOR_TYPE = 289472775, INFO_EV_CONNECTOR_TYPE = (((0x0107 + 0x10000000) + 0x01000000) + 0x00410000),
INFO_FUEL_DOOR_LOCATION = 289407240, INFO_FUEL_DOOR_LOCATION = (((0x0108 + 0x10000000) + 0x01000000) + 0x00400000),
INFO_EV_PORT_LOCATION = 289407241, INFO_EV_PORT_LOCATION = (((0x0109 + 0x10000000) + 0x01000000) + 0x00400000),
INFO_DRIVER_SEAT = 356516106, INFO_DRIVER_SEAT = (((0x010A + 0x10000000) + 0x05000000) + 0x00400000),
INFO_EXTERIOR_DIMENSIONS = 289472779, INFO_EXTERIOR_DIMENSIONS = (((0x010B + 0x10000000) + 0x01000000) + 0x00410000),
INFO_MULTI_EV_PORT_LOCATIONS = 289472780, INFO_MULTI_EV_PORT_LOCATIONS = (((0x010C + 0x10000000) + 0x01000000) + 0x00410000),
PERF_ODOMETER = 291504644, PERF_ODOMETER = (((0x0204 + 0x10000000) + 0x01000000) + 0x00600000),
PERF_VEHICLE_SPEED = 291504647, PERF_VEHICLE_SPEED = (((0x0207 + 0x10000000) + 0x01000000) + 0x00600000),
PERF_VEHICLE_SPEED_DISPLAY = 291504648, PERF_VEHICLE_SPEED_DISPLAY = (((0x0208 + 0x10000000) + 0x01000000) + 0x00600000),
PERF_STEERING_ANGLE = 291504649, PERF_STEERING_ANGLE = (((0x0209 + 0x10000000) + 0x01000000) + 0x00600000),
PERF_REAR_STEERING_ANGLE = 291504656, PERF_REAR_STEERING_ANGLE = (((0x0210 + 0x10000000) + 0x01000000) + 0x00600000),
ENGINE_COOLANT_TEMP = 291504897, ENGINE_COOLANT_TEMP = (((0x0301 + 0x10000000) + 0x01000000) + 0x00600000),
ENGINE_OIL_LEVEL = 289407747, ENGINE_OIL_LEVEL = (((0x0303 + 0x10000000) + 0x01000000) + 0x00400000),
ENGINE_OIL_TEMP = 291504900, ENGINE_OIL_TEMP = (((0x0304 + 0x10000000) + 0x01000000) + 0x00600000),
ENGINE_RPM = 291504901, ENGINE_RPM = (((0x0305 + 0x10000000) + 0x01000000) + 0x00600000),
WHEEL_TICK = 290521862, WHEEL_TICK = (((0x0306 + 0x10000000) + 0x01000000) + 0x00510000),
FUEL_LEVEL = 291504903, FUEL_LEVEL = (((0x0307 + 0x10000000) + 0x01000000) + 0x00600000),
FUEL_DOOR_OPEN = 287310600, FUEL_DOOR_OPEN = (((0x0308 + 0x10000000) + 0x01000000) + 0x00200000),
EV_BATTERY_LEVEL = 291504905, EV_BATTERY_LEVEL = (((0x0309 + 0x10000000) + 0x01000000) + 0x00600000),
EV_CURRENT_BATTERY_CAPACITY = 291504909, EV_CURRENT_BATTERY_CAPACITY = (((0x030D + android.hardware.automotive.vehicle.VehiclePropertyGroup.SYSTEM) + android.hardware.automotive.vehicle.VehicleArea.GLOBAL) + android.hardware.automotive.vehicle.VehiclePropertyType.FLOAT),
EV_CHARGE_PORT_OPEN = 287310602, EV_CHARGE_PORT_OPEN = (((0x030A + 0x10000000) + 0x01000000) + 0x00200000),
EV_CHARGE_PORT_CONNECTED = 287310603, EV_CHARGE_PORT_CONNECTED = (((0x030B + 0x10000000) + 0x01000000) + 0x00200000),
EV_BATTERY_INSTANTANEOUS_CHARGE_RATE = 291504908, EV_BATTERY_INSTANTANEOUS_CHARGE_RATE = (((0x030C + 0x10000000) + 0x01000000) + 0x00600000),
RANGE_REMAINING = 291504904, RANGE_REMAINING = (((0x0308 + 0x10000000) + 0x01000000) + 0x00600000),
TIRE_PRESSURE = 392168201, TIRE_PRESSURE = (((0x0309 + 0x10000000) + 0x07000000) + 0x00600000),
CRITICALLY_LOW_TIRE_PRESSURE = 392168202, CRITICALLY_LOW_TIRE_PRESSURE = (((0x030A + 0x10000000) + 0x07000000) + 0x00600000),
ENGINE_IDLE_AUTO_STOP_ENABLED = 287310624, ENGINE_IDLE_AUTO_STOP_ENABLED = (((0x0320 + android.hardware.automotive.vehicle.VehiclePropertyGroup.SYSTEM) + android.hardware.automotive.vehicle.VehicleArea.GLOBAL) + android.hardware.automotive.vehicle.VehiclePropertyType.BOOLEAN),
GEAR_SELECTION = 289408000, GEAR_SELECTION = (((0x0400 + 0x10000000) + 0x01000000) + 0x00400000),
CURRENT_GEAR = 289408001, CURRENT_GEAR = (((0x0401 + 0x10000000) + 0x01000000) + 0x00400000),
PARKING_BRAKE_ON = 287310850, PARKING_BRAKE_ON = (((0x0402 + 0x10000000) + 0x01000000) + 0x00200000),
PARKING_BRAKE_AUTO_APPLY = 287310851, PARKING_BRAKE_AUTO_APPLY = (((0x0403 + 0x10000000) + 0x01000000) + 0x00200000),
EV_BRAKE_REGENERATION_LEVEL = 289408012, EV_BRAKE_REGENERATION_LEVEL = (((0x040C + android.hardware.automotive.vehicle.VehiclePropertyGroup.SYSTEM) + android.hardware.automotive.vehicle.VehicleArea.GLOBAL) + android.hardware.automotive.vehicle.VehiclePropertyType.INT32),
FUEL_LEVEL_LOW = 287310853, FUEL_LEVEL_LOW = (((0x0405 + 0x10000000) + 0x01000000) + 0x00200000),
NIGHT_MODE = 287310855, NIGHT_MODE = (((0x0407 + 0x10000000) + 0x01000000) + 0x00200000),
TURN_SIGNAL_STATE = 289408008, TURN_SIGNAL_STATE = (((0x0408 + 0x10000000) + 0x01000000) + 0x00400000),
IGNITION_STATE = 289408009, IGNITION_STATE = (((0x0409 + 0x10000000) + 0x01000000) + 0x00400000),
ABS_ACTIVE = 287310858, ABS_ACTIVE = (((0x040A + 0x10000000) + 0x01000000) + 0x00200000),
TRACTION_CONTROL_ACTIVE = 287310859, TRACTION_CONTROL_ACTIVE = (((0x040B + 0x10000000) + 0x01000000) + 0x00200000),
EV_STOPPING_MODE = 289408013, EV_STOPPING_MODE = (((0x040D + android.hardware.automotive.vehicle.VehiclePropertyGroup.SYSTEM) + android.hardware.automotive.vehicle.VehicleArea.GLOBAL) + android.hardware.automotive.vehicle.VehiclePropertyType.INT32),
HVAC_FAN_SPEED = 356517120, HVAC_FAN_SPEED = (((0x0500 + 0x10000000) + 0x05000000) + 0x00400000),
HVAC_FAN_DIRECTION = 356517121, HVAC_FAN_DIRECTION = (((0x0501 + 0x10000000) + 0x05000000) + 0x00400000),
HVAC_TEMPERATURE_CURRENT = 358614274, HVAC_TEMPERATURE_CURRENT = (((0x0502 + 0x10000000) + 0x05000000) + 0x00600000),
HVAC_TEMPERATURE_SET = 358614275, HVAC_TEMPERATURE_SET = (((0x0503 + 0x10000000) + 0x05000000) + 0x00600000),
HVAC_DEFROSTER = 320865540, HVAC_DEFROSTER = (((0x0504 + 0x10000000) + 0x03000000) + 0x00200000),
HVAC_AC_ON = 354419973, HVAC_AC_ON = (((0x0505 + 0x10000000) + 0x05000000) + 0x00200000),
HVAC_MAX_AC_ON = 354419974, HVAC_MAX_AC_ON = (((0x0506 + 0x10000000) + 0x05000000) + 0x00200000),
HVAC_MAX_DEFROST_ON = 354419975, HVAC_MAX_DEFROST_ON = (((0x0507 + 0x10000000) + 0x05000000) + 0x00200000),
HVAC_RECIRC_ON = 354419976, HVAC_RECIRC_ON = (((0x0508 + 0x10000000) + 0x05000000) + 0x00200000),
HVAC_DUAL_ON = 354419977, HVAC_DUAL_ON = (((0x0509 + 0x10000000) + 0x05000000) + 0x00200000),
HVAC_AUTO_ON = 354419978, HVAC_AUTO_ON = (((0x050A + 0x10000000) + 0x05000000) + 0x00200000),
HVAC_SEAT_TEMPERATURE = 356517131, HVAC_SEAT_TEMPERATURE = (((0x050B + 0x10000000) + 0x05000000) + 0x00400000),
HVAC_SIDE_MIRROR_HEAT = 339739916, HVAC_SIDE_MIRROR_HEAT = (((0x050C + 0x10000000) + 0x04000000) + 0x00400000),
HVAC_STEERING_WHEEL_HEAT = 289408269, HVAC_STEERING_WHEEL_HEAT = (((0x050D + 0x10000000) + 0x01000000) + 0x00400000),
HVAC_TEMPERATURE_DISPLAY_UNITS = 289408270, HVAC_TEMPERATURE_DISPLAY_UNITS = (((0x050E + 0x10000000) + 0x01000000) + 0x00400000),
HVAC_ACTUAL_FAN_SPEED_RPM = 356517135, HVAC_ACTUAL_FAN_SPEED_RPM = (((0x050F + 0x10000000) + 0x05000000) + 0x00400000),
HVAC_POWER_ON = 354419984, HVAC_POWER_ON = (((0x0510 + 0x10000000) + 0x05000000) + 0x00200000),
HVAC_FAN_DIRECTION_AVAILABLE = 356582673, HVAC_FAN_DIRECTION_AVAILABLE = (((0x0511 + 0x10000000) + 0x05000000) + 0x00410000),
HVAC_AUTO_RECIRC_ON = 354419986, HVAC_AUTO_RECIRC_ON = (((0x0512 + 0x10000000) + 0x05000000) + 0x00200000),
HVAC_SEAT_VENTILATION = 356517139, HVAC_SEAT_VENTILATION = (((0x0513 + 0x10000000) + 0x05000000) + 0x00400000),
HVAC_ELECTRIC_DEFROSTER_ON = 320865556, HVAC_ELECTRIC_DEFROSTER_ON = (((0x0514 + 0x10000000) + 0x03000000) + 0x00200000),
HVAC_TEMPERATURE_VALUE_SUGGESTION = 291570965, HVAC_TEMPERATURE_VALUE_SUGGESTION = (((0x0515 + 0x10000000) + 0x01000000) + 0x00610000),
DISTANCE_DISPLAY_UNITS = 289408512, DISTANCE_DISPLAY_UNITS = (((0x0600 + 0x10000000) + 0x01000000) + 0x00400000),
FUEL_VOLUME_DISPLAY_UNITS = 289408513, FUEL_VOLUME_DISPLAY_UNITS = (((0x0601 + 0x10000000) + 0x01000000) + 0x00400000),
TIRE_PRESSURE_DISPLAY_UNITS = 289408514, TIRE_PRESSURE_DISPLAY_UNITS = (((0x0602 + 0x10000000) + 0x01000000) + 0x00400000),
EV_BATTERY_DISPLAY_UNITS = 289408515, EV_BATTERY_DISPLAY_UNITS = (((0x0603 + 0x10000000) + 0x01000000) + 0x00400000),
FUEL_CONSUMPTION_UNITS_DISTANCE_OVER_VOLUME = 287311364, FUEL_CONSUMPTION_UNITS_DISTANCE_OVER_VOLUME = (((0x0604 + 0x10000000) + 0x01000000) + 0x00200000),
VEHICLE_SPEED_DISPLAY_UNITS = 289408517, VEHICLE_SPEED_DISPLAY_UNITS = (((0x0605 + 0x10000000) + 0x01000000) + 0x00400000),
EXTERNAL_CAR_TIME = 290457096, EXTERNAL_CAR_TIME = (((0x0608 + 0x10000000) + 0x01000000) + 0x00500000),
ANDROID_EPOCH_TIME = 290457094, ANDROID_EPOCH_TIME = (((0x0606 + 0x10000000) + 0x01000000) + 0x00500000),
STORAGE_ENCRYPTION_BINDING_SEED = 292554247, STORAGE_ENCRYPTION_BINDING_SEED = (((0x0607 + 0x10000000) + 0x01000000) + 0x00700000),
ENV_OUTSIDE_TEMPERATURE = 291505923, ENV_OUTSIDE_TEMPERATURE = (((0x0703 + 0x10000000) + 0x01000000) + 0x00600000),
AP_POWER_STATE_REQ = 289475072, AP_POWER_STATE_REQ = (((0x0A00 + 0x10000000) + 0x01000000) + 0x00410000),
AP_POWER_STATE_REPORT = 289475073, AP_POWER_STATE_REPORT = (((0x0A01 + 0x10000000) + 0x01000000) + 0x00410000),
AP_POWER_BOOTUP_REASON = 289409538, AP_POWER_BOOTUP_REASON = (((0x0A02 + 0x10000000) + 0x01000000) + 0x00400000),
DISPLAY_BRIGHTNESS = 289409539, DISPLAY_BRIGHTNESS = (((0x0A03 + 0x10000000) + 0x01000000) + 0x00400000),
HW_KEY_INPUT = 289475088, HW_KEY_INPUT = (((0x0A10 + 0x10000000) + 0x01000000) + 0x00410000),
HW_KEY_INPUT_V2 = 367004177, HW_KEY_INPUT_V2 = (((0x0A11 + android.hardware.automotive.vehicle.VehiclePropertyGroup.SYSTEM) + android.hardware.automotive.vehicle.VehicleArea.SEAT) + android.hardware.automotive.vehicle.VehiclePropertyType.MIXED),
HW_MOTION_INPUT = 367004178, HW_MOTION_INPUT = (((0x0A12 + android.hardware.automotive.vehicle.VehiclePropertyGroup.SYSTEM) + android.hardware.automotive.vehicle.VehicleArea.SEAT) + android.hardware.automotive.vehicle.VehiclePropertyType.MIXED),
HW_ROTARY_INPUT = 289475104, HW_ROTARY_INPUT = (((0x0A20 + 0x10000000) + 0x01000000) + 0x00410000),
HW_CUSTOM_INPUT = 289475120, HW_CUSTOM_INPUT = (((0X0A30 + 0x10000000) + 0x01000000) + 0x00410000),
DOOR_POS = 373295872, DOOR_POS = (((0x0B00 + 0x10000000) + 0x06000000) + 0x00400000),
DOOR_MOVE = 373295873, DOOR_MOVE = (((0x0B01 + 0x10000000) + 0x06000000) + 0x00400000),
DOOR_LOCK = 371198722, DOOR_LOCK = (((0x0B02 + 0x10000000) + 0x06000000) + 0x00200000),
DOOR_CHILD_LOCK_ENABLED = 371198723, DOOR_CHILD_LOCK_ENABLED = (((0x0B03 + android.hardware.automotive.vehicle.VehiclePropertyGroup.SYSTEM) + android.hardware.automotive.vehicle.VehicleArea.DOOR) + android.hardware.automotive.vehicle.VehiclePropertyType.BOOLEAN),
MIRROR_Z_POS = 339741504, MIRROR_Z_POS = (((0x0B40 + 0x10000000) + 0x04000000) + 0x00400000),
MIRROR_Z_MOVE = 339741505, MIRROR_Z_MOVE = (((0x0B41 + 0x10000000) + 0x04000000) + 0x00400000),
MIRROR_Y_POS = 339741506, MIRROR_Y_POS = (((0x0B42 + 0x10000000) + 0x04000000) + 0x00400000),
MIRROR_Y_MOVE = 339741507, MIRROR_Y_MOVE = (((0x0B43 + 0x10000000) + 0x04000000) + 0x00400000),
MIRROR_LOCK = 287312708, MIRROR_LOCK = (((0x0B44 + 0x10000000) + 0x01000000) + 0x00200000),
MIRROR_FOLD = 287312709, MIRROR_FOLD = (((0x0B45 + 0x10000000) + 0x01000000) + 0x00200000),
MIRROR_AUTO_FOLD_ENABLED = 337644358, MIRROR_AUTO_FOLD_ENABLED = (((0x0B46 + android.hardware.automotive.vehicle.VehiclePropertyGroup.SYSTEM) + android.hardware.automotive.vehicle.VehicleArea.MIRROR) + android.hardware.automotive.vehicle.VehiclePropertyType.BOOLEAN),
MIRROR_AUTO_TILT_ENABLED = 337644359, MIRROR_AUTO_TILT_ENABLED = (((0x0B47 + android.hardware.automotive.vehicle.VehiclePropertyGroup.SYSTEM) + android.hardware.automotive.vehicle.VehicleArea.MIRROR) + android.hardware.automotive.vehicle.VehiclePropertyType.BOOLEAN),
SEAT_MEMORY_SELECT = 356518784, SEAT_MEMORY_SELECT = (((0x0B80 + 0x10000000) + 0x05000000) + 0x00400000),
SEAT_MEMORY_SET = 356518785, SEAT_MEMORY_SET = (((0x0B81 + 0x10000000) + 0x05000000) + 0x00400000),
SEAT_BELT_BUCKLED = 354421634, SEAT_BELT_BUCKLED = (((0x0B82 + 0x10000000) + 0x05000000) + 0x00200000),
SEAT_BELT_HEIGHT_POS = 356518787, SEAT_BELT_HEIGHT_POS = (((0x0B83 + 0x10000000) + 0x05000000) + 0x00400000),
SEAT_BELT_HEIGHT_MOVE = 356518788, SEAT_BELT_HEIGHT_MOVE = (((0x0B84 + 0x10000000) + 0x05000000) + 0x00400000),
SEAT_FORE_AFT_POS = 356518789, SEAT_FORE_AFT_POS = (((0x0B85 + 0x10000000) + 0x05000000) + 0x00400000),
SEAT_FORE_AFT_MOVE = 356518790, SEAT_FORE_AFT_MOVE = (((0x0B86 + 0x10000000) + 0x05000000) + 0x00400000),
SEAT_BACKREST_ANGLE_1_POS = 356518791, SEAT_BACKREST_ANGLE_1_POS = (((0x0B87 + 0x10000000) + 0x05000000) + 0x00400000),
SEAT_BACKREST_ANGLE_1_MOVE = 356518792, SEAT_BACKREST_ANGLE_1_MOVE = (((0x0B88 + 0x10000000) + 0x05000000) + 0x00400000),
SEAT_BACKREST_ANGLE_2_POS = 356518793, SEAT_BACKREST_ANGLE_2_POS = (((0x0B89 + 0x10000000) + 0x05000000) + 0x00400000),
SEAT_BACKREST_ANGLE_2_MOVE = 356518794, SEAT_BACKREST_ANGLE_2_MOVE = (((0x0B8A + 0x10000000) + 0x05000000) + 0x00400000),
SEAT_HEIGHT_POS = 356518795, SEAT_HEIGHT_POS = (((0x0B8B + 0x10000000) + 0x05000000) + 0x00400000),
SEAT_HEIGHT_MOVE = 356518796, SEAT_HEIGHT_MOVE = (((0x0B8C + 0x10000000) + 0x05000000) + 0x00400000),
SEAT_DEPTH_POS = 356518797, SEAT_DEPTH_POS = (((0x0B8D + 0x10000000) + 0x05000000) + 0x00400000),
SEAT_DEPTH_MOVE = 356518798, SEAT_DEPTH_MOVE = (((0x0B8E + 0x10000000) + 0x05000000) + 0x00400000),
SEAT_TILT_POS = 356518799, SEAT_TILT_POS = (((0x0B8F + 0x10000000) + 0x05000000) + 0x00400000),
SEAT_TILT_MOVE = 356518800, SEAT_TILT_MOVE = (((0x0B90 + 0x10000000) + 0x05000000) + 0x00400000),
SEAT_LUMBAR_FORE_AFT_POS = 356518801, SEAT_LUMBAR_FORE_AFT_POS = (((0x0B91 + 0x10000000) + 0x05000000) + 0x00400000),
SEAT_LUMBAR_FORE_AFT_MOVE = 356518802, SEAT_LUMBAR_FORE_AFT_MOVE = (((0x0B92 + 0x10000000) + 0x05000000) + 0x00400000),
SEAT_LUMBAR_SIDE_SUPPORT_POS = 356518803, SEAT_LUMBAR_SIDE_SUPPORT_POS = (((0x0B93 + 0x10000000) + 0x05000000) + 0x00400000),
SEAT_LUMBAR_SIDE_SUPPORT_MOVE = 356518804, SEAT_LUMBAR_SIDE_SUPPORT_MOVE = (((0x0B94 + 0x10000000) + 0x05000000) + 0x00400000),
SEAT_HEADREST_HEIGHT_POS = 289409941, SEAT_HEADREST_HEIGHT_POS = (((0x0B95 + 0x10000000) + 0x01000000) + 0x00400000),
SEAT_HEADREST_HEIGHT_POS_V2 = 356518820, SEAT_HEADREST_HEIGHT_POS_V2 = (((0x0BA4 + android.hardware.automotive.vehicle.VehiclePropertyGroup.SYSTEM) + android.hardware.automotive.vehicle.VehicleArea.SEAT) + android.hardware.automotive.vehicle.VehiclePropertyType.INT32),
SEAT_HEADREST_HEIGHT_MOVE = 356518806, SEAT_HEADREST_HEIGHT_MOVE = (((0x0B96 + 0x10000000) + 0x05000000) + 0x00400000),
SEAT_HEADREST_ANGLE_POS = 356518807, SEAT_HEADREST_ANGLE_POS = (((0x0B97 + 0x10000000) + 0x05000000) + 0x00400000),
SEAT_HEADREST_ANGLE_MOVE = 356518808, SEAT_HEADREST_ANGLE_MOVE = (((0x0B98 + 0x10000000) + 0x05000000) + 0x00400000),
SEAT_HEADREST_FORE_AFT_POS = 356518809, SEAT_HEADREST_FORE_AFT_POS = (((0x0B99 + 0x10000000) + 0x05000000) + 0x00400000),
SEAT_HEADREST_FORE_AFT_MOVE = 356518810, SEAT_HEADREST_FORE_AFT_MOVE = (((0x0B9A + 0x10000000) + 0x05000000) + 0x00400000),
SEAT_FOOTWELL_LIGHTS_STATE = 356518811, SEAT_FOOTWELL_LIGHTS_STATE = (((0x0B9B + android.hardware.automotive.vehicle.VehiclePropertyGroup.SYSTEM) + android.hardware.automotive.vehicle.VehicleArea.SEAT) + android.hardware.automotive.vehicle.VehiclePropertyType.INT32),
SEAT_FOOTWELL_LIGHTS_SWITCH = 356518812, SEAT_FOOTWELL_LIGHTS_SWITCH = (((0x0B9C + android.hardware.automotive.vehicle.VehiclePropertyGroup.SYSTEM) + android.hardware.automotive.vehicle.VehicleArea.SEAT) + android.hardware.automotive.vehicle.VehiclePropertyType.INT32),
SEAT_EASY_ACCESS_ENABLED = 354421661, SEAT_EASY_ACCESS_ENABLED = (((0x0B9D + android.hardware.automotive.vehicle.VehiclePropertyGroup.SYSTEM) + android.hardware.automotive.vehicle.VehicleArea.SEAT) + android.hardware.automotive.vehicle.VehiclePropertyType.BOOLEAN),
SEAT_AIRBAG_ENABLED = 354421662, SEAT_AIRBAG_ENABLED = (((0x0B9E + android.hardware.automotive.vehicle.VehiclePropertyGroup.SYSTEM) + android.hardware.automotive.vehicle.VehicleArea.SEAT) + android.hardware.automotive.vehicle.VehiclePropertyType.BOOLEAN),
SEAT_CUSHION_SIDE_SUPPORT_POS = 356518815, SEAT_CUSHION_SIDE_SUPPORT_POS = (((0x0B9F + android.hardware.automotive.vehicle.VehiclePropertyGroup.SYSTEM) + android.hardware.automotive.vehicle.VehicleArea.SEAT) + android.hardware.automotive.vehicle.VehiclePropertyType.INT32),
SEAT_CUSHION_SIDE_SUPPORT_MOVE = 356518816, SEAT_CUSHION_SIDE_SUPPORT_MOVE = (((0x0BA0 + android.hardware.automotive.vehicle.VehiclePropertyGroup.SYSTEM) + android.hardware.automotive.vehicle.VehicleArea.SEAT) + android.hardware.automotive.vehicle.VehiclePropertyType.INT32),
SEAT_LUMBAR_VERTICAL_POS = 356518817, SEAT_LUMBAR_VERTICAL_POS = (((0x0BA1 + android.hardware.automotive.vehicle.VehiclePropertyGroup.SYSTEM) + android.hardware.automotive.vehicle.VehicleArea.SEAT) + android.hardware.automotive.vehicle.VehiclePropertyType.INT32),
SEAT_LUMBAR_VERTICAL_MOVE = 356518818, SEAT_LUMBAR_VERTICAL_MOVE = (((0x0BA2 + android.hardware.automotive.vehicle.VehiclePropertyGroup.SYSTEM) + android.hardware.automotive.vehicle.VehicleArea.SEAT) + android.hardware.automotive.vehicle.VehiclePropertyType.INT32),
SEAT_WALK_IN_POS = 356518819, SEAT_WALK_IN_POS = (((0x0BA3 + android.hardware.automotive.vehicle.VehiclePropertyGroup.SYSTEM) + android.hardware.automotive.vehicle.VehicleArea.SEAT) + android.hardware.automotive.vehicle.VehiclePropertyType.INT32),
SEAT_OCCUPANCY = 356518832, SEAT_OCCUPANCY = (((0x0BB0 + 0x10000000) + 0x05000000) + 0x00400000),
WINDOW_POS = 322964416, WINDOW_POS = (((0x0BC0 + 0x10000000) + 0x03000000) + 0x00400000),
WINDOW_MOVE = 322964417, WINDOW_MOVE = (((0x0BC1 + 0x10000000) + 0x03000000) + 0x00400000),
WINDOW_LOCK = 320867268, WINDOW_LOCK = (((0x0BC4 + 0x10000000) + 0x03000000) + 0x00200000),
STEERING_WHEEL_DEPTH_POS = 289410016, STEERING_WHEEL_DEPTH_POS = (((0x0BE0 + android.hardware.automotive.vehicle.VehiclePropertyGroup.SYSTEM) + android.hardware.automotive.vehicle.VehicleArea.GLOBAL) + android.hardware.automotive.vehicle.VehiclePropertyType.INT32),
STEERING_WHEEL_DEPTH_MOVE = 289410017, STEERING_WHEEL_DEPTH_MOVE = (((0x0BE1 + android.hardware.automotive.vehicle.VehiclePropertyGroup.SYSTEM) + android.hardware.automotive.vehicle.VehicleArea.GLOBAL) + android.hardware.automotive.vehicle.VehiclePropertyType.INT32),
STEERING_WHEEL_HEIGHT_POS = 289410018, STEERING_WHEEL_HEIGHT_POS = (((0x0BE2 + android.hardware.automotive.vehicle.VehiclePropertyGroup.SYSTEM) + android.hardware.automotive.vehicle.VehicleArea.GLOBAL) + android.hardware.automotive.vehicle.VehiclePropertyType.INT32),
STEERING_WHEEL_HEIGHT_MOVE = 289410019, STEERING_WHEEL_HEIGHT_MOVE = (((0x0BE3 + android.hardware.automotive.vehicle.VehiclePropertyGroup.SYSTEM) + android.hardware.automotive.vehicle.VehicleArea.GLOBAL) + android.hardware.automotive.vehicle.VehiclePropertyType.INT32),
STEERING_WHEEL_THEFT_LOCK_ENABLED = 287312868, STEERING_WHEEL_THEFT_LOCK_ENABLED = (((0x0BE4 + android.hardware.automotive.vehicle.VehiclePropertyGroup.SYSTEM) + android.hardware.automotive.vehicle.VehicleArea.GLOBAL) + android.hardware.automotive.vehicle.VehiclePropertyType.BOOLEAN),
STEERING_WHEEL_LOCKED = 287312869, STEERING_WHEEL_LOCKED = (((0x0BE5 + android.hardware.automotive.vehicle.VehiclePropertyGroup.SYSTEM) + android.hardware.automotive.vehicle.VehicleArea.GLOBAL) + android.hardware.automotive.vehicle.VehiclePropertyType.BOOLEAN),
STEERING_WHEEL_EASY_ACCESS_ENABLED = 287312870, STEERING_WHEEL_EASY_ACCESS_ENABLED = (((0x0BE6 + android.hardware.automotive.vehicle.VehiclePropertyGroup.SYSTEM) + android.hardware.automotive.vehicle.VehicleArea.GLOBAL) + android.hardware.automotive.vehicle.VehiclePropertyType.BOOLEAN),
VEHICLE_MAP_SERVICE = 299895808, VEHICLE_MAP_SERVICE = (((0x0C00 + 0x10000000) + 0x01000000) + 0x00e00000),
OBD2_LIVE_FRAME = 299896064, OBD2_LIVE_FRAME = (((0x0D00 + 0x10000000) + 0x01000000) + 0x00e00000),
OBD2_FREEZE_FRAME = 299896065, OBD2_FREEZE_FRAME = (((0x0D01 + 0x10000000) + 0x01000000) + 0x00e00000),
OBD2_FREEZE_FRAME_INFO = 299896066, OBD2_FREEZE_FRAME_INFO = (((0x0D02 + 0x10000000) + 0x01000000) + 0x00e00000),
OBD2_FREEZE_FRAME_CLEAR = 299896067, OBD2_FREEZE_FRAME_CLEAR = (((0x0D03 + 0x10000000) + 0x01000000) + 0x00e00000),
HEADLIGHTS_STATE = 289410560, HEADLIGHTS_STATE = (((0x0E00 + 0x10000000) + 0x01000000) + 0x00400000),
HIGH_BEAM_LIGHTS_STATE = 289410561, HIGH_BEAM_LIGHTS_STATE = (((0x0E01 + 0x10000000) + 0x01000000) + 0x00400000),
FOG_LIGHTS_STATE = 289410562, FOG_LIGHTS_STATE = (((0x0E02 + 0x10000000) + 0x01000000) + 0x00400000),
HAZARD_LIGHTS_STATE = 289410563, HAZARD_LIGHTS_STATE = (((0x0E03 + 0x10000000) + 0x01000000) + 0x00400000),
HEADLIGHTS_SWITCH = 289410576, HEADLIGHTS_SWITCH = (((0x0E10 + 0x10000000) + 0x01000000) + 0x00400000),
HIGH_BEAM_LIGHTS_SWITCH = 289410577, HIGH_BEAM_LIGHTS_SWITCH = (((0x0E11 + 0x10000000) + 0x01000000) + 0x00400000),
FOG_LIGHTS_SWITCH = 289410578, FOG_LIGHTS_SWITCH = (((0x0E12 + 0x10000000) + 0x01000000) + 0x00400000),
HAZARD_LIGHTS_SWITCH = 289410579, HAZARD_LIGHTS_SWITCH = (((0x0E13 + 0x10000000) + 0x01000000) + 0x00400000),
CABIN_LIGHTS_STATE = 289410817, CABIN_LIGHTS_STATE = (((0x0F01 + 0x10000000) + 0x01000000) + 0x00400000),
CABIN_LIGHTS_SWITCH = 289410818, CABIN_LIGHTS_SWITCH = (((0x0F02 + 0x10000000) + 0x01000000) + 0x00400000),
READING_LIGHTS_STATE = 356519683, READING_LIGHTS_STATE = (((0x0F03 + 0x10000000) + 0x05000000) + 0x00400000),
READING_LIGHTS_SWITCH = 356519684, READING_LIGHTS_SWITCH = (((0x0F04 + 0x10000000) + 0x05000000) + 0x00400000),
STEERING_WHEEL_LIGHTS_STATE = 289410828, STEERING_WHEEL_LIGHTS_STATE = (((0x0F0C + android.hardware.automotive.vehicle.VehiclePropertyGroup.SYSTEM) + android.hardware.automotive.vehicle.VehicleArea.GLOBAL) + android.hardware.automotive.vehicle.VehiclePropertyType.INT32),
STEERING_WHEEL_LIGHTS_SWITCH = 289410829, STEERING_WHEEL_LIGHTS_SWITCH = (((0x0F0D + android.hardware.automotive.vehicle.VehiclePropertyGroup.SYSTEM) + android.hardware.automotive.vehicle.VehicleArea.GLOBAL) + android.hardware.automotive.vehicle.VehiclePropertyType.INT32),
SUPPORT_CUSTOMIZE_VENDOR_PERMISSION = 287313669, SUPPORT_CUSTOMIZE_VENDOR_PERMISSION = (((0x0F05 + 0x10000000) + 0x01000000) + 0x00200000),
DISABLED_OPTIONAL_FEATURES = 286265094, DISABLED_OPTIONAL_FEATURES = (((0x0F06 + 0x10000000) + 0x01000000) + 0x00100000),
INITIAL_USER_INFO = 299896583, INITIAL_USER_INFO = (((0x0F07 + 0x10000000) + 0x01000000) + 0x00e00000),
SWITCH_USER = 299896584, SWITCH_USER = (((0x0F08 + 0x10000000) + 0x01000000) + 0x00e00000),
CREATE_USER = 299896585, CREATE_USER = (((0x0F09 + 0x10000000) + 0x01000000) + 0x00e00000),
REMOVE_USER = 299896586, REMOVE_USER = (((0x0F0A + 0x10000000) + 0x01000000) + 0x00e00000),
USER_IDENTIFICATION_ASSOCIATION = 299896587, USER_IDENTIFICATION_ASSOCIATION = (((0x0F0B + 0x10000000) + 0x01000000) + 0x00e00000),
EVS_SERVICE_REQUEST = 289476368, EVS_SERVICE_REQUEST = (((0x0F10 + 0x10000000) + 0x01000000) + 0x00410000),
POWER_POLICY_REQ = 286265121, POWER_POLICY_REQ = (((0x0F21 + 0x10000000) + 0x01000000) + 0x00100000),
POWER_POLICY_GROUP_REQ = 286265122, POWER_POLICY_GROUP_REQ = (((0x0F22 + 0x10000000) + 0x01000000) + 0x00100000),
CURRENT_POWER_POLICY = 286265123, CURRENT_POWER_POLICY = (((0x0F23 + 0x10000000) + 0x01000000) + 0x00100000),
WATCHDOG_ALIVE = 290459441, WATCHDOG_ALIVE = (((0xF31 + 0x10000000) + 0x01000000) + 0x00500000),
WATCHDOG_TERMINATED_PROCESS = 299896626, WATCHDOG_TERMINATED_PROCESS = (((0x0F32 + 0x10000000) + 0x01000000) + 0x00e00000),
VHAL_HEARTBEAT = 290459443, VHAL_HEARTBEAT = (((0x0F33 + 0x10000000) + 0x01000000) + 0x00500000),
CLUSTER_SWITCH_UI = 289410868, CLUSTER_SWITCH_UI = (((0x0F34 + 0x10000000) + 0x01000000) + 0x00400000),
CLUSTER_DISPLAY_STATE = 289476405, CLUSTER_DISPLAY_STATE = (((0x0F35 + 0x10000000) + 0x01000000) + 0x00410000),
CLUSTER_REPORT_STATE = 299896630, CLUSTER_REPORT_STATE = (((0x0F36 + 0x10000000) + 0x01000000) + 0x00e00000),
CLUSTER_REQUEST_DISPLAY = 289410871, CLUSTER_REQUEST_DISPLAY = (((0x0F37 + 0x10000000) + 0x01000000) + 0x00400000),
CLUSTER_NAVIGATION_STATE = 292556600, CLUSTER_NAVIGATION_STATE = (((0x0F38 + 0x10000000) + 0x01000000) + 0x00700000),
ELECTRONIC_TOLL_COLLECTION_CARD_TYPE = 289410873, ELECTRONIC_TOLL_COLLECTION_CARD_TYPE = (((0x0F39 + 0x10000000) + 0x01000000) + 0x00400000),
ELECTRONIC_TOLL_COLLECTION_CARD_STATUS = 289410874, ELECTRONIC_TOLL_COLLECTION_CARD_STATUS = (((0x0F3A + 0x10000000) + 0x01000000) + 0x00400000),
FRONT_FOG_LIGHTS_STATE = 289410875, FRONT_FOG_LIGHTS_STATE = (((0x0F3B + 0x10000000) + 0x01000000) + 0x00400000),
FRONT_FOG_LIGHTS_SWITCH = 289410876, FRONT_FOG_LIGHTS_SWITCH = (((0x0F3C + 0x10000000) + 0x01000000) + 0x00400000),
REAR_FOG_LIGHTS_STATE = 289410877, REAR_FOG_LIGHTS_STATE = (((0x0F3D + 0x10000000) + 0x01000000) + 0x00400000),
REAR_FOG_LIGHTS_SWITCH = 289410878, REAR_FOG_LIGHTS_SWITCH = (((0x0F3E + 0x10000000) + 0x01000000) + 0x00400000),
EV_CHARGE_CURRENT_DRAW_LIMIT = 291508031, EV_CHARGE_CURRENT_DRAW_LIMIT = (((0x0F3F + 0x10000000) + 0x01000000) + 0x00600000),
EV_CHARGE_PERCENT_LIMIT = 291508032, EV_CHARGE_PERCENT_LIMIT = (((0x0F40 + 0x10000000) + 0x01000000) + 0x00600000),
EV_CHARGE_STATE = 289410881, EV_CHARGE_STATE = (((0x0F41 + 0x10000000) + 0x01000000) + 0x00400000),
EV_CHARGE_SWITCH = 287313730, EV_CHARGE_SWITCH = (((0x0F42 + 0x10000000) + 0x01000000) + 0x00200000),
EV_CHARGE_TIME_REMAINING = 289410883, EV_CHARGE_TIME_REMAINING = (((0x0F43 + 0x10000000) + 0x01000000) + 0x00400000),
EV_REGENERATIVE_BRAKING_STATE = 289410884, EV_REGENERATIVE_BRAKING_STATE = (((0x0F44 + 0x10000000) + 0x01000000) + 0x00400000),
TRAILER_PRESENT = 289410885, TRAILER_PRESENT = (((0x0F45 + 0x10000000) + 0x01000000) + 0x00400000),
VEHICLE_CURB_WEIGHT = 289410886, VEHICLE_CURB_WEIGHT = (((0x0F46 + 0x10000000) + 0x01000000) + 0x00400000),
GENERAL_SAFETY_REGULATION_COMPLIANCE_REQUIREMENT = 289410887, GENERAL_SAFETY_REGULATION_COMPLIANCE_REQUIREMENT = (((0x0F47 + 0x10000000) + 0x01000000) + 0x00400000),
SUPPORTED_PROPERTY_IDS = 289476424, SUPPORTED_PROPERTY_IDS = (((0x0F48 + 0x10000000) + 0x01000000) + 0x00410000),
SHUTDOWN_REQUEST = 289410889, SHUTDOWN_REQUEST = (((0x0F49 + android.hardware.automotive.vehicle.VehiclePropertyGroup.SYSTEM) + android.hardware.automotive.vehicle.VehicleArea.GLOBAL) + android.hardware.automotive.vehicle.VehiclePropertyType.INT32),
AUTOMATIC_EMERGENCY_BRAKING_ENABLED = 287313920, AUTOMATIC_EMERGENCY_BRAKING_ENABLED = (((0x1000 + android.hardware.automotive.vehicle.VehiclePropertyGroup.SYSTEM) + android.hardware.automotive.vehicle.VehicleArea.GLOBAL) + android.hardware.automotive.vehicle.VehiclePropertyType.BOOLEAN),
AUTOMATIC_EMERGENCY_BRAKING_STATE = 289411073, AUTOMATIC_EMERGENCY_BRAKING_STATE = (((0x1001 + android.hardware.automotive.vehicle.VehiclePropertyGroup.SYSTEM) + android.hardware.automotive.vehicle.VehicleArea.GLOBAL) + android.hardware.automotive.vehicle.VehiclePropertyType.INT32),
FORWARD_COLLISION_WARNING_ENABLED = 287313922, FORWARD_COLLISION_WARNING_ENABLED = (((0x1002 + android.hardware.automotive.vehicle.VehiclePropertyGroup.SYSTEM) + android.hardware.automotive.vehicle.VehicleArea.GLOBAL) + android.hardware.automotive.vehicle.VehiclePropertyType.BOOLEAN),
FORWARD_COLLISION_WARNING_STATE = 289411075, FORWARD_COLLISION_WARNING_STATE = (((0x1003 + android.hardware.automotive.vehicle.VehiclePropertyGroup.SYSTEM) + android.hardware.automotive.vehicle.VehicleArea.GLOBAL) + android.hardware.automotive.vehicle.VehiclePropertyType.INT32),
BLIND_SPOT_WARNING_ENABLED = 287313924, BLIND_SPOT_WARNING_ENABLED = (((0x1004 + android.hardware.automotive.vehicle.VehiclePropertyGroup.SYSTEM) + android.hardware.automotive.vehicle.VehicleArea.GLOBAL) + android.hardware.automotive.vehicle.VehiclePropertyType.BOOLEAN),
BLIND_SPOT_WARNING_STATE = 339742725, BLIND_SPOT_WARNING_STATE = (((0x1005 + android.hardware.automotive.vehicle.VehiclePropertyGroup.SYSTEM) + android.hardware.automotive.vehicle.VehicleArea.MIRROR) + android.hardware.automotive.vehicle.VehiclePropertyType.INT32),
LANE_DEPARTURE_WARNING_ENABLED = 287313926, LANE_DEPARTURE_WARNING_ENABLED = (((0x1006 + android.hardware.automotive.vehicle.VehiclePropertyGroup.SYSTEM) + android.hardware.automotive.vehicle.VehicleArea.GLOBAL) + android.hardware.automotive.vehicle.VehiclePropertyType.BOOLEAN),
LANE_KEEP_ASSIST_ENABLED = 287313928, LANE_KEEP_ASSIST_ENABLED = (((0x1008 + android.hardware.automotive.vehicle.VehiclePropertyGroup.SYSTEM) + android.hardware.automotive.vehicle.VehicleArea.GLOBAL) + android.hardware.automotive.vehicle.VehiclePropertyType.BOOLEAN),
LANE_CENTERING_ASSIST_ENABLED = 287313930, LANE_CENTERING_ASSIST_ENABLED = (((0x100A + android.hardware.automotive.vehicle.VehiclePropertyGroup.SYSTEM) + android.hardware.automotive.vehicle.VehicleArea.GLOBAL) + android.hardware.automotive.vehicle.VehiclePropertyType.BOOLEAN),
EMERGENCY_LANE_KEEP_ASSIST_ENABLED = 287313933, EMERGENCY_LANE_KEEP_ASSIST_ENABLED = (((0x100D + android.hardware.automotive.vehicle.VehiclePropertyGroup.SYSTEM) + android.hardware.automotive.vehicle.VehicleArea.GLOBAL) + android.hardware.automotive.vehicle.VehiclePropertyType.BOOLEAN),
ADAPTIVE_CRUISE_CONTROL_ENABLED = 287313935, ADAPTIVE_CRUISE_CONTROL_ENABLED = (((0x100F + android.hardware.automotive.vehicle.VehiclePropertyGroup.SYSTEM) + android.hardware.automotive.vehicle.VehicleArea.GLOBAL) + android.hardware.automotive.vehicle.VehiclePropertyType.BOOLEAN),
HANDS_ON_DETECTION_ENABLED = 287313942, HANDS_ON_DETECTION_ENABLED = (((0x1016 + android.hardware.automotive.vehicle.VehiclePropertyGroup.SYSTEM) + android.hardware.automotive.vehicle.VehicleArea.GLOBAL) + android.hardware.automotive.vehicle.VehiclePropertyType.BOOLEAN),
DRIVER_ATTENTION_MONITORING_ENABLED = 287313945, DRIVER_ATTENTION_MONITORING_ENABLED = (((0x1019 + android.hardware.automotive.vehicle.VehiclePropertyGroup.SYSTEM) + android.hardware.automotive.vehicle.VehicleArea.GLOBAL) + android.hardware.automotive.vehicle.VehiclePropertyType.BOOLEAN),
} }

View file

@ -34,7 +34,7 @@
package android.hardware.automotive.vehicle; package android.hardware.automotive.vehicle;
@Backing(type="int") @VintfStability @Backing(type="int") @VintfStability
enum VehiclePropertyGroup { enum VehiclePropertyGroup {
SYSTEM = 268435456, SYSTEM = 0x10000000,
VENDOR = 536870912, VENDOR = 0x20000000,
MASK = -268435456, MASK = 0xf0000000,
} }

View file

@ -34,15 +34,15 @@
package android.hardware.automotive.vehicle; package android.hardware.automotive.vehicle;
@Backing(type="int") @VintfStability @Backing(type="int") @VintfStability
enum VehiclePropertyType { enum VehiclePropertyType {
STRING = 1048576, STRING = 0x00100000,
BOOLEAN = 2097152, BOOLEAN = 0x00200000,
INT32 = 4194304, INT32 = 0x00400000,
INT32_VEC = 4259840, INT32_VEC = 0x00410000,
INT64 = 5242880, INT64 = 0x00500000,
INT64_VEC = 5308416, INT64_VEC = 0x00510000,
FLOAT = 6291456, FLOAT = 0x00600000,
FLOAT_VEC = 6356992, FLOAT_VEC = 0x00610000,
BYTES = 7340032, BYTES = 0x00700000,
MIXED = 14680064, MIXED = 0x00e00000,
MASK = 16711680, MASK = 0x00ff0000,
} }

View file

@ -34,7 +34,7 @@
package android.hardware.automotive.vehicle; package android.hardware.automotive.vehicle;
@Backing(type="int") @VintfStability @Backing(type="int") @VintfStability
enum VehicleTurnSignal { enum VehicleTurnSignal {
NONE = 0, NONE = 0x00,
RIGHT = 1, RIGHT = 0x01,
LEFT = 2, LEFT = 0x02,
} }

View file

@ -34,37 +34,37 @@
package android.hardware.automotive.vehicle; package android.hardware.automotive.vehicle;
@Backing(type="int") @VintfStability @Backing(type="int") @VintfStability
enum VehicleUnit { enum VehicleUnit {
SHOULD_NOT_USE = 0, SHOULD_NOT_USE = 0x000,
METER_PER_SEC = 1, METER_PER_SEC = 0x01,
RPM = 2, RPM = 0x02,
HERTZ = 3, HERTZ = 0x03,
PERCENTILE = 16, PERCENTILE = 0x10,
MILLIMETER = 32, MILLIMETER = 0x20,
METER = 33, METER = 0x21,
KILOMETER = 35, KILOMETER = 0x23,
MILE = 36, MILE = 0x24,
CELSIUS = 48, CELSIUS = 0x30,
FAHRENHEIT = 49, FAHRENHEIT = 0x31,
KELVIN = 50, KELVIN = 0x32,
MILLILITER = 64, MILLILITER = 0x40,
LITER = 65, LITER = 0x41,
GALLON = 66, GALLON = 0x42,
US_GALLON = 66, US_GALLON = 0x42,
IMPERIAL_GALLON = 67, IMPERIAL_GALLON = 0x43,
NANO_SECS = 80, NANO_SECS = 0x50,
SECS = 83, SECS = 0x53,
YEAR = 89, YEAR = 0x59,
WATT_HOUR = 96, WATT_HOUR = 0x60,
MILLIAMPERE = 97, MILLIAMPERE = 0x61,
MILLIVOLT = 98, MILLIVOLT = 0x62,
MILLIWATTS = 99, MILLIWATTS = 0x63,
AMPERE_HOURS = 100, AMPERE_HOURS = 0x64,
KILOWATT_HOUR = 101, KILOWATT_HOUR = 0x65,
AMPERE = 102, AMPERE = 0x66,
KILOPASCAL = 112, KILOPASCAL = 0x70,
PSI = 113, PSI = 0x71,
BAR = 114, BAR = 0x72,
DEGREES = 128, DEGREES = 0x80,
MILES_PER_HOUR = 144, MILES_PER_HOUR = 0x90,
KILOMETERS_PER_HOUR = 145, KILOMETERS_PER_HOUR = 0x91,
} }

View file

@ -34,42 +34,42 @@
package android.hardware.automotive.vehicle; package android.hardware.automotive.vehicle;
@Backing(type="int") @VintfStability @Backing(type="int") @VintfStability
enum VehicleVendorPermission { enum VehicleVendorPermission {
PERMISSION_DEFAULT = 0, PERMISSION_DEFAULT = 0x00000000,
PERMISSION_SET_VENDOR_CATEGORY_WINDOW = 1, PERMISSION_SET_VENDOR_CATEGORY_WINDOW = 0X00000001,
PERMISSION_GET_VENDOR_CATEGORY_WINDOW = 2, PERMISSION_GET_VENDOR_CATEGORY_WINDOW = 0x00000002,
PERMISSION_SET_VENDOR_CATEGORY_DOOR = 3, PERMISSION_SET_VENDOR_CATEGORY_DOOR = 0x00000003,
PERMISSION_GET_VENDOR_CATEGORY_DOOR = 4, PERMISSION_GET_VENDOR_CATEGORY_DOOR = 0x00000004,
PERMISSION_SET_VENDOR_CATEGORY_SEAT = 5, PERMISSION_SET_VENDOR_CATEGORY_SEAT = 0x00000005,
PERMISSION_GET_VENDOR_CATEGORY_SEAT = 6, PERMISSION_GET_VENDOR_CATEGORY_SEAT = 0x00000006,
PERMISSION_SET_VENDOR_CATEGORY_MIRROR = 7, PERMISSION_SET_VENDOR_CATEGORY_MIRROR = 0x00000007,
PERMISSION_GET_VENDOR_CATEGORY_MIRROR = 8, PERMISSION_GET_VENDOR_CATEGORY_MIRROR = 0x00000008,
PERMISSION_SET_VENDOR_CATEGORY_INFO = 9, PERMISSION_SET_VENDOR_CATEGORY_INFO = 0x00000009,
PERMISSION_GET_VENDOR_CATEGORY_INFO = 10, PERMISSION_GET_VENDOR_CATEGORY_INFO = 0x0000000A,
PERMISSION_SET_VENDOR_CATEGORY_ENGINE = 11, PERMISSION_SET_VENDOR_CATEGORY_ENGINE = 0x0000000B,
PERMISSION_GET_VENDOR_CATEGORY_ENGINE = 12, PERMISSION_GET_VENDOR_CATEGORY_ENGINE = 0x0000000C,
PERMISSION_SET_VENDOR_CATEGORY_HVAC = 13, PERMISSION_SET_VENDOR_CATEGORY_HVAC = 0x0000000D,
PERMISSION_GET_VENDOR_CATEGORY_HVAC = 14, PERMISSION_GET_VENDOR_CATEGORY_HVAC = 0x0000000E,
PERMISSION_SET_VENDOR_CATEGORY_LIGHT = 15, PERMISSION_SET_VENDOR_CATEGORY_LIGHT = 0x0000000F,
PERMISSION_GET_VENDOR_CATEGORY_LIGHT = 16, PERMISSION_GET_VENDOR_CATEGORY_LIGHT = 0x00000010,
PERMISSION_SET_VENDOR_CATEGORY_1 = 65536, PERMISSION_SET_VENDOR_CATEGORY_1 = 0x00010000,
PERMISSION_GET_VENDOR_CATEGORY_1 = 69632, PERMISSION_GET_VENDOR_CATEGORY_1 = 0x00011000,
PERMISSION_SET_VENDOR_CATEGORY_2 = 131072, PERMISSION_SET_VENDOR_CATEGORY_2 = 0x00020000,
PERMISSION_GET_VENDOR_CATEGORY_2 = 135168, PERMISSION_GET_VENDOR_CATEGORY_2 = 0x00021000,
PERMISSION_SET_VENDOR_CATEGORY_3 = 196608, PERMISSION_SET_VENDOR_CATEGORY_3 = 0x00030000,
PERMISSION_GET_VENDOR_CATEGORY_3 = 200704, PERMISSION_GET_VENDOR_CATEGORY_3 = 0x00031000,
PERMISSION_SET_VENDOR_CATEGORY_4 = 262144, PERMISSION_SET_VENDOR_CATEGORY_4 = 0x00040000,
PERMISSION_GET_VENDOR_CATEGORY_4 = 266240, PERMISSION_GET_VENDOR_CATEGORY_4 = 0x00041000,
PERMISSION_SET_VENDOR_CATEGORY_5 = 327680, PERMISSION_SET_VENDOR_CATEGORY_5 = 0x00050000,
PERMISSION_GET_VENDOR_CATEGORY_5 = 331776, PERMISSION_GET_VENDOR_CATEGORY_5 = 0x00051000,
PERMISSION_SET_VENDOR_CATEGORY_6 = 393216, PERMISSION_SET_VENDOR_CATEGORY_6 = 0x00060000,
PERMISSION_GET_VENDOR_CATEGORY_6 = 397312, PERMISSION_GET_VENDOR_CATEGORY_6 = 0x00061000,
PERMISSION_SET_VENDOR_CATEGORY_7 = 458752, PERMISSION_SET_VENDOR_CATEGORY_7 = 0x00070000,
PERMISSION_GET_VENDOR_CATEGORY_7 = 462848, PERMISSION_GET_VENDOR_CATEGORY_7 = 0x00071000,
PERMISSION_SET_VENDOR_CATEGORY_8 = 524288, PERMISSION_SET_VENDOR_CATEGORY_8 = 0x00080000,
PERMISSION_GET_VENDOR_CATEGORY_8 = 528384, PERMISSION_GET_VENDOR_CATEGORY_8 = 0x00081000,
PERMISSION_SET_VENDOR_CATEGORY_9 = 589824, PERMISSION_SET_VENDOR_CATEGORY_9 = 0x00090000,
PERMISSION_GET_VENDOR_CATEGORY_9 = 593920, PERMISSION_GET_VENDOR_CATEGORY_9 = 0x00091000,
PERMISSION_SET_VENDOR_CATEGORY_10 = 655360, PERMISSION_SET_VENDOR_CATEGORY_10 = 0x000A0000,
PERMISSION_GET_VENDOR_CATEGORY_10 = 659456, PERMISSION_GET_VENDOR_CATEGORY_10 = 0x000A1000,
PERMISSION_NOT_ACCESSIBLE = -268435456, PERMISSION_NOT_ACCESSIBLE = 0xF0000000,
} }