Home
last modified time | relevance | path

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

/frameworks/av/services/camera/libcameraservice/common/
DFrameProcessorBase.cpp51 int32_t maxId, const wp<FilteredListener>& listener, bool sendPartials) { in registerListener() argument
56 item->maxId == maxId && in registerListener()
66 __FUNCTION__, minId, maxId); in registerListener()
67 RangeListener rListener = { minId, maxId, listener, sendPartials }; in registerListener()
73 int32_t maxId, in removeListener() argument
79 item->maxId == maxId && in removeListener()
213 if (requestId >= item->minId && requestId < item->maxId && in processListeners()
DFrameProcessorBase.h53 status_t registerListener(int32_t minId, int32_t maxId,
56 status_t removeListener(int32_t minId, int32_t maxId,
71 int32_t maxId; member
/frameworks/base/services/companion/java/com/android/server/companion/association/
DAssociations.java49 public void setMaxId(int maxId) { in setMaxId() argument
50 mMaxId = maxId; in setMaxId()
DAssociationDiskStore.java406 int maxId = readIntAttribute(parser, XML_ATTR_MAX_ID, 0); in readAssociationsV1() local
418 maxId = Math.max(maxId, association.getId()); in readAssociationsV1()
421 associations.setMaxId(maxId); in readAssociationsV1()
/frameworks/av/services/camera/libcameraservice/api1/
DCamera2Client.h152 status_t registerFrameListener(int32_t minId, int32_t maxId,
155 status_t removeFrameListener(int32_t minId, int32_t maxId,
DCamera2Client.cpp2041 status_t Camera2Client::registerFrameListener(int32_t minId, int32_t maxId, in registerFrameListener() argument
2043 return mFrameProcessor->registerListener(minId, maxId, listener, sendPartials); in registerFrameListener()
2046 status_t Camera2Client::removeFrameListener(int32_t minId, int32_t maxId, in removeFrameListener() argument
2048 return mFrameProcessor->removeListener(minId, maxId, listener); in removeFrameListener()
/frameworks/base/services/companion/java/com/android/server/companion/
DCompanionDeviceShellCommand.java89 final int maxId = mAssociationStore.getMaxId(); in onCommand() local
90 out.println("Max ID: " + maxId); in onCommand()
/frameworks/base/services/core/jni/
Dcom_android_server_utils_AnrTimer.cpp502 static int maxId() { in maxId() function in android::__anon7d06513f0111::AnrTimerService::Timer