Searched refs:isVendorClient (Results 1 – 4 of 4) sorted by relevance
/frameworks/av/services/camera/libcameraservice/tests/ |
D | ClientManagerTest.cpp | 27 int32_t score, int32_t state, bool isVendorClient) : in TestClient() 29 mOwnerId(ownerId), mScore(score), mState(state), mIsVendorClient(isVendorClient) {}; in TestClient()
|
/frameworks/av/services/camera/libcameraservice/utils/ |
D | ClientManager.h | 42 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/ |
D | CameraService.h | 916 int uid, int pid, bool isVendorClient, bool openCloseCallbackAllowed) in ServiceListener() argument 918 mIsVendorListener(isVendorClient), in ServiceListener()
|
D | CameraService.cpp | 3490 bool isVendorClient = getCurrentServingCall() == BinderCallType::HWBINDER; in makeClientDescriptor() local 3491 int32_t score_adj = isVendorClient ? kVendorClientScore : score; in makeClientDescriptor() 3492 int32_t state_adj = isVendorClient ? kVendorClientState: state; in makeClientDescriptor() 3495 key, value, cost, conflictingKeys, score_adj, ownerId, state_adj, isVendorClient); in makeClientDescriptor()
|