Lines Matching refs:pw

396         protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
400 pw.println("Permission Denial: can't dump " + SERVICE + " from from pid="
406 dumpImpl(pw);
410 void dumpImpl(PrintWriter pw) {
413 pw.println("Current DeviceStorageMonitor state:");
415 pw.print(" mFreeMem="); pw.print(Formatter.formatFileSize(context, mFreeMem));
416 pw.print(" mTotalMemory=");
417 pw.println(Formatter.formatFileSize(context, mTotalMemory));
419 pw.print(" mFreeMemAfterLastCacheClear=");
420 pw.println(Formatter.formatFileSize(context, mFreeMemAfterLastCacheClear));
422 pw.print(" mLastReportedFreeMem=");
423 pw.print(Formatter.formatFileSize(context, mLastReportedFreeMem));
424 pw.print(" mLastReportedFreeMemTime=");
425 TimeUtils.formatDuration(mLastReportedFreeMemTime, SystemClock.elapsedRealtime(), pw);
426 pw.println();
428 pw.print(" mLowMemFlag="); pw.print(mLowMemFlag);
429 pw.print(" mMemFullFlag="); pw.println(mMemFullFlag);
430 pw.print(" mIsBootImageOnDisk="); pw.print(mIsBootImageOnDisk);
432 pw.print(" mClearSucceeded="); pw.print(mClearSucceeded);
433 pw.print(" mClearingCache="); pw.println(mClearingCache);
435 pw.print(" mMemLowThreshold=");
436 pw.print(Formatter.formatFileSize(context, mMemLowThreshold));
437 pw.print(" mMemFullThreshold=");
438 pw.println(Formatter.formatFileSize(context, mMemFullThreshold));
440 pw.print(" mMemCacheStartTrimThreshold=");
441 pw.print(Formatter.formatFileSize(context, mMemCacheStartTrimThreshold));
442 pw.print(" mMemCacheTrimToThreshold=");
443 pw.println(Formatter.formatFileSize(context, mMemCacheTrimToThreshold));