Searched defs:maxId (Results 1 - 3 of 3) sorted by relevance

/frameworks/av/services/camera/libcameraservice/common/
H A DFrameProcessorBase.h46 // Register a listener for a range of IDs [minId, maxId). Multiple listeners
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 in struct:android::camera2::FrameProcessorBase::RangeListener
H A DFrameProcessorBase.cpp50 int32_t maxId, wp<FilteredListener> listener, bool sendPartials) {
55 item->maxId == maxId &&
65 __FUNCTION__, minId, maxId);
66 RangeListener rListener = { minId, maxId, listener, sendPartials };
72 int32_t maxId,
78 item->maxId == maxId &&
205 if (requestId >= item->minId && requestId < item->maxId &&
49 registerListener(int32_t minId, int32_t maxId, wp<FilteredListener> listener, bool sendPartials) argument
71 removeListener(int32_t minId, int32_t maxId, wp<FilteredListener> listener) argument
/frameworks/av/services/camera/libcameraservice/api1/
H A DCamera2Client.cpp1874 status_t Camera2Client::registerFrameListener(int32_t minId, int32_t maxId, argument
1876 return mFrameProcessor->registerListener(minId, maxId, listener, sendPartials);
1879 status_t Camera2Client::removeFrameListener(int32_t minId, int32_t maxId, argument
1881 return mFrameProcessor->removeListener(minId, maxId, listener);

Completed in 205 milliseconds