/aosp14/frameworks/base/packages/SystemUI/compose/core/src/com/android/compose/animation/scene/ |
H A D | SceneTransitionLayoutImpl.kt | 120 for (newKey in channel) { 123 val newKey = channel.tryReceive().getOrNull() ?: newKey regex 124 animateToScene(this@SceneTransitionLayoutImpl, newKey)
|
/aosp14/frameworks/base/services/core/java/com/android/server/locksettings/ |
H A D | SyntheticPasswordCrypto.java | 280 final KeyDescriptor newKey = new KeyDescriptor(); in migrateLockSettingsKey() local 281 newKey.domain = Domain.SELINUX; in migrateLockSettingsKey() 282 newKey.nspace = SyntheticPasswordCrypto.keyNamespace(); in migrateLockSettingsKey() 283 newKey.alias = alias; in migrateLockSettingsKey() 285 int err = AndroidKeyStoreMaintenance.migrateKeyNamespace(legacyKey, newKey); in migrateLockSettingsKey()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/media/controls/pipeline/ |
H A D | MediaTimeoutLogger.kt | 36 fun logMigrateListener(oldKey: String?, newKey: String?, hadListener: Boolean) = 42 str2 = newKey
|
/aosp14/frameworks/base/core/java/android/app/ |
H A D | ActivityTransitionState.java | 126 int newKey = mExitTransitionCoordinatorsKey++; in addExitTransitionCoordinator() local 127 mExitTransitionCoordinators.append(newKey, ref); in addExitTransitionCoordinator() 128 return newKey; in addExitTransitionCoordinator()
|
H A D | ResourcesManager.java | 1218 final ResourcesKey newKey = rebaseActivityOverrideConfig(activityResource, in updateResourcesForActivity() local 1220 if (newKey == null) { in updateResourcesForActivity() 1227 findOrCreateResourcesImplForKeyLocked(newKey); in updateResourcesForActivity() 1295 final ResourcesKey newKey = new ResourcesKey(oldKey.mResDir, in rebaseActivityOverrideConfig() local 1301 + " to newKey=" + newKey + ", displayId=" + displayId); in rebaseActivityOverrideConfig() 1304 return newKey; in rebaseActivityOverrideConfig() 1624 final ResourcesKey newKey = new ResourcesKey( in onLoadersChanged() local 1634 final ResourcesImpl impl = findOrCreateResourcesImplForKeyLocked(newKey); in onLoadersChanged()
|
H A D | Notification.java | 8380 String newKey = newM.getSenderPerson() == null in areNotificationsVisiblyDifferent() local 8382 if (!Objects.equals(oldKey, newKey)) { in areNotificationsVisiblyDifferent()
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/media/controls/pipeline/ |
H A D | MediaTimeoutListenerTest.kt | 191 val newKey = "NEWKEY" regex 200 mediaTimeoutListener.onMediaDataLoaded(newKey, KEY, mediaData) 203 verify(logger).logMigrateListener(eq(KEY), eq(newKey), eq(true)) 211 val newKey = "NEWKEY" regex 220 mediaTimeoutListener.onMediaDataLoaded(newKey, KEY, mediaData) 225 verify(logger).logUpdateListener(eq(newKey), eq(false))
|
/aosp14/frameworks/base/core/java/android/accounts/ |
H A D | AuthenticatorDescription.java | 77 public static AuthenticatorDescription newKey(String type) { in newKey() method in AuthenticatorDescription
|
/aosp14/frameworks/base/services/core/java/com/android/server/accounts/ |
H A D | AccountAuthenticatorCache.java | 95 return AuthenticatorDescription.newKey(parser.getAttributeValue(null, "type")); in createFromXml()
|
H A D | AccountManagerService.java | 2993 AuthenticatorDescription.newKey(account.type), accounts.userId); in getAuthToken() 5275 AuthenticatorDescription.newKey(authenticatorType), mAccounts.userId);
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/media/controls/ui/ |
H A D | MediaCarouselController.kt | 1352 newKey: String, 1355 if (oldKey == null || oldKey == newKey) { 1362 val removedPlayer = removeMediaPlayer(newKey) 1363 removedPlayer?.run { debugLogger?.logPotentialMemoryLeak(newKey) } 1364 mediaData.put(newKey, it)
|
/aosp14/frameworks/base/services/core/java/com/android/server/location/listeners/ |
H A D | ListenerMultiplexer.java | 212 @NonNull TKey newKey, in onRegistrationReplaced() argument 215 onRegistrationAdded(newKey, newRegistration); in onRegistrationReplaced()
|
/aosp14/frameworks/base/core/java/android/content/ |
H A D | SyncAdapterType.java | 177 public static SyncAdapterType newKey(String authority, String accountType) { in newKey() method in SyncAdapterType
|
H A D | SyncAdaptersCache.java | 154 return SyncAdapterType.newKey(authority, accountType); in createFromXml()
|
/aosp14/frameworks/base/services/tests/mockingservicestests/src/com/android/server/location/listeners/ |
H A D | ListenerMultiplexerTest.java | 466 Consumer<TestListenerRegistration> newKey, in onRegistrationReplaced() argument 468 mCallbacks.onRegistrationReplaced(oldKey, oldRegistration, newKey, newRegistration); in onRegistrationReplaced()
|
/aosp14/frameworks/base/services/core/java/com/android/server/content/ |
H A D | SyncOperation.java | 312 String newKey = key.substring(8); // Strip off the 'ACCOUNT:' prefix. in maybeCreateFromJobExtras() local 316 extras.putParcelable(newKey, account); in maybeCreateFromJobExtras()
|
H A D | SyncManager.java | 933 SyncAdapterType.newKey(providerName, account.type), userId); in getIsSyncable() 1117 mSyncAdapters.getServiceInfo(SyncAdapterType.newKey(authority, in scheduleSync() 1235 final SyncAdapterType type = SyncAdapterType.newKey(authority, account.type); in computeSyncable() 1377 SyncAdapterType.newKey(authority, accountType), in getSyncAdapterPackageAsUser() 3512 SyncAdapterType.newKey( in updateOrAddPeriodicSyncH() 3697 SyncAdapterType.newKey(info.provider, info.account.type); in dispatchSyncOperation()
|
/aosp14/frameworks/base/core/java/android/inputmethodservice/ |
H A D | KeyboardView.java | 891 Key newKey = keys[mCurrentKeyIndex]; in showPreview() local 892 newKey.onPressed(); in showPreview() 894 final int keyCode = newKey.codes[0]; in showPreview()
|
/aosp14/frameworks/base/media/java/android/media/ |
H A D | MediaCodec.java | 3000 @NonNull byte[] newKey, 3006 key = newKey;
|
/aosp14/frameworks/base/services/core/java/com/android/server/location/provider/ |
H A D | LocationProviderManager.java | 2082 Object newKey, Registration newRegistration) { 2086 super.onRegistrationReplaced(oldKey, oldRegistration, newKey, newRegistration);
|
/aosp14/frameworks/base/tools/aapt2/integration-tests/CommandTests/ |
H A D | android-33.jar | AndroidManifest.xml
META-INF/
META-INF/MANIFEST.MF
NOTICES/
NOTICES/libcore ... |
/aosp14/frameworks/base/core/api/ |
H A D | current.txt | 3801 method public static android.accounts.AuthenticatorDescription newKey(String); 11494 method public static android.content.SyncAdapterType newKey(String, String);
|