/packages/services/Car/car-lib/src/android/car/ |
D | IAppFocus.aidl | 24 void registerFocusListener(IAppFocusListener callback, int appType) = 0; in registerFocusListener() 25 void unregisterFocusListener(IAppFocusListener callback, int appType) = 1; in unregisterFocusListener() 28 boolean isOwningFocus(IAppFocusOwnershipCallback callback, int appType) = 3; in isOwningFocus() 30 int requestAppFocus(IAppFocusOwnershipCallback callback, int appType) = 4; in requestAppFocus() 32 void abandonAppFocus(IAppFocusOwnershipCallback callback, int appType) = 5; in abandonAppFocus()
|
D | CarAppFocusManager.java | 49 void onAppFocusChanged(@AppFocusType int appType, boolean active); in onAppFocusChanged() 63 void onAppFocusOwnershipLost(@AppFocusType int appType); in onAppFocusOwnershipLost() 72 void onAppFocusOwnershipGranted(@AppFocusType int appType); in onAppFocusOwnershipGranted() 135 public void addFocusListener(OnAppFocusChangedListener listener, @AppFocusType int appType) in addFocusListener() 162 public void removeFocusListener(OnAppFocusChangedListener listener, @AppFocusType int appType) { in removeFocusListener() 225 public boolean isOwningFocus(OnAppFocusOwnershipCallback callback, @AppFocusType int appType) in isOwningFocus() 253 public @AppFocusRequestResult int requestAppFocus(int appType, in requestAppFocus() 283 @AppFocusType int appType) { in abandonAppFocus() 348 public void addAppType(@AppFocusType int appType) { in addAppType() 352 public void removeAppType(@AppFocusType int appType) { in removeAppType() [all …]
|
D | IAppFocusOwnershipCallback.aidl | 21 void onAppFocusOwnershipLost(int appType) = 0; in onAppFocusOwnershipLost() 22 void onAppFocusOwnershipGranted(int appType) = 1; in onAppFocusOwnershipGranted()
|
D | IAppFocusListener.aidl | 21 void onAppFocusChanged(int appType, boolean active) = 0; in onAppFocusChanged()
|
/packages/services/Car/car-support-lib/src/android/support/car/ |
D | CarAppFocusManager.java | 43 void onAppFocusChanged(CarAppFocusManager manager, @AppFocusType int appType, in onAppFocusChanged() 60 void onAppFocusOwnershipLost(CarAppFocusManager manager, @AppFocusType int appType); in onAppFocusOwnershipLost() 71 void onAppFocusOwnershipGranted(CarAppFocusManager manager, @AppFocusType int appType); in onAppFocusOwnershipGranted() 130 @AppFocusType int appType) throws CarNotConnectedException; in addFocusListener() 138 @AppFocusType int appType); in removeFocusListener() 153 public abstract boolean isOwningFocus(@AppFocusType int appType, in isOwningFocus() 181 public abstract int requestAppFocus(int appType, in requestAppFocus() 191 @AppFocusType int appType); in abandonAppFocus()
|
D | CarAppFocusManagerEmbedded.java | 43 public void addFocusListener(OnAppFocusChangedListener listener, int appType) in addFocusListener() 64 public void removeFocusListener(OnAppFocusChangedListener listener, int appType) { in removeFocusListener() 88 public boolean isOwningFocus(int appType, OnAppFocusOwnershipCallback listener) in isOwningFocus() 105 public int requestAppFocus(int appType, OnAppFocusOwnershipCallback ownershipCallback) in requestAppFocus() 126 public void abandonAppFocus(OnAppFocusOwnershipCallback ownershipCallback, int appType) { in abandonAppFocus() 173 public void onAppFocusChanged(int appType, boolean active) { in onAppFocusChanged()
|
/packages/services/Car/service/src/com/android/car/ |
D | AppFocusService.java | 68 public void registerFocusListener(IAppFocusListener listener, int appType) { in registerFocusListener() 82 public void unregisterFocusListener(IAppFocusListener listener, int appType) { in unregisterFocusListener() 103 public boolean isOwningFocus(IAppFocusOwnershipCallback callback, int appType) { in isOwningFocus() 115 public int requestAppFocus(IAppFocusOwnershipCallback callback, int appType) { in requestAppFocus() 172 public void abandonAppFocus(IAppFocusOwnershipCallback callback, int appType) { in abandonAppFocus() 262 public boolean isFocusOwner(int uid, int pid, int appType) { in isFocusOwner() 276 void onFocusAcquired(int appType, int uid, int pid); in onFocusAcquired() 277 void onFocusAbandoned(int appType, int uid, int pid); in onFocusAbandoned() 307 private void updateFocusOwner(int appType, OwnershipClientInfo owner) { in updateFocusOwner() 319 private void dispatchAppFocusOwnershipLoss(IAppFocusOwnershipCallback callback, int appType) { in dispatchAppFocusOwnershipLoss() [all …]
|
/packages/services/Car/tests/carservice_test/src/com/android/car/test/ |
D | AppFocusTest.java | 69 public void onAppFocusChanged(int appType, boolean active) { in onAppFocusChanged() 104 public void onAppFocusOwnershipLost(int appType) { in onAppFocusOwnershipLost() 111 public void onAppFocusOwnershipGranted(int appType) { in onAppFocusOwnershipGranted()
|
/packages/apps/Bluetooth/src/com/android/bluetooth/map/ |
D | BluetoothMapAccountItem.java | 45 Drawable icon, BluetoothMapUtils.TYPE appType, String uci, String uciPrefix) { in BluetoothMapAccountItem() 59 String authority, Drawable icon, BluetoothMapUtils.TYPE appType) { in create() 65 String authority, Drawable icon, BluetoothMapUtils.TYPE appType, String uci, in create()
|
/packages/services/Car/tests/android_support_car_api_test/src/com/android/support/car/apitest/ |
D | CarAppFocusManagerTest.java | 296 public void onAppFocusChanged(CarAppFocusManager manager, int appType, boolean active) { in onAppFocusChanged() 332 public void onAppFocusOwnershipLost(CarAppFocusManager manager, int appType) { in onAppFocusOwnershipLost() 340 public void onAppFocusOwnershipGranted(CarAppFocusManager manager, int appType) { in onAppFocusOwnershipGranted()
|
/packages/services/Car/tests/android_car_api_test/src/android/car/apitest/ |
D | CarAppFocusManagerTest.java | 400 public void onAppFocusChanged(int appType, boolean active) { in onAppFocusChanged() 434 public void onAppFocusOwnershipLost(int appType) { in onAppFocusOwnershipLost() 442 public void onAppFocusOwnershipGranted(int appType) { in onAppFocusOwnershipGranted()
|
/packages/services/Car/service/src/com/android/car/cluster/ |
D | InstrumentClusterService.java | 165 public void onFocusAcquired(int appType, int uid, int pid) { in onFocusAcquired() 182 public void onFocusAbandoned(int appType, int uid, int pid) { in onFocusAbandoned()
|
/packages/services/Telephony/src/com/android/phone/ |
D | PhoneInterfaceManager.java | 940 Integer appType = (Integer) request.argument; in handleMessage() local 2481 public String[] getForbiddenPlmns(int subId, int appType, String callingPackage) { in getForbiddenPlmns() 3598 public String getAidForAppType(int subId, int appType) { in getAidForAppType()
|