Home | History | Annotate | Download | only in iostream3

Lines Matching refs:open

33   // (i.e. attached streams should be left open at this stage)
49 // Open gzipped file
51 gzfilebuf::open(const char *name,
54 // Fail if file already open
66 // Attempt to open file
82 // Fail if file already open
109 // Fail immediately if no file is open
129 // Convert int open mode to mode string
378 // Initialize stream buffer and open file
384 this->open(name, mode);
396 // Open file and go into fail() state if unsuccessful
398 gzifstream::open(const char* name,
401 if (!sb.open(name, mode | std::ios_base::in))
433 // Initialize stream buffer and open file
439 this->open(name, mode);
451 // Open file and go into fail() state if unsuccessful
453 gzofstream::open(const char* name,
456 if (!sb.open(name, mode | std::ios_base::out))