Searched refs:endPoint (Results 1 – 2 of 2) sorted by relevance
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/ |
D | BluetoothPbapObexServer.java | 773 int endPoint = startPoint + requestSize; in sendVcardListingXml() local 774 if (endPoint > nameList.size()) { in sendVcardListingXml() 775 endPoint = nameList.size(); in sendVcardListingXml() 782 for (int j = startPoint; j < endPoint; j++) { in sendVcardListingXml() 1270 int endPoint = startPoint + requestSize - 1; in pullPhonebook() local 1271 if (endPoint > pbSize - 1) { in pullPhonebook() 1272 endPoint = pbSize - 1; in pullPhonebook() 1276 + " endPoint=" + endPoint); in pullPhonebook() 1284 if (endPoint == 0) { in pullPhonebook() 1287 return mVcardManager.composeAndSendPhonebookVcards(op, 1, endPoint, vcard21, in pullPhonebook() [all …]
|
D | BluetoothPbapVcardManager.java | 484 final int startPoint, final int endPoint, final boolean vcardType21, int needSendBody, in composeAndSendSelectedCallLogVcards() argument 487 if (startPoint < 1 || startPoint > endPoint) { in composeAndSendSelectedCallLogVcards() 507 if (startPoint == endPoint) { in composeAndSendSelectedCallLogVcards() 510 callsCursor.moveToPosition(endPoint - 1); in composeAndSendSelectedCallLogVcards() 527 if (startPoint == endPoint) { in composeAndSendSelectedCallLogVcards() 551 final int composeAndSendPhonebookVcards(Operation op, final int startPoint, final int endPoint, in composeAndSendPhonebookVcards() argument 555 if (startPoint < 1 || startPoint > endPoint) { in composeAndSendPhonebookVcards() 570 ContactCursorFilter.filterByRange(contactCursor, startPoint, endPoint); in composeAndSendPhonebookVcards() 645 public static Cursor filterByRange(Cursor contactCursor, int startPoint, int endPoint) { in filterByRange() argument 654 while (contactCursor.moveToNext() && currentOffset <= endPoint) { in filterByRange()
|