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

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

Completed in 43 milliseconds