Home
last modified time | relevance | path

Searched refs:file_stat (Results 1 – 3 of 3) sorted by relevance

/bionic/linker/
Dlinker.cpp376 struct stat* file_stat, off64_t file_offset, in soinfo_alloc() argument
383 soinfo* si = new (g_soinfo_allocator.alloc()) soinfo(ns, name, file_stat, in soinfo_alloc()
878 const struct stat* file_stat, off64_t file_offset, in soinfo() argument
889 if (file_stat != nullptr) { in soinfo()
890 this->st_dev_ = file_stat->st_dev; in soinfo()
891 this->st_ino_ = file_stat->st_ino; in soinfo()
1705 struct stat file_stat; in load_library() local
1706 if (TEMP_FAILURE_RETRY(fstat(task->get_fd(), &file_stat)) != 0) { in load_library()
1710 if (file_offset >= file_stat.st_size) { in load_library()
1712 name, file_offset, file_stat.st_size); in load_library()
[all …]
Dlinker_phdr.cpp777 struct stat file_stat; in phdr_table_map_gnu_relro() local
778 if (TEMP_FAILURE_RETRY(fstat(fd, &file_stat)) != 0) { in phdr_table_map_gnu_relro()
781 off_t file_size = file_stat.st_size; in phdr_table_map_gnu_relro()
Dlinker.h284 soinfo(android_namespace_t* ns, const char* name, const struct stat* file_stat,