Searched refs:fn (Results 26 - 50 of 650) sorted by relevance

1234567891011>>

/macosx-10.9.5/ruby-104/ruby/test/scanf/
H A Dtest_scanfblocks.rb53 fn = "#{Dir.tmpdir}/iotest.dat.#{$$}"
54 File.open(fn, "w") { |fh| fh.puts(@str) }
55 fh = File.open(fn, "rb")
66 File.delete(fn)
70 fn = "#{Dir.tmpdir}/iotest.dat.#{$$}"
71 File.open(fn, "w").close
72 fh = File.open(fn,"rb")
78 File.delete(fn)
/macosx-10.9.5/sudo-72/src/
H A Dsudo_noexec.c52 #define DUMMY2(fn, t1, t2) \
54 fn(t1 a1, t2 a2) \
57 #define DUMMY3(fn, t1, t2, t3) \
59 fn(t1 a1, t2 a2, t3 a3) \
62 #define DUMMY6(fn, t1, t2, t3, t4, t5, t6) \
64 fn(t1 a1, t2 a2, t3 a3, t4 a4, t5 a5, t6 a6) \
67 #define DUMMY_VA(fn, t1, t2) \
69 fn(t1 a1, t2 a2, ...) \
74 #define DUMMY2(fn, t1, t2) \
76 fn(a
[all...]
/macosx-10.9.5/Heimdal-323.92.1/cf/
H A Dw32-list-externs-from-objs.pl41 $fn = shift;
43 print STDERR "Opening dump of object [$fn]\n";
45 open(SP, '-|', "dumpbin /symbols \"".$fn."\"") or die "Can't open pipe for $fn";
55 print $fn if $show_module_name;
78 $fn = shift;
80 open (RF, '<', $fn) or die "Can't open response file $fn";
H A Dw32-def-from-dll.pl43 $fn = shift;
45 print STDERR "Processing defs from file [$fn]\n";
47 open(SP, '-|', "dumpbin /exports \"".$fn."\"") or die "Can't open pipe for $fn";
69 $fn = shift;
71 print STDERR "Opening dump of DLL [$fn]\n";
73 open(SP, '-|', "dumpbin /exports \"".$fn."\"") or die "Can't open pipe for $fn";
121 $fn = shift;
123 print STDERR "Opening dump of object [$fn]\
[all...]
/macosx-10.9.5/apache-786.1/httpd/os/win32/
H A Dos.h98 #define AP_DECLARE_LATE_DLL_FUNC(lib, rettype, calltype, fn, ord, args, names) \
99 typedef rettype (calltype *ap_winapi_fpt_##fn) args; \
100 static ap_winapi_fpt_##fn ap_winapi_pfn_##fn = NULL; \
101 static APR_INLINE rettype ap_winapi_##fn args \
102 { if (!ap_winapi_pfn_##fn) \
103 ap_winapi_pfn_##fn = (ap_winapi_fpt_##fn) ap_load_dll_func(lib, #fn, ord); \
104 return (*(ap_winapi_pfn_##fn)) name
[all...]
/macosx-10.9.5/cups-372.4/cups/vcnet/regex/
H A Dsplit.c19 register int fn; local
42 fn = nfields;
45 fn--;
46 if (fn == 0)
50 return(nfields - fn);
54 fn = nfields;
58 return(fn);
59 fn++;
66 fn = nfields;
69 fn
199 register int fn; local
[all...]
/macosx-10.9.5/ruby-104/ruby/lib/rake/contrib/
H A Dsys.rb31 FileList.glob(wildcard).each do |fn|
32 File.install(fn, dest_dir, mode, $verbose)
85 FileList.glob(wildcard).each do |fn|
86 if File.directory?(fn)
87 log "Deleting directory #{fn}"
88 Dir.delete(fn)
90 log "Deleting file #{fn}"
91 File.delete(fn)
100 FileList.glob(wildcard).each do |fn|
101 next if ! File.exist?(fn)
[all...]
/macosx-10.9.5/libarchive-29/libarchive/tar/test/
H A Dtest_strip_components.c29 touch(const char *fn) argument
31 FILE *f = fopen(fn, "w");
33 fn, errno, strerror(errno));
H A Dtest_option_s.c29 mkfile(const char *fn, const char *contents) argument
31 FILE *f = fopen(fn, "w");
33 fn, errno, strerror(errno));
/macosx-10.9.5/cxxfilt-11/cxxfilt/binutils/testsuite/binutils-all/
H A Dtestprog.c12 fn (void) function
/macosx-10.9.5/file_cmds-230/cksum/
H A Dcksum.c72 char *fn, *p; local
120 fn = NULL;
124 fn = *argv++;
125 if ((fd = open(fn, O_RDONLY, 0)) < 0) {
126 warn("%s", fn);
132 warn("%s", fn ? fn : "stdin");
135 pfncn(fn, val, len);
/macosx-10.9.5/bash-92/bash-3.2/examples/loadables/
H A Dbasename.c19 char *string, *suffix, *fn; local
70 fn = string + slen + 1;
80 slen = strlen (fn);
84 if (strcmp (fn + off, suffix) == 0)
85 fn[off] = '\0';
88 printf ("%s\n", fn);
/macosx-10.9.5/rsync-42/rsync/support/
H A Dfile-attr-restore50 my $fn = $name;
51 $fn =~ s/\\(\d+|.)/ eval "\"\\$1\"" /eg;
53 undef $type unless -f $fn;
55 undef $type unless -d $fn;
57 undef $type unless -b $fn;
59 undef $type unless -c $fn;
61 undef $type unless -p $fn;
63 undef $type unless -S $fn;
109 if (!$dry_run && !chmod($mode, $fn)) {
117 if (!chown($uid, $gid, $fn)) {
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/libedit/src/
H A Dhist.h57 #define HIST_FUN_INTERNAL(el, fn, arg) \
59 fn, arg)) == -1) ? NULL : (el)->el_history.ev.str)
61 #define HIST_FUN(el, fn, arg) \
62 (((el)->el_flags & NARROW_HISTORY) ? hist_convert(el, fn, arg) : \
63 HIST_FUN_INTERNAL(el, fn, arg))
65 #define HIST_FUN(el, fn, arg) HIST_FUN_INTERNAL(el, fn, arg)
/macosx-10.9.5/libedit-39/src/
H A Dhist.h57 #define HIST_FUN_INTERNAL(el, fn, arg) \
59 fn, arg)) == -1) ? NULL : (el)->el_history.ev.str)
61 #define HIST_FUN(el, fn, arg) \
62 (((el)->el_flags & NARROW_HISTORY) ? hist_convert(el, fn, arg) : \
63 HIST_FUN_INTERNAL(el, fn, arg))
65 #define HIST_FUN(el, fn, arg) HIST_FUN_INTERNAL(el, fn, arg)
/macosx-10.9.5/rsync-42/rsync/packaging/
H A Drelease-rsync60 my $fn = $1;
61 my($dir) = $fn =~ m#^(.+)/#;
63 push(@files, $fn);
153 foreach my $fn (@tweak_files) {
154 open(IN, '<', $fn) or die $!;
157 if ($fn =~ /configure/) {
159 } elsif ($fn =~ /\.spec/) {
162 } elsif ($fn =~ /\.yo/) {
165 } elsif ($fn eq 'NEWS') {
168 } elsif ($fn e
[all...]
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/string/
H A Dbase64.c51 base64encode(const void* fb, size_t fz, void** fn, void* tb, size_t tz, void** tn) argument
78 if (fn)
79 *fn = fp;
95 if (fn)
96 *fn = fp;
124 if (fn)
125 *fn = fp;
151 if (fn)
152 *fn = fp;
162 base64decode(const void* fb, size_t fz, void** fn, voi argument
[all...]
/macosx-10.9.5/CPANInternal-140/DBIx-Class-Schema-Loader/t/backcompat/0.04006/lib/
H A Dmake_dbictest_db.pm10 my $fn = './t/dbictest.db';
12 unlink($fn);
13 our $dsn = "dbi:$class:dbname=$fn";
35 END { unlink($fn); }
/macosx-10.9.5/CPANInternal-140/DBIx-Class-Schema-Loader/t/lib/
H A Dmake_dbictest_db.pm10 my $fn = './t/dbictest.db';
12 unlink($fn);
13 our $dsn = "dbi:$class:dbname=$fn";
35 END { unlink($fn); }
/macosx-10.9.5/CPANInternal-140/DBIx-Class-Schema-Loader-0.05003/t/backcompat/0.04006/lib/
H A Dmake_dbictest_db.pm10 my $fn = './t/dbictest.db';
12 unlink($fn);
13 our $dsn = "dbi:$class:dbname=$fn";
35 END { unlink($fn); }
/macosx-10.9.5/CPANInternal-140/DBIx-Class-Schema-Loader-0.05003/t/lib/
H A Dmake_dbictest_db.pm10 my $fn = './t/dbictest.db';
12 unlink($fn);
13 our $dsn = "dbi:$class:dbname=$fn";
35 END { unlink($fn); }
/macosx-10.9.5/CPANInternal-140/DBIx-Class-Schema-Loader-0.07033/t/backcompat/0.04006/lib/
H A Dmake_dbictest_db.pm11 my $fn = "$tdir/dbictest.db";
13 unlink($fn);
14 our $dsn = "dbi:$class:dbname=$fn";
37 END { unlink($fn); }
/macosx-10.9.5/Heimdal-323.92.1/lib/hcrypto/
H A Dccrandom.c51 _hc_unix_device_fd(int flags, const char **fn) argument
65 if (fn)
66 *fn = *p;
/macosx-10.9.5/groff-38/groff/src/libs/libdriver/
H A Dprinter.cpp209 int fn = env->fontno; local
210 if (fn < 0 || fn >= nfonts) {
211 error("bad font position `%1'", fn);
214 *f = font_table[fn];
216 error("no font mounted at `%1'", fn);
239 int fn = env->fontno; local
240 if (fn < 0 || fn >= nfonts) {
241 error("bad font position `%1'", fn);
[all...]
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Cocoa/Examples/Foundation/Scripts/
H A DfindPython.py27 for (fn, sig) in FUNCTIONS:
28 if fn not in d:
29 raise ValueError("Couldn't find function %s" % (fn,))

Completed in 465 milliseconds

1234567891011>>