Searched defs:consumeBatches (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/jni/
H A Dandroid_view_InputEventReceiver.cpp56 status_t consumeEvents(JNIEnv* env, bool consumeBatches, nsecs_t frameTime);
133 status_t status = consumeEvents(env, false /*consumeBatches*/, -1);
139 bool consumeBatches, nsecs_t frameTime) {
141 ALOGD("channel '%s' ~ Consuming input events, consumeBatches=%s, frameTime=%lld.",
142 getInputChannelName(), consumeBatches ? "true" : "false", frameTime);
145 if (consumeBatches) {
154 consumeBatches, frameTime, &seq, &inputEvent);
279 status_t status = receiver->consumeEvents(env, true /*consumeBatches*/, frameTimeNanos);
138 consumeEvents(JNIEnv* env, bool consumeBatches, nsecs_t frameTime) argument
/frameworks/base/libs/androidfw/
H A DInputTransport.cpp387 bool consumeBatches, nsecs_t frameTime, uint32_t* outSeq, InputEvent** outEvent) {
389 ALOGD("channel '%s' consumer ~ consume: consumeBatches=%s, frameTime=%lld",
390 mChannel->getName().string(), consumeBatches ? "true" : "false", frameTime);
408 if (consumeBatches || result != WOULD_BLOCK) {
386 consume(InputEventFactoryInterface* factory, bool consumeBatches, nsecs_t frameTime, uint32_t* outSeq, InputEvent** outEvent) argument

Completed in 52 milliseconds