HomeSort by relevance Sort by last modified time
    Searched refs:io_mode (Results 1 - 7 of 7) 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/chromium_org/net/socket/
socket_test_util.h 67 MockConnect(IoMode io_mode, int r);
68 MockConnect(IoMode io_mode, int r, IPEndPoint addr);
109 MockReadWrite(IoMode io_mode, int result)
110 : mode(io_mode),
118 MockReadWrite(IoMode io_mode, int result, int seq)
119 : mode(io_mode),
136 MockReadWrite(IoMode io_mode, const char* data)
137 : mode(io_mode),
145 MockReadWrite(IoMode io_mode, const char* data, int data_len)
146 : mode(io_mode),
    [all...]
socket_test_util.cc 135 MockConnect::MockConnect(IoMode io_mode, int r) : mode(io_mode), result(r) {
141 MockConnect::MockConnect(IoMode io_mode, int r, IPEndPoint addr) :
142 mode(io_mode),
    [all...]
  /external/chromium_org/chrome/browser/net/
network_stats_unittest.cc 108 net::IoMode io_mode) {
110 MakeDeterministicMockData(max_tests, max_probe_packets, bytes, io_mode);
142 net::IoMode io_mode) {
170 net::MockWrite(io_mode, &outputs_[0][0], outputs_[0].size()));
187 net::MockRead(io_mode, &inputs_[i][0], inputs_[i].size()));
197 net::IoMode io_mode) {
201 test_type, bytes, interval_micros, max_probe_packets, io_mode);

Completed in 141 milliseconds