/hardware/interfaces/graphics/composer/2.4/utils/vts/ |
D | ComposerVts.cpp | 31 std::unique_ptr<ComposerClient> Composer::createClient() { in createClient() 32 std::unique_ptr<ComposerClient> client; in createClient() 35 client = std::make_unique<ComposerClient>(tmpClient); in createClient() 41 sp<IComposerClient> ComposerClient::getRaw() const { in getRaw() 45 Error ComposerClient::getDisplayCapabilities( in getDisplayCapabilities() 56 Error ComposerClient::getDisplayConnectionType(Display display, in getDisplayConnectionType() 66 int32_t ComposerClient::getDisplayAttribute_2_4( in getDisplayAttribute_2_4() 80 void ComposerClient::registerCallback_2_4(const sp<IComposerCallback>& callback) { in registerCallback_2_4() 84 Error ComposerClient::getDisplayVsyncPeriod(Display display, VsyncPeriodNanos* outVsyncPeriod) { in getDisplayVsyncPeriod() 93 Error ComposerClient::setActiveConfigWithConstraints( in setActiveConfigWithConstraints() [all …]
|
/hardware/interfaces/graphics/composer/2.3/utils/vts/ |
D | ComposerVts.cpp | 31 std::unique_ptr<ComposerClient> Composer::createClient() { in createClient() 32 std::unique_ptr<ComposerClient> client; in createClient() 35 client = std::make_unique<ComposerClient>(tmpClient); in createClient() 41 sp<IComposerClient> ComposerClient::getRaw() const { in getRaw() 45 bool ComposerClient::getDisplayIdentificationData(Display display, uint8_t* outPort, in getDisplayIdentificationData() 64 std::vector<ColorMode> ComposerClient::getColorModes_2_3(Display display) { in getColorModes_2_3() 73 void ComposerClient::setColorMode_2_3(Display display, ColorMode mode, RenderIntent intent) { in setColorMode_2_3() 78 std::vector<RenderIntent> ComposerClient::getRenderIntents_2_3(Display display, ColorMode mode) { in getRenderIntents_2_3() 87 void ComposerClient::getReadbackBufferAttributes_2_3(Display display, PixelFormat* outPixelFormat, in getReadbackBufferAttributes_2_3() 98 bool ComposerClient::getClientTargetSupport_2_3(Display display, uint32_t width, uint32_t height, in getClientTargetSupport_2_3() [all …]
|
/hardware/interfaces/graphics/composer/2.1/utils/vts/ |
D | ComposerVts.cpp | 59 std::unique_ptr<ComposerClient> Composer::createClient() { in createClient() 60 std::unique_ptr<ComposerClient> client; in createClient() 63 client = std::make_unique<ComposerClient>(tmpClient); in createClient() 69 ComposerClient::ComposerClient(const sp<IComposerClient>& client) : mClient(client) {} in ComposerClient() function in android::hardware::graphics::composer::V2_1::vts::ComposerClient 71 ComposerClient::~ComposerClient() { in ~ComposerClient() 89 sp<IComposerClient> ComposerClient::getRaw() const { in getRaw() 93 void ComposerClient::registerCallback(const sp<IComposerCallback>& callback) { in registerCallback() 97 uint32_t ComposerClient::getMaxVirtualDisplayCount() { in getMaxVirtualDisplayCount() 101 Display ComposerClient::createVirtualDisplay(uint32_t width, uint32_t height, in createVirtualDisplay() 119 void ComposerClient::destroyVirtualDisplay(Display display) { in destroyVirtualDisplay() [all …]
|
/hardware/interfaces/graphics/composer/2.2/utils/vts/ |
D | ComposerVts.cpp | 32 std::unique_ptr<ComposerClient> Composer::createClient() { in createClient() 33 std::unique_ptr<ComposerClient> client; in createClient() 40 client = std::make_unique<ComposerClient>(IComposerClient::castFrom(tmpClient, true)); in createClient() 46 sp<IComposerClient> ComposerClient::getRaw() const { in getRaw() 50 std::vector<IComposerClient::PerFrameMetadataKey> ComposerClient::getPerFrameMetadataKeys( in getPerFrameMetadataKeys() 61 void ComposerClient::execute(V2_1::vts::TestCommandReader* reader, CommandWriterBase* writer) { in execute() 92 Display ComposerClient::createVirtualDisplay_2_2(uint32_t width, uint32_t height, in createVirtualDisplay_2_2() 111 bool ComposerClient::getClientTargetSupport_2_2(Display display, uint32_t width, uint32_t height, in getClientTargetSupport_2_2() 117 void ComposerClient::setPowerMode_2_2(Display display, IComposerClient::PowerMode mode) { in setPowerMode_2_2() 122 void ComposerClient::setReadbackBuffer(Display display, const native_handle_t* buffer, in setReadbackBuffer() [all …]
|
D | ReadbackVts.cpp | 188 ReadbackBuffer::ReadbackBuffer(Display display, const std::shared_ptr<ComposerClient>& client, in ReadbackBuffer() 252 TestBufferLayer::TestBufferLayer(const std::shared_ptr<ComposerClient>& client, in TestBufferLayer()
|
/hardware/interfaces/graphics/composer/2.4/utils/vts/include/composer-vts/2.4/ |
D | ComposerVts.h | 47 class ComposerClient; variable 56 std::unique_ptr<ComposerClient> createClient(); 63 class ComposerClient : public V2_3::vts::ComposerClient { 65 explicit ComposerClient(const sp<IComposerClient>& client) in ComposerClient() function 66 : V2_3::vts::ComposerClient(client), mClient(client) {} in ComposerClient()
|
/hardware/interfaces/graphics/composer/2.3/utils/vts/include/composer-vts/2.3/ |
D | ComposerVts.h | 44 class ComposerClient; variable 53 std::unique_ptr<ComposerClient> createClient(); 60 class ComposerClient : public V2_2::vts::ComposerClient { 62 explicit ComposerClient(const sp<IComposerClient>& client) in ComposerClient() function 63 : V2_2::vts::ComposerClient(client), mClient(client) {} in ComposerClient()
|
/hardware/interfaces/graphics/composer/2.2/utils/vts/include/composer-vts/2.2/ |
D | ComposerVts.h | 52 class ComposerClient; variable 59 std::unique_ptr<ComposerClient> createClient(); 63 class ComposerClient : public V2_1::vts::ComposerClient { 65 explicit ComposerClient(const sp<IComposerClient>& client) in ComposerClient() function 66 : V2_1::vts::ComposerClient(client), mClient(client) {} in ComposerClient()
|
D | ReadbackVts.h | 59 TestLayer(const std::shared_ptr<ComposerClient>& client, Display display) in TestLayer() 95 std::shared_ptr<ComposerClient> const mComposerClient; 100 TestColorLayer(const std::shared_ptr<ComposerClient>& client, Display display) in TestColorLayer() 116 const std::shared_ptr<ComposerClient>& client, const std::shared_ptr<Gralloc>& gralloc, 182 ReadbackBuffer(Display display, const std::shared_ptr<ComposerClient>& client, 203 std::shared_ptr<ComposerClient> mComposerClient;
|
/hardware/interfaces/graphics/composer/2.1/utils/vts/include/composer-vts/2.1/ |
D | ComposerVts.h | 53 class ComposerClient; variable 69 std::unique_ptr<ComposerClient> createClient(); 78 class ComposerClient { 80 explicit ComposerClient(const sp<IComposerClient>& client); 81 ~ComposerClient();
|
/hardware/interfaces/graphics/composer/2.3/utils/hal/include/composer-hal/2.3/ |
D | Composer.h | 55 sp<ComposerClient> client = ComposerClient::create(mHal.get()).release(); in createClient_2_3()
|
D | ComposerClient.h | 203 using ComposerClient = detail::ComposerClientImpl<IComposerClient, ComposerHal>; variable
|
/hardware/interfaces/graphics/composer/2.4/utils/hal/include/composer-hal/2.4/ |
D | Composer.h | 55 sp<ComposerClient> client = ComposerClient::create(mHal.get()).release(); in createClient_2_4()
|
D | ComposerClient.h | 207 using ComposerClient = detail::ComposerClientImpl<IComposerClient, ComposerHal>; variable
|
/hardware/interfaces/graphics/composer/2.2/utils/hal/include/composer-hal/2.2/ |
D | Composer.h | 48 auto client = ComposerClient::create(mHal.get()); in createClient()
|
D | ComposerClient.h | 223 using ComposerClient = detail::ComposerClientImpl<IComposerClient, ComposerHal>; variable
|
/hardware/interfaces/graphics/composer/2.1/utils/hal/include/composer-hal/2.1/ |
D | Composer.h | 136 auto client = ComposerClient::create(mHal.get()); in createClient()
|
D | ComposerClient.h | 451 using ComposerClient = detail::ComposerClientImpl<IComposerClient, ComposerHal>; variable
|
/hardware/interfaces/graphics/composer/2.2/vts/functional/ |
D | VtsHalGraphicsComposerV2_2TargetTest.cpp | 111 std::unique_ptr<ComposerClient> mComposerClient;
|
D | VtsHalGraphicsComposerV2_2ReadbackTest.cpp | 137 std::shared_ptr<ComposerClient> mComposerClient;
|
/hardware/interfaces/graphics/composer/2.3/vts/functional/ |
D | VtsHalGraphicsComposerV2_3TargetTest.cpp | 103 std::unique_ptr<ComposerClient> mComposerClient;
|
/hardware/interfaces/graphics/composer/2.4/vts/functional/ |
D | VtsHalGraphicsComposerV2_4TargetTest.cpp | 180 std::unique_ptr<ComposerClient> mComposerClient;
|
/hardware/interfaces/graphics/composer/2.1/vts/functional/ |
D | VtsHalGraphicsComposerV2_1TargetTest.cpp | 111 std::unique_ptr<ComposerClient> mComposerClient;
|