Searched defs:indent (Results 1 - 6 of 6) sorted by relevance
/system/extras/simpleperf/ |
H A D | utils.cpp | 27 void PrintIndented(size_t indent, const char* fmt, ...) { argument 30 printf("%*s", static_cast<int>(indent * 2), "");
|
H A D | event_attr.cpp | 91 void DumpPerfEventAttr(const perf_event_attr& attr, size_t indent) { argument 98 PrintIndented(indent, "event_attr: for event %s\n", event_name.c_str()); 100 PrintIndented(indent + 1, "type %u, size %u, config %llu\n", attr.type, attr.size, attr.config); 103 PrintIndented(indent + 1, "sample_freq %llu\n", attr.sample_freq); 105 PrintIndented(indent + 1, "sample_period %llu\n", attr.sample_period); 108 PrintIndented(indent + 1, "sample_type (0x%llx) %s\n", attr.sample_type, 111 PrintIndented(indent + 1, "read_format (0x%llx) %s\n", attr.read_format, 114 PrintIndented(indent + 1, "disabled %llu, inherit %llu, pinned %llu, exclusive %llu\n", 117 PrintIndented(indent + 1, "exclude_user %llu, exclude_kernel %llu, exclude_hv %llu\n", 120 PrintIndented(indent [all...] |
/system/core/libutils/ |
H A D | CallStack.cpp | 57 void CallStack::dump(int fd, int indent, const char* prefix) const { argument 58 FdPrinter printer(fd, indent, prefix);
|
H A D | Printer.cpp | 98 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 D | ProcessCallStack.cpp | 239 void ProcessCallStack::dump(int fd, int indent, const char* prefix) const { argument 241 if (indent < 0) { 242 ALOGW("%s: Bad indent (%d)", __FUNCTION__, indent); 246 FdPrinter printer(fd, static_cast<unsigned int>(indent), prefix);
|
/system/extras/tests/lib/testUtil/ |
H A D | testUtil.c | 356 // 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 55 milliseconds