HomeSort by relevance Sort by last modified time
    Searched refs:notificationStatus (Results 1 - 2 of 2) sorted by null

  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMnsObexClient.java 186 public void handleRegistration(int masId, int notificationStatus){
187 Log.d(TAG, "handleRegistration( " + masId + ", " + notificationStatus + ")");
190 (notificationStatus == BluetoothMapAppParams.NOTIFICATION_STATUS_YES)) {
195 if(notificationStatus == BluetoothMapAppParams.NOTIFICATION_STATUS_NO) {
202 } else if(notificationStatus == BluetoothMapAppParams.NOTIFICATION_STATUS_YES) {
BluetoothMapAppParams.java 103 private int notificationStatus = INVALID_VALUE_PARAMETER;
670 return notificationStatus;
673 public void setNotificationStatus(int notificationStatus) throws IllegalArgumentException {
674 if (notificationStatus < 0 || notificationStatus > 0x0001)
676 this.notificationStatus = notificationStatus;
    [all...]

Completed in 684 milliseconds