Home
last modified time | relevance | path

Searched refs:attr_value (Results 1 – 6 of 6) sorted by relevance

/ndk/sources/host-tools/ndk-stack/elff/
Ddwarf_cu.cc57 Dwarf_Value* attr_value) const { in process_attrib()
62 attr_value->type = DWARF_VALUE_UNKNOWN; in process_attrib()
63 attr_value->encoded_size = 0; in process_attrib()
64 attr_value->u64 = 0; in process_attrib()
71 attr_value->type = DWARF_VALUE_BLOCK; in process_attrib()
72 attr_value->block.block_size = *prop; in process_attrib()
73 attr_value->block.block_ptr = prop + 1; in process_attrib()
74 attr_value->encoded_size = in process_attrib()
75 static_cast<Elf_Word>(attr_value->block.block_size + 1); in process_attrib()
82 attr_value->type = DWARF_VALUE_BLOCK; in process_attrib()
[all …]
Ddwarf_utils.cc246 dump_value(const Dwarf_Value* attr_value) { in dump_value() argument
247 printf(" Data[%03u]: (", attr_value->encoded_size); in dump_value()
248 switch (attr_value->type) { in dump_value()
250 printf("BYTE) = %u (x%02X)\n", (Elf_Word)attr_value->u8, in dump_value()
251 (Elf_Word)attr_value->u8); in dump_value()
255 printf("SBYTE) = %d (x%02X)\n", (Elf_Sword)attr_value->s8, in dump_value()
256 (Elf_Sword)attr_value->s8); in dump_value()
260 printf("WORD) = %u (x%04X)\n", (Elf_Word)attr_value->u16, in dump_value()
261 (Elf_Word)attr_value->u16); in dump_value()
265 printf("SWORD) = %d (x%04X)\n", (Elf_Sword)attr_value->s16, in dump_value()
[all …]
Ddwarf_cu.h140 Dwarf_Value* attr_value) const;
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/impl/
Dxml_log_formatter.ipp71 << " platform" << attr_value() << BOOST_PLATFORM
72 << " compiler" << attr_value() << BOOST_COMPILER
73 << " stl" << attr_value() << BOOST_STDLIB
85 ostr << "<" << tu_type_name( tu ) << " name" << attr_value() << tu.p_name.get() << ">";
105 << " name" << attr_value() << tu.p_name.get()
106 << " skipped" << attr_value() << "yes"
117 ostr << "<Exception file" << attr_value() << loc.m_file_name
118 << " line" << attr_value() << loc.m_line_num;
121 ostr << " function" << attr_value() << loc.m_function;
126 ostr << "<LastCheckpoint file" << attr_value() << checkpoint_data.m_file_name
[all …]
Dxml_report_formatter.ipp70 << " name" << attr_value() << tu.p_name.get()
71 << " result" << attr_value() << descr
72 << " assertions_passed" << attr_value() << tr.p_assertions_passed
73 << " assertions_failed" << attr_value() << tr.p_assertions_failed
74 << " expected_failures" << attr_value() << tr.p_expected_failures;
77 ostr << " test_cases_passed" << attr_value() << tr.p_test_cases_passed
78 << " test_cases_failed" << attr_value() << tr.p_test_cases_failed
79 << " test_cases_skipped" << attr_value() << tr.p_test_cases_skipped
80 << " test_cases_aborted" << attr_value() << tr.p_test_cases_aborted;
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/
Dxml_printer.hpp85 typedef custom_manip<struct attr_value_t> attr_value; typedef
89 operator<<( custom_printer<attr_value> const& p, T const& value ) in operator <<()