Searched defs:class_type (Results 1 - 7 of 7) sorted by relevance

/system/core/libunwindstack/tests/
H A DMapInfoCreateMemoryTest.cpp44 static void InitElf(int fd, uint64_t file_offset, uint64_t sh_offset, uint8_t class_type) { argument
51 ehdr.e_ident[EI_CLASS] = class_type;
H A DMapInfoGetElfTest.cpp53 static void InitElf(uint64_t sh_offset, Ehdr* ehdr, uint8_t class_type, uint8_t machine_type) { argument
56 ehdr->e_ident[EI_CLASS] = class_type;
91 EXPECT_EQ(ELFCLASS32, elf->class_type());
105 EXPECT_EQ(ELFCLASS64, elf->class_type());
120 EXPECT_EQ(ELFCLASS32, elf->class_type());
136 EXPECT_EQ(ELFCLASS64, elf->class_type());
152 EXPECT_EQ(ELFCLASS32, elf->class_type());
168 EXPECT_EQ(ELFCLASS64, elf->class_type());
H A DJitDebugTest.cpp89 void CreateElf(uint64_t offset, uint8_t class_type, uint8_t machine_type, uint32_t pc, argument
95 ehdr.e_ident[EI_CLASS] = class_type;
128 if (class_type == ELFCLASS32) {
/system/core/libunwindstack/include/unwindstack/
H A DElf.h85 uint8_t class_type() { return class_type_; } function in class:unwindstack::Elf
/system/core/libunwindstack/tools/
H A Dunwind_reg_info.cpp49 void PrintExpression(Memory* memory, uint8_t class_type, uint64_t end, uint64_t length) { argument
52 if (class_type == ELFCLASS32) {
64 void PrintRegInformation(DwarfSection* section, Memory* memory, uint64_t pc, uint8_t class_type) { argument
118 PrintExpression(memory, class_type, loc->values[1], loc->values[0]);
124 PrintExpression(memory, class_type, loc->values[1], loc->values[0]);
170 PrintRegInformation(section, memory, pc - load_bias, elf.class_type());
178 PrintRegInformation(section, memory, pc - load_bias, elf.class_type());
190 PrintRegInformation(section, gnu_debugdata_interface->memory(), pc, elf.class_type());
199 PrintRegInformation(section, gnu_debugdata_interface->memory(), pc, elf.class_type());
/system/core/libunwindstack/
H A DElf.cpp206 uint8_t class_type; local
207 if (!memory->ReadFully(EI_CLASS, &class_type, 1)) {
210 if (class_type == ELFCLASS32) {
212 } else if (class_type == ELFCLASS64) {
296 uint8_t class_type; local
297 if (!memory->Read(EI_CLASS, &class_type, 1)) {
301 if (class_type == ELFCLASS32) {
303 } else if (class_type == ELFCLASS64) {
/system/tools/aidl/
H A Dgenerate_cpp.cpp826 ClassNames class_type,
837 file_path += ClassName(interface, class_type);
825 HeaderFile(const AidlInterface& interface, ClassNames class_type, bool use_os_sep) argument

Completed in 96 milliseconds