Home
last modified time | relevance | path

Searched refs:filebuf (Results 1 – 13 of 13) sorted by relevance

/haiku/src/libs/stdc++/legacy/
H A Dfilebuf.cc34 void filebuf::init() in init()
39 filebuf::filebuf() in filebuf() function in filebuf
48 filebuf* filebuf::__new() in __new()
50 filebuf *fb = new filebuf; in __new()
57 filebuf::filebuf(int fd) in filebuf() function in filebuf
63 filebuf::filebuf(int fd, char* p, int len) in filebuf() function in filebuf
70 filebuf::~filebuf() in ~filebuf()
80 filebuf* filebuf::open(const char *filename, ios::openmode mode, int prot) in open()
140 filebuf* filebuf::open(const char *filename, const char *mode) in open()
143 return (filebuf*)_IO_file_fopen(this, filename, mode, 0); in open()
[all …]
H A Dfstream.cc47 init(filebuf::__new()); in __fb_init()
75 init(filebuf::__new()); in fstreambase()
H A Dpfstream.cc71 init(new filebuf()); in ipfstream()
88 init(new filebuf()); in opfstream()
H A Dstdiostream.cc55 stdiobuf::stdiobuf(FILE *f) : filebuf(fileno(f)) in stdiobuf()
125 if (filebuf::overflow(c) == EOF) in overflow()
H A Dstdstrbufs.cc45 #define filebuf_vtable _G_VTABLE_LABEL_PREFIX_ID##7filebuf
47 #define filebuf_vtable _G_VTABLE_LABEL_PREFIX_ID##filebuf
H A Dprocbuf.cc34 procbuf::procbuf(const char *command, int mode) : filebuf() in procbuf()
H A DJamfile118 filebuf.cc
164 filebuf.o
H A Diostream.cc1082 ((struct filebuf*)rdbuf())->close(); in close()
/haiku/headers/cpp/
H A Dprocbuf.h36 class procbuf : public filebuf {
41 procbuf() : filebuf() { } in procbuf()
44 procbuf *close() { return (procbuf*)filebuf::close(); } in close()
H A Dfstream.h35 mutable filebuf __my_fb; // mutable so rdbuf() can be const
45 filebuf* rdbuf() const { return &__my_fb; } in rdbuf()
47 filebuf* rdbuf() const { return (filebuf*) ios::rdbuf(); } in rdbuf()
H A Dstreambuf.h425 class filebuf : public streambuf {
430 filebuf();
431 filebuf(int fd);
432 filebuf(int fd, char* p, int len);
434 static filebuf *__new();
436 ~filebuf();
437 filebuf* attach(int fd);
438 filebuf* open(const char *filename, const char *mode);
439 filebuf* open(const char *filename, ios::openmode mode, int prot = 0664);
444 filebuf* close();
H A Diosfwd11 class filebuf;
H A Dstdiostream.h38 class stdiobuf : public filebuf {