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))
179 if e.call == "openat":
188 elif e.call == "close":
194 elif e.call == "lseek":
199 elif e.call == "_llseek":
204 elif e.call == "read":
213 elif e.call == "write":
222 elif e.call == "pread64":
230 elif e.call == "pwrite64":
238 elif e.call == "fsync":
244 elif e.call == "fdatasync":
250 elif e.call == "mmap2":
331 types[e.call] += 1