Searched refs:ReadFD (Results 1 – 1 of 1) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Support/ |
| H A D | Path.cpp | 993 static std::error_code copy_file_internal(int ReadFD, int WriteFD) { in copy_file_internal() argument 998 BytesRead = read(ReadFD, Buf, BufSize); in copy_file_internal() 1019 int ReadFD, WriteFD; in copy_file() local 1020 if (std::error_code EC = openFileForRead(From, ReadFD, OF_None)) in copy_file() 1024 close(ReadFD); in copy_file() 1028 std::error_code EC = copy_file_internal(ReadFD, WriteFD); in copy_file() 1030 close(ReadFD); in copy_file() 1038 int ReadFD; in copy_file() local 1039 if (std::error_code EC = openFileForRead(From, ReadFD, OF_None)) in copy_file() 1042 std::error_code EC = copy_file_internal(ReadFD, ToFD); in copy_file() [all …]
|