• Home
  • Raw
  • Download

Lines Matching refs:ANativeWindow

23 static int forwardSetSwapInterval(ANativeWindow* window, int interval) {  in forwardSetSwapInterval()
27 static int forwardDequeueBuffer(ANativeWindow* window, ANativeWindowBuffer** buffer, int* fenceFd) { in forwardDequeueBuffer()
31 static int forwardCancelBuffer(ANativeWindow* window, ANativeWindowBuffer* buffer, int fenceFd) { in forwardCancelBuffer()
35 static int forwardQueueBuffer(ANativeWindow* window, ANativeWindowBuffer* buffer, int fenceFd) { in forwardQueueBuffer()
39 static int forwardQuery(const ANativeWindow* window, int what, int* value) { in forwardQuery()
43 static int forwardPerform(ANativeWindow* window, int operation, ...) { in forwardPerform()
89 static int forwardDequeueBufferDeprecated(ANativeWindow* window, ANativeWindowBuffer** buffer) { in forwardDequeueBufferDeprecated()
94 static int forwardCancelBufferDeprecated(ANativeWindow* window, ANativeWindowBuffer* buffer) { in forwardCancelBufferDeprecated()
98 static int forwardLockBufferDeprecated(ANativeWindow* window, ANativeWindowBuffer* buffer) { in forwardLockBufferDeprecated()
102 static int forwardQueueBufferDeprecated(ANativeWindow* window, ANativeWindowBuffer* buffer) { in forwardQueueBufferDeprecated()
107 ANativeWindow::setSwapInterval = &forwardSetSwapInterval; in NativeWindow()
108 ANativeWindow::dequeueBuffer = &forwardDequeueBuffer; in NativeWindow()
109 ANativeWindow::cancelBuffer = &forwardCancelBuffer; in NativeWindow()
110 ANativeWindow::queueBuffer = &forwardQueueBuffer; in NativeWindow()
111 ANativeWindow::query = &forwardQuery; in NativeWindow()
112 ANativeWindow::perform = &forwardPerform; in NativeWindow()
114 ANativeWindow::dequeueBuffer_DEPRECATED = &forwardDequeueBufferDeprecated; in NativeWindow()
115 ANativeWindow::cancelBuffer_DEPRECATED = &forwardCancelBufferDeprecated; in NativeWindow()
116 ANativeWindow::lockBuffer_DEPRECATED = &forwardLockBufferDeprecated; in NativeWindow()
117 ANativeWindow::queueBuffer_DEPRECATED = &forwardQueueBufferDeprecated; in NativeWindow()