Searched refs:printer (Results 1 - 6 of 6) sorted by path

/system/core/include/utils/
H A DCallStack.h60 // Dump a serialized representation of the stack trace to the specified printer.
61 void print(Printer& printer) const;
H A DPrinter.h43 // Create a printer using the specified logcat and log priority
66 // Create a printer using the specified file descriptor.
90 // Create a printer using the specified String8 as the target.
106 // Create a printer using the specified printer as the target.
107 PrefixPrinter(Printer& printer, const char* prefix);
109 // Print the line (prefixed with prefix) using the printer.
H A DProcessCallStack.h54 // Dump a serialized representation of all the stack traces to the specified printer.
55 void print(Printer& printer) const;
61 void printInternal(Printer& printer, Printer& csPrinter) const;
/system/core/libutils/
H A DCallStack.cpp54 LogPrinter printer(logtag, priority, prefix, /*ignoreBlankLines*/false);
55 print(printer);
59 FdPrinter printer(fd, indent, prefix);
60 print(printer);
66 String8Printer printer(&str, prefix);
67 print(printer);
72 void CallStack::print(Printer& printer) const {
74 printer.printLine(mFrameLines[i]);
H A DPrinter.cpp152 PrefixPrinter::PrefixPrinter(Printer& printer, const char* prefix) : argument
153 mPrinter(printer), mPrefix(prefix ?: "") {
H A DProcessCallStack.cpp47 static void dumpProcessHeader(Printer& printer, pid_t pid, const char* timeStr) { argument
68 printer.printLine();
69 printer.printLine();
70 printer.printFormatLine("----- pid %d at %s -----", pid, timeStr);
71 printer.printFormatLine("Cmd line: %s", procName);
74 static void dumpProcessFooter(Printer& printer, pid_t pid) { argument
75 printer.printLine();
76 printer.printFormatLine("----- end %d -----", pid);
77 printer.printLine();
207 LogPrinter printer(logta
220 printInternal(Printer& printer, Printer& csPrinter) const argument
[all...]

Completed in 98 milliseconds