Lines Matching refs:st
98 struct stat st; in read_text_file() local
109 if (fstat(fd, &st) < 0) { in read_text_file()
114 buf = NOFAIL(malloc(st.st_size + 1)); in read_text_file()
116 nbytes = st.st_size; in read_text_file()
129 buf[st.st_size] = '\0'; in read_text_file()
453 struct stat st; in grab_file() local
460 if (fstat(fd, &st)) in grab_file()
463 *size = st.st_size; in grab_file()
2420 struct stat st; in write_if_changed() local
2426 if (fstat(fileno(file), &st) < 0) in write_if_changed()
2429 if (st.st_size != b->pos) in write_if_changed()