Lines Matching refs:it
161 auto it = begin(); in args() local
162 ++it; // skip start fmt in args()
163 ++it; // skip timestamp in args()
164 ++it; // skip hash in args()
166 if (it->type == EVENT_FMT_AUTHOR) { in args()
167 ++it; in args()
169 return it; in args()
174 auto it = begin(); in timestamp() local
175 ++it; // skip start fmt in timestamp()
176 return it.payload<int64_t>(); in timestamp()
181 auto it = begin(); in hash() local
182 ++it; // skip start fmt in hash()
183 ++it; // skip timestamp in hash()
186 memcpy(&hash, it->data, sizeof(hash)); in hash()
192 auto it = begin(); in author() local
193 ++it; // skip start fmt in author()
194 ++it; // skip timestamp in author()
195 ++it; // skip hash in author()
197 return it->type == EVENT_FMT_AUTHOR ? it.payload<int>() : -1; in author()
203 auto it = begin(); in copyWithAuthor() local
204 it.copyTo(dst); // copy fmt start entry in copyWithAuthor()
205 (++it).copyTo(dst); // copy timestamp in copyWithAuthor()
206 (++it).copyTo(dst); // copy hash in copyWithAuthor()
217 while ((++it)->type != EVENT_FMT_END) { in copyWithAuthor()
218 it.copyTo(dst); in copyWithAuthor()
220 it.copyTo(dst); in copyWithAuthor()
221 ++it; in copyWithAuthor()
222 return it; in copyWithAuthor()
237 EntryIterator it(mEntry); in author() local
238 return it->length == sizeof(HistTsEntryWithAuthor) in author()
239 ? it.payload<HistTsEntryWithAuthor>().author : -1; in author()