Searched defs:appToken (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/services/java/com/android/server/wm/
H A DAppWindowToken.java42 final IApplicationToken appToken; field in class:AppWindowToken
113 appToken = _token;
277 if (appToken == null) {
374 if (appToken != null) {
H A DWindowManagerService.java4070 Slog.i(TAG, "Set freezing of " + wtoken.appToken
4106 if (wtoken == null || wtoken.appToken == null) {
4124 if (wtoken == null || wtoken.appToken == null) {
5056 public Bitmap screenshotApplications(IBinder appToken, int width, int height) { argument
5084 && mInputMethodTarget.mAppToken.appToken != null
5085 && mInputMethodTarget.mAppToken.appToken.asBinder() == appToken;
5100 if (!including && appToken != null) {
5107 if (ws.mAppToken == null || ws.mAppToken.token != appToken) {
6719 wtoken.appToken
[all...]
/frameworks/base/services/java/com/android/server/am/
H A DActivityRecord.java55 final IApplicationToken.Stub appToken; // window manager token field in class:ActivityRecord
283 appToken = new Token(this);
522 app.thread.scheduleNewIntent(ar, appToken);
547 service.mWindowManager.pauseKeyDispatching(appToken);
554 service.mWindowManager.resumeKeyDispatching(appToken);
615 service.mWindowManager.startAppFreezingScreen(appToken, configChanges);
622 service.mWindowManager.stopAppFreezingScreen(appToken, force);
792 app.thread.scheduleSleeping(appToken, _sleeping);
/frameworks/base/core/java/android/view/
H A DWindow.java449 public void setWindowManager(WindowManager wm, IBinder appToken, String appName) { argument
450 setWindowManager(wm, appToken, appName, false);
460 public void setWindowManager(WindowManager wm, IBinder appToken, String appName, argument
462 mAppToken = appToken;
H A DWindowManagerPolicy.java569 * APPLICATION_STARTING_TYPE window with the given appToken to the window
574 * @param appToken Token of the application being started.
588 public View addStartingWindow(IBinder appToken, String packageName, argument
604 * @param appToken Token of the application that has started.
609 public void removeStartingWindow(IBinder appToken, View window); argument
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindowManager.java1256 public View addStartingWindow(IBinder appToken, String packageName, int theme, argument
1312 params.token = appToken;
1335 + " / " + appToken + ": "
1345 Log.w(TAG, appToken + " already running, starting window not displayed");
1350 Log.w(TAG, appToken + " failed creating starting window", e);
1357 public void removeStartingWindow(IBinder appToken, View window) { argument
1359 // Log.i(TAG, "remove " + appToken + " " + window, e);
1362 TAG, "Removing starting window for " + appToken + ": " + window);

Completed in 153 milliseconds