Searched refs:startPoint (Results 1 – 3 of 3) sorted by relevance
/packages/apps/UnifiedEmail/src/com/android/mail/perf/ |
D | Timer.java | 156 PerformancePoint startPoint = values.get(i); in dumpResults() local 159 cpuDurationNanos += endPoint.mCpuTimeNanos - startPoint.mCpuTimeNanos; in dumpResults() 160 wallDurationMillis += endPoint.mWallTimeMillis - startPoint.mWallTimeMillis; in dumpResults() 211 PerformancePoint startPoint = sPerformanceCollector.get(tag); in stopTiming() local 212 if (startPoint == null) { in stopTiming() 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/ |
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() 1255 int startPoint = appParamValue.listStartOffset; in pullPhonebook() local 1256 if (startPoint < 0 || startPoint >= pbSize) { in pullPhonebook() 1257 Log.w(TAG, "listStartOffset is not correct! " + startPoint); in pullPhonebook() 1268 int endPoint = startPoint + requestSize - 1; in pullPhonebook() 1273 Log.d(TAG, "pullPhonebook(): requestSize=" + requestSize + " startPoint=" + startPoint in pullPhonebook() 1279 if (startPoint == 0) { in pullPhonebook() 1291 return mVcardManager.composeAndSendPhonebookVcards(op, startPoint, endPoint, in pullPhonebook() [all …]
|