Home
last modified time | relevance | path

Searched refs:MAX_QUEUE_SIZE (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/core/java/android/app/ondeviceintelligence/
DProcessingSignal.java46 private static final int MAX_QUEUE_SIZE = 10; field in ProcessingSignal
58 mActionParamsQueue = new ArrayDeque<>(MAX_QUEUE_SIZE); in ProcessingSignal()
93 if (mActionParamsQueue.size() > MAX_QUEUE_SIZE) { in sendSignal()
95 "Maximum actions that can be queued are : " + MAX_QUEUE_SIZE); in sendSignal()
/frameworks/native/services/inputflinger/reader/
DTouchVideoDevice.cpp48 mFrames.reserve(MAX_QUEUE_SIZE); in TouchVideoDevice()
171 if (mFrames.size() > MAX_QUEUE_SIZE) { in readAndQueueFrames()
175 mFrames.erase(mFrames.begin(), mFrames.end() - MAX_QUEUE_SIZE); in readAndQueueFrames()
/frameworks/native/services/inputflinger/reader/include/
DTouchVideoDevice.h104 static constexpr size_t MAX_QUEUE_SIZE = 20; variable