OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:appParams
(Results
1 - 7
of
7
) sorted by null
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapObexServer.java
414
BluetoothMapAppParams
appParams
= null;
423
appParams
= new BluetoothMapAppParams(appParamRaw);
433
+
appParams
.getNotificationStatus());
435
return mObserver.setNotificationRegistration(
appParams
.getNotificationStatus());
439
+
appParams
.getNotificationFilter());
445
mObserver.setNotificationFilter(
appParams
.getNotificationFilter());
450
"StatusIndicator: " +
appParams
.getStatusIndicator()
451
+ ", StatusValue: " +
appParams
.getStatusValue()
452
+ ", ExtentedData: " + "" ); // TODO:
appParams
.getExtendedImData());
458
return setMessageStatus(name,
appParams
);
[
all
...]
BluetoothMapAppParams.java
31
* This class encapsulates the
appParams
needed for MAP.
198
* @param
appParams
207
public BluetoothMapAppParams(final byte[]
appParams
)
209
ParseParams(
appParams
);
215
* @param
appParams
224
private void ParseParams(final byte[]
appParams
) throws ParseException,
228
ByteBuffer appParamBuf = ByteBuffer.wrap(
appParams
);
230
while (i <
appParams
.length) {
231
tagId =
appParams
[i++] & 0xff; // Convert to unsigned to support values above 127
232
tagLength =
appParams
[i++] & 0xff; // Convert to unsigned to support values above 12
[
all
...]
BluetoothMnsObexClient.java
403
BluetoothMapAppParams
appParams
= new BluetoothMapAppParams();
404
appParams
.setMasInstanceId(masInstanceId);
411
request.setHeader(HeaderSet.APPLICATION_PARAMETER,
appParams
.EncodeParams());
BluetoothMapContent.java
[
all
...]
/packages/apps/Bluetooth/tests/src/com/android/bluetooth/tests/
MapStepsConvo.java
144
BluetoothMapAppParams
appParams
= new BluetoothMapAppParams();
147
appParams
.setFilterLastActivityBegin(activityBegin);
150
appParams
.setFilterLastActivityEnd(activityEnd);
153
appParams
.setFilterReadStatus(readStatus);
156
appParams
.setFilterRecipient(recipient);
159
appParams
.setMaxListCount(maxListCount);
162
appParams
.setStartOffset(listStartOffset);
165
Log.e(TAG, "unable to build
appParams
", e);
171
hs.setHeader(HeaderSet.APPLICATION_PARAMETER,
appParams
.EncodeParams());
215
BluetoothMapAppParams
appParams
;
[
all
...]
BluetoothMapContentTest.java
344
BluetoothMapAppParams
appParams
= new BluetoothMapAppParams();
351
appParams
.setFilterMessageType(0x0B);
352
appParams
.setMaxListCount(1024);
353
appParams
.setStartOffset(0);
355
BluetoothMapMessageListing msgListing = mBtMapContent.msgListing(fe,
appParams
);
357
int msgListingSize = mBtMapContent.msgListingSize(fe,
appParams
);
376
BluetoothMapAppParams
appParams
= new BluetoothMapAppParams();
382
appParams
.setFilterReadStatus(0x01);
383
appParams
.setFilterMessageType(0x0B);
384
appParams
.setMaxListCount(1024)
[
all
...]
MapStepsFolder.java
123
BluetoothMapAppParams
appParams
;
124
appParams
= new BluetoothMapAppParams(appParamsRaw);
125
Assert.assertNotNull(
appParams
);
Completed in 312 milliseconds