/packages/modules/adb/daemon/ |
D | property_monitor_test.cpp | 38 std::unordered_map<std::string, std::vector<std::string>> changes GUARDED_BY(mutex); 69 output->changes[property_name].emplace_back(std::move(value)); in RegisterCallback() 93 ASSERT_EQ(2UL, output.changes.size()); in TEST() 94 ASSERT_EQ(2UL, output.changes[foo].size()); in TEST() 95 ASSERT_EQ("", output.changes[foo][0]); in TEST() 96 ASSERT_EQ("foo", output.changes[foo][1]); in TEST() 97 ASSERT_EQ("", output.changes[never_set][0]); in TEST() 116 ASSERT_EQ(1UL, output.changes.size()); in TEST() 117 ASSERT_EQ(2UL, output.changes[foo].size()); in TEST() 118 ASSERT_EQ("", output.changes[foo][0]); in TEST() [all …]
|
/packages/modules/Permission/PermissionController/ |
D | OWNERS | 3 # For automotive related changes 6 # For television related changes 10 # For incident report related changes 13 # for SafetyCenter UI changes 16 # For Wear related changes
|
/packages/services/Car/service/src/com/android/car/cluster/ |
D | ClusterHomeService.java | 228 int changes = 0; in onSwitchUi() local 231 changes |= ClusterHomeManager.CONFIG_UI_TYPE; in onSwitchUi() 233 sendDisplayState(changes); in onSwitchUi() 239 int changes = 0; in onDisplayState() local 242 changes |= ClusterHomeManager.CONFIG_DISPLAY_ON_OFF; in onDisplayState() 246 changes |= ClusterHomeManager.CONFIG_DISPLAY_BOUNDS; in onDisplayState() 250 changes |= ClusterHomeManager.CONFIG_DISPLAY_INSETS; in onDisplayState() 252 sendDisplayState(changes); in onDisplayState() 256 private void sendDisplayState(int changes) { in sendDisplayState() argument 262 callback.onClusterStateChanged(state, changes); in sendDisplayState()
|
/packages/providers/MediaProvider/src/com/android/providers/media/photopicker/ui/ |
D | TEST_MAPPING | 7 // For changes in Photopicker UI we want to run all the photopicker 19 // For changes in Photopicker UI we want to run all the photopicker 31 // For changes in Photopicker UI we want to run all the photopicker
|
/packages/apps/Settings/src/com/android/settings/datetime/timezone/ |
D | SpannableUtil.java | 130 List<int[]> changes = new ArrayList<>(); in applyCaseMapToSpannable() local 138 changes.add(change); in applyCaseMapToSpannable() 141 Collections.reverse(changes); in applyCaseMapToSpannable() 143 for (int[] c : changes) { in applyCaseMapToSpannable()
|
/packages/apps/Car/SystemUI/src/com/android/systemui/car/wm/cluster/ |
D | ClusterDisplayController.java | 104 public void onClusterStateChanged(ClusterState state, int changes) { 110 Slog.d(TAG, "onClusterStateChanged: changes=" + changes 113 if ((changes & CONFIG_DISPLAY_ID) != 0) { 120 if ((changes & CONFIG_DISPLAY_BOUNDS) != 0 && mRootTDAToken != null) {
|
/packages/providers/MediaProvider/tests/src/com/android/providers/media/photopicker/ |
D | TEST_MAPPING | 15 // For changes in Photopicker tests we want to run all of the photopicker 35 // For changes in Photopicker tests we want to run all of the photopicker 55 // For changes in Photopicker tests we want to run all of the photopicker
|
/packages/modules/Wifi/framework/ |
D | TEST_MAPPING | 4 // run service unit tests for API changes (since API changes can break service, but not the
|
/packages/apps/Settings/src/com/android/settings/development/compat/ |
D | PlatformCompatDashboard.java | 220 PreferenceCategory createChangeCategoryPreference(List<CompatibilityChangeInfo> changes, in createChangeCategoryPreference() argument 226 addChangePreferencesToCategory(changes, category, configMappings); in createChangeCategoryPreference() 230 private void addChangePreferencesToCategory(List<CompatibilityChangeInfo> changes, in addChangePreferencesToCategory() argument 232 for (CompatibilityChangeInfo change : changes) { in addChangePreferencesToCategory()
|
/packages/apps/Settings/src/com/android/settings/accessibility/ |
D | OWNERS | 1 # The Android Accessibility team should approve all changes to Settings > Accessibility content. 14 # Core Settings owner for emergency changes.
|
/packages/apps/Settings/src/com/android/settings/wfd/ |
D | WifiDisplaySettings.java | 229 private void scheduleUpdate(int changes) { in scheduleUpdate() argument 234 mPendingChanges |= changes; in scheduleUpdate() 245 private void update(int changes) { in update() argument 249 if ((changes & CHANGE_SETTINGS) != 0) { in update() 262 if ((changes & CHANGE_WIFI_DISPLAY_STATUS) != 0) { in update() 617 final int changes = mPendingChanges; 619 update(changes);
|
/packages/modules/Uwb/docs/ |
D | FiRa_CRs_Android.csv | 72 CR410,NA,CR adds clarifying text; no Android stack changes required 74 CR414,NA,CR adds clarifying text; no Android stack changes required 80 CR426,NA,CR clarifies UWBS behavior; no Android stack changes required 110 CR470,NA,CR specifies UWBS behavior; no Android stack changes required. 131 CR503,NA,CR specifies UWBS behavior; no Android stack changes required.
|
/packages/modules/Connectivity/tests/unit/java/com/android/server/connectivity/mdns/ |
D | MdnsResponseDecoderTests.java | 438 final ArraySet<MdnsResponse> changes = decode( in testDecodeWithIpv4AddressRemove() local 441 assertEquals(1, changes.size()); in testDecodeWithIpv4AddressRemove() 442 assertEquals(1, changes.valueAt(0).getInet4AddressRecords().size()); in testDecodeWithIpv4AddressRemove() 444 changes.valueAt(0).getInet4AddressRecords().get(0).getInet4Address()); in testDecodeWithIpv4AddressRemove() 566 final ArraySet<MdnsResponse> changes = decode( in testDecodeWithNoChange() local 570 assertEquals(0, changes.size()); in testDecodeWithNoChange()
|
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/ |
D | VideoCallTests.java | 278 List<CallAudioState> changes = callAudioStateArgumentCaptor.getAllValues(); in verifyAudioRoute() 279 assertEquals(expectedRoute, changes.get(changes.size() - 1).getRoute()); in verifyAudioRoute()
|
/packages/apps/Car/Cluster/ClusterHomeSample/src/com/android/car/cluster/home/ |
D | ClusterHomeApplication.java | 344 ClusterState state, @ClusterHomeManager.Config int changes) { 346 Log.d(TAG, "onClusterStateChanged: changes=" + Integer.toHexString(changes) + 352 if ((changes & ClusterHomeManager.CONFIG_DISPLAY_BOUNDS) != 0 353 || (changes & ClusterHomeManager.CONFIG_DISPLAY_INSETS) != 0 354 || ((changes & ClusterHomeManager.CONFIG_UI_TYPE) != 0
|
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/ |
D | OverviewComponentObserver.java | 215 boolean canHandleConfigChanges(ComponentName component, int changes) { in canHandleConfigChanges() argument 218 if ((changes & orientationChange) == orientationChange) { in canHandleConfigChanges() 225 return configMask != 0 && (~configMask & changes) == 0; in canHandleConfigChanges()
|
/packages/services/Car/car-lib/src/android/car/cluster/ |
D | ClusterHomeManager.java | 107 void onClusterStateChanged(ClusterState state, @Config int changes); in onClusterStateChanged() argument 302 public void onClusterStateChanged(@NonNull ClusterState state, @Config int changes) { in onClusterStateChanged() argument 307 () -> cb.mListener.onClusterStateChanged(state, changes)); in onClusterStateChanged()
|
D | IClusterStateListener.aidl | 27 void onClusterStateChanged(in ClusterState state, int changes) = 1; in onClusterStateChanged() argument
|
/packages/apps/Car/systemlibs/car-assist-client-lib/ |
D | OWNERS | 1 # People who can approve changes for submission.
|
/packages/apps/Settings/tests/componenttests/ |
D | OWNERS | 1 # People who can approve changes for submission
|
/packages/services/Car/tools/emulator/ |
D | README.md | 25 * Must re-generate when the types.hal file changes. 36 * Must re-generate whenever the proto file changes.
|
/packages/apps/Car/DebuggingRestrictionController/ |
D | OWNERS | 1 # People who can approve changes for submission
|
/packages/apps/Car/systemlibs/ |
D | OWNERS | 1 # People who can approve changes for submission.
|
/packages/apps/Settings/src/com/android/settings/remoteauth/ |
D | OWNERS | 1 # People who can approve changes for submission
|
/packages/apps/Settings/src/com/android/settings/biometrics2/ |
D | OWNERS | 1 # The Android Biometric team should approve all changes to biometrics2 subdirectories.
|