Searched refs:maxId (Results 1 – 4 of 4) sorted by relevance
/frameworks/av/services/camera/libcameraservice/common/ |
D | FrameProcessorBase.cpp | 49 int32_t maxId, const wp<FilteredListener>& listener, bool sendPartials) { in registerListener() argument 54 item->maxId == maxId && in registerListener() 64 __FUNCTION__, minId, maxId); in registerListener() 65 RangeListener rListener = { minId, maxId, listener, sendPartials }; in registerListener() 71 int32_t maxId, in removeListener() argument 77 item->maxId == maxId && in removeListener() 211 if (requestId >= item->minId && requestId < item->maxId && in processListeners()
|
D | FrameProcessorBase.h | 50 status_t registerListener(int32_t minId, int32_t maxId, 53 status_t removeListener(int32_t minId, int32_t maxId, 68 int32_t maxId; member
|
/frameworks/av/services/camera/libcameraservice/api1/ |
D | Camera2Client.h | 131 status_t registerFrameListener(int32_t minId, int32_t maxId, 134 status_t removeFrameListener(int32_t minId, int32_t maxId,
|
D | Camera2Client.cpp | 1962 status_t Camera2Client::registerFrameListener(int32_t minId, int32_t maxId, in registerFrameListener() argument 1964 return mFrameProcessor->registerListener(minId, maxId, listener, sendPartials); in registerFrameListener() 1967 status_t Camera2Client::removeFrameListener(int32_t minId, int32_t maxId, in removeFrameListener() argument 1969 return mFrameProcessor->removeListener(minId, maxId, listener); in removeFrameListener()
|