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/contrib/llvm-project/llvm/lib/Support/Windows/
H A DPath.inc700 static std::error_code getStatus(HANDLE FileHandle, file_status &Result) {
702 if (FileHandle == INVALID_HANDLE_VALUE)
705 switch (::GetFileType(FileHandle)) {
726 if (!::GetFileInformationByHandle(FileHandle, &Info))
741 realPathFromHandle(FileHandle, ntPath, VOLUME_NAME_NT)) {
808 HANDLE FileHandle = reinterpret_cast<HANDLE>(_get_osfhandle(FD));
809 return getStatus(FileHandle, Result);
812 std::error_code status(file_t FileHandle, file_status &Result) {
813 return getStatus(FileHandle, Result);
857 HANDLE FileHandle = reinterpret_cast<HANDLE>(_get_osfhandle(FD));
[all …]
H A DSignals.inc827 ScopedCommonHandle FileHandle(reinterpret_cast<HANDLE>(_get_osfhandle(FD)));
830 FileHandle, DumpType, ExceptionInfo, NULL, NULL))
/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/include/llvm/Support/
H A DFileSystem.h1012 Expected<size_t> readNativeFile(file_t FileHandle, MutableArrayRef<char> Buf);
1030 Error readNativeFileToEOF(file_t FileHandle, SmallVectorImpl<char> &Buffer,
1042 Expected<size_t> readNativeFileSlice(file_t FileHandle,
1279 sys::fs::file_t FileHandle = nullptr; variable
1287 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.cpp1175 Error readNativeFileToEOF(file_t FileHandle, SmallVectorImpl<char> &Buffer, in readNativeFileToEOF() argument
1185 FileHandle, MutableArrayRef(Buffer.begin() + Size, ChunkSize)); in readNativeFileToEOF()