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.java212 private void startSocketListeners(int masId) { in startSocketListeners() argument
213 if (masId == -1) { in startSocketListeners()
218 BluetoothMapMasInstance masInst = mMasInstances.get(masId); // returns null for -1 in startSocketListeners()
222 Log.w(TAG, "startSocketListeners(): Invalid MasId: " + masId); in startSocketListeners()
290 private void stopObexServerSessions(int masId) { in stopObexServerSessions() argument
297 if (masId != -1) { in stopObexServerSessions()
300 if (masInst.getMasId() != masId && masInst.isStarted()) { in stopObexServerSessions()
312 BluetoothMapMasInstance masInst = mMasInstances.get(masId); // returns null for -1 in stopObexServerSessions()
315 } else if (masId == -1) { in stopObexServerSessions()
463 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()