Home
last modified time | relevance | path

Searched refs:autoPrerotation (Results 1 – 9 of 9) sorted by relevance

/frameworks/native/libs/nativewindow/include/vndk/
Dwindow.h327 int ANativeWindow_setAutoPrerotation(ANativeWindow* window, bool autoPrerotation);
/frameworks/native/libs/gui/
DIGraphicBufferProducer.cpp772 virtual status_t setAutoPrerotation(bool autoPrerotation) { in setAutoPrerotation() argument
775 data.writeBool(autoPrerotation); in setAutoPrerotation()
989 status_t setAutoPrerotation(bool autoPrerotation) override { in setAutoPrerotation() argument
990 return mBase->setAutoPrerotation(autoPrerotation); in setAutoPrerotation()
1013 status_t IGraphicBufferProducer::setAutoPrerotation(bool autoPrerotation) { in setAutoPrerotation() argument
1015 (void)autoPrerotation; in setAutoPrerotation()
1570 bool autoPrerotation = data.readBool(); in onTransact() local
1571 status_t result = setAutoPrerotation(autoPrerotation); in onTransact()
DSurface.cpp1914 bool autoPrerotation = va_arg(args, int); local
1915 return setAutoPrerotation(autoPrerotation);
2893 int Surface::setAutoPrerotation(bool autoPrerotation) { argument
2895 ALOGV("Surface::setAutoPrerotation (%d)", autoPrerotation);
2898 if (mAutoPrerotation == autoPrerotation) {
2902 status_t err = mGraphicBufferProducer->setAutoPrerotation(autoPrerotation);
2904 mAutoPrerotation = autoPrerotation;
2906 ALOGE_IF(err, "IGraphicBufferProducer::setAutoPrerotation(%d) returned %s", autoPrerotation,
DBufferQueueProducer.cpp1945 status_t BufferQueueProducer::setAutoPrerotation(bool autoPrerotation) { in setAutoPrerotation() argument
1947 BQ_LOGV("setAutoPrerotation: %d", autoPrerotation); in setAutoPrerotation()
1951 mCore->mAutoPrerotation = autoPrerotation; in setAutoPrerotation()
/frameworks/native/libs/nativewindow/include/system/
Dwindow.h1039 bool autoPrerotation) { in native_window_set_auto_prerotation() argument
1040 return window->perform(window, NATIVE_WINDOW_SET_AUTO_PREROTATION, autoPrerotation); in native_window_set_auto_prerotation()
/frameworks/native/libs/nativewindow/
DANativeWindow.cpp385 int ANativeWindow_setAutoPrerotation(ANativeWindow* window, bool autoPrerotation) { in ANativeWindow_setAutoPrerotation() argument
386 return native_window_set_auto_prerotation(window, autoPrerotation); in ANativeWindow_setAutoPrerotation()
/frameworks/native/libs/gui/include/gui/
DBufferQueueProducer.h208 virtual status_t setAutoPrerotation(bool autoPrerotation);
DIGraphicBufferProducer.h724 virtual status_t setAutoPrerotation(bool autoPrerotation);
DSurface.h401 virtual int setAutoPrerotation(bool autoPrerotation);