Searched refs:__id (Results 1 – 5 of 5) sorted by relevance
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _fstream.h | 61 bool _M_open(int __id, ios_base::openmode = ios_base::__default_mode); 63 bool _M_open(_STLP_fd __id, ios_base::openmode = ios_base::__default_mode); 181 _Self* open(int __id, ios_base::openmode _Init_mode = ios_base::__default_mode) { 182 return this->_M_open(__id, _Init_mode); 186 _Self* open(_STLP_fd __id, ios_base::openmode _Init_mode = ios_base::__default_mode) { 187 return _M_base._M_open(__id, _Init_mode) ? this : 0; 193 _Self* _M_open(int __id, ios_base::openmode _Init_mode = ios_base::__default_mode) { 194 return _M_base._M_open(__id, _Init_mode) ? this : 0; 471 explicit basic_ifstream(int __id, ios_base::openmode __mod = ios_base::in) : 474 if (!_M_buf.open(__id, __mod | ios_base::in)) [all …]
|
D | _locale.h | 199 void _M_insert(facet* __f, id& __id);
|
/ndk/sources/cxx-stl/stlport/src/details/ |
D | fstream_win32io.cpp | 301 bool _Filebuf_base::_M_open(_STLP_fd __id, ios_base::openmode init_mode) { in _M_open() argument 305 if (_M_is_open || __id == INVALID_STLP_FD) in _M_open() 311 _M_openmode = _get_osfflags(-1, __id); in _M_open() 314 _M_file_id = __id; in _M_open() 320 (void)__id; in _M_open()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | thread | 226 operator<<(basic_ostream<_CharT, _Traits>& __os, __thread_id __id) 227 {return __os << __id.__id_;} 231 __thread_id(pthread_t __id) : __id_(__id) {}
|
D | mutex | 287 pthread_t __id = pthread_self(); 289 if (pthread_equal(__id, __id_)) 302 __id_ = __id;
|