[go: nahoru, domu]

Searched defs:startTime (Results 1 - 25 of 58) sorted by relevance

123

/frameworks/base/core/java/android/content/
H A DSyncInfo.java52 public final long startTime; field in class:SyncInfo
61 int authorityId, String authority, long startTime) {
62 return new SyncInfo(authorityId, REDACTED_ACCOUNT, authority, startTime);
66 public SyncInfo(int authorityId, Account account, String authority, long startTime) { argument
70 this.startTime = startTime;
78 this.startTime = other.startTime;
91 parcel.writeLong(startTime);
99 startTime
60 createAccountRedacted( int authorityId, String authority, long startTime) argument
[all...]
/frameworks/av/media/libstagefright/timedtext/
H A DTextDescriptions.cpp173 int startTime = U32_AT(tmpData); local
187 parcel->writeInt32(startTime + lastEndTime);
/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.cpp80 int64_t startTime = 0; local
86 if (startTime != 0) {
88 (int)((uptimeMillis()-startTime)/1000),
113 if (startTime == 0) {
114 startTime = uptimeMillis();
/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;
H A DKeyLayoutMap.cpp66 nsecs_t startTime = systemTime(SYSTEM_TIME_MONOTONIC); local
71 nsecs_t elapsedTime = systemTime(SYSTEM_TIME_MONOTONIC) - startTime;
/frameworks/base/core/java/android/app/admin/
H A DSystemUpdatePolicy.java114 * @param startTime the start of the maintenance window, measured as the number of minutes from
120 public static SystemUpdatePolicy createWindowedInstallPolicy(int startTime, int endTime) { argument
121 if (startTime < 0 || startTime >= WINDOW_BOUNDARY
123 throw new IllegalArgumentException("startTime and endTime must be inside [0, 1440)");
127 policy.mMaintenanceWindowStart = startTime;
/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,
196 void onParsingStarted(long startTime, long endTime); argument
H A DSuggestionParser.java223 private long getEndTime(long startTime, int daysDelay) { argument
225 return startTime + days;
/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DCaptureSequencer.cpp89 nsecs_t startTime = systemTime(); local
94 timeout -= (systemTime() - startTime);
/frameworks/base/core/java/android/app/usage/
H A DNetworkStatsManager.java107 * means the bucket's start and end timestamp are going to be the same as the 'startTime' and
116 * @param startTime Start of period. Defined in terms of "Unix time", see
124 long startTime, long endTime) throws SecurityException, RemoteException {
134 NetworkStats stats = new NetworkStats(mContext, template, startTime, endTime);
144 * This means the bucket's start and end timestamp are going to be the same as the 'startTime'
152 * @param startTime Start of period. Defined in terms of "Unix time", see
159 public Bucket querySummaryForUser(int networkType, String subscriberId, long startTime, argument
170 stats = new NetworkStats(mContext, template, startTime, endTime);
181 * timestamps are going to be the same as the 'startTime' and 'endTime' parameters.
188 * @param startTime Star
123 querySummaryForDevice(int networkType, String subscriberId, long startTime, long endTime) argument
195 querySummary(int networkType, String subscriberId, long startTime, long endTime) argument
217 queryDetailsForUid(int networkType, String subscriberId, long startTime, long endTime, int uid) argument
246 queryDetailsForUidTag(int networkType, String subscriberId, long startTime, long endTime, int uid, int tag) argument
285 queryDetails(int networkType, String subscriberId, long startTime, long endTime) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DDateTimeView.java321 private static int dayDistance(TimeZone timeZone, long startTime, argument
324 - getJulianDay(startTime, timeZone.getOffset(startTime) / 1000);
/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/core/jni/
H A Dandroid_app_admin_SecurityLog.cpp129 static void readEvents(JNIEnv* env, int loggerMode, jlong startTime, jobject out) { argument
131 if (startTime) {
133 log_time(startTime / NS_PER_SEC, startTime % NS_PER_SEC), 0);
/frameworks/base/services/core/java/com/android/server/policy/keyguard/
H A DKeyguardServiceWrapper.java211 public void startKeyguardExitAnimation(long startTime, long fadeoutDuration) { argument
213 mService.startKeyguardExitAnimation(startTime, fadeoutDuration);
/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/native/libs/gui/tests/
H A DBufferQueue_test.cpp766 auto startTime = systemTime(); local
768 ASSERT_GE(systemTime() - startTime, TIMEOUT);
772 startTime = systemTime();
774 ASSERT_GE(systemTime() - startTime, TIMEOUT);
/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/support/v7/mediarouter/src/android/support/v7/app/
H A DOverlayListView.java204 * @param startTime Start time to be set in Millis
206 public void startAnimation(long startTime) { argument
207 mStartTime = startTime;
/frameworks/av/media/libstagefright/mpeg2ts/
H A DMPEG2TSExtractor.cpp151 int64_t startTime = ALooper::GetNowUs(); local
191 if (ALooper::GetNowUs() - startTime > 2000000ll) {
208 && ALooper::GetNowUs() - startTime <= 2000000ll) {
251 haveAudio, haveVideo, ALooper::GetNowUs() - startTime);
/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/core/tests/coretests/src/android/animation/
H A DValueAnimatorTests.java76 final long[] startTime = new long[1];
85 startTime[0] = SystemClock.uptimeMillis();
96 assertTrue(listener.firstRunningFrameTime - startTime[0] >= delay);
186 final long[] startTime = new long[1];
193 startTime[0] = SystemClock.uptimeMillis();
205 if (SystemClock.uptimeMillis() - startTime[0] < startDelay) {
538 assertTrue(listener.startTime > 0);
539 assertTrue(currentTime - listener.startTime < frameDelay * 2);
867 assertTrue(l1.endTime >= l1.startTime);
872 assertTrue(l2.endTime >= l1.startTime);
1084 long startTime = -1; field in class:ValueAnimatorTests.MyListener
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPhoneStatusBarPolicy.java464 public void appTransitionStarting(long startTime, long duration) { argument
/frameworks/native/opengl/tests/hwc/
H A DhwcStress.cpp246 struct timeval startTime, currentTime, delta; local
389 gettimeofday(&startTime, NULL);
393 delta = tvDelta(&startTime, &currentTime);
/frameworks/base/core/java/android/accessibilityservice/
H A DGestureDescription.java209 * @param startTime The time, in milliseconds, from the time the gesture starts to the
215 @IntRange(from = 0) long startTime,
220 if (startTime < 0) {
250 mStartTime = startTime;
251 mEndTime = startTime + duration;
214 StrokeDescription(@onNull Path path, @IntRange(from = 0) long startTime, @IntRange(from = 0) long duration) argument

Completed in 675 milliseconds

123