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

  /system/media/mca/filterfw/java/android/filterfw/basefilters/
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/include/gui/
SurfaceTextureClient.h 134 // mTimestamp is the timestamp that will be used for the next buffer queue
137 int64_t mTimestamp;
SurfaceTexture.h 284 mTimestamp(0),
352 // mTimestamp is the current timestamp for this buffer slot. This gets
354 int64_t 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 65 public long mTimestamp;
84 mTimestamp = timestamp;
BluetoothOppBatch.java 69 public final long mTimestamp;
109 mTimestamp = info.mTimestamp;
BluetoothOppObexServerSession.java 90 private long mTimestamp;
269 values.put(BluetoothShare.TIMESTAMP, mTimestamp);
539 mTimestamp = System.currentTimeMillis();
BluetoothOppTransfer.java 107 private long mTimestamp;
142 (System.currentTimeMillis() - mTimestamp + " ms)"));
515 mTimestamp = System.currentTimeMillis();
527 mTimestamp = System.currentTimeMillis();
    [all...]
  /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 39 private final long mTimestamp;
59 mTimestamp = timestamp;
75 mTimestamp = getLong(cursor, StreamItems.TIMESTAMP);
91 return mTimestamp == other.mTimestamp ? 0 : mTimestamp > other.mTimestamp ? -1 : 1;
107 return mTimestamp;
  /packages/apps/Contacts/tests/src/com/android/contacts/util/
StreamItemEntryBuilder.java 26 private long mTimestamp;
62 return new StreamItemEntry(mId, mText, mComment, mTimestamp, mAccountType, mAccountName,
  /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,
  /packages/apps/Mms/src/com/android/mms/transaction/
SmsMessageSender.java 42 protected long mTimestamp;
67 mTimestamp = System.currentTimeMillis();
96 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/include/media/stagefright/
SurfaceMediaSource.h 201 mTimestamp(0) {
246 // mTimestamp is the current timestamp for this buffer slot. This gets
248 int64_t mTimestamp;
  /system/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);
  /packages/apps/Mms/src/com/android/mms/ui/
MessageItem.java 68 String mTimestamp;
141 mTimestamp = MessageUtils.formatTimeStampString(context, date);
236 mTimestamp = context.getString(R.string.expire_on,
239 mTimestamp = MessageUtils.formatTimeStampString(context, timestamp);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audioquality/
CalibrateVolumeActivity.java 119 private long mTimestamp = 0; // Time of last status change in ms
135 if (timestamp - mTimestamp > DEBOUNCE_TIME) {
138 mTimestamp = timestamp;
  /packages/apps/Phone/src/com/android/phone/
BluetoothHeadsetService.java 333 private long mTimestamp;
    [all...]
  /frameworks/base/voip/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/Camera/src/com/android/camera/panorama/
PanoramaActivity.java 145 private long mTimestamp;
573 mTimestamp = 0;
    [all...]
  /hardware/ti/omap4xxx/camera/inc/
CameraHal.h 260 mTimestamp(0),
280 mTimestamp(frame.mTimestamp),
298 nsecs_t mTimestamp;
    [all...]

Completed in 597 milliseconds