Home
last modified time | relevance | path

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

/frameworks/av/services/camera/libcameraservice/common/
DFrameProcessorBase.cpp49 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()
DFrameProcessorBase.h50 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/
DCamera2Client.h131 status_t registerFrameListener(int32_t minId, int32_t maxId,
134 status_t removeFrameListener(int32_t minId, int32_t maxId,
DCamera2Client.cpp1962 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()