Searched refs:masId (Results 1 - 5 of 5) sorted by relevance

/packages/apps/Bluetooth/tests/src/com/android/bluetooth/tests/
H A DMockMasInstance.java11 public MockMasInstance(int masId, int remoteFeatureMask) { argument
13 this.mMasId = masId;
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
H A DBluetoothMapService.java196 private final void startRfcommSocketListeners(int masId) { argument
197 if(masId == -1) {
202 BluetoothMapMasInstance masInst = mMasInstances.get(masId); // returns null for -1
206 Log.w(TAG, "startRfcommSocketListeners(): Invalid MasId: " + masId);
266 * @param masId use -1 to stop all instances
268 private void stopObexServerSessions(int masId) { argument
273 if(masId != -1) {
276 if(masInst.getMasId() != masId && masInst.isStarted()) {
288 BluetoothMapMasInstance masInst = mMasInstances.get(masId); // returns null for -1
398 private void onConnectHandler(int masId) { argument
845 sendStartListenerMessage(int masId) argument
855 sendConnectMessage(int masId) argument
[all...]
H A DBluetoothMnsObexClient.java102 handleRegistration(msg.arg1 /*masId*/, msg.arg2 /*status*/);
105 sendEventHandler((byte[])msg.obj/*byte[]*/, msg.arg1 /*masId*/);
178 * @param masId
181 public void handleRegistration(int masId, int notificationStatus){ argument
182 if(D) Log.d(TAG, "handleRegistration( " + masId + ", " + notificationStatus + ")");
185 mRegisteredMasIds.delete(masId);
194 mRegisteredMasIds.put(masId, true); // We don't use the value for anything
H A DBluetoothMapMasInstance.java118 int masId,
128 mMasInstanceId = masId;
115 BluetoothMapMasInstance(BluetoothMapService mapService, Context context, BluetoothMapAccountItem account, int masId, boolean enableSmsMms) argument
/packages/apps/Bluetooth/src/com/android/bluetooth/sdp/
H A DSdpManager.java99 private native int sdpCreateMapMasRecordNative(String serviceName, int masId, argument
507 * @param masId The MAS ID to associate with this SDP record
524 public int createMapMasRecord(String serviceName, int masId, argument
530 return sdpCreateMapMasRecordNative(serviceName, masId, rfcommChannel,

Completed in 103 milliseconds