Home
last modified time | relevance | path

Searched refs:_M_mmap_len (Results 1 – 3 of 3) sorted by relevance

/ndk/sources/cxx-stl/stlport/src/
Dfstream.cpp62 __this->_M_base._M_unmap(__this->_M_mmap_base, __this->_M_mmap_len); in _M_doit()
72 __this->_M_mmap_len = __size - __offset; in _M_doit()
74 if (__this->_M_mmap_len > MMAP_CHUNK) in _M_doit()
75 __this->_M_mmap_len = MMAP_CHUNK; in _M_doit()
77 if ((__this->_M_mmap_base = __this->_M_base._M_mmap(__offset, __this->_M_mmap_len)) != 0) { in _M_doit()
80 … __STATIC_CAST(char*, __this->_M_mmap_base) + __STATIC_CAST(ptrdiff_t, __this->_M_mmap_len)); in _M_doit()
84 __this->_M_mmap_len = 0; in _M_doit()
88 __this->_M_mmap_len = 0; in _M_doit()
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_fstream.c58 _M_mmap_base(0), _M_mmap_len(0), in basic_filebuf()
101 _M_mmap_len = 0; in close()
120 _M_base._M_unmap(_M_mmap_base, _M_mmap_len); in _M_exit_input_mode()
122 _M_mmap_len = 0; in _M_exit_input_mode()
317 streamoff __adjust = _M_mmap_len - (this->gptr() - (_CharT*) _M_mmap_base); in seekoff()
D_fstream.h303 streamoff _M_mmap_len; variable