Searched refs:maxListCount (Results 1 - 6 of 6) sorted by relevance

/frameworks/opt/bluetooth/src/android/bluetooth/client/map/
H A DBluetoothMasRequestGetFolderListing.java33 public BluetoothMasRequestGetFolderListing(int maxListCount, int listStartOffset) { argument
35 if (maxListCount < 0 || maxListCount > 65535) {
36 throw new IllegalArgumentException("maxListCount should be [0..65535]");
46 // Allow GetFolderListing for maxListCount value 0 also.
47 if (maxListCount >= 0) {
48 oap.add(OAP_TAGID_MAX_LIST_COUNT, (short) maxListCount);
H A DBluetoothMasRequestGetMessagesListing.java42 BluetoothMasClient.MessagesFilter filter, int subjectLength, int maxListCount,
48 if (maxListCount < 0 || maxListCount > 65535) {
49 throw new IllegalArgumentException("maxListCount should be [0..65535]");
106 if (maxListCount >= 0) {
107 oap.add(OAP_TAGID_MAX_LIST_COUNT, (short) maxListCount);
41 BluetoothMasRequestGetMessagesListing(String folderName, int parameters, BluetoothMasClient.MessagesFilter filter, int subjectLength, int maxListCount, int listStartOffset) argument
H A DBluetoothMasClient.java821 * @param maxListCount maximum number of items returned or <code>0</code>
827 * @throws IllegalArgumentException if either maxListCount or
830 public boolean getFolderListing(int maxListCount, int listStartOffset) { argument
835 BluetoothMasRequest request = new BluetoothMasRequestGetFolderListing(maxListCount,
911 * @param maxListCount maximum number of items returned or <code>0</code>
918 * range [0..255] or either maxListCount or listStartOffset are
922 int subjectLength, int maxListCount, int listStartOffset) {
929 parameters, filter, subjectLength, maxListCount, listStartOffset);
921 getMessagesListing(String folder, int parameters, MessagesFilter filter, int subjectLength, int maxListCount, int listStartOffset) argument
/frameworks/opt/bluetooth/src/android/bluetooth/client/pbap/
H A DBluetoothPbapRequestPullPhoneBook.java43 int maxListCount, int listStartOffset) {
45 if (maxListCount < 0 || maxListCount > 65535) {
46 throw new IllegalArgumentException("maxListCount should be [0..65535]");
72 * maxListCount is a special case which is handled in
75 if (maxListCount > 0) {
76 oap.add(OAP_TAGID_MAX_LIST_COUNT, (short) maxListCount);
42 BluetoothPbapRequestPullPhoneBook(String pbName, long filter, byte format, int maxListCount, int listStartOffset) argument
H A DBluetoothPbapRequestPullVcardListing.java41 String searchVal, int maxListCount, int listStartOffset) {
43 if (maxListCount < 0 || maxListCount > 65535) {
44 throw new IllegalArgumentException("maxListCount should be [0..65535]");
71 * maxListCount is a special case which is handled in
74 if (maxListCount > 0) {
75 oap.add(OAP_TAGID_MAX_LIST_COUNT, (short) maxListCount);
40 BluetoothPbapRequestPullVcardListing(String folder, byte order, byte searchAttr, String searchVal, int maxListCount, int listStartOffset) argument
H A DBluetoothPbapClient.java662 * limited to the number of <code>maxListCount</code> starting from the
670 * @param maxListCount limits number of entries in the response
678 public boolean pullPhoneBook(String pbName, int maxListCount, int listStartOffset) { argument
679 return pullPhoneBook(pbName, 0, VCARD_TYPE_21, maxListCount, listStartOffset);
689 * @param maxListCount limits number of entries in the response
697 public boolean pullPhoneBook(String pbName, long filter, byte format, int maxListCount, argument
700 maxListCount, listStartOffset);
757 * @param maxListCount limits number of entries in the response
765 public boolean pullVcardListing(String folder, byte order, int maxListCount, argument
767 return pullVcardListing(folder, order, SEARCH_ATTR_NAME, null, maxListCount,
783 pullVcardListing(String folder, int maxListCount, int listStartOffset) argument
805 pullVcardListing(String folder, byte order, byte searchAttr, String searchVal, int maxListCount, int listStartOffset) argument
[all...]

Completed in 58 milliseconds