Searched refs:file_stat (Results 1 – 3 of 3) sorted by relevance
/bionic/linker/ |
D | linker_phdr.cpp | 584 struct stat file_stat; in phdr_table_map_gnu_relro() local 585 if (TEMP_FAILURE_RETRY(fstat(fd, &file_stat)) != 0) { in phdr_table_map_gnu_relro() 588 off_t file_size = file_stat.st_size; in phdr_table_map_gnu_relro()
|
D | linker.cpp | 285 static soinfo* soinfo_alloc(const char* name, struct stat* file_stat, off64_t file_offset) { in soinfo_alloc() argument 291 soinfo* si = new (g_soinfo_allocator.alloc()) soinfo(name, file_stat, file_offset); in soinfo_alloc() 455 soinfo::soinfo(const char* name, const struct stat* file_stat, off64_t file_offset) { in soinfo() argument 462 if (file_stat != nullptr) { in soinfo() 463 this->st_dev = file_stat->st_dev; in soinfo() 464 this->st_ino = file_stat->st_ino; in soinfo() 803 struct stat file_stat; in load_library() local 804 if (TEMP_FAILURE_RETRY(fstat(fd, &file_stat)) != 0) { in load_library() 814 si->get_st_dev() == file_stat.st_dev && in load_library() 815 si->get_st_ino() == file_stat.st_ino && in load_library() [all …]
|
D | linker.h | 204 soinfo(const char* name, const struct stat* file_stat, off64_t file_offset);
|