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

/frameworks/base/services/java/com/android/server/wm/
H A DAppWindowToken.java41 final IApplicationToken appToken; field in class:AppWindowToken
105 appToken = _token;
129 if (appToken == null) {
227 if (appToken != null) {
H A DWindowManagerService.java4680 Slog.i(TAG, "Set freezing of " + wtoken.appToken
4716 if (wtoken == null || wtoken.appToken == null) {
4734 if (wtoken == null || wtoken.appToken == null) {
5742 public Bitmap screenshotApplications(IBinder appToken, int displayId, int width, int height) { argument
5774 && mInputMethodTarget.mAppToken.appToken != null
5775 && mInputMethodTarget.mAppToken.appToken.asBinder() == appToken;
5791 if (!including && appToken != null) {
5798 if (ws.mAppToken == null || ws.mAppToken.token != appToken) {
7511 wtoken.appToken
[all...]
/frameworks/base/services/java/com/android/server/am/
H A DActivityRecord.java59 final IApplicationToken.Stub appToken; // window manager token field in class:ActivityRecord
327 appToken = new Token(this);
581 app.thread.scheduleNewIntent(ar, appToken);
681 service.mWindowManager.pauseKeyDispatching(appToken);
688 service.mWindowManager.resumeKeyDispatching(appToken);
745 service.mWindowManager.startAppFreezingScreen(appToken, configChanges);
752 service.mWindowManager.stopAppFreezingScreen(appToken, force);
922 app.thread.scheduleSleeping(appToken, _sleeping);
/frameworks/base/core/java/android/view/
H A DWindow.java466 public void setWindowManager(WindowManager wm, IBinder appToken, String appName) { argument
467 setWindowManager(wm, appToken, appName, false);
477 public void setWindowManager(WindowManager wm, IBinder appToken, String appName, argument
479 mAppToken = appToken;
H A DWindowManagerPolicy.java632 * APPLICATION_STARTING_TYPE window with the given appToken to the window
637 * @param appToken Token of the application being started.
651 public View addStartingWindow(IBinder appToken, String packageName, argument
667 * @param appToken Token of the application that has started.
672 public void removeStartingWindow(IBinder appToken, View window); argument
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindowManager.java1514 public View addStartingWindow(IBinder appToken, String packageName, int theme, argument
1574 params.token = appToken;
1598 + " / " + appToken + ": "
1608 Log.w(TAG, appToken + " already running, starting window not displayed");
1613 Log.w(TAG, appToken + " failed creating starting window", e);
1620 public void removeStartingWindow(IBinder appToken, View window) { argument
1624 Log.v(TAG, "Removing starting window for " + appToken + ": " + window, e);

Completed in 2311 milliseconds