Home
last modified time | relevance | path

Searched refs:FileHandle (Results 1 – 10 of 10) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerIOWindows.cpp34 HANDLE FileHandle( in IsFile() local
38 if (FileHandle == INVALID_HANDLE_VALUE) { in IsFile()
44 DWORD FileType = GetFileType(FileHandle); in IsFile()
49 CloseHandle(FileHandle); in IsFile()
54 CloseHandle(FileHandle); in IsFile()
58 CloseHandle(FileHandle); in IsFile()
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitWriter.cpp39 int LLVMWriteBitcodeToFileHandle(LLVMModuleRef M, int FileHandle) { in LLVMWriteBitcodeToFileHandle() argument
40 return LLVMWriteBitcodeToFD(M, FileHandle, true, false); in LLVMWriteBitcodeToFileHandle()
/freebsd/contrib/unbound/contrib/
H A Dparseunbound.pl13 use FileHandle;
33 my $in = new FileHandle $logfile or die "Cannot open $logfile: $!\n";
/freebsd/tests/sys/acl/
H A Drun42 use FileHandle;
163 my $fh = new FileHandle("/etc/group")
/freebsd/crypto/openssl/util/
H A Dc-compress-test.pl38 use FileHandle;
/freebsd/contrib/llvm-project/llvm/lib/Support/Windows/
H A DPath.inc701 static std::error_code getStatus(HANDLE FileHandle, file_status &Result) {
703 if (FileHandle == INVALID_HANDLE_VALUE)
706 switch (::GetFileType(FileHandle)) {
727 if (!::GetFileInformationByHandle(FileHandle, &Info))
742 realPathFromHandle(FileHandle, ntPath, VOLUME_NAME_NT)) {
809 HANDLE FileHandle = reinterpret_cast<HANDLE>(_get_osfhandle(FD));
810 return getStatus(FileHandle, Result);
813 std::error_code status(file_t FileHandle, file_status &Result) {
814 return getStatus(FileHandle, Result);
858 HANDLE FileHandle = reinterpret_cast<HANDLE>(_get_osfhandle(FD));
[all …]
H A DSignals.inc768 ScopedCommonHandle FileHandle(reinterpret_cast<HANDLE>(_get_osfhandle(FD)));
771 FileHandle, DumpType, ExceptionInfo, NULL, NULL))
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DFileSystem.h1020 LLVM_ABI Expected<size_t> readNativeFile(file_t FileHandle,
1039 LLVM_ABI Error readNativeFileToEOF(file_t FileHandle,
1052 LLVM_ABI Expected<size_t> readNativeFileSlice(file_t FileHandle,
1290 sys::fs::file_t FileHandle = nullptr; variable
1298 FileHandle = Copied.FileHandle; in copyFrom()
/freebsd/contrib/sendmail/contrib/
H A Dsmcontrol.pl7 use FileHandle;
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DPath.cpp1174 Error readNativeFileToEOF(file_t FileHandle, SmallVectorImpl<char> &Buffer, in readNativeFileToEOF() argument
1184 FileHandle, MutableArrayRef(Buffer.begin() + Size, ChunkSize)); in readNativeFileToEOF()