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

/freebsd-11-stable/tools/regression/fsx/
H A Dfsx.c333 off_t size_by_seek = lseek(fd, (off_t)0, SEEK_END); local
334 if (size_by_seek == (off_t)-1)
336 else if (bufferlength > size_by_seek) {
337 warn("save_buffer: .fsxgood file too short... will save 0x%llx bytes instead of 0x%llx\n", (unsigned long long)size_by_seek,
339 bufferlength = size_by_seek;
427 off_t size_by_seek; local
433 size_by_seek = lseek(fd, (off_t)0, SEEK_END);
434 if (file_size != statbuf.st_size || file_size != size_by_seek) {
438 (unsigned long long)size_by_seek);

Completed in 59 milliseconds