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.cc326 uint8_t* next_chunk_ptr = wptr_; in DeleteNextChunksFor() local
335 while (next_chunk_ptr < search_end) { in DeleteNextChunksFor()
336 const ChunkRecord& next_chunk = *GetChunkRecordAt(next_chunk_ptr); in DeleteNextChunksFor()
338 " scanning chunk [%zu %zu] (valid=%d)", next_chunk_ptr - begin(), in DeleteNextChunksFor()
339 next_chunk_ptr - begin() + next_chunk.size, next_chunk.is_valid()); in DeleteNextChunksFor()
349 PERFETTO_DCHECK(next_chunk_ptr == wptr_); in DeleteNextChunksFor()
373 next_chunk_ptr - begin(), next_chunk_ptr - begin() + next_chunk.size, in DeleteNextChunksFor()
380 next_chunk_ptr += next_chunk.size; in DeleteNextChunksFor()
386 PERFETTO_CHECK(next_chunk_ptr <= end()); in DeleteNextChunksFor()
397 PERFETTO_DCHECK(next_chunk_ptr >= search_end && next_chunk_ptr <= end()); in DeleteNextChunksFor()
[all …]