Home
last modified time | relevance | path

Searched refs:oldToken (Results 1 – 8 of 8) sorted by relevance

/aosp14/frameworks/base/tools/lint/framework/checks/src/main/java/com/google/android/lint/
H A DCallingIdentityTokenDetector.kt107 val oldToken = tokensMap[variableName] regex
108 if (oldToken != null) {
111 oldToken.location,
112 getIncidentMessageUnusedToken(oldToken.variableName)
/aosp14/frameworks/base/services/core/java/com/android/server/wm/
H A DInputManagerCallback.java244 public void notifyFocusChanged(IBinder oldToken, IBinder newToken) { in notifyFocusChanged() argument
246 mService::reportFocusChanged, oldToken, newToken)); in notifyFocusChanged()
H A DDisplayContent.java4339 final WindowToken oldToken = mTokenMap.get(mImeTargetTokenListenerPair.first); in setImeInputTarget() local
4340 if (oldToken != null) { in setImeInputTarget()
4341 oldToken.unregisterWindowContainerListener(mImeTargetTokenListenerPair.second); in setImeInputTarget()
H A DWindowManagerService.java5298 void reportFocusChanged(IBinder oldToken, IBinder newToken) { in reportFocusChanged() argument
5302 lastTarget = getInputTargetFromToken(oldToken); in reportFocusChanged()
5323 if (lastFocusedWindow != null && lastFocusedWindow.mInputChannelToken == oldToken) { in reportFocusChanged()
/aosp14/frameworks/base/services/backup/java/com/android/server/backup/
H A DUserBackupManagerService.java1967 final long oldToken = Binder.clearCallingIdentity(); in cancelBackups() local
1983 Binder.restoreCallingIdentity(oldToken); in cancelBackups()
4099 final long oldToken = Binder.clearCallingIdentity(); in isAppEligibleForBackup() local
4112 Binder.restoreCallingIdentity(oldToken); in isAppEligibleForBackup()
4121 final long oldToken = Binder.clearCallingIdentity(); in filterAppsEligibleForBackup() local
4138 Binder.restoreCallingIdentity(oldToken); in filterAppsEligibleForBackup()
/aosp14/frameworks/base/services/core/java/com/android/server/input/
H A DInputManagerService.java2395 private void notifyFocusChanged(IBinder oldToken, IBinder newToken) { in notifyFocusChanged() argument
2396 mWindowManagerCallbacks.notifyFocusChanged(oldToken, newToken); in notifyFocusChanged()
2919 void notifyFocusChanged(IBinder oldToken, IBinder newToken); in notifyFocusChanged() argument
/aosp14/frameworks/base/services/core/jni/
H A Dcom_android_server_input_InputManagerService.cpp340 void notifyFocusChanged(const sp<IBinder>& oldToken, const sp<IBinder>& newToken) override;
942 void NativeInputManager::notifyFocusChanged(const sp<IBinder>& oldToken, in notifyFocusChanged() argument
952 jobject oldTokenObj = javaObjectForIBinder(env, oldToken); in notifyFocusChanged()
/aosp14/frameworks/base/services/core/java/com/android/server/am/
H A DActivityManagerService.java5747 ImportanceToken oldToken = mImportantProcesses.get(pid); in setProcessImportant() local
5748 if (oldToken != null) { in setProcessImportant()
5749 oldToken.token.unlinkToDeath(oldToken, 0); in setProcessImportant()