Home
last modified time | relevance | path

Searched refs:_STLP_fd (Results 1 – 4 of 4) sorted by relevance

/ndk/sources/cxx-stl/stlport/stlport/stl/
D_fstream.h42 typedef void* _STLP_fd; typedef
44 typedef int _STLP_fd; typedef
63 bool _M_open(_STLP_fd __id, ios_base::openmode = ios_base::__default_mode);
113 _STLP_fd _M_file_id;
124 _STLP_fd _M_view_id;
133 _STLP_fd __get_fd() const { return _M_file_id; } in __get_fd()
179 _STLP_fd fd() const { return _M_base.__get_fd(); } in fd()
186 _Self* open(_STLP_fd __id, ios_base::openmode _Init_mode = ios_base::__default_mode) {
486 explicit basic_ifstream(_STLP_fd __id, ios_base::openmode __mod = ios_base::in) :
564 explicit basic_ofstream(_STLP_fd __id, ios_base::openmode __mod = ios_base::out)
[all …]
/ndk/sources/cxx-stl/stlport/src/details/
Dfstream_stdio.cpp85 const _STLP_fd INVALID_STLP_FD = -1;
128 static bool __is_regular_file(_STLP_fd fd) { in __is_regular_file()
134 static streamoff __file_size(_STLP_fd fd) { in __file_size()
175 _STLP_fd file_no; in _M_open()
Dfstream_unistd.cpp50 const _STLP_fd INVALID_STLP_FD = -1;
104 static bool __is_regular_file(_STLP_fd fd) { in __is_regular_file()
110 static streamoff __file_size(_STLP_fd fd) { in __file_size()
158 _STLP_fd file_no; in _M_open()
Dfstream_win32io.cpp33 const _STLP_fd INVALID_STLP_FD = INVALID_HANDLE_VALUE;
72 static bool __is_regular_file(_STLP_fd fd) { in __is_regular_file()
81 static streamoff __file_size(_STLP_fd fd) { in __file_size()
220 _STLP_fd file_no; in _M_open()
301 bool _Filebuf_base::_M_open(_STLP_fd __id, ios_base::openmode init_mode) { in _M_open()