Home
last modified time | relevance | path

Searched refs:newTimestamps (Results 1 – 12 of 12) sorted by relevance

/frameworks/native/libs/gui/
DFrameTimestamps.cpp378 FrameEvents newTimestamps; in addQueue() local
379 newTimestamps.connectId = mCurrentConnectId; in addQueue()
380 newTimestamps.frameNumber = newEntry.frameNumber; in addQueue()
381 newTimestamps.postedTime = newEntry.postedTime; in addQueue()
382 newTimestamps.requestedPresentTime = newEntry.requestedPresentTime; in addQueue()
383 newTimestamps.acquireFence = newEntry.acquireFence; in addQueue()
384 newTimestamps.valid = true; in addQueue()
385 mFrames[mQueueOffset] = newTimestamps; in addQueue()
DBLASTBufferQueue.cpp44 void BLASTBufferItemConsumer::addAndGetFrameTimestamps(const NewFrameEventsEntry* newTimestamps, in addAndGetFrameTimestamps() argument
47 if (newTimestamps) { in addAndGetFrameTimestamps()
50 mCurrentFrameNumber = newTimestamps->frameNumber; in addAndGetFrameTimestamps()
51 mFrameEventHistory.addQueue(*newTimestamps); in addAndGetFrameTimestamps()
DBufferQueue.cpp98 const NewFrameEventsEntry* newTimestamps, in addAndGetFrameTimestamps() argument
102 listener->addAndGetFrameTimestamps(newTimestamps, outDelta); in addAndGetFrameTimestamps()
DBufferQueueProducer.cpp1629 const NewFrameEventsEntry* newTimestamps, in addAndGetFrameTimestamps() argument
1631 if (newTimestamps == nullptr && outDelta == nullptr) { in addAndGetFrameTimestamps()
1643 listener->addAndGetFrameTimestamps(newTimestamps, outDelta); in addAndGetFrameTimestamps()
/frameworks/native/libs/gui/include/gui/
DBufferQueue.h70 const NewFrameEventsEntry* newTimestamps,
DBLASTBufferQueue.h45 void addAndGetFrameTimestamps(const NewFrameEventsEntry* newTimestamps,
DBufferQueueProducer.h213 void addAndGetFrameTimestamps(const NewFrameEventsEntry* newTimestamps,
/frameworks/native/services/surfaceflinger/
DBufferLayerConsumer.h248 void addAndGetFrameTimestamps(const NewFrameEventsEntry* newTimestamps,
DBufferLayerConsumer.cpp494 void BufferLayerConsumer::addAndGetFrameTimestamps(const NewFrameEventsEntry* newTimestamps, in addAndGetFrameTimestamps() argument
503 mLayer->addAndGetFrameTimestamps(newTimestamps, outDelta); in addAndGetFrameTimestamps()
DLayer.cpp1681 void Layer::addAndGetFrameTimestamps(const NewFrameEventsEntry* newTimestamps, in addAndGetFrameTimestamps() argument
1683 if (newTimestamps) { in addAndGetFrameTimestamps()
1684 mFlinger->mTimeStats->setPostTime(getSequence(), newTimestamps->frameNumber, in addAndGetFrameTimestamps()
1685 getName().c_str(), newTimestamps->postedTime); in addAndGetFrameTimestamps()
1686 mFlinger->mTimeStats->setAcquireFence(getSequence(), newTimestamps->frameNumber, in addAndGetFrameTimestamps()
1687 newTimestamps->acquireFence); in addAndGetFrameTimestamps()
1691 if (newTimestamps) { in addAndGetFrameTimestamps()
1698 mAcquireTimeline.push(newTimestamps->acquireFence); in addAndGetFrameTimestamps()
1699 mFrameEventHistory.addQueue(*newTimestamps); in addAndGetFrameTimestamps()
DBufferStateLayer.cpp252 NewFrameEventsEntry newTimestamps = {mCurrentState.frameNumber, postedTime, desiredPresentTime, in addFrameEvent() local
255 mFrameEventHistory.addQueue(newTimestamps); in addFrameEvent()
/frameworks/native/libs/gui/tests/
DSurface_test.cpp631 const NewFrameEventsEntry* newTimestamps, in addAndGetFrameTimestamps() argument
633 if (newTimestamps) { in addAndGetFrameTimestamps()
638 EXPECT_EQ(newTimestamps->frameNumber, in addAndGetFrameTimestamps()
646 mLastAddedFrameNumber = newTimestamps->frameNumber; in addAndGetFrameTimestamps()