Home
last modified time | relevance | path

Searched refs:ownershipCallback (Results 1 – 3 of 3) sorted by relevance

/aosp12/packages/services/Car/car-lib/src/android/car/
H A DCarAppFocusManager.java273 int appType, OnAppFocusOwnershipCallback ownershipCallback) { in requestAppFocus() argument
274 if (ownershipCallback == null) { in requestAppFocus()
279 binder = mOwnershipBinders.get(ownershipCallback); in requestAppFocus()
281 binder = new IAppFocusOwnershipCallbackImpl(this, ownershipCallback); in requestAppFocus()
282 mOwnershipBinders.put(ownershipCallback, binder); in requestAppFocus()
299 public void abandonAppFocus(OnAppFocusOwnershipCallback ownershipCallback, in abandonAppFocus() argument
301 if (ownershipCallback == null) { in abandonAppFocus()
306 binder = mOwnershipBinders.get(ownershipCallback); in abandonAppFocus()
320 mOwnershipBinders.remove(ownershipCallback); in abandonAppFocus()
330 public void abandonAppFocus(OnAppFocusOwnershipCallback ownershipCallback) { in abandonAppFocus() argument
[all …]
/aosp12/packages/services/Car/tests/android_car_api_test/src/android/car/apitest/
H A DCarNavigationManagerTest.java139 OnAppFocusOwnershipCallback ownershipCallback = new OnAppFocusOwnershipCallback() { in testSendEvent() local
151 ownershipCallback); in testSendEvent()
152 assertThat(mCarAppFocusManager.isOwningFocus(ownershipCallback, in testSendEvent()
/aosp12/packages/services/Car/car-lib/api/
H A Dlint-baseline.txt83 Missing nullability on parameter `ownershipCallback` in method `abandonAppFocus`
85 Missing nullability on parameter `ownershipCallback` in method `abandonAppFocus`
95 Missing nullability on parameter `ownershipCallback` in method `requestAppFocus`