Searched refs:timebase (Results 1 – 11 of 11) sorted by relevance
/frameworks/av/include/media/ |
D | AudioTimestamp.h | 103 int64_t *position, int64_t *time, int timebase, Location *location = nullptr) const { 105 || timebase < 0 || timebase >= TIMEBASE_MAX) { 114 *time = mTimeNs[i] + mTimebaseOffset[timebase];
|
/frameworks/av/media/libaudioclient/include/media/ |
D | AudioTimestamp.h | 103 int64_t *position, int64_t *time, int timebase, Location *location = nullptr) const { 105 || timebase < 0 || timebase >= TIMEBASE_MAX) { 114 *time = mTimeNs[i] + mTimebaseOffset[timebase];
|
/frameworks/av/media/libaaudio/src/legacy/ |
D | AudioStreamLegacy.cpp | 177 int timebase; in getBestTimestamp() local 180 timebase = ExtendedTimestamp::TIMEBASE_BOOTTIME; in getBestTimestamp() 183 timebase = ExtendedTimestamp::TIMEBASE_MONOTONIC; in getBestTimestamp() 193 timebase, &location); in getBestTimestamp()
|
/frameworks/base/tools/velocityplot/ |
D | velocityplot.py | 121 self.timebase = None 193 if self.timebase is None: 194 self.timebase = timestamp 195 delta = timestamp - self.timebase 217 self.timebase += timedelta(seconds=bottom)
|
/frameworks/base/tools/orientationplot/ |
D | orientationplot.py | 186 self.timebase = None 279 if self.timebase is None: 280 self.timebase = timestamp 281 delta = timestamp - self.timebase 341 self.timebase += timedelta(seconds=bottom)
|
/frameworks/base/core/proto/android/server/ |
D | alarmmanagerservice.proto | 111 // In the 'elapsed' timebase. 114 // Time when the next while-idle is allowed, in the 'elapsed' timebase. 166 // How long until the alarm goes off, in the 'elapsed' timebase. Can be 261 // triggered. Times are in the 'elapsed' timebase.
|
D | jobscheduler.proto | 507 // The time at which the alarm should go off, in the elapsed realtime timebase. Only 518 // elapsed realtime timebase. 551 // in the elapsed realtime timebase. 563 // invalid, in the elapsed realtime timebase.
|
D | powermanagerservice.proto | 382 // using elapsed realtime as the timebase.
|
/frameworks/base/media/java/android/media/ |
D | AudioRecord.java | 993 @AudioTimestamp.Timebase int timebase) in getTimestamp() argument 996 (timebase != AudioTimestamp.TIMEBASE_BOOTTIME in getTimestamp() 997 && timebase != AudioTimestamp.TIMEBASE_MONOTONIC)) { in getTimestamp() 1000 return native_get_timestamp(outTimestamp, timebase); in getTimestamp() 1969 @AudioTimestamp.Timebase int timebase); in native_get_timestamp() argument
|
/frameworks/base/core/jni/ |
D | android_media_AudioRecord.cpp | 724 jobject timestamp, jint timebase) { in android_media_AudioRecord_get_timestamp() argument 740 status = nativeToJavaStatus(ts.getBestTimestamp(&position, &time, timebase)); in android_media_AudioRecord_get_timestamp()
|
/frameworks/av/services/audioflinger/ |
D | Threads.cpp | 288 static void adjustTimebaseOffset(int64_t *offset, ExtendedTimestamp::Timebase timebase) { in adjustTimebaseOffset() 290 switch (timebase) { in adjustTimebaseOffset() 295 LOG_ALWAYS_FATAL("invalid timebase %d", timebase); in adjustTimebaseOffset()
|