Lines Matching refs:access
147 if (access(filename, F_OK) < 0)
150 if (access(filename, R_OK) >= 0)
153 if (access(filename, W_OK) >= 0)
209 int access;
216 access = O_CREAT | O_RDWR;
218 access |= O_TRUNC;
220 access = O_CREAT | O_WRONLY;
222 access |= O_TRUNC;
224 access = O_RDONLY;
227 access |= O_BINARY;
229 fd = avpriv_open(filename, access, 0666);