OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full: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
372
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/
llvm-ar.cpp
472
std::ios::openmode
io_mode
= std::ios::out | std::ios::trunc |
local
474
std::ofstream file(I->getPath().c_str(),
io_mode
);
Completed in 612 milliseconds