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

1 2

  /frameworks/av/services/camera/libcameraservice/camera3/
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...]
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/
GLTextureSource.java 54 private long mTimestamp = Frame.TIMESTAMP_UNKNOWN;
87 mFrame.setTimestamp(mTimestamp);
  /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/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 + "}";
LocationManager.java     [all...]
  /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;
BluetoothOppObexServerSession.java 90 private long mTimestamp;
275 values.put(BluetoothShare.TIMESTAMP, mTimestamp);
576 mTimestamp = System.currentTimeMillis();
BluetoothOppTransfer.java 105 private long mTimestamp;
  /packages/apps/Contacts/src/com/android/contacts/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,
StreamItemEntry.java 42 private final long mTimestamp;
73 mTimestamp = timestamp;
89 mTimestamp = getLong(cursor, StreamItems.TIMESTAMP);
105 return mTimestamp == other.mTimestamp ? 0 : mTimestamp > other.mTimestamp ? -1 : 1;
121 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,
  /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,
  /frameworks/av/services/camera/libcameraservice/gui/
RingBufferConsumer.h 101 // mTimestamp is the current timestamp for this buffer slot. This gets
103 int64_t mTimestamp;
  /frameworks/native/include/gui/
Surface.h 192 // mTimestamp is the timestamp that will be used for the next buffer queue
195 int64_t mTimestamp;
BufferQueue.h 241 mTimestamp(0),
260 // mTimestamp is the current timestamp for this buffer slot. This gets
262 int64_t mTimestamp;
421 mTimestamp(0),
496 // mTimestamp is the current timestamp for this buffer slot. This gets
498 int64_t mTimestamp;
  /packages/apps/Mms/src/com/android/mms/transaction/
SmsMessageSender.java 43 protected long mTimestamp;
68 mTimestamp = System.currentTimeMillis();
97 mMessageText, null, 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/base/media/mca/filterfw/java/android/filterfw/core/
Frame.java 44 private long mTimestamp = TIMESTAMP_NOT_SET;
123 mTimestamp = timestamp;
127 return 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/base/core/java/android/hardware/location/
GeofenceHardwareImpl.java 541 geofenceTransition.mLocation, geofenceTransition.mTimestamp,
667 private long mTimestamp;
673 mTimestamp = timestamp;
  /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);
  /frameworks/opt/net/voip/src/jni/rtp/
AudioGroup.cpp 138 uint32_t mTimestamp;
194 read(gRandom, &mTimestamp, sizeof(mTimestamp));
230 mDtmfStart = mTimestamp + mSampleCount;
271 mTimestamp += skipped * mSampleCount;
278 mTimestamp += mSampleCount;
282 int duration = mTimestamp - mDtmfStart;
349 buffer[1] = htonl(mTimestamp);
  /packages/apps/LegacyCamera/src/com/android/camera/panorama/
PanoramaActivity.java 145 private long mTimestamp;
573 mTimestamp = 0;
    [all...]

Completed in 1448 milliseconds

1 2