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

12

/freebsd-10.2-release/contrib/llvm/tools/lldb/include/lldb/Core/
H A DConnectionSharedMemory.h5 // This file is distributed under the University of Illinois Open Source
57 Open (bool create, const char *name, size_t size, Error *error_ptr);
/freebsd-10.2-release/contrib/wpa/wpa_supplicant/
H A Dwpa_supplicant_conf.mk2 # Copyright (C) 2010 The Android Open Source Project
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Core/
H A DConnectionSharedMemory.cpp5 // This file is distributed under the University of Illinois Open Source
115 ConnectionSharedMemory::Open (bool create, const char *name, size_t size, Error *error_ptr) function in class:ConnectionSharedMemory
H A DDataBufferMemoryMap.cpp5 // This file is distributed under the University of Illinois Open Source
138 Error error (file.Open(path, options));
/freebsd-10.2-release/usr.bin/truss/
H A Dsyscall.h42 Umtx, Sigset, Sigprocmask, Kevent, Sockdomain, Socktype, Open, enumerator in enum:Argtype
H A Dsyscalls.c129 .args = { { Name | IN, 0 } , { Open, 1 }, { Octal, 2 } } },
277 .args = { { Open, 0 } } },
1022 case Open:
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/API/
H A DSBStream.cpp5 // This file is distributed under the University of Illinois Open Source
85 stream_file->GetFile().Open (path, open_options, lldb::eFilePermissionsFileDefault);
/freebsd-10.2-release/contrib/llvm/tools/lldb/include/lldb/Host/
H A DFile.h5 // This file is distributed under the University of Illinois Open Source
37 eOpenOptionRead = (1u << 0), // Open file for reading
38 eOpenOptionWrite = (1u << 1), // Open file for writing
81 /// File::Open (const char *path, uint32_t options, uint32_t permissions).
92 /// @see File::Open (const char *path, uint32_t options, uint32_t permissions)
103 /// File::Open (const char *path, uint32_t options, uint32_t permissions).
114 /// @see File::Open (const char *path, uint32_t options, uint32_t permissions)
197 /// Open a file for read/writing with the specified options.
212 Open (const char *path,
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Host/common/
H A DFile.cpp5 // This file is distributed under the University of Illinois Open Source
88 Open (path, options, permissions);
105 Open (filespec.GetPath().c_str(), options, permissions);
242 File::Open (const char *path, uint32_t options, uint32_t permissions) function in class:File
H A DFileSpec.cpp5 // This file is distributed under the University of Illinois Open Source
826 error = file.Open(resolved_path, File::eOpenOptionRead);
863 error = file.Open(resolved_path, File::eOpenOptionRead);
888 error = file.Open(resolved_path, File::eOpenOptionRead);
H A DHost.cpp5 // This file is distributed under the University of Illinois Open Source
2275 error = file_sp->Open(path.c_str(),flags,mode);
/freebsd-10.2-release/contrib/llvm/tools/lldb/include/lldb/Target/
H A DProcess.h5 // This file is distributed under the University of Illinois Open Source
484 Open (int fd, const char *path, bool read, bool write);
566 if (file_action.Open(STDIN_FILENO, stdin_path, read, write))
574 if (file_action.Open(STDOUT_FILENO, stdout_path, read, write))
582 if (file_action.Open(STDERR_FILENO, stderr_path, read, write))
623 if (file_action.Open (fd, path, read, write))
635 if (file_action.Open (fd, "/dev/null", read, write))
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServer.cpp5 // This file is distributed under the University of Illinois Open Source
1231 if (file_action.Open(STDIN_FILENO, path.c_str(), read, write))
1248 if (file_action.Open(STDOUT_FILENO, path.c_str(), read, write))
1265 if (file_action.Open(STDERR_FILENO, path.c_str(), read, write))
H A DGDBRemoteCommunication.cpp5 // This file is distributed under the University of Illinois Open Source
766 error = name_pipe_file.Open(named_pipe_path, File::eOpenOptionRead);
H A DProcessGDBRemote.cpp5 // This file is distributed under the University of Illinois Open Source
84 lldb_private::Error error (strm.GetFile().Open(path, lldb_private::File::eOpenOptionWrite | lldb_private::File::eOpenOptionCanCreate));
/freebsd-10.2-release/sys/boot/efi/include/
H A Defiprot.h191 // Open modes
276 EFI_FILE_OPEN Open; member in struct:_EFI_FILE_HANDLE
/freebsd-10.2-release/sys/net/
H A Dif_spppsubr.c221 void (*Open)(struct sppp *sp); member in struct:cp
833 lcp.Open(sp);
1251 lcp.Open(sp);
1893 * The generic part of all Up/Down/Open/Close/TO event handlers.
2208 lcp.Open(sp);
2214 lcp.Open(sp);
2661 (cps[i])->Open(sp);
2674 * Open all authentication protocols. This is even required
2678 * don't do anything when they get an Open event.
2682 (cps[i])->Open(s
[all...]
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Target/
H A DProcess.cpp5 // This file is distributed under the University of Illinois Open Source
625 ProcessLaunchInfo::FileAction::Open (int fd, const char *path, bool read, bool write) function in class:ProcessLaunchInfo::FileAction
765 if (action.Open (STDIN_FILENO, option_arg, true, false))
770 case 'o': // Open STDOUT for write only
773 if (action.Open (STDOUT_FILENO, option_arg, false, true))
781 if (action.Open (STDERR_FILENO, option_arg, false, true))
794 if (action.Open (STDIN_FILENO, "/dev/null", true, false))
796 if (action.Open (STDOUT_FILENO, "/dev/null", false, true))
798 if (action.Open (STDERR_FILENO, "/dev/null", false, true))
807 case 't': // Open proces
[all...]
/freebsd-10.2-release/contrib/dtc/Documentation/
H A Ddtc-paper.tex28 \newcommand{\of}{Open Firmware\xspace}
45 device tree supplied by Open Firmware on IBM\R servers and Apple\R
56 booting a \texttt{ppc64} kernel without Open Firmware, and we plan
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Interpreter/
H A DScriptInterpreterPython.cpp5 // This file is distributed under the University of Illinois Open Source
618 input_file_sp->GetFile().Open("/dev/null", File::eOpenOptionRead);
620 output_file_sp->GetFile().Open("/dev/null", File::eOpenOptionWrite);
H A DCommandInterpreter.cpp5 // This file is distributed under the University of Illinois Open Source
2573 Error error = input_file_sp->GetFile().Open(cmd_file_path.c_str(), File::eOpenOptionRead);
/freebsd-10.2-release/crypto/openssl/util/
H A Dmkdef.pl968 $a .= ",RSA" if($s =~ /EVP_(Open|Seal)(Final|Init)/);
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectMemory.cpp5 // This file is distributed under the University of Illinois Open Source
781 if (outfile_stream.GetFile ().Open (path, open_options).Success())
/freebsd-10.2-release/contrib/gcc/doc/include/
H A Dtexinfo.tex1143 % Open the new aux file. TeX will close it automatically at exit.
2165 % Open one extra group, as we want to close it in the middle of \Etitlepage.
3152 \openout \csname#1indfile\endcsname \jobname.#1 % Open the file
4689 \advance\baselineskip by 1pt % Open it up a little.
/freebsd-10.2-release/contrib/amd/doc/
H A Dtexinfo.tex1119 % Open the new aux file. TeX will close it automatically at exit.
2002 % Open one extra group, as we want to close it in the middle of \Etitlepage.
2981 \openout \csname#1indfile\endcsname \jobname.#1 % Open the file
4494 \advance\baselineskip by 1pt % Open it up a little.

Completed in 2239 milliseconds

12