Home
last modified time | relevance | path

Searched refs:ReadFD (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/llvm/unittests/Support/
H A DReplaceFileTest.cpp88 int ReadFD = 0; in TEST() local
89 ASSERT_NO_ERROR(fs::openFileForRead(TargetFileName, ReadFD)); in TEST()
90 ScopedFD EventuallyCloseIt(ReadFD); in TEST()
97 EXPECT_TRUE(FDHasContent(ReadFD, "!!target!!")); in TEST()
/llvm-project-15.0.7/llvm/lib/Support/
H A DPath.cpp991 static std::error_code copy_file_internal(int ReadFD, int WriteFD) { in copy_file_internal() argument
996 BytesRead = read(ReadFD, Buf, BufSize); in copy_file_internal()
1017 int ReadFD, WriteFD; in copy_file() local
1018 if (std::error_code EC = openFileForRead(From, ReadFD, OF_None)) in copy_file()
1022 close(ReadFD); in copy_file()
1026 std::error_code EC = copy_file_internal(ReadFD, WriteFD); in copy_file()
1028 close(ReadFD); in copy_file()
1036 int ReadFD; in copy_file() local
1037 if (std::error_code EC = openFileForRead(From, ReadFD, OF_None)) in copy_file()
1040 std::error_code EC = copy_file_internal(ReadFD, ToFD); in copy_file()
[all …]