HomeSort by relevance Sort by last modified time
    Searched full:__mode (Results 1 - 25 of 33) sorted by null

1 2

  /external/stlport/stlport/stl/
_sstream.c 45 ::basic_stringbuf(ios_base::openmode __mode)
46 : basic_streambuf<_CharT, _Traits>(), _M_mode(__mode), _M_str()
51 ::basic_stringbuf(const basic_string<_CharT, _Traits, _Alloc>& __s, ios_base::openmode __mode)
52 : basic_streambuf<_CharT, _Traits>(), _M_mode(__mode), _M_str(__s)
302 ios_base::openmode __mode) {
303 __mode &= _M_mode;
305 bool __imode = (__mode & ios_base::in) != 0;
306 bool __omode = (__mode & ios_base::out) != 0;
358 ::seekpos(pos_type __pos, ios_base::openmode __mode) {
359 __mode &= _M_mode
    [all...]
_sstream.h 68 explicit basic_stringbuf(ios_base::openmode __mode
70 explicit basic_stringbuf(const _String& __s, ios_base::openmode __mode
91 ios_base::openmode __mode
93 virtual pos_type seekpos(pos_type __pos, ios_base::openmode __mode
131 basic_istringstream(ios_base::openmode __mode = ios_base::in);
133 ios_base::openmode __mode = ios_base::in);
174 basic_ostringstream(ios_base::openmode __mode = ios_base::out);
176 ios_base::openmode __mode = ios_base::out);
_strstream.h 79 ios_base::openmode __mode
81 virtual pos_type seekpos(pos_type __pos, ios_base::openmode __mode
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_sstream.c 45 ::basic_stringbuf(ios_base::openmode __mode)
46 : basic_streambuf<_CharT, _Traits>(), _M_mode(__mode), _M_str()
51 ::basic_stringbuf(const basic_string<_CharT, _Traits, _Alloc>& __s, ios_base::openmode __mode)
52 : basic_streambuf<_CharT, _Traits>(), _M_mode(__mode), _M_str(__s)
302 ios_base::openmode __mode) {
303 __mode &= _M_mode;
305 bool __imode = (__mode & ios_base::in) != 0;
306 bool __omode = (__mode & ios_base::out) != 0;
358 ::seekpos(pos_type __pos, ios_base::openmode __mode) {
359 __mode &= _M_mode
    [all...]
_sstream.h 68 explicit basic_stringbuf(ios_base::openmode __mode
70 explicit basic_stringbuf(const _String& __s, ios_base::openmode __mode
91 ios_base::openmode __mode
93 virtual pos_type seekpos(pos_type __pos, ios_base::openmode __mode
131 basic_istringstream(ios_base::openmode __mode = ios_base::in);
133 ios_base::openmode __mode = ios_base::in);
174 basic_ostringstream(ios_base::openmode __mode = ios_base::out);
176 ios_base::openmode __mode = ios_base::out);
_strstream.h 79 ios_base::openmode __mode
81 virtual pos_type seekpos(pos_type __pos, ios_base::openmode __mode
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/
stdio_filebuf.h 73 stdio_filebuf(int __fd, std::ios_base::openmode __mode,
86 stdio_filebuf(std::__c_file* __f, std::ios_base::openmode __mode,
124 stdio_filebuf(int __fd, std::ios_base::openmode __mode, size_t __size)
126 this->_M_file.sys_open(__fd, __mode);
129 this->_M_mode = __mode;
140 stdio_filebuf(std::__c_file* __f, std::ios_base::openmode __mode,
143 this->_M_file.sys_open(__f, __mode);
146 this->_M_mode = __mode;
stdio_sync_filebuf.h 178 std::ios_base::openmode __mode =
180 { return seekoff(std::streamoff(__pos), std::ios_base::beg, __mode); }
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/
stat.h 282 extern int chmod (__const char *__file, __mode_t __mode)
289 extern int lchmod (__const char *__file, __mode_t __mode)
295 extern int fchmod (int __fd, __mode_t __mode) __THROW;
318 extern int mkdir (__const char *__path, __mode_t __mode)
325 extern int mkdirat (int __fd, __const char *__path, __mode_t __mode)
333 extern int mknod (__const char *__path, __mode_t __mode, __dev_t __dev)
341 extern int mknodat (int __fd, __const char *__path, __mode_t __mode,
347 extern int mkfifo (__const char *__path, __mode_t __mode)
354 extern int mkfifoat (int __fd, __const char *__path, __mode_t __mode)
442 extern int __xmknod (int __ver, __const char *__path, __mode_t __mode,
    [all...]
mman.h 145 extern int shm_open (__const char *__name, int __oflag, mode_t __mode);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/
fstream 265 open(const char* __s, ios_base::openmode __mode);
275 open(const std::string& __s, ios_base::openmode __mode)
276 { return open(__s.c_str(), __mode); }
347 ios_base::openmode __mode = ios_base::in | ios_base::out);
351 ios_base::openmode __mode = ios_base::in | ios_base::out);
454 basic_ifstream(const char* __s, ios_base::openmode __mode = ios_base::in)
458 this->open(__s, __mode);
471 ios_base::openmode __mode = ios_base::in)
475 this->open(__s, __mode);
525 open(const char* __s, ios_base::openmode __mode = ios_base::in
    [all...]
sstream 92 basic_stringbuf(ios_base::openmode __mode = ios_base::in | ios_base::out)
93 : __streambuf_type(), _M_mode(__mode), _M_string()
106 ios_base::openmode __mode = ios_base::in | ios_base::out)
108 { _M_stringbuf_init(__mode); }
154 _M_stringbuf_init(ios_base::openmode __mode)
156 _M_mode = __mode;
216 ios_base::openmode __mode = ios_base::in | ios_base::out);
220 ios_base::openmode __mode = ios_base::in | ios_base::out);
292 basic_istringstream(ios_base::openmode __mode = ios_base::in)
293 : __istream_type(), _M_stringbuf(__mode | ios_base::in
    [all...]
streambuf 239 ios_base::openmode __mode = ios_base::in | ios_base::out)
240 { return this->seekoff(__off, __way, __mode); }
244 ios_base::openmode __mode = ios_base::in | ios_base::out)
245 { return this->seekpos(__sp, __mode); }
579 ios_base::openmode /*__mode*/ = ios_base::in | ios_base::out)
591 ios_base::openmode /*__mode*/ = ios_base::in | ios_base::out)
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
sstream.tcc 149 seekoff(off_type __off, ios_base::seekdir __way, ios_base::openmode __mode)
152 bool __testin = (ios_base::in & this->_M_mode & __mode) != 0;
153 bool __testout = (ios_base::out & this->_M_mode & __mode) != 0;
155 __testin &= !(__mode & ios_base::out);
156 __testout &= !(__mode & ios_base::in);
196 seekpos(pos_type __sp, ios_base::openmode __mode)
199 const bool __testin = (ios_base::in & this->_M_mode & __mode) != 0;
200 const bool __testout = (ios_base::out & this->_M_mode & __mode) != 0;
fstream.tcc 94 open(const char* __s, ios_base::openmode __mode)
99 _M_file.open(__s, __mode);
103 _M_mode = __mode;
114 if ((__mode & ios_base::ate)
115 && this->seekoff(0, ios_base::end, __mode)
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/i686-linux/bits/
basic_file.h 64 open(const char* __name, ios_base::openmode __mode, int __prot = 0664);
70 sys_open(int __fd, ios_base::openmode __mode);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/rpc/
des_crypt.h 81 unsigned __mode, char *__ivec) __THROW;
87 unsigned __mode) __THROW;
  /external/blktrace/btt/
seek.c 159 static void __mode(struct rb_node *n, struct mode *mp) function
164 __mode(n->rb_left, mp);
166 __mode(n->rb_right, mp);
302 __mode(root->rb_node, mp);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
aio.h 150 extern int lio_listio (int __mode,
185 (int __mode,
224 extern int lio_listio64 (int __mode,
libio.h 369 opened for append (__mode.__append set), then set the file pointer
503 extern int _IO_fwide (_IO_FILE *__fp, int __mode) __THROW;
521 # define _IO_fwide(__fp, __mode) \
522 ({ int __result = (__mode); \
530 else if (__builtin_constant_p (__mode) && (__mode) == 0) \
fcntl.h 130 extern int creat (__const char *__file, __mode_t __mode) __nonnull ((1));
133 extern int __REDIRECT (creat, (__const char *__file, __mode_t __mode),
140 extern int creat64 (__const char *__file, __mode_t __mode) __nonnull ((1));
mntent.h 67 extern FILE *setmntent (__const char *__file, __const char *__mode) __THROW;
dlfcn.h 58 extern void *dlopen (__const char *__file, int __mode) __THROW;
71 extern void *dlmopen (Lmid_t __nsid, __const char *__file, int __mode) __THROW;
spawn.h 173 int __oflag, mode_t __mode)
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/backward/
strstream 90 ios_base::openmode __mode
92 virtual pos_type seekpos(pos_type __pos, ios_base::openmode __mode

Completed in 392 milliseconds

1 2