/system/unwinding/libunwindstack/tests/ |
D | ElfInterfaceArmTest.cpp | 66 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/ |
D | ElfInterfaceArm.cpp | 37 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()
|
D | ArmExidx.cpp | 44 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()
|
D | ArmExidx.h | 64 bool ExtractEntryData(uint32_t entry_offset);
|
D | ElfInterfaceArm.h | 71 bool FindEntry(uint32_t pc, uint64_t* entry_offset);
|
/system/extras/simpleperf/ |
D | read_apk.h | 36 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
|
D | read_apk_test.cpp | 35 ASSERT_EQ(NATIVELIB_OFFSET_IN_APK, ee->entry_offset()); in TEST() 44 ASSERT_EQ(NATIVELIB_OFFSET_IN_APK, ee->entry_offset()); in TEST()
|
D | read_apk.cpp | 67 node.offset_map[result->entry_offset()] = std::move(elf); in FindElfInApkByName()
|
D | OfflineUnwinder.cpp | 155 pgoff += elf->entry_offset(); in CreateMapInfo()
|
D | read_elf.cpp | 509 *status = OpenObjectFile(elf->filepath(), elf->entry_offset(), elf->entry_size(), &wrapper); in Open()
|
D | cmd_record.cpp | 1536 data.pgoff -= ee->entry_offset(); in UpdateMmapRecordForEmbeddedPath()
|
/system/libufdt/utils/src/ |
D | mkdtimg_core.c | 59 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()
|
D | mkdtimg_dump.c | 176 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/ |
D | unwind_reg_info.cpp | 150 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/ |
D | open_files_list.cpp | 71 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/ |
D | UnwinderComponentCreator.cpp | 327 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/ |
D | read_ahead.cc | 362 size_t entry_offset = 0; in BeginTask() local 372 ++entry_offset; in BeginTask() 402 entry_offset); in BeginTask()
|
D | session.cc | 390 size_t entry_offset = 0; in ProcessFd() local 393 ++entry_offset; in ProcessFd() 408 << (entry_offset - 1); in ProcessFd()
|
/system/tools/mkbootimg/ |
D | unpack_bootimg.py | 413 entry_offset = vendor_ramdisk_table_offset + ( 415 args.boot_img.seek(entry_offset)
|