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

/macosx-10.10.1/zlib-55/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 );
/macosx-10.10.1/zlib-55/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
/macosx-10.10.1/system_cmds-643.1.1/iosim.tproj/
H A Diosim.c45 int io_mode = 0; /* Unit: 0/1 ; Desc.: I/O Mode (Seq./Rand.) */ variable
287 if (io_mode == IO_MODE_RANDOM) {
401 io_mode = atoi(optarg);
402 validate_option(io_mode, 0, 1, "I/O Mode", "");
449 print_test_setup(io_mode, "I/O Mode", "", "0:Seq. 1:Rnd");
/macosx-10.10.1/llvmCore-3425.0.34/lib/Archive/
H A DArchiveWriter.cpp371 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);
/macosx-10.10.1/llvmCore-3425.0.34/tools/llvm-ar/
H A Dllvm-ar.cpp452 std::ios::openmode io_mode = std::ios::out | std::ios::trunc | local
454 std::ofstream file(I->getPath().c_str(), io_mode);

Completed in 86 milliseconds