Home
last modified time | relevance | path

Searched refs:BluetoothMapMasInstance (Results 1 – 6 of 6) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/map/
DBluetoothMapService.java123 private SparseArray<BluetoothMapMasInstance> mMasInstances =
124 new SparseArray<BluetoothMapMasInstance>(1);
126 private HashMap<BluetoothMapAccountItem, BluetoothMapMasInstance> mMasInstanceMap =
127 new HashMap<BluetoothMapAccountItem, BluetoothMapMasInstance>(1);
218 BluetoothMapMasInstance masInst = mMasInstances.get(masId); // returns null for -1 in startSocketListeners()
299 BluetoothMapMasInstance masInst = mMasInstances.valueAt(i); in stopObexServerSessions()
312 BluetoothMapMasInstance masInst = mMasInstances.get(masId); // returns null for -1 in stopObexServerSessions()
444 BluetoothMapMasInstance masInst = mMasInstances.get(msg.arg1); in handleMessage()
467 BluetoothMapMasInstance masInst = mMasInstances.get(masId); in onConnectHandler()
770 BluetoothMapMasInstance masInst = mMasInstanceMap.remove(account); in updateMasInstancesHandler()
[all …]
DBluetoothMapMasInstance.java42 public class BluetoothMapMasInstance implements IObexConnectionHandler { class
122 public BluetoothMapMasInstance(BluetoothMapService mapService, Context context, in BluetoothMapMasInstance() method in BluetoothMapMasInstance
150 protected BluetoothMapMasInstance() { in BluetoothMapMasInstance() method in BluetoothMapMasInstance
513 boolean isValid = mMapService.onConnect(device, BluetoothMapMasInstance.this); in onConnect()
DBluetoothMapObexServer.java115 private BluetoothMapMasInstance mMasInstance; // TODO: change to interface?
127 BluetoothMapContentObserver observer, BluetoothMapMasInstance mas, in BluetoothMapObexServer()
1627 : BluetoothMapMasInstance.TYPE_EMAIL_STR; in sendMASInstanceInformationRsp()
1649 outString = BluetoothMapMasInstance.TYPE_SMS_MMS_STR; in sendMASInstanceInformationRsp()
DBluetoothMapContentObserver.java129 private BluetoothMapMasInstance mMasInstance = null;
251 BluetoothMapMasInstance masInstance, BluetoothMapAccountItem account, in BluetoothMapContentObserver()
318 remoteSupportedFeatures & BluetoothMapMasInstance.getFeatureMask(); in setObserverRemoteFeatureMask()
DBluetoothMapContent.java150 private final BluetoothMapMasInstance mMasInstance;
424 BluetoothMapMasInstance mas) { in BluetoothMapContent()
/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/map/
DBluetoothMapContentObserverTest.java79 BluetoothMapMasInstance mockMas = mock(BluetoothMapMasInstance.class); in testInitMsgList()