Searched refs:io_mode (Results 1 - 6 of 6) sorted by relevance

/external/zlib/contrib/iostream/
H A Dzfstream.cpp19 int io_mode ) {
27 if ( io_mode & ios::in ) {
30 } else if ( io_mode & ios::app ) {
38 if ( io_mode & ios::binary ) {
44 if ( io_mode & (ios::out|ios::app )) {
61 int io_mode ) {
69 if ( io_mode & ios::in ) {
72 } else if ( io_mode & ios::app ) {
80 if ( io_mode & ios::binary ) {
86 if ( io_mode
[all...]
H A Dzfstream.h15 gzfilebuf *open( const char *name, int io_mode );
16 gzfilebuf *attach( int file_descriptor, int io_mode );
54 void attach( int fd, int io_mode );
55 void open( const char *name, int io_mode );
73 gzifstream( const char *name, int io_mode = ios::in );
74 gzifstream( int fd, int io_mode = ios::in );
85 gzofstream( const char *name, int io_mode = ios::out );
86 gzofstream( int fd, int io_mode = ios::out );
/external/zlib/contrib/iostream3/
H A Dzfstream.cc22 : file(NULL), io_mode(std::ios_base::openmode(0)), own_fd(false),
72 io_mode = mode;
100 io_mode = mode;
172 if (!this->is_open() || !(io_mode & std::ios_base::in))
192 if (!this->is_open() || !(io_mode & std::ios_base::in))
234 if (!this->is_open() || !(io_mode & std::ios_base::out))
247 if (!this->is_open() || !(io_mode & std::ios_base::out))
H A Dzfstream.h191 std::ios_base::openmode io_mode; member in class:gzfilebuf
/external/llvm/lib/Archive/
H A DArchiveWriter.cpp372 std::ios::openmode io_mode = std::ios::out | std::ios::trunc | local
374 std::ofstream ArchiveFile(TmpArchive.c_str(), io_mode);
432 std::ofstream FinalFile(FinalFilePath.c_str(), io_mode);
/external/llvm/tools/llvm-ar/
H A Dllvm-ar.cpp459 std::ios::openmode io_mode = std::ios::out | std::ios::trunc | local
461 std::ofstream file(I->getPath().c_str(), io_mode);

Completed in 388 milliseconds