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 178 BluetoothMapAppParams appParams = null;
186 appParams = new BluetoothMapAppParams(appParamRaw);
200 Log.d(TAG,"TYPE_SET_NOTIFICATION_REGISTRATION: NotificationStatus: " + appParams.getNotificationStatus());
202 return setNotificationRegistration(appParams);
205 Log.d(TAG,"TYPE_SET_MESSAGE_STATUS: StatusIndicator: " + appParams.getStatusIndicator() + ", StatusValue: " + appParams.getStatusValue());
207 return setMessageStatus(name, appParams);
210 Log.d(TAG,"TYPE_MESSAGE: Transparet: " + appParams.getTransparent() + ", Retry: " + appParams.getRetry());
211 Log.d(TAG," charset: " + appParams.getCharset())
    [all...]
BluetoothMapAppParams.java 28 * This class encapsulates the appParams needed for MAP.
133 * @param appParams
142 public BluetoothMapAppParams(final byte[] appParams)
144 ParseParams(appParams);
150 * @param appParams
159 private void ParseParams(final byte[] appParams) throws ParseException,
163 ByteBuffer appParamBuf = ByteBuffer.wrap(appParams);
165 while (i < appParams.length) {
166 tagId = appParams[i++] & 0xff; // Convert to unsigned to support values above 127
167 tagLength = appParams[i++] & 0xff; // Convert to unsigned to support values above 12
    [all...]
BluetoothMnsObexClient.java 277 BluetoothMapAppParams appParams = new BluetoothMapAppParams();
278 appParams.setMasInstanceId(masInstanceId);
285 request.setHeader(HeaderSet.APPLICATION_PARAMETER, appParams.EncodeParams());
BluetoothMapContent.java     [all...]

Completed in 133 milliseconds