Lines Matching refs:machine_id
1329 " WHERE machine_id = " + str(self.collection.machine_id) +
1341 start_time = self.collection.glb.StartTime(self.collection.machine_id)
1408 def __init__(self, glb, db, machine_id): argument
1411 self.machine_id = machine_id
1414 self.xrangelo = glb.StartTime(machine_id)
1415 self.xrangehi = glb.FinishTime(machine_id)
1428 " WHERE machine_id = " + str(self.machine_id))
2203 self.start_time = self.glb.StartTime(collection.machine_id)
2285 rel_time_from = time_from - self.glb.StartTime(self.collection.machine_id)
2448 self.machine_id = glb.HostMachineId()
2449 self.collection_name = "SwitchGraphDataCollection " + str(self.machine_id)
2467 …reateModel(self.collection_name, lambda : SwitchGraphDataCollection(self.glb, db, self.machine_id))
4861 def SwitchesMinTime(self, machine_id): argument
4864 " WHERE time != 0 AND machine_id = " + str(machine_id) +
4867 def SwitchesMaxTime(self, machine_id): argument
4870 " WHERE time != 0 AND machine_id = " + str(machine_id) +
4873 def SamplesMinTime(self, machine_id): argument
4876 " WHERE time != 0 AND machine_id = " + str(machine_id) +
4879 def SamplesMaxTime(self, machine_id): argument
4882 " WHERE time != 0 AND machine_id = " + str(machine_id) +
4885 def CallsMinTime(self, machine_id): argument
4889 " WHERE calls.call_time != 0 AND threads.machine_id = " + str(machine_id) +
4892 def CallsMaxTime(self, machine_id): argument
4896 " WHERE calls.return_time != 0 AND threads.machine_id = " + str(machine_id) +
4899 def GetStartTime(self, machine_id): argument
4900 t0 = self.SwitchesMinTime(machine_id)
4901 t1 = self.SamplesMinTime(machine_id)
4902 t2 = self.CallsMinTime(machine_id)
4909 def GetFinishTime(self, machine_id): argument
4910 t0 = self.SwitchesMaxTime(machine_id)
4911 t1 = self.SamplesMaxTime(machine_id)
4912 t2 = self.CallsMaxTime(machine_id)
4931 def StartTime(self, machine_id): argument
4932 if machine_id == self.HostMachineId():
4934 return self.GetStartTime(machine_id)
4936 def FinishTime(self, machine_id): argument
4937 if machine_id == self.HostMachineId():
4939 return self.GetFinishTime(machine_id)