Lines Matching refs:pid
70 name, pid, uid = "", "", ""
75 pid, uid = "", ""
77 pid = self.match_re(self.pidReMatcher, line)
81 if name != "" and pid != "" and uid != "":
82 self.add_mapping(name, int(pid), int(uid))
83 name, pid, uid = "", "", ""
108 def add_mapping(self, name, pid, uid): argument
110 self.uidByProcessDict[name][pid] = uid
112 self.uidByProcessDict[name] = {pid: uid}
114 def get_uid(self, name, pid): argument
116 if pid in self.uidByProcessDict[name]:
117 return self.uidByProcessDict[name][pid]