/frameworks/native/services/surfaceflinger/tests/unittests/ |
D | LayerHistoryTest.cpp | 49 mLayerHistory->createLayer("TestLayer", MIN_REFRESH_RATE, MAX_REFRESH_RATE); in TEST_F() 67 mLayerHistory->createLayer("TestHDRLayer", MIN_REFRESH_RATE, MAX_REFRESH_RATE); in TEST_F() 81 mLayerHistory->createLayer("30FpsLayer", MIN_REFRESH_RATE, MAX_REFRESH_RATE); in TEST_F() 95 mLayerHistory->createLayer("TestLayer", MIN_REFRESH_RATE, MAX_REFRESH_RATE); in TEST_F() 98 mLayerHistory->createLayer("30FpsLayer", MIN_REFRESH_RATE, MAX_REFRESH_RATE); in TEST_F() 101 mLayerHistory->createLayer("TestLayer2", MIN_REFRESH_RATE, MAX_REFRESH_RATE); in TEST_F()
|
D | CompositionTest.cpp | 760 static FlingerLayerType createLayer(CompositionTest*) { return FlingerLayerType(); } in createLayer() function 793 EXPECT_CALL(*test->mComposer, createLayer(HWC_DISPLAY, _)) in injectLayer() 827 static FlingerLayerType createLayer(CompositionTest* test) { in createLayer() function 864 static FlingerLayerType createLayer(CompositionTest* test) { in createLayer() function 1051 auto layer = Layer::createLayer(test); in setupCommon()
|
/frameworks/native/services/surfaceflinger/tests/ |
D | Transaction_test.cpp | 357 virtual sp<SurfaceControl> createLayer(const sp<SurfaceComposerClient>& client, in createLayer() function in android::LayerTransactionTest 384 virtual sp<SurfaceControl> createLayer(const char* name, uint32_t width, uint32_t height, in createLayer() function in android::LayerTransactionTest 387 return createLayer(mClient, name, width, height, flags, parent, format); in createLayer() 647 sp<SurfaceControl> createLayer(const char* name, uint32_t width, uint32_t height, in createLayer() function in android::LayerTypeTransactionHarness 654 return LayerTransactionTest::createLayer(name, width, height, flags | mLayerType, parent, in createLayer() 743 ASSERT_NO_FATAL_FAILURE(layer = createLayer("test", 32, 32)); in TEST_P() 766 ASSERT_NO_FATAL_FAILURE(layer = createLayer("test", 32, 32)); in TEST_P() 788 ASSERT_NO_FATAL_FAILURE(layer = createLayer("test", 32, 32)); in TEST_P() 806 ASSERT_NO_FATAL_FAILURE(layer = createLayer("test", 32, 32)); in TEST_P() 827 ASSERT_NO_FATAL_FAILURE(layer = createLayer("test", 32, 32)); in TEST_P() [all …]
|
/frameworks/native/services/surfaceflinger/ |
D | RefreshRateOverlay.cpp | 27 createLayer(); in RefreshRateOverlay() 30 bool RefreshRateOverlay::createLayer() { in createLayer() function in android::RefreshRateOverlay 32 mFlinger.createLayer(String8("RefreshRateOverlay"), mClient, 0, 0, in createLayer()
|
D | Client.cpp | 80 return mFlinger->createLayer(name, this, w, h, format, flags, std::move(metadata), handle, gbp, in createSurface() 100 return mFlinger->createLayer(name, this, w, h, format, flags, std::move(metadata), handle, gbp, in createWithSurfaceParent()
|
D | RefreshRateOverlay.h | 31 bool createLayer();
|
D | ColorLayer.cpp | 46 mCompositionLayer{mFlinger->getCompositionEngine().createLayer( in ColorLayer()
|
/frameworks/native/services/surfaceflinger/CompositionEngine/src/ |
D | CompositionEngine.cpp | 42 std::shared_ptr<compositionengine::Layer> CompositionEngine::createLayer(LayerCreationArgs&& args) { in createLayer() function in android::compositionengine::impl::CompositionEngine 43 return compositionengine::impl::createLayer(*this, std::move(args)); in createLayer()
|
D | Layer.cpp | 29 std::shared_ptr<compositionengine::Layer> createLayer( in createLayer() function
|
D | OutputLayer.cpp | 69 mState.hwc.emplace(std::shared_ptr<HWC2::Layer>(hwc.createLayer(*displayId), in initialize()
|
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/mock/ |
D | CompositionEngine.h | 35 MOCK_METHOD1(createLayer, std::shared_ptr<Layer>(LayerCreationArgs&&));
|
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/ |
D | CompositionEngine.h | 47 virtual std::shared_ptr<Layer> createLayer(LayerCreationArgs&&) = 0;
|
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/impl/ |
D | Layer.h | 56 std::shared_ptr<compositionengine::Layer> createLayer(const compositionengine::CompositionEngine&,
|
D | CompositionEngine.h | 30 std::shared_ptr<compositionengine::Layer> createLayer(
|
/frameworks/native/services/surfaceflinger/Scheduler/ |
D | LayerHistory.h | 56 std::unique_ptr<LayerHandle> createLayer(const std::string name, float minRefreshRate,
|
D | LayerHistory.cpp | 48 std::unique_ptr<LayerHistory::LayerHandle> LayerHistory::createLayer(const std::string name, in createLayer() function in android::scheduler::LayerHistory
|
/frameworks/native/services/surfaceflinger/tests/unittests/mock/DisplayHardware/ |
D | MockDisplay.h | 41 MOCK_METHOD1(createLayer, Error(Layer**));
|
D | MockComposer.h | 62 MOCK_METHOD2(createLayer, Error(Display, Layer* outLayer));
|
/frameworks/native/services/surfaceflinger/CompositionEngine/tests/ |
D | MockHWComposer.h | 41 MOCK_METHOD1(createLayer, HWC2::Layer*(DisplayId));
|
D | OutputLayerTest.cpp | 94 EXPECT_CALL(hwc, createLayer(DEFAULT_DISPLAY_ID)).WillOnce(Return(&hwcLayer)); in TEST_F()
|
/frameworks/native/services/surfaceflinger/DisplayHardware/ |
D | HWComposer.h | 70 virtual HWC2::Layer* createLayer(DisplayId displayId) = 0; 209 HWC2::Layer* createLayer(DisplayId displayId) override;
|
D | HWC2.h | 207 [[clang::warn_unused_result]] virtual Error createLayer(Layer** outLayer) = 0; 279 Error createLayer(Layer** outLayer) override;
|
D | ComposerHal.h | 100 virtual Error createLayer(Display display, Layer* outLayer) = 0; 317 Error createLayer(Display display, Layer* outLayer) override;
|
/frameworks/native/services/surfaceflinger/tests/fakehwc/ |
D | FakeComposerClient.h | 72 Error createLayer(Display display, Layer* outLayer) override;
|
/frameworks/native/services/surfaceflinger/tests/hwc2/ |
D | Hwc2Test.cpp | 144 void createLayer(hwc2_display_t display, hwc2_layer_t* outLayer, in createLayer() function in Hwc2Test 1144 EXPECT_NO_FATAL_FAILURE(createLayer(display, &layer, &err)); in createLayers() 1263 ASSERT_NO_FATAL_FAILURE(createLayer(display, &layer)); in setLayerProperty() 1294 ASSERT_NO_FATAL_FAILURE(createLayer(display, &layer)); in setLayerPropertyUpdate() 1370 ASSERT_NO_FATAL_FAILURE(createLayer(display, &layer)); in setLayerPropertyBadLayer() 1401 ASSERT_NO_FATAL_FAILURE(createLayer(display, &layer)); in setLayerPropertyBadParameter() 2325 ASSERT_NO_FATAL_FAILURE(createLayer(display, &layer)); in TEST_F() 2340 ASSERT_NO_FATAL_FAILURE(createLayer(display, &layer, &err)); in TEST_F() 2373 ASSERT_NO_FATAL_FAILURE(createLayer(display, &layer)); in TEST_F() 2404 ASSERT_NO_FATAL_FAILURE(createLayer(display, &layer)); in TEST_F() [all …]
|