fileid             52 user/testbin/bigfile/bigfile.c 	int fileid;
fileid             64 user/testbin/bigfile/bigfile.c 	fileid = open(filename, O_WRONLY|O_CREAT|O_TRUNC);
fileid             65 user/testbin/bigfile/bigfile.c 	if (fileid < 0) {
fileid             72 user/testbin/bigfile/bigfile.c 		len = write(fileid, buffer, strlen(buffer));
fileid             79 user/testbin/bigfile/bigfile.c 	close(fileid);
fileid            125 user/testbin/f_test/f_test.c 	int i, j, fileid;
fileid            130 user/testbin/f_test/f_test.c 	fileid = open(BIGFILE_NAME, O_WRONLY|O_CREAT|O_TRUNC, 0664);
fileid            131 user/testbin/f_test/f_test.c 	if (fileid < 0) {
fileid            141 user/testbin/f_test/f_test.c 		write(fileid, fbuffer, BUFFER_SIZE);
fileid            149 user/testbin/f_test/f_test.c 	close(fileid);
fileid            151 user/testbin/f_test/f_test.c 	fileid = open(BIGFILE_NAME, O_RDONLY);
fileid            152 user/testbin/f_test/f_test.c 	if (fileid < 0) {
fileid            157 user/testbin/f_test/f_test.c 		j = read(fileid, fbuffer, BUFFER_SIZE);
fileid            179 user/testbin/f_test/f_test.c 	close(fileid);