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.java4063 Slog.i(TAG, "Set freezing of " + wtoken.appToken
4099 if (wtoken == null || wtoken.appToken == null) {
4117 if (wtoken == null || wtoken.appToken == null) {
5049 public Bitmap screenshotApplications(IBinder appToken, int width, int height) { argument
5077 && mInputMethodTarget.mAppToken.appToken != null
5078 && mInputMethodTarget.mAppToken.appToken.asBinder() == appToken;
5093 if (!including && appToken != null) {
5100 if (ws.mAppToken == null || ws.mAppToken.token != appToken) {
6712 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
281 appToken = new Token(this);
520 app.thread.scheduleNewIntent(ar, appToken);
545 service.mWindowManager.pauseKeyDispatching(appToken);
552 service.mWindowManager.resumeKeyDispatching(appToken);
587 service.mWindowManager.startAppFreezingScreen(appToken, configChanges);
594 service.mWindowManager.stopAppFreezingScreen(appToken, force);
763 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.java564 * APPLICATION_STARTING_TYPE window with the given appToken to the window
569 * @param appToken Token of the application being started.
583 public View addStartingWindow(IBinder appToken, String packageName, argument
599 * @param appToken Token of the application that has started.
604 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 1062 milliseconds