Home | History | Annotate | Download | only in details

Lines Matching defs:base

318   void* base;
320 base = MMAP(0, len, PROT_READ, MAP_PRIVATE, _M_file_id, offset);
321 if (base != (void*)MAP_FAILED) {
323 this->_M_unmap(base, len);
324 base = 0;
327 base =0;
331 base = 0;
333 return base;
336 void _Filebuf_base::_M_unmap(void* base, streamoff len)
340 munmap((char*)base, len);
343 _STLP_MARK_PARAMETER_AS_UNUSED(base)