Searched refs:listStartOffset (Results 1 – 5 of 5) sorted by relevance
/packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/obex/ |
D | RequestGetFolderListing.java | 33 RequestGetFolderListing(int maxListCount, int listStartOffset) { in RequestGetFolderListing() argument 39 if (listStartOffset < 0 || listStartOffset > 65535) { in RequestGetFolderListing() 51 if (listStartOffset > 0) { in RequestGetFolderListing() 52 oap.add(OAP_TAGID_START_OFFSET, (short) listStartOffset); in RequestGetFolderListing()
|
D | RequestGetMessagesListing.java | 39 int subjectLength, int maxListCount, int listStartOffset) { in RequestGetMessagesListing() argument 48 if (listStartOffset < 0 || listStartOffset > 65535) { in RequestGetMessagesListing() 106 if (listStartOffset != 0) { in RequestGetMessagesListing() 107 oap.add(OAP_TAGID_START_OFFSET, (short) listStartOffset); in RequestGetMessagesListing()
|
/packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/ |
D | BluetoothPbapRequestPullPhoneBook.java | 47 int maxListCount, int listStartOffset) { in BluetoothPbapRequestPullPhoneBook() argument 53 if (listStartOffset < 0 || listStartOffset > 65535) { in BluetoothPbapRequestPullPhoneBook() 85 if (listStartOffset > 0) { in BluetoothPbapRequestPullPhoneBook() 86 oap.add(OAP_TAGID_LIST_START_OFFSET, (short) listStartOffset); in BluetoothPbapRequestPullPhoneBook()
|
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/ |
D | BluetoothPbapObexServer.java | 592 public int listStartOffset; field in BluetoothPbapObexServer.AppParamValue 624 listStartOffset = 0; in AppParamValue() 639 Log.i(TAG, "maxListCount=" + maxListCount + " listStartOffset=" + listStartOffset in dump() 718 appParamValue.listStartOffset = highValue * 256 + lowValue; in parseApplicationParameter() 789 int startPoint = appParamValue.listStartOffset; in sendVcardListingXml() 796 + appParamValue.listStartOffset); in sendVcardListingXml() 833 + appParamValue.listStartOffset + " searchValue=" + appParamValue.searchValue); in createList() 861 for (int j = appParamValue.listStartOffset; in createList() 891 for (int i = appParamValue.listStartOffset; in createList() 1290 int startPoint = startIndex + appParamValue.listStartOffset; in pullPhonebook() [all …]
|
/packages/apps/Bluetooth/src/com/android/bluetooth/map/ |
D | BluetoothMapObexServer.java | 1506 int bytesToWrite, maxListCount, listStartOffset; in sendFolderListingRsp() local 1518 listStartOffset = appParams.getStartOffset(); in sendFolderListingRsp() 1520 if (listStartOffset == BluetoothMapAppParams.INVALID_VALUE_PARAMETER) { in sendFolderListingRsp() 1521 listStartOffset = 0; in sendFolderListingRsp() 1529 outBytes = mCurrentFolder.encode(listStartOffset, maxListCount); in sendFolderListingRsp()
|