Home
last modified time | relevance | path

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

/packages/apps/Bluetooth/src/com/android/bluetooth/map/
DBluetoothMapObexServer.java1023 "TYPE_GET_FOLDER_LISTING: MaxListCount = " + appParams.getMaxListCount() in onGet()
1032 + ", MaxListCount = " + appParams.getMaxListCount() in onGet()
1063 + appParams.getMaxListCount() + ", ListStartOffset = " in onGet()
1182 if (appParams.getMaxListCount() == BluetoothMapAppParams.INVALID_VALUE_PARAMETER) { in sendMessageListingRsp()
1191 if (appParams.getMaxListCount() != 0) { in sendMessageListingRsp()
1373 if (appParams.getMaxListCount() == BluetoothMapAppParams.INVALID_VALUE_PARAMETER) { in sendConvoListingRsp()
1381 if (appParams.getMaxListCount() != 0) { in sendConvoListingRsp()
1409 + appParams.getMaxListCount()); in sendConvoListingRsp()
1517 maxListCount = appParams.getMaxListCount(); in sendFolderListingRsp()
DBluetoothMapContent.java2234 int countNum = ap.getMaxListCount(); in msgListing()
2236 if (ap.getMaxListCount() > 0) { in msgListing()
2237 limit = " LIMIT " + (ap.getMaxListCount() + ap.getStartOffset()); in msgListing()
2250 limit = " LIMIT " + ap.getMaxListCount() + " OFFSET " + ap.getStartOffset(); in msgListing()
2291 limit = " LIMIT " + ap.getMaxListCount() + " OFFSET " + ap.getStartOffset(); in msgListing()
2333 limit = " LIMIT " + ap.getMaxListCount() + " OFFSET " + ap.getStartOffset(); in msgListing()
2378 limit = " LIMIT " + ap.getMaxListCount() + " OFFSET " + ap.getStartOffset(); in msgListing()
2413 bmList.segment(ap.getMaxListCount(), offsetNum); in msgListing()
2731 int maxThreads = ap.getMaxListCount() + ap.getStartOffset(); in convoListing()
2737 if ((!sizeOnly) && (ap.getMaxListCount() > 0) && (ap.getFilterRecipient() in convoListing()
[all …]
DBluetoothMapAppParams.java609 if (getMaxListCount() != INVALID_VALUE_PARAMETER) { in encodeParams()
612 appParamBuf.putShort((short) getMaxListCount()); in encodeParams()
819 public int getMaxListCount() { in getMaxListCount() method in BluetoothMapAppParams