Home
last modified time | relevance | path

Searched refs:listStartOffset (Results 1 – 8 of 8) sorted by relevance

/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/pbapclient/
DBluetoothPbapRequestPullPhoneBookTest.java49 final int listStartOffset = 10; in constructor_wrongMaxListCount_throwsIAE() local
62 listStartOffset)); in constructor_wrongMaxListCount_throwsIAE()
90 final int listStartOffset = 10; in readResponse_failWithInputStreamThatThrowsIOEWhenRead() local
93 PB_NAME, ACCOUNT, filter, format, maxListCount, listStartOffset); in readResponse_failWithInputStreamThatThrowsIOEWhenRead()
121 final int listStartOffset = 10; in readResponseHeaders() local
124 PB_NAME, ACCOUNT, filter, format, maxListCount, listStartOffset); in readResponseHeaders()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/mapclient/obex/
DRequestGetFolderListing.java34 RequestGetFolderListing(int maxListCount, int listStartOffset) { in RequestGetFolderListing() argument
40 if (listStartOffset < 0 || listStartOffset > 65535) { in RequestGetFolderListing()
52 if (listStartOffset > 0) { in RequestGetFolderListing()
53 oap.add(OAP_TAGID_START_OFFSET, (short) listStartOffset); in RequestGetFolderListing()
DRequestGetMessagesListing.java45 int listStartOffset) { in RequestGetMessagesListing() argument
54 if (listStartOffset < 0 || listStartOffset > 65535) { in RequestGetMessagesListing()
112 if (listStartOffset != 0) { in RequestGetMessagesListing()
113 oap.add(OAP_TAGID_START_OFFSET, (short) listStartOffset); in RequestGetMessagesListing()
DRequestGetMessagesListingForOwnNumber.java276 private void setListOffsetAndMaxCountInHeaderSet(int maxListCount, int listStartOffset) { in setListOffsetAndMaxCountInHeaderSet() argument
278 mOap.add(OAP_TAGID_START_OFFSET, (short) listStartOffset); in setListOffsetAndMaxCountInHeaderSet()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/pbapclient/
DBluetoothPbapRequestPullPhoneBook.java49 int listStartOffset) { in BluetoothPbapRequestPullPhoneBook() argument
55 if (listStartOffset < 0 || listStartOffset > 65535) { in BluetoothPbapRequestPullPhoneBook()
87 if (listStartOffset > 0) { in BluetoothPbapRequestPullPhoneBook()
88 oap.add(OAP_TAGID_LIST_START_OFFSET, (short) listStartOffset); in BluetoothPbapRequestPullPhoneBook()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/pbap/
DBluetoothPbapObexServer.java662 public int listStartOffset; field in BluetoothPbapObexServer.AppParamValue
694 listStartOffset = 0; in AppParamValue()
713 + listStartOffset in toString()
805 appParamValue.listStartOffset = highValue * 256 + lowValue; in parseApplicationParameter()
901 int startPoint = appParamValue.listStartOffset; in sendVcardListingXml()
911 + appParamValue.listStartOffset); in sendVcardListingXml()
969 + appParamValue.listStartOffset in createList()
1000 for (int j = appParamValue.listStartOffset; in createList()
1031 for (int i = appParamValue.listStartOffset; in createList()
1523 int startPoint = startIndex + appParamValue.listStartOffset; in pullPhonebook()
[all …]
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/map/
DBluetoothMapObexServer.java1763 int bytesToWrite, maxListCount, listStartOffset; in sendFolderListingRsp() local
1773 listStartOffset = appParams.getStartOffset(); in sendFolderListingRsp()
1775 if (listStartOffset == BluetoothMapAppParams.INVALID_VALUE_PARAMETER) { in sendFolderListingRsp()
1776 listStartOffset = 0; in sendFolderListingRsp()
1784 outBytes = mCurrentFolder.encode(listStartOffset, maxListCount); in sendFolderListingRsp()
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/pbap/
DBluetoothPbapObexServerTest.java865 assertThat(appParamValue.listStartOffset).isEqualTo(256 * 1 + 2); in parseApplicationParameter_withListStartOffsetTagid()