Searched refs:startTime (Results 1 - 25 of 75) sorted by relevance

123

/frameworks/base/core/java/android/content/
H A DSyncInfo.java45 public final long startTime; field in class:SyncInfo
48 public SyncInfo(int authorityId, Account account, String authority, long startTime) { argument
52 this.startTime = startTime;
60 this.startTime = other.startTime;
73 parcel.writeLong(startTime);
81 startTime = parcel.readLong();
/frameworks/base/core/java/com/android/internal/os/
H A DZygote.java90 long startTime = SystemClock.elapsedRealtime();
92 checkTime(startTime, "Zygote.preFork");
96 checkTime(startTime, "Zygote.nativeForkAndSpecialize");
98 checkTime(startTime, "Zygote.postForkCommon");
110 private static void checkTime(long startTime, String where) { argument
112 if ((now-startTime) > 1000) {
114 Slog.w(TAG, "Slow operation: " + (now-startTime) + "ms so far, now at " + where);
154 long startTime = SystemClock.elapsedRealtime();
156 checkTime(startTime, "Zygote.callPostForkChildHooks");
H A DZygoteConnection.java111 private void checkTime(long startTime, String where) { argument
113 if ((now-startTime) > 1000) {
115 Slog.w(TAG, "Slow operation: " + (now-startTime) + "ms so far, now at " + where);
148 long startTime = SystemClock.elapsedRealtime();
159 checkTime(startTime, "zygoteConnection.runOnce: readArgumentList");
197 checkTime(startTime, "zygoteConnection.runOnce: apply security policies");
202 checkTime(startTime, "zygoteConnection.runOnce: apply security policies");
245 checkTime(startTime, "zygoteConnection.runOnce: preForkAndSpecialize");
250 checkTime(startTime, "zygoteConnection.runOnce: postForkAndSpecialize");
H A DZygoteInit.java298 long startTime = SystemClock.uptimeMillis();
359 + (SystemClock.uptimeMillis()-startTime) + "ms.");
397 long startTime = SystemClock.uptimeMillis();
403 + (SystemClock.uptimeMillis()-startTime) + "ms.");
405 startTime = SystemClock.uptimeMillis();
411 + (SystemClock.uptimeMillis()-startTime) + "ms.");
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/
H A DConnectivityManagerTestBase.java160 long startTime = SystemClock.uptimeMillis();
167 if ((SystemClock.uptimeMillis() - startTime) > timeout) {
179 long startTime = SystemClock.uptimeMillis();
186 if ((SystemClock.uptimeMillis() - startTime) > timeout) {
198 long startTime = SystemClock.uptimeMillis();
205 if ((SystemClock.uptimeMillis() - startTime) > timeout) {
223 long startTime = SystemClock.uptimeMillis();
226 if ((SystemClock.uptimeMillis() - startTime) > timeout) {
288 long startTime = System.currentTimeMillis();
289 while ((System.currentTimeMillis() - startTime) < PING_TIME
[all...]
/frameworks/native/libs/binder/
H A DAppOpsManager.cpp44 int64_t startTime = 0; local
51 if (startTime == 0) {
52 startTime = uptimeMillis();
54 } else if ((uptimeMillis()-startTime) > 10000) {
H A DIServiceManager.cpp75 int64_t startTime = 0; local
81 if (startTime != 0) {
83 (int)((uptimeMillis()-startTime)/1000),
108 if (startTime == 0) {
109 startTime = uptimeMillis();
/frameworks/base/core/java/com/android/internal/policy/
H A DIKeyguardService.aidl51 * @param startTime the start time of the animation in uptime milliseconds
54 void startKeyguardExitAnimation(long startTime, long fadeoutDuration);
/frameworks/base/core/java/android/hardware/hdmi/
H A DHdmiTimerRecordSources.java50 * TimeOrDuration startTime = HdmiTimerRecordSources.ofTime(18, 00); // 6PM.
259 * @param startTime start time in {@link Time}
272 public static TimerInfo timerInfoOf(int dayOfMonth, int monthOfYear, Time startTime, argument
282 checkTimeValue(startTime.mHour, startTime.mMinute);
291 return new TimerInfo(dayOfMonth, monthOfYear, startTime, duration, recordingSequence);
337 private TimerInfo(int dayOfMonth, int monthOfYear, Time startTime, argument
341 mStartTime = startTime;
/frameworks/base/test-runner/src/android/test/
H A DInstrumentationCoreTestRunner.java102 private long startTime;
113 startTime = System.currentTimeMillis();
126 long timeTaken = System.currentTimeMillis() - startTime;
/frameworks/native/opengl/tools/glgen2/registry/
H A Dgenheaders.py82 startTime = None variable
84 global startTime
85 startTime = time.clock()
87 global startTime
90 write(msg, endTime - startTime)
91 startTime = None
/frameworks/base/core/tests/coretests/src/android/database/
H A DDatabaseLockTest.java125 long startTime = System.currentTimeMillis();
128 long elapsedTime = endTime - startTime;
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
H A DKeyguardService.java153 public void startKeyguardExitAnimation(long startTime, long fadeoutDuration) {
155 mKeyguardViewMediator.startKeyguardExitAnimation(startTime, fadeoutDuration);
H A DKeyguardViewMediator.java1168 handleStartKeyguardExitAnimation(params.startTime, params.fadeoutDuration);
1376 private void handleStartKeyguardExitAnimation(long startTime, long fadeoutDuration) { argument
1391 mStatusBarKeyguardViewManager.hide(startTime, fadeoutDuration);
1502 public void startKeyguardExitAnimation(long startTime, long fadeoutDuration) { argument
1504 new StartKeyguardExitAnimParams(startTime, fadeoutDuration));
1517 long startTime; field in class:KeyguardViewMediator.StartKeyguardExitAnimParams
1520 private StartKeyguardExitAnimParams(long startTime, long fadeoutDuration) { argument
1521 this.startTime = startTime;
/frameworks/native/libs/input/
H A DVirtualKeyMap.cpp63 nsecs_t startTime = systemTime(SYSTEM_TIME_MONOTONIC); local
68 nsecs_t elapsedTime = systemTime(SYSTEM_TIME_MONOTONIC) - startTime;
/frameworks/base/core/tests/bandwidthtests/src/com/android/bandwidthtest/util/
H A DConnectionUtil.java369 long startTime = System.currentTimeMillis();
371 if ((System.currentTimeMillis() - startTime) > timeout) {
435 long startTime = System.currentTimeMillis();
437 if ((System.currentTimeMillis() - startTime) > timeout) {
488 long startTime = System.currentTimeMillis();
490 if ((System.currentTimeMillis() - startTime) > timeout) {
593 long startTime = System.currentTimeMillis();
595 if ((System.currentTimeMillis() - startTime) > WIFI_SCAN_TIMEOUT) {
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DKeyguardServiceWrapper.java173 public void startKeyguardExitAnimation(long startTime, long fadeoutDuration) { argument
175 mService.startKeyguardExitAnimation(startTime, fadeoutDuration);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DSmsBroadcastUndelivered.java98 long startTime = System.nanoTime();
166 + ((System.nanoTime() - startTime) / 1000000) + " ms");
/frameworks/base/core/java/com/android/internal/net/
H A DVpnConfig.java98 public long startTime = -1; field in class:VpnConfig
158 out.writeLong(startTime);
183 config.startTime = in.readLong();
/frameworks/base/tests/BrowserPowerTest/src/com/android/browserpowertest/
H A DPowerTestActivity.java56 private long startTime; field in class:PowerTestActivity
125 startTime = System.currentTimeMillis();
266 pageLoadTime = System.currentTimeMillis() - startTime;
/frameworks/opt/calendar/tests/src/com/android/calendarcommon2/
H A DRecurrenceProcessorTest.java2466 long startTime = System.currentTimeMillis();
2492 long elapsed = endTime - startTime;
2504 long startTime = System.currentTimeMillis();
2516 long elapsed = endTime - startTime;
2522 startTime = System.currentTimeMillis();
2533 elapsed = endTime - startTime;
/frameworks/base/cmds/input/src/com/android/commands/input/
H A DInput.java207 long startTime = now;
208 long endTime = startTime + duration;
210 long elapsedTime = now - startTime;
/frameworks/base/core/java/android/view/animation/
H A DAnimationSet.java268 long startTime = Long.MAX_VALUE;
275 startTime = Math.min(startTime, a.getStartTime());
278 return startTime;
/frameworks/base/core/tests/hosttests/test-apps/DownloadManagerTestApp/src/com/android/frameworks/downloadmanagertests/
H A DDownloadManagerBaseTest.java190 long startTime = SystemClock.uptimeMillis();
193 if (SystemClock.uptimeMillis() - startTime > timeout) {
213 long startTime = SystemClock.uptimeMillis();
216 if (SystemClock.uptimeMillis() - startTime > timeout) {
/frameworks/base/media/java/android/media/tv/
H A DTvContract.java244 * @param startTime The start time used to filter programs. The returned programs should have
249 public static final Uri buildProgramsUriForChannel(long channelId, long startTime, argument
252 return uri.buildUpon().appendQueryParameter(PARAM_START_TIME, String.valueOf(startTime))
261 * @param startTime The start time used to filter programs. The returned programs should have
266 public static final Uri buildProgramsUriForChannel(Uri channelUri, long startTime, argument
271 return buildProgramsUriForChannel(ContentUris.parseId(channelUri), startTime, endTime);

Completed in 2395 milliseconds

123