Home
last modified time | relevance | path

Searched refs:getMaxListCount (Results 1 – 9 of 9) sorted by relevance

/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/pbapclient/
DPbapApplicationParametersTest.java65 assertThat(params.getMaxListCount()).isEqualTo(TEST_LIST_SIZE); in testCreateParams_paramsWellFormed()
87 assertThat(params.getMaxListCount()).isEqualTo(TEST_LIST_SIZE); in testCreateParams_withPropertyFilter_paramsWellFormed()
119 assertThat(params.getMaxListCount()).isEqualTo(TEST_LIST_SIZE); in testCreateParams_withAllPropertiesIndividually_paramsWellFormed()
136 assertThat(params.getMaxListCount()).isEqualTo(TEST_LIST_SIZE); in testCreateParams_withFormat21_paramsWellFormed()
DPbapClientStateMachineTest.java802 int end = offset + params.getMaxListCount(); in mockRemoteContacts()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/pbapclient/obex/
DPbapApplicationParameters.java91 public int getMaxListCount() { in getMaxListCount() method in PbapApplicationParameters
141 + (" maxListCount=" + getMaxListCount()) in toString()
DRequestPullPhonebook.java47 mMaxListCount = params.getMaxListCount(); in RequestPullPhonebook()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/map/
DBluetoothMapObexServer.java1087 + appParams.getMaxListCount() in onGet()
1101 + appParams.getMaxListCount() in onGet()
1163 + appParams.getMaxListCount() in onGet()
1327 if (appParams.getMaxListCount() == BluetoothMapAppParams.INVALID_VALUE_PARAMETER) { in sendMessageListingRsp()
1336 if (appParams.getMaxListCount() != 0) { in sendMessageListingRsp()
1565 if (appParams.getMaxListCount() == BluetoothMapAppParams.INVALID_VALUE_PARAMETER) { in sendConvoListingRsp()
1573 if (appParams.getMaxListCount() != 0) { in sendConvoListingRsp()
1603 + appParams.getMaxListCount()); in sendConvoListingRsp()
1748 maxListCount = appParams.getMaxListCount(); in sendFolderListingRsp()
DBluetoothMapContent.java2174 if (ap.getMaxListCount() > 0) { in msgListing()
2175 limit = " LIMIT " + (ap.getMaxListCount() + ap.getStartOffset()); in msgListing()
2191 limit = " LIMIT " + ap.getMaxListCount() + " OFFSET " + ap.getStartOffset(); in msgListing()
2233 limit = " LIMIT " + ap.getMaxListCount() + " OFFSET " + ap.getStartOffset(); in msgListing()
2277 limit = " LIMIT " + ap.getMaxListCount() + " OFFSET " + ap.getStartOffset(); in msgListing()
2321 limit = " LIMIT " + ap.getMaxListCount() + " OFFSET " + ap.getStartOffset(); in msgListing()
2354 bmList.segment(ap.getMaxListCount(), offsetNum); in msgListing()
2730 int maxThreads = ap.getMaxListCount() + ap.getStartOffset(); in convoListing()
2736 && (ap.getMaxListCount() > 0) in convoListing()
2750 limit = " LIMIT " + ap.getMaxListCount() + " OFFSET " + ap.getStartOffset(); in convoListing()
[all …]
DBluetoothMapAppParams.java975 if (getMaxListCount() != INVALID_VALUE_PARAMETER) { in encodeParams()
978 appParamBuf.putShort((short) getMaxListCount()); in encodeParams()
1190 public int getMaxListCount() { in getMaxListCount() method in BluetoothMapAppParams
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/map/
DBluetoothMapAppParamsTest.java123 assertThat(appParamsDecoded.getMaxListCount()).isEqualTo(TEST_MAX_LIST_COUNT); in encodeToBuffer_thenDecode()
202 assertThat(appParams.getMaxListCount()).isEqualTo(TEST_MAX_LIST_COUNT); in settersAndGetters()
DBluetoothMapContentTest.java1180 when(mParams.getMaxListCount()).thenReturn(2); in convoListing_withNullFilterRecipient()
1268 when(mParams.getMaxListCount()).thenReturn(2); in convoListing_withNonNullFilterRecipient()
1373 when(mParams.getMaxListCount()).thenReturn(1); in msgListing_withSmsCursorOnly()
1451 when(mParams.getMaxListCount()).thenReturn(1); in msgListing_withMmsCursorOnly()
1543 when(mParams.getMaxListCount()).thenReturn(1); in msgListing_withEmailCursorOnly()
1636 when(mParams.getMaxListCount()).thenReturn(1); in msgListing_withImCursorOnly()