Home
last modified time | relevance | path

Searched refs:isVendorClient (Results 1 – 4 of 4) sorted by relevance

/frameworks/av/services/camera/libcameraservice/utils/
DClientManager.h67 ClientPriority(int32_t score, int32_t state, bool isVendorClient, int32_t scoreOffset = 0) :
68 mIsVendorClient(isVendorClient), mScoreOffset(scoreOffset) { in mIsVendorClient() argument
75 int32_t isVendorClient() const { return mIsVendorClient; } in isVendorClient() function
145 bool isVendorClient, int32_t oomScoreOffset);
147 int32_t score, int32_t ownerId, int32_t state, bool isVendorClient,
213 bool isVendorClient, int32_t scoreOffset) : in ClientDescriptor() argument
215 mPriority(score, state, isVendorClient, scoreOffset),
221 bool isVendorClient, int32_t scoreOffset) : in ClientDescriptor() argument
224 mPriority(score, state, isVendorClient, scoreOffset), mOwnerId{ownerId} {}
275 if (mPriority.isVendorClient()) { in setPriority()
/frameworks/av/services/camera/libcameraservice/tests/
DClientManagerTest.cpp30 int32_t score, int32_t state, bool isVendorClient) : in TestClient()
32 mOwnerId(ownerId), mScore(score), mState(state), mIsVendorClient(isVendorClient) {}; in TestClient()
/frameworks/av/services/camera/libcameraservice/
DCameraService.h985 int uid, int pid, bool isVendorClient, bool openCloseCallbackAllowed) in ServiceListener() argument
987 mIsVendorListener(isVendorClient), in ServiceListener()
DCameraService.cpp3826 bool isVendorClient = getCurrentServingCall() == BinderCallType::HWBINDER; in makeClientDescriptor() local
3827 int32_t score_adj = isVendorClient ? kVendorClientScore : score; in makeClientDescriptor()
3828 int32_t state_adj = isVendorClient ? kVendorClientState: state; in makeClientDescriptor()
3831 key, value, cost, conflictingKeys, score_adj, ownerId, state_adj, isVendorClient, in makeClientDescriptor()