OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:masId
(Results
1 - 5
of
5
) sorted by null
/packages/apps/Bluetooth/tests/src/com/android/bluetooth/tests/
MockMasInstance.java
11
public MockMasInstance(int
masId
, int remoteFeatureMask) {
13
this.mMasId =
masId
;
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapService.java
129
/* mMasInstances: A list of the active MasInstances with the key being the
MasId
*/
218
private final void startRfcommSocketListeners(int
masId
) {
219
if(
masId
== -1) {
224
BluetoothMapMasInstance masInst = mMasInstances.get(
masId
); // returns null for -1
228
Log.w(TAG, "startRfcommSocketListeners(): Invalid
MasId
: " +
masId
);
288
* @param
masId
use -1 to stop all instances
290
private void stopObexServerSessions(int
masId
) {
295
if(
masId
!= -1) {
298
if(masInst.getMasId() !=
masId
&& masInst.isStarted())
[
all
...]
BluetoothMnsObexClient.java
102
MnsSdpSearchInfo (boolean isSearchON, int
masId
, int notification) {
104
lastMasId =
masId
;
126
if (V) Log.v(TAG, "Reg
masId
: " + msg.arg1 + " notfStatus: " + msg.arg2);
128
handleRegistration(msg.arg1 /*
masId
*/, msg.arg2 /*status*/);
135
sendEventHandler((byte[])msg.obj/*byte[]*/, msg.arg1 /*
masId
*/);
146
if (V) Log.v(TAG, "SearchReg
masId
: " + msg.arg1 + " notfStatus: " + msg.arg2);
220
* @param
masId
223
public synchronized void handleRegistration(int
masId
, int notificationStatus){
224
if(D) Log.d(TAG, "handleRegistration( " +
masId
+ ", " + notificationStatus + ")");
227
mRegisteredMasIds.delete(
masId
);
[
all
...]
BluetoothMapMasInstance.java
118
int
masId
,
128
mMasInstanceId =
masId
;
151
return "
MasId
: " + mMasInstanceId + " Uri:" + mBaseUri + " SMS/MMS:" + mEnableSmsMms;
348
if (D) Log.d(TAG, "Map Service startObexServerSession
masid
= " + mMasInstanceId);
/packages/apps/Bluetooth/src/com/android/bluetooth/sdp/
SdpManager.java
99
private native int sdpCreateMapMasRecordNative(String serviceName, int
masId
,
507
* @param
masId
The MAS ID to associate with this SDP record
524
public int createMapMasRecord(String serviceName, int
masId
,
530
return sdpCreateMapMasRecordNative(serviceName,
masId
, rfcommChannel,
Completed in 74 milliseconds