Home
last modified time | relevance | path

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

/frameworks/av/services/camera/libcameraservice/utils/
DClientManager.h42 ClientPriority(int32_t score, int32_t state, bool isVendorClient) : in ClientPriority() argument
43 mScore(score), mState(state), mIsVendorClient(isVendorClient) { } in ClientPriority()
113 bool isVendorClient);
115 int32_t score, int32_t ownerId, int32_t state, bool isVendorClient);
180 bool isVendorClient) : in ClientDescriptor() argument
182 mPriority(score, state, isVendorClient),
188 bool isVendorClient) : in ClientDescriptor() argument
191 mPriority(score, state, isVendorClient), mOwnerId{ownerId} {}
/frameworks/av/services/camera/libcameraservice/
DCameraService.cpp2997 bool isVendorClient = hardware::IPCThreadState::self()->isServingCall(); in makeClientDescriptor() local
2998 int32_t score_adj = isVendorClient ? kVendorClientScore : score; in makeClientDescriptor()
2999 int32_t state_adj = isVendorClient ? kVendorClientState: state; in makeClientDescriptor()
3002 key, value, cost, conflictingKeys, score_adj, ownerId, state_adj, isVendorClient); in makeClientDescriptor()