Lines Matching defs:file
4 * The contents of this file are subject to the terms of the
6 * (the "License"). You may not use this file except in compliance
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
42 fopen(char *file, char *mode)
44 return (_endopen(file, mode, _findiop()));
48 freopen(char *file, char *mode, FILE *iop)
51 return (_endopen(file, mode, iop));
55 _endopen(char *file, char *mode, FILE *iop)
59 if (iop == NULL || file == NULL || file[0] == '\0')
75 if ((fd = open(file, oflag, 0666)) < 0)