This file is indexed.

/usr/include/measurement_kit/report/error.hpp is in libmeasurement-kit-dev 0.7.1-2build1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Part of measurement-kit <https://measurement-kit.github.io/>.
// Measurement-kit is free software. See AUTHORS and LICENSE for more
// information on the copying conditions.
#ifndef MEASUREMENT_KIT_REPORT_ERROR_HPP
#define MEASUREMENT_KIT_REPORT_ERROR_HPP

#include <measurement_kit/common.hpp>

namespace mk {
namespace report {

MK_DEFINE_ERR(MK_ERR_REPORT(0), ReportAlreadyOpenError, "report_already_open")
MK_DEFINE_ERR(MK_ERR_REPORT(1), ReportNotOpenError, "report_not_open")
MK_DEFINE_ERR(MK_ERR_REPORT(2), ReportAlreadyClosedError, "report_already_closed")
MK_DEFINE_ERR(MK_ERR_REPORT(3), ReportEofError, "report_eof_error")
MK_DEFINE_ERR(MK_ERR_REPORT(4), ReportIoError, "report_io_error")
MK_DEFINE_ERR(MK_ERR_REPORT(5), ReportLogicalError, "report_formatting_error")
MK_DEFINE_ERR(MK_ERR_REPORT(6), DuplicateEntrySubmitError, "duplicate_entry_submitted")
MK_DEFINE_ERR(MK_ERR_REPORT(7), MissingReportIdError, "missing_report_id")
MK_DEFINE_ERR(MK_ERR_REPORT(8), MultipleReportIdsError, "multiple_inconsistent_report_ids")

} // namespace report
} // namespace mk
#endif