HomeSort by relevance Sort by last modified time
    Searched refs:maxListCount (Results 1 - 11 of 11) 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...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/
BluetoothPbapRequestPullPhoneBook.java 49 int maxListCount, int listStartOffset) {
51 if (maxListCount < 0 || maxListCount > 65535) {
52 throw new IllegalArgumentException("maxListCount should be [0..65535]");
78 * maxListCount is a special case which is handled in
81 if (maxListCount > 0) {
82 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 672 * limited to the number of <code>maxListCount</code> starting from the
680 * @param maxListCount limits number of entries in the response
688 public boolean pullPhoneBook(String pbName, int maxListCount, int listStartOffset) {
689 return pullPhoneBook(pbName, 0, VCARD_TYPE_21, maxListCount, listStartOffset);
699 * @param maxListCount limits number of entries in the response
707 public boolean pullPhoneBook(String pbName, long filter, byte format, int maxListCount,
710 pbName, mAccount, filter, format, maxListCount, listStartOffset);
767 * @param maxListCount limits number of entries in the response
775 public boolean pullVcardListing(String folder, byte order, int maxListCount,
777 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...]
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/
SelectBox.java 102 public void setMaxListCount (int maxListCount) {
103 selectBoxList.maxListCount = maxListCount;
108 return selectBoxList.maxListCount;
335 int maxListCount;
403 float height = itemHeight * (maxListCount <= 0 ? selectBox.items.size : Math.min(maxListCount, selectBox.items.size));
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapAppParams.java     [all...]
BluetoothMapObexServer.java     [all...]

Completed in 705 milliseconds