Searched refs:autoPrerotation (Results 1 – 9 of 9) sorted by relevance
/frameworks/native/libs/nativewindow/include/vndk/ |
D | window.h | 327 int ANativeWindow_setAutoPrerotation(ANativeWindow* window, bool autoPrerotation);
|
/frameworks/native/libs/gui/ |
D | IGraphicBufferProducer.cpp | 772 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()
|
D | Surface.cpp | 1914 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,
|
D | BufferQueueProducer.cpp | 1945 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/ |
D | window.h | 1039 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/ |
D | ANativeWindow.cpp | 385 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/ |
D | BufferQueueProducer.h | 208 virtual status_t setAutoPrerotation(bool autoPrerotation);
|
D | IGraphicBufferProducer.h | 724 virtual status_t setAutoPrerotation(bool autoPrerotation);
|
D | Surface.h | 401 virtual int setAutoPrerotation(bool autoPrerotation);
|