Searched refs:fn (Results 51 - 75 of 650) sorted by relevance

1234567891011>>

/macosx-10.9.5/pyobjc-42/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,))
/macosx-10.9.5/Heimdal-323.92.1/appl/otp/
H A Dotpprint.c101 void (*fn)(OtpKey, char *, size_t);
124 fn = otp_print_hex_extended;
126 fn = otp_print_hex;
129 fn = otp_print_stddict_extended;
131 fn = otp_print_stddict;
134 return print (argc, argv, count, alg, fn);
/macosx-10.9.5/ruby-104/ruby/lib/irb/ext/
H A Dloader.rb27 def irb_load(fn, priv = nil)
28 path = search_file_from_ruby_path(fn)
29 raise LoadError, "No such file to load -- #{fn}" unless path
34 def search_file_from_ruby_path(fn) # :nodoc:
35 if /^#{Regexp.quote(File::Separator)}/ =~ fn
36 return fn if File.exist?(fn)
41 if File.exist?(f = File.join(path, fn))
/macosx-10.9.5/bash-92/bash-3.2/lib/sh/
H A Dzcatfd.c41 zcatfd (fd, ofd, fn)
43 char *fn;
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/string/
H A Dstrsort.c24 * strsort - sort an array pointers using fn
26 * fn follows strcmp(3) conventions
37 strsort(char** argv, int n, int(*fn)(const char*, const char*))
52 if ((*fn)(ap[m], ap[0]) >= 0) break;
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/Tools/
H A DgenHeaderTests.py27 for fn in os.listdir(dirpath):
28 basename = os.path.splitext(fn)[0]
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/comp/
H A Diconv.c66 #define RETURN(e,n,fn) \
67 if (*fn && !e) e = E2BIG; \
260 _win_iconv(_ast_iconv_t cd, char** fb, size_t* fn, char** tb, size_t* tn) argument
280 fz = tz = (*fn < *tn) ? *fn : *tn;
286 un = *fn;
294 if ((tz = MultiByteToWideChar(cc->from.index, 0, (LPCSTR)*fb, (int)*fn, (LPWSTR)*tb, *tn)) && tz <= *tn)
296 fz = *fn;
307 pz = *fn / 2;
308 fz = *fn
531 utf2bin(_ast_iconv_t cd, char** fb, size_t* fn, char** tb, size_t* tn) argument
605 bin2utf(_ast_iconv_t cd, char** fb, size_t* fn, char** tb, size_t* tn) argument
715 ume2bin(_ast_iconv_t cd, char** fb, size_t* fn, char** tb, size_t* tn) argument
791 bin2ume(_ast_iconv_t cd, char** fb, size_t* fn, char** tb, size_t* tn) argument
865 ucs2bin(_ast_iconv_t cd, char** fb, size_t* fn, char** tb, size_t* tn) argument
910 bin2ucs(_ast_iconv_t cd, char** fb, size_t* fn, char** tb, size_t* tn) argument
956 scu2bin(_ast_iconv_t cd, char** fb, size_t* fn, char** tb, size_t* tn) argument
1001 bin2scu(_ast_iconv_t cd, char** fb, size_t* fn, char** tb, size_t* tn) argument
1235 _ast_iconv(_ast_iconv_t cd, char** fb, size_t* fn, char** tb, size_t* tn) argument
1342 _ast_iconv_write(_ast_iconv_t cd, Sfio_t* op, char** fb, size_t* fn, Iconv_disc_t* disc) argument
1445 size_t fn; local
[all...]
/macosx-10.9.5/OpenSSH-186/openssh/
H A Ddispatch.c68 dispatch_range(u_int from, u_int to, dispatch_fn *fn) argument
75 dispatch[i] = fn;
79 dispatch_set(int type, dispatch_fn *fn) argument
81 dispatch[type] = fn;
/macosx-10.9.5/bind9-45.100/bind9/bin/tests/system/xferquota/
H A Dsetup.pl32 my $fn = "ns1/$zn.db";
33 my $f = new FileHandle($fn, "w") or die "open: $fn: $!";
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-core/PyObjCTest/
H A Dtest_bundleFunctions.py31 #fn = d[u'NSIsFreedObject']
33 #value = fn(obj)
36 fn = d[u'NSHomeDirectory']
37 value = fn()
40 fn = d[u'NSClassFromString']
41 value = fn(u'NSObject')
46 #fn = d[u'NSCountFrames']
48 #fn = Foundation.NSCountFrames
49 #value = fn()
H A Ddejagnu.py101 fn = os.path.basename(self.filename)[:-2]
103 return "dejagnu.%s.%s"%(dn, fn)
140 for fn in filenames:
141 if fn.endswith('.o'):
142 result.append(os.path.join(dirpath, fn))
148 for fn in os.listdir(dirname):
149 if not fn.endswith('.c') and not fn.endswith('.m'): continue
150 tst = DgTestCase(os.path.join(dirname, fn))
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/PyObjCTest/
H A Dtest_bundleFunctions.py31 #fn = d[u'NSIsFreedObject']
33 #value = fn(obj)
36 fn = d[u'NSHomeDirectory']
37 value = fn()
40 fn = d[u'NSClassFromString']
41 value = fn(u'NSObject')
46 #fn = d[u'NSCountFrames']
48 #fn = Foundation.NSCountFrames
49 #value = fn()
H A Ddejagnu.py107 fn = os.path.basename(self.filename)[:-2]
109 return "dejagnu.%s.%s"%(dn, fn)
152 for fn in filenames:
153 if fn.endswith('.o'):
154 result.append(os.path.join(dirpath, fn))
160 for fn in os.listdir(dirname):
161 if not fn.endswith('.c') and not fn.endswith('.m'): continue
162 tst = DgTestCase(os.path.join(dirname, fn))
/macosx-10.9.5/CPANInternal-140/DBIx-Class/t/
H A D94versioning.t42 my $fn = {
54 is($schema_v1->ddl_filename('MySQL', '1.0', $ddl_dir), $fn->{v1}, 'Filename creation working');
55 unlink( $fn->{v1} ) if ( -e $fn->{v1} );
58 ok(-f $fn->{v1}, 'Created DDL file');
70 unlink($fn->{v2});
71 unlink($fn->{trans_v12});
76 ok(-f $fn->{trans_v12}, 'Created DDL file');
93 qr/Overwriting existing DDL file - $fn->{v2}/,
94 qr/Overwriting existing diff file - $fn
[all...]
/macosx-10.9.5/mDNSResponder-522.92.1/mDNSShared/
H A Ddnssd_clientlib.c111 char *fn = fullName; local
128 if (fn+4 >= lim) goto fail;
129 *fn++ = '\\';
130 *fn++ = '0' + (c / 100);
131 *fn++ = '0' + (c / 10) % 10;
136 if (fn+2 >= lim) goto fail;
137 *fn++ = '\\';
140 if (fn+1 >= lim) goto fail;
141 *fn++ = (char)c;
143 *fn
[all...]
/macosx-10.9.5/passwordserver_sasl-170/cyrus_sasl/include/
H A Dmakemd5.c195 char *fn, *hb; local
198 fn = "bits.h";
203 fn = argv[1];
204 hb = malloc(strlen(fn) + 5);
205 sprintf(hb, "__%s__", fn);
/macosx-10.9.5/file-46/file/src/
H A Dfsmagic.c103 file_fsmagic(struct magic_set *ms, const char *fn, struct stat *sb) argument
115 if (fn == NULL)
124 ret = lstat(fn, sb);
127 ret = stat(fn, sb); /* don't merge into if; see "ret =" above */
133 ret = lstat(fn, sb);
139 file_error(ms, errno, "cannot stat `%s'", fn);
143 fn, strerror(errno)) == -1)
260 if ((nch = readlink(fn, buf, BUFSIZ-1)) <= 0) {
263 fn);
270 "unreadable symlink `%s' (%s)", fn,
[all...]
/macosx-10.9.5/text_cmds-87/ed/
H A Dio.c38 read_file(char *fn, long n) argument
44 fp = (*fn == '!') ? popen(fn + 1, "r") : fopen(strip_escapes(fn), "r");
46 fprintf(stderr, "%s: %s\n", fn, strerror(errno));
51 else if (((*fn == '!') ? pclose(fp) : fclose(fp)) < 0) {
52 fprintf(stderr, "%s: %s\n", fn, strerror(errno));
147 write_file(char *fn, const char *mode, long n, long m) argument
152 fp = (*fn == '!') ? popen(fn
[all...]
/macosx-10.9.5/uucp-11/uucp/contrib/
H A Duusnap.c89 char fn[1024];
103 strcpy(fn,SPOOLDIR); /* get the name of the statusfile */
104 strcat(fn,"/.Status/");
105 strcat(fn,line);
106 sys.statfile=malloc(strlen(fn)+1);
107 strcpy(sys.statfile,fn);
108 strcpy(fn,SPOOLDIR); /* get the name of the spooldir */
109 strcat(fn,"/");
110 strcat(fn,line);
111 sys.spooldir=malloc(strlen(fn)
88 char fn[1024]; local
291 char fn[80]; local
[all...]
/macosx-10.9.5/rsync-42/rsync/packaging/
H A Dnightly-rsync79 foreach my $fn (qw( rsync.yo rsyncd.conf.yo )) {
80 my $html_fn = $fn;
83 open(IN, '<', "$unpacked/$fn") or die $!;
90 open(OUT, '>', $fn) or die $!;
94 system "yodl2html -o $html_fn $fn";
96 unlink($fn);
/macosx-10.9.5/swig-10/Lib/lua/
H A Dlua_fnptr.i18 int my_func(int a, int b, SWIGLUA_FN fn);
26 int my_func(int a, int b, SWIGLUA_FN fn)
28 SWIGLUA_FN_GET(fn);
29 lua_pushnumber(fn.L,a);
30 lua_pushnumber(fn.L,b);
31 lua_call(fn.L,2,1); // 2 in, 1 out
32 return luaL_checknumber(fn.L,-1);
47 #define SWIGLUA_FN_GET(fn) {lua_pushvalue(fn.L,fn
[all...]
/macosx-10.9.5/xnu-2422.115.4/bsd/dev/chud/
H A Dchud_bsd_callback.c53 extern void kdbg_control_chud(int val, void *fn);
71 chudxnu_kdebug_callback_func_t fn = kdebug_callback_fn; local
78 if(fn) {
79 (fn)(debugid, arg0, arg1, arg2, arg3, arg4);
140 * retval return value of fn (the function returned by syscall_callback_fn)
171 * Implicit returns: retval return value of fn (the function returned by syscall_callback_fn)
182 chudxnu_syscall_callback_func_t fn = syscall_callback_fn;
184 if(!fn) {
188 *retval = fn(uap->code, uap->arg1, uap->arg2, uap->arg3, uap->arg4, uap->arg5);
220 kern_return_t chudxnu_dtrace_callback_enter(chudxnu_dtrace_callback_t fn);
242 chudxnu_dtrace_callback_t fn = dtrace_callback; local
252 chudxnu_dtrace_callback_enter(chudxnu_dtrace_callback_t fn) argument
[all...]
/macosx-10.9.5/bash-92/bash-3.2/lib/malloc/
H A Dstats.c138 trace_malloc_stats (s, fn)
139 char *s, *fn;
145 fp = _imalloc_fopen (s, fn, TRACEROOT, defname, sizeof (defname));
159 _imalloc_fopen (s, fn, def, defbuf, defsiz)
161 char *fn;
171 if (fn == 0)
183 if ((strlen (pidbuf) + strlen (fn) + 2) >= sizeof (fname))
185 for (sp = 0, p = fname, q = fn; *q; )
/macosx-10.9.5/cxxfilt-11/cxxfilt/libiberty/
H A Dxatexit.c11 @deftypefun int xatexit (void (*@var{fn}) (void))
67 xatexit (void (*fn) (void))
84 p->fns[p->ind++] = fn;
/macosx-10.9.5/libffi-18.1/tests/
H A Ddejagnu.py116 fn = os.path.basename(self.filename)[:-2]
118 return "dejagnu.%s.%s"%(dn, fn)
151 for fn in filenames:
152 if fn.endswith('.o'):
153 result.append(os.path.join(dirpath, fn))
159 for fn in os.listdir(dirname):
160 if not fn.endswith('.c'): continue
161 tst = DgTestCase(os.path.join(dirname, fn))

Completed in 403 milliseconds

1234567891011>>