Lines Matching defs:file
32 Sfio_t* sfnew(Sfio_t* oldf, Void_t* buf, size_t size, int file, int flags)
34 Sfio_t* sfnew(oldf,buf,size,file,flags)
38 int file; /* file descriptor to read/write from */
39 int flags; /* type of file stream */
85 if(!(flags&SF_STRING) && file >= 0 && file <= 2)
86 { f = file == 0 ? sfstdin : file == 1 ? sfstdout : sfstderr;
111 f->file = file;
123 (*_Sfnotify)(f, SF_NEW, (void*)((long)f->file));