Searched defs:frameTime (Results 1 - 5 of 5) sorted by relevance

/frameworks/av/media/libstagefright/
H A DCameraSourceTimeLapse.cpp182 int64_t frameTime,
192 (*newBuffer)->meta_data()->setInt64(kKeyTime, frameTime);
197 int64_t frameTime; local
198 CHECK(sourceBuffer.meta_data()->findInt64(kKeyTime, &frameTime));
199 createMediaBufferCopy(sourceBuffer, frameTime, &mLastReadBufferCopy);
180 createMediaBufferCopy( const MediaBuffer& sourceBuffer, int64_t frameTime, MediaBuffer **newBuffer) argument
H A DCameraSource.cpp819 int64_t frameTime; local
842 frameTime = *mFrameTimes.begin();
848 (*buffer)->meta_data()->setInt64(kKeyTime, frameTime);
/frameworks/base/core/jni/
H A Dandroid_view_InputEventReceiver.cpp59 status_t consumeEvents(JNIEnv* env, bool consumeBatches, nsecs_t frameTime,
218 bool consumeBatches, nsecs_t frameTime, bool* outConsumedBatch) {
220 ALOGD("channel '%s' ~ Consuming input events, consumeBatches=%s, frameTime=%lld.",
221 getInputChannelName(), consumeBatches ? "true" : "false", frameTime);
237 consumeBatches, frameTime, &seq, &inputEvent);
217 consumeEvents(JNIEnv* env, bool consumeBatches, nsecs_t frameTime, bool* outConsumedBatch) argument
/frameworks/base/core/java/android/animation/
H A DValueAnimator.java666 private void doAnimationFrame(long frameTime) { argument
692 if (anim.delayedAnimationFrame(frameTime)) {
715 if (mAnimations.contains(anim) && anim.doAnimationFrame(frameTime)) {
1308 * @param frameTime The frame time.
1311 final boolean doAnimationFrame(long frameTime) { argument
1315 mStartTime = frameTime;
1318 mStartTime = frameTime - seekTime;
1324 mPauseTime = frameTime;
1331 mStartTime += (frameTime - mPauseTime);
1338 final long currentTime = Math.max(frameTime, mStartTim
[all...]
/frameworks/native/libs/input/
H A DInputTransport.cpp394 bool consumeBatches, nsecs_t frameTime, uint32_t* outSeq, InputEvent** outEvent) {
396 ALOGD("channel '%s' consumer ~ consume: consumeBatches=%s, frameTime=%lld",
397 mChannel->getName().string(), consumeBatches ? "true" : "false", frameTime);
416 result = consumeBatch(factory, frameTime, outSeq, outEvent);
511 nsecs_t frameTime, uint32_t* outSeq, InputEvent** outEvent) {
515 if (frameTime < 0) {
522 nsecs_t sampleTime = frameTime;
393 consume(InputEventFactoryInterface* factory, bool consumeBatches, nsecs_t frameTime, uint32_t* outSeq, InputEvent** outEvent) argument
510 consumeBatch(InputEventFactoryInterface* factory, nsecs_t frameTime, uint32_t* outSeq, InputEvent** outEvent) argument

Completed in 1148 milliseconds