Searched refs:appParams (Results 1 - 4 of 4) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/map/
H A DBluetoothMapObexServer.java175 BluetoothMapAppParams appParams = null;
183 appParams = new BluetoothMapAppParams(appParamRaw);
197 Log.d(TAG,"TYPE_SET_NOTIFICATION_REGISTRATION: NotificationStatus: " + appParams.getNotificationStatus());
199 return setNotificationRegistration(appParams);
202 Log.d(TAG,"TYPE_SET_MESSAGE_STATUS: StatusIndicator: " + appParams.getStatusIndicator() + ", StatusValue: " + appParams.getStatusValue());
204 return setMessageStatus(name, appParams);
207 Log.d(TAG,"TYPE_MESSAGE: Transparet: " + appParams.getTransparent() + ", Retry: " + appParams.getRetry());
208 Log.d(TAG," charset: " + appParams
217 setNotificationRegistration(BluetoothMapAppParams appParams) argument
233 pushMessage(final Operation op, String folderName, BluetoothMapAppParams appParams) argument
283 setMessageStatus(String msgHandle, BluetoothMapAppParams appParams) argument
445 sendMessageListingRsp(Operation op, BluetoothMapAppParams appParams, String folderName) argument
554 sendFolderListingRsp(Operation op, BluetoothMapAppParams appParams) argument
642 sendGetMessageRsp(Operation op, String handle, BluetoothMapAppParams appParams) argument
[all...]
H A DBluetoothMapAppParams.java28 * This class encapsulates the appParams needed for MAP.
133 * @param appParams
142 public BluetoothMapAppParams(final byte[] appParams) argument
144 ParseParams(appParams);
150 * @param appParams
159 private void ParseParams(final byte[] appParams) throws ParseException, argument
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[
[all...]
H A DBluetoothMnsObexClient.java247 BluetoothMapAppParams appParams = new BluetoothMapAppParams();
248 appParams.setMasInstanceId(masInstanceId);
255 request.setHeader(HeaderSet.APPLICATION_PARAMETER, appParams.EncodeParams());
H A DBluetoothMapContent.java1310 public byte[] getMessage(String handle, BluetoothMapAppParams appParams) throws UnsupportedEncodingException{ argument
1316 return getSmsMessage(id, appParams.getCharset());
1318 return getMmsMessage(id, appParams);
1601 * @param appParams The application parameter object received from the client.
1606 public byte[] getMmsMessage(long id, BluetoothMapAppParams appParams) throws UnsupportedEncodingException { argument
1630 message.setIncludeAttachments(appParams.getAttachment() == 0 ? false : true);

Completed in 97 milliseconds