Searched refs:stackBoxId (Results 1 - 8 of 8) 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)));
278 boolean resize(int stackBoxId, float weight) { argument
279 if (mStackBoxId != stackBoxId) {
281 (mFirst.resize(stackBoxId, weight) || mSecond.resize(stackBoxId, weight));
H A DDisplayContent.java253 throw new IllegalArgumentException("createStack: stackBoxId " + relativeStackBoxId
264 boolean resizeStack(int stackBoxId, float weight) { argument
267 if (box.resize(stackBoxId, weight)) {
295 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/cmds/am/src/com/android/commands/am/
H A DAm.java1606 int stackBoxId = Integer.valueOf(stackBoxIdStr);
1611 mAm.resizeStackBox(stackBoxId, weight);
1629 int stackBoxId = Integer.valueOf(stackBoxIdStr);
1630 StackBoxInfo stackBoxInfo = mAm.getStackBoxInfo(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 DIActivityManager.java123 public void resizeStackBox(int stackBoxId, float weight) throws RemoteException; argument
125 public StackBoxInfo getStackBoxInfo(int stackBoxId) throws RemoteException; argument
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);
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java7003 public void resizeStackBox(int stackBoxId, float weight) { argument
7008 mWindowManager.resizeStackBox(stackBoxId, weight);
7079 public StackBoxInfo getStackBoxInfo(int stackBoxId) { argument
7090 if (stackBoxInfo.stackBoxId == stackBoxId) {

Completed in 184 milliseconds