Home
last modified time | relevance | path

Searched refs:__mode (Results 1 – 25 of 54) sorted by relevance

123

/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/
H A Dfstream271 * @param __mode The open mode flags.
276 * given in @a __mode.
310 open(const char* __s, ios_base::openmode __mode);
316 * @param __mode The open mode flags.
320 open(const wchar_t* __s, ios_base::openmode __mode);
327 * @param __mode The open mode flags.
331 open(const std::string& __s, ios_base::openmode __mode)
332 { return open(__s.c_str(), __mode); }
338 * @param __mode The open mode flags.
343 open(const _Path& __s, ios_base::openmode __mode)
[all …]
H A Dsstream105 * @param __mode Whether the buffer can read, or write, or both.
111 basic_stringbuf(ios_base::openmode __mode)
112 : __streambuf_type(), _M_mode(__mode), _M_string()
118 * @param __mode Whether the buffer can read, or write, or both.
125 ios_base::openmode __mode = ios_base::in | ios_base::out)
128 { _M_stringbuf_init(__mode); }
213 _M_stringbuf_init(ios_base::openmode __mode)
215 _M_mode = __mode;
275 ios_base::openmode __mode = ios_base::in | ios_base::out);
279 ios_base::openmode __mode = ios_base::in | ios_base::out);
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/
H A Dfstream271 * @param __mode The open mode flags.
276 * given in @a __mode.
310 open(const char* __s, ios_base::openmode __mode);
316 * @param __mode The open mode flags.
320 open(const wchar_t* __s, ios_base::openmode __mode);
327 * @param __mode The open mode flags.
331 open(const std::string& __s, ios_base::openmode __mode)
332 { return open(__s.c_str(), __mode); }
338 * @param __mode The open mode flags.
343 open(const _Path& __s, ios_base::openmode __mode)
[all …]
H A Dsstream105 * @param __mode Whether the buffer can read, or write, or both.
111 basic_stringbuf(ios_base::openmode __mode)
112 : __streambuf_type(), _M_mode(__mode), _M_string()
118 * @param __mode Whether the buffer can read, or write, or both.
125 ios_base::openmode __mode = ios_base::in | ios_base::out)
128 { _M_stringbuf_init(__mode); }
213 _M_stringbuf_init(ios_base::openmode __mode)
215 _M_mode = __mode;
275 ios_base::openmode __mode = ios_base::in | ios_base::out);
279 ios_base::openmode __mode = ios_base::in | ios_base::out);
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/libcxx/include/
H A Dfstream231 basic_filebuf* open(const char* __s, ios_base::openmode __mode);
233 basic_filebuf* open(const wchar_t* __s, ios_base::openmode __mode);
236 basic_filebuf* open(const string& __s, ios_base::openmode __mode);
240 basic_filebuf* open(const _VSTD_FS::path& __p, ios_base::openmode __mode) {
241 return open(__p.c_str(), __mode);
245 basic_filebuf* __open(int __fd, ios_base::openmode __mode);
251 __make_mdstring(ios_base::openmode __mode) _NOEXCEPT;
508 ios_base::openmode __mode) _NOEXCEPT {
509 switch (__mode & ~ios_base::ate) {
549 basic_filebuf<_CharT, _Traits>::open(const char* __s, ios_base::openmode __mode)
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/libcxx/include/
H A Dfstream231 basic_filebuf* open(const char* __s, ios_base::openmode __mode);
233 basic_filebuf* open(const wchar_t* __s, ios_base::openmode __mode);
236 basic_filebuf* open(const string& __s, ios_base::openmode __mode);
240 basic_filebuf* open(const _VSTD_FS::path& __p, ios_base::openmode __mode) {
241 return open(__p.c_str(), __mode);
245 basic_filebuf* __open(int __fd, ios_base::openmode __mode);
251 __make_mdstring(ios_base::openmode __mode) _NOEXCEPT;
508 ios_base::openmode __mode) _NOEXCEPT {
509 switch (__mode & ~ios_base::ate) {
549 basic_filebuf<_CharT, _Traits>::open(const char* __s, ios_base::openmode __mode)
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/ext/
H A Dstdio_filebuf.h77 stdio_filebuf(int __fd, std::ios_base::openmode __mode, in _GLIBCXX_VISIBILITY()
90 stdio_filebuf(std::__c_file* __f, std::ios_base::openmode __mode, in _GLIBCXX_VISIBILITY()
137 stdio_filebuf(int __fd, std::ios_base::openmode __mode, size_t __size) in _GLIBCXX_VISIBILITY()
139 this->_M_file.sys_open(__fd, __mode); in _GLIBCXX_VISIBILITY()
142 this->_M_mode = __mode; in _GLIBCXX_VISIBILITY()
153 stdio_filebuf(std::__c_file* __f, std::ios_base::openmode __mode, in _GLIBCXX_VISIBILITY()
156 this->_M_file.sys_open(__f, __mode); in _GLIBCXX_VISIBILITY()
159 this->_M_mode = __mode; in _GLIBCXX_VISIBILITY()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/ext/
H A Dstdio_filebuf.h77 stdio_filebuf(int __fd, std::ios_base::openmode __mode, in _GLIBCXX_VISIBILITY()
90 stdio_filebuf(std::__c_file* __f, std::ios_base::openmode __mode, in _GLIBCXX_VISIBILITY()
137 stdio_filebuf(int __fd, std::ios_base::openmode __mode, size_t __size) in _GLIBCXX_VISIBILITY()
139 this->_M_file.sys_open(__fd, __mode); in _GLIBCXX_VISIBILITY()
142 this->_M_mode = __mode; in _GLIBCXX_VISIBILITY()
153 stdio_filebuf(std::__c_file* __f, std::ios_base::openmode __mode, in _GLIBCXX_VISIBILITY()
156 this->_M_file.sys_open(__f, __mode); in _GLIBCXX_VISIBILITY()
159 this->_M_mode = __mode; in _GLIBCXX_VISIBILITY()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/sys/
H A Dstat.h280 extern int chmod (const char *__file, __mode_t __mode)
287 extern int lchmod (const char *__file, __mode_t __mode)
293 extern int fchmod (int __fd, __mode_t __mode) __THROW;
299 extern int fchmodat (int __fd, const char *__file, __mode_t __mode,
317 extern int mkdir (const char *__path, __mode_t __mode)
324 extern int mkdirat (int __fd, const char *__path, __mode_t __mode)
332 extern int mknod (const char *__path, __mode_t __mode, __dev_t __dev)
339 extern int mknodat (int __fd, const char *__path, __mode_t __mode,
346 extern int mkfifo (const char *__path, __mode_t __mode)
353 extern int mkfifoat (int __fd, const char *__path, __mode_t __mode)
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/sys/
H A Dstat.h280 extern int chmod (const char *__file, __mode_t __mode)
287 extern int lchmod (const char *__file, __mode_t __mode)
293 extern int fchmod (int __fd, __mode_t __mode) __THROW;
299 extern int fchmodat (int __fd, const char *__file, __mode_t __mode,
317 extern int mkdir (const char *__path, __mode_t __mode)
324 extern int mkdirat (int __fd, const char *__path, __mode_t __mode)
332 extern int mknod (const char *__path, __mode_t __mode, __dev_t __dev)
339 extern int mknodat (int __fd, const char *__path, __mode_t __mode,
346 extern int mkfifo (const char *__path, __mode_t __mode)
353 extern int mkfifoat (int __fd, const char *__path, __mode_t __mode)
/OK3568_Linux_fs/kernel/arch/m68k/lib/
H A Dlshrdi3.c21 typedef int SItype __mode(SI); typedef
22 typedef unsigned int USItype __mode(SI); typedef
23 typedef int DItype __mode(DI); typedef
24 typedef int word_type __mode(__word__); typedef
H A Dashldi3.c21 typedef int SItype __mode(SI); typedef
22 typedef unsigned int USItype __mode(SI); typedef
23 typedef int DItype __mode(DI); typedef
24 typedef int word_type __mode(__word__); typedef
H A Dashrdi3.c21 typedef int SItype __mode(SI); typedef
22 typedef unsigned int USItype __mode(SI); typedef
23 typedef int DItype __mode(DI); typedef
24 typedef int word_type __mode(__word__); typedef
H A Dmuldi3.c68 typedef int SItype __mode(SI); typedef
69 typedef unsigned int USItype __mode(SI); typedef
70 typedef int DItype __mode(DI); typedef
71 typedef int word_type __mode(__word__); typedef
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/bits/
H A Dsstream.tcc168 seekoff(off_type __off, ios_base::seekdir __way, ios_base::openmode __mode) in seekoff() argument
171 bool __testin = (ios_base::in & this->_M_mode & __mode) != 0; in seekoff()
172 bool __testout = (ios_base::out & this->_M_mode & __mode) != 0; in seekoff()
174 __testin &= !(__mode & ios_base::out); in seekoff()
175 __testout &= !(__mode & ios_base::in); in seekoff()
216 seekpos(pos_type __sp, ios_base::openmode __mode) in seekpos() argument
219 const bool __testin = (ios_base::in & this->_M_mode & __mode) != 0; in seekpos()
220 const bool __testout = (ios_base::out & this->_M_mode & __mode) != 0; in seekpos()
H A Dfstream.tcc180 open(const char* __s, ios_base::openmode __mode) in open() argument
185 _M_file.open(__s, __mode); in open()
189 _M_mode = __mode; in open()
200 if ((__mode & ios_base::ate) in open()
201 && this->seekoff(0, ios_base::end, __mode) in open()
215 open(const wchar_t* __s, ios_base::openmode __mode) in open() argument
220 _M_file.open(__s, __mode); in open()
224 _M_mode = __mode; in open()
235 if ((__mode & ios_base::ate) in open()
236 && this->seekoff(0, ios_base::end, __mode) in open()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/bits/
H A Dsstream.tcc168 seekoff(off_type __off, ios_base::seekdir __way, ios_base::openmode __mode) in seekoff() argument
171 bool __testin = (ios_base::in & this->_M_mode & __mode) != 0; in seekoff()
172 bool __testout = (ios_base::out & this->_M_mode & __mode) != 0; in seekoff()
174 __testin &= !(__mode & ios_base::out); in seekoff()
175 __testout &= !(__mode & ios_base::in); in seekoff()
216 seekpos(pos_type __sp, ios_base::openmode __mode) in seekpos() argument
219 const bool __testin = (ios_base::in & this->_M_mode & __mode) != 0; in seekpos()
220 const bool __testout = (ios_base::out & this->_M_mode & __mode) != 0; in seekpos()
H A Dfstream.tcc180 open(const char* __s, ios_base::openmode __mode) in open() argument
185 _M_file.open(__s, __mode); in open()
189 _M_mode = __mode; in open()
200 if ((__mode & ios_base::ate) in open()
201 && this->seekoff(0, ios_base::end, __mode) in open()
215 open(const wchar_t* __s, ios_base::openmode __mode) in open() argument
220 _M_file.open(__s, __mode); in open()
224 _M_mode = __mode; in open()
235 if ((__mode & ios_base::ate) in open()
236 && this->seekoff(0, ios_base::end, __mode) in open()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/arm-none-linux-gnueabihf/bits/
H A Dbasic_file.h85 open(const char* __name, ios_base::openmode __mode, int __prot = 0664); in _GLIBCXX_VISIBILITY()
89 open(const wchar_t* __name, ios_base::openmode __mode); in _GLIBCXX_VISIBILITY()
96 sys_open(int __fd, ios_base::openmode __mode) throw (); in _GLIBCXX_VISIBILITY()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/aarch64-none-linux-gnu/bits/
H A Dbasic_file.h85 open(const char* __name, ios_base::openmode __mode, int __prot = 0664); in _GLIBCXX_VISIBILITY()
89 open(const wchar_t* __name, ios_base::openmode __mode); in _GLIBCXX_VISIBILITY()
96 sys_open(int __fd, ios_base::openmode __mode) throw (); in _GLIBCXX_VISIBILITY()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/
H A Daio.h148 extern int lio_listio (int __mode,
183 (int __mode,
222 extern int lio_listio64 (int __mode,
H A Dfcntl.h242 extern int creat (const char *__file, mode_t __mode) __nonnull ((1));
245 extern int __REDIRECT (creat, (const char *__file, mode_t __mode),
252 extern int creat64 (const char *__file, mode_t __mode) __nonnull ((1));
H A Ddlfcn.h56 extern void *dlopen (const char *__file, int __mode) __THROWNL;
69 extern void *dlmopen (Lmid_t __nsid, const char *__file, int __mode) __THROWNL;
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/
H A Daio.h148 extern int lio_listio (int __mode,
183 (int __mode,
222 extern int lio_listio64 (int __mode,
H A Dfcntl.h242 extern int creat (const char *__file, mode_t __mode) __nonnull ((1));
245 extern int __REDIRECT (creat, (const char *__file, mode_t __mode),
252 extern int creat64 (const char *__file, mode_t __mode) __nonnull ((1));

123