HomeSort by relevance Sort by last modified time
    Searched refs:mTimestamp (Results 1 - 25 of 57) sorted by null

1 2 3

  /frameworks/base/location/java/android/location/
Country.java 67 private final long mTimestamp;
88 mTimestamp = SystemClock.elapsedRealtime();
98 mTimestamp = timestamp;
104 mTimestamp = country.mTimestamp;
133 return mTimestamp;
153 parcel.writeLong(mTimestamp);
200 return "Country {ISO=" + mCountryIso + ", source=" + mSource + ", time=" + mTimestamp + "}";
  /frameworks/av/services/camera/libcameraservice/device3/
Camera3StreamBufferListener.h 35 int64_t mTimestamp;
Camera3ZslStream.cpp 41 TimestampFinder(nsecs_t timestamp) : mTimestamp(timestamp) {}
69 if (i1->mTimestamp == mTimestamp) {
71 } else if (i2->mTimestamp == mTimestamp) {
85 if (i1->mTimestamp > i2->mTimestamp) {
91 if (infoPtrs[1]->mTimestamp < mTimestamp) {
93 } else if (infoPtrs[0]->mTimestamp < mTimestamp)
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/util/
StreamItemEntry.java 44 private final long mTimestamp;
75 mTimestamp = timestamp;
91 mTimestamp = getLong(cursor, StreamItems.TIMESTAMP);
107 return mTimestamp == other.mTimestamp ? 0 : mTimestamp > other.mTimestamp ? -1 : 1;
123 return mTimestamp;
  /packages/apps/Contacts/tests/src/com/android/contacts/util/
StreamItemEntryBuilder.java 28 private long mTimestamp;
64 StreamItemEntry ret = StreamItemEntry.createForTest(mId, mText, mComment, mTimestamp,
  /development/samples/Support7Demos/src/com/example/android/supportv7/media/
PlaylistItem.java 38 private long mTimestamp;
63 mTimestamp = ts;
103 return mTimestamp;
110 .setTimestamp(mTimestamp)
  /packages/apps/ContactsCommon/src/com/android/contacts/common/util/
DataStatus.java 37 private long mTimestamp = -1;
67 if (newTimestamp < mTimestamp) return;
69 mTimestamp = newTimestamp;
79 mTimestamp = getLong(cursor, Data.STATUS_TIMESTAMP, -1);
98 return mTimestamp;
110 final boolean validTimestamp = mTimestamp > 0;
114 mTimestamp, System.currentTimeMillis(), DateUtils.MINUTE_IN_MILLIS,
  /frameworks/av/services/camera/libcameraservice/gui/
RingBufferConsumer.cpp 80 cur.mTimestamp = item.mTimestamp;
168 item.mTimestamp, item.mFrameNumber);
171 item.mFrameNumber, item.mTimestamp);
206 if (find.mTimestamp < accIt->mTimestamp || accIt == end) {
226 item.mTimestamp, item.mFrameNumber);
231 item.mTimestamp, item.mFrameNumber);
245 item.mTimestamp, item.mFrameNumber);
299 item.mTimestamp,
    [all...]
RingBufferConsumer.h 99 // mTimestamp is the current timestamp for this buffer slot. This gets
101 int64_t mTimestamp;
  /packages/experimental/LoaderApp/src/com/android/loaderapp/util/
DataStatus.java 35 private long mTimestamp = -1;
65 if (newTimestamp < mTimestamp) return;
67 mTimestamp = newTimestamp;
77 mTimestamp = getLong(cursor, Data.STATUS_TIMESTAMP, -1);
104 final boolean validTimestamp = mTimestamp > 0;
108 mTimestamp, System.currentTimeMillis(), DateUtils.MINUTE_IN_MILLIS,
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
TestSummaryXml.java 34 private final String mTimestamp;
50 mTimestamp = timestamp;
66 return mTimestamp;
  /frameworks/base/core/java/android/net/
SamplingDataTracker.java 46 public long mTimestamp;
89 ss.mTimestamp = SystemClock.elapsedRealtime();
101 Slog.d(TAG, "Timestamp = " + String.valueOf(ss.mTimestamp));
162 if (s.mTimestamp - mLastSample.mTimestamp > MINIMUM_SAMPLING_INTERVAL
274 return mEndingSample.mTimestamp;
284 return (int) (mEndingSample.mTimestamp - mBeginningSample.mTimestamp);
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/
GLTextureSource.java 54 private long mTimestamp = Frame.TIMESTAMP_UNKNOWN;
87 mFrame.setTimestamp(mTimestamp);
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppShareInfo.java 67 public long mTimestamp;
86 mTimestamp = timestamp;
BluetoothOppBatch.java 69 public final long mTimestamp;
109 mTimestamp = info.mTimestamp;
  /development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/core/
VoicemailImpl.java 25 private final Long mTimestamp;
51 mTimestamp = timestamp;
183 return hasTimestampMillis() ? mTimestamp : 0;
188 return mTimestamp != null;
248 return "VoicemailImpl [mTimestamp=" + mTimestamp + ", mNumber=" + mNumber + ", mId=" + mId
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
InboundSmsTracker.java 36 private final long mTimestamp;
77 mTimestamp = timestamp;
109 mTimestamp = timestamp;
145 mTimestamp = cursor.getLong(InboundSmsHandler.DATE_COLUMN);
180 values.put("date", mTimestamp);
232 builder.append(new Date(mTimestamp));
255 return mTimestamp;
  /external/chromium_org/third_party/codesighs/
msmap.h 120 time_t mTimestamp;
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
Frame.java 44 private long mTimestamp = TIMESTAMP_NOT_SET;
123 mTimestamp = timestamp;
127 return mTimestamp;
  /packages/apps/Mms/src/com/android/mms/transaction/
SmsMessageSender.java 43 protected long mTimestamp;
68 mTimestamp = System.currentTimeMillis();
97 mMessageText, null, mTimestamp,
  /frameworks/av/media/libstagefright/
SurfaceMediaSource.cpp 311 mFirstFrameTimestamp = item.mTimestamp;
314 if (item.mTimestamp < mStartTimeNs) {
321 mStartTimeNs = item.mTimestamp - mStartTimeNs;
324 item.mTimestamp = mStartTimeNs + (item.mTimestamp - mFirstFrameTimestamp);
353 mCurrentTimestamp = item.mTimestamp;
  /frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
TrackerEntry.java 77 private String mTimestamp;
116 mTimestamp = timestamp;
136 return mTimestamp;
171 cValues.put(TIMESTAMP, mTimestamp);
  /frameworks/native/include/gui/
IGraphicBufferConsumer.h 71 // mTimestamp is the current timestamp for this buffer slot. This gets
73 int64_t mTimestamp;
75 // mIsAutoTimestamp indicates whether mTimestamp was generated
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
FrameManager.java 237 private int mTimestamp = 0;
246 ++mTimestamp;
247 backing.cachePriority = mTimestamp;
  /packages/apps/Mms/src/com/android/mms/ui/
MessageItem.java 77 String mTimestamp;
157 mTimestamp = MessageUtils.formatTimeStampString(context, date);
182 mTimestamp = "";
390 mTimestamp = mContext.getString(R.string.expire_on,
393 mTimestamp = MessageUtils.formatTimeStampString(mContext, timestamp);

Completed in 314 milliseconds

1 2 3