Home
last modified time | relevance | path

Searched refs:endPoint (Results 1 – 3 of 3) sorted by relevance

/packages/apps/UnifiedEmail/src/com/android/mail/perf/
DTimer.java157 PerformancePoint endPoint = values.get(i + 1); in dumpResults() local
159 cpuDurationNanos += endPoint.mCpuTimeNanos - startPoint.mCpuTimeNanos; in dumpResults()
160 wallDurationMillis += endPoint.mWallTimeMillis - startPoint.mWallTimeMillis; in dumpResults()
210 PerformancePoint endPoint = new PerformancePoint(); in stopTiming() local
215 long cpuDurationNanos = endPoint.mCpuTimeNanos - startPoint.mCpuTimeNanos; in stopTiming()
216 long wallDurationMillis = endPoint.mWallTimeMillis - startPoint.mWallTimeMillis; in stopTiming()
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
DBluetoothPbapObexServer.java712 int endPoint = startPoint + requestSize; in sendVcardListingXml() local
713 if (endPoint > nameList.size()) { in sendVcardListingXml()
714 endPoint = nameList.size(); in sendVcardListingXml()
720 for (int j = startPoint; j < endPoint; j++) { in sendVcardListingXml()
1148 int endPoint = startPoint + requestSize - 1; in pullPhonebook() local
1149 if (endPoint > pbSize - 1) { in pullPhonebook()
1150 endPoint = pbSize - 1; in pullPhonebook()
1153 startPoint + " endPoint=" + endPoint); in pullPhonebook()
1159 if (endPoint == 0) { in pullPhonebook()
1162 return mVcardManager.composeAndSendPhonebookVcards(op, 1, endPoint, vcard21, in pullPhonebook()
[all …]
DBluetoothPbapVcardManager.java467 final int startPoint, final int endPoint, final boolean vcardType21, int needSendBody, in composeAndSendSelectedCallLogVcards() argument
470 if (startPoint < 1 || startPoint > endPoint) { in composeAndSendSelectedCallLogVcards()
493 if (startPoint == endPoint) { in composeAndSendSelectedCallLogVcards()
496 callsCursor.moveToPosition(endPoint - 1); in composeAndSendSelectedCallLogVcards()
511 if (startPoint == endPoint) { in composeAndSendSelectedCallLogVcards()
533 final int composeAndSendPhonebookVcards(Operation op, final int startPoint, final int endPoint, in composeAndSendPhonebookVcards() argument
537 if (startPoint < 1 || startPoint > endPoint) { in composeAndSendPhonebookVcards()
552 endPoint); in composeAndSendPhonebookVcards()
627 public static Cursor filterByRange(Cursor contactCursor, int startPoint, int endPoint) { in filterByRange() argument
636 while (contactCursor.moveToNext() && currentOffset <= endPoint) { in filterByRange()