Lines Matching refs:machine_id
1319 " WHERE machine_id = " + str(self.collection.machine_id) +
1331 start_time = self.collection.glb.StartTime(self.collection.machine_id)
1398 def __init__(self, glb, db, machine_id): argument
1401 self.machine_id = machine_id
1404 self.xrangelo = glb.StartTime(machine_id)
1405 self.xrangehi = glb.FinishTime(machine_id)
1418 " WHERE machine_id = " + str(self.machine_id))
2193 self.start_time = self.glb.StartTime(collection.machine_id)
2275 rel_time_from = time_from - self.glb.StartTime(self.collection.machine_id)
2438 self.machine_id = glb.HostMachineId()
2439 self.collection_name = "SwitchGraphDataCollection " + str(self.machine_id)
2457 …reateModel(self.collection_name, lambda : SwitchGraphDataCollection(self.glb, db, self.machine_id))
4939 def SwitchesMinTime(self, machine_id): argument
4942 " WHERE time != 0 AND machine_id = " + str(machine_id) +
4945 def SwitchesMaxTime(self, machine_id): argument
4948 " WHERE time != 0 AND machine_id = " + str(machine_id) +
4951 def SamplesMinTime(self, machine_id): argument
4954 " WHERE time != 0 AND machine_id = " + str(machine_id) +
4957 def SamplesMaxTime(self, machine_id): argument
4960 " WHERE time != 0 AND machine_id = " + str(machine_id) +
4963 def CallsMinTime(self, machine_id): argument
4967 " WHERE calls.call_time != 0 AND threads.machine_id = " + str(machine_id) +
4970 def CallsMaxTime(self, machine_id): argument
4974 " WHERE calls.return_time != 0 AND threads.machine_id = " + str(machine_id) +
4977 def GetStartTime(self, machine_id): argument
4978 t0 = self.SwitchesMinTime(machine_id)
4979 t1 = self.SamplesMinTime(machine_id)
4980 t2 = self.CallsMinTime(machine_id)
4987 def GetFinishTime(self, machine_id): argument
4988 t0 = self.SwitchesMaxTime(machine_id)
4989 t1 = self.SamplesMaxTime(machine_id)
4990 t2 = self.CallsMaxTime(machine_id)
5009 def StartTime(self, machine_id): argument
5010 if machine_id == self.HostMachineId():
5012 return self.GetStartTime(machine_id)
5014 def FinishTime(self, machine_id): argument
5015 if machine_id == self.HostMachineId():
5017 return self.GetFinishTime(machine_id)