Searched defs:appParams (Results 1 - 3 of 3) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/map/
H A DBluetoothMapObexServer.java414 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);
574 pushMessage(final Operation op, String folderName, BluetoothMapAppParams appParams, String messageVersion) argument
668 setMessageStatus(String msgHandle, BluetoothMapAppParams appParams) argument
724 setOwnerStatus(String msgHandle, BluetoothMapAppParams appParams) argument
986 sendMessageListingRsp(Operation op, BluetoothMapAppParams appParams, String folderName) argument
1133 setMsgTypeFilterParams(BluetoothMapAppParams appParams, boolean overwrite) argument
1177 sendConvoListingRsp(Operation op, BluetoothMapAppParams appParams, String folderName) argument
1296 sendFolderListingRsp(Operation op, BluetoothMapAppParams appParams) argument
1387 sendMASInstanceInformationRsp(Operation op, BluetoothMapAppParams appParams) argument
1486 sendGetMessageRsp(Operation op, String handle, BluetoothMapAppParams appParams, String version) argument
[all...]
H A DBluetoothMapAppParams.java30 * This class encapsulates the appParams needed for MAP.
197 * @param appParams
206 public BluetoothMapAppParams(final byte[] appParams) argument
208 ParseParams(appParams);
214 * @param appParams
223 private void ParseParams(final byte[] appParams) throws ParseException, argument
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[
[all...]
H A DBluetoothMapContent.java3122 * Extract the ConvoList parameters from appParams and build the matching URI with
3124 * @param ap the appParams from the request
3300 public byte[] getMessage(String handle, BluetoothMapAppParams appParams, argument
3306 if(appParams.getFractionRequest() == BluetoothMapAppParams.FRACTION_REQUEST_NEXT) {
3313 return getSmsMessage(id, appParams.getCharset());
3315 return getMmsMessage(id, appParams);
3317 return getEmailMessage(id, appParams, folderElement);
3319 return getIMMessage(id, appParams, folderElement);
3687 * @param appParams The application parameter object received from the client.
3692 public byte[] getMmsMessage(long id,BluetoothMapAppParams appParams) argument
3750 getEmailMessage(long id, BluetoothMapAppParams appParams, BluetoothMapFolderElement currentFolder) argument
3903 getIMMessage(long id, BluetoothMapAppParams appParams, BluetoothMapFolderElement folderElement) argument
[all...]

Completed in 61 milliseconds