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.java1018 "TYPE_GET_FOLDER_LISTING: MaxListCount = " + appParams.getMaxListCount() in onGet()
1027 + ", MaxListCount = " + appParams.getMaxListCount() in onGet()
1058 + appParams.getMaxListCount() + ", ListStartOffset = " in onGet()
1177 if (appParams.getMaxListCount() == BluetoothMapAppParams.INVALID_VALUE_PARAMETER) { in sendMessageListingRsp()
1186 if (appParams.getMaxListCount() != 0) { in sendMessageListingRsp()
1368 if (appParams.getMaxListCount() == BluetoothMapAppParams.INVALID_VALUE_PARAMETER) { in sendConvoListingRsp()
1376 if (appParams.getMaxListCount() != 0) { in sendConvoListingRsp()
1404 + appParams.getMaxListCount()); in sendConvoListingRsp()
1512 maxListCount = appParams.getMaxListCount(); in sendFolderListingRsp()
DBluetoothMapContent.java2239 int countNum = ap.getMaxListCount(); in msgListing()
2241 if (ap.getMaxListCount() > 0) { in msgListing()
2242 limit = " LIMIT " + (ap.getMaxListCount() + ap.getStartOffset()); in msgListing()
2255 limit = " LIMIT " + ap.getMaxListCount() + " OFFSET " + ap.getStartOffset(); in msgListing()
2296 limit = " LIMIT " + ap.getMaxListCount() + " OFFSET " + ap.getStartOffset(); in msgListing()
2338 limit = " LIMIT " + ap.getMaxListCount() + " OFFSET " + ap.getStartOffset(); in msgListing()
2383 limit = " LIMIT " + ap.getMaxListCount() + " OFFSET " + ap.getStartOffset(); in msgListing()
2418 bmList.segment(ap.getMaxListCount(), offsetNum); in msgListing()
2737 int maxThreads = ap.getMaxListCount() + ap.getStartOffset(); in convoListing()
2743 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