Lines Matching refs:fileHandle
334 int fileHandle; in create_file() local
337 if ((fileHandle = creat(filename, S_IRWXU)) < 0) { in create_file()
348 if (write(fileHandle, wbuf, randomsize) < 0) { in create_file()
352 close(fileHandle); in create_file()
359 close(fileHandle); in create_file()
538 int fileHandle, fileHandle2; in open_read_close() local
542 if ((fileHandle = open(fname, O_RDONLY | O_SYNC | O_ASYNC)) < 0) { in open_read_close()
556 while ((c = read(fileHandle, buffer, BUFFSIZE)) > 0) { in open_read_close()
562 close(fileHandle); in open_read_close()
571 close(fileHandle); in open_read_close()
585 close(fileHandle); in open_read_close()