Searched refs:open (Results 51 - 75 of 2800) sorted by relevance

1234567891011>>

/macosx-10.9.5/ruby-104/ruby/test/
H A Dtest_syslog.rb25 sl2 = Syslog.open
37 Syslog.open
43 # open without close
45 Syslog.open
52 Syslog.open("foo", options, Syslog::LOG_DAEMON)
61 Syslog.open
70 Syslog.open { |syslog|
81 Syslog.open
87 Syslog.open {
103 Syslog.open
[all...]
/macosx-10.9.5/dtrace-118.1/test/tst/common/io/
H A Dtst.fds.c85 * To test the fds[] array, we open /dev/null (a file with reliable
88 fds[n++] = open(file, O_RDONLY);
89 fds[n++] = open(file, O_WRONLY);
90 fds[n++] = open(file, O_RDWR);
93 fds[n++] = open(file, O_RDWR | O_APPEND | O_CREAT | O_DSYNC |
97 fds[n++] = open(file, O_RDWR | O_APPEND | O_CREAT | O_ASYNC |
101 fds[n++] = open(file, O_RDWR);
/macosx-10.9.5/ruby-104/ruby/sample/
H A Dmpart.rb19 for i in ifp = open(basename)
26 for i in ifp = open(basename)
28 ofp = open(sprintf("%s.%s%02d", basename, extname, part), "w")
H A Dclnt.rb13 s = TCPSocket.open(host, ARGV.shift)
H A Dtsvr.rb6 gs = TCPServer.open(0)
/macosx-10.9.5/ruby-104/ruby/test/win32ole/
H A Dtest_win32ole_event.rb14 db.open
62 @db.open
68 @db.open
78 @db.open
88 @db.open
97 @db.open
106 @db.open
116 @db.open
126 @db.open
136 @db.open
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/trf/trf/tools/
H A Dfixhbline10 set fail [catch {set fin [open $appscript r]}]
38 set fout [open $appscript.[pid] w]
58 set fout [open $appscript.[pid] w]
/macosx-10.9.5/BerkeleyDB-21/db/test_micro/source/
H A Db_recover.c55 DB_BENCH_ASSERT(dbenv->open(dbenv, TESTDIR, NULL, OFLAGS, 0666) == 0);
58 DB_BENCH_ASSERT(dbenv->open(dbenv, TESTDIR, OFLAGS, 0666) == 0);
61 DB_BENCH_ASSERT(dbenv->open(dbenv, TESTDIR, OFLAGS, 0666) == 0);
67 DB_BENCH_ASSERT(dbp->open(dbp, NULL,
71 dbp->open(dbp, TESTFILE, NULL, DB_BTREE, DB_CREATE, 0666) == 0);
107 DB_BENCH_ASSERT(dbenv->open(
112 dbenv->open(dbenv, TESTDIR, OFLAGS | DB_RECOVER, 0666) == 0);
116 dbenv->open(dbenv, TESTDIR, OFLAGS | DB_RECOVER, 0666) == 0);
/macosx-10.9.5/Security-55471.14.18/include/security_utilities/
H A Ddevrandom.h45 Readonly() { open("/dev/random", O_RDONLY); }
49 Writable() { open("/dev/random", O_RDWR); }
H A Dip++.h159 // basic open (socket system call)
160 void open(int domain, int type, int protocol = 0);
161 void open(int type) { open(AF_INET, type, 0); } function in class:Security::IPPlusPlus::Socket
226 void open(int type, int protocol = 0) { Socket::open(type, protocol); } function in class:Security::IPPlusPlus::TCPClientSocket
228 using Socket::open;
231 void open(const IPSockAddress &peer, int fdFlags = 0);
232 void open(const IPAddress &addr, IPPort port, int fdFlags = 0);
233 void open(cons
263 void open(IPPort port = 0, int depth = 1) function in class:Security::IPPlusPlus::TCPServerSocket
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_utilities/lib/
H A Ddevrandom.h45 Readonly() { open("/dev/random", O_RDONLY); }
49 Writable() { open("/dev/random", O_RDWR); }
H A Dip++.h159 // basic open (socket system call)
160 void open(int domain, int type, int protocol = 0);
161 void open(int type) { open(AF_INET, type, 0); } function in class:Security::IPPlusPlus::Socket
226 void open(int type, int protocol = 0) { Socket::open(type, protocol); } function in class:Security::IPPlusPlus::TCPClientSocket
228 using Socket::open;
231 void open(const IPSockAddress &peer, int fdFlags = 0);
232 void open(const IPAddress &addr, IPPort port, int fdFlags = 0);
233 void open(cons
263 void open(IPPort port = 0, int depth = 1) function in class:Security::IPPlusPlus::TCPServerSocket
[all...]
/macosx-10.9.5/apache-786.1/httpd/support/
H A Dphf_abuse_log.cgi.in34 open(LOG, ">>$LOG") || die "boo hoo, phf_log $!";
/macosx-10.9.5/gnutar-452/gnutar/lib/
H A Dstdopen.c35 every call to open, dup, fopen, etc. with tests to ensure they
64 || (new_fd = open ("/dev/full", mode) != fd))
65 new_fd = open ("/dev/null", mode);
H A Dopen-safer.c1 /* Invoke open, but avoid some glitches.
49 return fd_safer (open (file, flags, mode));
/macosx-10.9.5/postfix-252/postfix/mantools/
H A Dspecmiss10 open(POSTCONF, $protofile) || die " cannot open $protofile: $!\n";
/macosx-10.9.5/ruby-104/ruby/sample/drb/
H A Ddrbssl_s.rb19 data = open("sample.key"){|io| io.read }
21 data = open("sample.crt"){|io| io.read }
/macosx-10.9.5/BerkeleyDB-21/db/docs_src/ref/env/
H A DMakefile4 intro.html naming.html open.html region.html remote.html \
/macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/libraries/liblutil/
H A Ddetach.c93 if ( (sd = open( "/dev/null", O_RDWR )) == -1 &&
94 (sd = open( "/dev/null", O_RDONLY )) == -1 &&
95 /* Panic -- open *something* */
96 (sd = open( "/", O_RDONLY )) == -1 ) {
133 if ( (sd = open( "/dev/tty", O_RDWR )) != -1 ) {
/macosx-10.9.5/WebCore-7537.78.1/platform/qt/
H A DSharedBufferQt.cpp39 if (!file.exists() || !file.open(QFile::ReadOnly))
/macosx-10.9.5/WebKit2-7537.78.2/Scripts/
H A Dgenerate-message-receiver.py35 with open(input_path) as input_file:
H A Dgenerate-messages-header.py35 with open(input_path) as input_file:
/macosx-10.9.5/file-46/file/python/
H A Dexample.py3 ms = magic.open(magic.MAGIC_NONE)
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/preroot/
H A Drealopen.c25 * disable preroot and open path relative to the real root
40 return(open(buf, mode, perm));
/macosx-10.9.5/postfix-252/postfix/src/global/
H A Dmkmap_cdb.c5 /* create or open database, CDB style
59 mkmap->open = dict_cdb_open;

Completed in 136 milliseconds

1234567891011>>