Home
last modified time | relevance | path

Searched refs:masId (Results 1 – 4 of 4) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/map/
DBluetoothMapService.java209 private void startSocketListeners(int masId) { in startSocketListeners() argument
210 if (masId == -1) { in startSocketListeners()
215 BluetoothMapMasInstance masInst = mMasInstances.get(masId); // returns null for -1 in startSocketListeners()
219 Log.w(TAG, "startSocketListeners(): Invalid MasId: " + masId); in startSocketListeners()
287 private void stopObexServerSessions(int masId) { in stopObexServerSessions() argument
294 if (masId != -1) { in stopObexServerSessions()
297 if (masInst.getMasId() != masId && masInst.isStarted()) { in stopObexServerSessions()
309 BluetoothMapMasInstance masInst = mMasInstances.get(masId); // returns null for -1 in stopObexServerSessions()
312 } else if (masId == -1) { in stopObexServerSessions()
460 private void onConnectHandler(int masId) { in onConnectHandler() argument
[all …]
DBluetoothMnsObexClient.java102 MnsSdpSearchInfo(boolean isSearchON, int masId, int notification) { in MnsSdpSearchInfo() argument
104 lastMasId = masId; in MnsSdpSearchInfo()
238 public synchronized void handleRegistration(int masId, int notificationStatus) { in handleRegistration() argument
240 Log.d(TAG, "handleRegistration( " + masId + ", " + notificationStatus + ")"); in handleRegistration()
244 mRegisteredMasIds.delete(masId); in handleRegistration()
245 if (mMnsLstRegRqst != null && mMnsLstRegRqst.lastMasId == masId) { in handleRegistration()
260 mRegisteredMasIds.put(masId, true); // We don't use the value for anything in handleRegistration()
281 msg.arg1 = masId; in handleRegistration()
DBluetoothMapMasInstance.java123 BluetoothMapAccountItem account, int masId, boolean enableSmsMms) { in BluetoothMapMasInstance() argument
132 mMasInstanceId = masId; in BluetoothMapMasInstance()
/packages/apps/Bluetooth/src/com/android/bluetooth/sdp/
DSdpManager.java82 private native int sdpCreateMapMasRecordNative(String serviceName, int masId, int rfcommChannel, in sdpCreateMapMasRecordNative() argument
506 public int createMapMasRecord(String serviceName, int masId, int rfcommChannel, int l2capPsm, in createMapMasRecord() argument
511 return sdpCreateMapMasRecordNative(serviceName, masId, rfcommChannel, l2capPsm, version, in createMapMasRecord()