Home
last modified time | relevance | path

Searched refs:next_chunk_ptr (Results 1 – 1 of 1) sorted by relevance

/external/perfetto/src/tracing/core/
Dtrace_buffer.cc206 uint8_t* next_chunk_ptr = wptr_; in DeleteNextChunksFor() local
211 while (next_chunk_ptr < search_end) { in DeleteNextChunksFor()
212 const ChunkRecord& next_chunk = *GetChunkRecordAt(next_chunk_ptr); in DeleteNextChunksFor()
214 " scanning chunk [%zu %zu] (valid=%d)", next_chunk_ptr - begin(), in DeleteNextChunksFor()
215 next_chunk_ptr - begin() + next_chunk.size, next_chunk.is_valid()); in DeleteNextChunksFor()
225 PERFETTO_DCHECK(next_chunk_ptr == wptr_); in DeleteNextChunksFor()
245 next_chunk_ptr - begin(), in DeleteNextChunksFor()
246 next_chunk_ptr - begin() + next_chunk.size, removed); in DeleteNextChunksFor()
250 next_chunk_ptr += next_chunk.size; in DeleteNextChunksFor()
256 PERFETTO_CHECK(next_chunk_ptr <= end()); in DeleteNextChunksFor()
[all …]