Home | History | Annotate | Download | only in wm

Lines Matching defs:pw

202     public void dump(String prefix, PrintWriter pw) {
203 pw.println(prefix + "DisplayFrames w=" + mDisplayWidth + " h=" + mDisplayHeight
206 dumpFrame(mStable, "mStable", myPrefix, pw);
207 dumpFrame(mStableFullscreen, "mStableFullscreen", myPrefix, pw);
208 dumpFrame(mDock, "mDock", myPrefix, pw);
209 dumpFrame(mCurrent, "mCurrent", myPrefix, pw);
210 dumpFrame(mSystem, "mSystem", myPrefix, pw);
211 dumpFrame(mContent, "mContent", myPrefix, pw);
212 dumpFrame(mVoiceContent, "mVoiceContent", myPrefix, pw);
213 dumpFrame(mOverscan, "mOverscan", myPrefix, pw);
214 dumpFrame(mRestrictedOverscan, "mRestrictedOverscan", myPrefix, pw);
215 dumpFrame(mRestricted, "mRestricted", myPrefix, pw);
216 dumpFrame(mUnrestricted, "mUnrestricted", myPrefix, pw);
217 dumpFrame(mDisplayInfoOverscan, "mDisplayInfoOverscan", myPrefix, pw);
218 dumpFrame(mRotatedDisplayInfoOverscan, "mRotatedDisplayInfoOverscan", myPrefix, pw);
219 pw.println(myPrefix + "mDisplayCutout=" + mDisplayCutout);
222 private void dumpFrame(Rect frame, String name, String prefix, PrintWriter pw) {
223 pw.print(prefix + name + "="); frame.printShortString(pw); pw.println();