/system/extras/simpleperf/ |
D | event_attr.cpp | 91 void DumpPerfEventAttr(const perf_event_attr& attr, size_t indent) { in DumpPerfEventAttr() argument 98 PrintIndented(indent, "event_attr: for event %s\n", event_name.c_str()); in DumpPerfEventAttr() 100 PrintIndented(indent + 1, "type %u, size %u, config %llu\n", attr.type, attr.size, attr.config); in DumpPerfEventAttr() 103 PrintIndented(indent + 1, "sample_freq %llu\n", attr.sample_freq); in DumpPerfEventAttr() 105 PrintIndented(indent + 1, "sample_period %llu\n", attr.sample_period); in DumpPerfEventAttr() 108 PrintIndented(indent + 1, "sample_type (0x%llx) %s\n", attr.sample_type, in DumpPerfEventAttr() 111 PrintIndented(indent + 1, "read_format (0x%llx) %s\n", attr.read_format, in DumpPerfEventAttr() 114 PrintIndented(indent + 1, "disabled %llu, inherit %llu, pinned %llu, exclusive %llu\n", in DumpPerfEventAttr() 117 PrintIndented(indent + 1, "exclude_user %llu, exclude_kernel %llu, exclude_hv %llu\n", in DumpPerfEventAttr() 120 PrintIndented(indent + 1, "exclude_idle %llu, mmap %llu, comm %llu, freq %llu\n", in DumpPerfEventAttr() [all …]
|
D | record.cpp | 138 void SampleId::Dump(size_t indent) const { in Dump() 141 PrintIndented(indent, "sample_id: pid %u, tid %u\n", tid_data.pid, tid_data.tid); in Dump() 144 PrintIndented(indent, "sample_id: time %" PRId64 "\n", time_data.time); in Dump() 147 PrintIndented(indent, "sample_id: stream_id %" PRId64 "\n", id_data.id); in Dump() 150 PrintIndented(indent, "sample_id: stream_id %" PRId64 "\n", stream_id_data.stream_id); in Dump() 153 PrintIndented(indent, "sample_id: cpu %u, res %u\n", cpu_data.cpu, cpu_data.res); in Dump() 166 void Record::Dump(size_t indent) const { in Dump() 167 PrintIndented(indent, "record %s: type %u, misc %u, size %u\n", in Dump() 169 DumpData(indent + 1); in Dump() 170 sample_id.Dump(indent + 1); in Dump() [all …]
|
D | record.h | 94 void Dump(size_t indent) const; 113 void Dump(size_t indent = 0) const; 136 void DumpData(size_t indent) const override; 152 void DumpData(size_t indent) const override; 165 void DumpData(size_t indent) const override; 183 void DumpData(size_t indent) const override; 199 void DumpData(size_t indent) const override;
|
D | utils.cpp | 27 void PrintIndented(size_t indent, const char* fmt, ...) { in PrintIndented() argument 30 printf("%*s", static_cast<int>(indent * 2), ""); in PrintIndented()
|
D | event_attr.h | 28 void DumpPerfEventAttr(const perf_event_attr& attr, size_t indent = 0);
|
D | utils.h | 55 void PrintIndented(size_t indent, const char* fmt, ...);
|
/system/media/camera/docs/ |
D | metadata-parser-sanity-check | 51 tidy -indent -xml -quiet $thisdir/metadata_properties.xml > $tmp_tidy1 52 tidy -indent -xml -quiet $tmp_out > $tmp_tidy2
|
D | metadata_helpers.py | 223 def ljust(size, indent=4): argument 245 return what + "\n" + "".ljust(indent + size) 702 def javadoc(metadata, indent = 4): argument 737 comment_prefix = " " * indent + " * ";
|
/system/core/libutils/ |
D | ProcessCallStack.cpp | 239 void ProcessCallStack::dump(int fd, int indent, const char* prefix) const { in dump() argument 241 if (indent < 0) { in dump() 242 ALOGW("%s: Bad indent (%d)", __FUNCTION__, indent); in dump() 246 FdPrinter printer(fd, static_cast<unsigned int>(indent), prefix); in dump()
|
D | CallStack.cpp | 57 void CallStack::dump(int fd, int indent, const char* prefix) const { in dump() argument 58 FdPrinter printer(fd, indent, prefix); in dump()
|
D | Printer.cpp | 98 FdPrinter::FdPrinter(int fd, unsigned int indent, const char* prefix) : in FdPrinter() argument 99 mFd(fd), mIndent(indent), mPrefix(prefix ?: "") { in FdPrinter()
|
/system/core/include/utils/ |
D | CallStack.h | 55 void dump(int fd, int indent = 0, const char* prefix = 0) const;
|
D | ProcessCallStack.h | 49 void dump(int fd, int indent = 0, const char* prefix = 0) const;
|
D | Printer.h | 69 FdPrinter(int fd, unsigned int indent = 0, const char* prefix = 0);
|
/system/extras/tests/include/ |
D | testUtil.h | 59 void testXDumpSetIndent(uint8_t indent);
|
/system/extras/tests/lib/testUtil/ |
D | testUtil.c | 358 testXDumpSetIndent(uint8_t indent) in testXDumpSetIndent() argument 360 xDumpIndent = indent; in testXDumpSetIndent()
|
/system/bt/doc/ |
D | style_guide.md | 268 * use only spaces, indent 2 spaces at a time 299 Use only spaces, and indent 2 spaces at a time. Do not use tab characters in the
|