Lines Matching refs:buf_
21 const char* buf_; member in __anon0cfca4b00111::IdmapBuffer
25 IdmapBuffer() : buf_((const char *)MAP_FAILED), len_(0), pos_(0) {} in IdmapBuffer()
28 if (buf_ != MAP_FAILED) { in ~IdmapBuffer()
29 munmap(const_cast<char*>(buf_), len_); in ~IdmapBuffer()
46 … if ((buf_ = (const char*)mmap(NULL, len_, PROT_READ, MAP_PRIVATE, fd, 0)) == MAP_FAILED) { in init()
56 if (!buf_) { in nextUint32()
67 if ((reinterpret_cast<uintptr_t>(buf_ + pos_) & 0x3) != 0) { in nextUint32()
72 *i = dtohl(*reinterpret_cast<const uint32_t*>(buf_ + pos_)); in nextUint32()
78 if (!buf_) { in nextUint16()
89 if ((reinterpret_cast<uintptr_t>(buf_ + pos_) & 0x1) != 0) { in nextUint16()
94 *i = dtohs(*reinterpret_cast<const uint16_t*>(buf_ + pos_)); in nextUint16()
100 if (!buf_) { in nextPath()
108 memcpy(b, buf_ + pos_, PATH_LENGTH); in nextPath()