Searched refs:notificationStatus (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/map/
H A DBluetoothMnsObexClient.java166 public void handleRegistration(int masId, int notificationStatus){ argument
167 Log.d(TAG, "handleRegistration( " + masId + ", " + notificationStatus + ")");
170 (notificationStatus == BluetoothMapAppParams.NOTIFICATION_STATUS_YES)) {
175 if(notificationStatus == BluetoothMapAppParams.NOTIFICATION_STATUS_NO) {
181 } else if(notificationStatus == BluetoothMapAppParams.NOTIFICATION_STATUS_YES) {
H A DBluetoothMapAppParams.java103 private int notificationStatus = INVALID_VALUE_PARAMETER; field in class:BluetoothMapAppParams
670 return notificationStatus;
673 public void setNotificationStatus(int notificationStatus) throws IllegalArgumentException { argument
674 if (notificationStatus < 0 || notificationStatus > 0x0001)
676 this.notificationStatus = notificationStatus;

Completed in 114 milliseconds