Searched refs:MAX_QUEUE_SIZE (Results 1 – 3 of 3) sorted by relevance
46 private static final int MAX_QUEUE_SIZE = 10; field in ProcessingSignal58 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()
48 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()
104 static constexpr size_t MAX_QUEUE_SIZE = 20; variable