Searched refs:file_stat (Results 1 - 2 of 2) sorted by relevance

/bionic/linker/
H A Dlinker_phdr.cpp583 struct stat file_stat; variable in typeref:struct:stat
584 if (TEMP_FAILURE_RETRY(fstat(fd, &file_stat)) != 0) {
587 off_t file_size = file_stat.st_size;
H A Dlinker.cpp287 static soinfo* soinfo_alloc(const char* name, struct stat* file_stat) { argument
300 if (file_stat != NULL) {
301 si->set_st_dev(file_stat->st_dev);
302 si->set_st_ino(file_stat->st_ino);
760 struct stat file_stat; local
761 if (TEMP_FAILURE_RETRY(fstat(fd, &file_stat)) != 0) {
771 si->get_st_dev() == file_stat.st_dev &&
772 si->get_st_ino() == file_stat.st_ino) {
787 soinfo* si = soinfo_alloc(SEARCH_NAME(name), &file_stat);

Completed in 44 milliseconds