D | benchgen.py | 35 def __init__(self, thread, time, call, args, ret): argument 38 self.call = call 43 return "%s(%s)=%s" % (self.call, repr(self.args), self.ret) 119 time, call, args, ret = line.groups() variable 120 if call not in interesting: continue 125 events.append(Event(thread, time, call, args, ret)) 187 if e.call == "openat": 201 elif e.call == "close": 207 elif e.call == "lseek": 212 elif e.call == "_llseek": [all …]
|