Home
last modified time | relevance | path

Searched refs:bitmask (Results 1 – 6 of 6) sorted by relevance

/packages/services/Car/car-lib/src/android/car/diagnostic/
DCarDiagnosticEvent.java708 CommonIgnitionMonitors(int bitmask) { in CommonIgnitionMonitors() argument
709 components = COMPONENTS_DECODER.fromValue(bitmask); in CommonIgnitionMonitors()
710 fuelSystem = FUEL_SYSTEM_DECODER.fromValue(bitmask); in CommonIgnitionMonitors()
711 misfire = MISFIRE_DECODER.fromValue(bitmask); in CommonIgnitionMonitors()
818 SparkIgnitionMonitors(int bitmask) { in SparkIgnitionMonitors() argument
819 super(bitmask); in SparkIgnitionMonitors()
820 EGR = EGR_DECODER.fromValue(bitmask); in SparkIgnitionMonitors()
821 oxygenSensorHeater = OXYGEN_SENSOR_HEATER_DECODER.fromValue(bitmask); in SparkIgnitionMonitors()
822 oxygenSensor = OXYGEN_SENSOR_DECODER.fromValue(bitmask); in SparkIgnitionMonitors()
823 ACRefrigerant = AC_REFRIGERANT_DECODER.fromValue(bitmask); in SparkIgnitionMonitors()
[all …]
/packages/services/Car/tools/emulator/
Ddiagnostic_builder.py62 self.bitmask = DiagnosticEventBuilder.ByteArray(
69 self.bitmask.setBit(idx)
74 self.bitmask.setBit(len(self.int32_values)+idx)
82 self.bytes_value = str(self.bitmask)
/packages/services/Telephony/src/com/android/phone/
DShortcutViewUtils.java53 int bitmask = 0;
55 bitmask |= category;
57 PROMOTED_CATEGORIES_BITMASK = bitmask;
/packages/services/Telecomm/proto/
Dtelecom.proto117 // No unspecified field to define. This enum to be used only as values for a bitmask.
266 // A bitmask with bits corresponding to call technologies that were used
299 // A bitmask of the properties that were set at any point during the call.
/packages/services/Telephony/src/com/android/services/telephony/
DImsConference.java581 private int changeBitmask(int bitmask, int bitfield, boolean enabled) { in changeBitmask() argument
583 return bitmask | bitfield; in changeBitmask()
585 return bitmask & ~bitfield; in changeBitmask()
DTelephonyConnection.java2092 private int changeBitmask(int bitmask, int bitfield, boolean enabled) { in changeBitmask() argument
2094 return bitmask | bitfield; in changeBitmask()
2096 return bitmask & ~bitfield; in changeBitmask()