Home
last modified time | relevance | path

Searched refs:formatType (Results 1 – 2 of 2) sorted by relevance

/packages/modules/Bluetooth/framework/java/android/bluetooth/
DBluetoothGattCharacteristic.java483 public Integer getIntValue(int formatType, int offset) { in getIntValue() argument
484 if ((offset + getTypeLen(formatType)) > mValue.length) return null; in getIntValue()
486 switch (formatType) { in getIntValue()
528 public Float getFloatValue(int formatType, int offset) { in getFloatValue() argument
529 if ((offset + getTypeLen(formatType)) > mValue.length) return null; in getFloatValue()
531 switch (formatType) { in getFloatValue()
593 public boolean setValue(int value, int formatType, int offset) { in setValue() argument
594 int len = offset + getTypeLen(formatType); in setValue()
598 switch (formatType) { in setValue()
644 public boolean setValue(int mantissa, int exponent, int formatType, int offset) { in setValue() argument
[all …]
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/tbs/
DTbsGatt.java578 public boolean setValue(int value, int formatType, int offset) { in setValue() argument
579 boolean success = super.setValue(value, formatType, offset); in setValue()