Searched refs:maxId (Results 1 - 4 of 4) 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
48 status_t registerListener(int32_t minId, int32_t maxId,
50 status_t removeListener(int32_t minId, int32_t maxId,
65 int32_t maxId; member in struct:android::camera2::FrameProcessorBase::RangeListener
H A DFrameProcessorBase.cpp40 int32_t maxId, wp<FilteredListener> listener) {
43 __FUNCTION__, minId, maxId);
44 RangeListener rListener = { minId, maxId, listener };
50 int32_t maxId,
56 item->maxId == maxId &&
163 requestId < item->maxId) {
39 registerListener(int32_t minId, int32_t maxId, wp<FilteredListener> listener) argument
49 removeListener(int32_t minId, int32_t maxId, wp<FilteredListener> listener) argument
/frameworks/av/services/camera/libcameraservice/api1/
H A DCamera2Client.h120 status_t registerFrameListener(int32_t minId, int32_t maxId,
122 status_t removeFrameListener(int32_t minId, int32_t maxId,
H A DCamera2Client.cpp1631 status_t Camera2Client::registerFrameListener(int32_t minId, int32_t maxId, argument
1633 return mFrameProcessor->registerListener(minId, maxId, listener);
1636 status_t Camera2Client::removeFrameListener(int32_t minId, int32_t maxId, argument
1638 return mFrameProcessor->removeListener(minId, maxId, listener);

Completed in 114 milliseconds