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

/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBStream.cpp86 auto open_options = File::eOpenOptionWrite | File::eOpenOptionCanCreate; local
88 open_options |= File::eOpenOptionAppend;
90 open_options |= File::eOpenOptionTruncate;
93 FileSystem::Instance().Open(FileSpec(path), open_options);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/
H A DFile.cpp733 mode_t File::ConvertOpenOptionsForPOSIXOpen(OpenOptions open_options) { argument
735 if (open_options & eOpenOptionRead && open_options & eOpenOptionWrite)
737 else if (open_options & eOpenOptionWrite)
740 if (open_options & eOpenOptionAppend)
743 if (open_options & eOpenOptionTruncate)
746 if (open_options & eOpenOptionNonBlocking)
749 if (open_options & eOpenOptionCanCreateNewOnly)
751 else if (open_options & eOpenOptionCanCreate)
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/
H A DFile.h62 static mode_t ConvertOpenOptionsForPOSIXOpen(OpenOptions open_options);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectMemory.cpp771 auto open_options = File::eOpenOptionWrite | File::eOpenOptionCanCreate; variable
774 open_options |= File::eOpenOptionAppend;
776 auto outfile = FileSystem::Instance().Open(outfile_spec, open_options);

Completed in 121 milliseconds