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.java773 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()
1268 int endPoint = startPoint + requestSize - 1; in pullPhonebook() local
1269 if (endPoint > pbSize - 1) { in pullPhonebook()
1270 endPoint = pbSize - 1; in pullPhonebook()
1274 + " endPoint=" + endPoint); in pullPhonebook()
1282 if (endPoint == 0) { in pullPhonebook()
1285 return mVcardManager.composeAndSendPhonebookVcards(op, 1, endPoint, vcard21, in pullPhonebook()
[all …]
DBluetoothPbapVcardManager.java484 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()