Lines Matching defs:fildes
29 static int fildes;
49 l_seek(fildes, count * K1, SEEK_SET, count * K1);
51 SAFE_READ(1, fildes, read_buf[count], K1);
65 SAFE_PWRITE(1, fildes, write_buf[0], K1, 0);
66 l_seek(fildes, 0, SEEK_CUR, 0);
67 l_seek(fildes, K1 / 2, SEEK_SET, K1 / 2);
69 SAFE_PWRITE(1, fildes, write_buf[2], K1, K2);
70 l_seek(fildes, 0, SEEK_CUR, K1 / 2);
71 l_seek(fildes, K3, SEEK_SET, K3);
73 SAFE_WRITE(SAFE_WRITE_ALL, fildes, write_buf[3], K1);
74 l_seek(fildes, 0, SEEK_CUR, K4);
76 SAFE_PWRITE(1, fildes, write_buf[1], K1, K1);
80 l_seek(fildes, 0, SEEK_SET, 0);
93 fildes = SAFE_OPEN(TEMPFILE, O_RDWR | O_CREAT, 0666);
105 if (fildes > 0)
106 SAFE_CLOSE(fildes);