Home
last modified time | relevance | path

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

/frameworks/av/services/camera/libcameraservice/common/
DFrameProcessorBase.cpp50 int32_t maxId, 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()
205 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.h124 status_t registerFrameListener(int32_t minId, int32_t maxId,
127 status_t removeFrameListener(int32_t minId, int32_t maxId,
DCamera2Client.cpp1941 status_t Camera2Client::registerFrameListener(int32_t minId, int32_t maxId, in registerFrameListener() argument
1943 return mFrameProcessor->registerListener(minId, maxId, listener, sendPartials); in registerFrameListener()
1946 status_t Camera2Client::removeFrameListener(int32_t minId, int32_t maxId, in removeFrameListener() argument
1948 return mFrameProcessor->removeListener(minId, maxId, listener); in removeFrameListener()
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
DGridLayoutManagerTest.java279 final int[] maxId = new int[1]; in testMovingAGroupOffScreenForAddedItems() local
280 maxId[0] = -1; in testMovingAGroupOffScreenForAddedItems()
286 if (maxId[0] > 0 && mAdapter.getItemAt(position).mId > maxId[0]) { in testMovingAGroupOffScreenForAddedItems()
298 maxId[0] = mAdapter.getItemAt(mAdapter.getItemCount() - 1).mId; in testMovingAGroupOffScreenForAddedItems()