Lines Matching refs:call
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":
217 elif e.call == "read":
226 elif e.call == "write":
235 elif e.call == "pread64":
243 elif e.call == "pwrite64":
251 elif e.call == "fsync":
257 elif e.call == "fdatasync":
263 elif e.call == "mmap2":
350 types[e.call] += 1