Searched defs:indent (Results 1 - 6 of 6) sorted by relevance

/system/core/libutils/
H A DCallStack.cpp58 void CallStack::dump(int fd, int indent, const char* prefix) const { argument
59 FdPrinter printer(fd, indent, prefix);
H A DPrinter.cpp98 FdPrinter::FdPrinter(int fd, unsigned int indent, const char* prefix) : argument
99 mFd(fd), mIndent(indent), mPrefix(prefix ?: "") {
105 // <indent><prefix><line> -- e.g. '%-4s%s\n' for indent=4
H A DProcessCallStack.cpp238 void ProcessCallStack::dump(int fd, int indent, const char* prefix) const { argument
240 if (indent < 0) {
241 ALOGW("%s: Bad indent (%d)", __FUNCTION__, indent);
245 FdPrinter printer(fd, static_cast<unsigned int>(indent), prefix);
/system/extras/simpleperf/
H A Devent_attr.cpp102 void DumpPerfEventAttr(const perf_event_attr& attr, size_t indent) { argument
109 PrintIndented(indent, "event_attr: for event type %s\n", event_name.c_str());
111 PrintIndented(indent + 1, "type %u, size %u, config %llu\n", attr.type, attr.size, attr.config);
114 PrintIndented(indent + 1, "sample_freq %llu\n", attr.sample_freq);
116 PrintIndented(indent + 1, "sample_period %llu\n", attr.sample_period);
119 PrintIndented(indent + 1, "sample_type (0x%llx) %s\n", attr.sample_type,
122 PrintIndented(indent + 1, "read_format (0x%llx) %s\n", attr.read_format,
125 PrintIndented(indent + 1, "disabled %u, inherit %u, pinned %u, exclusive %u\n", attr.disabled,
128 PrintIndented(indent + 1, "exclude_user %u, exclude_kernel %u, exclude_hv %u\n",
131 PrintIndented(indent
[all...]
H A Dutils.cpp90 void PrintIndented(size_t indent, const char* fmt, ...) { argument
93 printf("%*s", static_cast<int>(indent * 2), "");
/system/extras/tests/lib/testUtil/
H A DtestUtil.c356 // Set an indent of spaces for each line of hex dump output
358 testXDumpSetIndent(uint8_t indent) argument
360 xDumpIndent = indent;
363 // Obtain the current hex dump indent amount

Completed in 146 milliseconds