Searched refs:io (Results 501 - 525 of 788) sorted by relevance

<<21222324252627282930>>

/macosx-10.9.5/tcl-102/tcl_ext/tclxml/tclxml/expat/xmlwf/
H A Dxmlfile.c42 #include <io.h>
/macosx-10.9.5/tcl-102/tcl_ext/tkimg/tkimg/compat/libtiff/libtiff/
H A Dtif_msdos.c31 #include <io.h> /* for open, close, etc. function prototypes */
/macosx-10.9.5/zlib-53/zlib/examples/
H A Dzpipe.c22 # include <io.h>
/macosx-10.9.5/BerkeleyDB-21/db/test/scr016/src/com/sleepycat/db/test/
H A DAssociateTest.java23 import java.io.File;
24 import java.io.FileNotFoundException;
H A DRepmgrConfigTest.java22 import java.io.File;
23 import java.io.FileNotFoundException;
/macosx-10.9.5/curl-78.94.1/curl/lib/
H A Dcurl_setup.h367 # include <io.h>
383 # include <io.h>
/macosx-10.9.5/gnutar-452/gnutar/lib/
H A Dsystem.h410 # include <io.h>
450 #include <unlocked-io.h>
/macosx-10.9.5/less-23/less/
H A Dless.h98 #include <io.h>
102 #include <io.h>
/macosx-10.9.5/libxml2-26/libxml2/python/tests/
H A Dreader.py12 import io
13 str_io = io.StringIO
/macosx-10.9.5/ruby-104/ruby/test/rubygems/
H A Dtest_gem_installer.rb206 open File.join(util_inst_bindir, 'executable'), 'w' do |io|
207 io.write <<-EXEC
1026 write_file File.join(@tempdir, "extconf.rb") do |io|
1027 io.write <<-RUBY
1035 write_file File.join(@tempdir, rb) do |io|
1036 io.write <<-RUBY
1044 write_file File.join(@tempdir, rb2) do |io|
1045 io.write <<-RUBY
1070 write_file File.join(@tempdir, "extconf.rb") do |io|
1071 io
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/memchan/memchan/htdocs/raw/
H A Dmem_event.exp29 [tcl/io/fevent] for a writeup of the results of this investigation.
/macosx-10.9.5/tcl-102/tcl_ext/sdx/sdx/lib/app-sdx/
H A Dwrap.tcl53 binary scan $dat @${pos}ccccssii w h cc - p bc bir io
55 #puts "pos $pos w $w h $h cc $cc p $p bc $bc bir $bir io $io"
56 binary scan $dat @${io}a$bir image
/macosx-10.9.5/ntp-88/ntpd/
H A Drefclock_chu.c517 pp->io.clock_recv = chu_receive;
518 pp->io.srcclock = (caddr_t)peer;
519 pp->io.datalen = 0;
520 pp->io.fd = fd;
521 if (!io_addclock(&pp->io)) {
601 io_closeclock(&pp->io);
H A Dntp_request.c1215 * io_stats - return io statistics
1224 register struct info_io_stats *io; local
1227 * Importations from the io module
1231 io = (struct info_io_stats *)prepare_pkt(srcadr, inter, inpkt,
1234 io->timereset = htonl((u_int32)(current_time - io_timereset));
1235 io->totalrecvbufs = htons((u_short) total_recvbuffs());
1236 io->freerecvbufs = htons((u_short) free_recvbuffs());
1237 io->fullrecvbufs = htons((u_short) full_recvbuffs());
1238 io->lowwater = htons((u_short) lowater_additions());
1239 io
[all...]
/macosx-10.9.5/ruby-104/ruby/ext/openssl/
H A Dossl_ssl.c79 #define ossl_ssl_get_io(o) rb_iv_get((o),"@io")
86 #define ossl_ssl_set_io(o,v) rb_iv_set((o),"@io",(v))
93 static const char *ossl_ssl_attr_readers[] = { "io", "context", };
1130 * SSLSocket.new(io) => aSSLSocket
1131 * SSLSocket.new(io, ctx) => aSSLSocket
1133 * Creates a new SSL socket from +io+ which must be a real ruby object (not an
1147 VALUE io, ctx; local
1149 if (rb_scan_args(argc, argv, "11", &io, &ctx) == 1) {
1153 Check_Type(io, T_FILE);
1154 ossl_ssl_set_io(self, io);
1169 VALUE io, v_ctx, cb; local
1540 VALUE io = ossl_ssl_get_io(self); local
[all...]
/macosx-10.9.5/ntp-88/ntpdc/
H A Dntpdc_ops.c170 { "io|sys|mem|timer|auth|allpeers", "...", "...", "..." },
1121 struct info_io_stats *io; local
1128 &items, &itemsize, (void *)&io, 0,
1146 (u_long)ntohl(io->timereset));
1148 ntohs(io->totalrecvbufs));
1150 ntohs(io->freerecvbufs));
1152 ntohs(io->fullrecvbufs));
1154 ntohs(io->lowwater));
1156 (u_long)ntohl(io->dropped));
1158 (u_long)ntohl(io
[all...]
/macosx-10.9.5/bind9-45.100/bind9/bin/tests/dst/
H A Dt_dst.c267 io(dns_name_t *name, int id, int alg, int type, isc_mem_t *mctx, function
415 io(name, 23616, DST_ALG_DSA, DST_TYPE_PRIVATE|DST_TYPE_PUBLIC,
418 io(name, 54622, DST_ALG_RSAMD5, DST_TYPE_PRIVATE|DST_TYPE_PUBLIC,
422 io(name, 49667, DST_ALG_DSA, DST_TYPE_PRIVATE|DST_TYPE_PUBLIC,
425 io(name, 2, DST_ALG_RSAMD5, DST_TYPE_PRIVATE|DST_TYPE_PUBLIC,
/macosx-10.9.5/ruby-104/ruby/lib/minitest/
H A Dunit.rb1064 # Writes status to +io+
1066 def status io = self.output
1068 io.puts format % [test_count, assertion_count, failures, errors, skips]
1302 result = "." unless io?
1345 def io method
1353 def io?
/macosx-10.9.5/BerkeleyDB-21/db/examples_java/src/db/
H A DTpcbExample.java13 import java.io.File;
14 import java.io.FileNotFoundException;
592 public static void main(String[] argv) throws java.io.IOException {
/macosx-10.9.5/emacs-92/emacs/lisp/progmodes/
H A Dhideshow.el446 (io (if (eq 'block hs-isearch-open)
454 (when (or (eq io t) (eq io kind))
/macosx-10.9.5/ruby-104/ruby/test/rake/
H A Dtest_rake_file_list.rb24 open 'xyzzy.txt', 'w' do |io|
25 io.puts 'x'
26 io.puts 'XYZZY'
/macosx-10.9.5/ruby-104/ruby/test/rdoc/
H A Dtest_rdoc_ri_driver.rb1101 @driver.page do |io|
1102 skip "couldn't find a standard pager" if io == $stdout
1118 @driver.page do |io|
1119 refute_equal $stdout, io
1128 @driver.page do |io|
1129 assert_equal $stdout, io
/macosx-10.9.5/CPANInternal-140/Perl-Ldap/lib/Net/LDAP/
H A DLDIF.pm419 ($a =~ /^objectclass$/io)
420 ? -1 : (($b =~ /^objectclass$/io) ? 1 : ($a cmp $b));
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/framework/tool/
H A Drb_nibtool.rb216 File.open(@plist_path, "w+") { |io| io.puts data }
/macosx-10.9.5/llvmCore-3425.0.33/lib/Support/
H A Draw_ostream.cpp41 #include <io.h>
45 #include <io.h>

Completed in 328 milliseconds

<<21222324252627282930>>