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

123456

/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/services/oboeservice/
H A DTimestampScheduler.cpp24 void TimestampScheduler::start(int64_t startTime) { argument
25 mStartTime = startTime;
26 mLastTime = startTime;
H A DTimestampScheduler.h40 void start(int64_t startTime);
/frameworks/base/libs/hwui/service/
H A DGraphicsStatsService.h47 int versionCode, int64_t startTime, int64_t endTime, const ProfileData* data);
51 int versionCode, int64_t startTime, int64_t endTime, const ProfileData* data);
/frameworks/base/core/java/android/app/usage/
H A DNetworkStatsManager.java112 * 'startTime' and 'endTime' parameters. State is going to be
121 * @param startTime Start of period. Defined in terms of "Unix time", see
129 long startTime, long endTime) throws SecurityException, RemoteException {
139 NetworkStats stats = new NetworkStats(mContext, template, startTime, endTime);
149 * This means the bucket's start and end timestamp are going to be the same as the 'startTime'
159 * @param startTime Start of period. Defined in terms of "Unix time", see
166 public Bucket querySummaryForUser(int networkType, String subscriberId, long startTime, argument
177 stats = new NetworkStats(mContext, template, startTime, endTime);
188 * start and end timestamps are going to be the same as the 'startTime' and 'endTime'
196 * @param startTime Star
128 querySummaryForDevice(int networkType, String subscriberId, long startTime, long endTime) argument
203 querySummary(int networkType, String subscriberId, long startTime, long endTime) argument
225 queryDetailsForUid(int networkType, String subscriberId, long startTime, long endTime, int uid) argument
256 queryDetailsForUidTag(int networkType, String subscriberId, long startTime, long endTime, int uid, int tag) argument
297 queryDetails(int networkType, String subscriberId, long startTime, long endTime) argument
[all...]
/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/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/hotspot2/
H A DANQPRequestManagerTest.java163 long startTime = 0;
165 when(mClock.getElapsedSinceBootMillis()).thenReturn(startTime);
171 when(mClock.getElapsedSinceBootMillis()).thenReturn(startTime + 1);
179 .thenReturn(startTime + ANQPRequestManager.BASE_HOLDOFF_TIME_MILLISECONDS);
192 long startTime = 0;
194 when(mClock.getElapsedSinceBootMillis()).thenReturn(startTime);
200 when(mClock.getElapsedSinceBootMillis()).thenReturn(startTime);
213 long startTime = 0;
215 when(mClock.getElapsedSinceBootMillis()).thenReturn(startTime);
224 when(mClock.getElapsedSinceBootMillis()).thenReturn(startTime
[all...]
/frameworks/base/tests/SurfaceComposition/src/android/surfacecomposition/
H A DCustomSurfaceView.java60 long startTime = System.currentTimeMillis();
61 while (System.currentTimeMillis() - startTime < DURATION_TO_WARMUP_MS) {
65 startTime = System.currentTimeMillis();
72 mFPS = (double)frameCnt * 1000.0 / (endTime - startTime);
73 if ((endTime - startTime) >= DURATION_TO_MEASURE_ROUGH_MS) {
79 if ((endTime - startTime) >= DURATION_TO_MEASURE_PRECISE_MS) {
/frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/
H A DRenderScriptTask.java103 long startTime = System.currentTimeMillis();
106 filter.logTiming(TAG, "TOTAL", endTime - startTime, "ms");
/frameworks/support/wear/tests/src/android/support/wear/widget/util/
H A DAsyncViewActions.java40 final long startTime = System.currentTimeMillis();
41 final long endTime = startTime + millis;
/frameworks/base/core/java/android/app/
H A DQueuedWork.java150 long startTime = System.currentTimeMillis();
196 long waitTime = System.currentTimeMillis() - startTime;
239 long startTime = 0;
242 startTime = System.currentTimeMillis();
263 +(System.currentTimeMillis() - startTime) + " ms");
H A DSharedPreferencesImpl.java410 final long startTime = System.currentTimeMillis();
422 + " applied after " + (System.currentTimeMillis() - startTime)
525 long startTime = 0;
528 startTime = System.currentTimeMillis();
542 + " committed after " + (System.currentTimeMillis() - startTime)
650 long startTime = 0;
661 startTime = System.currentTimeMillis();
770 Log.d(TAG, "write: " + (existsTime - startTime) + "/"
771 + (backupExistsTime - startTime) + "/"
772 + (outputStreamCreateTime - startTime)
[all...]
/frameworks/native/libs/binder/
H A DIServiceManager.cpp76 int64_t startTime = 0; local
82 if (startTime != 0) {
84 (int)((uptimeMillis()-startTime)/1000),
109 if (startTime == 0) {
110 startTime = uptimeMillis();
H A DAppOpsManager.cpp64 int64_t startTime = 0; local
70 if (startTime == 0) {
71 startTime = uptimeMillis();
73 } else if ((uptimeMillis()-startTime) > 10000) {
/frameworks/base/core/tests/coretests/src/android/view/
H A DPinchZoomAction.java82 final long startTime = SystemClock.uptimeMillis();
83 long eventTime = startTime;
86 final MotionEvent firstFingerEvent = MotionEvent.obtain(startTime,
91 final MotionEvent secondFingerEvent = MotionEvent.obtain(startTime, eventTime,
131 final MotionEvent event = MotionEvent.obtain(startTime, eventTime,
151 final MotionEvent secondFingerUpEvent = MotionEvent.obtain(startTime, eventTime,
166 final MotionEvent firstFingerUpEvent = MotionEvent.obtain(startTime, eventTime,
/frameworks/base/test-runner/src/android/test/
H A DInstrumentationCoreTestRunner.java97 private long startTime;
108 startTime = System.currentTimeMillis();
121 long timeTaken = System.currentTimeMillis() - startTime;
/frameworks/support/dynamic-animation/src/android/support/animation/
H A DAnimationHandler.java156 Long startTime = mDelayedCallbackStartTime.get(callback);
157 if (startTime == null) {
160 if (startTime < currentTime) {
/frameworks/base/core/java/android/app/admin/
H A DSystemUpdatePolicy.java134 * @param startTime the start of the maintenance window, measured as the number of minutes from
140 public static SystemUpdatePolicy createWindowedInstallPolicy(int startTime, int endTime) { argument
141 if (startTime < 0 || startTime >= WINDOW_BOUNDARY
143 throw new IllegalArgumentException("startTime and endTime must be inside [0, 1440)");
147 policy.mMaintenanceWindowStart = startTime;
/frameworks/base/packages/MtpDocumentsProvider/perf_tests/src/com/android/mtp/
H A DAppFusePerfTest.java58 final long startTime = System.nanoTime();
60 readTime[i] = (System.nanoTime() - startTime) / 1000.0 / 1000.0;
70 final long startTime = System.nanoTime();
72 writeTime[i] = (System.nanoTime() - startTime) / 1000.0 / 1000.0;
/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);
/frameworks/base/services/core/jni/
H A Dcom_android_server_GraphicsStatsService.cpp42 jint versionCode, jlong startTime, jlong endTime, jbyteArray jdata) {
63 GraphicsStatsService::addToDump(dump, path, package, versionCode, startTime, endTime, data);
80 jint versionCode, jlong startTime, jlong endTime, jbyteArray jdata) {
92 GraphicsStatsService::saveBuffer(path, package, versionCode, startTime, endTime, data);
41 addToDump(JNIEnv* env, jobject, jlong dumpPtr, jstring jpath, jstring jpackage, jint versionCode, jlong startTime, jlong endTime, jbyteArray jdata) argument
79 saveBuffer(JNIEnv* env, jobject clazz, jstring jpath, jstring jpackage, jint versionCode, jlong startTime, jlong endTime, jbyteArray jdata) argument
/frameworks/base/core/java/android/accessibilityservice/
H A DGestureDescription.java221 * @param startTime The time, in milliseconds, from the time the gesture starts to the
227 @IntRange(from = 0) long startTime,
229 this(path, startTime, duration, false);
236 * @param startTime The time, in milliseconds, from the time the gesture starts to the
245 @IntRange(from = 0) long startTime,
250 Preconditions.checkArgument(startTime >= 0, "Start time must not be negative");
275 mStartTime = startTime;
276 mEndTime = startTime + duration;
325 * @param startTime The time, in milliseconds, from the time the gesture starts to the
333 public StrokeDescription continueStroke(Path path, long startTime, lon argument
226 StrokeDescription(@onNull Path path, @IntRange(from = 0) long startTime, @IntRange(from = 0) long duration) argument
244 StrokeDescription(@onNull Path path, @IntRange(from = 0) long startTime, @IntRange(from = 0) long duration, boolean willContinue) argument
[all...]
/frameworks/base/core/java/com/android/internal/policy/
H A DIKeyguardService.aidl92 * @param startTime the start time of the animation in uptime milliseconds
95 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/services/core/java/com/android/server/
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...]

Completed in 1488 milliseconds

123456