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

/freebsd-13-stable/contrib/llvm-project/lld/Common/
H A DFilesystem.cpp68 SmallString<128> tmpName;
69 if (!sys::fs::createUniqueFile(path + "%%%%%%%%.tmp", tmpName)) {
70 if (!sys::fs::rename(path, tmpName))
71 path = tmpName;
73 sys::fs::remove(tmpName);
/freebsd-13-stable/contrib/bzip2/
H A Dbzip2.c207 Char tmpName[FILE_NAME_LEN]; variable
1764 for (j = 0; j < k; j++) tmpName[j] = p[j];
1765 tmpName[k] = 0;
1766 APPEND_FLAG(*argList, tmpName);
/freebsd-13-stable/contrib/llvm-project/lld/COFF/
H A DDriver.cpp797 SmallString<128> tmpName; local
799 sys::fs::createUniqueFile(path + ".tmp-%%%%%%%%.lib", tmpName))
803 if (Error e = writeImportLibrary(libName, tmpName, exports, config->machine,
810 tmpName, /*FileSize*/ -1, /*RequiresNullTerminator*/ false));
813 handleError(errorCodeToError(sys::fs::rename(tmpName, path)));
815 sys::fs::remove(tmpName);
/freebsd-13-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/
H A DMachONormalizedFileFromAtoms.cpp1082 char tmpName[16]; local
1083 sprintf(tmpName, "L%04u", tempNum++);
1084 StringRef tempRef(tmpName);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp2562 std::string tmpName = InFileName; local
2564 for (i=0; i < tmpName.length(); i++) {
2565 char c = tmpName.at(i);
2568 tmpName[i] = '_';
2570 S += tmpName;
H A DRewriteObjC.cpp2489 std::string tmpName = InFileName; local
2491 for (i=0; i < tmpName.length(); i++) {
2492 char c = tmpName.at(i);
2495 tmpName[i] = '_';
2497 S += tmpName;

Completed in 274 milliseconds