Lines Matching refs:HostID
69 static std::error_code getHostID(SmallVectorImpl<char> &HostID) {
70 HostID.clear();
82 HostID.append(UUIDRef.begin(), UUIDRef.end());
90 HostID.append(HostNameRef.begin(), HostNameRef.end());
94 HostID.append(Dummy.begin(), Dummy.end());
100 bool LockFileManager::processStillExecuting(StringRef HostID, int PID) {
107 if (StoredHostID == HostID && getsid(PID) == -1 && errno == ESRCH)
170 SmallString<256> HostID;
171 if (auto EC = getHostID(HostID)) {
177 Out << HostID << ' ';