Lines Matching refs:ownershipCallback
255 int appType, OnAppFocusOwnershipCallback ownershipCallback) { in requestAppFocus() argument
256 if (ownershipCallback == null) { in requestAppFocus()
261 binder = mOwnershipBinders.get(ownershipCallback); in requestAppFocus()
263 binder = new IAppFocusOwnershipCallbackImpl(this, ownershipCallback); in requestAppFocus()
264 mOwnershipBinders.put(ownershipCallback, binder); in requestAppFocus()
281 public void abandonAppFocus(OnAppFocusOwnershipCallback ownershipCallback, in abandonAppFocus() argument
283 if (ownershipCallback == null) { in abandonAppFocus()
288 binder = mOwnershipBinders.get(ownershipCallback); in abandonAppFocus()
302 mOwnershipBinders.remove(ownershipCallback); in abandonAppFocus()
312 public void abandonAppFocus(OnAppFocusOwnershipCallback ownershipCallback) { in abandonAppFocus() argument
315 binder = mOwnershipBinders.remove(ownershipCallback); in abandonAppFocus()