HomeSort by relevance Sort by last modified time
    Searched refs:appParams (Results 1 - 4 of 4) sorted by null

  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapObexServer.java 457 BluetoothMapAppParams appParams = null;
468 appParams = new BluetoothMapAppParams(appParamRaw);
481 + appParams.getNotificationStatus());
483 return mObserver.setNotificationRegistration(appParams.getNotificationStatus());
487 + appParams.getNotificationFilter());
493 mObserver.setNotificationFilter(appParams.getNotificationFilter());
498 + appParams.getStatusIndicator() + ", StatusValue: "
499 + appParams.getStatusValue()
500 + ", ExtentedData: "); // TODO: appParams.getExtendedImData());
506 return setMessageStatus(name, appParams);
    [all...]
BluetoothMapAppParams.java 30 * This class encapsulates the appParams needed for MAP.
197 * @param appParams
206 public BluetoothMapAppParams(final byte[] appParams)
208 parseParams(appParams);
214 * @param appParams
223 private void parseParams(final byte[] appParams)
227 ByteBuffer appParamBuf = ByteBuffer.wrap(appParams);
229 while (i < appParams.length) {
230 tagId = appParams[i++] & 0xff; // Convert to unsigned to support values above 127
231 tagLength = appParams[i++] & 0xff; // Convert to unsigned to support values above 12
    [all...]
BluetoothMnsObexClient.java 450 BluetoothMapAppParams appParams = new BluetoothMapAppParams();
451 appParams.setMasInstanceId(masInstanceId);
458 request.setHeader(HeaderSet.APPLICATION_PARAMETER, appParams.encodeParams());
BluetoothMapContent.java     [all...]

Completed in 115 milliseconds