Lines Matching refs:offset_
44 offset_ = 0; in Init()
52 offset_ = 0; in Init()
83 if (offset_ + size > maxSize_) { in Write()
84 HLOGE("write out of size!!! offset_ %zu size %zu max %zu", offset_, size, maxSize_); in Write()
87 if (offset_ + max > maxSize_) { in Write()
88 HLOGE("write out of size!!! offset_ %zu size %zu max %zu", offset_, size, maxSize_); in Write()
91 std::copy(buf, buf + size, wBuffer_ + offset_); in Write()
93 offset_ += size; in Write()
95 offset_ += max; in Write()
137 offset_ += size; in Skip()
144 HLOGE("read zero size!!! offset_ %zu size %zu max %zu", offset_, size, maxSize_); in Read()
146 } else if (offset_ + size > maxSize_) { in Read()
147 HLOGE("read out of size!!! offset_ %zu size %zu max %zu", offset_, size, maxSize_); in Read()
154 HLOGD("PerfFileSection::Read offset_ %zu size %zu maxSize_ %zu", offset_, size, maxSize_); in Read()
155 std::copy((rBuffer_ + offset_), (rBuffer_ + offset_ + size), buf); in Read()
156 offset_ += size; in Read()
157 HLOGDUMMY("after read offset_ %zx size %zu buf %x", offset_, size, buf[0]); in Read()