Searched refs:maxId (Results 1 – 5 of 5) sorted by relevance
/frameworks/av/services/camera/libcameraservice/common/ |
D | FrameProcessorBase.cpp | 50 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()
|
D | FrameProcessorBase.h | 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
|
/frameworks/av/services/camera/libcameraservice/api1/ |
D | Camera2Client.h | 124 status_t registerFrameListener(int32_t minId, int32_t maxId, 127 status_t removeFrameListener(int32_t minId, int32_t maxId,
|
D | Camera2Client.cpp | 1941 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/ |
D | GridLayoutManagerTest.java | 279 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()
|