/system/tpm/attestation/common/ |
D | print_interface_proto.cc | 70 std::string indent(indent_size, ' '); in GetProtoDebugStringWithIndent() local 75 output += indent + " key_label: "; in GetProtoDebugStringWithIndent() 80 output += indent + " key_type: "; in GetProtoDebugStringWithIndent() 87 output += indent + " key_usage: "; in GetProtoDebugStringWithIndent() 94 output += indent + " certificate_profile: "; in GetProtoDebugStringWithIndent() 101 output += indent + " username: "; in GetProtoDebugStringWithIndent() 106 output += indent + " origin: "; in GetProtoDebugStringWithIndent() 110 output += indent + "}\n"; in GetProtoDebugStringWithIndent() 121 std::string indent(indent_size, ' '); in GetProtoDebugStringWithIndent() local 126 output += indent + " status: "; in GetProtoDebugStringWithIndent() [all …]
|
D | print_common_proto.cc | 88 std::string indent(indent_size, ' '); in GetProtoDebugStringWithIndent() local 93 output += indent + " quote: "; in GetProtoDebugStringWithIndent() 100 output += indent + " quoted_data: "; in GetProtoDebugStringWithIndent() 107 output += indent + " quoted_pcr_value: "; in GetProtoDebugStringWithIndent() 115 output += indent + " pcr_source_hint: "; in GetProtoDebugStringWithIndent() 121 output += indent + "}\n"; in GetProtoDebugStringWithIndent() 131 std::string indent(indent_size, ' '); in GetProtoDebugStringWithIndent() local 136 output += indent + " wrapped_key: "; in GetProtoDebugStringWithIndent() 143 output += indent + " iv: "; in GetProtoDebugStringWithIndent() 150 output += indent + " mac: "; in GetProtoDebugStringWithIndent() [all …]
|
/system/tpm/tpm_manager/common/ |
D | print_tpm_nvram_interface_proto.cc | 36 std::string indent(indent_size, ' '); in GetProtoDebugStringWithIndent() local 41 output += indent + " index: "; in GetProtoDebugStringWithIndent() 46 output += indent + " length: "; in GetProtoDebugStringWithIndent() 50 output += indent + "}\n"; in GetProtoDebugStringWithIndent() 60 std::string indent(indent_size, ' '); in GetProtoDebugStringWithIndent() local 65 output += indent + " status: "; in GetProtoDebugStringWithIndent() 71 output += indent + "}\n"; in GetProtoDebugStringWithIndent() 81 std::string indent(indent_size, ' '); in GetProtoDebugStringWithIndent() local 86 output += indent + " index: "; in GetProtoDebugStringWithIndent() 90 output += indent + "}\n"; in GetProtoDebugStringWithIndent() [all …]
|
D | print_tpm_ownership_interface_proto.cc | 37 std::string indent(indent_size, ' '); in GetProtoDebugStringWithIndent() local 41 output += indent + "}\n"; in GetProtoDebugStringWithIndent() 51 std::string indent(indent_size, ' '); in GetProtoDebugStringWithIndent() local 56 output += indent + " status: "; in GetProtoDebugStringWithIndent() 63 output += indent + " enabled: "; in GetProtoDebugStringWithIndent() 68 output += indent + " owned: "; in GetProtoDebugStringWithIndent() 73 output += indent + " local_data: "; in GetProtoDebugStringWithIndent() 80 output += indent + " dictionary_attack_counter: "; in GetProtoDebugStringWithIndent() 85 output += indent + " dictionary_attack_threshold: "; in GetProtoDebugStringWithIndent() 90 output += indent + " dictionary_attack_lockout_in_effect: "; in GetProtoDebugStringWithIndent() [all …]
|
D | print_local_data_proto.cc | 33 std::string indent(indent_size, ' '); in GetProtoDebugStringWithIndent() local 38 output += indent + " owner_password: "; in GetProtoDebugStringWithIndent() 45 output += indent + " owner_dependency: {"; in GetProtoDebugStringWithIndent() 51 output += indent + " endorsement_password: "; in GetProtoDebugStringWithIndent() 59 output += indent + " lockout_password: "; in GetProtoDebugStringWithIndent() 66 output += indent + "}\n"; in GetProtoDebugStringWithIndent()
|
/system/extras/simpleperf/ |
D | event_attr.cpp | 102 void DumpPerfEventAttr(const perf_event_attr& attr, size_t indent) { in DumpPerfEventAttr() argument 109 PrintIndented(indent, "event_attr: for event type %s\n", event_name.c_str()); in DumpPerfEventAttr() 111 PrintIndented(indent + 1, "type %u, size %u, config %llu\n", attr.type, attr.size, attr.config); in DumpPerfEventAttr() 114 PrintIndented(indent + 1, "sample_freq %llu\n", attr.sample_freq); in DumpPerfEventAttr() 116 PrintIndented(indent + 1, "sample_period %llu\n", attr.sample_period); in DumpPerfEventAttr() 119 PrintIndented(indent + 1, "sample_type (0x%llx) %s\n", attr.sample_type, in DumpPerfEventAttr() 122 PrintIndented(indent + 1, "read_format (0x%llx) %s\n", attr.read_format, in DumpPerfEventAttr() 125 PrintIndented(indent + 1, "disabled %u, inherit %u, pinned %u, exclusive %u\n", attr.disabled, in DumpPerfEventAttr() 128 PrintIndented(indent + 1, "exclude_user %u, exclude_kernel %u, exclude_hv %u\n", in DumpPerfEventAttr() 131 PrintIndented(indent + 1, "exclude_idle %u, mmap %u, comm %u, freq %u\n", attr.exclude_idle, in DumpPerfEventAttr() [all …]
|
D | record.cpp | 126 void SampleId::Dump(size_t indent) const { in Dump() 129 PrintIndented(indent, "sample_id: pid %u, tid %u\n", tid_data.pid, tid_data.tid); in Dump() 132 PrintIndented(indent, "sample_id: time %" PRId64 "\n", time_data.time); in Dump() 135 PrintIndented(indent, "sample_id: stream_id %" PRId64 "\n", id_data.id); in Dump() 138 PrintIndented(indent, "sample_id: stream_id %" PRId64 "\n", stream_id_data.stream_id); in Dump() 141 PrintIndented(indent, "sample_id: cpu %u, res %u\n", cpu_data.cpu, cpu_data.res); in Dump() 176 void Record::Dump(size_t indent) const { in Dump() 177 PrintIndented(indent, "record %s: type %u, misc %u, size %u\n", in Dump() 179 DumpData(indent + 1); in Dump() 180 sample_id.Dump(indent + 1); in Dump() [all …]
|
D | record.h | 127 void Dump(size_t indent) const; 155 void Dump(size_t indent = 0) const; 180 void DumpData(size_t indent) const override; 205 void DumpData(size_t indent) const override; 221 void DumpData(size_t indent) const override; 237 void DumpData(size_t indent) const override; 278 void DumpData(size_t indent) const override; 294 void DumpData(size_t indent) const override; 306 void DumpData(size_t indent) const override;
|
D | event_attr.h | 27 void DumpPerfEventAttr(const perf_event_attr& attr, size_t indent = 0);
|
D | report.py | 197 def display_call_tree(self, tree, parent_id, node, indent): argument 199 indent_str = ' ' * indent 217 self.display_call_tree(tree, id, child, indent + 1)
|
D | utils.cpp | 90 void PrintIndented(size_t indent, const char* fmt, ...) { in PrintIndented() argument 93 printf("%*s", static_cast<int>(indent * 2), ""); in PrintIndented()
|
/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 | 304 def ljust(size, indent=4): argument 326 return what + "\n" + "".ljust(indent + size) 783 def javadoc(metadata, indent = 4): argument 818 comment_prefix = " " * indent + " * "; 872 def ndkdoc(metadata, indent = 4): argument 932 comment_prefix = " " * indent + " * ";
|
/system/core/libutils/ |
D | ProcessCallStack.cpp | 238 void ProcessCallStack::dump(int fd, int indent, const char* prefix) const { in dump() argument 240 if (indent < 0) { in dump() 241 ALOGW("%s: Bad indent (%d)", __FUNCTION__, indent); in dump() 245 FdPrinter printer(fd, static_cast<unsigned int>(indent), prefix); in dump()
|
D | CallStack.cpp | 58 void CallStack::dump(int fd, int indent, const char* prefix) const { in dump() argument 59 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/adb/ |
D | CPPLINT.cfg | 2 filter=-build/header_guard,-build/include,-readability/function,-whitespace/indent
|
/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/simpleperf/runtest/ |
D | runtest.py | 46 def _dump(self, indent): argument 47 indent_str = ' ' * indent 50 strs.extend(child._dump(indent + 1)) 131 def _dump(self, indent): argument 132 indent_str = ' ' * indent 136 strs.extend(child._dump(indent + 1))
|
/system/extras/tests/include/ |
D | testUtil.h | 59 void testXDumpSetIndent(uint8_t indent);
|
/system/connectivity/shill/test-scripts/ |
D | flimflam.py | 40 def convert_dbus_value(value, indent=0): argument 42 spacer = ' ' * indent 51 key + ": " + str(convert_dbus_value(value[key], indent + 4)) 58 str(convert_dbus_value(val, indent + 4))
|
/system/connectivity/shill/net/ |
D | netlink_attribute.cc | 387 void NetlinkAttribute::Print(int log_level, int indent) const { in Print() 389 VLOG(log_level) << HeaderToPrint(indent) << " " in Print() 414 string NetlinkAttribute::HeaderToPrint(int indent) const { in HeaderToPrint() 417 indent * kSpacesPerIndent, "", in HeaderToPrint() 833 void NetlinkNestedAttribute::Print(int log_level, int indent) const { in Print() 834 VLOG(log_level) << HeaderToPrint(indent); in Print() 835 value_->Print(log_level, indent + 1); in Print()
|
D | netlink_attribute.h | 104 virtual void Print(int log_level, int indent) const; 123 std::string HeaderToPrint(int indent) const; 280 virtual void Print(int log_level, int indent) const;
|