Lines Matching defs:void

96     void *_arrays; /* Support for ios::iword and ios::pword. */
206 void _throw_failure() const { throw new ios::failure(this); }
208 void _throw_failure() const { }
210 void clear(iostate state = 0) {
213 void set(iostate flag) { _state |= flag;
215 void setstate(iostate flag) { _state |= flag; // ANSI
222 operator void*() const { return fail() ? (void*)0 : (void*)(-1); }
225 void exceptions(iostate enable) {
234 static void sync_with_stdio() { sync_with_stdio(1); }
237 void*& pword(int);
238 void* pword(int) const;
243 void unset(state_value flag) { _state &= ~flag; }
244 void close();
259 inline void init(streambuf* sb, ostream* tie = 0);
278 void set_offset(int offset) { _pos = offset; }
292 const void *&_vtable() { return *(const void**)((_IO_FILE*)this + 1); }
296 void _un_link();
297 void _link_in();
310 void xput_char(char c) { *_IO_write_ptr++ = c; }
313 void xsetflags(int f) { _IO_file_flags |= f; }
314 void xsetflags(int f, int mask)
316 void gbump(int n)
318 void pbump(int n) { _IO_write_ptr += n; }
319 void setb(char* b, char* eb, int a=0);
320 void setp(char* p, char* ep)
322 void setg(char* eb, char* g, char *eg) {
341 void free_backup_area();
342 void unsave_markers(); // Make all streammarkers !saving().
349 static void flush_all_linebuffered(); // Flush all line buffered files.
376 void unbuffered(int i)
378 void linebuffered(int i)
384 void allocbuf() { if (base() == NULL) doallocbuf(); }
385 void doallocbuf();
402 void stossc() { if (_IO_read_ptr < _IO_read_end) _IO_read_ptr++; }
409 void column(int c); // Set column number of put pointer to c.
415 virtual int sys_stat(void*); // Actually, a (struct stat*)
418 virtual void imbue(void *);
427 void init();
461 virtual int sys_stat(void*); // Actually, a (struct stat*)
469 inline void ios::init(streambuf* sb, ostream* tie_to) {