HomeSort by relevance Sort by last modified time
    Searched refs:maxListCount (Results 1 - 10 of 10) sorted by null

  /frameworks/opt/bluetooth/src/android/bluetooth/client/map/
BluetoothMasRequestGetFolderListing.java 33 public BluetoothMasRequestGetFolderListing(int maxListCount, int listStartOffset) {
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);
BluetoothMasRequestGetMessagesListing.java 42 BluetoothMasClient.MessagesFilter filter, int subjectLength, int maxListCount,
48 if (maxListCount < 0 || maxListCount > 65535) {
49 throw new IllegalArgumentException("maxListCount should be [0..65535]");
105 // Allow GetMessageListing for maxlistcount value 0 also.
106 if (maxListCount >= 0) {
107 oap.add(OAP_TAGID_MAX_LIST_COUNT, (short) maxListCount);
BluetoothMasClient.java 821 * @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) {
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);
    [all...]
  /frameworks/opt/bluetooth/src/android/bluetooth/client/pbap/
BluetoothPbapRequestPullPhoneBook.java 43 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);
BluetoothPbapRequestPullVcardListing.java 41 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);
BluetoothPbapClient.java 662 * 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) {
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,
700 maxListCount, listStartOffset);
757 * @param maxListCount limits number of entries in the response
765 public boolean pullVcardListing(String folder, byte order, int maxListCount,
767 return pullVcardListing(folder, order, SEARCH_ATTR_NAME, null, maxListCount,
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapObexServer.java 469 public int maxListCount;
494 maxListCount = 0xFFFF;
507 Log.i(TAG, "maxListCount=" + maxListCount + " listStartOffset=" + listStartOffset
564 appParamValue.maxListCount = highValue * 256 + lowValue;
596 final int maxListCount, final int listStartOffset, final String searchValue,
607 itemsFound = createList(maxListCount, listStartOffset, searchValue, result,
610 itemsFound = createList(maxListCount, listStartOffset, searchValue, result,
620 int requestSize = nameList.size() >= maxListCount ? maxListCount : nameList.size()
    [all...]
  /packages/apps/Bluetooth/tests/src/com/android/bluetooth/tests/
MapStepsConvo.java 35 0 /*maxListCount*/,
48 -1 /*maxListCount*/,
59 2 /*maxListCount*/,
70 2 /*maxListCount*/,
81 3 /*maxListCount*/,
92 5 /*maxListCount*/,
103 5 /*maxListCount*/,
114 5 /*maxListCount*/,
130 * @param maxListCount
140 private static SeqStep addConvoListingStep(TestSequencer sequencer, int maxListCount,
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapAppParams.java     [all...]
BluetoothMapObexServer.java     [all...]

Completed in 841 milliseconds