HomeSort by relevance Sort by last modified time
    Searched refs:maxListCount (Results 1 - 9 of 9) 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]");
47 if (maxListCount > 0) {
48 oap.add(OAP_TAGID_MAX_LIST_COUNT, (short) maxListCount);
BluetoothMasRequestGetMessagesListing.java 42 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);
BluetoothMasClient.java 819 * @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) {
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);
    [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 459 public int maxListCount;
484 maxListCount = 0xFFFF;
497 Log.i(TAG, "maxListCount=" + maxListCount + " listStartOffset=" + listStartOffset
554 appParamValue.maxListCount = highValue * 256 + lowValue;
586 final int maxListCount, final int listStartOffset, final String searchValue,
597 itemsFound = createList(maxListCount, listStartOffset, searchValue, result,
600 itemsFound = createList(maxListCount, listStartOffset, searchValue, result,
610 int requestSize = nameList.size() >= maxListCount ? maxListCount : nameList.size()
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapAppParams.java 544 public void setMaxListCount(int maxListCount) throws IllegalArgumentException {
545 if (maxListCount < 0 || maxListCount > 0xFFFF)
547 this.mMaxListCount = maxListCount;
    [all...]
BluetoothMapObexServer.java 667 Log.d(TAG,"TYPE_GET_FOLDER_LISTING: MaxListCount = " + appParams.getMaxListCount() +
673 Log.d(TAG,"TYPE_GET_MESSAGE_LISTING: MaxListCount = " + appParams.getMaxListCount() +
    [all...]

Completed in 1032 milliseconds