HomeSort by relevance Sort by last modified time
    Searched defs:mTime (Results 1 - 25 of 267) sorted by null

1 2 3 4 5 6 7 8 91011

  /cts/tests/openglperf2/jni/reference/scene/flocking/
WaterMeshNode.h 30 const int mTime;
  /packages/apps/Email/tests/src/com/android/email/
MockClock.java 24 public long mTime = DEFAULT_TIME;
28 return mTime;
32 mTime++;
36 mTime += milliseconds;
  /frameworks/av/media/libmedia/include/media/
DrmSessionManager.h 70 int64_t mTime;
  /frameworks/base/core/java/android/os/health/
TimerStat.java 32 private long mTime;
62 mTime = time;
71 mTime = in.readLong();
86 out.writeLong(mTime);
107 mTime = time;
114 return mTime;
  /frameworks/base/services/usage/java/com/android/server/usage/
UnixCalendar.java 28 private long mTime;
31 mTime = time;
35 mTime += val * DAY_IN_MILLIS;
39 mTime += val * WEEK_IN_MILLIS;
43 mTime += val * MONTH_IN_MILLIS;
47 mTime += val * YEAR_IN_MILLIS;
51 mTime = time;
55 return mTime;
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/
WaveTriggerFilter.java 33 private float mTime = 0f;
64 mTime = 0.5f;
70 value = -Math.abs(mTime - 1f) + 1f;
71 mTime += 0.2f;
72 if (mTime >= 2f) {
  /frameworks/base/services/core/java/com/android/server/
NetworkTimeUpdateService.java 77 private final NtpTrustedTime mTime;
103 mTime = NtpTrustedTime.getInstance(context);
168 if (mTime.getCacheAge() >= mPollingIntervalMs) {
170 mTime.forceRefresh();
173 if (mTime.getCacheAge() < mPollingIntervalMs) {
213 final long skew = Math.abs(mTime.currentTimeMillis() - System.currentTimeMillis());
220 SystemClock.setCurrentTimeMillis(mTime.currentTimeMillis());
325 pw.println("NTP cache age: " + mTime.getCacheAge());
326 pw.println("NTP cache certainty: " + mTime.getCacheCertainty());
  /frameworks/av/media/libaudioclient/include/media/
AudioTimestamp.h 29 mTime.tv_sec = 0;
30 mTime.tv_nsec = 0;
34 struct timespec mTime; // corresponding CLOCK_MONOTONIC when frame is expected to present
131 timestamp->mTime.tv_sec = time / 1000000000;
132 timestamp->mTime.tv_nsec = time - timestamp->mTime.tv_sec * 1000000000LL;
  /frameworks/base/telephony/java/android/telephony/
DataConnectionRealTimeInfo.java 29 private long mTime; // Time the info was collected since boot in nanos;
48 mTime = time;
58 mTime = Long.MAX_VALUE;
66 mTime = in.readLong();
74 return mTime;
91 out.writeLong(mTime);
113 result = (prime * result) + mTime;
130 return (mTime == other.mTime)
138 sb.append("mTime=").append(mTime)
    [all...]
  /system/extras/tests/sdcard/
stopwatch.h 79 struct timespec mTime;
  /frameworks/base/telecomm/java/android/telecom/
TelecomAnalytics.java 80 private long mTime;
84 this.mTime = time;
89 mTime = in.readLong();
99 return mTime;
110 out.writeLong(mTime);
  /packages/apps/Car/Media/src/com/android/car/media/
MetadataController.java 32 private final TextView mTime;
76 mTime = time;
146 mTime.setVisibility(View.INVISIBLE);
154 if (mTime != null) {
158 mTime.setVisibility(visibility);
159 mTime.setText(time);
  /packages/apps/DeskClock/src/com/android/deskclock/
AnalogClock.java 45 mTime = Calendar.getInstance(TimeZone.getTimeZone(tz));
68 private Calendar mTime;
84 mTime = Calendar.getInstance();
122 mTime = Calendar.getInstance(mTimeZone != null ? mTimeZone : TimeZone.getDefault());
140 mTime.setTimeInMillis(System.currentTimeMillis());
141 final float hourAngle = mTime.get(Calendar.HOUR) * 30f;
143 final float minuteAngle = mTime.get(Calendar.MINUTE) * 6f;
146 final float secondAngle = mTime.get(Calendar.SECOND) * 6f;
149 setContentDescription(DateFormat.format(mDescFormat, mTime));
155 mTime.setTimeZone(mTimeZone)
    [all...]
  /packages/apps/Launcher3/tests/src/com/android/launcher3/testcomponent/
TouchEventGenerator.java 61 private long mTime;
211 mTime = mLastEventTime + ms;
215 mTime,
233 mLastEventTime = mTime;
273 mTime = 0L;
  /packages/apps/Calendar/src/com/android/calendar/agenda/
AgendaFragment.java 60 private final Time mTime;
85 mTime.switchTimezone(mTimeZone);
98 mTime = new Time();
102 mTime.setToNow();
104 mTime.set(mInitialTimeMillis);
106 mLastHandledEventTime.set(mTime);
114 mTime.switchTimezone(mTimeZone);
133 mTime.set(prevTime);
135 Log.d(TAG, "Restoring time to " + mTime.toString());
215 Log.v(TAG, "OnResume to " + mTime.toString())
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
StopwatchFragment.java 99 private StopwatchCircleView mTime;
128 mTime = (StopwatchCircleView) v.findViewById(R.id.stopwatch_circle);
154 if (mTime != null) {
398 if (mTime != null) {
400 mTime.update();
516 if (mTime != null) {
517 mTime.update();
544 final View touchTarget = mTime != null ? mTime : mStopwatchWrapper;
  /cts/tests/tests/view/src/android/view/cts/
VelocityTrackerTest.java 48 private long mTime;
57 mTime = 1000;
163 mTime += step;
173 mTime += duration;
177 if (mTime > mLastTime) {
178 MotionEvent ev = MotionEvent.obtain(0L, mTime, MotionEvent.ACTION_MOVE, mPx, mPy, 0);
181 mLastTime = mTime;
189 mTime, mPx, mPy, mVx, mVy, mAx, mAy,
  /development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/
AddVoicemailActivity.java 74 private TextView mTime;
125 String dateStr = mTime.getText().toString();
157 mTime.setText(DATE_FORMATTER.format(new Date()));
  /external/ltp/testcases/kernel/io/disktest/
sfunc.c 171 static pthread_mutex_t mTime = PTHREAD_MUTEX_INITIALIZER;
175 LOCK(mTime);
185 UNLOCK(mTime);
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/
TelephonyEvents.java 121 private long mTime;
126 mTime = dataConnectionRealTimeInfo.getTime();
138 return mTime;
149 mTime);
  /frameworks/base/services/core/java/com/android/server/notification/
CountdownConditionProvider.java 54 private long mTime;
90 pw.print(" mTime="); pw.println(mTime);
113 mTime = ZenModeConfig.tryParseCountdownConditionId(conditionId);
123 if (mTime > 0) {
126 DateUtils.getRelativeTimeSpanString(mTime, now, DateUtils.MINUTE_IN_MILLIS);
127 if (mTime <= now) {
129 notifyCondition(newCondition(mTime, mIsAlarm, Condition.STATE_FALSE));
132 alarms.setExact(AlarmManager.RTC_WAKEUP, mTime, pendingIntent);
136 (mTime <= now ? "Not scheduling" : "Scheduling")
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/power/batterysaver/
BatterySavingStatsTest.java 51 private long mTime = 1_000_000; // Some random starting time.
61 return mTime;
80 mTime += 60_000 * minutes;
  /frameworks/base/tests/DozeTest/src/com/android/dreams/dozetest/
DozeTestDream.java 64 private final Date mTime = new Date();
147 mTime.setTime(now);
148 mAlarmClock.setText(mTimeFormat.format(mTime));
  /frameworks/opt/vcard/java/com/android/vcard/
VCardParserImpl_V21.java 49 private long mTime;
73 mTime += end - start;
85 mTime += end - start;
95 return mTime;
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/util/sl4a/
Sl4aEventDispatcher.java 204 private long mTime = 0L;
209 mTime = response.getLong("time");
221 return mTime;
226 return "EventSl4aObject [mName=" + mName + ", mData=" + mData + ", mTime=" + mTime

Completed in 1769 milliseconds

1 2 3 4 5 6 7 8 91011