/aosp12/frameworks/native/services/surfaceflinger/tests/unittests/ |
H A D | TransactionApplicationTest.cpp | 99 bool isAutoTimestamp = true; member 117 int64_t desiredPresentTime, bool isAutoTimestamp, in setupSingle() argument 123 transaction.isAutoTimestamp = isAutoTimestamp; in setupSingle() 139 transaction.desiredPresentTime, transaction.isAutoTimestamp, in NotPlacedOnTransactionQueue() 173 transaction.desiredPresentTime, transaction.isAutoTimestamp, in PlaceOnTransactionQueue() 213 transactionA.desiredPresentTime, transactionA.isAutoTimestamp, in BlockedByPriorTransaction() 228 transactionB.desiredPresentTime, transactionB.isAutoTimestamp, in BlockedByPriorTransaction() 267 transactionA.isAutoTimestamp, transactionA.uncacheBuffer, in TEST_F() 283 empty.desiredPresentTime, empty.isAutoTimestamp, in TEST_F()
|
H A D | TestableSurfaceFlinger.h | 377 bool isAutoTimestamp, const client_cache_t& uncacheBuffer, bool hasListenerCallbacks, in setTransactionState() argument 381 isAutoTimestamp, uncacheBuffer, hasListenerCallbacks, in setTransactionState()
|
/aosp12/frameworks/native/services/surfaceflinger/ |
H A D | BufferStateLayer.cpp | 416 nsecs_t desiredPresentTime, bool isAutoTimestamp, in setBuffer() argument 456 mDrawingState.isAutoTimestamp = isAutoTimestamp; in setBuffer() 459 if (!isAutoTimestamp) return desiredPresentTime; in setBuffer() 470 addFrameEvent(acquireFence, postTime, isAutoTimestamp ? 0 : desiredPresentTime); in setBuffer() 657 return mDrawingState.isAutoTimestamp || mDrawingState.desiredPresentTime <= expectedPresentTime; in framePresentTimeIsCurrent()
|
H A D | SurfaceFlinger.h | 348 int64_t desiredPresentTime, bool isAutoTimestamp, int64_t postTime, 522 bool isAutoTimestamp, const client_cache_t& uncacheBuffer, in TransactionState() 533 isAutoTimestamp(isAutoTimestamp), in TransactionState() 552 const bool isAutoTimestamp; member 623 int64_t desiredPresentTime, bool isAutoTimestamp, 837 const int64_t desiredPresentTime, bool isAutoTimestamp, 861 const FrameTimelineInfo& info, bool isAutoTimestamp, int64_t desiredPresentTime,
|
H A D | BufferStateLayer.h | 60 bool isAutoTimestamp, const client_cache_t& clientCacheId, uint64_t frameNumber,
|
H A D | SurfaceFlinger.cpp | 3487 transaction.isAutoTimestamp, in flushTransactionQueues() 3519 transaction.isAutoTimestamp, in flushTransactionQueues() 3540 transaction.isAutoTimestamp, transaction.buffer, in flushTransactionQueues() 3580 const FrameTimelineInfo& info, bool isAutoTimestamp, int64_t desiredPresentTime, in transactionIsReadyToBeApplied() argument 3588 if (!isAutoTimestamp && desiredPresentTime >= expectedPresentTime && in transactionIsReadyToBeApplied() 3601 if (isAutoTimestamp && frameIsEarly(expectedPresentTime, info.vsyncId)) { in transactionIsReadyToBeApplied() 3633 if (layer->backpressureEnabled() && hasPendingBuffer && isAutoTimestamp) { in transactionIsReadyToBeApplied() 3707 bool isAutoTimestamp, const client_cache_t& uncacheBuffer, bool hasListenerCallbacks, in setTransactionState() argument 3734 desiredPresentTime, isAutoTimestamp, in setTransactionState() 3786 isAutoTimestamp ? 0 : desiredPresentTime, in applyTransactionState() [all …]
|
H A D | Layer.h | 229 bool isAutoTimestamp = true; member
|
/aosp12/frameworks/native/libs/gui/include/gui/ |
H A D | IGraphicBufferProducer.h | 319 : timestamp(_timestamp), isAutoTimestamp(_isAutoTimestamp), 335 *outIsAutoTimestamp = bool(isAutoTimestamp); 366 int isAutoTimestamp{0};
|
H A D | ISurfaceComposer.h | 168 bool isAutoTimestamp, const client_cache_t& uncacheBuffer, bool hasListenerCallbacks,
|
/aosp12/frameworks/native/libs/gui/tests/ |
H A D | IGraphicBufferProducer_test.cpp | 156 isAutoTimestamp = QUEUE_BUFFER_INPUT_IS_AUTO_TIMESTAMP; in QueueBufferInputBuilder() 170 isAutoTimestamp, in build() 186 QueueBufferInputBuilder& setIsAutoTimestamp(bool isAutoTimestamp) { in setIsAutoTimestamp() 187 this->isAutoTimestamp = isAutoTimestamp; in setIsAutoTimestamp() 233 bool isAutoTimestamp; member
|
H A D | BufferQueue_test.cpp | 77 bool isAutoTimestamp; in testBufferItem() local 84 input.deflate(×tamp, &isAutoTimestamp, &dataSpace, &crop, in testBufferItem() 87 ASSERT_EQ(isAutoTimestamp, item.mIsAutoTimestamp); in testBufferItem()
|
/aosp12/frameworks/native/libs/gui/ |
H A D | IGraphicBufferProducerFlattenables.cpp | 24 sizeof(isAutoTimestamp) + in minFlattenedSize() 53 FlattenableUtils::write(buffer, size, isAutoTimestamp); in flatten() 87 FlattenableUtils::read(buffer, size, isAutoTimestamp); in unflatten()
|
H A D | ISurfaceComposer.cpp | 72 int64_t desiredPresentTime, bool isAutoTimestamp, in setTransactionState() argument 95 SAFE_PARCEL(data.writeBool, isAutoTimestamp); in setTransactionState() 1311 bool isAutoTimestamp = true; in onTransact() local 1313 SAFE_PARCEL(data.readBool, &isAutoTimestamp); in onTransact() 1338 inputWindowCommands, desiredPresentTime, isAutoTimestamp, in onTransact()
|
H A D | BufferQueueProducer.cpp | 810 bool isAutoTimestamp; in queueBuffer() local 818 input.deflate(&requestedPresentTimestamp, &isAutoTimestamp, &dataSpace, in queueBuffer() 922 item.mIsAutoTimestamp = isAutoTimestamp; in queueBuffer()
|
H A D | Surface.cpp | 1012 bool isAutoTimestamp = false; in getQueueBufferInputLocked() local 1016 isAutoTimestamp = true; in getQueueBufferInputLocked() 1026 IGraphicBufferProducer::QueueBufferInput input(timestamp, isAutoTimestamp, in getQueueBufferInputLocked()
|
H A D | SurfaceComposerClient.cpp | 575 const bool isAutoTimestamp = parcel->readBool(); in readFromParcel() local 653 mIsAutoTimestamp = isAutoTimestamp; in readFromParcel()
|
/aosp12/frameworks/native/libs/gui/bufferqueue/2.0/ |
H A D | H2BGraphicBufferProducer.cpp | 55 to->isAutoTimestamp = static_cast<bool>(from.isAutoTimestamp); in b2h()
|
H A D | B2HGraphicBufferProducer.cpp | 191 hInput.isAutoTimestamp, in queueBuffer()
|
/aosp12/frameworks/native/services/surfaceflinger/DisplayHardware/ |
H A D | VirtualDisplaySurface.cpp | 513 bool isAutoTimestamp; in queueBuffer() local 518 input.deflate(×tamp, &isAutoTimestamp, &dataSpace, &crop, in queueBuffer()
|
/aosp12/frameworks/native/libs/vr/libbufferhubqueue/tests/ |
H A D | buffer_hub_queue_producer-test.cpp | 47 QueueBufferInputBuilder& setIsAutoTimestamp(bool isAutoTimestamp) { in setIsAutoTimestamp() 48 this->mIsAutoTimestamp = isAutoTimestamp; in setIsAutoTimestamp()
|
/aosp12/frameworks/native/libs/gui/bufferqueue/1.0/ |
H A D | Conversion.cpp | 1247 FlattenableUtils::write(buffer, size, static_cast<int>(t.isAutoTimestamp)); in flatten() 1301 t->isAutoTimestamp = static_cast<int32_t>(lIsAutoTimestamp); in unflatten()
|
H A D | H2BGraphicBufferProducer.cpp | 495 t->isAutoTimestamp = static_cast<int32_t>(lIsAutoTimestamp); in unflatten()
|
/aosp12/hardware/interfaces/graphics/bufferqueue/2.0/ |
H A D | IGraphicBufferProducer.hal | 323 bool isAutoTimestamp;
|
/aosp12/hardware/interfaces/graphics/bufferqueue/1.0/ |
H A D | IGraphicBufferProducer.hal | 121 int32_t isAutoTimestamp;
|
/aosp12/hardware/interfaces/media/omx/1.0/vts/functional/video/ |
H A D | VtsHalMediaOmxV1_0TargetVideoEncTest.cpp | 770 input.isAutoTimestamp = false; in dispatchGraphicBuffer()
|