/** @hide */
 public boolean fetchMasInstances() {
   if (sService == null) {
     Log.e(TAG, "BT not enabled. Cannot query remote device for MAS instances");
     return false;
   }
   try {
     return sService.fetchRemoteMasInstances(this);
   } catch (RemoteException e) {
     Log.e(TAG, "", e);
   }
   return false;
 }