Searched refs:stdiobuf (Results 1 - 3 of 3) sorted by relevance

/haiku/src/libs/stdc++/legacy/
H A Dstdiostream.cc34 // A stdiobuf is "tied" to a FILE object (as used by the stdio package).
35 // Thus a stdiobuf is always synchronized with the corresponding FILE,
55 stdiobuf::stdiobuf(FILE *f) : filebuf(fileno(f)) function in class:stdiobuf
58 // Turn off buffer in stdiobuf. Instead, rely on buffering in (FILE).
59 // Thus the stdiobuf will be synchronized with the FILE.
63 stdiobuf::~stdiobuf()
69 streamsize stdiobuf::sys_read(char* buf, streamsize size)
72 // A bigger optimization would be to write stdiobuf
[all...]
H A Dstdstrbufs.cc86 of the stdiobuf class. */
94 "stdiobuf");
97 #define stdiobuf_vtable _G_VTABLE_LABEL_PREFIX_ID##8stdiobuf
99 #define stdiobuf_vtable _G_VTABLE_LABEL_PREFIX_ID##stdiobuf
/haiku/headers/cpp/
H A Dstdiostream.h38 class stdiobuf : public filebuf { class in inherits:filebuf
43 stdiobuf(FILE *);
44 ~stdiobuf();
59 stdiobuf _file;
62 stdiobuf* rdbuf()/* const */ { return &_file; }
70 stdiobuf _file;
73 stdiobuf* rdbuf() /* const */ { return &_file; }

Completed in 103 milliseconds