Home | History | Annotate | Download | only in gold

Lines Matching refs:length

36 ftruncate (int fd, off_t length)
38 return fcntl (fd, F_CHSIZE, length);
50 ftruncate (int fd, off_t length)
58 if (filebuf.st_size < length)
60 /* Extend file length. */
61 if (lseek (fd, (length - 1), SEEK_SET) < 0)
71 /* Truncate length. */
75 fl.l_start = length;
93 ftruncate (int fd, off_t length)
95 return chsize (fd, length);
103 ftruncate (int fd, off_t length)