Home
last modified time | relevance | path

Searched refs:maxId (Results 1 – 4 of 4) sorted by relevance

/frameworks/av/services/camera/libcameraservice/common/
DFrameProcessorBase.cpp50 int32_t maxId, const wp<FilteredListener>& listener, bool sendPartials) { in registerListener() argument
55 item->maxId == maxId && in registerListener()
65 __FUNCTION__, minId, maxId); in registerListener()
66 RangeListener rListener = { minId, maxId, listener, sendPartials }; in registerListener()
72 int32_t maxId, in removeListener() argument
78 item->maxId == maxId && in removeListener()
212 if (requestId >= item->minId && requestId < item->maxId && in processListeners()
DFrameProcessorBase.h53 status_t registerListener(int32_t minId, int32_t maxId,
56 status_t removeListener(int32_t minId, int32_t maxId,
71 int32_t maxId; member
/frameworks/av/services/camera/libcameraservice/api1/
DCamera2Client.h137 status_t registerFrameListener(int32_t minId, int32_t maxId,
140 status_t removeFrameListener(int32_t minId, int32_t maxId,
DCamera2Client.cpp1980 status_t Camera2Client::registerFrameListener(int32_t minId, int32_t maxId, in registerFrameListener() argument
1982 return mFrameProcessor->registerListener(minId, maxId, listener, sendPartials); in registerFrameListener()
1985 status_t Camera2Client::removeFrameListener(int32_t minId, int32_t maxId, in removeFrameListener() argument
1987 return mFrameProcessor->removeListener(minId, maxId, listener); in removeFrameListener()