Searched refs:startPoint (Results 1 – 2 of 2) sorted by relevance
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/ |
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() 502 callsCursor.moveToPosition(startPoint - 1); in composeAndSendSelectedCallLogVcards() 507 if (startPoint == endPoint) { 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 658 if (currentOffset >= startPoint) { in filterByRange()
|
D | BluetoothPbapObexServer.java | 772 int startPoint = appParamValue.listStartOffset; in sendVcardListingXml() local 773 int endPoint = startPoint + requestSize; in sendVcardListingXml() 782 for (int j = startPoint; j < endPoint; j++) { in sendVcardListingXml() 1257 int startPoint = appParamValue.listStartOffset; in pullPhonebook() local 1258 if (startPoint < 0 || startPoint >= pbSize) { in pullPhonebook() 1259 Log.w(TAG, "listStartOffset is not correct! " + startPoint); in pullPhonebook() 1270 int endPoint = startPoint + requestSize - 1; in pullPhonebook() 1275 Log.d(TAG, "pullPhonebook(): requestSize=" + requestSize + " startPoint=" + startPoint in pullPhonebook() 1281 if (startPoint == 0) { in pullPhonebook() 1293 return mVcardManager.composeAndSendPhonebookVcards(op, startPoint, endPoint, in pullPhonebook() [all …]
|