Searched defs:stackBoxId (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/services/java/com/android/server/wm/
H A DStackBox.java108 * @param stackBoxId The StackBox being searched for.
111 boolean contains(int stackBoxId) { argument
112 return mStackBoxId == stackBoxId ||
113 (mStack == null && (mFirst.contains(stackBoxId) || mSecond.contains(stackBoxId)));
274 boolean resize(int stackBoxId, float weight) { argument
275 if (mStackBoxId != stackBoxId) {
277 (mFirst.resize(stackBoxId, weight) || mSecond.resize(stackBoxId, weight));
H A DDisplayContent.java267 throw new IllegalArgumentException("createStack: stackBoxId " + relativeStackBoxId
280 boolean resizeStack(int stackBoxId, float weight) { argument
283 if (box.resize(stackBoxId, weight)) {
311 info.stackBoxId = box.mStackBoxId;
H A DWindowManagerService.java4901 public void resizeStackBox(int stackBoxId, float weight) { argument
4910 if (mDisplayContents.valueAt(displayNdx).resizeStack(stackBoxId, weight)) {
4916 throw new IllegalArgumentException("resizeStack: stackBoxId " + stackBoxId
/frameworks/base/core/java/android/app/
H A DActivityManager.java1296 public int stackBoxId; field in class:ActivityManager.StackBoxInfo
1311 dest.writeInt(stackBoxId);
1325 stackBoxId = source.readInt();
1362 sb.append(prefix); sb.append("Box id=" + stackBoxId); sb.append(" weight=" + weight);
H A DActivityManagerNative.java638 int stackBoxId = data.readInt();
640 resizeStackBox(stackBoxId, weight);
655 int stackBoxId = data.readInt();
656 StackBoxInfo info = getStackBoxInfo(stackBoxId);
2750 public void resizeStackBox(int stackBoxId, float weight) throws RemoteException argument
2755 data.writeInt(stackBoxId);
2776 public StackBoxInfo getStackBoxInfo(int stackBoxId) throws RemoteException argument
2781 data.writeInt(stackBoxId);
H A DIActivityManager.java123 public void resizeStackBox(int stackBoxId, float weight) throws RemoteException; argument
125 public StackBoxInfo getStackBoxInfo(int stackBoxId) throws RemoteException; argument
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java7151 public void resizeStackBox(int stackBoxId, float weight) { argument
7156 mWindowManager.resizeStackBox(stackBoxId, weight);
7227 public StackBoxInfo getStackBoxInfo(int stackBoxId) { argument
7238 if (stackBoxInfo.stackBoxId == stackBoxId) {

Completed in 254 milliseconds