Searched refs:endPoint (Results 1 – 2 of 2) sorted by relevance
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/ |
D | BluetoothPbapObexServer.java | 790 int endPoint = startPoint + requestSize; in sendVcardListingXml() local 791 if (endPoint > nameList.size()) { in sendVcardListingXml() 792 endPoint = nameList.size(); in sendVcardListingXml() 799 for (int j = startPoint; j < endPoint; j++) { in sendVcardListingXml() 1291 int endPoint = startPoint + requestSize - 1; in pullPhonebook() local 1296 if (endPoint > lastIndex) { in pullPhonebook() 1297 endPoint = lastIndex; in pullPhonebook() 1310 + " endPoint=" + endPoint); in pullPhonebook() 1321 if (endPoint == 0) { in pullPhonebook() 1324 return mVcardManager.composeAndSendPhonebookVcards(op, 1, endPoint, vcard21, in pullPhonebook() [all …]
|
D | BluetoothPbapVcardManager.java | 499 final int startPoint, final int endPoint, final boolean vcardType21, int needSendBody, in composeAndSendSelectedCallLogVcards() argument 502 if (startPoint < 1 || startPoint > endPoint) { in composeAndSendSelectedCallLogVcards() 522 if (startPoint == endPoint) { in composeAndSendSelectedCallLogVcards() 525 callsCursor.moveToPosition(endPoint - 1); in composeAndSendSelectedCallLogVcards() 542 if (startPoint == endPoint) { in composeAndSendSelectedCallLogVcards() 566 final int composeAndSendPhonebookVcards(Operation op, final int startPoint, final int endPoint, in composeAndSendPhonebookVcards() argument 570 if (startPoint < 1 || startPoint > endPoint) { in composeAndSendPhonebookVcards() 591 ContactCursorFilter.filterByRange(contactCursor, startPoint, endPoint); in composeAndSendPhonebookVcards() 666 public static Cursor filterByRange(Cursor contactCursor, int startPoint, int endPoint) { in filterByRange() argument 675 while (contactCursor.moveToNext() && currentOffset <= endPoint) { in filterByRange()
|