Lines Matching refs:interceptor
416 auto interceptor = c->mDequeueInterceptor; in hook_dequeueBuffer() local
418 return interceptor(window, Surface::dequeueBufferInternal, data, buffer, fenceFd); in hook_dequeueBuffer()
436 auto interceptor = c->mCancelInterceptor; in hook_cancelBuffer() local
438 return interceptor(window, Surface::cancelBufferInternal, data, buffer, fenceFd); in hook_cancelBuffer()
455 auto interceptor = c->mQueueInterceptor; in hook_queueBuffer() local
457 return interceptor(window, Surface::queueBufferInternal, data, buffer, fenceFd); in hook_queueBuffer()
539 auto interceptor = c->mQueryInterceptor; in hook_query() local
541 return interceptor(window, Surface::queryInternal, data, what, value); in hook_query()
1717 ANativeWindow_cancelBufferInterceptor interceptor = in dispatchAddCancelInterceptor() local
1721 mCancelInterceptor = interceptor; in dispatchAddCancelInterceptor()
1727 ANativeWindow_dequeueBufferInterceptor interceptor = in dispatchAddDequeueInterceptor() local
1731 mDequeueInterceptor = interceptor; in dispatchAddDequeueInterceptor()
1737 ANativeWindow_performInterceptor interceptor = va_arg(args, ANativeWindow_performInterceptor); in dispatchAddPerformInterceptor() local
1740 mPerformInterceptor = interceptor; in dispatchAddPerformInterceptor()
1746 ANativeWindow_queueBufferInterceptor interceptor = in dispatchAddQueueInterceptor() local
1750 mQueueInterceptor = interceptor; in dispatchAddQueueInterceptor()
1756 ANativeWindow_queryInterceptor interceptor = va_arg(args, ANativeWindow_queryInterceptor); in dispatchAddQueryInterceptor() local
1759 mQueryInterceptor = interceptor; in dispatchAddQueryInterceptor()