Searched refs:wtoken (Results 1 - 12 of 12) sorted by relevance

/frameworks/base/core/java/android/service/quicksettings/
H A DIQSTileService.aidl26 void onClick(IBinder wtoken);
H A DTileService.java361 public void onClick(IBinder wtoken) throws RemoteException {
362 mHandler.obtainMessage(H.MSG_TILE_CLICKED, wtoken).sendToTarget();
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowSurfacePlacer.java271 final AppWindowToken wtoken = mService.mOpeningApps.valueAt(i);
276 wtoken.clearAnimatingFlags();
361 private static LayoutParams getAnimLp(AppWindowToken wtoken) { argument
362 final WindowState mainWindow = wtoken != null ? wtoken.findMainWindow() : null;
434 final AppWindowToken wtoken = i < array1count
437 final int prefixOrderIndex = wtoken.getPrefixOrderIndex();
438 if (filter.test(wtoken) && prefixOrderIndex > bestPrefixOrderIndex) {
440 bestToken = wtoken;
461 AppWindowToken wtoken
[all...]
H A DAppWindowContainerController.java326 final AppWindowToken wtoken = mContainer;
335 if (!visible && wtoken.hiddenRequested) {
337 if (!deferHidingClient && wtoken.mDeferHidingClient) {
340 wtoken.mDeferHidingClient = deferHidingClient;
341 wtoken.setClientHidden(true);
348 + " hidden=" + wtoken.isHidden() + " hiddenRequested="
349 + wtoken.hiddenRequested + " Callers=" + Debug.getCallers(6));
351 mService.mOpeningApps.remove(wtoken);
352 mService.mClosingApps.remove(wtoken);
353 wtoken
[all...]
H A DTaskSnapshotCache.java90 void onAppRemoved(AppWindowToken wtoken) { argument
91 final Integer taskId = mAppTaskMap.get(wtoken);
100 void onAppDied(AppWindowToken wtoken) { argument
101 final Integer taskId = mAppTaskMap.get(wtoken);
H A DTaskSnapshotController.java379 void onAppRemoved(AppWindowToken wtoken) { argument
380 mCache.onAppRemoved(wtoken);
386 void onAppDied(AppWindowToken wtoken) { argument
387 mCache.onAppDied(wtoken);
H A DTask.java141 void addChild(AppWindowToken wtoken, int position) { argument
143 super.addChild(wtoken, position);
733 final AppWindowToken wtoken = mChildren.get(i);
734 pw.println(triplePrefix + "Activity #" + i + " " + wtoken);
735 wtoken.dump(pw, quadruplePrefix, dumpAll);
H A DWindowStateAnimator.java603 final AppWindowToken wtoken = mWin.mAppToken;
604 if (wtoken != null) {
605 if (mWin == wtoken.startingWindow) {
606 wtoken.startingDisplayed = false;
H A DTaskStack.java718 final AppWindowToken wtoken = mExitingAppTokens.get(appNdx);
719 if (wtoken.getTask() == task) {
720 wtoken.mIsExiting = false;
H A DDisplayContent.java484 final AppWindowToken wtoken = w.mAppToken;
487 if (wtoken != null && (wtoken.removed || wtoken.sendingToBottom)) {
488 if (DEBUG_FOCUS) Slog.v(TAG_WM, "Skipping " + wtoken + " because "
489 + (wtoken.removed ? "removed" : "sendingToBottom"));
510 if (wtoken != null && w.mAttrs.type != TYPE_APPLICATION_STARTING) {
511 if (focusedApp.compareTo(wtoken) > 0) {
H A DWindowManagerService.java2785 final AppWindowToken wtoken = mRoot.getAppWindowToken(token);
2786 if (wtoken != null) {
2787 final WindowState win = wtoken.findMainWindow();
2886 final AppWindowToken wtoken = mRoot.getAppWindowToken(token);
2887 return wtoken != null && wtoken.containsShowWhenLockedWindow();
2897 final AppWindowToken wtoken = mRoot.getAppWindowToken(token);
2898 return wtoken != null && wtoken.containsDismissKeyguardWindow();
/frameworks/base/core/java/android/app/
H A DActivityThread.java3797 IBinder wtoken = r.mPendingRemoveWindow.getDecorView().getWindowToken();
3798 if (wtoken != null) {
3799 WindowManagerGlobal.getInstance().closeAll(wtoken,
4486 IBinder wtoken = v.getWindowToken();
4501 if (wtoken != null && r.mPendingRemoveWindow == null) {
4502 WindowManagerGlobal.getInstance().closeAll(wtoken,

Completed in 170 milliseconds