Lines Matching refs:sectionMetadata
425 void ReportWriter::endSection(IncidentMetadata::SectionStats* sectionMetadata) { in endSection() argument
432 sectionMetadata->set_id(mCurrentSectionId); in endSection()
433 sectionMetadata->set_success((!mHadError) && mSectionBufferSuccess); in endSection()
434 sectionMetadata->set_report_size_bytes(mMaxSectionDataFilteredSize); in endSection()
435 sectionMetadata->set_exec_duration_ms(endTime - mSectionStartTimeMs); in endSection()
436 sectionMetadata->set_dump_size_bytes(mDumpSizeBytes); in endSection()
437 sectionMetadata->set_dump_duration_ms(mDumpDurationMs); in endSection()
438 sectionMetadata->set_timed_out(mSectionTimedOut); in endSection()
439 sectionMetadata->set_is_truncated(mSectionTruncated); in endSection()
440 sectionMetadata->set_error_msg(mSectionErrors); in endSection()
715 IncidentMetadata::SectionStats* sectionMetadata = metadata->add_sections(); in execute_section() local
726 mWriter.endSection(sectionMetadata); in execute_section()
735 (*reportByteSize) += sectionMetadata->report_size_bytes(); in execute_section()