/frameworks/base/core/java/android/content/ |
D | SyncInfo.java | 45 public final long startTime; field in SyncInfo 48 public SyncInfo(int authorityId, Account account, String authority, long startTime) { in SyncInfo() argument 52 this.startTime = startTime; in SyncInfo() 60 this.startTime = other.startTime; in SyncInfo() 73 parcel.writeLong(startTime); in writeToParcel() 81 startTime = parcel.readLong(); in SyncInfo()
|
/frameworks/base/core/java/com/android/internal/os/ |
D | Zygote.java | 90 long startTime = SystemClock.elapsedRealtime(); in forkAndSpecialize() local 92 checkTime(startTime, "Zygote.preFork"); in forkAndSpecialize() 96 checkTime(startTime, "Zygote.nativeForkAndSpecialize"); in forkAndSpecialize() 98 checkTime(startTime, "Zygote.postForkCommon"); in forkAndSpecialize() 110 private static void checkTime(long startTime, String where) { in checkTime() argument 112 if ((now-startTime) > 1000) { in checkTime() 114 Slog.w(TAG, "Slow operation: " + (now-startTime) + "ms so far, now at " + where); in checkTime() 154 long startTime = SystemClock.elapsedRealtime(); in callPostForkChildHooks() local 156 checkTime(startTime, "Zygote.callPostForkChildHooks"); in callPostForkChildHooks()
|
D | ZygoteConnection.java | 111 private void checkTime(long startTime, String where) { in checkTime() argument 113 if ((now-startTime) > 1000) { in checkTime() 115 Slog.w(TAG, "Slow operation: " + (now-startTime) + "ms so far, now at " + where); in checkTime() 148 long startTime = SystemClock.elapsedRealtime(); in runOnce() local 159 checkTime(startTime, "zygoteConnection.runOnce: readArgumentList"); in runOnce() 197 checkTime(startTime, "zygoteConnection.runOnce: apply security policies"); in runOnce() 202 checkTime(startTime, "zygoteConnection.runOnce: apply security policies"); in runOnce() 245 checkTime(startTime, "zygoteConnection.runOnce: preForkAndSpecialize"); in runOnce() 250 checkTime(startTime, "zygoteConnection.runOnce: postForkAndSpecialize"); in runOnce()
|
D | ZygoteInit.java | 293 long startTime = SystemClock.uptimeMillis(); in preloadClasses() local 354 + (SystemClock.uptimeMillis()-startTime) + "ms."); in preloadClasses() 393 long startTime = SystemClock.uptimeMillis(); in preloadResources() local 399 + (SystemClock.uptimeMillis()-startTime) + "ms."); in preloadResources() 401 startTime = SystemClock.uptimeMillis(); in preloadResources() 407 + (SystemClock.uptimeMillis()-startTime) + "ms."); in preloadResources()
|
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/ |
D | ConnectivityManagerTestBase.java | 160 long startTime = SystemClock.uptimeMillis(); in waitForNetworkState() local 167 if ((SystemClock.uptimeMillis() - startTime) > timeout) { in waitForNetworkState() 179 long startTime = SystemClock.uptimeMillis(); in waitForWifiState() local 186 if ((SystemClock.uptimeMillis() - startTime) > timeout) { in waitForWifiState() 198 long startTime = SystemClock.uptimeMillis(); in waitForWifiApState() local 205 if ((SystemClock.uptimeMillis() - startTime) > timeout) { in waitForWifiApState() 223 long startTime = SystemClock.uptimeMillis(); in waitForTetherStateChange() local 226 if ((SystemClock.uptimeMillis() - startTime) > timeout) { in waitForTetherStateChange() 288 long startTime = System.currentTimeMillis(); in pingTest() local 289 while ((System.currentTimeMillis() - startTime) < PING_TIMER) { in pingTest() [all …]
|
/frameworks/base/media/tests/omxjpegdecoder/ |
D | jpeg_decoder_bench.cpp | 54 int64_t startTime = getNowUs(); in testDecodeBounds() local 62 int64_t delay = getNowUs() - startTime; in testDecodeBounds() 71 int64_t startTime = getNowUs(); in testDecodePixels() local 79 int64_t delay = getNowUs() - startTime; in testDecodePixels()
|
D | omx_jpeg_decoder.cpp | 149 int64_t startTime = getNowUs(); in decodeSource() local 154 int64_t duration = getNowUs() - startTime; in decodeSource()
|
/frameworks/native/libs/binder/ |
D | AppOpsManager.cpp | 44 int64_t startTime = 0; in getService() local 51 if (startTime == 0) { in getService() 52 startTime = uptimeMillis(); in getService() 54 } else if ((uptimeMillis()-startTime) > 10000) { in getService()
|
D | IServiceManager.cpp | 75 int64_t startTime = 0; in checkPermission() local 81 if (startTime != 0) { in checkPermission() 83 (int)((uptimeMillis()-startTime)/1000), in checkPermission() 108 if (startTime == 0) { in checkPermission() 109 startTime = uptimeMillis(); in checkPermission()
|
/frameworks/base/core/java/android/hardware/hdmi/ |
D | HdmiTimerRecordSources.java | 267 public static TimerInfo timerInfoOf(int dayOfMonth, int monthOfYear, Time startTime, in timerInfoOf() argument 277 checkTimeValue(startTime.mHour, startTime.mMinute); in timerInfoOf() 286 return new TimerInfo(dayOfMonth, monthOfYear, startTime, duration, recordingSequence); in timerInfoOf() 332 private TimerInfo(int dayOfMonth, int monthOfYear, Time startTime, in TimerInfo() argument 336 mStartTime = startTime; in TimerInfo()
|
/frameworks/native/opengl/tools/glgen2/registry/ |
D | genheaders.py | 82 startTime = None variable 84 global startTime 85 startTime = time.clock() 87 global startTime 90 write(msg, endTime - startTime) 91 startTime = None
|
/frameworks/base/test-runner/src/android/test/ |
D | InstrumentationCoreTestRunner.java | 102 private long startTime; in getAndroidTestRunner() 113 startTime = System.currentTimeMillis(); in getAndroidTestRunner() 126 long timeTaken = System.currentTimeMillis() - startTime; in getAndroidTestRunner()
|
/frameworks/base/core/tests/bandwidthtests/src/com/android/bandwidthtest/util/ |
D | ConnectionUtil.java | 369 long startTime = System.currentTimeMillis(); in startDownloadAndWait() local 371 if ((System.currentTimeMillis() - startTime) > timeout) { in startDownloadAndWait() 435 long startTime = System.currentTimeMillis(); in waitForNetworkState() local 437 if ((System.currentTimeMillis() - startTime) > timeout) { in waitForNetworkState() 488 long startTime = System.currentTimeMillis(); in waitForWifiState() local 490 if ((System.currentTimeMillis() - startTime) > timeout) { in waitForWifiState() 593 long startTime = System.currentTimeMillis(); in connectToWifiWithConfiguration() local 595 if ((System.currentTimeMillis() - startTime) > WIFI_SCAN_TIMEOUT) { in connectToWifiWithConfiguration()
|
/frameworks/base/tests/BrowserPowerTest/src/com/android/browserpowertest/ |
D | PowerTestActivity.java | 56 private long startTime; field in PowerTestActivity 125 startTime = System.currentTimeMillis(); in navigate() 266 pageLoadTime = System.currentTimeMillis() - startTime; in run()
|
/frameworks/base/core/tests/coretests/src/android/database/ |
D | DatabaseLockTest.java | 125 long startTime = System.currentTimeMillis(); in testLockLatency() local 128 long elapsedTime = endTime - startTime; in testLockLatency()
|
/frameworks/opt/calendar/tests/src/com/android/calendarcommon2/ |
D | RecurrenceProcessorTest.java | 2466 long startTime = System.currentTimeMillis(); in performanceTextExpand() local 2492 long elapsed = endTime - startTime; in performanceTextExpand() 2504 long startTime = System.currentTimeMillis(); in performanceTestNormalize() local 2516 long elapsed = endTime - startTime; in performanceTestNormalize() 2522 startTime = System.currentTimeMillis(); in performanceTestNormalize() 2533 elapsed = endTime - startTime; in performanceTestNormalize()
|
/frameworks/native/libs/input/ |
D | VirtualKeyMap.cpp | 63 nsecs_t startTime = systemTime(SYSTEM_TIME_MONOTONIC); in load() local 68 nsecs_t elapsedTime = systemTime(SYSTEM_TIME_MONOTONIC) - startTime; in load()
|
/frameworks/base/core/java/com/android/internal/net/ |
D | VpnConfig.java | 96 public long startTime = -1; field in VpnConfig 159 out.writeLong(startTime); in writeToParcel() 183 config.startTime = in.readLong();
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/ |
D | KeyguardViewMediator.java | 1108 handleStartKeyguardExitAnimation(params.startTime, params.fadeoutDuration); 1303 private void handleStartKeyguardExitAnimation(long startTime, long fadeoutDuration) { in handleStartKeyguardExitAnimation() argument 1317 mStatusBarKeyguardViewManager.hide(startTime, fadeoutDuration); in handleStartKeyguardExitAnimation() 1433 public void startKeyguardExitAnimation(long startTime, long fadeoutDuration) { in startKeyguardExitAnimation() argument 1435 new StartKeyguardExitAnimParams(startTime, fadeoutDuration)); in startKeyguardExitAnimation() 1448 long startTime; field in KeyguardViewMediator.StartKeyguardExitAnimParams 1451 private StartKeyguardExitAnimParams(long startTime, long fadeoutDuration) { in StartKeyguardExitAnimParams() argument 1452 this.startTime = startTime; in StartKeyguardExitAnimParams()
|
D | KeyguardService.java | 207 public void startKeyguardExitAnimation(long startTime, long fadeoutDuration) { 209 mKeyguardViewMediator.startKeyguardExitAnimation(startTime, fadeoutDuration);
|
/frameworks/base/core/tests/hosttests/test-apps/DownloadManagerTestApp/src/com/android/frameworks/downloadmanagertests/ |
D | DownloadManagerBaseTest.java | 190 long startTime = SystemClock.uptimeMillis(); in waitForDownloadToFinish() local 193 if (SystemClock.uptimeMillis() - startTime > timeout) { in waitForDownloadToFinish() 213 long startTime = SystemClock.uptimeMillis(); in waitForMultipleDownloadsToFinish() local 216 if (SystemClock.uptimeMillis() - startTime > timeout) { in waitForMultipleDownloadsToFinish()
|
/frameworks/base/media/java/android/media/tv/ |
D | TvContract.java | 249 public static final Uri buildProgramsUriForChannel(long channelId, long startTime, in buildProgramsUriForChannel() argument 252 return uri.buildUpon().appendQueryParameter(PARAM_START_TIME, String.valueOf(startTime)) in buildProgramsUriForChannel() 266 public static final Uri buildProgramsUriForChannel(Uri channelUri, long startTime, in buildProgramsUriForChannel() argument 271 return buildProgramsUriForChannel(ContentUris.parseId(channelUri), startTime, endTime); in buildProgramsUriForChannel()
|
/frameworks/base/core/java/android/view/animation/ |
D | AnimationSet.java | 268 long startTime = Long.MAX_VALUE; in getStartTime() local 275 startTime = Math.min(startTime, a.getStartTime()); in getStartTime() 278 return startTime; in getStartTime()
|
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/ |
D | KeyguardServiceWrapper.java | 193 public void startKeyguardExitAnimation(long startTime, long fadeoutDuration) { in startKeyguardExitAnimation() argument 195 mService.startKeyguardExitAnimation(startTime, fadeoutDuration); in startKeyguardExitAnimation()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | SmsBroadcastUndelivered.java | 98 long startTime = System.nanoTime(); in scanRawTable() local 166 + ((System.nanoTime() - startTime) / 1000000) + " ms"); in scanRawTable()
|