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
81 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()
107 static std::unique_ptr<InputSurface> makeCursorInputSurface( in makeCursorInputSurface()
113 return std::make_unique<InputSurface>(surfaceControl, width, height); in makeCursorInputSurface()
156 ~InputSurface() { in ~InputSurface()
251 std::unique_ptr<InputSurface> makeSurface(int width, int height) { in makeSurface()
252 return InputSurface::makeColorInputSurface(mComposerClient, width, height); in makeSurface()
281 std::unique_ptr<InputSurface> surface = makeSurface(100, 100); in TEST_F()
297 std::unique_ptr<InputSurface> surface = makeSurface(100, 100); in TEST_F()
301 std::unique_ptr<InputSurface> surface2 = makeSurface(100, 100); in TEST_F()
327 std::unique_ptr<InputSurface> surface = makeSurface(100, 100); in TEST_F()
328 std::unique_ptr<InputSurface> surface2 = makeSurface(100, 100); in TEST_F()
368 std::unique_ptr<InputSurface> bgSurface = makeSurface(100, 100); in TEST_F()
369 std::unique_ptr<InputSurface> fgSurface = makeSurface(100, 100); in TEST_F()
387 std::unique_ptr<InputSurface> parentSurface = makeSurface(100, 100); in TEST_F()
388 std::unique_ptr<InputSurface> childSurface = makeSurface(100, 100); in TEST_F()
411 std::unique_ptr<InputSurface> bgSurface = makeSurface(100, 100); in TEST_F()
412 std::unique_ptr<InputSurface> fgSurface = makeSurface(100, 100); in TEST_F()
432 std::unique_ptr<InputSurface> fgSurface = makeSurface(100, 100); in TEST_F()
447 std::unique_ptr<InputSurface> surface = makeSurface(100, 100); in TEST_F()
463 std::unique_ptr<InputSurface> bgSurface = makeSurface(100, 100); in TEST_F()
464 std::unique_ptr<InputSurface> bufferSurface = in TEST_F()
465 InputSurface::makeBufferInputSurface(mComposerClient, 100, 100); in TEST_F()
482 std::unique_ptr<InputSurface> bgSurface = makeSurface(100, 100); in TEST_F()
483 std::unique_ptr<InputSurface> bufferSurface = in TEST_F()
484 InputSurface::makeBufferInputSurface(mComposerClient, 100, 100); in TEST_F()
503 std::unique_ptr<InputSurface> bgSurface = makeSurface(100, 100); in TEST_F()
504 std::unique_ptr<InputSurface> fgSurface = makeSurface(100, 100); in TEST_F()
522 std::unique_ptr<InputSurface> bgSurface = makeSurface(100, 100); in TEST_F()
523 std::unique_ptr<InputSurface> containerSurface = in TEST_F()
524 InputSurface::makeContainerInputSurface(mComposerClient, 100, 100); in TEST_F()
544 std::unique_ptr<InputSurface> surface = makeSurface(100, 100); in TEST_F()
553 std::unique_ptr<InputSurface> surface = makeSurface(100, 100); in TEST_F()
554 std::unique_ptr<InputSurface> cursorSurface = in TEST_F()
555 InputSurface::makeCursorInputSurface(mComposerClient, 10, 10); in TEST_F()