Home
last modified time | relevance | path

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

/external/perfetto/src/trace_processor/
Dtrace_processor_impl.cc266 if (!context_.chunk_reader) { in Parse()
278 context_.chunk_reader.reset(new JsonTraceTokenizer(&context_)); in Parse()
294 context_.chunk_reader.reset(new ProtoTraceTokenizer(&context_)); in Parse()
299 context_.chunk_reader.reset(new FuchsiaTraceTokenizer(&context_)); in Parse()
310 bool res = context_.chunk_reader->Parse(std::move(data), size); in Parse()
316 if (unrecoverable_parse_error_ || !context_.chunk_reader) in NotifyEndOfFile()
Dtrace_processor_context.h51 std::unique_ptr<ChunkedTraceReader> chunk_reader; variable
Dproto_trace_parser_unittest.cc170 context_.chunk_reader.reset(new ProtoTraceTokenizer(&context_)); in Tokenize()
171 context_.chunk_reader->Parse(std::move(raw_trace), trace_bytes.size()); in Tokenize()