Home
last modified time | relevance | path

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

/external/stlport/src/
Dfstream.cpp61 if (__this->_M_mmap_base) in _M_doit()
62 __this->_M_base._M_unmap(__this->_M_mmap_base, __this->_M_mmap_len); in _M_doit()
77 if ((__this->_M_mmap_base = __this->_M_base._M_mmap(__offset, __this->_M_mmap_len)) != 0) { in _M_doit()
78 __this->setg(__STATIC_CAST(char*, __this->_M_mmap_base), in _M_doit()
79 … __STATIC_CAST(char*, __this->_M_mmap_base) + __STATIC_CAST(ptrdiff_t, __remainder), in _M_doit()
80 … __STATIC_CAST(char*, __this->_M_mmap_base) + __STATIC_CAST(ptrdiff_t, __this->_M_mmap_len)); in _M_doit()
87 __this->_M_mmap_base = 0; in _M_doit()
/external/stlport/stlport/stl/
D_fstream.c58 _M_mmap_base(0), _M_mmap_len(0), in basic_filebuf()
100 _M_mmap_base = 0; in close()
119 if (_M_mmap_base != 0) { in _M_exit_input_mode()
120 _M_base._M_unmap(_M_mmap_base, _M_mmap_len); in _M_exit_input_mode()
121 _M_mmap_base = 0; in _M_exit_input_mode()
169 !_M_mmap_base)) { in pbackfail()
314 if (_M_mmap_base != 0) { in seekoff()
317 streamoff __adjust = _M_mmap_len - (this->gptr() - (_CharT*) _M_mmap_base); in seekoff()
D_fstream.h302 void* _M_mmap_base; variable