Lines Matching refs:machine_id

1326 					" WHERE machine_id = " + str(self.collection.machine_id) +
1338 start_time = self.collection.glb.StartTime(self.collection.machine_id)
1405 def __init__(self, glb, db, machine_id): argument
1408 self.machine_id = machine_id
1411 self.xrangelo = glb.StartTime(machine_id)
1412 self.xrangehi = glb.FinishTime(machine_id)
1425 " WHERE machine_id = " + str(self.machine_id))
2200 self.start_time = self.glb.StartTime(collection.machine_id)
2282 rel_time_from = time_from - self.glb.StartTime(self.collection.machine_id)
2445 self.machine_id = glb.HostMachineId()
2446 self.collection_name = "SwitchGraphDataCollection " + str(self.machine_id)
2464 …reateModel(self.collection_name, lambda : SwitchGraphDataCollection(self.glb, db, self.machine_id))
4858 def SwitchesMinTime(self, machine_id): argument
4861 " WHERE time != 0 AND machine_id = " + str(machine_id) +
4864 def SwitchesMaxTime(self, machine_id): argument
4867 " WHERE time != 0 AND machine_id = " + str(machine_id) +
4870 def SamplesMinTime(self, machine_id): argument
4873 " WHERE time != 0 AND machine_id = " + str(machine_id) +
4876 def SamplesMaxTime(self, machine_id): argument
4879 " WHERE time != 0 AND machine_id = " + str(machine_id) +
4882 def CallsMinTime(self, machine_id): argument
4886 " WHERE calls.call_time != 0 AND threads.machine_id = " + str(machine_id) +
4889 def CallsMaxTime(self, machine_id): argument
4893 " WHERE calls.return_time != 0 AND threads.machine_id = " + str(machine_id) +
4896 def GetStartTime(self, machine_id): argument
4897 t0 = self.SwitchesMinTime(machine_id)
4898 t1 = self.SamplesMinTime(machine_id)
4899 t2 = self.CallsMinTime(machine_id)
4906 def GetFinishTime(self, machine_id): argument
4907 t0 = self.SwitchesMaxTime(machine_id)
4908 t1 = self.SamplesMaxTime(machine_id)
4909 t2 = self.CallsMaxTime(machine_id)
4928 def StartTime(self, machine_id): argument
4929 if machine_id == self.HostMachineId():
4931 return self.GetStartTime(machine_id)
4933 def FinishTime(self, machine_id): argument
4934 if machine_id == self.HostMachineId():
4936 return self.GetFinishTime(machine_id)