Searched refs:maxListCount (Results 1 – 6 of 6) sorted by relevance
/packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/obex/ |
D | RequestGetFolderListing.java | 33 RequestGetFolderListing(int maxListCount, int listStartOffset) { in RequestGetFolderListing() argument 35 if (maxListCount < 0 || maxListCount > 65535) { in RequestGetFolderListing() 47 if (maxListCount >= 0) { in RequestGetFolderListing() 48 oap.add(OAP_TAGID_MAX_LIST_COUNT, (short) maxListCount); in RequestGetFolderListing()
|
D | RequestGetMessagesListing.java | 39 int subjectLength, int maxListCount, int listStartOffset) { in RequestGetMessagesListing() argument 44 if (maxListCount < 0 || maxListCount > 65535) { in RequestGetMessagesListing() 102 if (maxListCount >= 0) { in RequestGetMessagesListing() 103 oap.add(OAP_TAGID_MAX_LIST_COUNT, (short) maxListCount); in RequestGetMessagesListing()
|
/packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/ |
D | BluetoothPbapRequestPullPhoneBook.java | 47 int maxListCount, int listStartOffset) { in BluetoothPbapRequestPullPhoneBook() argument 49 if (maxListCount < 0 || maxListCount > 65535) { in BluetoothPbapRequestPullPhoneBook() 79 if (maxListCount > 0) { in BluetoothPbapRequestPullPhoneBook() 80 oap.add(OAP_TAGID_MAX_LIST_COUNT, (short) maxListCount); in BluetoothPbapRequestPullPhoneBook()
|
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/ |
D | BluetoothPbapObexServer.java | 574 public int maxListCount; field in BluetoothPbapObexServer.AppParamValue 607 maxListCount = 0xFFFF; in AppParamValue() 623 Log.i(TAG, "maxListCount=" + maxListCount + " listStartOffset=" + listStartOffset in dump() 694 appParamValue.maxListCount = highValue * 256 + lowValue; in parseApplicationParameter() 770 nameList.size() >= appParamValue.maxListCount ? appParamValue.maxListCount in sendVcardListingXml() 809 nameList.size() >= appParamValue.maxListCount ? appParamValue.maxListCount in createList() 1254 pbSize >= appParamValue.maxListCount ? appParamValue.maxListCount : pbSize; in pullPhonebook()
|
/packages/apps/Bluetooth/src/com/android/bluetooth/map/ |
D | BluetoothMapObexServer.java | 1501 int bytesToWrite, maxListCount, listStartOffset; in sendFolderListingRsp() local 1512 maxListCount = appParams.getMaxListCount(); in sendFolderListingRsp() 1519 if (maxListCount == BluetoothMapAppParams.INVALID_VALUE_PARAMETER) { in sendFolderListingRsp() 1520 maxListCount = 1024; in sendFolderListingRsp() 1523 if (maxListCount != 0) { in sendFolderListingRsp() 1524 outBytes = mCurrentFolder.encode(listStartOffset, maxListCount); in sendFolderListingRsp() 1535 if (maxListCount != 0) { in sendFolderListingRsp()
|
D | BluetoothMapAppParams.java | 823 public void setMaxListCount(int maxListCount) throws IllegalArgumentException { in setMaxListCount() argument 824 if (maxListCount < 0 || maxListCount > 0xFFFF) { in setMaxListCount() 827 this.mMaxListCount = maxListCount; in setMaxListCount()
|