HomeSort by relevance Sort by last modified time
    Searched refs:io_mode (Results 1 - 6 of 6) sorted by null

  /external/zlib/src/contrib/iostream/
zfstream.h 15 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 );
zfstream.cpp 19 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 & (ios::out|ios::app ))
    [all...]
  /external/zlib/src/contrib/iostream3/
zfstream.cc 22 : 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))
zfstream.h 191 std::ios_base::openmode io_mode; member in class:gzfilebuf
  /external/llvm/lib/Archive/
ArchiveWriter.cpp 371 std::ios::openmode io_mode = std::ios::out | std::ios::trunc | local
373 std::ofstream ArchiveFile(TmpArchive.c_str(), io_mode);
431 std::ofstream FinalFile(FinalFilePath.c_str(), io_mode);
  /external/llvm/tools/llvm-ar/
llvm-ar.cpp 452 std::ios::openmode io_mode = std::ios::out | std::ios::trunc | local
454 std::ofstream file(I->getPath().c_str(), io_mode);

Completed in 118 milliseconds