Home
last modified time | relevance | path

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

/external/perfetto/src/trace_processor/importers/fuchsia/
Dfuchsia_trace_tokenizer.cc200 if (record_type != kMetadata && current_provider_ == nullptr) { in ParseRecord()
226 current_provider_ = providers_[provider_id].get(); in ParseRecord()
239 if (!cursor.ReadUint64(&current_provider_->ticks_per_second)) { in ParseRecord()
256 current_provider_->string_table[index] = id; in ParseRecord()
269 current_provider_->thread_table[index] = tinfo; in ParseRecord()
286 record->set_ticks_per_second(current_provider_->ticks_per_second); in ParseRecord()
294 ticks, current_provider_->ticks_per_second); in ParseRecord()
305 current_provider_->thread_table[thread_ref]); in ParseRecord()
312 record->InsertString(cat_ref, current_provider_->string_table[cat_ref]); in ParseRecord()
320 current_provider_->string_table[name_ref]); in ParseRecord()
[all …]
Dfuchsia_trace_tokenizer.h66 ProviderInfo* current_provider_; variable