Home
last modified time | relevance | path

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

/packages/services/Car/service/src/com/android/car/
DAppFocusService.java158 ClientInfo clientInfo = (ClientInfo) client; in requestAppFocus() local
161 if (clientInfo.getAppTypes().contains(appType)) { in requestAppFocus()
162 mDispatchHandler.requestAppFocusChangeDispatch(clientInfo.binderInterface, in requestAppFocus()
201 ClientInfo clientInfo = (ClientInfo) client; in abandonAppFocus() local
202 if (clientInfo.getAppTypes().contains(appType)) { in abandonAppFocus()
203 mDispatchHandler.requestAppFocusChangeDispatch(clientInfo.binderInterface, in abandonAppFocus()
253 OwnershipClientInfo clientInfo = (OwnershipClientInfo) client; in dump() local
254 writer.println(clientInfo.toString()); in dump()
265 OwnershipClientInfo clientInfo = mFocusOwners.get(appType); in isFocusOwner() local
266 return clientInfo.getUid() == uid && clientInfo.getPid() == pid; in isFocusOwner()
[all …]
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DContactsDatabaseHelper.java3804 ApplicationInfo clientInfo = pm.getApplicationInfo(packageName, 0 /* no flags */); in getUidForPackageName() local
3805 return clientInfo.uid; in getUidForPackageName()