Home
last modified time | relevance | path

Searched defs:prop (Results 1 – 21 of 21) sorted by relevance

/packages/services/Car/car-lib/src/android/car/hardware/hvac/
DICarHvac.aidl32 CarPropertyValue getProperty(int prop, int zone) = 3; in getProperty()
34 void setProperty(in CarPropertyValue prop) = 4; field
DCarHvacManager.java258 public boolean getBooleanProperty(int prop, int area) throws CarNotConnectedException { in getBooleanProperty()
269 public float getFloatProperty(int prop, int area) throws CarNotConnectedException { in getFloatProperty()
280 public int getIntProperty(int prop, int area) throws CarNotConnectedException { in getIntProperty()
287 private <E> CarPropertyValue<E> getProperty(Class<E> clazz, int prop, int area) in getProperty()
318 public void setBooleanProperty(int prop, int area, boolean val) in setBooleanProperty()
331 public void setFloatProperty(int prop, int area, float val) throws CarNotConnectedException { in setFloatProperty()
343 public void setIntProperty(int prop, int area, int val) throws CarNotConnectedException { in setIntProperty()
/packages/apps/Terminal/src/com/android/terminal/
DTerminalCallbacks.java33 public int setTermPropBoolean(int prop, boolean value) { in setTermPropBoolean()
37 public int setTermPropInt(int prop, int value) { in setTermPropInt()
41 public int setTermPropString(int prop, String value) { in setTermPropString()
45 public int setTermPropColor(int prop, int red, int green, int blue) { in setTermPropColor()
/packages/services/Car/service/src/com/android/car/hal/
DInfoHalService.java83 VehiclePropConfig prop = getHalPropertyFromInfoString(key); in getInt() local
93 VehiclePropConfig prop = getHalPropertyFromInfoString(key); in getLong() local
103 VehiclePropConfig prop = getHalPropertyFromInfoString(key); in getFloat() local
113 VehiclePropConfig prop = getHalPropertyFromInfoString(key); in getString() local
DHvacHalService.java95 public void setHvacProperty(CarPropertyValue prop) { in setHvacProperty()
168 int prop = v.getProp(); in dispatchEventToListener() local
DSensorHalService.java200 private float fixSamplingRateForProperty(VehiclePropConfig prop, int carSensorManagerRate) { in fixSamplingRateForProperty()
/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/hvac/
DHvacTestFragment.java216 private void configureAcOn(View v, CarPropertyConfig prop) { in configureAcOn()
232 private void configureFanPosition(View v, CarPropertyConfig prop) { in configureFanPosition()
267 private void configureFanSpeed(View v, CarPropertyConfig prop) { in configureFanSpeed()
308 private void configureTempSetpoint(View v, CarPropertyConfig prop) { in configureTempSetpoint()
/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
DRemoteDevices.java78 DeviceProperties prop = mDevices.get(Utils.getAddressStringFromByte(address)); in getDevice() local
86 DeviceProperties prop = new DeviceProperties(); in addDeviceProperties() local
89 mDevices.put(Utils.getAddressStringFromByte(address), prop); in addDeviceProperties() local
224 DeviceProperties prop = getDeviceProperties(device); in sendUuidIntent() local
343 DeviceProperties prop = getDeviceProperties(device); in aclStateChangeCallback() local
DBondStateMachine.java74 AdapterProperties prop, RemoteDevices remoteDevices) { in BondStateMachine()
86 AdapterProperties prop, RemoteDevices remoteDevices) { in make()
DAdapterProperties.java276 DeviceProperties prop = mRemoteDevices.getDeviceProperties(device); in onBondStateChanged() local
/packages/services/Car/libvehiclenetwork/proto/
DVehicleNetworkProto.proto22 required int32 prop = 1; field
46 required int32 prop = 1; field
/packages/services/Car/tests/libvehiclenetwork-java-test/src/com/android/car/vehiclenetwork/libtest/
DVehicleNetworkTestUtil.java24 public static VehiclePropValue createDummyValue(int prop, int valueType) { in createDummyValue()
DVehicleNetworkTest.java224 private synchronized boolean waitForEvent(Integer prop, long timeoutMs) in waitForEvent()
/packages/services/Car/service/src/com/android/car/
DCarHvacService.java169 public synchronized CarPropertyValue getProperty(int prop, int zone) { in getProperty()
175 public synchronized void setProperty(CarPropertyValue prop) { in setProperty()
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/about/
DStatusFragment.java263 LinkProperties prop = cm.getActiveLinkProperties(); in getDefaultIpAddresses() local
267 private static String formatIpAddresses(LinkProperties prop) { in formatIpAddresses()
/packages/services/Car/vehicle_network_service/
DVehicleNetworkService.cpp222 for (auto& prop : mProperties->getList()) { in dump() local
227 for (auto& prop : mPropertiesForMocking->getList()) { in dump() local
599 status_t VehicleNetworkService::subscribe(const sp<IVehicleNetworkListener> &listener, int32_t prop, in subscribe()
695 void VehicleNetworkService::unsubscribe(const sp<IVehicleNetworkListener> &listener, int32_t prop) { in unsubscribe()
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
DICalendarTest.java15 ICalendar.Property prop = new ICalendar.Property("prop1", "value1"); in testAddParameter() local
/packages/apps/Settings/src/com/android/settings/
DUtils.java239 LinkProperties prop = cm.getLinkProperties(ConnectivityManager.TYPE_WIFI); in getWifiIpAddresses() local
250 LinkProperties prop = cm.getActiveLinkProperties(); in getDefaultIpAddresses() local
254 private static String formatIpAddresses(LinkProperties prop) { in formatIpAddresses()
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
DBluetoothPbapVcardManager.java762 public final String prop; field in BluetoothPbapVcardManager.VCardFilter.FilterBit
766 FilterBit(int pos, String prop, boolean onlyCheckV21, boolean excludeForV21) { in FilterBit()
/packages/apps/Bluetooth/jni/
Dcom_android_bluetooth_btservice_AdapterService.cpp983 bt_property_t prop; in setAdapterPropertyNative() local
1062 bt_property_t prop; in setDevicePropertyNative() local
/packages/apps/Terminal/jni/
Dcom_android_terminal_Terminal.cpp195 static int term_settermprop(VTermProp prop, VTermValue *val, void *user) { in term_settermprop()