OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
;
/development/ndk/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
/external/skia/platform_tools/android/third_party/native_app_glue/
android_native_app_glue.c
93
if (android_app->
inputQueue
!= NULL) {
94
AInputQueue_detachLooper(android_app->
inputQueue
);
96
android_app->
inputQueue
= android_app->pendingInputQueue;
97
if (android_app->
inputQueue
!= NULL) {
99
AInputQueue_attachLooper(android_app->
inputQueue
,
177
if (android_app->
inputQueue
!= NULL) {
178
AInputQueue_detachLooper(android_app->
inputQueue
);
189
while (AInputQueue_getEvent(app->
inputQueue
, &event) >= 0) {
191
if (AInputQueue_preDispatchEvent(app->
inputQueue
, event)) {
196
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/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
37
const sp<IGraphicBufferConsumer>&
inputQueue
,
39
if (
inputQueue
== NULL) {
40
ALOGE("createSplitter:
inputQueue
must not be NULL");
48
sp<StreamSplitter> splitter(new StreamSplitter(
inputQueue
));
57
StreamSplitter::StreamSplitter(const sp<IGraphicBufferConsumer>&
inputQueue
)
59
mOutstandingBuffers(0), mInput(
inputQueue
), mOutputs(), mBuffers() {}
Completed in 283 milliseconds