Searched defs:startTime (Results 26 - 50 of 72) sorted by path

123

/frameworks/base/graphics/java/android/graphics/drawable/
H A DAnimatedVectorDrawable.java1289 private void parseAnimatorSet(AnimatorSet set, long startTime) { argument
1298 parseAnimatorSet((AnimatorSet) animator, startTime);
1300 createRTAnimator((ObjectAnimator) animator, startTime);
1306 startTime += animator.getTotalDuration();
1314 private void createRTAnimator(ObjectAnimator animator, long startTime) { argument
1319 startTime);
1326 startTime);
1329 startTime);
1337 (VectorDrawable.VectorDrawableState) target, startTime);
1343 long startTime) {
1341 createRTAnimatorForGroup(PropertyValuesHolder[] values, ObjectAnimator animator, VectorDrawable.VGroup target, long startTime) argument
1375 createRTAnimatorForPath( ObjectAnimator animator, VectorDrawable.VPath target, long startTime) argument
1388 createRTAnimatorForFullPath(ObjectAnimator animator, VectorDrawable.VFullPath target, long startTime) argument
1433 createRTAnimatorForRootGroup(PropertyValuesHolder[] values, ObjectAnimator animator, VectorDrawable.VectorDrawableState target, long startTime) argument
[all...]
/frameworks/base/libs/hwui/service/
H A DGraphicsStatsService.cpp45 const std::string& package, int versionCode, int64_t startTime, int64_t endTime,
85 int versionCode, int64_t startTime, int64_t endTime, const ProfileData* data) {
86 if (proto->stats_start() == 0 || proto->stats_start() > startTime) {
87 proto->set_stats_start(startTime);
187 int versionCode, int64_t startTime, int64_t endTime, const ProfileData* data) {
192 mergeProfileDataIntoProto(&statsProto, package, versionCode, startTime, endTime, data);
245 int versionCode, int64_t startTime, int64_t endTime, const ProfileData* data) {
251 mergeProfileDataIntoProto(&statsProto, package, versionCode, startTime, endTime, data);
84 mergeProfileDataIntoProto(service::GraphicsStatsProto* proto, const std::string& package, int versionCode, int64_t startTime, int64_t endTime, const ProfileData* data) argument
186 saveBuffer(const std::string& path, const std::string& package, int versionCode, int64_t startTime, int64_t endTime, const ProfileData* data) argument
244 addToDump(Dump* dump, const std::string& path, const std::string& package, int versionCode, int64_t startTime, int64_t endTime, const ProfileData* data) argument
/frameworks/base/media/java/android/media/tv/
H A DTvContract.java604 * @param startTime The start time used to filter programs. The returned programs should have
609 public static Uri buildProgramsUriForChannel(long channelId, long startTime, argument
612 return uri.buildUpon().appendQueryParameter(PARAM_START_TIME, String.valueOf(startTime))
621 * @param startTime The start time used to filter programs. The returned programs should have
626 public static Uri buildProgramsUriForChannel(Uri channelUri, long startTime, argument
631 return buildProgramsUriForChannel(ContentUris.parseId(channelUri), startTime, endTime);
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videoproc/
H A DBackDropperFilter.java844 if (startTime == -1) {
847 startTime = SystemClock.elapsedRealtime();
852 Log.v(TAG, "Avg. frame duration: " + String.format("%.2f",(endTime-startTime)/30.) +
853 " ms. Avg. fps: " + String.format("%.2f", 1000./((endTime-startTime)/30.)) );
854 startTime = endTime;
860 private long startTime = -1; field in class:BackDropperFilter
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/
H A DBatteryInfo.java54 public void onParsingStarted(long startTime, long endTime) {
55 timePeriod = endTime - startTime - remainingTimeUs / 1000;
57 view.configureGraph((int) (endTime - startTime), 100, remainingTimeUs != 0,
185 void onParsingStarted(long startTime, long endTime); argument
H A DSuggestionParser.java344 private long getEndTime(long startTime, int daysDelay) { argument
346 return startTime + days;
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
H A DKeyguardViewMediator.java1545 handleStartKeyguardExitAnimation(params.startTime, params.fadeoutDuration);
1801 private void handleStartKeyguardExitAnimation(long startTime, long fadeoutDuration) { argument
1803 if (DEBUG) Log.d(TAG, "handleStartKeyguardExitAnimation startTime=" + startTime
1831 mStatusBarKeyguardViewManager.hide(startTime, fadeoutDuration);
2003 public void startKeyguardExitAnimation(long startTime, long fadeoutDuration) { argument
2006 new StartKeyguardExitAnimParams(startTime, fadeoutDuration));
2050 long startTime; field in class:KeyguardViewMediator.StartKeyguardExitAnimParams
2053 private StartKeyguardExitAnimParams(long startTime, long fadeoutDuration) { argument
2054 this.startTime
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DCommandQueue.java126 default void appTransitionStarting(long startTime, long duration, boolean forced) { } argument
356 public void appTransitionStarting(long startTime, long duration) { argument
357 appTransitionStarting(startTime, duration, false /* forced */);
360 public void appTransitionStarting(long startTime, long duration, boolean forced) { argument
363 Pair.create(startTime, duration)).sendToTarget();
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DLightBarTransitionsController.java107 public void appTransitionStarting(long startTime, long duration, boolean forced) { argument
114 Math.max(0, startTime - SystemClock.uptimeMillis()),
120 // startTime is reached.
122 mTransitionDeferringStartTime = startTime;
125 mHandler.postAtTime(mTransitionDeferringDoneRunnable, startTime);
H A DPhoneStatusBarPolicy.java675 public void appTransitionStarting(long startTime, long duration, boolean forced) { argument
H A DStatusBar.java4318 * @param startTime the start time of the animations in uptime millis
4322 public void setKeyguardFadingAway(long startTime, long delay, long fadeoutDuration) { argument
4327 mCommandQueue.appTransitionStarting(startTime + fadeoutDuration
4332 startTime - LightBarTransitionsController.DEFAULT_TINT_ANIMATION_DURATION,
H A DStatusBarKeyguardViewManager.java329 public void hide(long startTime, long fadeoutDuration) { argument
336 long delay = Math.max(0, startTime + HIDE_TIMING_CORRECTION_MS - uptimeMillis);
368 mStatusBar.setKeyguardFadingAway(startTime, delay, fadeoutDuration);
378 mStatusBar.setKeyguardFadingAway(startTime, delay, fadeoutDuration);
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DMotionEventInjector.java345 List<GestureStep> steps, long startTime) {
360 startTime + step.timeSinceGestureStart);
362 startTime + step.timeSinceGestureStart);
364 startTime + step.timeSinceGestureStart);
344 getMotionEventsFromGestureSteps( List<GestureStep> steps, long startTime) argument
/frameworks/base/services/core/java/com/android/server/
H A DAlarmManagerService.java886 long startTime; field in class:AlarmManagerService.FilterStats
902 + ", startTime=" + startTime
915 long startTime; field in class:AlarmManagerService.BroadcastStats
932 + ", startTime=" + startTime
2929 bs.aggregateTime += nowELAPSED - bs.startTime;
2935 fs.aggregateTime += nowELAPSED - fs.startTime;
3132 bs.startTime = nowELAPSED;
3140 fs.startTime
[all...]
H A DGraphicsStatsService.java218 normalizeDate(info.startTime).getTimeInMillis(), info.packageName, info.versionCode);
235 buffer.mInfo.startTime, buffer.mInfo.endTime, buffer.mData);
303 if (buffer.mInfo.startTime < today) {
328 buffer.mInfo.versionCode, buffer.mInfo.startTime, buffer.mInfo.endTime,
384 int versionCode, long startTime, long endTime, byte[] data);
388 long startTime, long endTime, byte[] data);
393 long startTime; field in class:GraphicsStatsService.BufferInfo
396 BufferInfo(String packageName, int versionCode, long startTime) { argument
399 this.startTime = startTime;
383 nAddToDump(long dump, String path, String packageName, int versionCode, long startTime, long endTime, byte[] data) argument
387 nSaveBuffer(String path, String packageName, int versionCode, long startTime, long endTime, byte[] data) argument
[all...]
H A DVibratorService.java167 public VibrationInfo(long startTime, VibrationEffect effect, argument
169 mStartTime = startTime;
179 .append(", startTime: ")
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java3650 long startTime = SystemClock.elapsedRealtime();
3654 checkTime(startTime, "startProcess: after getProcessRecord");
3704 checkTime(startTime, "startProcess: done, added package to proc");
3711 checkTime(startTime, "startProcess: bad proc running, killing");
3714 checkTime(startTime, "startProcess: done killing old proc");
3721 checkTime(startTime, "startProcess: creating new process record");
3729 checkTime(startTime, "startProcess: done creating new process record");
3733 checkTime(startTime, "startProcess: added package to existing proc");
3746 checkTime(startTime, "startProcess: returning with proc on hold");
3750 checkTime(startTime, "startProces
5642 logAppTooSlow(ProcessRecord app, long startTime, String msg) argument
11243 checkTime(long startTime, String where) argument
[all...]
H A DActivityRecord.java247 private long startTime; // last time this activity was started field in class:ActivityRecord
507 if (displayStartTime != 0 || startTime != 0) {
511 pw.print(" startTime=");
512 if (startTime == 0) pw.print("0");
513 else TimeUtils.formatDuration(startTime, now, pw);
1946 startTime = 0;
/frameworks/base/services/core/java/com/android/server/connectivity/
H A DNetworkDiagnostics.java121 long startTime; field in class:NetworkDiagnostics.Measurement
153 if (startTime == 0) { startTime = finishTime; }
158 return description + ": " + result + " (" + (finishTime - startTime) + "ms)";
474 mMeasurement.startTime = now();
565 mMeasurement.startTime = now();
/frameworks/base/services/core/java/com/android/server/display/
H A DNightDisplayService.java319 public void onCustomStartTimeChanged(NightDisplayController.LocalTime startTime) { argument
320 Slog.d(TAG, "onCustomStartTimeChanged: startTime=" + startTime);
323 mAutoMode.onCustomStartTimeChanged(startTime);
455 final Calendar startTime = mStartTime.getDateTimeBefore(now);
456 final Calendar endTime = mEndTime.getDateTimeAfter(startTime);
477 && mLastActivatedTime.after(startTime)
527 public void onCustomStartTimeChanged(NightDisplayController.LocalTime startTime) { argument
528 mStartTime = startTime;
/frameworks/base/services/core/java/com/android/server/pm/
H A DEphemeralResolverConnection.java112 final long startTime) throws ConnectionException {
122 callback.onPhaseTwoResolved(resolveList, startTime);
236 List<InstantAppResolveInfo> instantAppResolveInfoList, long startTime);
110 getInstantAppIntentFilterList(int hashPrefix[], String token, String hostName, PhaseTwoCallback callback, Handler callbackHandler, final long startTime) argument
235 onPhaseTwoResolved( List<InstantAppResolveInfo> instantAppResolveInfoList, long startTime) argument
H A DInstantAppResolver.java96 final long startTime = System.currentTimeMillis();
126 logMetrics(ACTION_INSTANT_APP_RESOLUTION_PHASE_ONE, startTime, token,
146 final long startTime = System.currentTimeMillis();
159 long startTime) {
203 logMetrics(ACTION_INSTANT_APP_RESOLUTION_PHASE_TWO, startTime, token,
211 shaPrefix, token, hostName, callback, callbackHandler, startTime);
217 logMetrics(ACTION_INSTANT_APP_RESOLUTION_PHASE_TWO, startTime, token,
378 private static void logMetrics(int action, long startTime, String token, argument
383 new Long(System.currentTimeMillis() - startTime))
/frameworks/base/services/core/java/com/android/server/policy/
H A DPhoneWindowManager.java3987 final long startTime = anim != null
3993 startKeyguardExitAnimation(startTime, duration);
6910 public void startKeyguardExitAnimation(long startTime, long fadeoutDuration) { argument
6913 mKeyguardDelegate.startKeyguardExitAnimation(startTime, fadeoutDuration);
/frameworks/base/services/core/java/com/android/server/policy/keyguard/
H A DKeyguardServiceDelegate.java362 public void startKeyguardExitAnimation(long startTime, long fadeoutDuration) { argument
364 mKeyguardService.startKeyguardExitAnimation(startTime, fadeoutDuration);
H A DKeyguardServiceWrapper.java213 public void startKeyguardExitAnimation(long startTime, long fadeoutDuration) { argument
215 mService.startKeyguardExitAnimation(startTime, fadeoutDuration);

Completed in 535 milliseconds

123