Home
last modified time | relevance | path

Searched refs:open_options (Results 1 – 4 of 4) sorted by relevance

/openbsd-src/gnu/llvm/lldb/source/API/
H A DSBStream.cpp93 auto open_options = File::eOpenOptionWriteOnly | File::eOpenOptionCanCreate; in RedirectToFile() local
95 open_options |= File::eOpenOptionAppend; in RedirectToFile()
97 open_options |= File::eOpenOptionTruncate; in RedirectToFile()
100 FileSystem::Instance().Open(FileSpec(path), open_options); in RedirectToFile()
/openbsd-src/gnu/llvm/lldb/source/Host/common/
H A DFile.cpp739 mode_t File::ConvertOpenOptionsForPOSIXOpen(OpenOptions open_options) { in ConvertOpenOptionsForPOSIXOpen() argument
742 open_options & (File::eOpenOptionReadOnly | File::eOpenOptionWriteOnly | in ConvertOpenOptionsForPOSIXOpen()
751 if (open_options & eOpenOptionAppend) in ConvertOpenOptionsForPOSIXOpen()
754 if (open_options & eOpenOptionTruncate) in ConvertOpenOptionsForPOSIXOpen()
757 if (open_options & eOpenOptionNonBlocking) in ConvertOpenOptionsForPOSIXOpen()
760 if (open_options & eOpenOptionCanCreateNewOnly) in ConvertOpenOptionsForPOSIXOpen()
762 else if (open_options & eOpenOptionCanCreate) in ConvertOpenOptionsForPOSIXOpen()
/openbsd-src/gnu/llvm/lldb/include/lldb/Host/
H A DFile.h69 static mode_t ConvertOpenOptionsForPOSIXOpen(OpenOptions open_options);
/openbsd-src/gnu/llvm/lldb/source/Commands/
H A DCommandObjectMemory.cpp771 File::OpenOptions open_options = in DoExecute() local
774 open_options |= in DoExecute()
777 auto outfile = FileSystem::Instance().Open(outfile_spec, open_options); in DoExecute()