Searched refs:fn (Results 101 - 125 of 488) sorted by relevance

1234567891011>>

/freebsd-10.0-release/crypto/heimdal/lib/roken/
H A Dndbm_wrap.c156 char *fn = malloc(strlen(file) + 4); local
157 if(fn == NULL)
159 strcpy(fn, file);
160 strcat(fn, ".db");
174 free(fn);
179 if(db->open(db, NULL, fn, NULL, DB_BTREE, myflags, mode) != 0) {
181 if(db->open(db, fn, NULL, DB_BTREE, myflags, mode) != 0) {
183 free(fn);
188 db = dbopen(fn, flags, mode, DB_BTREE, NULL);
190 free(fn);
[all...]
/freebsd-10.0-release/usr.bin/sort/
H A Dfile.c102 char *fn; member in struct:CLEANABLE_FILE
120 int (*)(const void *, const void *)), const char* fn);
144 item->fn = sort_strdup(tmp_file);
160 if ((item) && (item->fn))
161 unlink(item->fn);
170 file_is_tmp(const char* fn) argument
175 if (fn) {
178 if ((item) && (item->fn))
179 if (strcmp(item->fn, fn)
233 static const char *fn = ".bsdsort."; local
264 file_list_add(struct file_list *fl, char *fn, bool allocate) argument
398 sort_list_dump(struct sort_list *l, const char *fn) argument
437 check(const char *fn) argument
572 openfile(const char *fn, const char *mode) argument
624 closefile(FILE *f, const char *fn) argument
889 char *fn; local
932 file_header_init(struct file_header **fh, const char *fn, size_t file_pos) argument
1525 merge_list_parts(struct sort_list **parts, size_t n, const char *fn) argument
1541 mt_sort(struct sort_list *list, int(*sort_func)(void *, size_t, size_t, int(*)(const void *, const void *)), const char* fn) argument
[all...]
/freebsd-10.0-release/contrib/gcc/cp/
H A Dsemantics.c1721 perform_koenig_lookup (tree fn, tree args) argument
1727 if (TREE_CODE (fn) == IDENTIFIER_NODE)
1728 identifier = fn;
1729 else if (is_overloaded_fn (fn))
1731 functions = fn;
1734 else if (DECL_P (fn))
1736 functions = fn;
1737 identifier = DECL_NAME (fn);
1746 fn = lookup_arg_dependent (identifier, functions, args);
1747 if (!fn)
1766 finish_call_expr(tree fn, tree args, bool disallow_virtual, bool koenig_p) argument
2426 tree fn; local
2678 tree fn = OVL_CURRENT (fns); local
2972 tree fn = TREE_OPERAND (aggr_init_expr, 0); local
3034 emit_associated_thunks(tree fn) argument
3068 expand_body(tree fn) argument
3124 expand_or_defer_fn(tree fn) argument
3908 tree fn = built_in_decls[BUILT_IN_GOMP_BARRIER]; local
3916 tree fn = built_in_decls[BUILT_IN_SYNCHRONIZE]; local
[all...]
/freebsd-10.0-release/contrib/apr-util/buckets/
H A Dapr_buckets_alloc.c68 apr_abortfunc_t fn = apr_pool_abort_get(p); local
69 if (fn)
70 (fn)(APR_ENOMEM);
77 apr_abortfunc_t fn = apr_pool_abort_get(p); local
78 if (fn)
79 (fn)(APR_ENOMEM);
/freebsd-10.0-release/sys/kern/
H A Dvfs_hash.c72 vfs_hash_get(const struct mount *mp, u_int hash, int flags, struct thread *td, struct vnode **vpp, vfs_hash_cmp_t *fn, void *arg) argument
84 if (fn != NULL && fn(vp, arg))
114 vfs_hash_insert(struct vnode *vp, u_int hash, int flags, struct thread *td, struct vnode **vpp, vfs_hash_cmp_t *fn, void *arg) argument
128 if (fn != NULL && fn(vp2, arg))
/freebsd-10.0-release/tools/regression/aio/aiop/
H A Daiop.c131 const char *fn; local
147 fn = argv[1];
168 fd = open(fn, O_RDONLY | O_DIRECT);
170 fd = open(fn, O_WRONLY | O_DIRECT);
172 fd = open(fn, O_RDWR | O_DIRECT);
190 printf("File: %s; File size %jd bytes\n", fn, (intmax_t)file_size);
/freebsd-10.0-release/contrib/sendmail/libsm/
H A Dt-fget.c25 static char fn[] = "tfget"; local
27 wfp = sm_io_open(SmFtStdio, SM_TIME_DEFAULT, fn,
38 rfp = sm_io_open(SmFtStdio, SM_TIME_DEFAULT, fn,
/freebsd-10.0-release/crypto/openssl/crypto/engine/
H A Dtb_pkmeth.c123 ENGINE_PKEY_METHS_PTR fn = ENGINE_get_pkey_meths(e); local
124 if(!fn || !fn(e, &ret, NULL, nid))
/freebsd-10.0-release/sys/sys/
H A Dvmem.h121 void vmem_whatis(vmem_addr_t addr, int (*fn)(const char *, ...)
123 void vmem_print(vmem_addr_t addr, const char *, int (*fn)(const char *, ...)
125 void vmem_printall(const char *, int (*fn)(const char *, ...)
/freebsd-10.0-release/usr.bin/tail/
H A Dmisc.c121 printfn(const char *fn, int print_nl) argument
127 WR(fn, strlen(fn));
/freebsd-10.0-release/usr.sbin/fifolog/lib/
H A Dfifolog_create.c44 fifolog_create(const char *fn, off_t size, ssize_t recsize) argument
53 fd = open(fn, O_WRONLY | O_TRUNC | O_EXCL | O_CREAT, 0644);
56 fd = open(fn, O_WRONLY);
/freebsd-10.0-release/contrib/amd/amd/
H A Dclock.c122 * (*fn)(fn_arg) will be called at clocktime(NULL) + secs
125 timeout(u_int secs, callout_fun *fn, opaque_t fn_arg) argument
135 cpnew->c_fn = fn;
218 * Extract first from list, save fn & fn_arg and
227 callout_fun *fn = cp->c_fn; local
232 (*fn) (fn_arg);
/freebsd-10.0-release/contrib/gcc/
H A Dgen-protos.c67 parse_fn_proto (char *start, char *end, struct fn_decl *fn) argument
123 fn->fname = name_start;
124 fn->rtype = decl_start;
125 fn->params = param_start;
/freebsd-10.0-release/contrib/gcclibs/libgomp/
H A Dfortran.c39 # define ialias_redirect(fn) \
40 extern __typeof (fn) fn __asm__ (ULP "gomp_ialias_" #fn) attribute_hidden;
H A Dteam.c60 void (*fn) (void *); member in struct:gomp_thread_start_data
87 local_fn = data->fn;
113 thr->fn = NULL;
124 local_fn = thr->fn;
178 gomp_team_start (void (*fn) (void *), void *data, unsigned nthreads,
247 nthr->fn = fn;
282 start_data->fn = fn;
H A Dsections.c103 GOMP_parallel_sections_start (void (*fn) (void *), void *data,
114 gomp_team_start (fn, data, num_threads, ws);
/freebsd-10.0-release/crypto/heimdal/base/
H A Darray.c127 * @param fn function to call on each object
128 * @param ctx context passed to fn
132 heim_array_iterate_f(heim_array_t array, heim_array_iterator_f_t fn, void *ctx) argument
136 fn(array->val[n], ctx);
144 * @param fn block to call on each object
148 heim_array_iterate(heim_array_t array, void (^fn)(heim_object_t)) argument
152 fn(array->val[n]);
/freebsd-10.0-release/crypto/heimdal/lib/krb5/
H A Dtest_store.c269 const char *fn = "test-store-data"; local
304 fd = open(fn, O_RDWR|O_CREAT|O_TRUNC, 0600);
306 krb5_err(context, 1, errno, "open(%s)", fn);
311 krb5_errx(context, 1, "krb5_storage_from_fd: %s no mem", fn);
315 unlink(fn);
321 fd = open(fn, O_RDWR|O_CREAT|O_TRUNC, 0600);
323 krb5_err(context, 1, errno, "open(%s)", fn);
327 krb5_errx(context, 1, "krb5_storage_from_fd: %s no mem", fn);
332 unlink(fn);
/freebsd-10.0-release/tools/debugscripts/
H A Dkld_deb.py36 filenamere = re.compile(r'filename\s+=\s+0x[0-9a-f]+\s("(?P<fn>[^"]+)"|(?P<error><[^>]*>))', re.M)
101 l, fn = searchfor(inp, filenamere, 1, l)
102 if not fn.group('fn'):
103 sys.stderr.write("got error: %s\n" % fn.group('error'))
108 addr.append((fn.group('fn'), long(ad.group('ad'), 16)))
/freebsd-10.0-release/contrib/binutils/binutils/
H A Drclex.c144 char *send, *fn; local
179 fn = xmalloc (len + 1);
181 memcpy (fn, s, len);
182 fn[len] = 0;
183 while (len > 0 && (fn[len - 1] > 0 && fn[len - 1] <= 0x20))
184 fn[--len] = 0;
185 if (! len || (len == strlen ("DEFAULT") && strcasecmp (fn, "DEFAULT") == 0))
191 if (fn[0] == '0' && (fn[
[all...]
/freebsd-10.0-release/sys/arm/xscale/pxa/
H A Dpxa_gpio.c237 pxa_gpio_set_function(int gpio, uint32_t fn) argument
246 if (GPIO_FN(fn) == GPIO_FN(oldfn) &&
247 GPIO_FN_IS_OUT(fn) == GPIO_FN_IS_OUT(oldfn)) {
255 * Return 'fn' instead of 'oldfn' so the caller can
260 if (!GPIO_IS_GPIO_OUT(fn) ||
261 GPIO_FN_IS_SET(fn) == GPIO_FN_IS_SET(oldfn))
262 return (fn);
275 if (GPIO_FN_IS_SET(fn))
284 if (GPIO_FN_IS_OUT(fn))
292 fn
[all...]
/freebsd-10.0-release/usr.sbin/ppp/
H A Dfsm.c145 struct fsm_callbacks *fn, const char * const timer_names[3])
162 fp->fn = fn;
203 (*fp->fn->DecodeConfig)(fp, ptr, ptr + count, MODE_NOP, NULL);
245 (*fp->fn->LayerStart)(fp);
260 (*fp->fn->LayerStart)(fp);
322 (*fp->fn->LayerFinish)(fp);
328 (*fp->fn->LayerStart)(fp);
338 (*fp->fn->LayerDown)(fp);
350 (*fp->fn
142 fsm_Init(struct fsm *fp, const char *name, u_short proto, int mincode, int maxcode, int LogLevel, struct bundle *bundle, struct link *l, const struct fsm_parent *parent, struct fsm_callbacks *fn, const char * const timer_names[3]) argument
[all...]
/freebsd-10.0-release/contrib/libarchive/tar/test/
H A Dtest_option_T_upper.c29 tryMakeFile(const char *fn) argument
31 FILE *f = fopen(fn, "w");
/freebsd-10.0-release/contrib/llvm/tools/lli/
H A DRemoteTarget.cpp50 int (*fn)(void) = (int(*)(void))Address;
51 RetVal = fn();
/freebsd-10.0-release/contrib/tcsh/
H A Dtc.sig.c40 sigset_interrupting(int sig, void (*fn) (int))
44 act.sa_handler = fn;

Completed in 307 milliseconds

1234567891011>>