Lines Matching refs:ownershipCallback
273 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
333 binder = mOwnershipBinders.remove(ownershipCallback); in abandonAppFocus()