Lines Matching defs:AuditData
52 class AuditData:
184 A base class that uses X509Parser to parse files to a list of AuditData.
190 - parse_file: Method that parses a single file to a list of AuditData.
221 def parse_file(self, filename: str) -> typing.List[AuditData]:
223 Parse a list of AuditData from file.
226 :return list of AuditData parsed from the file.
231 """Parse AuditData from bytes."""
239 audit_data = AuditData(data_type, result)
244 results: typing.Dict[str, AuditData],
252 AuditData. The keys of this dictionary should
253 be the identifier of the AuditData.
282 def parse_file(self, filename: str) -> typing.List[AuditData]:
284 Parse a list of AuditData from data file.
287 :return list of AuditData parsed from the file.
349 Parse a list of AuditData from test suite data file.
352 :return list of AuditData parsed from the file.
374 def list_all(audit_data: AuditData):