Home
last modified time | relevance | path

Searched refs:maxListCount (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
DBluetoothPbapObexServer.java459 public int maxListCount; field in BluetoothPbapObexServer.AppParamValue
484 maxListCount = 0xFFFF; in AppParamValue()
497 Log.i(TAG, "maxListCount=" + maxListCount + " listStartOffset=" + listStartOffset in dump()
554 appParamValue.maxListCount = highValue * 256 + lowValue; in parseApplicationParameter()
586 final int maxListCount, final int listStartOffset, final String searchValue, in sendVcardListingXml() argument
597 itemsFound = createList(maxListCount, listStartOffset, searchValue, result, in sendVcardListingXml()
600 itemsFound = createList(maxListCount, listStartOffset, searchValue, result, in sendVcardListingXml()
610 int requestSize = nameList.size() >= maxListCount ? maxListCount : nameList.size(); in sendVcardListingXml()
629 private int createList(final int maxListCount, final int listStartOffset, in createList() argument
633 final int requestSize = nameList.size() >= maxListCount ? maxListCount : nameList.size(); in createList()
[all …]
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
DBluetoothMapObexServer.java846 int bytesToWrite, maxListCount, listStartOffset; in sendFolderListingRsp() local
856 maxListCount = appParams.getMaxListCount(); in sendFolderListingRsp()
862 if(maxListCount == BluetoothMapAppParams.INVALID_VALUE_PARAMETER) in sendFolderListingRsp()
863 maxListCount = 1024; in sendFolderListingRsp()
865 if(maxListCount != 0) in sendFolderListingRsp()
867 outBytes = mCurrentFolder.encode(listStartOffset, maxListCount); in sendFolderListingRsp()
DBluetoothMapAppParams.java544 public void setMaxListCount(int maxListCount) throws IllegalArgumentException { in setMaxListCount() argument
545 if (maxListCount < 0 || maxListCount > 0xFFFF) in setMaxListCount()
547 this.mMaxListCount = maxListCount; in setMaxListCount()