/frameworks/av/media/libmedia/ |
IAudioTrack.cpp | 178 virtual status_t getTimestamp(AudioTimestamp& timestamp) { 185 timestamp.mPosition = reply.readInt32(); 186 timestamp.mTime.tv_sec = reply.readInt32(); 187 timestamp.mTime.tv_nsec = reply.readInt32(); 275 AudioTimestamp timestamp; local 276 status_t status = getTimestamp(timestamp); 279 reply->writeInt32(timestamp.mPosition); 280 reply->writeInt32(timestamp.mTime.tv_sec); 281 reply->writeInt32(timestamp.mTime.tv_nsec);
|
/frameworks/base/core/jni/ |
android_view_DisplayEventReceiver.cpp | 71 void dispatchVsync(nsecs_t timestamp, int32_t id, uint32_t count); 72 void dispatchHotplug(nsecs_t timestamp, int32_t id, bool connected); 150 ALOGV("receiver %p ~ Vsync pulse: timestamp=%" PRId64 ", id=%d, count=%d", 173 *outTimestamp = ev.header.timestamp; 178 dispatchHotplug(ev.header.timestamp, ev.header.id, ev.hotplug.connected); 192 void NativeDisplayEventReceiver::dispatchVsync(nsecs_t timestamp, int32_t id, uint32_t count) { 199 gDisplayEventReceiverClassInfo.dispatchVsync, timestamp, id, count); 206 void NativeDisplayEventReceiver::dispatchHotplug(nsecs_t timestamp, int32_t id, bool connected) { 213 gDisplayEventReceiverClassInfo.dispatchHotplug, timestamp, id, connected);
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
InboundSmsTracker.java | 69 * @param timestamp the message timestamp 74 InboundSmsTracker(byte[] pdu, long timestamp, int destPort, boolean is3gpp2, 77 mTimestamp = timestamp; 96 * @param timestamp the message timestamp 105 public InboundSmsTracker(byte[] pdu, long timestamp, int destPort, boolean is3gpp2, 109 mTimestamp = timestamp; 231 StringBuilder builder = new StringBuilder("SmsTracker{timestamp=");
|
/packages/inputmethods/LatinIME/native/jni/src/dictionary/utils/ |
forgetting_curve_utils.cpp | 49 const int timestamp = newHistoricalInfo->getTimestamp(); local 54 return HistoricalInfo(timestamp, level, count); 63 return HistoricalInfo(timestamp, level, 0 /* count */); 66 return HistoricalInfo(timestamp, level, clampToValidCountRange(count, headerPolicy)); 73 return HistoricalInfo(timestamp, 77 return HistoricalInfo(timestamp, 81 return HistoricalInfo(timestamp, originalHistoricalInfo->getLevel(), updatedCount); 154 /* static */ int ForgettingCurveUtils::getElapsedTimeStepCount(const int timestamp, 156 const int elapsedTimeInSeconds = TimeKeeper::peekCurrentTime() - timestamp;
|
/cts/tests/tests/provider/src/android/provider/cts/contacts/ |
DeletedContactUtil.java | 75 * Queries all records after a given timestamp. 80 long timestamp) { 82 String[] args = new String[] {timestamp + ""};
|
/development/testrunner/ |
logger.py | 60 """Returns the log_string prepended with current timestamp """ 66 # timestamp logging disabled 88 """ Enable or disable outputting a timestamp with each log entry"""
|
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/ |
CodeSignerTest.java | 42 private Timestamp ts = new Timestamp(now, cpath); 57 * timestamp can be null
|
/external/apache-http/src/org/apache/http/util/ |
VersionInfo.java | 73 public final static String PROPERTY_TIMESTAMP = "info.timestamp"; 85 /** The timestamp from the version info. */ 147 * Obtains the timestamp of the versioned module or informal unit. 150 * @return the timestamp, never <code>null</code> 295 String timestamp = null; local 307 timestamp = (String) info.get(PROPERTY_TIMESTAMP); 308 if ((timestamp != null) && 309 ((timestamp.length() < 1) || 310 (timestamp.equals("${mvn.timestamp}"))) [all...] |
/external/chromium-trace/trace-viewer/third_party/webapp2/webapp2_extras/ |
securecookie.py | 46 timestamp = str(self._get_timestamp()) 48 signature = self._get_signature(name, value, timestamp) 49 return '|'.join([value, timestamp, signature])
|
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/ |
FileSystemEntry.java | 58 * Return the timestamp Date for the last modification of this file system entry
60 * @return the last modified timestamp Date for this file system entry
65 * Set the timestamp Date for the last modification of this file system entry
|
/frameworks/av/services/camera/libcameraservice/device3/ |
Camera3IOStreamBase.h | 58 // Last received output buffer's timestamp 66 nsecs_t timestamp, 71 nsecs_t timestamp,
|
/frameworks/base/core/java/android/hardware/location/ |
GeofenceHardwareCallback.java | 37 * @param timestamp The timestamp (elapsed real time in milliseconds) when the transition was 42 long timestamp, int monitoringType) {
|
/hardware/intel/common/libmix/mix_video/src/ |
mixvideoframe.c | 42 self->timestamp = 0; 199 this_target->timestamp = this_src->timestamp; 235 && this_first->timestamp == this_second->timestamp 286 MIX_RESULT mix_videoframe_set_timestamp(MixVideoFrame * obj, guint64 timestamp) { 289 obj->timestamp = timestamp; 295 guint64 * timestamp) { 296 MIX_VIDEOFRAME_GETTER_CHECK_INPUT (obj, timestamp); [all...] |
/hardware/intel/img/hwcomposer/merrifield/common/observers/ |
VsyncEventObserver.cpp | 121 int64_t timestamp; local 122 bool ret = mVsyncControl->wait(mDevice, timestamp); 130 mDisplayDevice.onVsync(timestamp);
|
/hardware/intel/img/hwcomposer/moorefield_hdmi/common/observers/ |
VsyncEventObserver.cpp | 121 int64_t timestamp; local 122 bool ret = mVsyncControl->wait(mDevice, timestamp); 130 mDisplayDevice.onVsync(timestamp);
|
/packages/apps/Camera2/src/com/android/camera/burst/ |
RingBuffer.java | 54 long timestamp = image.getTimestamp(); local 55 if (mImages.get(timestamp) != null) { 62 mEvictionHandler.onFrameInserted(timestamp);
|
/packages/apps/Camera2/src/com/android/camera/one/v2/errorhandling/ |
FramerateJankDetector.java | 60 long timestamp = result.get(CaptureResult.SENSOR_TIMESTAMP); local 62 double deltaMillis = (timestamp - mLastFrameTimestamp) / 1000000.0; 79 mLastFrameTimestamp = timestamp;
|
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/testutil/ |
DatabaseAsserts.java | 82 * Asserts that a contact id was deleted, has a delete log, and that log has a timestamp greater 83 * than the given timestamp. 86 * @param start The timestamp that the delete log should be greater than.
|
DeletedContactUtil.java | 70 * Queries all records after a given timestamp. 75 long timestamp) { 77 String[] args = new String[] {timestamp + ""};
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/ |
dbapi2.py | 39 Timestamp = datetime.datetime 48 return Timestamp(*time.localtime(ticks)[:6]) 82 register_converter("timestamp", convert_timestamp)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/ |
dbapi2.py | 39 Timestamp = datetime.datetime 48 return Timestamp(*time.localtime(ticks)[:6]) 82 register_converter("timestamp", convert_timestamp)
|
/frameworks/base/docs/html-intl/intl/ja/distribute/tools/ |
launch-checklist.jd | 73 data-sortorder="-timestamp" data-cardsizes="9x3,9x3,6x3,9x3,9x3,9x3" 93 "-timestamp" data-cardsizes="6x3" data-maxresults="6"> 120 "-timestamp" data-cardsizes="6x3,6x3,6x3,9x3,9x3,9x3" data-maxresults="6"> 169 "-timestamp" data-cardsizes="9x3,6x3,6x3,9x3,9x3,9x3" data-maxresults="6"> 226 "-timestamp" data-cardsizes="9x3,9x3,6x3,9x3,9x3,9x3" data-maxresults="6"> 267 "-timestamp" data-cardsizes="9x3,9x3,6x3,9x3,9x3,9x3" data-maxresults="6"> 298 "-timestamp" data-cardsizes="6x3,6x3,6x3" data-maxresults="6"> 343 "-timestamp" data-cardsizes="9x3,9x3,6x3,9x3,9x3,9x3" data-maxresults="6"> 366 data-sortorder="-timestamp" data-cardsizes="9x3,9x3,6x3,9x3,9x3,9x3" 390 "-timestamp" data-cardsizes="9x3,9x3,9x3,9x3,9x3,9x3" data-maxresults="6" [all...] |
/frameworks/base/docs/html-intl/intl/ko/distribute/tools/ |
launch-checklist.jd | 91 data-sortorder="-timestamp" data-cardsizes="9x3,9x3,6x3,9x3,9x3,9x3" 114 "-timestamp" data-cardsizes="6x3" data-maxresults="6"> 153 "-timestamp" data-cardsizes="6x3,6x3,6x3,9x3,9x3,9x3" data-maxresults="6"> 209 "-timestamp" data-cardsizes="9x3,6x3,6x3,9x3,9x3,9x3" data-maxresults="6"> 274 "-timestamp" data-cardsizes="9x3,9x3,6x3,9x3,9x3,9x3" data-maxresults="6"> 325 "-timestamp" data-cardsizes="9x3,9x3,6x3,9x3,9x3,9x3" data-maxresults="6"> 371 "-timestamp" data-cardsizes="6x3,6x3,6x3" data-maxresults="6"> 428 "-timestamp" data-cardsizes="9x3,9x3,6x3,9x3,9x3,9x3" data-maxresults="6"> 461 data-sortorder="-timestamp" data-cardsizes="9x3,9x3,6x3,9x3,9x3,9x3" 491 "-timestamp" data-cardsizes="9x3,9x3,9x3,9x3,9x3,9x3" data-maxresults="6" [all...] |
/frameworks/base/docs/html-intl/intl/ru/distribute/tools/ |
launch-checklist.jd | 91 data-sortorder="-timestamp" data-cardsizes="9x3,9x3,6x3,9x3,9x3,9x3" 114 "-timestamp" data-cardsizes="6x3" data-maxresults="6"> 153 "-timestamp" data-cardsizes="6x3,6x3,6x3,9x3,9x3,9x3" data-maxresults="6"> 209 "-timestamp" data-cardsizes="9x3,6x3,6x3,9x3,9x3,9x3" data-maxresults="6"> 274 "-timestamp" data-cardsizes="9x3,9x3,6x3,9x3,9x3,9x3" data-maxresults="6"> 325 "-timestamp" data-cardsizes="9x3,9x3,6x3,9x3,9x3,9x3" data-maxresults="6"> 371 "-timestamp" data-cardsizes="6x3,6x3,6x3" data-maxresults="6"> 428 "-timestamp" data-cardsizes="9x3,9x3,6x3,9x3,9x3,9x3" data-maxresults="6"> 461 data-sortorder="-timestamp" data-cardsizes="9x3,9x3,6x3,9x3,9x3,9x3" 491 "-timestamp" data-cardsizes="9x3,9x3,9x3,9x3,9x3,9x3" data-maxresults="6" [all...] |
/frameworks/base/docs/html-intl/intl/zh-cn/distribute/tools/ |
launch-checklist.jd | 91 data-sortorder="-timestamp" data-cardsizes="9x3,9x3,6x3,9x3,9x3,9x3" 114 "-timestamp" data-cardsizes="6x3" data-maxresults="6"> 153 "-timestamp" data-cardsizes="6x3,6x3,6x3,9x3,9x3,9x3" data-maxresults="6"> 209 "-timestamp" data-cardsizes="9x3,6x3,6x3,9x3,9x3,9x3" data-maxresults="6"> 274 "-timestamp" data-cardsizes="9x3,9x3,6x3,9x3,9x3,9x3" data-maxresults="6"> 325 "-timestamp" data-cardsizes="9x3,9x3,6x3,9x3,9x3,9x3" data-maxresults="6"> 371 "-timestamp" data-cardsizes="6x3,6x3,6x3" data-maxresults="6"> 428 "-timestamp" data-cardsizes="9x3,9x3,6x3,9x3,9x3,9x3" data-maxresults="6"> 461 data-sortorder="-timestamp" data-cardsizes="9x3,9x3,6x3,9x3,9x3,9x3" 491 "-timestamp" data-cardsizes="9x3,9x3,9x3,9x3,9x3,9x3" data-maxresults="6" [all...] |