Lines Matching refs:file
4 * The contents of this file are subject to the terms
6 * (the "License"). You may not use this file except
16 * HEADER in each file and include the License file at
32 * test file locking
44 static int file;
55 return (fcntl(file, F_SETLKW, &fl) == -1);
67 return (fcntl(file, F_SETLK, &fl) == -1);
77 file = open(fname, O_CREAT | O_TRUNC | O_RDWR, 0600);
79 if (file == -1) {