Lines Matching refs:InputSurface
66 class InputSurface { class
68 InputSurface(const sp<SurfaceControl> &sc, int width, int height) { in InputSurface() function in android::test::InputSurface
82 static std::unique_ptr<InputSurface> makeColorInputSurface(const sp<SurfaceComposerClient> &scc, in makeColorInputSurface()
87 return std::make_unique<InputSurface>(surfaceControl, width, height); in makeColorInputSurface()
90 static std::unique_ptr<InputSurface> makeBufferInputSurface( in makeBufferInputSurface()
95 return std::make_unique<InputSurface>(surfaceControl, width, height); in makeBufferInputSurface()
98 static std::unique_ptr<InputSurface> makeContainerInputSurface( in makeContainerInputSurface()
104 return std::make_unique<InputSurface>(surfaceControl, width, height); in makeContainerInputSurface()
136 ~InputSurface() { in ~InputSurface()
231 std::unique_ptr<InputSurface> makeSurface(int width, int height) { in makeSurface()
232 return InputSurface::makeColorInputSurface(mComposerClient, width, height); in makeSurface()
261 std::unique_ptr<InputSurface> surface = makeSurface(100, 100); in TEST_F()
270 std::unique_ptr<InputSurface> surface = makeSurface(100, 100); in TEST_F()
273 std::unique_ptr<InputSurface> surface2 = makeSurface(100, 100); in TEST_F()
297 std::unique_ptr<InputSurface> surface = makeSurface(100, 100); in TEST_F()
298 std::unique_ptr<InputSurface> surface2 = makeSurface(100, 100); in TEST_F()
329 std::unique_ptr<InputSurface> bgSurface = makeSurface(100, 100); in TEST_F()
330 std::unique_ptr<InputSurface> fgSurface = makeSurface(100, 100); in TEST_F()
345 std::unique_ptr<InputSurface> parentSurface = makeSurface(100, 100); in TEST_F()
346 std::unique_ptr<InputSurface> childSurface = makeSurface(100, 100); in TEST_F()
366 std::unique_ptr<InputSurface> bgSurface = makeSurface(100, 100); in TEST_F()
367 std::unique_ptr<InputSurface> fgSurface = makeSurface(100, 100); in TEST_F()
384 std::unique_ptr<InputSurface> fgSurface = makeSurface(100, 100); in TEST_F()
398 std::unique_ptr<InputSurface> surface = makeSurface(100, 100); in TEST_F()
413 std::unique_ptr<InputSurface> bgSurface = makeSurface(100, 100); in TEST_F()
414 std::unique_ptr<InputSurface> bufferSurface = in TEST_F()
415 InputSurface::makeBufferInputSurface(mComposerClient, 100, 100); in TEST_F()
429 std::unique_ptr<InputSurface> bgSurface = makeSurface(100, 100); in TEST_F()
430 std::unique_ptr<InputSurface> bufferSurface = in TEST_F()
431 InputSurface::makeBufferInputSurface(mComposerClient, 100, 100); in TEST_F()
447 std::unique_ptr<InputSurface> bgSurface = makeSurface(100, 100); in TEST_F()
448 std::unique_ptr<InputSurface> fgSurface = makeSurface(100, 100); in TEST_F()
463 std::unique_ptr<InputSurface> bgSurface = makeSurface(100, 100); in TEST_F()
464 std::unique_ptr<InputSurface> containerSurface = in TEST_F()
465 InputSurface::makeContainerInputSurface(mComposerClient, 100, 100); in TEST_F()
480 std::unique_ptr<InputSurface> surface = makeSurface(100, 100); in TEST_F()