Home
last modified time | relevance | path

Searched refs:entry_offset (Results 1 – 19 of 19) sorted by relevance

/system/unwinding/libunwindstack/tests/
DElfInterfaceArmTest.cpp66 uint64_t entry_offset; in TEST_F() local
67 ASSERT_FALSE(interface.FindEntry(0x1000, &entry_offset)); in TEST_F()
75 uint64_t entry_offset; in TEST_F() local
76 ASSERT_FALSE(interface.FindEntry(0x1000, &entry_offset)); in TEST_F()
84 uint64_t entry_offset; in TEST_F() local
85 ASSERT_FALSE(interface.FindEntry(0x1000, &entry_offset)); in TEST_F()
94 uint64_t entry_offset; in TEST_F() local
95 ASSERT_FALSE(interface.FindEntry(0x1000, &entry_offset)); in TEST_F()
104 uint64_t entry_offset; in TEST_F() local
105 ASSERT_TRUE(interface.FindEntry(0x7ff0, &entry_offset)); in TEST_F()
[all …]
/system/unwinding/libunwindstack/
DElfInterfaceArm.cpp37 bool ElfInterfaceArm::FindEntry(uint32_t pc, uint64_t* entry_offset) { in FindEntry() argument
55 *entry_offset = start_offset_ + current * 8; in FindEntry()
65 *entry_offset = start_offset_ + (last - 1) * 8; in FindEntry()
122 uint64_t entry_offset; in StepExidx() local
123 if (!FindEntry(pc, &entry_offset)) { in StepExidx()
130 if (arm.ExtractEntryData(entry_offset) && arm.Eval()) { in StepExidx()
DArmExidx.cpp44 bool ArmExidx::ExtractEntryData(uint32_t entry_offset) { in ExtractEntryData() argument
48 if (entry_offset & 1) { in ExtractEntryData()
60 if (!elf_memory_->Read32(entry_offset + 4, &data)) { in ExtractEntryData()
62 status_address_ = entry_offset + 4; in ExtractEntryData()
102 uint32_t addr = (entry_offset + 4) + signed_data; in ExtractEntryData()
DArmExidx.h64 bool ExtractEntryData(uint32_t entry_offset);
DElfInterfaceArm.h71 bool FindEntry(uint32_t pc, uint64_t* entry_offset);
/system/extras/simpleperf/
Dread_apk.h36 EmbeddedElf(const std::string& filepath, const std::string& entry_name, uint64_t entry_offset, in EmbeddedElf() argument
40 entry_offset_(entry_offset), in EmbeddedElf()
50 uint64_t entry_offset() const { return entry_offset_; } in entry_offset() function
Dread_apk_test.cpp35 ASSERT_EQ(NATIVELIB_OFFSET_IN_APK, ee->entry_offset()); in TEST()
44 ASSERT_EQ(NATIVELIB_OFFSET_IN_APK, ee->entry_offset()); in TEST()
Dread_apk.cpp67 node.offset_map[result->entry_offset()] = std::move(elf); in FindElfInApkByName()
DOfflineUnwinder.cpp155 pgoff += elf->entry_offset(); in CreateMapInfo()
Dread_elf.cpp509 *status = OpenObjectFile(elf->filepath(), elf->entry_offset(), elf->entry_size(), &wrapper); in Open()
Dcmd_record.cpp1536 data.pgoff -= ee->entry_offset(); in UpdateMmapRecordForEmbeddedPath()
/system/libufdt/utils/src/
Dmkdtimg_core.c59 uint32_t entry_offset; member
195 static int32_t output_img_entry(FILE *img_fp, size_t entry_offset, in output_img_entry() argument
225 fseek(img_fp, entry_offset, SEEK_SET); in output_img_entry()
257 writer->entry_offset = sizeof(struct dt_table_header); in dt_image_writer_start()
259 writer->entry_offset + sizeof(struct dt_table_entry) * entry_count; in dt_image_writer_start()
397 output_img_entry(writer->img_fp, writer->entry_offset, fdt_verifier, in flush_entry_to_img()
401 writer->entry_offset += sizeof(struct dt_table_entry); in flush_entry_to_img()
Dmkdtimg_dump.c176 uint32_t entry_offset = fdt32_to_cpu(header.dt_entries_offset); in dump_image_from_fp() local
181 fseek(img_fp, entry_offset, SEEK_SET); in dump_image_from_fp()
204 entry_offset += entry_size; in dump_image_from_fp()
/system/unwinding/libunwindstack/tools/
Dunwind_reg_info.cpp150 uint64_t entry_offset; in PrintArmRegInformation() local
151 if (!interface->FindEntry(pc, &entry_offset)) { in PrintArmRegInformation()
161 if (!arm.ExtractEntryData(entry_offset)) { in PrintArmRegInformation()
/system/core/debuggerd/libdebuggerd/
Dopen_files_list.cpp71 size_t entry_offset = offsetof(FdTable, entries); in populate_fdsan_table() local
73 uint64_t address = fdsan_table_address + entry_offset + sizeof(FdEntry) * i; in populate_fdsan_table()
/system/unwinding/libunwindstack/tests/fuzz/
DUnwinderComponentCreator.cpp327 int entry_offset = 0; in PutElfFilesInMemory() local
350 uint64_t cur_descriptor_addr = 0x11800 + entry_offset; in PutElfFilesInMemory()
351 uint64_t cur_jit_addr = 0x200000 + entry_offset; in PutElfFilesInMemory()
361 entry_offset = 0; in PutElfFilesInMemory()
373 entry_offset += size; in PutElfFilesInMemory()
/system/iorap/src/prefetcher/
Dread_ahead.cc362 size_t entry_offset = 0; in BeginTask() local
372 ++entry_offset; in BeginTask()
402 entry_offset); in BeginTask()
Dsession.cc390 size_t entry_offset = 0; in ProcessFd() local
393 ++entry_offset; in ProcessFd()
408 << (entry_offset - 1); in ProcessFd()
/system/tools/mkbootimg/
Dunpack_bootimg.py413 entry_offset = vendor_ramdisk_table_offset + (
415 args.boot_img.seek(entry_offset)