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.cc320 uint8_t* next_chunk_ptr = wptr_; in DeleteNextChunksFor() local
329 while (next_chunk_ptr < search_end) { in DeleteNextChunksFor()
330 const ChunkRecord& next_chunk = *GetChunkRecordAt(next_chunk_ptr); in DeleteNextChunksFor()
332 " scanning chunk [%zu %zu] (valid=%d)", next_chunk_ptr - begin(), in DeleteNextChunksFor()
333 next_chunk_ptr - begin() + next_chunk.size, next_chunk.is_valid()); in DeleteNextChunksFor()
343 PERFETTO_DCHECK(next_chunk_ptr == wptr_); in DeleteNextChunksFor()
367 next_chunk_ptr - begin(), in DeleteNextChunksFor()
368 next_chunk_ptr - begin() + next_chunk.size, removed); in DeleteNextChunksFor()
374 next_chunk_ptr += next_chunk.size; in DeleteNextChunksFor()
380 PERFETTO_CHECK(next_chunk_ptr <= end()); in DeleteNextChunksFor()
[all …]