Searched refs:maxId (Results 1 - 5 of 5) 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.cpp49 int32_t maxId, const wp<FilteredListener>& listener, bool sendPartials) {
54 item->maxId == maxId &&
64 __FUNCTION__, minId, maxId);
65 RangeListener rListener = { minId, maxId, listener, sendPartials };
71 int32_t maxId,
77 item->maxId == maxId &&
194 if (requestId >= item->minId && requestId < item->maxId &&
48 registerListener(int32_t minId, int32_t maxId, const wp<FilteredListener>& listener, bool sendPartials) argument
70 removeListener(int32_t minId, int32_t maxId, const wp<FilteredListener>& listener) argument
/frameworks/av/services/camera/libcameraservice/api1/
H A DCamera2Client.h130 status_t registerFrameListener(int32_t minId, int32_t maxId,
133 status_t removeFrameListener(int32_t minId, int32_t maxId,
H A DCamera2Client.cpp1918 status_t Camera2Client::registerFrameListener(int32_t minId, int32_t maxId, argument
1920 return mFrameProcessor->registerListener(minId, maxId, listener, sendPartials);
1923 status_t Camera2Client::removeFrameListener(int32_t minId, int32_t maxId, argument
1925 return mFrameProcessor->removeListener(minId, maxId, listener);
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DGridLayoutManagerTest.java612 final int[] maxId = new int[1];
613 maxId[0] = -1;
619 if (maxId[0] > 0 && mAdapter.getItemAt(position).mId > maxId[0]) {
631 maxId[0] = mAdapter.getItemAt(mAdapter.getItemCount() - 1).mId;

Completed in 295 milliseconds