Searched refs:maxListCount (Results 1 - 6 of 6) sorted by last modified time

/frameworks/opt/bluetooth/src/android/bluetooth/client/map/
H A DBluetoothMasClient.java819 * @param maxListCount maximum number of items returned or <code>0</code>
825 * @throws IllegalArgumentException if either maxListCount or
828 public boolean getFolderListing(int maxListCount, int listStartOffset) { argument
833 BluetoothMasRequest request = new BluetoothMasRequestGetFolderListing(maxListCount,
909 * @param maxListCount maximum number of items returned or <code>0</code>
916 * range [0..255] or either maxListCount or listStartOffset are
920 int subjectLength, int maxListCount, int listStartOffset) {
927 parameters, filter, subjectLength, maxListCount, listStartOffset);
919 getMessagesListing(String folder, int parameters, MessagesFilter filter, int subjectLength, int maxListCount, int listStartOffset) argument
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]");
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,
49 if (maxListCount < 0 || maxListCount > 65535) {
50 throw new IllegalArgumentException("maxListCount should be [0..65535]");
101 if (maxListCount != 0) {
102 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
/frameworks/opt/bluetooth/src/android/bluetooth/client/pbap/
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...]
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

Completed in 70 milliseconds