| /dragonfly/contrib/file/magic/Magdir/ |
| HD | os400 | 24 >&213 byte 0x44 \b, at least V5R4 to open 25 >&213 byte 0x43 \b, at least V5R3 to open 26 >&213 byte 0x42 \b, at least V5R2 to open 27 >&213 byte 0x41 \b, at least V5R1 to open 28 >&213 byte 0x40 \b, at least V4R5 to open 29 >&213 byte 0x3F \b, at least V4R4 to open 30 >&213 byte 0x3E \b, at least V4R3 to open 31 >&213 byte 0x3C \b, at least V4R2 to open 32 >&213 byte 0x3D \b, at least V4R1M4 to open 33 >&213 byte 0x3B \b, at least V4R1 to open [all …]
|
| /dragonfly/contrib/gcc-8.0/libstdc++-v3/src/c++11/ |
| D | cow-fstream-inst.cc | 41 basic_filebuf<char>::open(const std::string&, ios_base::openmode); 46 basic_ifstream<char>::open(const std::string&, ios_base::openmode); 51 basic_ofstream<char>::open(const std::string&, ios_base::openmode); 55 basic_fstream<char>::open(const std::string&, ios_base::openmode); 59 basic_filebuf<wchar_t>::open(const std::string&, ios_base::openmode); 64 basic_ifstream<wchar_t>::open(const std::string&, ios_base::openmode); 69 basic_ofstream<wchar_t>::open(const std::string&, ios_base::openmode); 74 basic_fstream<wchar_t>::open(const std::string&, ios_base::openmode);
|
| /dragonfly/contrib/gcc-8.0/libstdc++-v3/include/std/ |
| D | fstream | 230 * @brief Does not open any files. 257 * @brief Returns true if the external file is open. 266 * @param __mode The open mode flags. 269 * If a file is already open, this function immediately fails. 270 * Otherwise it tries to open the file named @a __s using the flags 305 open(const char* __s, ios_base::openmode __mode); 311 * @param __mode The open mode flags. 315 open(const std::string& __s, ios_base::openmode __mode) 316 { return open(__s.c_str(), __mode); } 322 * @param __mode The open mode flags. [all …]
|
| /dragonfly/contrib/gcc-4.7/libstdc++-v3/include/std/ |
| D | fstream | 205 * @brief Does not open any files. 221 * @brief Returns true if the external file is open. 230 * @param __mode The open mode flags. 233 * If a file is already open, this function immediately fails. 234 * Otherwise it tries to open the file named @a __s using the flags 267 open(const char* __s, ios_base::openmode __mode); 273 * @param __mode The open mode flags. 277 open(const std::string& __s, ios_base::openmode __mode) 278 { return open(__s.c_str(), __mode); } 285 * If no file is currently open, this function immediately fails. [all …]
|
| /dragonfly/contrib/cvs-1.12/contrib/ |
| HD | log_accum.in | 171 open(FILE, ">$filename") || die ("Cannot open log file $filename: $!\n"); 181 open(FILE, ">>$filename") || die ("Cannot open file $filename: $!\n"); 190 open(FILE, ">$filename") || die("Cannot open file $filename: $!\n"); 198 open(FILE, ">>$filename") || die("Cannot open file $filename: $!\n"); 207 open(FILE, "<$filename") || die("Cannot open file $filename: $!\n"); 217 open(FILE, "<$filename") || return (""); 229 open(FILE, "<$filename") || return (); 242 open(FILE, "<$filename") || return (); 256 open(FILE, "<$filename") || die ("Cannot open log file $filename: $!\n"); 280 open(RCS, "-|") || exec "$cvsbin/cvs", '-Qn', 'status', '--', $file; [all …]
|
| HD | cln_hist.in | 45 open(XX, ">$h"); 51 open(HIST, "$h.bak"); 70 open(SAVE, ">$h.work"); 71 open(HIST, "$h.bak");
|
| /dragonfly/contrib/cvs-1.12/lib/ |
| HD | save-cwd.c | 47 # undef open 48 # define open(File, Flags) (-1) macro 80 cwd->desc = fd_safer (open (".", O_RDONLY)); in save_cwd() 83 cwd->desc = fd_safer (open (".", O_WRONLY)); in save_cwd()
|
| /dragonfly/test/sysperf/ |
| HD | lockmgr2.c | 30 close(open("/tmp/lockmgr2.test", O_RDWR|O_CREAT, 0666)); in main() 33 fd = open("/tmp/lockmgr2.test", O_RDONLY, 0666); in main() 50 close(open(path, O_RDWR|O_CREAT, 0666)); in main() 53 fd = open(path, O_RDONLY, 0666); in main()
|
| /dragonfly/lib/libtcplay/ |
| HD | io.c | 58 if ((fd = open(file, O_RDONLY)) < 0) { in read_to_safe_mem() 121 if ((fd = open((weak) ? "/dev/urandom" : "/dev/random", O_RDONLY)) < 0) { in get_random() 190 if ((fd_rand = open("/dev/urandom", O_RDONLY)) < 0) { in secure_erase() 195 if ((fd = open(dev, O_WRONLY)) < 0) { in secure_erase() 253 if ((fd = open(dev, O_RDONLY)) < 0) { in get_disk_info() 279 if ((fd = open(dev, O_RDONLY)) < 0) { in get_disk_info() 337 if ((fd = open(dev, O_WRONLY)) < 0) { in write_to_disk() 368 if ((fd = open(file, O_WRONLY | O_CREAT, S_IRUSR | S_IWUSR)) < 0) { in write_to_file()
|
| /dragonfly/crypto/openssh/ |
| HD | sshpty.c | 106 fd = open(_PATH_TTY, O_RDWR | O_NOCTTY); in pty_make_controlling_tty() 119 fd = open(_PATH_TTY, O_RDWR | O_NOCTTY); in pty_make_controlling_tty() 134 fd = open(tty, O_RDWR); in pty_make_controlling_tty() 141 fd = open(_PATH_TTY, O_WRONLY); in pty_make_controlling_tty() 227 if ((fd = open(_PATH_TTY, O_RDWR | O_NOCTTY)) >= 0) { in disconnect_controlling_tty()
|
| HD | ssh-keysign.c | 192 if ((fd = open(_PATH_DEVNULL, O_RDWR)) < 2) in main() 204 key_fd[i++] = open(_PATH_HOST_DSA_KEY_FILE, O_RDONLY); in main() 206 key_fd[i++] = open(_PATH_HOST_ECDSA_KEY_FILE, O_RDONLY); in main() 207 key_fd[i++] = open(_PATH_HOST_ED25519_KEY_FILE, O_RDONLY); in main() 208 key_fd[i++] = open(_PATH_HOST_XMSS_KEY_FILE, O_RDONLY); in main() 209 key_fd[i++] = open(_PATH_HOST_RSA_KEY_FILE, O_RDONLY); in main()
|
| /dragonfly/usr.sbin/cron/lib/ |
| HD | compat.c | 109 if ((fd = open(_PATH_TTY, 2)) >= 0) in setsid() 117 close(STDIN); open(_PATH_DEVNULL, 0); in setsid() 118 close(STDOUT); open(_PATH_DEVNULL, 1); in setsid() 119 close(STDERR); open(_PATH_DEVNULL, 2); in setsid()
|
| /dragonfly/gnu/usr.bin/grep/libgreputils/ |
| HD | fcntl.h | 611 # undef open 612 # define open rpl_open 614 _GL_FUNCDECL_RPL (open, int, (const char *filename, int flags, ...) 616 _GL_CXXALIAS_RPL (open, int, (const char *filename, int flags, ...)); 618 _GL_CXXALIAS_SYS (open, int, (const char *filename, int flags, ...)); 623 _GL_CXXALIASWARN (open); 626 # undef open 628 _GL_WARN_ON_USE (open, "open is not always POSIX compliant - "
|
| /dragonfly/tools/regression/nfsmmap/test2/ |
| HD | test2.c | 21 fd = open("test2.data", O_RDWR|O_CREAT, 0666); in main() 29 fd = open("test2.data", O_RDWR); in main() 42 fd2 = open("test2.scratch", O_RDWR|O_CREAT, 0666); in main()
|
| /dragonfly/test/stress/stress2/misc/ |
| HD | kevent5.sh | 76 if ((fd = open(file1, O_RDONLY, 0)) == -1) 98 if ((fd = open(file2, O_RDONLY, 0)) == -1) 133 if ((fd = open(file1, O_CREAT | O_TRUNC | O_RDWR, 0660)) == -1) 136 if ((fd = open(file2, O_CREAT | O_TRUNC | O_RDWR, 0660)) == -1)
|
| HD | namecache.sh | 123 if ((fd = open(".", O_RDONLY)) == -1) 162 if ((fd = open(path, O_RDWR, 0600)) < 0) { 175 if ((fd = open(path, O_RDWR, 0600)) < 0) { 193 if ((fd = open(path, O_CREAT | O_RDWR, 0600)) == -1)
|
| /dragonfly/tools/regression/nfsmmap/test1/ |
| HD | test1.c | 21 fd = open("test1.data", O_RDWR|O_CREAT, 0666); in main() 29 fd = open("test1.data", O_RDWR); in main() 44 fd2 = open("test1.scratch", O_RDWR|O_CREAT, 0666); in main()
|
| /dragonfly/usr.sbin/mlxcontrol/ |
| HD | interface.c | 52 if ((fd = open(ctrlrpath(i), 0)) >= 0) in mlx_foreach() 69 if ((fd = open(ctrlrpath(unit), 0)) >= 0) { in mlx_perform() 85 if ((ctrlfd = open(ctrlrpath(unit), 0)) < 0) in mlxd_foreach_ctrlr() 96 if ((fd = open(drivepath(i), 0)) >= 0) in mlxd_foreach_ctrlr() 132 if ((fd = open(ctrlrpath(unit), 0)) >= 0) { in mlxd_find_ctrlr_search()
|
| /dragonfly/sbin/hammer/ |
| HD | cmd_config.c | 82 fd = open(av[1], O_RDONLY); in hammer_cmd_config() 152 fd = open(path, O_RDWR|O_CREAT|O_TRUNC, 0600); in hammer_cmd_viconfig() 187 fd = open(path, O_RDONLY); in hammer_cmd_viconfig() 217 if ((fd = open(dirpath, O_RDONLY)) < 0) { in config_get() 241 if ((fd = open(dirpath, O_RDONLY)) < 0) { in config_set()
|
| /dragonfly/bin/sh/ |
| HD | redir.c | 190 if ((f = open(fname, O_RDONLY)) < 0) in openredirect() 195 if ((f = open(fname, O_RDWR|O_CREAT, 0666)) < 0) in openredirect() 202 if ((f = open(fname, O_WRONLY|O_CREAT|O_EXCL, 0666)) < 0) in openredirect() 205 if ((f = open(fname, O_WRONLY, 0666)) < 0) in openredirect() 220 if ((f = open(fname, O_WRONLY|O_CREAT|O_TRUNC, 0666)) < 0) in openredirect() 225 if ((f = open(fname, O_WRONLY|O_CREAT|O_APPEND, 0666)) < 0) in openredirect()
|
| /dragonfly/usr.bin/vi/catalog/ |
| HD | ru_RU.UTF-8.base | 133 140 "Команда open подразумевает установку опции open" 134 141 "Команда open не реализована" 168 175 "Команда visual подразумевает обязательную установку опции open"
|
| HD | zh_CN.UTF-8.base | 133 140 "open 要求开启 open 选项" 134 141 "open 命令未实现" 168 175 "visual 命令要求开启 open 选项"
|
| HD | uk_UA.UTF-8.base | 133 140 "Команда open вимагає встановлення опції open" 134 141 "Команду open ще не реалізовано" 168 175 "Команда visual вимагає встановлення опції open"
|
| /dragonfly/lib/libftpio/ |
| HD | ftp.errors | 9 125 Data connection already open; transfer starting 10 150 File status okay; about to open data connection 20 225 Data connection open; no transfer in progress 31 425 Can't open data connection
|
| /dragonfly/contrib/lvm2/dist/daemons/cmirrord/ |
| HD | clogd.c | 96 if((fd = open(lockfile, O_CREAT | O_WRONLY, in create_lockfile() 237 open("/dev/null", O_RDONLY); /* reopen stdin */ in daemonize() 238 open("/dev/null", O_WRONLY); /* reopen stdout */ in daemonize() 239 open("/dev/null", O_WRONLY); /* reopen stderr */ in daemonize()
|