HomeSort by relevance Sort by last modified time
    Searched full:appparams (Results 1 - 7 of 7) sorted by null

  /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);
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapObexServer.java 408 BluetoothMapAppParams appParams = null;
417 appParams = new BluetoothMapAppParams(appParamRaw);
427 + appParams.getNotificationStatus());
429 return mObserver.setNotificationRegistration(appParams.getNotificationStatus());
433 + appParams.getNotificationFilter());
435 mObserver.setNotificationFilter(appParams.getNotificationFilter());
440 "StatusIndicator: " + appParams.getStatusIndicator()
441 + ", StatusValue: " + appParams.getStatusValue()
442 + ", ExtentedData: " + "" ); // TODO: appParams.getExtendedImData());
444 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...]
BluetoothMapContent.java     [all...]
BluetoothMnsObexClient.java 403 BluetoothMapAppParams appParams = new BluetoothMapAppParams();
404 appParams.setMasInstanceId(masInstanceId);
411 request.setHeader(HeaderSet.APPLICATION_PARAMETER, appParams.EncodeParams());

Completed in 639 milliseconds