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.java216 private void startSocketListeners(int masId) { in startSocketListeners() argument
217 if (masId == -1) { in startSocketListeners()
222 BluetoothMapMasInstance masInst = mMasInstances.get(masId); // returns null for -1 in startSocketListeners()
226 Log.w(TAG, "startSocketListeners(): Invalid MasId: " + masId); in startSocketListeners()
294 private void stopObexServerSessions(int masId) { in stopObexServerSessions() argument
301 if (masId != -1) { in stopObexServerSessions()
304 if (masInst.getMasId() != masId && masInst.isStarted()) { in stopObexServerSessions()
316 BluetoothMapMasInstance masInst = mMasInstances.get(masId); // returns null for -1 in stopObexServerSessions()
319 } else if (masId == -1) { in stopObexServerSessions()
471 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.java85 private native int sdpCreateMapMasRecordNative(String serviceName, int masId, int rfcommChannel, in sdpCreateMapMasRecordNative() argument
543 public int createMapMasRecord(String serviceName, int masId, int rfcommChannel, int l2capPsm, in createMapMasRecord() argument
548 return sdpCreateMapMasRecordNative(serviceName, masId, rfcommChannel, l2capPsm, version, in createMapMasRecord()