Searched refs:Open (Results 1 - 25 of 51) sorted by relevance

123

/freebsd-current/contrib/llvm-project/lldb/source/Commands/
H A DCommandOptionsProcessLaunch.cpp49 if (action.Open(STDIN_FILENO, FileSpec(option_arg), true, false))
54 case 'o': // Open STDOUT for write only
57 if (action.Open(STDOUT_FILENO, FileSpec(option_arg), false, true))
65 if (action.Open(STDERR_FILENO, FileSpec(option_arg), false, true))
78 if (action.Open(STDIN_FILENO, dev_null, true, false))
80 if (action.Open(STDOUT_FILENO, dev_null, false, true))
82 if (action.Open(STDERR_FILENO, dev_null, false, true))
91 case 't': // Open process in new terminal window
/freebsd-current/tests/sys/fs/fusefs/
H A Dopen.cc43 class Open: public FuseTest { class in inherits:FuseTest
85 TEST_F(Open, chr)
110 TEST_F(Open, enoent)
142 TEST_F(Open, eperm)
165 TEST_F(Open, multiple_creds)
228 TEST_F(Open, DISABLED_o_append)
234 TEST_F(Open, o_creat)
240 TEST_F(Open, DISABLED_o_direct)
246 TEST_F(Open, o_excl)
251 TEST_F(Open, o_exe
[all...]
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Host/
H A DFileAction.h34 bool Open(int fd, const FileSpec &file_spec, bool read, bool write);
H A DFileSystem.h65 int Open(const char *path, int flags, int mode = 0600);
68 Open(const FileSpec &file_spec, File::OpenOptions options,
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DEPCGenericDylibManager.h35 ExecutorAddr Open; member in struct:llvm::orc::EPCGenericDylibManager::SymbolAddrs
H A DCore.h1293 enum { Open, Closing, Closed } State = Open; enumerator in enum:llvm::orc::SymbolState::JITDylib::__anon1651
1829 assert(State == Open && "Cannot add generator to closed JITDylib");
1838 assert(State == Open && "Cannot use link order of closed JITDylib");
1867 assert(State == Open && "JD is defunct");
1910 assert(State == Open && "JD is defunct");
/freebsd-current/contrib/wpa/wpa_supplicant/
H A Dwpa_supplicant_conf.mk2 # Copyright (C) 2010 The Android Open Source Project
/freebsd-current/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DEPCGenericDylibManager.cpp68 {SAs.Open, rt::SimpleExecutorDylibManagerOpenWrapperName},
79 SAs.Open, H, SAs.Instance, Path, Mode))
/freebsd-current/contrib/llvm-project/lldb/source/Host/common/
H A DFileAction.cpp34 bool FileAction::Open(int fd, const FileSpec &file_spec, bool read, function in class:FileAction
H A DStreamFile.cpp36 auto file = FileSystem::Instance().Open(FileSpec(path), options, permissions);
H A DProcessLaunchInfo.cpp48 if (file_action.Open(STDIN_FILENO, stdin_file_spec, read, write))
55 if (file_action.Open(STDOUT_FILENO, stdout_file_spec, read, write))
62 if (file_action.Open(STDERR_FILENO, stderr_file_spec, read, write))
90 if (file_action.Open(fd, file_spec, read, write)) {
100 if (file_action.Open(fd, FileSpec(FileSystem::DEV_NULL), read, write)) {
H A DFileCache.cpp33 auto file = FileSystem::Instance().Open(file_spec, flags, mode);
H A DPseudoTerminal.cpp68 // Open the primary side of a pseudo terminal
99 m_secondary_fd = FileSystem::Instance().Open(name.c_str(), oflag);
H A DFileSystem.cpp369 return const_cast<FileSystem &>(fs).Open(path, flags, mode);
438 Expected<FileUP> FileSystem::Open(const FileSpec &file_spec, function in class:FileSystem
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Demangle/
H A DUtility.h97 void printOpen(char Open = '(') {
99 *this += Open;
/freebsd-current/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_utils.cpp83 LogWriter *LogWriter::Open() XRAY_NEVER_INSTRUMENT {
162 LogWriter *LogWriter::Open() XRAY_NEVER_INSTRUMENT {
163 // Open a temporary file once for the log.
H A Dxray_utils.h44 static LogWriter *Open();
/freebsd-current/contrib/llvm-project/lldb/source/Host/posix/
H A DFileSystemPosix.cpp79 int FileSystem::Open(const char *path, int flags, int mode) { function in class:FileSystem
H A DProcessLauncherPosixFork.cpp74 int target_fd = FileSystem::Instance().Open(file, flags, 0666);
H A DConnectionFileDescriptorPosix.cpp727 int fd = FileSystem::Instance().Open(addr_str.c_str(), O_RDWR);
777 int fd = FileSystem::Instance().Open(path.str().c_str(), O_RDWR);
/freebsd-current/usr.bin/truss/
H A Dsyscall.h114 Open, enumerator in enum:Argtype
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/ObjectFile/Minidump/
H A DObjectFileMinidump.cpp97 llvm::Expected<lldb::FileUP> maybe_core_file = FileSystem::Instance().Open(
/freebsd-current/contrib/llvm-project/lldb/source/Interpreter/
H A DScriptInterpreter.cpp170 auto nullin = FileSystem::Instance().Open(FileSpec(FileSystem::DEV_NULL),
175 auto nullout = FileSystem::Instance().Open(FileSpec(FileSystem::DEV_NULL),
/freebsd-current/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DUnixAPIChecker.cpp33 Open, member in class:OpenVariant
139 CheckOpenVariant(C, CE, OpenVariant::Open);
155 case OpenVariant::Open:
/freebsd-current/contrib/llvm-project/lldb/source/API/
H A DSBStream.cpp101 FileSystem::Instance().Open(FileSpec(path), open_options);

Completed in 174 milliseconds

123