Searched refs:HostID (Results 1 - 1 of 1) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DLockFileManager.cpp83 static std::error_code getHostID(SmallVectorImpl<char> &HostID) { argument
84 HostID.clear();
96 HostID.append(UUIDRef.begin(), UUIDRef.end());
104 HostID.append(HostNameRef.begin(), HostNameRef.end());
108 HostID.append(Dummy.begin(), Dummy.end());
114 bool LockFileManager::processStillExecuting(StringRef HostID, int PID) { argument
121 if (StoredHostID == HostID && getsid(PID) == -1 && errno == ESRCH)
192 SmallString<256> HostID; local
193 if (auto EC = getHostID(HostID)) {
199 Out << HostID << ' ' << sy
[all...]

Completed in 124 milliseconds