Searched defs:statusValue (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/map/
H A DBluetoothMapContentObserver.java562 public boolean setMessageStatusDeleted(long handle, TYPE type, int statusValue) { argument
565 + " type " + type + " value " + statusValue);
567 if (statusValue == BluetoothMapAppParams.STATUS_VALUE_YES) {
573 } else if (statusValue == BluetoothMapAppParams.STATUS_VALUE_NO) {
583 public boolean setMessageStatusRead(long handle, TYPE type, int statusValue) { argument
587 + " type " + type + " value " + statusValue);
597 contentValues.put(Sms.READ, statusValue);
604 contentValues.put(Mms.READ, statusValue);
H A DBluetoothMapAppParams.java113 private int statusValue = INVALID_VALUE_PARAMETER; field in class:BluetoothMapAppParams
770 return statusValue;
773 public void setStatusValue(int statusValue) { argument
774 if (statusValue < 0 || statusValue > 0x1)
776 this.statusValue = statusValue;

Completed in 119 milliseconds