_osfile 2426 win32/win32.c #define _set_osflags(fh, flags) (_osfile(fh) = (flags)) _osfile 4213 win32/win32.c flag = _osfile(fd); _osfile 4255 win32/win32.c _osfile(fd) |= FNOINHERIT; _osfile 4257 win32/win32.c _osfile(fd) &= ~FNOINHERIT; _osfile 6754 win32/win32.c if (!(_osfile(fd) & (FDEV | FPIPE))) { _osfile 6760 win32/win32.c DWORD method = ((_osfile(fd) & FAPPEND) && iswrite) ? FILE_END : FILE_CURRENT; _osfile 6788 win32/win32.c if (!(_osfile(fd) & (FDEV | FPIPE))) { _osfile 6821 win32/win32.c if (_osfile(fd) & FTEXT) { _osfile 6827 win32/win32.c if (!size || _osfile(fd) & FEOFLAG) { _osfile 6828 win32/win32.c _set_osflags(fd, _osfile(fd) & ~FEOFLAG); _osfile 6862 win32/win32.c if (err == ERROR_NO_DATA && (_osfile(fd) & FPIPE)) { _osfile 6928 win32/win32.c _set_osflags(fd, _osfile(fd) | FEOFLAG); _osfile 6957 win32/win32.c if ((_osfile(fd) & FTEXT) && _osfile 6958 win32/win32.c (!(_osfile(fd) & FPIPE) || fd == fileno(stdout) || fd == fileno(stderr))) { _osfile 6964 win32/win32.c if (!size || _osfile(fd) & FEOFLAG) { _osfile 6972 win32/win32.c len = (_osfile(fd) & FDEV) ? min(32 * 1024, size) : size; _osfile 7495 win32/win32.c return _osfile(fd) & FTEXT;