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.cpp778 mode_t File::ConvertOpenOptionsForPOSIXOpen(OpenOptions open_options) { in OptionsFromURL()
781 open_options & (File::eOpenOptionReadOnly | File::eOpenOptionWriteOnly | in OptionsFromURL()
790 if (open_options & eOpenOptionAppend) in OptionsFromURL()
793 if (open_options & eOpenOptionTruncate) in OptionsFromURL()
796 if (open_options & eOpenOptionNonBlocking) in OptionsFromURL()
799 if (open_options & eOpenOptionCanCreateNewOnly) in OptionsFromURL()
801 else if (open_options & eOpenOptionCanCreate) in OptionsFromURL()
740 ConvertOpenOptionsForPOSIXOpen(OpenOptions open_options) ConvertOpenOptionsForPOSIXOpen() argument
/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.cpp759 File::OpenOptions open_options = in DoExecute() local
762 open_options |= in DoExecute()
765 auto outfile = FileSystem::Instance().Open(outfile_spec, open_options); in DoExecute()