Searched refs:prefix (Results 1 - 25 of 95) sorted by relevance

1234

/frameworks/base/services/java/com/android/server/am/
H A DBroadcastRecord.java72 void dump(PrintWriter pw, String prefix) { argument
73 pw.println(prefix + this);
74 pw.println(prefix + intent);
75 pw.println(prefix + "proc=" + callerApp);
76 pw.println(prefix + "caller=" + callerPackage
79 pw.println(prefix + "requiredPermission=" + requiredPermission);
80 pw.println(prefix + "dispatchTime=" + dispatchTime + " ("
82 pw.println(prefix + "startTime=" + startTime + " ("
84 pw.println(prefix + "anrCount=" + anrCount);
85 pw.println(prefix
[all...]
H A DAppBindRecord.java34 void dump(PrintWriter pw, String prefix) { argument
35 pw.println(prefix + "service=" + service);
36 pw.println(prefix + "client=" + client);
37 dumpInIntentBind(pw, prefix);
40 void dumpInIntentBind(PrintWriter pw, String prefix) { argument
42 pw.println(prefix + "Per-process Connections:");
46 pw.println(prefix + " " + c);
H A DBroadcastFilter.java37 public void dump(PrintWriter pw, String prefix) { argument
38 dumpInReceiverList(pw, new PrintWriterPrinter(pw), prefix);
39 receiverList.dumpLocal(pw, prefix);
42 public void dumpInReceiverList(PrintWriter pw, Printer pr, String prefix) { argument
43 super.dump(pr, prefix);
45 pw.print(prefix); pw.print("requiredPermission="); pw.println(requiredPermission);
H A DContentProviderRecord.java56 void dump(PrintWriter pw, String prefix) { argument
57 pw.print(prefix); pw.print("package=");
60 pw.print(prefix); pw.print("app="); pw.println(app);
62 pw.print(prefix); pw.print("launchingApp="); pw.println(launchingApp);
64 pw.print(prefix); pw.print("uid="); pw.print(uid);
66 pw.print(prefix); pw.print("name="); pw.println(info.authority);
68 pw.print(prefix); pw.print("isSyncable="); pw.print(info.isSyncable);
73 pw.print(prefix); pw.print("clients="); pw.println(clients);
76 pw.print(prefix); pw.print("externals="); pw.println(externals);
H A DIntentBindRecord.java50 void dump(PrintWriter pw, String prefix) { argument
51 pw.print(prefix); pw.print("service="); pw.println(service);
52 dumpInService(pw, prefix);
55 void dumpInService(PrintWriter pw, String prefix) { argument
56 pw.print(prefix); pw.print("intent={");
59 pw.print(prefix); pw.print("binder="); pw.println(binder);
60 pw.print(prefix); pw.print("requested="); pw.print(requested);
68 pw.print(prefix); pw.print("* Client AppBindRecord{");
71 a.dumpInIntentBind(pw, prefix + " ");
H A DProcessRecord.java120 void dump(PrintWriter pw, String prefix) { argument
122 pw.print(prefix); pw.print("class="); pw.println(info.className);
125 pw.print(prefix); pw.print("manageSpaceActivityName=");
128 pw.print(prefix); pw.print("dir="); pw.print(info.sourceDir);
131 pw.print(prefix); pw.print("packageList="); pw.println(pkgList);
134 pw.print(prefix); pw.print("instrumentationClass=");
138 pw.print(prefix); pw.print("instrumentationArguments=");
140 pw.print(prefix); pw.print("instrumentationInfo=");
143 instrumentationInfo.dump(new PrintWriterPrinter(pw), prefix + " ");
146 pw.print(prefix); p
[all...]
H A DConnectionRecord.java33 void dump(PrintWriter pw, String prefix) { argument
34 pw.println(prefix + "binding=" + binding);
36 pw.println(prefix + "activity=" + activity);
38 pw.println(prefix + "conn=" + conn.asBinder()
H A DReceiverList.java69 void dumpLocal(PrintWriter pw, String prefix) { argument
70 pw.print(prefix); pw.print("app="); pw.print(app);
73 pw.print(prefix); pw.print("curBroadcast="); pw.print(curBroadcast);
78 void dump(PrintWriter pw, String prefix) { argument
80 dumpLocal(pw, prefix);
81 String p2 = prefix + " ";
85 pw.print(prefix); pw.print("Filter #"); pw.print(i);
H A DServiceRecord.java82 void dump(PrintWriter pw, String prefix) { argument
83 pw.print(prefix); pw.print("intent={");
86 pw.print(prefix); pw.print("packageName="); pw.println(packageName);
87 pw.print(prefix); pw.print("processName="); pw.println(processName);
89 pw.print(prefix); pw.print("permission="); pw.println(permission);
92 pw.print(prefix); pw.print("baseDir="); pw.print(baseDir);
95 pw.print(prefix); pw.print("app="); pw.println(app);
96 pw.print(prefix); pw.print("isForeground="); pw.print(isForeground);
98 pw.print(prefix); pw.print("startRequested="); pw.print(startRequested);
103 pw.print(prefix); p
[all...]
H A DTaskRecord.java88 void dump(PrintWriter pw, String prefix) { argument
90 pw.print(prefix); pw.print("clearOnBackground="); pw.print(clearOnBackground);
95 pw.print(prefix); pw.print("affinity="); pw.println(affinity);
99 sb.append(prefix); sb.append("intent={");
106 sb.append(prefix); sb.append("affinityIntent={");
112 pw.print(prefix); pw.print("origActivity=");
116 pw.print(prefix); pw.print("realActivity=");
119 pw.print(prefix); pw.print("lastActiveTime="); pw.print(lastActiveTime);
H A DUriPermission.java82 void dump(PrintWriter pw, String prefix) { argument
83 pw.print(prefix); pw.print("modeFlags=0x");
89 pw.print(prefix); pw.print("readActivities="); pw.println(readActivities);
92 pw.print(prefix); pw.print("writeActivities="); pw.println(writeActivities);
/frameworks/base/opengl/libs/tools/
H A Dglapigen32 my $prefix = "";
34 $prefix = "__";
37 $prefix = "__";
40 printf("%s API_ENTRY(%s%s)(%s)", $type, $prefix, $name, $args);
/frameworks/base/core/java/android/app/
H A DApplicationErrorReport.java211 public void dump(Printer pw, String prefix) { argument
212 pw.println(prefix + "exceptionClassName: " + exceptionClassName);
213 pw.println(prefix + "exceptionMessage: " + exceptionMessage);
214 pw.println(prefix + "throwFileName: " + throwFileName);
215 pw.println(prefix + "throwClassName: " + throwClassName);
216 pw.println(prefix + "throwMethodName: " + throwMethodName);
217 pw.println(prefix + "stackTrace: " + stackTrace);
267 public void dump(Printer pw, String prefix) { argument
268 pw.println(prefix + "activity: " + activity);
269 pw.println(prefix
292 dump(Printer pw, String prefix) argument
[all...]
/frameworks/base/core/java/android/server/data/
H A DThrowableData.java104 public String toString(String prefix) { argument
106 append(prefix, builder, this);
110 private static void append(String prefix, StringBuilder builder, argument
112 if (prefix != null) builder.append(prefix);
118 if (prefix != null ) builder.append(prefix);
133 if (prefix != null ) builder.append(prefix);
135 append(prefix, builde
[all...]
/frameworks/base/include/utils/
H A DCallStack.h56 void dump(const char* prefix = 0) const;
59 String8 toString(const char* prefix = 0) const;
65 String8 toStringSingleLevel(const char* prefix, int32_t level) const;
/frameworks/base/core/java/android/content/pm/
H A DComponentInfo.java107 protected void dumpFront(Printer pw, String prefix) { argument
108 super.dumpFront(pw, prefix);
109 pw.println(prefix + "enabled=" + enabled + " exported=" + exported
113 protected void dumpBack(Printer pw, String prefix) { argument
115 pw.println(prefix + "ApplicationInfo:");
116 applicationInfo.dump(pw, prefix + " ");
118 pw.println(prefix + "ApplicationInfo: null");
120 super.dumpBack(pw, prefix);
H A DApplicationInfo.java248 public void dump(Printer pw, String prefix) { argument
249 super.dumpFront(pw, prefix);
250 pw.println(prefix + "className=" + className);
251 pw.println(prefix + "permission=" + permission
253 pw.println(prefix + "taskAffinity=" + taskAffinity);
254 pw.println(prefix + "theme=0x" + Integer.toHexString(theme));
255 pw.println(prefix + "flags=0x" + Integer.toHexString(flags)
257 pw.println(prefix + "sourceDir=" + sourceDir);
258 pw.println(prefix + "publicSourceDir=" + publicSourceDir);
259 pw.println(prefix
[all...]
H A DActivityInfo.java300 public void dump(Printer pw, String prefix) { argument
301 super.dumpFront(pw, prefix);
302 pw.println(prefix + "permission=" + permission);
303 pw.println(prefix + "taskAffinity=" + taskAffinity
305 pw.println(prefix + "launchMode=" + launchMode
308 pw.println(prefix + "screenOrientation=" + screenOrientation
311 super.dumpBack(pw, prefix);
/frameworks/base/tests/FrameworkTest/tests/src/com/android/frameworktest/listview/arrowscroll/
H A DListOfThinItemsTest.java64 String prefix = "after " + i + " down presses, ";
66 assertTrue(prefix + "selected item is below bottom threshold (fading edge or bottom as " +
69 assertTrue(prefix + "first item in list must be at very top or just above",
71 assertTrue(prefix + "last item in list should be at very bottom or just below",
103 String prefix = "after " + i + " up presses, ";
105 assertTrue(prefix + "selected item is above top threshold (fading edge or top as " +
108 assertTrue(prefix + "first item in list must be at very top or just above",
110 assertTrue(prefix + "last item in list should be at very bottom or just below",
/frameworks/base/core/java/android/os/
H A DLooper.java183 public void dump(Printer pw, String prefix) { argument
184 pw.println(prefix + this);
185 pw.println(prefix + "mRun=" + mRun);
186 pw.println(prefix + "mThread=" + mThread);
187 pw.println(prefix + "mQueue=" + ((mQueue != null) ? mQueue : "(null"));
193 pw.println(prefix + " Message " + n + ": " + msg);
197 pw.println(prefix + "(Total messages: " + n + ")");
/frameworks/base/location/java/com/android/internal/location/
H A DMockProvider.java188 public void dump(PrintWriter pw, String prefix) { argument
189 pw.println(prefix + mName);
190 pw.println(prefix + "mHasLocation=" + mHasLocation);
191 pw.println(prefix + "mLocation:");
192 mLocation.dump(new PrintWriterPrinter(pw), prefix + " ");
193 pw.println(prefix + "mHasStatus=" + mHasStatus);
194 pw.println(prefix + "mStatus=" + mStatus);
195 pw.println(prefix + "mStatusUpdateTime=" + mStatusUpdateTime);
196 pw.println(prefix + "mExtras=" + mExtras);
/frameworks/base/tests/FrameworkTest/tests/src/com/android/frameworktest/scroll/arrowscroll/
H A DShortButtonsTest.java60 String prefix = "after " + i + " downs expected button " + i;
62 assertTrue(prefix + " to have focus", button.isFocused());
63 assertTrue(prefix + " to be on screen", isButtonOnScreen(button));
89 String prefix = "after " + i + " ups expected button " + i;
91 assertTrue(prefix + " to have focus", button.isFocused());
92 assertTrue(prefix + " to be on screen", isButtonOnScreen(button));
/frameworks/policies/base/mid/com/android/internal/policy/impl/
H A DMidLayoutInflater.java54 for (String prefix : sClassPrefixList) {
56 View view = createView(name, prefix, attrs);
/frameworks/policies/base/phone/com/android/internal/policy/impl/
H A DPhoneLayoutInflater.java54 for (String prefix : sClassPrefixList) {
56 View view = createView(name, prefix, attrs);
/frameworks/base/core/java/android/view/inputmethod/
H A DEditorInfo.java221 public void dump(Printer pw, String prefix) { argument
222 pw.println(prefix + "inputType=0x" + Integer.toHexString(inputType)
225 pw.println(prefix + "actionLabel=" + actionLabel
227 pw.println(prefix + "initialSelStart=" + initialSelStart
231 pw.println(prefix + "hintText=" + hintText
233 pw.println(prefix + "packageName=" + packageName
236 pw.println(prefix + "extras=" + extras);

Completed in 1595 milliseconds

1234