Searched refs:appParams (Results 1 – 5 of 5) sorted by relevance
/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/map/ |
H A D | BluetoothMapObexServer.java | 527 + appParams.getPresenceAvailability() + ", PresenceStatus: " + appParams in onPut() 1088 + appParams.getAttachment() + ", Charset = " + appParams.getCharset() in onGet() 1147 if (appParams == null) { in sendMessageListingRsp() 1149 appParams.setMaxListCount(1024); in sendMessageListingRsp() 1150 appParams.setStartOffset(0); in sendMessageListingRsp() 1187 appParams.setStartOffset(0); in sendMessageListingRsp() 1362 if (appParams == null) { in sendConvoListingRsp() 1364 appParams.setMaxListCount(1024); in sendConvoListingRsp() 1365 appParams.setStartOffset(0); in sendConvoListingRsp() 1507 if (appParams == null) { in sendFolderListingRsp() [all …]
|
H A D | BluetoothMapAppParams.java | 206 public BluetoothMapAppParams(final byte[] appParams) in BluetoothMapAppParams() argument 208 parseParams(appParams); in BluetoothMapAppParams() 223 private void parseParams(final byte[] appParams) in parseParams() argument 227 ByteBuffer appParamBuf = ByteBuffer.wrap(appParams); in parseParams() 229 while (i < appParams.length) { in parseParams() 361 setMasInstanceId(appParams[i] & 0xff); in parseParams() 393 setSubjectLength(appParams[i] & 0xff); in parseParams() 463 setPresenceAvailability(appParams[i]); in parseParams() 487 setChatState(appParams[i]); in parseParams() 513 setFilterPresence(appParams[i]); in parseParams() [all …]
|
H A D | BluetoothMnsObexClient.java | 449 BluetoothMapAppParams appParams = new BluetoothMapAppParams(); in sendEventHandler() local 450 appParams.setMasInstanceId(masInstanceId); in sendEventHandler() 457 request.setHeader(HeaderSet.APPLICATION_PARAMETER, appParams.encodeParams()); in sendEventHandler()
|
H A D | BluetoothMapContent.java | 3570 return getSmsMessage(id, appParams.getCharset()); in getMessage() 3572 return getMmsMessage(id, appParams); in getMessage() 3574 return getEmailMessage(id, appParams, folderElement); in getMessage() 3576 return getIMMessage(id, appParams, folderElement); in getMessage() 3997 if (appParams.getCharset() == MAP_MESSAGE_CHARSET_NATIVE) { in getMmsMessage() 4058 if (D && appParams != null) { in getEmailMessage() 4062 + appParams.getFractionRequest()); in getEmailMessage() 4067 if (appParams.getCharset() == MAP_MESSAGE_CHARSET_NATIVE) { in getEmailMessage() 4164 String attStr = (appParams.getAttachment() == 0) ? "/" in getEmailMessage() 4231 public byte[] getIMMessage(long id, BluetoothMapAppParams appParams, in getIMMessage() argument [all …]
|
/aosp12/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/map/ |
H A D | BluetoothMapContentObserverTest.java | 159 BluetoothMapAppParams appParams = new BluetoothMapAppParams(); in testPushGroupMMS() local 166 observer.pushMessage(message, folderElement, appParams, null); in testPushGroupMMS()
|