HomeSort by relevance Sort by last modified time
    Searched refs:inputQueue (Results 1 - 8 of 8) sorted by null

  /external/deqp/framework/platform/android/
tcuAndroidRenderActivity.hpp 63 AInputQueue* inputQueue;
90 Message (MessageType type_, AInputQueue* inputQueue)
95 DE_ASSERT(inputQueue);
96 payload.inputQueue = inputQueue;
tcuAndroidRenderActivity.cpp 182 m_inputQueue = message.payload.inputQueue;
186 m_inputQueue = message.payload.inputQueue;
  /prebuilts/ndk/r11/sources/android/native_app_glue/
android_native_app_glue.c 94 if (android_app->inputQueue != NULL) {
95 AInputQueue_detachLooper(android_app->inputQueue);
97 android_app->inputQueue = android_app->pendingInputQueue;
98 if (android_app->inputQueue != NULL) {
100 AInputQueue_attachLooper(android_app->inputQueue,
178 if (android_app->inputQueue != NULL) {
179 AInputQueue_detachLooper(android_app->inputQueue);
190 while (AInputQueue_getEvent(app->inputQueue, &event) >= 0) {
192 if (AInputQueue_preDispatchEvent(app->inputQueue, event)) {
197 AInputQueue_finishEvent(app->inputQueue, event, handled)
    [all...]
android_native_app_glue.h 147 AInputQueue* inputQueue;
201 * android_poll_source structure. These can be read via the inputQueue
215 * this command, android_app->inputQueue will be updated to the new queue
  /prebuilts/ndk/r13/sources/android/native_app_glue/
android_native_app_glue.c 94 if (android_app->inputQueue != NULL) {
95 AInputQueue_detachLooper(android_app->inputQueue);
97 android_app->inputQueue = android_app->pendingInputQueue;
98 if (android_app->inputQueue != NULL) {
100 AInputQueue_attachLooper(android_app->inputQueue,
178 if (android_app->inputQueue != NULL) {
179 AInputQueue_detachLooper(android_app->inputQueue);
190 while (AInputQueue_getEvent(app->inputQueue, &event) >= 0) {
192 if (AInputQueue_preDispatchEvent(app->inputQueue, event)) {
197 AInputQueue_finishEvent(app->inputQueue, event, handled)
    [all...]
android_native_app_glue.h 147 AInputQueue* inputQueue;
201 * android_poll_source structure. These can be read via the inputQueue
215 * this command, android_app->inputQueue will be updated to the new queue
  /frameworks/native/libs/gui/include/gui/
StreamSplitter.h 42 // createSplitter creates a new splitter, outSplitter, using inputQueue as
47 // outSplitter has not been modified. BAD_VALUE is returned if inputQueue or
50 static status_t createSplitter(const sp<IGraphicBufferConsumer>& inputQueue,
157 StreamSplitter(const sp<IGraphicBufferConsumer>& inputQueue);
  /frameworks/native/libs/gui/
StreamSplitter.cpp 39 const sp<IGraphicBufferConsumer>& inputQueue,
41 if (inputQueue == NULL) {
42 ALOGE("createSplitter: inputQueue must not be NULL");
50 sp<StreamSplitter> splitter(new StreamSplitter(inputQueue));
59 StreamSplitter::StreamSplitter(const sp<IGraphicBufferConsumer>& inputQueue)
61 mOutstandingBuffers(0), mInput(inputQueue), mOutputs(), mBuffers() {}

Completed in 232 milliseconds