OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:launchtime
(Results
1 - 4
of
4
) sorted by null
/frameworks/base/tests/AppLaunch/src/com/android/tests/applaunch/
AppLaunch.java
87
long
launchTime
= startApp(app, false);
88
if (
launchTime
<=0 ) {
102
long
launchTime
= 0;
107
launchTime
= startApp(app, true);
108
if (
launchTime
<= 0) {
113
totalLaunchTime +=
launchTime
;
/frameworks/base/services/java/com/android/server/am/
ActivityRecord.java
87
long
launchTime
; // when we starting launching this activity
238
if (
launchTime
!= 0 || startTime != 0) {
239
pw.print(prefix); pw.print("
launchTime
=");
240
if (
launchTime
== 0) pw.print("0");
241
else TimeUtils.formatDuration(
launchTime
, now, pw);
[
all
...]
ActivityStack.java
811
if (r.
launchTime
== 0) {
812
r.
launchTime
= SystemClock.uptimeMillis()
[
all
...]
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
CameraWidgetFrame.java
442
long
launchTime
= SystemClock.uptimeMillis() - mLaunchCameraStart;
443
if (DEBUG) Log.d(TAG, String.format("Camera took %sms to launch",
launchTime
));
Completed in 113 milliseconds