Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBStream.cpp94 auto open_options = File::eOpenOptionWriteOnly | File::eOpenOptionCanCreate; in RedirectToFile() local
96 open_options |= File::eOpenOptionAppend; in RedirectToFile()
98 open_options |= File::eOpenOptionTruncate; in RedirectToFile()
101 FileSystem::Instance().Open(FileSpec(path), open_options); in RedirectToFile()
/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DFile.cpp782 mode_t File::ConvertOpenOptionsForPOSIXOpen(OpenOptions open_options) { in ConvertOpenOptionsForPOSIXOpen() argument
785 open_options & (File::eOpenOptionReadOnly | File::eOpenOptionWriteOnly | in ConvertOpenOptionsForPOSIXOpen()
794 if (open_options & eOpenOptionAppend) in ConvertOpenOptionsForPOSIXOpen()
797 if (open_options & eOpenOptionTruncate) in ConvertOpenOptionsForPOSIXOpen()
800 if (open_options & eOpenOptionNonBlocking) in ConvertOpenOptionsForPOSIXOpen()
803 if (open_options & eOpenOptionCanCreateNewOnly) in ConvertOpenOptionsForPOSIXOpen()
805 else if (open_options & eOpenOptionCanCreate) in ConvertOpenOptionsForPOSIXOpen()
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/
H A DFile.h69 static mode_t ConvertOpenOptionsForPOSIXOpen(OpenOptions open_options);
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectMemory.cpp760 File::OpenOptions open_options = in DoExecute() local
763 open_options |= in DoExecute()
766 auto outfile = FileSystem::Instance().Open(outfile_spec, open_options); in DoExecute()