Lines Matching refs:time
59 def add_outgoing_edge(self, edge, time): argument
60 self.outgoing[edge.ename()] = [edge, time]
62 def add_incoming_edge(self, edge, time): argument
63 self.incoming[edge.ename()] = [edge, time]
65 def addpid(self, pid, time): argument
67 self.pidset[pid] = [time, 0]
68 self.pidset[pid][1] = time
181 def __init__(self, src = IPCNode(), dst = IPCNode(), data = '0', flags = '0', time = 0.0): argument
195 self.src.add_outgoing_edge(self, time)
196 self.dst.add_incoming_edge(self, time)
197 self.addmsg(data, flags, time)
242 def addmsg(self, data_hex_str, flags_str, time): argument
314 self.src.outgoing_msg(dsize, time)
315 self.dst.incoming_msg(dsize, time)
368 def addmsg(self, src_str, src_pid, dst_str, dst_pid, data_hex_str, flags_str, time): argument
384 src.addpid(src_pid, time)
385 dst.addpid(dst_pid, time)
394 msgdata, msgDtype = e.addmsg(data_hex_str, flags_str, time)
396 e = IPCEdge(src, dst, data_hex_str, flags_str, time)