Searched refs:startPoint (Results 1 - 3 of 3) sorted by relevance

/packages/apps/UnifiedEmail/src/com/android/mail/perf/
H A DTimer.java156 PerformancePoint startPoint = values.get(i);
159 cpuDurationNanos += endPoint.mCpuTimeNanos - startPoint.mCpuTimeNanos;
160 wallDurationMillis += endPoint.mWallTimeMillis - startPoint.mWallTimeMillis;
211 PerformancePoint startPoint = sPerformanceCollector.get(tag);
212 if (startPoint == null) {
215 long cpuDurationNanos = endPoint.mCpuTimeNanos - startPoint.mCpuTimeNanos;
216 long wallDurationMillis = endPoint.mWallTimeMillis - startPoint.mWallTimeMillis;
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
H A DBluetoothPbapObexServer.java621 int startPoint = listStartOffset;
622 int endPoint = startPoint + requestSize;
628 for (int j = startPoint; j < endPoint; j++) {
975 int startPoint = appParamValue.listStartOffset;
976 if (startPoint < 0 || startPoint >= pbSize) {
977 Log.w(TAG, "listStartOffset is not correct! " + startPoint);
988 int endPoint = startPoint + requestSize - 1;
992 if (D) Log.d(TAG, "pullPhonebook(): requestSize=" + requestSize + " startPoint=" +
993 startPoint
[all...]
H A DBluetoothPbapVcardManager.java340 final int startPoint, final int endPoint, final boolean vcardType21,
342 if (startPoint < 1 || startPoint > endPoint) {
343 Log.e(TAG, "internal error: startPoint or endPoint is not correct.");
362 callsCursor.moveToPosition(startPoint - 1);
365 if (startPoint == endPoint) {
383 if (startPoint == endPoint) {
404 public final int composeAndSendPhonebookVcards(Operation op, final int startPoint, argument
407 if (startPoint < 1 || startPoint > endPoin
339 composeAndSendCallLogVcards(final int type, Operation op, final int startPoint, final int endPoint, final boolean vcardType21, boolean ignorefilter, byte[] filter) argument
487 filterByRange(Cursor contactCursor, int startPoint, int endPoint) argument
[all...]

Completed in 105 milliseconds