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

/haiku/src/libs/stdc++/legacy/
H A Dbuiltinbuf.cc29 #include "builtinbuf.h"
32 int builtinbuf::overflow(int ch) { return _IO_OVERFLOW (this, ch); }
34 int builtinbuf::underflow() { return _IO_UNDERFLOW (this); }
36 streamsize builtinbuf::xsgetn(char* buf, streamsize n)
39 streamsize builtinbuf::xsputn(const char* buf, streamsize n)
42 int builtinbuf::doallocate() { return _IO_DOALLOCATE (this); }
44 builtinbuf::~builtinbuf() { _IO_FINISH (this); }
46 int builtinbuf::sync() { return _IO_SYNC (this); }
48 streambuf* builtinbuf
[all...]
/haiku/headers/cpp/
H A Dbuiltinbuf.h35 // A builtinbuf is a streambuf where all the virtual operations
39 class builtinbuf : public streambuf { class in inherits:streambuf
47 virtual ~builtinbuf();
63 builtinbuf() { } function in class:builtinbuf
/haiku/src/system/libroot/posix/glibc/libio/
H A DlibioP.h928 VTABLE_LABEL(builtinbuf_vtable, builtinbuf, 10)
931 # define builtinbuf_vtable _G_VTABLE_LABEL_PREFIX_ID##10builtinbuf
933 # define builtinbuf_vtable _G_VTABLE_LABEL_PREFIX_ID##builtinbuf

Completed in 85 milliseconds