Lines Matching refs:self
29 def __init__(self): argument
30 self.functions = {}
31 self.codes = set()
32 self.status_names = {}
34 def collect_log(self, log_file_name): argument
43 if function not in self.functions:
44 self.functions[function] = {}
45 fdata = self.functions[function]
46 if value not in self.functions[function]:
49 self.codes.add(int(value))
51 def get_constant_names(self, psa_constant_names): argument
53 values = [str(value) for value in self.codes]
57 self.status_names[value] = name
59 def report(self): argument
64 for function in sorted(self.functions.keys()):
65 fdata = self.functions[function]
66 names = [self.status_names[value] for value in fdata.keys()]