Home | History | Annotate | Download | only in linker

Lines Matching refs:file_stat

287 static soinfo* soinfo_alloc(const char* name, struct stat* file_stat) {
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;
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);