Searched defs:prefix (Results 76 - 81 of 81) sorted by relevance

1234

/frameworks/base/services/java/com/android/server/
H A DPowerManagerService.java1967 public void dump(PrintWriter pw, String prefix) { argument
1968 pw.println(prefix + "animating=" + animating
H A DPackageManagerService.java259 // the prefix "LI".
278 // this lock held have the prefix "LP".
4208 protected void dumpFilter(PrintWriter out, String prefix, argument
4210 out.print(prefix); out.print(
4366 protected void dumpFilter(PrintWriter out, String prefix, argument
4368 out.print(prefix); out.print(
5424 private static String getNextCodePath(String oldCodePath, String prefix, String suffix) { argument
5427 // Fall back to default value of idx=1 if prefix is not
5435 // If oldCodePath already contains prefix find out the
5437 int sidx = subStr.lastIndexOf(prefix);
[all...]
H A DWindowManagerService.java1121 void logWindowList(String prefix) { argument
1125 Slog.v(TAG, prefix + "#" + N + ": " + mWindows.get(N));
5802 void dump(PrintWriter pw, String prefix) { argument
5803 pw.print(prefix); pw.print("mNumWindow="); pw.print(mNumWindow);
7121 void dump(PrintWriter pw, String prefix) { argument
7122 pw.print(prefix); pw.print("mSession="); pw.print(mSession);
7124 pw.print(prefix); pw.print("mAttrs="); pw.println(mAttrs);
7126 pw.print(prefix); pw.print("mAttachedWindow="); pw.print(mAttachedWindow);
7130 pw.print(prefix); pw.print("mIsImWindow="); pw.print(mIsImWindow);
7135 pw.print(prefix); p
7334 dump(PrintWriter pw, String prefix) argument
7664 dump(PrintWriter pw, String prefix) argument
[all...]
/frameworks/base/include/utils/
H A DResourceTypes.h535 // The prefix of the namespace.
536 struct ResStringPool_ref prefix; member in struct:android::ResXMLTree_namespaceExt
/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsImpl.java381 public void logState(Printer pw, String prefix) { argument
382 pw.println(prefix + "mCount=" + mCount.get()
613 public void logState(Printer pw, String prefix) { argument
614 pw.println(prefix + " mCount=" + mCount
617 pw.println(prefix + "mTotalTime=" + mTotalTime
619 pw.println(prefix + "mLastTime=" + mLastTime
747 public void logState(Printer pw, String prefix) { argument
748 super.logState(pw, prefix);
749 pw.println(prefix + "mCurrentReportedCount=" + mCurrentReportedCount
862 public void logState(Printer pw, String prefix) { argument
[all...]
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java7866 String prefix, String label, boolean complete) {
7873 pw.print(prefix);
7877 lastTask.dump(pw, prefix + " ");
7880 pw.print(prefix); pw.print(full ? " * " : " "); pw.print(label);
7884 r.dump(pw, prefix + " ");
7889 private static String buildOomTag(String prefix, String space, int val, int base) { argument
7891 if (space == null) return prefix;
7892 return prefix + " ";
7894 return prefix + "+" + Integer.toString(val-base);
7899 String prefix, Strin
7865 dumpHistoryList(PrintWriter pw, List list, String prefix, String label, boolean complete) argument
7897 dumpProcessList(PrintWriter pw, ActivityManagerService service, List list, String prefix, String normalLabel, String persistentLabel) argument
7914 dumpProcessOomList(PrintWriter pw, ActivityManagerService service, List<ProcessRecord> list, String prefix, String normalLabel, String persistentLabel, boolean inclDetails) argument
8040 dumpApplicationMemoryUsage(FileDescriptor fd, PrintWriter pw, List list, String prefix, String[] args) argument
[all...]

Completed in 321 milliseconds

1234