| /llvm-project-15.0.7/lldb/source/Host/windows/ |
| H A D | PipeWindows.cpp | 29 : m_read(INVALID_HANDLE_VALUE), m_write(INVALID_HANDLE_VALUE), in PipeWindows() 51 m_read = INVALID_HANDLE_VALUE; in PipeWindows() 57 m_write = INVALID_HANDLE_VALUE; in PipeWindows() 114 if (INVALID_HANDLE_VALUE == m_read) in CreateNew() 189 if (INVALID_HANDLE_VALUE == m_read) in OpenNamedPipe() 199 if (INVALID_HANDLE_VALUE == m_write) in OpenNamedPipe() 221 m_read = INVALID_HANDLE_VALUE; in ReleaseReadFileDescriptor() 231 m_write = INVALID_HANDLE_VALUE; in ReleaseWriteFileDescriptor() 244 m_read = INVALID_HANDLE_VALUE; in CloseReadFileDescriptor() 254 m_write = INVALID_HANDLE_VALUE; in CloseWriteFileDescriptor() [all …]
|
| H A D | ConnectionGenericFileWindows.cpp | 54 : m_file(INVALID_HANDLE_VALUE), m_owns_file(false) { in ConnectionGenericFile() 89 return m_file && (m_file != INVALID_HANDLE_VALUE); in IsConnected() 124 if (m_file == INVALID_HANDLE_VALUE) { in Connect() 146 m_file = INVALID_HANDLE_VALUE; in Disconnect()
|
| H A D | LockFileWindows.cpp | 40 return LockFileBase::IsValidFile() && m_file != INVALID_HANDLE_VALUE; in IsValidFile()
|
| H A D | FileSystem.cpp | 62 if (h == INVALID_HANDLE_VALUE) { in Readlink()
|
| H A D | ProcessLauncherWindows.cpp | 178 return (result == INVALID_HANDLE_VALUE) ? NULL : result; in GetStdioHandle()
|
| /llvm-project-15.0.7/libcxx/src/filesystem/ |
| H A D | directory_iterator.cpp | 30 __ds.__stream_ = INVALID_HANDLE_VALUE; in __dir_stream() 34 : __stream_(INVALID_HANDLE_VALUE), __root_(root) { in __dir_stream() 40 if (__stream_ == INVALID_HANDLE_VALUE) { in __dir_stream() 54 if (__stream_ == INVALID_HANDLE_VALUE) in ~__dir_stream() 59 bool good() const noexcept { return __stream_ != INVALID_HANDLE_VALUE; } in good() 89 __stream_ = INVALID_HANDLE_VALUE; in close() 93 HANDLE __stream_{INVALID_HANDLE_VALUE};
|
| H A D | posix_compat.h | 163 if (h != INVALID_HANDLE_VALUE) in ~WinHandle() 167 operator bool() const { return h != INVALID_HANDLE_VALUE; }
|
| /llvm-project-15.0.7/llvm/lib/Support/Windows/ |
| H A D | Program.inc | 137 return INVALID_HANDLE_VALUE; 156 return INVALID_HANDLE_VALUE; 159 return INVALID_HANDLE_VALUE; 164 if (h == INVALID_HANDLE_VALUE) { 229 si.hStdInput = INVALID_HANDLE_VALUE; 230 si.hStdOutput = INVALID_HANDLE_VALUE; 231 si.hStdError = INVALID_HANDLE_VALUE; 237 if (si.hStdInput == INVALID_HANDLE_VALUE) { 242 if (si.hStdOutput == INVALID_HANDLE_VALUE) { 261 if (si.hStdError == INVALID_HANDLE_VALUE) { [all …]
|
| /llvm-project-15.0.7/compiler-rt/lib/profile/ |
| H A D | WindowsMMap.c | 55 mmap_fd = INVALID_HANDLE_VALUE; in mmap() 160 if (handle == INVALID_HANDLE_VALUE) in flock()
|
| /llvm-project-15.0.7/openmp/runtime/src/ |
| H A D | kmp_io.cpp | 101 if (ho == INVALID_HANDLE_VALUE || ho == NULL) { in __kmp_redirect_output() 113 if (he == INVALID_HANDLE_VALUE || he == NULL) { in __kmp_redirect_output()
|
| /llvm-project-15.0.7/lld/test/ELF/ |
| H A D | link-open-file.test | 35 INVALID_HANDLE_VALUE = w.HANDLE(-1).value 42 assert h != INVALID_HANDLE_VALUE, 'Failed to open ' + filename
|
| /llvm-project-15.0.7/lldb/include/lldb/Host/windows/ |
| H A D | AutoHandle.h | 18 AutoHandle(HANDLE handle, HANDLE invalid_value = INVALID_HANDLE_VALUE)
|
| /llvm-project-15.0.7/compiler-rt/test/asan/TestCases/Windows/ |
| H A D | heapalloc_dll_double_free.cpp | 19 assert(lib != INVALID_HANDLE_VALUE); in main()
|
| H A D | heapalloc_dll_unload_realloc_uaf.cpp | 19 assert(lib != INVALID_HANDLE_VALUE); in main()
|
| H A D | tls_init.cpp | 27 if (!out || out == INVALID_HANDLE_VALUE) in my_thread_callback()
|
| H A D | dll_unload.cpp | 19 assert(lib != INVALID_HANDLE_VALUE); in main()
|
| H A D | rtlallocateheap_dll_unload_double_free.cpp | 42 assert(lib != INVALID_HANDLE_VALUE); in main()
|
| H A D | rtlallocateheap_dll_unload_realloc.cpp | 50 assert(lib != INVALID_HANDLE_VALUE); in main()
|
| /llvm-project-15.0.7/compiler-rt/lib/fuzzer/ |
| H A D | FuzzerIOWindows.cpp | 38 if (FileHandle == INVALID_HANDLE_VALUE) { in IsFile() 128 if (FindHandle == INVALID_HANDLE_VALUE) in ListFilesInDirRecursive() 180 if (FindHandle == INVALID_HANDLE_VALUE) { in IterateDirRecursive()
|
| /llvm-project-15.0.7/lldb/test/API/tools/lldb-server/commandline/ |
| H A D | TestGdbRemoteConnection.py | 24 INVALID_HANDLE_VALUE = -1 variable 73 if self._handle != INVALID_HANDLE_VALUE:
|
| /llvm-project-15.0.7/clang/lib/DirectoryWatcher/windows/ |
| H A D | DirectoryWatcher-windows.cpp | 86 : Callback(Receiver), Terminate(INVALID_HANDLE_VALUE) { in DirectoryWatcherWindows() 288 if (DirectoryHandle == INVALID_HANDLE_VALUE) in create()
|
| /llvm-project-15.0.7/compiler-rt/test/builtins/Unit/ |
| H A D | clear_cache_test.c | 76 HANDLE mapping = CreateFileMapping(INVALID_HANDLE_VALUE, NULL, in main()
|
| /llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_stoptheworld_win.cpp | 95 CHECK(threads != INVALID_HANDLE_VALUE); in RunThread()
|
| /llvm-project-15.0.7/llvm/include/llvm/Support/Windows/ |
| H A D | WindowsSupport.h | 123 return INVALID_HANDLE_VALUE; in GetInvalid()
|
| /llvm-project-15.0.7/llvm/utils/unittest/googletest/src/ |
| H A D | gtest-port.cc | 286 : handle_(INVALID_HANDLE_VALUE) {} in AutoHandle() 300 Reset(INVALID_HANDLE_VALUE); in Reset() 320 return handle_ != nullptr && handle_ != INVALID_HANDLE_VALUE; in IsCloseable()
|